.hero-full-slider {
  min-height: 100vh;
  min-height: 100svh;
  padding: 0;
  display: flex;
  align-items: center;
  background: #10213a;
  color: #fff;
}

.hero-full-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(12, 25, 44, .82) 0%, rgba(12, 25, 44, .58) 44%, rgba(12, 25, 44, .18) 100%),
    linear-gradient(180deg, rgba(12, 25, 44, .2) 0%, rgba(12, 25, 44, .42) 100%);
  pointer-events: none;
}

.hero-bg-slider,
.hero-bg-slide {
  position: absolute;
  inset: 0;
}

.hero-bg-slider {
  z-index: 0;
  overflow: hidden;
}

.hero-bg-slide {
  opacity: 0;
  transform: scale(1.04);
  transition: opacity .9s ease, transform 6.5s ease;
}

.hero-bg-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-bg-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-full-slider .hero-wrap {
  position: relative;
  z-index: 2;
  display: block;
  padding: 150px 0 110px;
}

.hero-full-slider .hero-copy {
  max-width: 790px;
}

.hero-full-slider .eyebrow {
  color: #dffff8;
  background: rgba(255, 255, 255, .16);
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(12px);
}

.hero-full-slider h1 {
  color: #fff;
  letter-spacing: -.045em;
  text-shadow: 0 16px 50px rgba(0, 0, 0, .36);
}

.hero-full-slider p {
  color: rgba(255, 255, 255, .88);
  max-width: 680px;
  text-shadow: 0 10px 35px rgba(0, 0, 0, .28);
}

.hero-full-slider .btn-soft {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .32);
  backdrop-filter: blur(14px);
}

.hero-full-slider .btn-soft::before {
  background: transparent;
}

.hero-full-slider .btn-soft span,
.hero-full-slider .btn-soft i {
  color: #fff;
}

.hero-full-slider .hero-dots button {
  background: rgba(255, 255, 255, .36);
}

.hero-full-slider .hero-dots button.active {
  background: linear-gradient(90deg, var(--teal), var(--blue));
}

@media (max-width: 980px) {
  .hero-full-slider {
    align-items: flex-end;
  }

  .hero-full-slider .hero-wrap {
    padding: 140px 0 82px;
  }

  .hero-full-slider::before {
    background:
      linear-gradient(180deg, rgba(12, 25, 44, .34) 0%, rgba(12, 25, 44, .86) 100%),
      linear-gradient(90deg, rgba(12, 25, 44, .55) 0%, rgba(12, 25, 44, .22) 100%);
  }
}

@media (max-width: 640px) {
  .hero-full-slider .hero-wrap {
    padding: 128px 0 72px;
  }

  .hero-full-slider h1 {
    font-size: 42px;
    line-height: 1;
  }

  .hero-full-slider p {
    font-size: 17px;
    line-height: 1.65;
  }
}
