/******** Slider **********/

#swiper-page {
  width: 100%;
  height: 100%;
  /* height: 600px; */

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    background: #fff;
    position: relative;
  }

  .swiper-slide-image {
    display: block;
    width: 100vw;
    height: 100%;
    /* height: 600px; */
    object-fit: cover;
  }

  .swiper-slide-inner {
    width: auto;
    margin: auto;
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    color: #fff;
  }

}

h1#slider-text {
  font-size: 36px;
  color: #fff;
}

.slider-overlay {
  position: absolute;
  background: #000000;
  background: linear-gradient(190deg, rgba(0, 0, 0, 1) 20%, rgba(255, 255, 255, 0) 70%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/******** Auto Scroll ***********/

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

/******** Responsive ***********/

/* XXL > 1400 */

/* XL */
@media (max-width: 1400px) {}

/* L */
@media (max-width: 1200px) {
  #swiper-page {
    .swiper-slide-image {
      height: 500px;
    }
  }
}

/* M */
@media (max-width: 992px) {
  h1#slider-text {
    font-size: 32px;
  }

}

/* S */
@media (max-width: 768px) {
  #swiper-page {
    .swiper-slide-image {
      height: 600px;
    }
  }

  h1#slider-text {
    font-size: 28px;
  }
}

/* XS */
@media (max-width: 576px) {}