/* lato-regular - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/lato-v24-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-700 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/lato-v24-latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* lato-900 - latin */
@font-face {
    font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Lato';
    font-style: normal;
    font-weight: 900;
    src: url('../fonts/lato-v24-latin-900.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
    --startklar-White: #ffffff;
    --startklar-Black: #000000;
    --startklar-Green: #D3D800;
    --startklar-Pink: #CD007E;
    --startklar-Blue: #0B526F;
}

html{
    font-family: 'Lato';
    font-weight: 300;
}
body{
    font-size:18px;
    line-height: normal;
    position: relative;
    color:var(--startklar-Black);
    min-width: 320px;
}

.body_fix{
    height: 100%;
    overflow: hidden;
}

a{

}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lato' !important;
}

h1 {
    font-size: 56px;
    line-height: 60px;
    font-weight: 700;
    margin-top: 0px;
}
h2, .h2 {
    margin: 0px;
    font-size: 40px;
    line-height: 48px;
    font-weight: 700;
}
h3, .h3{
    font-size:24px;
    line-height: 30px;
    margin:0;
    font-weight: 700;
}

p{
    font-size:18px;
    line-height: normal;
}
b, strong{
    font-weight: 900;
}
@media (max-width: 959px){
    h1 {
        font-size: 56px;
        line-height: 60px;
    }
    h2, .h2 {
        font-size: 40px;
        line-height: 48px;
    }
    h3, .h3{
        font-size:24px;
        line-height: 30px;
    }
}
@media (max-width: 500px){
    h1 {
        font-size: 42px;
        line-height: 46px;
    }
    h2, .h2 {
        font-size: 28px;
        line-height: 32px;
    }
    h3, .h3{
        font-size:16px;
        line-height: 20px;
    }
    p{
        font-size:16px;
        margin-top: 10px;
    }
}



.padding-top-small{
    padding-top:40px;
}
.padding-top-middle{
    padding-top:80px;
}
.padding-top-large{
    padding-top:120px;
}
.padding-top-null{
    padding-top:0px;
}

.padding-bottom-small{
    padding-bottom:40px;
}
.padding-bottom-middle{
    padding-bottom:80px;
}
.padding-bottom-large{
    padding-bottom:120px;
}
.padding-bottom-null{
    padding-bottom:0px;
}
@media (max-width: 959px) {
    .padding-top-small{
        padding-top:30px;
    }
    .padding-top-middle{
        padding-top:60px;
    }
    .padding-top-large{
        padding-top:80px;
    }

    .padding-bottom-small{
        padding-bottom:30px;
    }
    .padding-bottom-middle{
        padding-bottom:60px;
    }
    .padding-bottom-large{
        padding-bottom:80px;
    }
}



header{
    background: var(--startklar-Green);
    z-index: 9999999;
    position: relative;
    transition: background 0.4s ease;
    max-width: 2200px !important;
}
header::after {
    content: '';
    z-index: 9;
    position: absolute;
    left: 0;
    bottom: -59px;
    width: 100%;
    background: var(--startklar-Green);
    height: 60px;
    clip-path: polygon(0 0, 0 100%, 100% 0);
    z-index: 9999;
    transition: background 0.4s ease;
}
header .startklarlogo path{
    transition: fill 0.4s ease;
}
header .fixwidth{
    width:173px;
}
header .slogan{
    margin-top:34px;
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    transition: color 0.4s ease;
}
header .navdiv{
    width: 160px;
    position: relative;
}
header .navdiv .uk-button{
    position: absolute;
    z-index: 99999;
    top: 5px;
    right: 0;
    padding: 24px 36px;
    border-radius: 16px;
    border: 3px solid var(--startklar-Pink);
    transition: background 0.4s ease, border 0.4s ease, color 0.4s ease;
    width: 160px;
    overflow: hidden;
}
header .navdiv .uk-button span#menuText {
    font-family: Lato;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: 10px;
}
header .navdiv .uk-button svg path{
    transition: fill 0.4s ease;
}
header .navdiv .uk-button span.navIsClosed{

}
header .navdiv .uk-button span.navIsOpen{
    display: none;
}

header.navopen .navdiv .uk-button{
    background:var(--startklar-Black);
    border: 3px solid var(--startklar-Black);
    color:var(--startklar-White);
}
header .navdiv .uk-button:hover{
    background:var(--startklar-Black);
    border: 3px solid var(--startklar-Green);
    color:var(--startklar-Green);
}
header .navdiv .uk-button:hover span.navIsClosed svg path{
    fill:var(--startklar-Green);
}

header .navdiv .uk-button:hover #menuText{
    position: relative;
}
header .navdiv .uk-button:hover #menuText:after{
    content: '';
    position: absolute;
    bottom:-3px;
    left:0;
    width:100%;
    height: 1px;
    border-bottom: 2px dotted var(--startklar-Green);
}

header.navopen{
    background: var(--startklar-Pink);
}
header.navopen::after {
    background: var(--startklar-Pink);
}
header.navopen .startklarlogo path{
    fill:var(--startklar-White);
}
header.navopen .slogan{
    color: var(--startklar-White);
}
header.navopen .navdiv .uk-button{
    padding: 24px 16px;
}
header.navopen .navdiv .uk-button span.navIsClosed{
    display: none;
}
header.navopen .navdiv .uk-button span.navIsOpen{
    display: inline-block;
}
header.navopen .navdiv .uk-button:hover span.navIsOpen svg path{
    fill:var(--startklar-Green);
}

header .uk-button-default{
    border:none;
    background: var(--startklar-Pink);
    color:var(--startklar-White);
    text-transform: unset;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 18px;
    line-height: 18px;
    transition: background 400ms ease, color 400ms ease;
}
header .uk-button-default:hover{
    background: var(--startklar-Green);
    color:var(--startklar-Black);
}
header .uk-button-default svg{
    margin-right: 5px;
}
header .uk-button-default svg path{
    transition: fill 400ms ease;
}
header .uk-button-default:hover svg path{
    fill:var(--startklar-Black);
}



#fullscreen-menu{
    background: var(--startklar-Green);
    padding:0;
    z-index: 999999;
}
#fullscreen-menu .uk-modal-full{
    width: 100%;
}
#fullscreen-menu .navbox{
    margin-top:200px;
}
.nav_item{
    border-radius: 16px;
    overflow: hidden;
    display: block;
}
.nav_item .uk-cover-container{
    height: 250px;
}
.nav_full  .nav_item{
    border-radius: 16px;
    border: 4px solid var(--startklar-Black);
    transition: background 0.4s ease, border 0.4s ease;
}
.nav_full  .nav_item .uk-cover-container{
    height: 92px;
}
.nav_full .nav_item .uk-position-bottom-left {
    color: var(--startklar-Black);
    bottom:22px;
}
.nav_full .nav_item:hover{
    background: var(--startklar-Pink);
    border: 4px solid var(--startklar-Pink);
}
.nav_full .nav_item:hover .uk-position-bottom-left{
    color: var(--startklar-White);
    transition: color 0.4s ease;
}
.nav_item .uk-position-bottom-left{
    left:30px;
    bottom:30px;
    color: var(--startklar-White);
    font-size: 40px;
    font-style: normal;
    font-weight: 900;
    line-height:48px;
}
.nav_item .uk-position-cover{
    transition: background 0.4s ease;
}
.nav_item:hover .uk-position-cover{
    background: var(--startklar-Pink) !important;
    opacity: 0.8;
}
@media (max-width: 1300px) {
    header::after {
        bottom: -40px;
        height: 40px;
    }
}
@media (max-width: 768px) {
    header::after {
        bottom: -20px;
        height: 20px;
    }
}
header .uk-logo{
    width: 173px;
    height: 60px;
    display: block;
}
@media (max-width: 768px) {
    header .uk-logo{
        width: 128px;
        height: 44px;
    }
}
header .uk-logo svg{
    left: 0;
    top: 20px;
    z-index: 99999;
}
@media (max-width: 959px) {
    header .navdiv .uk-button{
        padding: 12px 24px;
        width: 130px;
        top:-5px;
    }
    header .navdiv .uk-button span#menuText {
        font-size: 16px;
    }
    header.navopen .navdiv .uk-button {
        padding: 12px 11px;
    }
    .nav_item .uk-cover-container {
        height: 130px;
    }
    .nav_item .uk-position-bottom-left {
        left: 16px;
        bottom: 16px;
        font-size: 20px;
        line-height: 20px;
    }
    .navbox
}

