.contact-us-container {
  position: relative;

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

  padding: 40px 16px 40px 0;
}

.contact-us-content {
  width: 100%;
  z-index: 2;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

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

.contact-us-text {
  color: #fffed9;
  letter-spacing: 1px;
  font-size: 14px;
  font-weight: 400;
  background-color: transparent;
  max-width: 270px;
}

.contact-us-list {
  display: flex;
  color: #fffed9;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 14px;
  background-color: transparent;
  gap: 18px;
}

.button-contact-us-container {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 270px;
  background: transparent;
  width: 100%;
}

.button-contact-us {
  background-color: #151515;
  color: #fffd53;
  border-radius: 20px;
  text-decoration: none;
  border: 1px solid #fffd53;
  text-align: center;
  font-size: 18px;
  padding: 10px 0;
  width: 100%;
  max-width: 142px;
}

.contact-us-info-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: transparent;
}

.contact-us-info-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
}

.contact-us-icon {
  width: 16px;
  height: 16px;
  background-color: transparent;
}

.contact-us-info-text {
  color: #fffed9;
  background-color: transparent;
}

.contact-us-text-strong {
  background-color: transparent;
}

.contact-us-container .hero-image {
  max-width: none;
}

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

  .contact-us-title {
    font-size: 54px;
  }

  .contact-us-text {
    font-size: 24px;
  }

  .contact-us-info-text,
  .contact-us-list,
  .button-hero-contact-us {
    font-size: 22px;
  }

  .contact-us-container {
    padding-top: 80px;
  }

  .contact-us-content {
    align-items: end;
  }

  .contact-us-text {
    max-width: 390px;
  }

  .button-contact-us-container {
    max-width: 392px;
  }

  .button-contact-us {
    max-width: none;
  }

  .contact-us-icon {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 992px) {
  .contact-us-title {
    font-size: 64px;
  }

  .button-contact-us {
    transition: background-color 0.5s, color 0.5s;
  }

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

  .contact-us-text {
    max-width: 460px;
  }

  .contact-us-list {
    max-width: 438px;
    width: 100%;
    gap: 74px;
  }

  .button-contact-us-container {
    max-width: 460px;
    padding-top: 20px;
  }

  .contact-us-info-container {
    max-width: 460px;
    width: 100%;
    justify-content: space-between;
    padding-top: 20px;
  }
}
