
.main-hero-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 60px;
}

.contact-hero {
  position: relative;
  padding-bottom: 0;
}

.contact-hero-picture{
  width: 50%;
}

.contact-hero-icons {
  width: 100%;
  background-color: var(--primary);
  margin-top: 60px;
  padding: 60px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-content: center;
  gap: 1em;
}

.contact-hero-icon-picture-img {
  width: auto;
  margin: 0 auto;
}

.contact-form-section {
  padding-top: 60px;
  padding-bottom: 60px;
}

.contact-form-inputs {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

textarea.contact-form-input {
  height: 200px;
}

@media only screen and (min-width: 500px) {
  .contact-hero-icons {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 768px) {
  .contact-hero-icons {
    display: flex;
    gap: 60px;
  }
}

@media only screen and (min-width: 1024px) {
  .contact-hero-picture{
    display: block;
    position: relative;
    right: -32px;
    max-width: 465px;
  }
  .main-hero-container {
    gap: 0;
    flex-direction: row;
    justify-content: space-between;
  }


  .contact-hero {
    padding-bottom: 280px;
  }

  .contact-hero-content-heading {
    max-width: 50%;
  }

  .contact-hero-icons {
    position: absolute;
    bottom: -92px;
    gap: 80px;
    justify-content: space-between;
    padding-left: var(--container-padding-xl);
    padding-right: var(--container-padding-xl);
  }

  .contact-form-section {
    padding-top: 180px;
    padding-bottom: 180px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    gap: 60px;
  }
}

@media only screen and (min-width: 1500px) {
  .contact-hero-icons {
    padding-left: var(--container-padding-xxl);
    padding-right: var(--container-padding-xxl);
  }
}