.uk-navbar-item {
    min-height: 60px;
    font-size: 18px;
    font-weight: 400;
    color:var(--startklar-Black);
    text-transform: unset;
}


@media (max-width: 959px) {
    .nav_full .nav_item .uk-cover-container {
        height: 50px;
    }
    .nav_full .nav_item .uk-position-bottom-left {
        bottom:14px;
    }
}
@media (max-width: 639px) {
    #fullscreen-menu .navbox {
        margin-top: 140px;
    }
}

.nav-mobil-privacy{
    list-style: none;
    padding-left:0;
    margin-top:20px;
}
.nav-mobil-privacy li{
    display: inline-block;
    margin:0 10px;
}
.nav-mobil-privacy li a{
    font-size:16px;
    color:var(--startklar-Black);
}


footer{
    background:var(--startklar-Green);
    color:var(--startklar-Black);
}
.footer-container{
    padding-top:60px;
    padding-bottom: 60px;
}
.footer-x{
    margin:0 24px;
}
.footer-slogan{
    font-size: 18px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
}
.footer-slogan span{
    margin-top:5px;
    display: block;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer-line{
    padding:40px 0;
    background: var(--startklar-Pink);
    color:var(--startklar-White);
}
.footer-line::before{
    content: '';
    position: absolute;
    left: 0;
    top: -60px;
    width: 100%;
    background: var(--startklar-Pink);
    height: 60px;
    clip-path: polygon(0 100%, 50% 50%, 100% 0,100% 100%);
    z-index: 999;
}
.footer-logo{
    margin:50px 0 !important;
}


@media (max-width: 959px) {
    .footer-slogan{
        order:1;
        text-align: center !important;
        font-size: 20px;
        line-height: 24px;
    }
    .footer-logos{
        order:2;
        max-width: 300px;
        margin: 30px auto 0 auto;
    }
    .footer-slogan .uk-position-center-right{
        top: unset;
        --uk-position-translate-y: unset;
        transform: unset;
        position: relative !important;
    }
    .footer-logo {
        margin: 20px 0 !important;
    }
}
@media (max-width: 768px) {
    .footer-line::before{
        top: -20px;
        height: 20px;
    }
}
@media (max-width: 598px) {
    .footer-slogan span strong{
        display: block;
    }
}

.footer-copy{
    font-size: 18px;
    font-weight: 700;
}
.footer-nav{
    list-style: none;
}
.footer-nav li{
    display:inline-block;
    margin:0 20px;
}
.footer-nav li a{
    color:var(--startklar-White);
    font-size: 18px;
    position: relative;
}
.footer-nav li a:hover{
    text-decoration: none;
}
.footer-nav li a:hover:after{
    content: '';
    position: absolute;
    bottom:-3px;
    left:0;
    width:100%;
    height: 1px;
    border-bottom: 2px dotted var(--startklar-White);
}
.footer-nav li:first-child{
    margin:0 20px 0 0;
}
.footer-nav li:last-child{
    margin:0 0 0 20px;
}

@media (max-width: 959px) {
    .footer-copy{
        text-align: center;
        font-size: 16px;
    }
}

.main{
    padding-top:60px;
}

.fp-overflow {
    height: 100%;
}


.splide__arrows button{
    cursor: pointer;
}
.splide__arrows button:disabled,
.splide__arrows button[disabled]{
    opacity: 0.5;
}



.button-container{
    margin:12px 0 0 0;
    .uk-button{
        margin:15px 0 0 0;
    }
    .uk-button:not(:last-child){
        margin:15px 15px 0 0;
    }
}


.uk-button{
    border:2px solid var(--startklar-Black);
    border-radius: 8px;
    font-size: 18px;
    line-height: 24px;
    padding: 15px 30px 14px 30px;
    transition: background 0.4s ease, color 0.4s ease;
    i{
        color:var(--startklar-Black);
        transition: color 0.4s ease;
    }
    &.fa-icon-use-left{
        i{
            margin-right: 8px;
        }
    }
    &.fa-icon-use-right{
        i{
            margin-left: 8px;
        }
    }
    &:not(.uk-button-no-hover){
        &:hover {

            border: 2px solid var(--startklar-Black);
            background: var(--startklar-Black);
            color:var(--startklar-White);

            i {
                color: var(--startklar-White);
            }
        }
    }
}

.button-art-fill{
    &.button-color-white{
        border: 2px solid var(--startklar-Black);
        background: var(--startklar-White);
        color: var(--startklar-Black);
        i{
            color: var(--startklar-Black);
        }
        &:not(.uk-button-no-hover) {
            &:hover {
                border: 2px solid var(--startklar-Black);
                background: var(--startklar-Black);
                color: var(--startklar-Green);

                i {
                    color: var(--startklar-Green);
                }
            }
        }
    }
    &.button-color-black{
        border: 2px solid var(--startklar-Black);
        background: var(--startklar-Black);
        color:var(--startklar-White);
        i{
            color: var(--startklar-White);
        }
        &:not(.uk-button-no-hover) {
            &:hover {
                border: 2px solid var(--startklar-Pink);
                background: var(--startklar-Pink);
                color: var(--startklar-White);

                i {
                    color: var(--startklar-White);
                }
            }
        }
    }
    &.button-color-primary{
        border: 2px solid var(--startklar-Black);
        background: var(--startklar-Green);
        color:var(--startklar-Black);
        i{
            color: var(--startklar-Black);
        }
        &:not(.uk-button-no-hover) {
            &:hover {
                border: 2px solid var(--startklar-Pink);
                background: var(--startklar-Pink);
                color: var(--startklar-White);

                i {
                    color: var(--startklar-White);
                }
            }
        }
    }
}

.button-art-stroke{
    &.button-color-white{
        border: 2px solid var(--startklar-White);
        color:var(--startklar-White);
        i{
            color: var(--startklar-White);
        }
        &:not(.uk-button-no-hover) {
            &:hover {
                border: 2px solid var(--startklar-White);
                background: var(--startklar-White);
                color: var(--startklar-Black);

                i {
                    color: var(--startklar-Black);
                }
            }
        }
    }
    &.button-color-black{
        border: 2px solid var(--startklar-Black);
        color:var(--startklar-Black);
        i{
            color:var(--startklar-Black);
        }
        &:not(.uk-button-no-hover) {
            &:hover {
                border:2px solid var(--startklar-Pink);
                background: var(--startklar-Pink);
                color: var(--startklar-White);

                i {
                    color: var(--startklar-White);
                }
            }
        }
    }
    &.button-color-primary{
        border: 2px solid var(--startklar-Green);
        color:var(--startklar-Green);
        i{
            color: var(--startklar-Green);
        }
        &:not(.uk-button-no-hover) {
            &:hover {
                border: 2px solid var(--startklar-Green);
                background: var(--startklar-Green);
                color:var(--startklar-White);

                i {
                    color:var(--startklar-White);
                }
            }
        }
    }
}
@media (max-width: 639px) {
    .uk-button {
        padding: 15px 28px 14px 28px;
    }
}



.sectionbg-primary{
    background: var(--startklar-Green);
    .button-art-fill {
        &.button-color-primary {
            border: 2px solid var(--startklar-Black);
            background: var(--startklar-Green);
            color: var(--startklar-Black);
            &:not(.uk-button-no-hover) {
                &:hover {
                    border: 2px solid var(--startklar-Black);
                    background: var(--startklar-Black);
                    color: var(--startklar-Green);
                    & i {
                        color: var(--startklar-Green) !important;
                    }
                }
            }
        }
    }
}


.sectionbg-secondary{
    background: var(--startklar-Pink);
    .button-art-fill {
        &.button-color-white {
            border: 2px solid var(--startklar-White);
            background: var(--startklar-White);
            color: var(--startklar-Black);
            &:not(.uk-button-no-hover) {
                &:hover {
                    border: 2px solid var(--startklar-Green);
                    background: var(--startklar-Green);
                    color: var(--startklar-Black);
                    & i {
                        color: var(--startklar-Black);
                    }
                }
            }
        }
    }
}
.sectionbg-secondary{
    h1, h2, h3, .h3, p{
        color:var(--startklar-White) !important;
    }
}



.hero-next-section{
    background: var(--startklar-Pink);
    color:var(--startklar-White);
    height: 60px;
}
.hero-next-section-inner{
    margin-top: -15px;
    z-index: 99999999999;
    position: relative;
}
.hero-next-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: -60px;
    width: 100%;
    background: var(--startklar-Pink);
    height: 60px;
    clip-path: polygon(0 100%, 50% 50%, 100% 0,100% 100%);
    z-index: 9999;
}
@media (max-width: 1300px) {
    .hero-next-section::before{
        top: -40px;
        height: 40px;
    }
}
@media (max-width: 768px) {
    .hero-next-section::before{
        top: -19px;
        height: 20px;
    }
    .hero-next-section-inner{
        margin-top:7px;
    }
    .hero-next-section-inner svg{
        width: 36px;
    }
}


