.slider-section {
  width: 100%;
}

.hero-banner {
  background: #07160e;
}

.hero-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 720px;
  background: #031a10;
}

.hero-banner__stage {
  isolation: isolate;
}

.hero-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 12, 0.62) 0%, rgba(7, 18, 12, 0.28) 42%, rgba(7, 18, 12, 0.58) 100%),
    linear-gradient(180deg, rgba(7, 18, 12, 0.16) 0%, rgba(7, 18, 12, 0.38) 100%);
}

.hero-banner__content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  min-height: 720px;
  margin: 0 auto;
  padding: 78px 48px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 400px);
  gap: 44px;
  align-items: center;
}

.hero-banner__copy {
  max-width: 720px;
  align-self: center;
  padding-top: 110px;
}

.hero-banner__copy h1 {
  margin: 0;
  color: #ffffff;
 
  text-transform: uppercase;
  
}

.hero-banner__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 260px;
  margin: 20px 0 0 8px;
  padding: 18px 34px;
  background: #006447;
  color: #ffffff;
  font: 500 clamp(1.5rem, 2.2vw, 2.2rem)/1 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-banner__form-wrap {
  position: relative;
  width: 100%;
  max-width: 400px;
  justify-self: end;
  padding-top: 38px;
}

.hero-banner__form-top {
  position: absolute;
  top: 0;
  left: 36px;
  right: 36px;
  height: 64px;
  border-radius: 14px 14px 0 0;
  background: #006447;
}

.hero-banner__form-ribbon {
  position: relative;
  margin: 0 auto;
  width: calc(100% + 38px);
  left: -19px;
  background: #3f3f3f;
  color: #ffffff;
  padding: 22px 22px;
  text-align: center;
  font: 700 1rem/1.2 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-transform: uppercase;
}

.hero-banner__form-ribbon::before,
.hero-banner__form-ribbon::after {
  content: "";
  position: absolute;
  top: 100%;
  width: 0;
  height: 0;
  border-top: 18px solid #3f3f3f;
}

.hero-banner__form-ribbon::before {
  left: 0;
  border-right: 18px solid transparent;
}

.hero-banner__form-ribbon::after {
  right: 0;
  border-left: 18px solid transparent;
}

.hero-banner__form-card {
  background: #005b3f;
  padding: 26px 38px 36px;
  color: #ffffff;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
}

.hero-banner__phone {
  margin: 0 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font: 500 1rem/1.5 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
}

.hero-banner__phone i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 4px;
  background: #000000;
  color: #ffffff;
  font-size: 0.85rem;
}

.hero-banner__phone a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
}

.hero-banner__form {
  display: grid;
  gap: 18px;
}

.hero-banner__form input,
.hero-banner__form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: transparent;
  color: #ffffff;
  padding: 15px 16px;
  font: 400 1rem/1.4 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-banner__form input::placeholder,
.hero-banner__form textarea::placeholder {
  color: rgba(255, 255, 255, 0.96);
}

.hero-banner__form textarea {
  resize: vertical;
  min-height: 84px;
}

.hero-banner__form button {
  width: 100%;
  border: 0;
  background: #000000;
  color: #ffffff;
  padding: 16px 20px;
  cursor: pointer;
  text-transform: uppercase;
  font: 800 1rem/1 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.hero-banner__form button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.form-alert {
  margin-bottom: 14px;
  padding: 12px 14px;
  font: 500 0.9rem/1.5 "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.form-alert ul {
  margin: 0;
  padding-left: 18px;
}

.form-alert-error {
  background: rgba(255, 236, 235, 0.96);
  color: #8d1d14;
  border: 1px solid #f4b5b0;
}

.form-alert-success {
  background: rgba(231, 246, 235, 0.96);
  color: #145b2f;
  border: 1px solid #b7dfc2;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.slider-dots,
.slides-track,
.slide,
.dot {
  display: none;
}

@media (max-width: 1100px) {
  .hero-banner__content {
    padding: 64px 28px 48px;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
    gap: 32px;
  }

  .hero-banner__copy {
    padding-top: 80px;
  }

  .hero-banner__form-card {
    padding: 24px 24px 30px;
  }
}

@media (max-width: 900px) {
  .hero-slider,
  .hero-banner__content {
    min-height: auto;
  }

  .hero-banner__content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 56px 20px 40px;
  }

  .hero-banner__copy {
    max-width: 100%;
    padding-top: 28px;
    text-align: center;
  }

  .hero-banner__tag {
    margin-left: 0;
  }

  .hero-banner__form-wrap {
    justify-self: center;
    max-width: 430px;
  }
}

@media (max-width: 640px) {
  .hero-slider {
    min-height: 0;
  }

  .hero-banner__content {
    padding: 42px 14px 26px;
  }

  .hero-banner__copy {
    padding-top: 10px;
  }

  .hero-banner__copy h1 {
    line-height: 1.05;
  }

  .hero-banner__tag {
    min-width: 0;
    width: 100%;
    max-width: 260px;
    padding: 14px 22px;
    font-size: 1.35rem;
  }

  .hero-banner__form-wrap {
    max-width: 100%;
    padding-top: 26px;
  }

  .hero-banner__form-top {
    left: 24px;
    right: 24px;
    height: 46px;
  }

  .hero-banner__form-ribbon {
    width: calc(100% + 20px);
    left: -10px;
    padding: 16px 14px;
    font-size: 0.85rem;
  }

  .hero-banner__form-ribbon::before,
  .hero-banner__form-ribbon::after {
    border-top-width: 12px;
  }

  .hero-banner__form-ribbon::before {
    border-right-width: 10px;
  }

  .hero-banner__form-ribbon::after {
    border-left-width: 10px;
  }

  .hero-banner__form-card {
    padding: 20px 16px 24px;
  }

  .hero-banner__phone {
    flex-wrap: wrap;
    font-size: 0.95rem;
  }

  .hero-banner__form {
    gap: 14px;
  }

  .hero-banner__form input,
  .hero-banner__form textarea,
  .hero-banner__form button {
    font-size: 16px;
  }
}
