.oth-hero {
  --oth-accent: #e31e24;
  --oth-text: #fff;
  --oth-overlay: 65%;
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  min-height: 720px;
  overflow: hidden;
  background: #111;
  color: var(--oth-text);
  font-family: "Poppins", sans-serif;
  isolation: isolate;
}

.oth-hero--full-bleed {
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.oth-hero *,
.oth-hero *::before,
.oth-hero *::after {
  box-sizing: border-box;
}

.oth-hero__slides,
.oth-hero__slide,
.oth-hero__shade {
  position: absolute;
  inset: 0;
}

.oth-hero__slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 0s linear 1.2s;
  z-index: 0;
}

.oth-hero__slide.is-active {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
  z-index: 1;
}

.oth-hero__slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

.oth-hero__slide img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--oth-position-desktop, 50% 50%);
  transform: scale(1.045);
  will-change: transform;
}

.oth-hero__slide.is-active img {
  animation: oth-background-motion 7s ease-out both;
}

@keyframes oth-background-motion {
  from {
    transform: scale(1.045);
  }

  to {
    transform: scale(1);
  }
}

.oth-hero__shade {
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, color-mix(in srgb, #000 var(--oth-overlay), transparent) 0%, rgba(0, 0, 0, .2) 57%, rgba(0, 0, 0, .14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .44), transparent 45%);
}

@supports not (background: color-mix(in srgb, black 50%, transparent)) {
  .oth-hero__shade {
    background: linear-gradient(90deg, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .2) 57%, rgba(0, 0, 0, .14) 100%), linear-gradient(0deg, rgba(0, 0, 0, .44), transparent 45%);
  }
}

.oth-hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 160px clamp(24px, 7vw, 124px) 72px;
}

.oth-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.oth-hero__eyebrow span {
  flex: 0 0 34px;
  width: 34px;
  height: 2px;
  background: var(--oth-accent);
}

.oth-hero__title {
  max-width: none;
  margin: 0;
  padding: 0;
  color: inherit;
  font-family: "Manrope", sans-serif;
  font-size: clamp(54px, 8.3vw, 142px);
  font-weight: 500;
  line-height: .89;
  letter-spacing: -.065em;
  text-transform: none;
}

.oth-hero__title > span {
  display: block;
  white-space: nowrap;
}

.oth-hero__title em {
  color: var(--oth-accent);
  font-style: normal;
  font-weight: inherit;
}

.oth-hero__bottom {
  display: flex;
  align-items: flex-end;
  gap: 44px;
  margin-top: 44px;
}

.oth-hero__bottom p {
  margin: 0;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.oth-hero__circle-cta {
  display: grid;
  flex: 0 0 62px;
  place-items: center;
  width: 62px;
  height: 62px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 50%;
  background: transparent !important;
  color: inherit !important;
  text-decoration: none;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.oth-hero .oth-hero__circle-cta:hover,
.oth-hero .oth-hero__circle-cta:focus-visible {
  border-color: var(--oth-accent);
  background: var(--oth-accent) !important;
  color: #fff !important;
  transform: translateY(4px);
}

.oth-hero__controls {
  position: absolute;
  right: clamp(24px, 4vw, 72px);
  bottom: 60px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 20px;
}

.oth-hero__arrow {
  display: block;
  width: 42px;
  min-width: 42px;
  height: 42px;
  min-height: 42px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, .4);
  border-radius: 50%;
  appearance: none;
  background: transparent !important;
  color: #fff !important;
  font: 400 16px/1 "Poppins", sans-serif;
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}

.oth-hero .oth-hero__arrow:hover,
.oth-hero .oth-hero__arrow:focus-visible {
  border-color: #fff;
  background: #fff !important;
  color: #111 !important;
}

.oth-hero__counter {
  display: flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  line-height: 1;
}

.oth-hero__counter b,
.oth-hero__counter small {
  font: inherit;
}

.oth-hero__counter b {
  font-weight: 600;
}

.oth-hero__counter span {
  position: relative;
  display: block;
  width: 78px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .38);
}

.oth-hero__counter i {
  position: absolute;
  top: 0;
  left: calc((100% / var(--oth-count)) * var(--oth-step));
  display: block;
  width: calc(100% / var(--oth-count));
  height: 1px;
  background: #fff;
  transition: left .45s ease;
}

@media (max-width: 900px) {
  .oth-hero {
    min-height: 660px;
  }

  .oth-hero__content {
    padding-top: 120px;
  }

  .oth-hero__title {
    font-size: clamp(54px, 14vw, 90px);
  }

  .oth-hero__controls {
    bottom: 26px;
  }
}

@media (max-width: 600px) {
  .oth-hero {
    height: 92vh;
    height: 92svh;
  }

  .oth-hero__slide img {
    object-position: var(--oth-position-mobile, 50% 50%);
  }

  .oth-hero__content {
    justify-content: center;
    padding: 96px 24px 92px;
  }

  .oth-hero__eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
    letter-spacing: .14em;
  }

  .oth-hero__title {
    font-size: 15vw;
  }

  .oth-hero__title > span {
    white-space: normal;
  }

  .oth-hero__bottom {
    align-items: center;
    gap: 24px;
    margin-top: 34px;
  }

  .oth-hero__bottom p {
    font-size: 14px;
  }

  .oth-hero__circle-cta {
    flex-basis: 50px;
    width: 50px;
    height: 50px;
  }

  .oth-hero__controls {
    right: 20px;
  }

  .oth-hero__arrow {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .oth-hero__slide,
  .oth-hero__counter i,
  .oth-hero__circle-cta {
    transition: none !important;
  }

  .oth-hero__slide img {
    animation: none !important;
    transform: none;
  }
}
