#sp-section-4 {
  overflow: hidden;
}

.bin-home-slider {
  position: relative;
  width: 100%;
  height: clamp(420px, 36vw, 660px);
  overflow: hidden;
  background: #164b65;
  border-top: 4px solid #48a9e6;
  touch-action: pan-y;
}

.bin-home-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  background-position: center;
  background-size: cover;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.bin-home-slide.is-active {
  z-index: 1;
  visibility: visible;
  opacity: 1;
}

.bin-home-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.06);
}

.bin-home-slide__content {
  position: relative;
  z-index: 2;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  text-shadow: 2px 3px 12px rgba(0, 0, 0, 0.75);
}

.bin-home-slide__content h2,
.bin-home-slide__content h4,
.bin-home-slide__content p {
  margin: 0;
  color: #fff;
  font-family: inherit;
  font-size: clamp(34px, 2vw, 68px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}

.bin-home-slide__content--split {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(340px, 0.9fr);
  gap: clamp(36px, 5vw, 90px);
  align-items: end;
  width: min(1260px, 86vw);
  margin-top: 25%;
}

.bin-home-slide__content--split h2,
.bin-home-slide__content--split h4 {
  text-align: right;
}

.bin-home-slide__content--split p {
  text-align: left;
}

.bin-home-slide__content--panel {
  width: min(790px, 82vw);
  padding: clamp(28px, 3vw, 48px);
  border-radius: 28px;
  background: rgba(0, 41, 54, 0.68);
}

.bin-home-slider__dots {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 17px;
  display: flex;
  gap: 7px;
  transform: translateX(-50%);
}

.bin-home-slider__dot {
  width: 15px;
  height: 15px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(213, 225, 231, 0.62);
  box-shadow: none;
  cursor: pointer;
}

.bin-home-slider__dot.is-active {
  background: #fff;
}

.bin-home-slider__arrow {
  position: absolute;
  z-index: 4;
  top: 50%;
  width: 50px;
  height: 72px;
  padding: 0 0 7px;
  border: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  font: 58px/1 Arial, sans-serif;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 180ms ease, background 180ms ease;
}

.bin-home-slider:hover .bin-home-slider__arrow,
.bin-home-slider__arrow:focus-visible {
  opacity: 1;
}

.bin-home-slider__arrow:hover {
  background: rgba(0, 0, 0, 0.5);
}

.bin-home-slider__arrow--prev {
  left: 0;
}

.bin-home-slider__arrow--next {
  right: 0;
}

@media (max-width: 767px) {
  .bin-home-slider {
    height: 450px;
  }

  .bin-home-slide__content h2,
  .bin-home-slide__content h4,
  .bin-home-slide__content p {
    font-size: clamp(28px, 2vw, 42px);
    text-align: center;
  }

  .bin-home-slide__content--split {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: center;
    width: 90vw;
    margin-top: 20%;
  }

  .bin-home-slide__content--panel {
    width: min(90vw, 620px);
    padding: 24px 18px;
    border-radius: 16px;
  }

  .bin-home-slider__arrow {
    width: 42px;
    height: 60px;
    font-size: 48px;
    opacity: 0.65;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bin-home-slide {
    transition: none;
  }
}
