.swiper-wrapper {
  align-items: stretch !important;
  max-height: 640px;
}
.swiper-slide {
  overflow: hidden !important;
  height: unset !important;
  border-radius: var(--brad) !important;
}

.controls {
  z-index: 50;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 110%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  pointer-events: none;
}
.controls.second {
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}
.controls > div {
  cursor: pointer;
  width: 52px;
  height: 52px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--innerBg);
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  user-select: all;
  pointer-events: all;
}
.controls > div > * {
  height: 30%;
  transform: translateX(1px);
}
.controls > div img {
  object-fit: contain;
}
.controls > div:first-child img {
  rotate: 180deg;
}

.mainControls {
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
  width: max-content;
  gap: 24px;

  margin-top: auto;
}
.slider_counter {
  color: var(--white30) !important;
  margin-bottom: 0 !important;
}

@media (max-width: 768px) {
  .controls {
    display: none;
  }
}
