.overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to bottom, rgba(14, 29, 51, 0.8), rgba(14, 29, 51, 0.2));
}

.landing_carousel {
    height: 100dvh;
    overflow: clip;
}

.hero-slider {
    width: 100%;
    height: 100%;


    & .carousel-cell {
        width: 100%;
        height: 100%;
        background-repeat: no-repeat;
        background-size: cover;
    }

    & .carousel-cell .inner {
        position: relative;
        top: 50%;
        transform: translateY(-50%);
        color: white;
        text-align: center;
    }

    & .carousel-cell .inner .subtitle {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        font-size: 2.2rem;
        line-height: 1.2em;
        font-weight: 200;
        font-style: italic;
        letter-spacing: 3px;
        color: rgba(255, 255, 255, 0.5);
        margin-bottom: 5px;
    }

    & .carousel-cell .inner .title {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        word-spacing: 9999rem;
        font-size: 2.25rem;
        line-height: 1.2em;
        text-transform: uppercase;
        letter-spacing: 3px;
        margin-bottom: 40px;
    }

    & .carousel-cell .inner .btn {
        border: 1px solid #fff;
        padding: 14px 18px;
        text-transform: uppercase;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
        font-size: 0.8rem;
        letter-spacing: 3px;
        color: #fff;
        text-decoration: none;
        transition: all 0.2s ease;
    }

    & .carousel-cell .inner .btn:hover {
        background: #fff;
        color: #000;
    }

    & .flickity-prev-next-button {
        width: 80px;
        height: 80px;
        background: transparent;
    }

    & .flickity-prev-next-button.next {
        margin-right: 60px;
    }

    & .flickity-prev-next-button svg:hover {
        .arrow {
            fill: red;
        }
    }

    & .flickity-prev-next-button:disabled svg {
        .arrow {
            fill: white;
        }
    }

    & .flickity-prev-next-button:hover {
        background: transparent;
    }

    & .flickity-prev-next-button .arrow {
        fill: white;
    }

    & .flickity-page-dots {
        bottom: 30px;
    }

    & .flickity-page-dots .dot {
        width: 30px;
        height: 4px;
        opacity: 1;
        background: rgba(255, 255, 255, 0.5);
        border: 0 solid white;
        border-radius: 0;
    }

    & .flickity-page-dots .dot.is-selected {
        background: #ff0000;
        border: 0 solid #ff0000;
    }
}

@media(max-width: 430px) {
    .landing_carousel .hero-slider .carousel-cell .inner .title {
        font-size: 2.2rem;
    }
}

@media(max-width: 500px) {
    .landing_carousel .hero-slider .carousel-cell .inner .title {
        font-size: 2.5rem;
    }

    .carousel-cell {
        background-position: center;
    }
}

@media(max-width: 1050px) {
    .hero-slider .carousel-cell .inner .title {
        padding: 0 5dvw;
    }

    .flickity-prev-next-button {
        display: none;
    }

    .carousel-cell {
        background-position: center;
    }
}

@media(min-width: 900px) {
    .hero-slider .carousel-cell .inner .title {
        word-spacing: 0px;
    }
}

.haha {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;

    & .arrow {
        width: 45px;
        height: 70px;
        /*  border: 2px solid #fff; */
        /*  border-radius: 50%; */
        position: absolute;
        bottom: 30px;
        margin: auto;
        transition: ease-in;
        animation: down 1.5s infinite;
        -webkit-animation: bounce2 1.5s infinite;
    }

    & .arrow::before {
        content: "";
        position: absolute;
        top: 11px;
        left: 13px;
        width: 20px;
        height: 20px;
        border-left: 2px solid #fafafa;
        border-bottom: 2px solid #fafafa;
        transform: rotate(-45deg);
    }

    & .fade-in {
        opacity: 1;
        transition: 1s all ease-in;
    }

    & .fade-out {
        opacity: 0;
        transition: 1s all ease-out;
    }
}

@keyframes bounce2 {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}

@-webkit-keyframes bounce2 {
    0% {
        transform: translate(0);
    }

    20% {
        transform: translateY(15px);
    }

    40% {
        transform: translate(0);
    }
}