.hero{}
.hero h1{
    color: var(--startklar-White);
    font-family: Lato;
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.hero .messeslider{
    width: 100%;
    z-index: 99999;
    bottom:48px;
}
.hero .messeslider .splide-controls{
    position: absolute;
    right:-150px;
    bottom:0px;
}
.hero .messeslider .sliderh2top{
    color: var(--startklar-White);
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    margin-bottom:20px;
}
.hero .messeslider .splide__arrows button{
    background: none;
    border:none;
    margin-left: 8px;
}
.hero .messeslider .splide__arrows .splide__arrow--prev{
    rotate: 180deg;
}

.messe-teaser{
    display: block;
    border-radius: 16px;
    background: var(--startklar-White);
    overflow: hidden;
}
.messe-teaser .uk-cover-container{
    height:200px;
}
.messe-teaser .infos{
    padding:18px 32px 24px 32px;
    transition: background 0.4s ease, color 0.4s ease;
}
.messe-teaser .infos h3{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    color: var(--startklar-Black) !important;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    transition: color 0.4s ease;
}
.messe-teaser .infos .datum svg{
   margin-right:12px;
}
.messe-teaser .infos .ort svg{
    margin-right: 14px;
    margin-left: 2px;
}
.messe-teaser .infos .ausgabe svg{
    margin-right:12px;
}
.messe-teaser .infos .datum, .messe-teaser .infos .ort, .messe-teaser .infos .ausgabe{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    color: var(--startklar-Black);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    transition: color 0.4s ease;
}
.messe-teaser .flag{
    font-size: 16px;
    font-style: normal;
    font-weight: 900;
    line-height: normal;
    padding:8px 30px;
    border-radius: 0 0 16px 0;
}
.messe-teaser .flag.flag-messe{
    background: var(--startklar-Green);
    color:var(--startklar-Black);
}
.messe-teaser .flag.flag-themenspecial{
    background: var(--startklar-Pink);
    color:var(--startklar-White);
}
.messe-teaser .datumskuerzel{
    background: var(--startklar-White);
    color:var(--startklar-Black);
    padding:8px 8px;
    border-radius: 0 0 0 16px;
    z-index: 9;
}
.messe-teaser .datumskuerzel .monatskuerzel{
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
}
.messe-teaser .datumskuerzel .tag{
    font-size: 32px;
    font-weight: 700;
    line-height: normal;
}
.messe-teaser .logobox img{
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    display: block;
}
.messe-teaser.messe svg path, .messe-teaser.special svg path{
    transition: fill 0.4s ease;
}
.messe-teaser:hover{
    text-decoration: none;
}
.messe-teaser.messe:hover .infos{
    background: var(--startklar-Green);
    color:var(--startklar-Black);
}
.messe-teaser.special:hover .infos{
    background: var(--startklar-Pink);
}
.messe-teaser.special:hover svg path{
    fill: var(--startklar-White);
}
.messe-teaser.special:hover .infos h3, .messe-teaser.special:hover .infos .datum, .messe-teaser.special:hover .infos .ausgabe{
    color:var(--startklar-White) !important;
}
.herotext{
    top: calc(30%) !important;
}
@media (max-width: 1710px) {
    .hero-next-section {
        height: 80px;
    }
    .hero .messeslider {
        bottom: 68px;
    }
    .hero .messeslider .splide-controls {
        right: 0;
        bottom: -59px;
    }
    .sliderh2top{
        margin-bottom:0 !important;
        position: absolute;
        bottom: -45px;
        left: 40px;
    }
}
@media (max-width: 959px) {
    .hero h1 strong{
        display: block;
    }
    .herotext{
        text-align:left !important;
        top: calc(30%) !important;
        left: 0 !important;
        transform: none !important;
    }
    .sliderh2top{
        left: 30px;
    }
}
@media (max-width: 659px) {
    .hero-next-section {
        height: 90px;
    }
    .sliderh2top{
        left: 15px;
        bottom: -56px;
        font-size:20px;
        line-height: 24px;
    }
    .sliderh2top span{
        display: block;
    }
}
@media (max-width: 430px) {
    .herotext{
        top: calc(10%) !important;
    }
}



@media (min-width: 2200px) {
    .maxwidth {
        max-width: 2200px;
        margin: 0 auto !important;
        position: relative;
    }
    .maxwidth-noshadow {
        max-width: 2200px;
        margin: 0 auto !important;
        position: relative;
    }
}
@media (min-width: 2230px) {
    .maxwidth:before, .maxwidth:after {
        content: " ";
        height: 100%;
        position: absolute;
        top: 0;
        width: 15px;
        display: block !important;
    }

    .maxwidth:before {
        box-shadow: -15px 0 15px -15px inset #ccc;
        left: -15px;
    }

    .maxwidth:after {
        box-shadow: 15px 0 15px -15px inset #ccc;
        right: -15px;
    }
}


.img-zoom{
    img {
        transition: transform 0.4s ease;
        &:hover {
            transform: scale(1.15);
        }
    }
}



/* START SLIDER Allgemein */
.splide {
    .splide-controls{
        margin-top:10px;
        .splide-arrow-box{
            width: 100%;
        }
        .splide__pagination{
            bottom: unset;
            top:12px;
            .splide__pagination__page{
                background: rgba(26, 26, 26, 0.10);
                width: 14px;
                height: 14px;
                transition: background 0.4s ease;
            }
            .splide__pagination__page.is-active{
                transform: scale(1);
                opacity: 1;
                background: var(--startklar-Green);
            }
        }
    }
    .my-slider-progress{
        top: 0;
        left: 100px;
        width: calc(100% - 200px);
    }
    .splide__arrows button:disabled, .splide__arrows button[disabled] {
        opacity: 0.5;
        cursor: unset !important;
    }
    .splide__arrow--prev{
        rotate: 180deg;
    }
    .splide__arrow--next{
        float: right;
    }
    .splide__arrow--prev, .splide__arrow--next {
        border: none;
        margin: 0;
        padding: 0;
        width: 48px;
        height: 48px;
        background: var(--startklar-White);
        color: var(--startklar-Black);
        border-radius: 16px;
        cursor: pointer;
        transition: background 0.4s ease;
        svg path{
            transition: fill 0.4s ease;
        }
        &:hover{
            background: var(--startklar-Green);
            svg path{
                fill:var(--startklar-White);
            }
        }
    }
    .my-slider-progress {
        background: rgba(26, 26, 26, 0.10);
        border-radius: 6px;
        overflow: hidden;
        height: 8px;
        margin-top:20px;
    }

    .my-slider-progress-bar {
        background: var(--startklar-Pink);
        height: 8px;
        transition: width 400ms ease;
        width: 0;
    }
}
.sectionbg-black{
    .my-slider-progress {
        background: rgba(255, 255, 255, 0.10);
    }
    .splide {
        .splide__arrow--prev, .splide__arrow--next {
            background: var(--startklar-Black);
            svg path {
                fill: var(--startklar-White);
            }
            &:hover{
                background: var(--startklar-Green);
                svg path{
                    fill:var(--startklar-White);
                }
            }
        }
    }
}
.sectionbg-primary{
    .my-slider-progress {
        background: rgba(255, 255, 255, 0.10);
    }
    .my-slider-progress-bar {
        background: var(--startklar-Black);
    }
    .splide {
        .splide__arrow--prev, .splide__arrow--next {
            background: var(--startklar-Green);
            svg path {
                fill: var(--startklar-White);
            }
            &:hover{
                background: var(--startklar-Black);
                svg path{
                    fill:var(--startklar-White);
                }
            }
        }
    }
}
@media (max-width : 639px) {
    .splide{
        .splide-controls {
            margin-top: 0;
        }
        .splide__arrow--prev{
            border-radius:16px 0 0 0;
        }
        .splide__arrow--next{
            border-radius:0 0 0 16px;
        }

        .splide-controls .splide__pagination .splide__pagination__page {
            width: 10px;
            height: 10px;
        }
        .my-slider-progress {
            left: 70px;
            width: calc(100% - 140px);
        }
    }
}
/* ENDE SLIDER Allgemein */



/* START MODUL TEXT-XXX Allgemein */
.text-xxx{
    .uk-container{
        p:last-child{
            margin:0;
        }
    }
    p{
        color:var(--startklar-Black);
        &:last-of-type{
            margin-bottom: 0;
        }
    }
    h1, h2{
        margin-bottom: 50px;
        color:var(--startklar-Black);
    }
    .h3{
        color:var(--startklar-Black);
    }
    .headlines-sl{
        .h3{
            margin:0 0 15px 0;
        }
    }
    .headlines-ls{
        h1, h2{
            margin:0 0 15px 0;
        }
        .h3{
            margin:0 0 50px 0;
        }
    }
    &.sectionbg-black{
        p, h1, h2, h3, ul{
            color:var(--startklar-White) !important;
        }
        a:not(.uk-button){
            color:var(--startklar-White) !important;
        }
    }
    &.sectionbg-primary{
        p, h1, h2, h3, ul{
            color:var(--startklar-Black) !important;
        }
        a:not(.uk-button){
            color:var(--startklar-White) !important;
        }
    }
}

@media (max-width : 639px) {
    .text-xxx{
        h1, h2{
            margin-bottom: 30px;
        }
        .headlines-ls{
            .h3{
                margin:0 0 30px 0;
            }
        }
    }
}
/* ENDE MODUL TEXT-XXX Allgemein */


/* START MODUL TEXT-003 */
.text-003{
    .singleimg-container {
        height: 100%;
        border-radius: 16px;
        overflow: hidden;
    }
    .text-ditance-top{
        margin-top:50px !important;
    }
}
.text-003.text-003-img-left{
    .singleimg-container {
        border-radius: 0 16px 16px 0;
    }
    .text-003-text{
        max-width: 685px;
        margin: 0 auto 0 0;
    }
}
.text-003.text-003-img-right{
    .singleimg-container {
        border-radius: 16px 0 0 16px;
    }
    .text-003-text{
        max-width: 685px;
        margin: 0 0 0 auto;
    }
}
.text-003 .image-col {
    height: 100%;
    display: flex;
}

.text-003 .image-fit {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width : 1400px) {
    .text-003.text-003-img-left{
        .text-003-text{
            margin: 0 40px 0 0;
        }
    }
    .text-003.text-003-img-right{
        .text-003-text{
            max-width: 685px;
            margin: 0 0 0 40px;
        }
    }
}
@media (max-width : 959px) {
    .text-003{
        .mobilorder1{
            order:1;
        }
        .mobilorder2{
            order:2;
        }
        .text-003-mobil-container{
            padding:0 30px;
        }
        .singleimg-container{
            height: 260px;
            border-radius:16px !important;
        }
        .text-003-text {
            margin: 0 !important;
            max-width: unset !important;
        }
        .text-ditance-top{
            margin-top:0 !important;
        }
    }
}

@media (max-width : 639px) {
    .text-003{
        .text-003-mobil-container{
            padding:0;
        }
        .multiimg-container{
            border-radius: 0 !important;
        }
        .singleimg-container{
            border-radius: 0 !important;
        }
        .text-003-text {
            margin: 0 15px !important;
        }
    }
}
/* ENDE MODUL TEXT-003 */




/* START MODUL CARD-001 */
.card-001{
    .card-container {
        width: 100%;
    }
    p{
        color:var(--startklar-White);
        font-weight: 400;
        text-align: center;
    }
    .card-item{
        display: block;
        border-radius: 16px;
        overflow: hidden;
        &:hover{
            .uk-overlay-primary{
                background: rgba(205, 0, 126, 0.66);
            }
            img {
                transform: scale(1.15);
            }
        }
        .uk-overlay-primary{
            transition: background 0.4s ease;
        }
    }
    &.card-anzahl-2{
        .card-container{
            height: 440px;
        }
        p{
            font-size: 32px;
            line-height: 32px;
        }
    }
    &.card-anzahl-3{
        .card-container{
            height: 320px;
        }
        p{
            font-size: 32px;
            line-height: 32px;
        }
    }
    &.card-anzahl-4{
        .card-container{
            height: 250px;
        }
        p{
            font-size: 24px;
            line-height: 24px;
        }
    }
}

@media (max-width : 639px) {
    .card-001{
        .card-container {
            height: 175px !important;
        }
        &.card-anzahl-2{
            p{
                font-size: 24px;
                line-height: 32px;
            }
        }
        &.card-anzahl-3{
            p{
                font-size: 24px;
                line-height: 32px;
            }
        }
        &.card-anzahl-4{
            p{
                font-size: 20px;
                line-height: 24px;
            }
        }
    }
}
/* ENDE MODUL CARD-001 */


/* START MODUL GLRY-001 */
.glry-001{
    &.layout-full {
        &.img-anzahl-1 {
            .img-container {
                height: 540px;
            }
        }
        &.img-anzahl-2 {
            .img-container {
                height: 540px;
                border-radius: 0  16px 16px 0;
            }
            .img-item:nth-child(2n){
                .img-container{
                    border-radius: 16px 0 0 16px;
                }
            }
        }
        &.img-anzahl-4 {
            .img-container {
                height: 300px;
                border-radius: 16px;
            }
            .img-item:first-child{
                .img-container{
                    border-radius: 0 16px 16px 0;
                }
            }
            .img-item:nth-child(4n){
                .img-container{
                    border-radius: 16px 0 0 16px;
                }
            }
            .img-item:nth-child(4n+1){
                .img-container{
                    border-radius: 0 16px 16px 0;
                }
            }
        }
    }
    &.layout-content {
        .img-container{
            border-radius: 16px;
        }
        &.img-anzahl-1 {
            .img-container {
                height: 500px;
            }
        }
        &.img-anzahl-2 {
            .img-container {
                height: 400px;
            }
        }
        &.img-anzahl-3 {
            .img-container {
                height: 320px;
            }
        }
        &.img-anzahl-4 {
            .img-container {
                height: 220px;
            }
        }
    }
}
@media (max-width : 1199px) {
    .glry-001 {
        &.layout-full {
            &.img-anzahl-4 {
                .img-item:first-child{
                    .img-container{
                        border-radius: unset;
                    }
                }
                .img-item:nth-child(4n){
                    .img-container{
                        border-radius: unset;
                    }
                }
                .img-item:nth-child(4n+1) {
                    .img-container {
                        border-radius: unset;
                    }
                }
                .img-container {
                    border-radius: 0 16px 16px 0 !important;
                }
                .img-item:nth-child(2n){
                    .img-container{
                        border-radius: 16px 0 0 16px !important;
                    }
                }
            }
        }
        &.layout-content {

        }
    }
}
@media (max-width : 639px) {
    .glry-001{
        .uk-grid-medium > .uk-grid-margin {
            margin-top: 15px;
        }
        &.layout-full {
            &.img-anzahl-1 {
                .img-container {
                    height: 200px;
                }
            }
            &.img-anzahl-2 {
                .img-container {
                    height: 130px;
                }
                .uk-grid-medium > .uk-grid-margin{
                    margin-top: 15px;
                }
                .uk-grid-medium {
                    margin-left: -15px;
                }
                .uk-grid-medium > * {
                    padding-left: 15px;
                }
            }
            &.img-anzahl-4 {
                .img-container{
                    height: 130px;
                }
                .uk-grid-medium {
                    margin-left: -15px;
                }
                .uk-grid-medium > .uk-grid-margin{
                    margin-top: 15px;
                }
                .uk-grid-medium > * {
                    padding-left: 15px;
                }
            }
        }
        &.layout-content {
            &.img-anzahl-1 {
                .img-container {
                    height: 200px;
                }
            }
            &.img-anzahl-2 {
                .img-container {
                    height: 110px;
                }
                .uk-grid-medium > .uk-grid-margin{
                    margin-top: 15px;
                }
                .uk-grid-medium {
                    margin-left: -15px;
                }
                .uk-grid-medium > * {
                    padding-left: 15px;
                }
            }
            &.img-anzahl-3 {
                .img-container {
                    height: 110px;
                }
                .uk-grid-medium > .uk-grid-margin{
                    margin-top: 15px;
                }
                .uk-grid-medium {
                    margin-left: -15px;
                }
                .uk-grid-medium > * {
                    padding-left: 15px;
                }
            }
            &.img-anzahl-4 {
                .img-container {
                    height: 110px;
                }
                .uk-grid-medium > .uk-grid-margin{
                    margin-top: 15px;
                }
                .uk-grid-medium {
                    margin-left: -15px;
                }
                .uk-grid-medium > * {
                    padding-left: 15px;
                }
            }
        }
    }
}
/* ENDE MODUL GLRY-001 */




/* START MODUL CRSL-001 */
.crsl-001{

    &.layout-full{
        .splide{
            .splide-controls {
                margin-top: 0px;
            }
            .splide__arrow--prev{
                border-radius: 16px 0 0 0;
            }
            .splide__arrow--next{
                border-radius: 0 0 0 16px;
            }
        }
        &.img-anzahl-1{
            .img-container{
                height:540px;
            }
        }
        &.img-anzahl-2{
            .img-container{
                height:540px;
            }
            ul{
                li{
                    .img-container {
                        border-radius: 16px 0 0 16px;
                    }
                }
                li.is-active{
                    .img-container {
                        border-radius: 0 16px 16px 0;
                    }
                }
            }
        }
        &.img-anzahl-4{
            .img-container{
                height:300px;
            }
            ul{
                li{
                    .img-container {
                        border-radius: 16px;
                    }
                    &.is-active{
                        .img-container {
                            border-radius: 0 16px 16px 0;
                        }
                    }
                    &.slidelast{
                        .img-container {
                            border-radius: 16px 0 0 16px;
                        }
                    }
                }
                lixxx{
                    &.is-visible{
                        &.is-active {
                            .img-container {
                                border-radius: 0 16px 16px 0;
                            }
                        }
                        &:XXnth-of-type(4){
                            .img-container {
                                border-radius: 16px 0 0 16px;
                            }
                        }
                    }
                }
            }
        }
    }
    &.layout-content{
        .splide {
            .img-container {
                border-radius: 16px;
            }
        }
        &.img-anzahl-1{
            .img-container{
                height:500px;
            }
        }
        &.img-anzahl-2{
            .img-container{
                height:400px;
            }
        }
        &.img-anzahl-3{
            .img-container{
                height:320px;
            }
        }
        &.img-anzahl-4{
            .img-container{
                height:220px;
            }
        }
    }
}
@media (max-width : 1200px) {
    .crsl-001 {
        &.layout-full {
            &.img-anzahl-4 {
                .splide {
                    li{
                        .img-container {
                            border-radius: 16px 0 0 16px !important;
                        }
                    }
                    li.is-active{
                        .img-container {
                            border-radius: 0 16px 16px 0 !important;
                        }
                    }
                }
            }
        }
    }
}
@media (max-width : 959px) {
    .crsl-001 {
        &.layout-full {
            &.img-anzahl-2{
                .splide{
                    li{
                        .img-container {
                            border-radius: 0 !important;
                        }
                    }
                    li.is-active{
                        .img-container {
                            border-radius: 0 !important;
                        }
                    }
                }
            }
            &.img-anzahl-4 {
                .splide {
                    li{
                        .img-container {
                            border-radius: 0 !important;
                        }
                    }
                    li.is-active{
                        .img-container {
                            border-radius: 0 !important;
                        }
                    }
                }
            }
        }
    }
}
/* ENDE MODUL CRSL-001 */


/* START MODUL CHDR-001 */
.chdr-001{
    .uk-cover-container {
        height: 640px;
    }
}
@media (max-width : 639px) {
    .chdr-001{
        .uk-cover-container {
            height: 400px;
        }
    }
}
/* ENDE MODUL CHDR-001 */


.breadcrumb{
    ul{
        list-style: none;
        padding:0;
        li{
            display: inline-block;
            margin-right:40px;
            position: relative;
            &:after{
                position: absolute;
                top:0;
                right:-26px;
                content: '>';

            }
            &:last-child{
                &:after{
                    display: none;

                }
            }
            a{
                color:var(--startklar-Pink);
                font-size:18px;
                font-weight: 700;
                line-height: 24px;
                &.home{
                    color:var(--startklar-Black);
                    font-weight: 400;
                }
            }
        }
    }
}



/* START MODUL DVDR-001 */
.dvdr-001{
    .dvdr-line{
        height: 0px;
        line-height: 0px;
        &.solid{
            border-top:2px solid var(--startklar-Black);
        }
        &.dashed{
            border-top:2px dashed var(--startklar-Black);
        }
        &.dots{
            border-top:2px dotted var(--startklar-Black);
        }
    }
    .dvdr-icon{
        top:-30px;
        left: 50%;
        transform: translate(-50%);
        width: 56px;
        height: 56px;
        border-radius: 28px;
        background: var(--startklar-White);
        i{
            color:var(--startklar-Black);
            font-size: 30px;
            margin: 12px 0 0 13px;
        }
    }
    &.sectionbg-black{
        .dvdr-line{
            &.solid{
                border-top:2px solid var(--startklar-White);
            }
            &.dashed{
                border-top:2px dashed var(--startklar-White);
            }
            &.dots{
                border-top:2px dotted var(--startklar-White);
            }
        }
        .dvdr-icon {
            background: var(--startklar-Black);

            i {
                color: var(--startklar-White);
            }
        }
    }
    &.sectionbg-primary{
        .dvdr-line{
            &.solid{
                border-top:2px solid var(--startklar-White);
            }
            &.dashed{
                border-top:2px dashed var(--startklar-White);
            }
            &.dots{
                border-top:2px dotted var(--startklar-White);
            }
        }
        .dvdr-icon {
            background:var(--startklar-Green);

            i {
                color: var(--startklar-White);
            }
        }
    }
}
/* ENDE MODUL DVDR-001 */


.podcasts{
    .item{
        border-radius: 16px;
        border: 2px solid var(--startklar-Black);
        overflow: hidden;
        margin-bottom: 28px;
        .img{
            width: 200px;
            .uk-cover-container{
                height: 200px;
            }
        }
        .content{
            padding:10px 30px 10px 30px;
            .folge{
                color: var(--startklar-Pink);
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 18px;
            }
            .titel{
                margin-top:5px;
                overflow: hidden;
                color: var(--startklar-Black);
                font-size: 24px;
                font-style: normal;
                font-weight: 900;
                line-height: normal;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
                align-self: stretch;
                overflow: hidden;
                color: var(--startklar-Black);
                text-overflow: ellipsis;
            }
            .text{
                margin-top:5px;
                display: -webkit-box;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 2;
                align-self: stretch;
                overflow: hidden;
                color: var(--startklar-Black);
                text-overflow: ellipsis;
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: normal;
            }
            .dauer{
                margin-top:25px;
                color: var(--startklar-Black);
                font-size: 18px;
                font-style: normal;
                font-weight: 400;
                line-height: 18px;
            }
            a{
                position: absolute;
                right:30px;
                bottom:20px;
                &:hover{
                    background:var(--startklar-Pink);
                    border:2px solid var(--startklar-Pink);
                    color:var(--startklar-White);
                    i{
                        fill:var(--startklar-White) !important;
                    }
                }
            }
        }
    }
}
@media (max-width : 639px) {
    .podcasts {
        .item {
            margin-bottom: 20px;
            .img {
                width:100%;

                .uk-cover-container {
                    height: 300px;
                }
            }
            .content {
                padding:20px 20px 20px 20px;
                a {
                    position: relative;
                    right: unset;
                    bottom: unset;
                    margin-top:20px;
                }
            }
        }
    }
}




/* START MODUL DOWN-001 */
.down-001{
    .item{
        display: block;
        border-radius: 16px;
        margin-top:30px;
        padding:30px 40px;
        transition: background 0.4s ease, border 0.4s ease;
        &:first-child{
            margin-top:0;
        }
        .vorschau{
            width: 120px;
            height:150px;
            background: var(--startklar-White);
            border-radius: 16px;
            box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
            overflow: hidden;
        }
        .info{
            .titel{
                color: var(--startklar-Black);
                font-size: 24px;
                font-weight: 700;
                line-height: 24px;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                overflow: hidden;
                display: -webkit-box;
                transition: color 0.4s ease;
            }
            .text{
                color: var(--startklar-Black);
                font-size: 18px;
                font-weight: 300;
                line-height:24px;
                margin:15px 0;
                -webkit-box-orient: vertical;
                -webkit-line-clamp: 1;
                line-clamp: 1;
                overflow: hidden;
                display: -webkit-box;
                transition: color 0.4s ease;
            }
            .size{
                color: var(--startklar-Black);
                font-size: 18px;
                font-weight: 700;
                line-height: 24px;
                transition: color 0.4s ease;
            }
        }
        .button-container{
            margin:0;
            width: 180px;
            .uk-button{
                text-transform: none;
                margin:0;
                background: var(--startklar-Green);
                border:2px solid var(--startklar-Black);
                color:var(--startklar-Black);
                &:hover{
                    background: var(--startklar-Pink);
                    border:2px solid var(--startklar-Pink);
                    color:var(--startklar-White);
                    i{
                        color: var(--startklar-White);
                    }
                }
            }
        }
    }
    &.layout-shadow{
        .item{
            box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.25);
        }
    }
    &.layout-stroke{
        .item{
            border: 1px solid var(--startklar-Black);
        }
    }
    &.sectionbg-black{
        &.layout-stroke{
            .item{
                border: 1px solid var(--startklar-White);
            }
        }
        .info{
            .titel{
                color: var(--startklar-White);
            }
            .text{
                color: var(--startklar-White);
            }
            .size{
                color: var(--startklar-White);
            }
        }
        .uk-button {
            border: 1px solid var(--startklar-White);
            color: var(--startklar-White);
            i{
                color: var(--startklar-White);
            }
        }
    }
    &.sectionbg-primary{
        &.layout-stroke{
            .item{
                border: 1px solid var(--startklar-White);
            }
        }
        .info{
            .titel{
                color: var(--startklar-White);
            }
            .text{
                color: var(--startklar-White);
            }
            .size{
                color: var(--startklar-White);
            }
        }
        .uk-button {
            border: 1px solid var(--startklar-White);
            color: var(--startklar-White);
            i{
                color: var(--startklar-White);
            }
        }
        .item{
            .uk-button {
                &:hover{
                    border: 1px solid var(--startklar-White);
                    background: var(--startklar-White);
                    color: var(--startklar-Black);
                    i{
                        color: var(--startklar-Black);
                    }
                }
            }
        }
    }
}
@media (max-width : 959px) {
    .down-001 {
        .item {
            margin-top: 30px;
            padding: 30px 15px;
            .uk-position-center-right{
                position: relative !important;
                top: unset;
                --uk-position-translate-y: unset;
                right: unset;
            }
            .button-container {
                width: 100%;
                .uk-button{
                    width: 100%;
                }
            }
            .info {
                margin: 10px 0 0 0;
            }
            .uk-grid-medium > * {
                padding-left: 15px;
            }
            .uk-grid-medium > .uk-grid-margin,{
                margin-top:15px;
            }
            .uk-grid-medium {
                margin-left: -15px;
            }
        }
    }
}
@media (max-width : 639px) {
    .down-001 {
        .item {
            margin-top: 15px;
            .info{
                margin:30px 0;
                .titel{
                    font-size: 20px;
                    line-height: 24px;
                }
                .text{
                    font-size: 16px;
                    line-height: 24px;
                }
                .size{
                    font-size: 16px;
                    line-height: 24px;
                }
            }
        }
    }
}
/* ENDE MODUL DOWN-001 */





