/*-----------------------------------------
  Slider Container Options
-------------------------------------------*/
.swiper-container {
  width: 100%;
  height: 90%;
}
@media screen and (max-width:767px) {
  .swiper-container {
    height: auto;
  }
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: transparent;
  background-position: center;
  background-size: cover;
  /* 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;
}



/*-----------------------------------------
  Slider Control Buttons, Paginations
-------------------------------------------*/
.swiper-button-next{
  background-repeat: no-repeat;
  background-position: center;
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev{
  background-repeat: no-repeat;
  background-position: center;  
  background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-pagination-bullet-active{
  background: #fff;
}


/*-----------------------------------------
  Overlays For Slides
-------------------------------------------*/
.light-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.5; 
}

.medium-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.6; 
}

.dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}



/*-----------------------------------------
  Slider Content Captions
-------------------------------------------*/
.slider-content{
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}
@media screen and (max-width:767px) {
  .slider-content{
    padding: 70px 30px;
  }
}
.slider-content h2{
  font-size: 50px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .slider-content h2{
    font-size: 25px;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
  }
}

.slider-content h3{
  font-size: 45px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}

.slider-content p{
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.9;
  font-weight: 400;
  max-width: 100%;
  margin-top: 10px;
  word-wrap: break-word;
}
@media screen and (max-width:767px) {
  .slider-content p{ 
    width: auto;
  }
}


/*-----------------------------------------
Main Image Section Styles
-------------------------------------------*/
.main-image-section{
  width: 100%;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  padding: 90px 0px 90px 0px;   
  min-height: 85%;  
  /* 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;  
}

.main-image-content{
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1; 
}


.main-image-content h2{
  font-size: 50px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}

@media screen and (max-width:767px) {
  .main-image-content h2{
    font-size: 25px;
    color: #fff;
    line-height: 1.4;
    font-weight: 600;
  }
}

.main-image-content h3{
  font-size: 45px;
  color: #fff;
  line-height: 1.4;
  font-weight: 600;
}

.main-image-content p{
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
  line-height: 1.9;
  font-weight: 400;
  max-width: 100%;
  margin-top: 10px;
  word-wrap: break-word;
}
@media screen and (max-width:767px) {
  .main-image-content p{ 
    width: auto;
  }
}