.kss__hero_v2 {
    --hero-height: 100vh;
    position: relative;
    overflow: hidden;
}

@media screen and (max-width: 768px) {
    .kss__hero_v2 {
        --hero-height: 100vh;
    }

}

.kss__hero__video {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    max-height: var(--hero-height);
    object-fit: cover;
    z-index: 0;
}



.kss__hero__inner {
    min-height: var(--hero-height);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 5;
    top: 0;
    left: 0;
    width: 100%;
}

.kss-hero-background-image-style {
    position: relative !important;
    min-height: var(--hero-height);
}

.kss__hero__inner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1;
}

.kss__hero_content {
    position: relative;
    top: -50px;
    height: 100%;
    color: white;
    text-align: center;
    z-index: 2;
}


.kss__hero_headline {
    font-size: clamp(1.5rem, 2.5vw, 3rem);
}

@media (max-width: 768px) {
    .kss__hero_headline {
        font-size: clamp(2rem, 4vw, 7rem);
    }

    .kss__hero_content {
        top: -25px;
    }
}

@media (max-width: 480px) {
    .kss__hero_headline {
        font-size: 2rem;
    }

    .kss__hero_content {
        margin-top: 2rem;
    }
}

.kss__hero_subheadline {
    display: block;
    margin-bottom: 2rem;
    font-size: 4rem;
}


.kss__hero_content p {
    text-shadow: 0 0 7px rgba(255, 255, 255, .3), 0 0 3px rgba(255, 255, 255, .3);
}

.kss__hero__btn {
    background-color: var(--kss-primary-hover-color);
    color: white;
    padding: 0.25rem 1.75rem;
    text-decoration: none;
    border-radius: 10px;
    font-size: 2rem;
    transition: all 0.3s;
    font-weight: 500;
    border: 2px solid var(--kss-primary-color);
}

.kss__hero__btn.--outline {
    background-color: transparent;
    color: white;
    transition: all 0.3s;
}


@media screen and (max-width: 768px) {
    .kss__hero_subheadline {
        font-size: 2rem;
    }

    .kss__hero__btn {
        font-size: 1.5rem;
        padding: 1rem 1.5rem;
    }
}

.kss__hero__btn:hover {
    background-color: var(--kss-primary-hover-color);
    transition: all 0.3s;
    color: black;
}


.kss__hero-lastClaim {
    font-size: 2.25rem !important;
    margin-bottom: 5rem;
}

.kss__hero__links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

@media screen and (max-width: 668px) {
    .kss__hero__links {
        flex-direction: column;
    }

    .kss__hero-lastClaim {
        font-size: 1.75rem !important;
        margin-bottom: 2.5rem;
    }
}


#kss-heroHeadlineContent {
    display: none;
}

.animation-content div {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

/* Effects maybe delete */

.--transitionOppacity {
    opacity: 0;
    transition: all 0.5s;
}

.-show {
    opacity: 1;
    transition: all 0.5s;
    padding: 1rem;
}

/* Text Slider */

.kss__slider_service_text {
    overflow: hidden;
    height: 70px;
    width: 100%;
    position: relative;
}

.kss__slider_service_text .kss_slider_textBox {
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
    animation: TextTransition 10s infinite;
    margin-bottom: 1rem;
}

.kss__slider_service_text .kss_slider_textBox div {
    width: auto;
    padding: 1rem;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
}

@media screen and (max-width: 480px) {
    .kss__slider_service_text .kss_slider_textBox div {
        width: 100%;
        margin: 0 2rem;
    }
}

.kss__slider_service_text .kss_slider_textBox:nth-child(1) div {
    background-color: orange;
}

.kss__slider_service_text .kss_slider_textBox:nth-child(2) div {
    background-color: red;
}

.kss__slider_service_text .kss_slider_textBox:nth-child(3) div {
    background-color: purple;
}


/* Animate the text box to transition top in 50px steps*/
@keyframes TextTransition {
    0% {
        top: 0;
    }

    25% {
        top: -86px;
    }

    50% {
        top: -172px;
    }

    75% {
        top: -86px;
    }

    100% {
        top: 0px;
    }
}