/* START MODUL ACCN-001 */
.accn-001{
    li{
        border-radius: 16px;
        overflow: hidden;
        .uk-accordion-title {
            color:var(--startklar-Black);
            font-size: 18px;
            font-weight: 300;
            line-height: 24px;
            padding:20px 40px;
            transition: background 0.4s ease;
            position: relative;
            &::before {
                width: 18px;
                height: 24px;
                margin-left: 10px;
                content: "\2b";
                font-family: "Font Awesome 7 Pro";
                font-weight: 900;
                position: absolute;
                right: 40px;
                top: 50%;
                transform: translateY(-50%);
            }
            &:hover{
                background: var(--startklar-Pink);
                color: var(--startklar-White);
                &::before {
                    color:var(--startklar-White);
                }
            }
        }
        .uk-accordion-content{
            border-radius: 0 0 16px 16px;
            font-size: 18px;
            font-weight: 300;
            line-height: 24px;
            margin:0;
            padding:30px;
            p{
                color: var(--startklar-Black) !important;
            }
            img{
                border-radius: 16px;
            }
        }
        &.uk-open{
            & > .uk-accordion-title::before {
                content: "\f068";
                font-family: "Font Awesome 7 Pro";
                font-weight: 900;
                position: absolute;
                right: 40px;
                top: 50%;
                transform: translateY(-50%);
                color:var(--startklar-Black);
            }
            &:hover{
                &::before {
                    color:var(--startklar-Black);
                }
            }
            .uk-accordion-title {
                background: var(--startklar-Green);
                color:var(--startklar-Black);
                border-bottom: 2px solid var(--startklar-Black);
            }
        }
    }
    &.layout-shadow{
        li{
            box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.25);
        }
    }
    &.layout-stroke{
        li{
            border: 2px solid var(--startklar-Black);;
        }
    }
    &.sectionbg-black{
        &.layout-shadow{
            li{
                box-shadow: 0px 0px 6px 0px rgba(255, 255, 255, 0.25);
            }
        }
        li {
            .uk-accordion-title {
                color: var(--startklar-White);
                &::before {
                    width: 18px;
                    height: 24px;
                    margin-left: 10px;
                    background: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67593 0.615385C8.67593 0.276923 8.39901 0 8.06055 0C7.72209 0 7.44516 0.276923 7.44516 0.615385V7.38462H0.675932C0.33747 7.38462 0.0605469 7.66154 0.0605469 8C0.0605469 8.33846 0.33747 8.61539 0.675932 8.61539H7.44516V15.3846C7.44516 15.7231 7.72209 16 8.06055 16C8.39901 16 8.67593 15.7231 8.67593 15.3846V8.61539H15.4452C15.7836 8.61539 16.0605 8.33846 16.0605 8C16.0605 7.66154 15.7836 7.38462 15.4452 7.38462H8.67593V0.615385Z' fill='white'/%3E%3C/svg%3E") no-repeat;
                    background-position: 0 4px;
                }
                &:hover{
                    background: var(--startklar-White);
                    color: var(--startklar-Black);
                    &::before {
                        background: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67593 0.615385C8.67593 0.276923 8.39901 0 8.06055 0C7.72209 0 7.44516 0.276923 7.44516 0.615385V7.38462H0.675932C0.33747 7.38462 0.0605469 7.66154 0.0605469 8C0.0605469 8.33846 0.33747 8.61539 0.675932 8.61539H7.44516V15.3846C7.44516 15.7231 7.72209 16 8.06055 16C8.39901 16 8.67593 15.7231 8.67593 15.3846V8.61539H15.4452C15.7836 8.61539 16.0605 8.33846 16.0605 8C16.0605 7.66154 15.7836 7.38462 15.4452 7.38462H8.67593V0.615385Z' fill='%231A1A1A'/%3E%3C/svg%3E") no-repeat;
                        background-position: 0 4px;
                    }
                }
            }
            &.uk-open{
                .uk-accordion-title {
                    background: var(--startklar-White);
                    color: var(--startklar-Black);
                    &::before {
                        background: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67593 0.615385C8.67593 0.276923 8.39901 0 8.06055 0C7.72209 0 7.44516 0.276923 7.44516 0.615385V7.38462H0.675932C0.33747 7.38462 0.0605469 7.66154 0.0605469 8C0.0605469 8.33846 0.33747 8.61539 0.675932 8.61539H7.44516V15.3846C7.44516 15.7231 7.72209 16 8.06055 16C8.39901 16 8.67593 15.7231 8.67593 15.3846V8.61539H15.4452C15.7836 8.61539 16.0605 8.33846 16.0605 8C16.0605 7.66154 15.7836 7.38462 15.4452 7.38462H8.67593V0.615385Z' fill='%231A1A1A'/%3E%3C/svg%3E") no-repeat;
                        background-position: 0 4px;
                    }
                }
            }
            .uk-accordion-content{
                p{
                    color: var(--startklar-White) !important;
                }
            }
        }
        &.layout-stroke{
            li{
                border: 2px solid var(--startklar-White);
            }
        }
    }
    &.sectionbg-primary{
        li {
            .uk-accordion-title {
                color: var(--startklar-Black);
                &::before {
                    width: 18px;
                    height: 24px;
                    margin-left: 10px;
                    background: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67593 0.615385C8.67593 0.276923 8.39901 0 8.06055 0C7.72209 0 7.44516 0.276923 7.44516 0.615385V7.38462H0.675932C0.33747 7.38462 0.0605469 7.66154 0.0605469 8C0.0605469 8.33846 0.33747 8.61539 0.675932 8.61539H7.44516V15.3846C7.44516 15.7231 7.72209 16 8.06055 16C8.39901 16 8.67593 15.7231 8.67593 15.3846V8.61539H15.4452C15.7836 8.61539 16.0605 8.33846 16.0605 8C16.0605 7.66154 15.7836 7.38462 15.4452 7.38462H8.67593V0.615385Z' fill='white'/%3E%3C/svg%3E") no-repeat;
                    background-position: 0 4px;
                }
                &:hover{
                    background: var(--startklar-White);
                    color: var(--startklar-Black);
                    &::before {
                        background: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67593 0.615385C8.67593 0.276923 8.39901 0 8.06055 0C7.72209 0 7.44516 0.276923 7.44516 0.615385V7.38462H0.675932C0.33747 7.38462 0.0605469 7.66154 0.0605469 8C0.0605469 8.33846 0.33747 8.61539 0.675932 8.61539H7.44516V15.3846C7.44516 15.7231 7.72209 16 8.06055 16C8.39901 16 8.67593 15.7231 8.67593 15.3846V8.61539H15.4452C15.7836 8.61539 16.0605 8.33846 16.0605 8C16.0605 7.66154 15.7836 7.38462 15.4452 7.38462H8.67593V0.615385Z' fill='white'/%3E%3C/svg%3E") no-repeat;
                        background-position: 0 4px;
                    }
                }
            }
            &.uk-open{
                .uk-accordion-title {
                    background:var(--startklar-White);
                    color: var(--startklar-Black);
                    &::before {
                        background: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67593 0.615385C8.67593 0.276923 8.39901 0 8.06055 0C7.72209 0 7.44516 0.276923 7.44516 0.615385V7.38462H0.675932C0.33747 7.38462 0.0605469 7.66154 0.0605469 8C0.0605469 8.33846 0.33747 8.61539 0.675932 8.61539H7.44516V15.3846C7.44516 15.7231 7.72209 16 8.06055 16C8.39901 16 8.67593 15.7231 8.67593 15.3846V8.61539H15.4452C15.7836 8.61539 16.0605 8.33846 16.0605 8C16.0605 7.66154 15.7836 7.38462 15.4452 7.38462H8.67593V0.615385Z' fill='white'/%3E%3C/svg%3E") no-repeat;
                        background-position: 0 4px;
                    }
                }
            }
            .uk-accordion-content{
                p{
                    color: var(--startklar-Blacks) !important;
                }
            }
        }
        &.layout-stroke{
            li{
                border: 2px solid var(--startklar-Black);
            }
        }
    }
}
@media (max-width : 639px) {
    .accn-001 {
        li {
            .mobil-first{
                order:1;
            }
            .mobil-second{
                order:2;
            }
            .uk-accordion-title {
                font-size: 16px;
                line-height: 24px;
                padding: 10px 25px 10px 15px;

                &::before {
                    width: 18px;
                    height: 24px;
                    margin-left: 10px;
                    background: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67593 0.615385C8.67593 0.276923 8.39901 0 8.06055 0C7.72209 0 7.44516 0.276923 7.44516 0.615385V7.38462H0.675932C0.33747 7.38462 0.0605469 7.66154 0.0605469 8C0.0605469 8.33846 0.33747 8.61539 0.675932 8.61539H7.44516V15.3846C7.44516 15.7231 7.72209 16 8.06055 16C8.39901 16 8.67593 15.7231 8.67593 15.3846V8.61539H15.4452C15.7836 8.61539 16.0605 8.33846 16.0605 8C16.0605 7.66154 15.7836 7.38462 15.4452 7.38462H8.67593V0.615385Z' fill='%231A1A1A'/%3E%3C/svg%3E") no-repeat;
                    background-position: 0 4px;
                    right:10px;
                }

                &:hover {
                    background: var(--startklar-Black);
                    color: var(--startklar-White);

                    &::before {
                        background: url("data:image/svg+xml,%3Csvg width='17' height='16' viewBox='0 0 17 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.67593 0.615385C8.67593 0.276923 8.39901 0 8.06055 0C7.72209 0 7.44516 0.276923 7.44516 0.615385V7.38462H0.675932C0.33747 7.38462 0.0605469 7.66154 0.0605469 8C0.0605469 8.33846 0.33747 8.61539 0.675932 8.61539H7.44516V15.3846C7.44516 15.7231 7.72209 16 8.06055 16C8.39901 16 8.67593 15.7231 8.67593 15.3846V8.61539H15.4452C15.7836 8.61539 16.0605 8.33846 16.0605 8C16.0605 7.66154 15.7836 7.38462 15.4452 7.38462H8.67593V0.615385Z' fill='white'/%3E%3C/svg%3E") no-repeat;
                        background-position: 0 4px;
                    }
                }
            }

            .uk-accordion-content {
                padding: 10px 15px;
                font-size: 16px;
                line-height: 24px;
            }
        }
    }
}
/* ENDE MODUL ACCN-001 */



