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

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

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

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

  .swiper-slide-inner {
    width: auto;
    margin: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    z-index: 999999;
  }

}

.home #swiper-page {
  width: 100%;
  height: 100vh;
  /* height: 900px; */

  .swiper-slide-image {
    height: 100%;
    max-height: 100%;
  }

}

.slider-overlay {
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 99;
  pointer-events: none;
}

#slider-text,
.swiper-slide-content {
  color: #fff;
}

.btn-slider {
  background-color: var(--stripTwo);
}

.btn-slider:hover {
  background-color: var(--backgroundMain);
}

/******** 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) {}

/* M */
@media (max-width: 992px) {
  body:not(.home) #swiper-page {
    .swiper-slide-image {
      display: block;
      width: 100vw;
      height: 500px;
      max-height: 1000px;
      /* height: 900px; */
      object-fit: cover;
    }
  }
}

/* S */
@media (max-width: 768px) {}

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