#contact-us {
  padding-bottom: 4rem;
}

#contact-us > .eg-container > .eg-wrapper {
  margin-top: -18rem;
  grid-template-columns: var(--col-6);
}

#contact-us > .eg-container > .eg-wrapper > .left,
#contact-us > .eg-container > .eg-wrapper > .right {
  background: var(--elsel-white);
  padding: 1rem;
  border-radius: 10px;
  width: 50%;
}

#contact-us .left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

#contact-us .left > h2 {
  color: var(--elsel-black);
  font-family: "DM Serif Display";
  font-size: var(--font-30);
  font-weight: 400;
}

#contact-us .left > form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#contact-us .left > form > button {
  cursor: pointer;
  width: 100%;
  border: 1px solid var(--elsel-blue);
  height: 60px;
  border-radius: 5px;
  background: var(--elsel-blue);
  color: var(--elsel-white);
  font-size: var(--font-18);
  font-weight: 700;
  transition: 0.3s;
}

#contact-us .left > form > button:hover {
  background: var(--elsel-white);
  color: var(--elsel-blue);
  font-weight: 800;
  border-radius: 100px;
  letter-spacing: 1px;
}

#contact-us .subject-select {
  color: var(--elsel-black);
  font-size: var(--font-16);
  font-weight: 500;
}

#contact-us > .eg-container > .eg-wrapper > .right {
  height: unset;
}

#contact-us .right > iframe {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

@media (max-width: 1400px) {
  #contact-us > .eg-container > .eg-wrapper {
    margin-top: -10rem;
  }
}

@media (max-width: 992px) {
  #contact-us > .eg-container > .eg-wrapper > .left,
  #contact-us > .eg-container > .eg-wrapper > .right {
    width: 100%;
  }
  #contact-us .right > iframe {
    height: 600px;
  }
}

@media (max-width: 768px) {
  #contact-us {
    padding: var(--content-spacing);
  }
  #contact-us > .eg-container > .eg-wrapper {
    margin-top: 0;
  }
}

@media (max-width: 576px) {
  #contact-us .right > iframe {
    height: 350px;
  }
}
