/* Utils */

/**
 *
 * Variables
 *
 */

:root {
  --color-dark: #1F2130;
  --color-darkblue: #0E1E75;
  --color-lightblue: #12289F;
  --color-green: #02FFCA;
  --color-darkgreen: #0AE2B5;
  --color-lightgreen: #EFF9FC;
  --color-cyan: #128FAA;
  --color-lightgrey: #EFF3FC;
  --color-darkgrey: #D1D5E6;
  --font-inter: 'Inter', sans-serif;
  --font-ubuntu: 'Ubuntu', sans-serif;
}

.acf-block-preview {
  --color-dark: #1F2130;
  --color-darkblue: #0E1E75;
  --color-lightblue: #12289F;
  --color-green: #02FFCA;
  --color-darkgreen: #0AE2B5;
  --color-lightgreen: #EFF9FC;
  --color-cyan: #128FAA;
  --color-lightgrey: #EFF3FC;
  --color-darkgrey: #D1D5E6;
}

.block-ctaForm[id^="block"] {
  padding: 35px 20px;
  background-color: var(--color-lightgrey);
  border-radius: 20px;
  margin: 30px 0;
}

.block-ctaForm[id^="block"] .hbsptForm {
  padding: 0;
}

.block-ctaForm[id^="block"] .hbsptForm .submitted-message {
  text-align: center;
  font-weight: 400;
}

.block-ctaForm[id^="block"] .block-ctaForm-headings {
  margin: 0 auto 26px auto;
  text-align: center;
  max-width: 600px;
}

.block-ctaForm[id^="block"] .block-ctaForm-title {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.21;
  letter-spacing: -0.04em;
  margin-top: 0;
  color: var(--color-darkblue);
}

.block-ctaForm[id^="block"] .block-ctaForm-title:not(:last-child) {
  margin-bottom: 12px;
}

.block-ctaForm[id^="block"] .block-ctaForm-subtitle {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.21;
  margin-top: 0;
  font-family: var(--font-ubuntu);
  color: var(--color-darkblue);
}

.block-ctaForm[id^="block"] .block-ctaForm-subtitle:not(:last-child) {
  margin-bottom: 12px;
}

.block-ctaForm[id^="block"] .block-ctaForm-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 0.9fr 1fr;
      grid-template-columns: 0.9fr 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  grid-gap: 30px;
  padding: 10px 20px;
  margin: 0 auto;
}

.block-ctaForm[id^="block"] .block-ctaForm-image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.block-ctaForm[id^="block"] .block-ctaForm-image img {
  max-width: 100%;
  margin: 0;
  height: auto;
}

@media (max-width: 767px) {
  .block-ctaForm[id^="block"] {
    padding: 30px 0;
    position: relative;
    z-index: 1;
    border-radius: unset;
    background-color: unset;
  }

  .block-ctaForm[id^="block"]:before {
    content: '';
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: var(--color-lightgrey);
    z-index: -1;
  }

  .block-ctaForm[id^="block"] .block-ctaForm-headings {
    margin-bottom: 9px;
  }

  .block-ctaForm[id^="block"] .block-ctaForm-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
       -moz-box-orient: vertical;
       -moz-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 10px 5px;
  }

  .block-ctaForm[id^="block"] .block-ctaForm-form {
    width: 100%;
  }

  .block-ctaForm[id^="block"] .block-ctaForm-image {
    width: 100%;
    margin: 0 auto;
  }
}