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


#swiper-page {
  width: 100%;
  height: 100%;

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

  .swiper-slide-image {
    display: block;
    width: 100%;
    object-fit: cover;
  }

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

  picture {
    width: 100%;
  }

}


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

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

/**
.home #swiper-page {
  height: 800px;
  .swiper-slide-image {
    height: 800px;
  }
}
**/

/******** 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 */
@media (max-width: 1400px) {}

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

     body:not(.home) #swiper-page {
    height: 500px;

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

}

/* L */
@media (max-width: 992px) {
 #swiper-page {
    height: 600px;

    .swiper-slide-image {
      height: 600px;
    }
  }

  .home #swiper-page {
    height: 600px;

    .swiper-slide-image {
      height: 600px;
    }
  }
}

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

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