#home-hero-wrap {
    height: 200vh;
}

#home-hero-wrap #home-hero-video-wrap {
    bottom: auto;
    height: 100vh;
    left: 0;
    right: 0;
    top: 0;
}

#home-hero-video {
    object-fit: cover;
    height: 100%;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    display: block;
    z-index: 4;
    background-color: rgba(6, 31, 64);

}

/* 
.home-hero-video {
    transform: scale(1);
    transition: transform 0.1s ease;
} */

/* #home-hero-wrap::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: #131d3d66;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 4;
} */

#home-hero-wrap #home-hero-top {
    z-index: 9;
    min-height: 100vh;
    transition: background-color 1.5s 2s, min-height 1.5s 2s;
}



#home-hero-wrap #home-hero-bottom-text {
    bottom: 0;
    left: 0;
    opacity: 0;
    position: fixed;
    right: 0;
    transform: translateY(30px);
    transition: 1s;
    z-index: 5;
    padding-bottom: 100px;
}

#home-hero-wrap.animate #home-hero-top {
    background-color: rgba(6, 31, 64, 0.95);
    min-height: 50vh;
}

#home-hero-wrap.animate #home-hero-top-text {
    min-height: 50vh;
    opacity: 1;
}

#home-hero-wrap #home-hero-bottom-text.visible {
    opacity: 1;
    transform: translateZ(0);
}

#home-hero-wrap.complete #home-hero-video-wrap {
    bottom: 0;
    position: absolute;
    top: auto;
}

#home-hero-wrap.complete #home-hero-bottom-text {
    position: absolute;
}

.swiper {
    background-color: #000;
}

.swiper .swiper-slide {
    opacity: 0;
    visibility: hidden;
    transition: opacity 600ms, visibility 600ms;
}

.swiper .swiper-slide img {
    transition: transform 5s linear;
    object-fit: cover;
    pointer-events: none;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    opacity: .5;
    z-index: 5;
    transform: scale(1);
}

.swiper .swiper-slide.active {
    opacity: 1;
    visibility: visible;
}

.swiper .swiper-slide.active img {
    transform: scale(1.1);
}

.swiper .swiper-title {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 9;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.swiper .swiper-title .swiper-pagination {
    position: relative;
    text-align: left;
    z-index: 9;
}


.swiper-title .swiper-pagination-bullet {
    background-color: #fff;
    margin-right: 10px;
    opacity: 1;
}

.swiper-title .swiper-pagination-bullet-active {
    background-color: #0097ce;
    opacity: 1;

}



@media (min-width: 768px) {
    #home-hero-wrap #home-hero-top-text {
        min-height: 100vh;
        opacity: 0;
        transition: min-height 1.5s, opacity 1s;
        padding: 120px 0 100px;
    }
}

@media (max-width: 768px) {
    #home-hero-wrap #home-hero-top-text {
        min-height: 100vh;
        opacity: 0;
        transition: min-height 1.5s, opacity 1s;
        padding: 95px 0 30px;
    }

    .swiper .swiper-title {
        padding-bottom: 40px;
    }
}