.toparbeitgeber{
    .item{
        display: block;
        border: 2px solid var(--startklar-Green);
        .overlay{
            width: 100%;
            height: 190px;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 9.01%, rgba(255, 255, 255, 0.88) 67.8%);
            transition: background 0.4s ease, height 0.1s ease;
        }
        .contentbox{
            width: 100%;
            .content{
                padding:0 15px 20px 15px;
                h3{
                    color: var(--startklar-Black);
                    font-size: 20px;
                    font-style: normal;
                    font-weight: 700;
                    line-height: 24px;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 2;
                    line-clamp: 2;
                    overflow: hidden;
                    display: -webkit-box;
                }
                .kategorien{
                    margin-top:12px;
                    color: var(--startklar-Black);
                    font-size: 12px;
                    font-style: normal;
                    font-weight: 400;
                    line-height: normal;
                    text-transform: uppercase;
                    -webkit-box-orient: vertical;
                    -webkit-line-clamp: 1;
                    line-clamp: 1;
                    overflow: hidden;
                    display: -webkit-box;
                    svg{
                        margin-right:5px;
                        vertical-align: bottom;
                    }
                }
            }
        }
        .badge{
            padding-top:8px;
            width: 50px;
            height: 42px;
            overflow: hidden;
            background: var(--startklar-Green);
            color: var(--startklar-Black);
            font-size: 20px;
            font-style: normal;
            font-weight: 900;
            line-height: 20px;
            span{
                display: block;
                color: var(--startklar-Black);
                font-size: 10px;
                font-style: normal;
                font-weight: 300;
                line-height: 13px; /* 130% */
            }
        }
        .logobox{
            width: 170px;
            height: 50px;
            background: var(--startklar-White);
            border-radius: 0 0 0 7px;
            display: flex;
            justify-content: center;
            align-items: center;
            img{
                max-width: 115px;
                max-height: 40px;
                width: auto;
                height: auto;
            }
        }
        &:hover{
            text-decoration: none;
            .overlay{
                height:100%;
                opacity: 0.8;
                background: var(--startklar-Green);
            }
        }
    }
}

.uk-lightbox{
    z-index: 9999999;
}