.mySwiper  {
    width: 100%;
    height:100vh
  }

  .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;
    
  }

  .swiper-slide img {
    /* display: block;
    width: 100%;
    height: 100%;
    object-fit: cover; */
  }


.banner-text{
    max-width: 700px;
    line-height: 1.5;
    font-size: 16px;
    text-align: left;
}

.banner-text h2,.banner-text h1{
    font-size: 50px;
    line-height: 1.2;
    /* font-family: 'Times New Roman', Times, serif; */
    margin: 20px 0;
}

.banner-text p{
  font-size: 20px;
  margin: 40px 0;
  font-weight: 400;
  color: #fff;
}

.banner-btn{
    border-radius: 4px;
    margin-top: 15px;
    font-weight: bold;
    display: inline-block;
    color: inherit;
    border: 1px solid #fff;
    padding: 13px 30px;
}

.banner-text .banner-btn:hover{
    color: #fff;
}

.swiper-button-next, .swiper-button-prev{
    color: #fff;
    margin:0 20px;
}

.mySwiper .shadow{
  background-color: #2C4E808C;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}

.banner-text{
  position: relative;
  z-index: 10;
}

.banner-btn i{
  color: #2C4E80;
  position: relative;
  left: 0;
  transition: all .2s linear;
}

.banner-btn:hover i{
  left: 10px;
}

.banner-btn:hover{
  background-color: #2C4E80;
  color: #fff;
}

.banner-circle{
  position: absolute;
  z-index: 20;
  left: 150px;
  animation: banner 6s linear infinite;
  top: 20%;
}

@keyframes banner{
  0%{
    transform:rotate(0deg);
    left: 150px;
    top: 20%;
  }
  50%{
    transform:rotate(30deg);
    left: 200px;
    top: 15%;
  }
  100%{
    transform:rotate(0deg);
    left: 150px;
    top: 20%;
  }
}

