@charset "UTF-8";
/* ============================================
   Contact Form Page Styles
   ============================================ */

/* ----------------------------------------
   Page Wrapper Override
   ---------------------------------------- */
.page-wrapper {
  background-color: var(--color-bg-gray);
}

/* ----------------------------------------
   Main Content
   ---------------------------------------- */
.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ----------------------------------------
   Contact Section
   ---------------------------------------- */
.contact-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width-content);
  margin-bottom: var(--spacing-4xl);
  padding: 0;
}

.contact-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: var(--max-width-content);
  padding: 0;
}

/* ----------------------------------------
   Form Wrapper (iframe)
   ---------------------------------------- */
.contact-section .pardot-form-wrapper {
  width: 764px;
  max-width: 100%;
  background-color: var(--color-bg-white);
  border-radius: 0;
  overflow: hidden;
}

.contact-section .pardot-form-iframe {
  width: 100%;
  height: 1190px;
  border: none;
  display: block;
}

.contact-section__content.lp-content {
    padding: 109px 0 var(--spacing-sm) 0;
}

/* ============================================
   Responsive - Tablet (max-width: 840px)
   ============================================ */
@media screen and (max-width: 840px) {
  .contact-section {
    background-color: var(--color-bg-white);
  }

  .contact-section__content {
    padding: var(--spacing-3xl) var(--spacing-2xl);
  }

  .contact-section__content h1,
  .contact-section__content .wp-block-heading {
    font-size: var(--font-size-3xl);
  }

  .contact-section .pardot-form-iframe {
    height: 1400px;
  }
}

/* ============================================
   Responsive - Mobile (max-width: 540px)
   ============================================ */
@media screen and (max-width: 540px) {
  .contact-section {
    padding: 0 var(--spacing-lg);
    height: auto;
  }

  .contact-section__inner {
    padding: 0;
  }

  .contact-section__content {
    padding: var(--spacing-2xl) var(--spacing-lg);
  }

  .contact-section__content h1,
  .contact-section__content .wp-block-heading {
    font-size: var(--font-size-xl);
  }

  .contact-section__content p {
    font-size: var(--font-size-sm);
  }

  .contact-section .pardot-form-wrapper {
    width: 100%;
  }

  .contact-section .pardot-form-iframe {
    height: 1700px;
  }
}