/* COLORS */
/* TYPOGRAPHY */
/* ---- MEDIA QUERIES ----- */
.contact .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4.5rem 7.4rem;
}
.contact .form {
  grid-column: 2;
}
.contact .images {
  display: flex;
  gap: 1rem;
}
.contact .text-content {
  align-content: center;
}
.contact .top-text {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 3rem;
}
.contact .place {
  font-size: 7.5rem;
  font-weight: 700;
  margin: 0 0 2rem;
}
.contact .text {
  margin: 0 0 2rem;
  font-size: 2rem;
}
.contact .phone,
.contact .email {
  font-size: 2rem;
}
.contact .phone span,
.contact .email span {
  font-weight: 700;
  display: inline-block;
  margin-bottom: 0.5rem;
}
.contact .phone a,
.contact .email a {
  color: #000;
  transition: color 0.2s ease-in-out;
}
.contact .phone a:hover,
.contact .email a:hover {
  color: #8FC15A;
}
.contact .coworkers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem;
  padding: 7rem 0 0;
}
.contact .coworkers .name {
  font-size: 3rem;
  margin: 0 0 0.2rem;
}
.contact .coworkers .role {
  font-size: 2rem;
}
.contact .coworkers .coworker-contact-info {
  padding: 3rem 0 0;
  margin: 2.4rem 0 0;
  border-top: 1px solid #8FC15A;
}
.contact .coworkers .coworker-email,
.contact .coworkers .coworker-phone {
  margin: 0 0 1.5rem;
}
.contact .coworkers .coworker-email a,
.contact .coworkers .coworker-phone a {
  font-size: 1.6rem;
  color: #000;
  transition: color 0.2s ease-in-out;
}
.contact .coworkers .coworker-email a:hover,
.contact .coworkers .coworker-phone a:hover {
  color: #8FC15A;
}

@media (max-width: 1100px) {
  .contact .container {
    display: block;
  }
  .contact .images {
    margin-top: 2.5rem;
  }
  .contact .form {
    margin-top: 3rem;
  }
  .contact .coworkers {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .contact .images {
    gap: 0.3rem;
  }
  .contact .top-text {
    font-size: 3rem;
    line-height: normal;
    margin: 0 0 0.5rem;
  }
  .contact .place {
    font-size: 4.5rem;
    line-height: normal;
    margin: 0 0 1.5rem;
  }
  .contact .text {
    font-size: 1.8rem;
    margin: 0 0 1.5rem;
  }
  .contact .phone,
  .contact .email {
    font-size: 1.6rem;
  }
  .contact .phone span,
  .contact .email span {
    margin-bottom: 0.4rem;
  }
  .contact .coworkers {
    grid-template-columns: repeat(1, 1fr);
    gap: 7rem;
    padding: 4rem 0 0;
  }
  .contact .coworkers .name {
    font-size: 2.5rem;
    margin: 0 0 0.5rem;
  }
  .contact .coworkers .role {
    font-size: 1.8rem;
  }
  .contact .coworkers .coworker-contact-info {
    padding: 2rem 0 0;
    margin: 1rem 0 0;
  }
  .contact .coworkers .coworker-email,
  .contact .coworkers .coworker-phone {
    margin: 0 0 0.5rem;
  }
  .contact .coworkers .coworker-email a,
  .contact .coworkers .coworker-phone a {
    font-size: 1.4rem;
  }
}