.hero-carousel .hero-carousel__slide {
    display: flex;
}

.hero-carousel .hero-carousel__content {
    flex: 1;
    margin-top: 10.416667vw
}

.hero-carousel .hero-carousel__pagination {
    width: auto;
    position: absolute;
    bottom: 2.083333vw;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2
}

.hero-carousel .swiper {
    position: relative
}

.hero-carousel .swiper-pagination-bullet {
    width: 80px;
    height: 4px;
    background-color: #000;
    opacity: 0.1;
    border-radius: 4px;
    position: relative
}

.hero-carousel .swiper-pagination-bullet-active {
    opacity: 1
}

.hero-carousel .swiper-pagination-bullet-active::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: #00B2A9;
    animation: heroCarouselPagination 4s linear;
    border-radius: 4px
}

@media (max-width: 1024px) {
    .hero-carousel .hero-carousel__slide {
        flex-direction:column
    }

    .hero-carousel .hero-carousel__content {
        margin-top: 3.90625vw;
        text-align: center
    }

    .hero-carousel .hero-carousel__intro {
        width: 80%;
        margin: 3.90625vw auto 5.859375vw;
        display: flex;
        flex-wrap: wrap;
        justify-content: center
    }

    .hero-carousel .hero-carousel__intro-item {
        font-size: 2.34375vw;
        margin-bottom: 1.953125vw
    }

    .hero-carousel .hero-carousel__intro-item:first-child {
        margin-right: 5.859375vw
    }

    .hero-carousel .hero-carousel__buttons {
        margin: 0 auto
    }

    .hero-carousel .hero-carousel__pagination {
        display: none
    }

    .hero-carousel .gbutton {
        margin-right: 2.929688vw
    }

    .hero-carousel .gbutton:last-child {
        margin-right: 0
    }
}

@media (max-width: 720px) {
    .hero-carousel .hero-carousel__intro {
        width:90%;
        display: block;
        margin: 5.555556vw auto 8.333333vw
    }

    .hero-carousel .hero-carousel__logo {
        height: 8.888889vw
    }

    .hero-carousel .hero-carousel__intro-item {
        font-size: 3.333333vw;
        margin-bottom: 1.388889vw
    }

    .hero-carousel .hero-carousel__intro-item:first-child {
        margin-right: 0
    }


    .hero-carousel .gbutton {
        margin-right: 4.166667vw
    }
}

@keyframes heroCarouselPagination {
    0% {
        width: 0
    }

    100% {
        width: 100%
    }
}
