.swiper-hero {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.swiper-hero.swiper-initialized {
    opacity: 1;
    visibility: visible;
}

.hero-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.hero-content .container {
    height: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.hero-content-wrapper {
    width: 705px;
    max-width: 100%;
}

.hero-pagination {
    position: absolute;
    left: 0;
    top: -90px;
    width: 100%;
    height: 20px;
}

.hero-pagination span.swiper-pagination-bullet-active {
    background-color: var(--brand2);
}

.hero-pagination span {
    display: inline-block;
    width: 14px;
    height: 14px;
    background: #fff
}

.swiper-slide .hero-content-wrapper {
    opacity: 0;
    transform: translateY(40px);
    transition: transform 0.8s cubic-bezier(0.215, 0.61, 0.355, 1),
        opacity 0.8s ease;
    will-change: transform, opacity;
}

.swiper-slide-active .hero-content-wrapper {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.swiper-slide-active .hero-link {
    transition: transform 0.8s ease, opacity 0.8s ease;
    transition-delay: 0.6s;
}

.home-slider-section {
    max-height: 900px;
}

.hero-item-wrapper {
    height: 100%;
}

.swiper-hero.swiper-initialized,
.hero-content .container {
    height: 100%;
    max-height: 900px;
}

.swiper-hero .swiper-slide {
    height: 900px
}

@media screen and (max-width:767px) {
    .home-slider-section {
        height: 100vh
    }
}