.banner__large_button {
  position: absolute;
  bottom: 10px;
  z-index: 4;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  color: var(--color-green);
  background: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 50%;
  transform: scale(0.5);
  opacity: 0;
  transition: all 200ms;
}

.banner__large {
  position: relative;
  width: 100%;
  max-height: 700px;
  aspect-ratio: 1450 / 600;
}

.banner__large_button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: inline-block;
  width: 40%;
  height: 40%;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  transform: translate(-40%, -50%) rotate(135deg);
  content: " ";
}

.banner__large_button.next {
  right: 0;
}

.banner__large_button.next::after {
  transform: translate(-60%, -50%) rotate(-45deg);
}

.banner__large_item {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  cursor: pointer;
  aspect-ratio: 1206 / 499;
}

.banner__large_item .banner__large_img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.1, 1);
  aspect-ratio: 1206 / 499;
}

.banner__large_wrapper {
  display: flex;
  gap: 20px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  scroll-behavior: smooth;
}

.banner__small {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
  padding: 0 2px;
}

.banner__small_wrapper {
  width: 100%;
}

.banner__small_img_container {
  width: 50%;
  max-width: 400px;
  overflow: hidden;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  aspect-ratio: 400 / 500;
}

.banner__small_img_container .banner__small_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s cubic-bezier(0.42, 0, 0.1, 1);
}

.slider_buttons {
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-left: auto;
}

.slider__button-small {
  position: relative;
  width: 30px;
  height: 30px;
  background-image: linear-gradient(to right, #0eae57 0%, #0c7475 41%, #0eae57 120%);
  background-size: 200% auto;
  cursor: pointer;
}

.slider__button-small[disabled] {
  opacity: 0.5;
}

.slider__button-small::before {
  transform: translateY(5px) rotate(45deg);
}

.slider__button-small::after,
.slider__button-small::before {
  position: absolute;
  left: 7px;
  width: 15px;
  height: 2px;
  background: var(--color-white);
  content: "";
}

.slider__button-small::after {
  transform: translateY(-5px) rotate(-45deg);
}

.slider__button-small.next {
  right: 0;
}

.slider__button-small.next::before {
  transform: translateY(5px) rotate(-45deg);
}

.slider__button-small.next::after,
.slider__button-small.next::before {
  position: absolute;
  right: 7px;
  left: auto;
  width: 15px;
  height: 2px;
  background: var(--color-white);
  content: "";
}

.slider__button-small.next::after {
  transform: translateY(-5px) rotate(45deg);
}

.banner__small .slider_buttons {
  padding-right: 20px;
}

.slider_pagination_container {
  position: absolute;
  bottom: 18px;
  left: 50%;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  transform: translateX(-50%);
}

.slider_pagination__big {
  display: flex;
  align-items: center;
  padding: 5px 3px;
  background: var(--color-white);
  border-radius: 10px;
}

.swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--color-green);
  border-radius: 5px;
  opacity: 0.5;
  transition: all 100ms ease-in;
}

.swiper-pagination-bullet-active {
  width: 40px;
  height: 6px;
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .banner__large_button {
    width: clamp(25px, 5vw, 40px);
    height: clamp(25px, 5vw, 40px);
  }
}

.rooms_list__room {
  min-height: 380px;
}

.products_list {
  position: relative;
  min-height: 380px;
}