/* CSS Document */
/*---------------------------------------------
  General Settings
  ---------------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.swiper-container {
/*  padding: 0px 0px 30px 0px;*/

}

/*---------------------------------------------
  Swiper tips Sample01
  ---------------------------------------------*/
.s-fade-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.s-fade-text {
  position: absolute;
  top: 10%;
  left: 0;
  width: 100%;
  text-align: center;


}







.swiper-slide-active .s-fade-text {
  animation: slideTextFade 2.75s ease 0s 1 normal;
}

@keyframes slideTextFade {
  0%, 25% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

