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

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

  .swiper-slide {
    text-align: center;
    font-size: 18px;
    color: #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;
    z-index: 9999;
    color: #fff;
  }

}

.slider-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.7);
}

.home #swiper-page {
  .swiper-slide-image {
    height: 100vh;
  }
}

.swiper-header {
  margin-bottom: 20px;
}

span.btn.btn-slider {
  background-color: #fff;
  font-family: "Playfair Display", serif;
  font-weight: 300;
  color: #000;
  position: relative;
}

span.btn.btn-slider:after {
  content: "";
  position: absolute;
  border: 1px solid #000;
  z-index: 999;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  height: calc(100% - 5px);
  width: calc(100% - 5px);
}

span.btn.btn-slider:hover {
  background-color: #000;
  color: #fff;
}

span.btn.btn-slider:hover:after {
  border: 1px solid #fff;
}

.btn-slider {
  margin-top: 5px;
}

/******** 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;
}

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

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

/* XXL > 1400 */

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

/* L */
@media (max-width: 1200px) {}

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

/* S */
@media (max-width: 768px) {
  h1#slider-text {
    font-size: 42px;
  }
}

/* XS */
@media (max-width: 576px) {
  h1#slider-text {
    font-size: 36px;
  }
}