/* @media (min-width: 1201px) {
    .banners-slider__swiper .swiper-wrapper {
        grid-template-rows: 31.5rem 31.5rem;
        grid-template-columns: calc(33.333333333333% - 1px) calc(33.333333333333% - 1px) calc(33.333333333333% - 1px);
        grid-template-areas:
            "area_01 area_02 area_03"
            "area_01 area_02 area_04";
        display: grid;
        grid-gap: 2px;
        margin: 0;
        width: auto;
        height: 63rem;
    }
} */
.banners-slider {
  margin-bottom: 6rem;
  overflow: visible;
}

.banners-slider .swiper-slide:hover {
  z-index: 200;
}

.banners-slider__swiper {
  overflow: visible;
  padding-top: 2.5rem;
}

.banners-slider__text {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: var(--color-text-inverse);
  font-size: 2.4rem;
  max-width: 80%;
  width: 100%;
  border-radius: 10px;
  text-align: center;
  padding: 1rem;
}

.banners-slider__swiper .swiper-slide {
  height: auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.banners-slider__item img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.banners-slider__item {
  position: relative;
  z-index: 100;
  background: #ccc;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  display: block;
  text-decoration: none;
  color: var(--color-text);
  transition: transform 0.25s;
  will-change: transform;
}

.banners-slider__item:hover {
  z-index: 200;
  transform: scale(1.05);
}

.banners-slider__item {
  height: 34rem;
  margin-right: 1rem;
}

.banners-slider__swiper .swiper-slide {
  flex: 0 0 34rem;
  width: 34rem;
  max-width: 100%;
  margin: 0 1rem 0 0;
  transition:
    opacity 0.25s,
    transform 0.25s;
  height: auto;
}

.swiper-slide:last-of-type .banners-slider__item {
  margin-right: 0;
}
