.hero-container {
  position: relative;

  align-items: center;
  display: flex;
  justify-content: space-between;
  flex-direction: row;

  padding-top: 40px;
}

.hero-image {
  position: absolute;
  max-width: 280px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 180px;
  margin: 0 0 0 auto;

  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 16px;
  background-color: transparent;
}

.hero-title {
  color: #fffd53;
  letter-spacing: 1px;
  font-size: 36px;
  font-weight: 400;
  background-color: transparent;
}

.hero-text {
  color: #fffed9;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
}

.hero-text-strong {
  background-color: transparent;
  padding-top: 20px;
}

.button-hero-contact-us {
  background-color: #151515;
  color: #fffd53;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #fffd53;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  padding: 12px;
}

@media screen and (min-width: 414px) {
  .hero-image {
    max-width: 323px;
  }
}

@media screen and (min-width: 624px) {
  .hero-content {
    max-width: 323px;
  }

  .hero-image {
    max-width: 600px;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-text {
    font-size: 24px;
  }

  .button-hero-contact-us {
    font-size: 22px;
  }

  .about-us-container {
    padding-top: 60px;
  }
}


@media screen and (min-width: 992px) {
  .about-us-container {
    padding-top: 160px !important;
  }

  .hero-image {
    max-width: 999px !important;
  }

  .hero-content {
    max-width: 436px !important;
  }

  .hero-title {
    font-size: 64px;
  }

  .button-hero-contact-us {
    transition: background-color 0.5s, color 0.5s;
    margin-top: 48px;
  }

  .button-hero-contact-us:hover {
    background-color: #fffd53;
    color: #151515;
  }

}
