/* Contact Us page — ContactUS.cshtml */

.contact-page {    
  min-height: calc(100vh - 308px);
}

.contact-page__dark-overlay {
  width: 100%;
  height: 200px;
  background-color: #E5E7EB;
 }

.contact-card {
  display: flex;
  width: 100%;
  min-height: 480px;
  margin-top: -150px;
  background-color: var(--bs-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0px 1px 2px 0px #1018280D,
    0px 1px 3px 0px #1018280D;
    z-index: 2;
}

.contact-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1 1 50%;
  padding: 64px 56px;
}

.contact-card__title {
  margin: 0 0 20px;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 700;
  line-height: 1.25;
  color: #14573A;
}

.contact-card__summary {
  margin: 0 0 16px;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-body-color);
}

.contact-card__email {
  display: inline-block;
  margin-bottom: 40px;
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--bs-info-700);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.contact-card__email:hover {
  color: #005a94;
}

.contact-card__icon {
  display: block;
  width: 72px;
  height: auto;
  object-fit: contain;
  margin-top: 130px;
}

.contact-card__media {
  flex: 1 1 50%;
  min-height: 360px;
  background-image: url("../Images/patterns/contactus-img.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.ltr .contact-card__media {
   transform: scaleX(-1);
}

@media (max-width: 991.98px) {
  .contact-page {
    padding: 32px 16px;
    min-height: auto;
  }

  .contact-card {
    flex-direction: column;
    min-height: 0;
  }

  .ltr .contact-card {
    flex-direction: column;
  }

  .contact-card__content {
    order: 1;
    padding: 40px 28px;
  }

  .contact-card__media {
    order: 2;
    min-height: 240px;
    flex: 0 0 auto;
  }
}
