    .sliderFrame {
        overflow-x: hidden;
        position: relative;
    }

    .sliderFrame input {
        position: absolute;
        left: -99999px;
    }

    .sliderControls {
        position: absolute;
        bottom: 2rem;
        display: flex;
        width: 100%;
        justify-content: center;
        gap: 1rem;
    }

    .sliderControls label {
        width: 2.5rem;
        height: 0.7rem;
        text-align: center;
        border-radius: 0.3rem;
        display: block;
        cursor: pointer;
        background: #90B624;
        color: #90B624;
    }
    /* Ansteuern der Labels */

    .sliderControls label:hover,
    #slide01:checked~.sliderControls label[for="slide01"],
    #slide02:checked~.sliderControls label[for="slide02"],
    #slide03:checked~.sliderControls label[for="slide03"],
    #slide04:checked~.sliderControls label[for="slide04"] {
        background: #ddd;
        color: #ddd;
    }

    .sliderElements {
        list-style: none;
        position: relative;
        left: 0;
        width: 400%;
        margin: 0 0 .8em 0;
        padding: 0;
        transition: left .9s ease-in-out;
    }

    .sliderElements>li {
        float: left;
        width: 25%;
        height: 40vh;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        overflow: hidden;
        box-sizing: border-box;
        padding: 2rem 0 0 2rem;
    }

    .sliderElements>li h1 {
        font-size: clamp(1.7rem, 6.5vw, 4.5rem);
        line-height: 1.1;
        font-weight: 400;
        color: #ffffff;
        text-transform: uppercase;
        margin: 0 0 1rem 0;
        background: #90B624;
        padding: 0.7rem 0.7rem;
        width: max-content;
    }

    .sliderElements>li p {
        max-width: 90%;
        font-size: clamp(1rem, 3.5vw, 1.8rem);
        line-height: 1.5;
        font-weight: 400;
        color: #ffffff;
        margin: 0;
        text-shadow: 0px 2px 2px #333333;
    }

    .sliderElement01 {
        background-size: 100%;
    }

    .sliderElement02 {
        background-size: 100%;
    }

    .sliderElement03 {
        background-size: 100%;
    }

    .sliderElement04 {
        background-size: 100%;
    }

    #slide02:checked~.sliderElements {
        left: -100%;
    }

    #slide03:checked~.sliderElements {
        left: -200%;
    }

    #slide04:checked~.sliderElements {
        left: -300%;
    }
    /*clearfix*/

    .sliderElements:after {
        content: ".";
        display: block;
        height: .1px;
        clear: both;
        visibility: hidden;
        font-size: 0;
        overflow: hidden;
    }

    @media screen and (max-width:1000px) {
        .sliderElement01 {
            background-size: cover;
        }
        .sliderElement02 {
            background-size: cover;
        }
        .sliderElement03 {
            background-size: cover;
        }
        .sliderElement04 {
            background-size: cover;
        }
    }

    @media screen and (min-width:700px) {
        .sliderElements>li {
            box-sizing: border-box;
            height: 550px;
            padding-left: 4rem;
            justify-content: center;
        }
        /*     .sliderElements>li h1 {
            font-size: 5rem;
            line-height: 5.5rem;
            margin: 0 0 0 0 !important;
        }
        */
        .sliderElements>li h1 {
            padding: 0.8rem 1.5rem;
        }
        .sliderElements>li p {
            max-width: 50%;
            font-size: 1.5rem;
        }
    }
