.hero {
  overflow: hidden;
  padding-bottom: 0;
}

.hero,
.hero__container,
.hero__content {
  position: relative;
}

.hero__subtitle {
  color: var(--primary-8);
  margin-bottom: 0.5rem;
}

.hero__title {
  color: var(--primary-16);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.125rem;
}

.hero__title span {
  color: var(--primary-4);
}

.hero__description {
  margin-bottom: 1rem;
}

.hero__description,
.hero__description p {
  color: var(--primary-12);
}

.hero__description p:not(:last-child) {
  margin-bottom: 0.5rem;
}

.hero__content {
  display: flex;
  justify-content: space-between;
  border-top: 0.0625rem solid var(--primary-2);
}

.hero__actions {
  display: flex;
  flex-direction: column;
}

.hero__note {
  margin-top: auto;
}

.hero__note h4 {
  color: var(--primary-16);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.hero__note p {
  color: var(--primary-12);
  line-height: 1.4;
}

.hero__buttons {
  display: flex;
  margin-top: 1.5rem;
  position: relative;
}

.hero__buttons .btn:not(:last-child) {
  margin-right: 2rem;
  position: relative;
}

.hero__buttons .btn:not(:last-child):after {
  background-color: var(--primary-7);
  content: "";
  height: 1.5rem;
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.0625rem;
}

.hero__image-wrapper {
  margin-top: 2.5rem;
  width: 100%;
}

.hero__image-wrapper .hero__container {
  margin: 0;
}

.hero__image {
  height: 28.125rem;
  object-fit: cover;
  width: 100%;
}

@media (max-width: 75em) {
  .hero__buttons {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .hero__buttons .btn:not(:last-child) {
    margin-right: 0;
  }

  .hero__buttons .btn:not(:last-child):after {
    display: none;
  }
}

@media (max-width: 61.99875em) {
  .hero__content {
    flex-direction: column-reverse;
    gap: 1.5rem;
  }
}

@media (max-width: 20em) {
  /* .hero {
    padding-top: 6.875rem;
  } */

  .hero__subtitle {
    font-size: 0.75rem;
  }

  .hero__content {
    padding-top: 0.5rem;
  }

  .hero__title {
    font-size: 2.875rem;
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__content {
    margin-top: 0.5rem;
  }

  .hero__note h4 {
    font-size: 1.125rem;
  }

  .hero__note p {
    font-size: 1rem;
  }

  .hero__image {
    height: 9.375rem;
  }
}

@media (min-width: 20em) and (max-width: 120em) {
  /* .hero {
    padding-top: clamp(6.875rem, 6.25rem + 3.125vw, 10rem);
  } */

  .hero__subtitle {
    font-size: clamp(0.75rem, 0.675rem + 0.375vw, 1.125rem);
  }

  .hero__content {
    padding-top: clamp(0.5rem, 0.3rem + 1vw, 1.5rem);
  }

  .hero__title {
    font-size: clamp(2.875rem, 2.55rem + 1.625vw, 4.5rem);
  }

  .hero__description {
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  }

  .hero__content {
    margin-top: clamp(0.5rem, 0.3rem + 1vw, 1.5rem);
  }

  .hero__note h4 {
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
  }

  .hero__note p {
    font-size: clamp(1rem, 0.975rem + 0.125vw, 1.125rem);
  }

  .hero__image {
    height: clamp(9.375rem, 5.625rem + 18.75vw, 28.125rem);
  }
}

@media (min-width: 61.99875em) {
  .hero__description {
    flex: 0 0 50%;
  }

  .hero__content {
    gap: 0.75rem;
  }

  .hero__text {
    flex: 0 0 50%;
  }
}

@media (min-width: 120em) {
  /* .hero {
    padding-top: 10rem;
  } */

  .hero__subtitle {
    font-size: 1.125rem;
  }

  .hero__content {
    padding-top: 1.5rem;
  }

  .hero__title {
    font-size: 4.5rem;
  }

  .hero__description {
    font-size: 1.125rem;
  }

  .hero__content {
    margin-top: 1.5rem;
  }

  .hero__note h4 {
    font-size: 1.5rem;
  }

  .hero__note p {
    font-size: 1.125rem;
  }

  .hero__image {
    height: 28.125rem;
  }
}
