@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
.body {
  margin: 0;
}
.body .contact-us-main {
  background-color: #c9daff;
  font-family: "Inter", sans-serif;
  display: flex;
  justify-content: center;
  padding: 4rem 12rem;
}
@media (max-width: 1300px) {
  .body .contact-us-main {
    padding: 4rem 8rem;
  }
}
@media (max-width: 1000px) {
  .body .contact-us-main {
    padding: 4rem 6rem;
  }
}
@media (max-width: 768px) {
  .body .contact-us-main {
    padding: 3rem 2rem;
  }
}
@media (max-width: 480px) {
  .body .contact-us-main {
    padding: 2rem 1rem;
  }
}
.body .contact-us-main .max-width {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 1000px) {
  .body .contact-us-main .max-width {
    gap: 3rem;
  }
}
@media (max-width: 768px) {
  .body .contact-us-main .max-width {
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.body .contact-us-main .max-width .text-content {
  max-width: 550px;
}
.body .contact-us-main .max-width .text-content h1 {
  font-weight: 500;
  margin: 0 0 1rem 0;
}
.body .contact-us-main .max-width .text-content p {
  font-weight: 300;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}
.body .contact-us-main .max-width .cta-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 1rem;
  border-radius: 16px;
  background-color: #e8eeff;
  text-decoration: none;
}
.body .contact-us-main .max-width .cta-btn a:hover {
  cursor: pointer;
  background-color: #83aafe;
}
.body .contact-us-main .max-width .cta-btn a .cta-btn-text {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1a1954;
  margin: 0;
}
