.contact-hero {
  min-height: 100vh;
  background: url("../../assets/contact/contact-img.png");
  background-size: cover;
  background-position: center;
  width: 100%;
  object-fit: cover;
  .container {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 110vh;
    padding-bottom: 100px;
  }
  .contact-info {
    display: flex;
    align-items: center;
    margin-top: 64px;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 70%;
    .contact-info-item {
      position: relative;
      h4 {
        color: var(--text-secondary);
        font-size: 20px;
        margin-bottom: 4px;
        font-weight: 400;
      }
      p {
        font-size: 24px;
        color: black;
      }
    }
  }
}
.contact-social {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.contact-form-section {
  min-height: 100vh;
  .container {
    display: flex;
    justify-content: center;
  }
  .contact-form {
    background-color: #fff;
    margin-top: -130px;
    padding: 32px;
    width: 100%;
    max-width: 900px;
    border: 1px solid var(--text-secondary);
    h2 {
      font-size: 36px;
      font-weight: 400;
      margin-bottom: 24px;
    }
  }
}
.form-group {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 20px;
}
.group {
  width: 100%;
  border: 1px solid var(--text-secondary);
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 56px;
  gap: 16px;
  input {
    border: none;
    outline: none;
    width: 100%;
  }
}
#message {
  height: 240px;
  width: 100%;
  border: 1px solid var(--text-secondary);
  padding: 16px 24px;
  outline: none;
  margin-top: 24px;
}
.contact-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 24px;
  .btn {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    svg {
      margin-top: 4px;
    }
  }
}
