.swiper-container-fade .swiper-slide {
  width: 100%;
  opacity: 0;
}

.swiper-container-fade .swiper-slide-active {
  opacity: 1;
}

.banner {
  height: 100vh;
  height: calc((var(--vh, 1vh) * 100));
  position: relative;
}

.banner-inner {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  background: #000;
}

.banner__line {
  display: -ms-grid;
  display: grid;
}

.banner__line > img {
  width: 100%;
  height: 100vh;
  height: calc((var(--vh, 1vh) * 100));
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

.swiper-wrapper {
  will-change: transform;
}

.banner .swiper-button {
  outline: none;
  margin: 0;
  background-color: #fff;
  border: .125rem solid #000;
  color: #000;
  line-height: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 100%;
  opacity: 0;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.banner .swiper-button-prev {
  left: 0;
}

.banner .swiper-button-next {
  right: 0;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .banner__line > img {
    opacity: 0;
  }
  .banner__line {
    background-size: 100%;
    background-position: center;
  }
}
/*# sourceMappingURL=home.css.map */