/*HERO SWIPER*/

.hero-slider-wrapper {
    width: 100%;
    height: 100vh;
    position: relative;
    order: 0;
}

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

.hero-slider .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    background: black;
}

.hero-slider .slider-hero-media {
    opacity: .25;
    transition: all .5s ease-in-out;
}

.hero-slider .swiper-slide-active .slider-hero-media {
    opacity: .9;
    transition: all 1s ease-in-out;
}

.hero-slider .swiper-slide-active {
    z-index: 2;
}

.slider-hero-media {
    width: 100%;
    height: 100%;
    z-index: 0;
}

.slider-hero-media img {
    width: 100%;
    object-fit: cover;
    height: 100%;
max-height: 100vh;
}

.slider-hero-video-wrapper {
    width: 100%;
    height: 100%;
}

.slider-hero-video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-hero-content {
    position: absolute;
    top: 0;
    left: 0;
    top: 50%;
    left: 50%;
    z-index: 1;

    height: 100%;
    max-height: 100vh;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.hero-slider-wrapper .titles-wrapper {
    margin: 12px 0px 32px;
    width: 100%;
}

.hero-slider-wrapper .subtitle {
    margin-bottom: 0px;
    width: 320px;
}

.hero-slider-wrapper .buttons-wrapper,
.subtitles-wrapper,
.titles-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.subtitles-wrapper {
    text-align: center;
}

.slider-button {
    position: relative;
    display: block;
}

.slider-button:not(:first-child),
.subtitles-wrapper .subtitle:not(:first-child),
.titles-wrapper .title-wrapper:not(:first-child) {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.slider-button:nth-child(2),
.subtitles-wrapper .subtitle:nth-child(2),
.titles-wrapper .title-wrapper:nth-child(2) {
    top: 100%;
}

.slider-button:nth-child(3),
.subtitles-wrapper .subtitle:nth-child(3),
.titles-wrapper .title-wrapper:nth-child(3) {
    top: 200%;
}


.subtitles-wrapper-inner,
.titles-wrapper-inner,
.buttons-wrapper-inner {
    will-change: transform;
}

.subtitles-wrapper-inner,
.titles-wrapper-inner {
    transition: transform 1000ms cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

.titles-wrapper-inner .h2 {
    display: block;
    white-space: nowrap;
}

.slider-hero-content .buttons-wrapper {
    width: 100%;
    justify-content: center;
}

.buttons-wrapper-inner .slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 400ms ease-out, color 400ms ease-out, background-color 400ms ease-out;
}

.buttons-wrapper-inner {
    position: relative;
    height: 54px;
    width: 100%;
}

.hero-slider-wrapper .title-wrapper {
    text-align: center;
    width: 100%;
}

.hero-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 1.5vw;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}


.hero-navigation .swiper-button-next,
.hero-navigation .swiper-button-prev,
.hero-navigation .swiper-pagination {
    position: relative;
    top: unset;
    left: unset;
    flex-shrink: 0;
    right: unset;
    height: unset;
    margin-top: 0px;
    cursor: pointer;

}

.hero-navigation .swiper-pagination{
    min-height: 66px;
}

.hero-navigation .swiper-button-next,
.hero-navigation .swiper-button-prev {
    height: 36px;
    width: 16px;
    box-shadow: none;
    backdrop-filter: none;
}

.hero-navigation .swiper-pagination {
    transform: translate(0px);
}

.hero-navigation .swiper-pagination-bullet {
    width: unset;
    height: unset;
    border-radius: unset;
    background-color: unset;
    font-family: 'Martell', sans-serif;
    margin-top: 0px;
    margin-bottom: 0px;
    opacity: 0.4;
    color: white;
}

.hero-navigation .swiper-pagination-bullet.swiper-pagination-bullet-active {
    opacity: 1;
}

.hero-navigation .swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.hero-navigation .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin-top: 0px;
    margin-bottom: 0px;
}


.fslider-image-mobile {
    display: none;
}

@media (max-width: 991px) {
    .titles-wrapper-inner .h2 {
        font-size: 24px;
        line-height: 28px;
        white-space: unset;
    }

    .hero-slider-wrapper .titles-wrapper {
        justify-content: center;
    }

    .hero-slider-wrapper .title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .titles-wrapper .title-wrapper:first-child {
        height: 78px;
    }

    
}

@media (max-width: 767px) {

    .fslider-image-mobile {
        display: block;
    }

    .fslider-image-desktop {
        display: none;
    }

    .titles-wrapper-inner .h2 {
        font-size: 22px;
        line-height: 26px;
    }

    .hero-slider-wrapper .titles-wrapper {
        margin-bottom: 16px;
    }

    .hero-slider-wrapper .title-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .titles-wrapper .title-wrapper:first-child {
        min-height: 78px;
        height:auto;
    }
}