/* Box1 */
.bannerBox {
    overflow: hidden;
    width: 100%;
}

.bannerSwiper {
    overflow: hidden;
    width: 100%;
}

.bannerSlide {
    overflow: hidden;
    width: 100%;
    position: relative;
    z-index: 2;
}

.bannerSlide .text {
    position: absolute;
    z-index: 4;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0 var(--container);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.bannerSlide .text h1 {
    font-size: 30px;
    line-height: 1;
    text-align: center;
    color: #FFFFFF;
}

.bannerSlide .text h2 {
    text-align: center;
    margin: 30px 0 45px;
    font-weight: bold;
    font-size: 40px;
    line-height: 1.5;
    background: linear-gradient(90deg, #8CE1D2 0%, #84DE8F 47.5%, #7BDB45 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.bannerSlide .text a {
    width: 200px;
    height: 52px;
    border: 3px solid rgba(255, 255, 255, 0.6);
    border-radius: 5px;
    font-size: 20px;
    color: #E4E4E4;
    transition: 0.5s;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}

.bannerSlide .text a:hover {
    color: var(--color);
    border: 3px solid var(--color);
}

.bannerSlide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 3;
}
.bannerSwiper .swiper-button-next:after, 
.bannerSwiper .swiper-button-prev:after{
     color:  var(--color);
     font-size: 24px;
}


@media (max-width: 1200px) {
    .bannerSlide .text h1 {
        font-size: 24px;
    }

    .bannerSlide .text h2 {
        margin: 20px 0 30px;
        font-size: 32px;
    }
}

@media (max-width: 992px) {
    .section1 {
        margin-top: 60px;
    }

    .bannerSlide .text h2 {
        margin: 20px 0 30px;
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .bannerSlide .text h1 {
        font-size: 18px;
    }

    .bannerSlide .text h2 {
        margin: 20px 0 30px;
        font-size: 16px;
        letter-spacing: -1.5px;
        margin: 15px 0 20px;
    }

    .bannerSlide img {
        /*min-height: 300px;*/
    }

    .bannerSlide .text a {
        width: 140px;
        height: 35px;
        font-size: 14px;
    }

    .bannerSlide .text {
         /*display: none;*/
    }

    .bannerSlide video {
        width: 100%;
      
        object-fit: cover;
    }
}
