.index-banner {
    width: 100%;
    height: 100vh;
    background-color: #888;
}

.swiper-slide {
    text-align: center;
    font-size: 18px;
    color: #fff;
    /* Center slide text vertically */
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.swiper-slide video {
    /* display: block; */
    width: 100%;
    /* object-fit: contain; */
    position: absolute;
    top: 0;
    left: 0;
    /* animation: banner 9s ease infinite; */
}

@keyframes banner {
    0% {
        transform: rotate(0deg) scale(1);
    }
    50% {
        transform: rotate(1deg) scale(1.06);
    }
    100% {
        transform: rotate(0deg) scale(1);
    }
}

.banner-text {
    max-width: 1200px;
    margin: auto;
    line-height: 1.5;
}

.banner-text h2 {
    font-size: 4rem;
    margin-top: 0;
    font-weight: bold;
    font-family: 'Poppins';
    line-height: 1.5;
    margin-bottom: 40px;
}


/* .index-banner {
    margin-top: 140px;
} */

.banner-text p {
    font-size: 22px;
    opacity: .9;
    line-height: 1.3;
}

.swiper-button-next,
.swiper-button-prev {
    color: #b3b3b333;
    margin: 0 20px;
}

.index1 .service-item p {
    font-size: 15px;
}

.index1 .service-item {
    padding: 15px;
}

.index1 {
    padding: 80px 0;
    background-color: #f7f7f7;
}

@media screen and (max-width:1199px) {
    .banner-text h2 {
        font-size: 2.4rem;
    }
    .banner-text p {
        font-size: 16px;
    }
}