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

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

  .swiper-slide {
    text-align: left;
    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;
    z-index: 99999;
  }

  .swiper-content {
    margin-bottom: 30px;
  }

}

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

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

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

.slider-overlay {
  background: #02254F;
  background: linear-gradient(0deg, rgba(2, 37, 79, 0.9) 10%, rgba(255, 255, 255, 0) 45%);
  position: absolute;
  z-index: 999;
  bottom: 0;
  width: 100%;
  height: 100%;
}

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

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #fff);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, #EF3425);
}


/******** 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) {
  #swiper-page {
    .swiper-slide-image {
      height: 400px;
    }
  }
}

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

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

  #swiper-page {
    .swiper-slide-image {
      height: 500px;
    }
  }
}

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

  .slider-overlay {
    background: #02254F;
    background: linear-gradient(0deg, rgba(2, 37, 79, 0.9) 70%, rgba(255, 255, 255, 0) 80%);
    position: absolute;
    z-index: 999;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}

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

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

  span.btn.btn-slider.btn-right {
    margin: 15px 0 0 0;
  }
}