.swiper {
    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;
    position: relative;
  }

  .swiper-slide video {
    /* display: block; */
    width: 100%;
    height: 100vh;
    object-fit: cover;
    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: 800px;
    text-align: left;
    line-height: 1.5;
}

.banner-text h2{
    font-size: 61px;
    margin-top: 30vh;
    font-weight: bold;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.5;
}

@media (max-width:991px){
  .banner-text h2{
    font-size: 40px;
    margin-top: 200px;
  }
}

.banner-text p{
  font-size: 14px;
  opacity: .8;
  line-height: 1.5;
}

.banner-btn{
    color: #fff;
    border-radius: 4px;
    padding: 10px 20px;
    margin-top: 30px;
    background-color: #85d8e5;
    display: inline-block;
}

.banner-btn:hover{
    color: #fff;
}

.swiper-button-next, .swiper-button-prev{
    color: #fff;
    margin:0 20px;
}

