/*!**********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/header/header.scss ***!
  \**********************************************************************************************************************************************************************/
.header {
  height: var(--header-height-mobile);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--neutral-white-color);
  z-index: 100;
  border-bottom: 2px solid #f6f6f6;
  box-shadow: 0 10px 39px -19px rgba(0, 0, 0, 0.2);
}
.header .header__sub {
  display: none;
}
.header .header__main {
  height: 72px;
  display: flex;
  justify-content: stretch;
  align-items: center;
}
.header .header__main--layout {
  width: 100%;
  padding-top: var(--spacing-06);
  padding-bottom: var(--spacing-06);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .header__navOverlay {
  width: 100vw;
  height: 100vh;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(101%);
  background-color: rgb(0, 0, 0);
  opacity: 0;
  transition: opacity 0.2s;
}
.header .header__navOverlay--open {
  transform: translateX(0);
  opacity: 0.85;
  height: 100vh;
  width: 100vw;
}
.header .header__nav {
  padding-top: var(--header-height-mobile);
  position: absolute;
  top: 0;
  right: 0;
  transform: translateX(101%);
  transition: transform 0.2s linear;
  height: 100vh;
  width: 350px;
  background-color: var(--neutral-white-color);
  z-index: 2;
}
.header .header__nav ul {
  list-style: none;
}
.header .header__nav ul li {
  padding: var(--spacing-05) var(--spacing-09);
  border-bottom: 1px solid var(--grey-500-color);
}
.header .header__nav ul .active,
.header .header__nav ul a:active,
.header .header__nav ul a:hover {
  color: var(--primary-green-color);
}
.header .header__nav--open {
  transform: translateX(0);
}
.header .header__menuBtn {
  border: none;
  background-color: transparent;
  background-image: url(https://assets.dev.amerisave.com/wp-assets/4fb40bcdd5ef6788570c.svg);
  background-size: cover;
  width: 48px;
  height: 48px;
  position: absolute;
  right: var(--page-right-margin);
  z-index: 5;
  outline: none;
}
.header .header__logo img {
  height: 40px;
}
.header .header__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-05);
}
.header .header__menu > a {
  color: var(--primary-blue-color);
}
.header .header__nav a {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: var(--gray-900-color);
}
.header ul {
  padding: 0;
  margin: 0;
}

@media (min-width: 768px) {
  .header {
    height: var(--header-height-mobile);
  }
}
@media (min-width: 1100px) {
  .header {
    height: auto;
    padding-top: 0;
  }
  .header .header__main,
  .header .header__sub {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header .header__sub {
    height: 48px;
    background-color: var(--primary-blue-color);
  }
  .header .header__sub a {
    color: var(--neutral-white-color);
    -webkit-text-decoration: none;
    text-decoration: none;
  }
  .header .header__sub img {
    cursor: pointer;
  }
  .header .header__main {
    height: 80px;
  }
  .header .header__sub--layout,
  .header .header__main--layout {
    display: flex;
    width: 100%;
    max-width: var(--page-max-width);
  }
  .header .header__sub--layout {
    justify-content: flex-end;
  }
  .header .header__sub--layout nav {
    width: 100%;
    max-width: 450px;
  }
  .header .header__sub--layout ul {
    width: 100%;
    justify-content: flex-end;
  }
  .header .header__sub--layout ul li:last-child {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header .header__sub--layout .header__sub--search {
    background-image: url(https://assets.dev.amerisave.com/wp-assets/1eb626d59c7bbf19060c.svg);
    background-color: transparent;
    border: none;
    outline: none;
    width: 24px;
    height: 24px;
    cursor: pointer;
  }
  .header .header__bar {
    padding: 0 var(--spacing-06);
    color: var(--neutral-white-color);
  }
  .header .header__chat {
    border: none;
    background-color: transparent;
    color: var(--neutral-white-color);
    cursor: pointer;
  }
  .header .header__main--layout {
    gap: var(--spacing-06);
  }
  .header ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .header ul li {
    text-align: center;
  }
  .header .header__menu,
  .header .header__menuBtn,
  .header .header__navOverlay {
    display: none;
  }
  .header .header__nav {
    padding: 0;
    padding: initial;
    position: static;
    position: initial;
    transform: none;
    transform: initial;
    height: auto;
    height: initial;
    width: 100%;
    max-width: 775px;
  }
  .header .header__nav ul {
    justify-content: space-between;
  }
  .header .header__nav ul li {
    padding: 0;
    border-bottom: 0;
    border-bottom: initial;
  }
  .header .header__logo img {
    height: 60px;
  }
}
@media (min-width: 1920px) {
  .header {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
/*!**********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/footer/footer.scss ***!
  \**********************************************************************************************************************************************************************/
.footer {
  --color-link-green: #3bd4ae;
  --color-dark-gray: #353635;
  background-color: var(--neutral-white-color);
}

.footer__amc-logo {
  display: block;
  padding-bottom: var(--spacing-05);
  max-width: 158px;
}

.footer__equal-housing {
  gap: var(--spacing-06);
}
.footer__equal-housing img {
  width: 60px;
}

.footer_discolusre {
  margin-bottom: 30px;
  font-size: 14px;
  color: var(--color-dark-gray);
}

.footer__link-list {
  padding-top: var(--spacing-06);
  list-style: none;
}
.footer__link-list li:not(:first-child) {
  padding-top: var(--spacing-05);
}
.footer__link-list a {
  color: var(--color-dark-gray);
  -webkit-text-decoration: none;
  text-decoration: none;
}
.footer__link-list a:hover {
  color: var(--color-link-green);
}

.footer__social-list {
  list-style: none;
  display: flex;
  align-items: center;
}
.footer__social-list li > a > svg {
  width: auto;
  height: 16px;
}
.footer__social-list li:not(:first-child) {
  padding-left: var(--spacing-07);
}
.footer__social-list img {
  height: 40px;
  filter: var(--grey-900-color);
}

.footer__privacy-link div {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.footer__privacy-link div:hover {
  color: var(--grey-900-color);
}
.footer__privacy-link img {
  margin-left: var(--spacing-03);
  width: 30px;
}

.footer__logo-wrapper {
  padding: var(--spacing-06) 0;
  width: 100%;
}
.footer__logo-wrapper svg {
  fill: var(--grey-700-color);
  width: 40px;
  height: 40px;
}
.footer__logo-wrapper svg:hover {
  fill: var(--color-link-green);
}

.footer__disclaimer {
  color: var(--grey-900-color);
}
.footer__disclaimer a {
  color: var(--color-link-green);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.footer__links ul > .footer__privacyLink a {
  max-width: 5ch;
}

.footer__logoContainer {
  order: 0;
}

.footer__equal-housing {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-06);
}
.footer__equal-housing img {
  width: 60px;
}

.footer__social-list {
  padding-left: var(--spacing-05);
}

.footer__equal-housing-container {
  padding-top: var(--spacing-10);
}
/*!************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/@glidejs/glide/src/assets/sass/glide.core.scss ***!
  \************************************************************************************************************************************************************************************************/
.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}
.glide * {
  box-sizing: inherit;
}
.glide__track {
  overflow: hidden;
}
.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}
.glide__slides--dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}
.glide__slide a {
  -webkit-user-select: none;
          user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.glide__arrows {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide__bullets {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.glide--rtl {
  direction: rtl;
}
/*!**************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/carousel/carousel.scss ***!
  \**************************************************************************************************************************************************************************/
.carousel__slide {
  height: auto;
  height: initial;
  display: flex;
  justify-content: center;
}

.carousel__bullets,
.carousel__controls {
  padding: var(--spacing-09) 0 var(--spacing-05) 0;
  gap: 16px;
}

.carousel__bullets {
  display: flex;
  justify-content: center;
}

.carousel__bullet {
  border-radius: 100%;
  border: none;
  width: 24px;
  height: 24px;
  background-color: var(--grey-500-color);
  cursor: pointer;
}

.glide__bullet--active {
  background-color: var(--primary-dark-blue-color);
}

.carousel__controls {
  display: none;
  justify-content: space-between;
  align-items: center;
}

.carousel__left-arrow,
.carousel__right-arrow {
  background-size: cover;
  background-color: transparent;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
}

.carousel__left-arrow {
  background-image: url(https://assets.dev.amerisave.com/wp-assets/de59718abb466ecb2095.svg);
}

.carousel__right-arrow {
  background-image: url(https://assets.dev.amerisave.com/wp-assets/78d84a5d3c6373aa44ca.svg);
}

@media (min-width: 768px) {
  .carousel {
    margin: 0 auto;
    max-width: var(--page-max-width);
  }
  .carousel__controls {
    padding-top: var(--spacing-09);
    display: flex;
  }
}
@media (min-width: 992px) {
  .carousel {
    max-width: var(--page-max-width);
  }
}
/*!******************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/card/card.scss ***!
  \******************************************************************************************************************************************************************/
.card {
  width: 100%;
  display: flex;
  background-color: var(--neutral-white-color);
  box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08);
}
/*!********************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/review-card/review-card.scss ***!
  \********************************************************************************************************************************************************************************/
.review-card {
  padding: 0 var(--spacing-03) var(--spacing-05) var(--spacing-03);
  width: min(100%, 420px);
  background-color: transparent;
  height: 100%;
  box-shadow: none;
  box-shadow: initial;
}

.review-card__inner {
  height: 100%;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 4px;
  background-color: var(--neutral-white-color);
  box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08);
}

.review-card__stars {
  width: 143px;
  height: 22px;
}

.review-card__title {
  color: var(--grey-900-color);
}

.review-card__description {
  color: var(--grey-800-color);
}

.review-card__person {
  margin-top: auto;
}

.review-card__person-name,
.review-card__person-location {
  color: var(--grey-800-color);
  display: block;
}

@media (min-width: 992px) {
  .review-card__inner {
    padding: var(--spacing-05);
    height: 100%;
    align-items: flex-start;
  }
  .review-card__stars {
    width: auto;
    height: 36px;
  }
  .review-card__description {
    padding-top: 20px;
  }
}
/*!******************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/customer-reviews/customer-reviews.scss ***!
  \******************************************************************************************************************************************************************************************/
.reviews.container {
  padding-top: 0;
}

.reviews__title {
  text-align: center;
  margin: 0 auto;
}
/*!**********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/button/button.scss ***!
  \**********************************************************************************************************************************************************************/
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-05) var(--spacing-06);
  border-radius: 8px;
  -webkit-text-decoration: none;
  text-decoration: none;
  cursor: pointer;
  height: 60px;
  width: min(100%, 300px);
  max-width: 300px;
  min-width: -moz-max-content;
  min-width: max-content;
}

.button--primary {
  background-color: var(--primary-green-color);
  color: var(--neutral-white-color);
}

.button--secondary {
  background-color: transparent;
  color: var(--primary-blue-color);
  border: var(--primary-blue-color) 2px solid;
}

.button--tertiary {
  color: var(--primary-blue-color);
  background-color: var(--neutral-white-color);
}

.button--sm {
  max-width: 265px;
}

.button__icon {
  margin-left: 12px;
}

.button--estimator {
  background-color: var(--primary-dark-blue-color);
  border-radius: 8px;
  border: 2px solid var(--neutral-white-color);
  color: var(--tertiary-bright-green-color);
  width: 100%;
  max-width: none;
  max-width: initial;
}

@media (min-width: 576px) {
  .button-lg {
    max-width: 475px;
    width: 475px;
  }
  .button--estimator {
    max-width: 300px;
  }
}
/*!********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/steps/steps.scss ***!
  \********************************************************************************************************************************************************************/
.steps {
  background-color: var(--neutral-white-color);
  padding-top: var(--spacing-scection-y);
}

.steps__image {
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 500px;
}

.check-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  gap: var(--spacing-07);
}
.check-list.container {
  padding-bottom: var(--spacing-section-y);
  padding-left: var(--spacing-06);
}

.check-list__title {
  color: var(--grey-900-color);
}

.check-list__items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--spacing-06) 0;
}

.check-list-item__icon {
  margin-top: auto;
  margin-bottom: auto;
}

.check-list-item {
  display: flex;
}

.check-list-item__content {
  margin-left: 1.5em;
  display: flex;
  flex-direction: column;
}

.check-list-item__title {
  color: var(--grey-900-color);
  margin: 0;
}

.check-list-item__description {
  margin: 0.5em 0 0 0;
}

@media (min-width: 1200px) {
  .check-list {
    gap: var(--spacing-09);
  }
  .check-list.container {
    padding-left: var(--spacing-08);
  }
  .check-list .button {
    margin: 0;
  }
  .check-list__items {
    gap: var(--spacing-08);
  }
}
/*!**********************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/components/video-testimonials/video-testimonials.scss ***!
  \**********************************************************************************************************************************************************************************************/
.testimonials {
  background-color: var(--neutral-white-color);
}

.testimonials__title,
.testimonials__subtitle {
  text-align: center;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100%, 420px);
}

.testimonial-card__video-wrapper {
  border: none;
  border-radius: 4px;
  min-height: 200px;
}

.testimonial-card__video {
  border: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.testimonial-card__content {
  padding: var(--spacing-06) var(--spacing-05);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  gap: var(--spacing-y-gap);
}

.testimonial-card__description {
  background: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.3) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.testimonial-card__author {
  color: #4d4d4d;
  text-align: center;
}
/*!*********************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/pages/purchase/purchase.scss ***!
  \*********************************************************************************************************************************************************************/
@font-face {
  font-family: "Work Sans";
  font-weight: 400;
  src: url(https://assets.dev.amerisave.com/wp-assets/ce67d584ce2028590946.woff2) format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-weight: 500;
  src: url(https://assets.dev.amerisave.com/wp-assets/0eff6bba3376806ce6e3.woff2) format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-weight: 600;
  src: url(https://assets.dev.amerisave.com/wp-assets/64a0dc6afe9fc2c2aa75.woff2) format("woff2");
}
@font-face {
  font-family: "Work Sans";
  font-weight: 700;
  src: url(https://assets.dev.amerisave.com/wp-assets/e4e92733bfc1a391e5c7.woff2) format("woff2");
}
/* Lora Fonts */
@font-face {
  font-family: "Lora";
  font-weight: 400;
  src: url(https://assets.dev.amerisave.com/wp-assets/51b4293af5630f1552d4.woff2) format("woff2");
}
@font-face {
  font-family: "Lora";
  font-weight: 500;
  src: url(https://assets.dev.amerisave.com/wp-assets/ce886d1445e0da1a9458.ttf) format("ttf");
}
@font-face {
  font-family: "Lora";
  font-weight: 600;
  src: url(https://assets.dev.amerisave.com/wp-assets/9aec9c4885542eff4e1e.ttf) format("ttf");
}
@font-face {
  font-family: "Lora";
  font-weight: 700;
  src: url(https://assets.dev.amerisave.com/wp-assets/df378067bf8c002587b4.ttf) format("ttf");
}
/* ! tailwindcss v3.3.3 | MIT License | https://tailwindcss.com */
/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
  border-width: 0; /* 2 */
  border-style: solid; /* 2 */
  border-color: #e5e7eb; /* 2 */
}
::before,
::after {
  --tw-content: '';
}
/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
*/
html {
  line-height: 1.5; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -moz-tab-size: 4; /* 3 */
  -o-tab-size: 4;
     tab-size: 4; /* 3 */
  font-family: Lora, sans; /* 4 */
  font-feature-settings: normal; /* 5 */
  font-variation-settings: normal; /* 6 */
}
/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/
body {
  margin: 0; /* 1 */
  line-height: inherit; /* 2 */
}
/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/
hr {
  height: 0; /* 1 */
  color: inherit; /* 2 */
  border-top-width: 1px; /* 3 */
}
/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr:where([title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/*
Remove the default font size and weight for headings.
*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}
/*
Reset links to optimize for opt-in styling instead of opt-out.
*/
a {
  color: inherit;
  text-decoration: inherit;
}
/*
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder;
}
/*
1. Use the user's configured `mono` font family by default.
2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/*
Add the correct font size in all browsers.
*/
small {
  font-size: 80%;
}
/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/
table {
  text-indent: 0; /* 1 */
  border-color: inherit; /* 2 */
  border-collapse: collapse; /* 3 */
}
/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-feature-settings: inherit; /* 1 */
  font-variation-settings: inherit; /* 1 */
  font-size: 100%; /* 1 */
  font-weight: inherit; /* 1 */
  line-height: inherit; /* 1 */
  color: inherit; /* 1 */
  margin: 0; /* 2 */
  padding: 0; /* 3 */
}
/*
Remove the inheritance of text transform in Edge and Firefox.
*/
button,
select {
  text-transform: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; /* 1 */
  background-color: transparent; /* 2 */
  background-image: none; /* 2 */
}
/*
Use the modern Firefox focus style for all focusable elements.
*/
:-moz-focusring {
  outline: auto;
}
/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/
:-moz-ui-invalid {
  box-shadow: none;
}
/*
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline;
}
/*
Correct the cursor style of increment and decrement buttons in Safari.
*/
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/*
Remove the inner padding in Chrome and Safari on macOS.
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item;
}
/*
Removes the default spacing and border for appropriate elements.
*/
blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}
fieldset {
  margin: 0;
  padding: 0;
}
legend {
  padding: 0;
}
ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
/*
Reset default styling for dialogs.
*/
dialog {
  padding: 0;
}
/*
Prevent resizing textareas horizontally by default.
*/
textarea {
  resize: vertical;
}
/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/
input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
input::placeholder,
textarea::placeholder {
  opacity: 1; /* 1 */
  color: #9ca3af; /* 2 */
}
/*
Set the default cursor for buttons.
*/
button,
[role="button"] {
  cursor: pointer;
}
/*
Make sure disabled buttons don't get the pointer cursor.
*/
:disabled {
  cursor: default;
}
/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block; /* 1 */
  vertical-align: middle; /* 2 */
}
/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/
img,
video {
  max-width: 100%;
  height: auto;
}
/* Make elements with the HTML hidden attribute stay hidden by default */
[hidden] {
  display: none;
}
*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgba(59, 130, 246, 0.5);
  --tw-ring-offset-shadow: 0 0 rgba(0,0,0,0);
  --tw-ring-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
}
.container {
  width: 100%;
}
@media (min-width: 0px) {
  .container {
    max-width: 0px;
  }
}
@media (min-width: 320px) {
  .container {
    max-width: 320px;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 576px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1350px) {
  .container {
    max-width: 1350px;
  }
}
@media (min-width: 1920px) {
  .container {
    max-width: 1920px;
  }
}
@media (min-width: 2560px) {
  .container {
    max-width: 2560px;
  }
}
.heading {
    padding-bottom: 24px;
  }
.amc-dh2 {
    font-family: "Lora";
    font-weight: 600;
    font-size: 52px;
    line-height: 54px;
    text-transform: none;
  }
.amc-dh3 {
    font-family: "Lora";
    font-weight: 600;
    font-size: 48px;
    line-height: 54px;
    text-transform: none;
  }
.amc-dh4 {
    font-family: "Lora";
    font-weight: 600;
    font-size: 32px;
    line-height: 40px;
    text-transform: none;
  }
.amc-dh5 {
    font-family: "Lora";
    font-weight: 600;
    font-size: 28px;
    line-height: 32px;
    text-transform: none;
  }
.amc-dh7 {
    font-family: "Work Sans";
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    text-transform: capitalize;
  }
.amc-d-subtitle-semi-bold {
    font-family: "Work Sans";
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-transform: none;
  }
.amc-body-400 {
    font-family: "Work Sans";
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-transform: none;
  }
.amc-body-500 {
    font-family: "Work Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: none;
  }
.amc-button-copy {
    font-family: "Work Sans";
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    text-transform: capitalize;
  }
.amc-label {
    font-family: "Work Sans";
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    text-transform: uppercase;
  }
.order-2 {
  order: 2;
}
.-mx-4 {
  margin-left: -1rem;
  margin-right: -1rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.block {
  display: block;
}
.flex {
  display: flex;
}
.hidden {
  display: none;
}
.h-24 {
  height: 6rem;
}
.h-6 {
  height: 1.5rem;
}
.h-full {
  height: 100%;
}
.min-h-\[120px\] {
  min-height: 120px;
}
.min-h-\[160px\] {
  min-height: 160px;
}
.min-h-\[50px\] {
  min-height: 50px;
}
.w-1\/2 {
  width: 50%;
}
.w-1\/6 {
  width: 16.666667%;
}
.w-\[143px\] {
  width: 143px;
}
.w-\[min\(100\%\2c 420px\)\] {
  width: min(100%,420px);
}
.w-full {
  width: 100%;
}
.basis-1\/3-gap-6 {
  flex-basis: calc(33.3% - (2/3 * 1.5rem));
}
.basis-1\/4-gap-6 {
  flex-basis: calc(25% - (3/4 * 1.5rem));
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.content-center {
  align-content: center;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.self-center {
  align-self: center;
}
.rounded-md {
  border-radius: 0.375rem;
}
.bg-transparent {
  background-color: transparent;
}
.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgba(255, 255, 255, 1);
  background-color: rgba(255, 255, 255, var(--tw-bg-opacity));
}
.bg-clip-text {
  -webkit-background-clip: text;
          background-clip: text;
}
.p-3 {
  padding: 0.75rem;
}
.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.pb-\[32px\] {
  padding-bottom: 32px;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.align-middle {
  vertical-align: middle;
}
.leading-8 {
  line-height: 2rem;
}
.text-\[\#373a36\] {
  --tw-text-opacity: 1;
  color: rgba(55, 58, 54, 1);
  color: rgba(55, 58, 54, var(--tw-text-opacity));
}
.text-amc-gray {
  --tw-text-opacity: 1;
  color: rgba(55, 58, 54, 1);
  color: rgba(55, 58, 54, var(--tw-text-opacity));
}
.text-amc-light-gray {
  --tw-text-opacity: 1;
  color: rgba(105, 107, 104, 1);
  color: rgba(105, 107, 104, var(--tw-text-opacity));
}
.text-transparent {
  color: transparent;
}
.shadow-\[0_4px_6px_-2px_rgba\(16\2c 24\2c 40\2c 0\.03\)\2c 0_12px_16px_-4px_rgba\(16\2c 24\2c 40\2c 0\.08\)\] {
  --tw-shadow: 0 4px 6px -2px rgba(16,24,40,0.03),0 12px 16px -4px rgba(16,24,40,0.08);
  --tw-shadow-colored: 0 4px 6px -2px var(--tw-shadow-color), 0 12px 16px -4px var(--tw-shadow-color);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 4px 6px -2px rgba(16,24,40,0.03),0 12px 16px -4px rgba(16,24,40,0.08);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
.shadow-none {
  --tw-shadow: 0 0 rgba(0,0,0,0);
  --tw-shadow-colored: 0 0 rgba(0,0,0,0);
  box-shadow: 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0), 0 0 rgba(0,0,0,0);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0,0,0,0)), var(--tw-ring-shadow, 0 0 rgba(0,0,0,0)), var(--tw-shadow);
}
:root {
  --primary-dark-blue-color: #005979;
  --primary-blue-color: #00698f;
  --primary-green-color: rgb(0, 115, 110);
  --tertiary-bright-green-color: #3bd4ae;
  --grey-900-color: #373a36;
  --grey-800-color: #696b68;
  --grey-700-color: #8d8d8d;
  --grey-600-color: #acacac;
  --grey-500-color: #d9d8d6;
  --grey-300-color: #f2f2f2;
  --grey-250-color: #f9f9f9;
  --neutral-white-color: #ffffff;
  /* Spacing */
  --spacing-01: 0.125rem; /* 2px */
  --spacing-02: 0.25rem; /* 4px */
  --spacing-03: 0.5rem; /* 8px */
  --spacing-04: 0.75rem; /* 12px */
  --spacing-05: 1rem; /* 16px */
  --spacing-06: 1.5rem; /* 24px */
  --spacing-07: 2rem; /* 32px */
  --spacing-08: 2.5rem; /* 40px */
  --spacing-09: 3rem; /* 48px */
  --spacing-10: 4rem; /* 64px */
  --spacing-11: 5rem; /* 80px */
  --spacing-12: 6rem; /* 96px */
  --spacing-13: 10rem; /* 160px */
  --spacing-y-gap: 16px;
  --spacing-heading-y-gap: 24px;
  --spacing-section-y: var(--spacing-09);
  --spacing-section-x: var(--spacing-05);
  /* Typography */
  --font-body-small: 0.875rem; /* 14px */
  --font-body-medium: 1rem; /* 16px */
  --font-body-large: 1.125rem; /* 18px */
  --font-body-x-large: 1.25rem; /* 20px */
  --font-body-xx-large: 1.5rem; /* 24px */
  --font-title-small: 1.25rem; /* 20px */
  --font-title-medium: 1.5rem; /* 24px */
  --font-title-large: 1.75rem; /* 28px */
  --font-title-x-large: 2.25rem; /* 36px */
  --font-h1-size: 1.75rem;
  --font-h2-size: 1.5rem;
  --font-h3-size: 1.25rem;
  --font-h4-size: 1.125rem;
  --line-height: 24px;
  --font-size-24px: 24px;
  --h2-font-size: 36px;
  --padding-top-bottom: 32px;
  --padding-left-right: 20px;
  /* Header */
  --header-height-mobile: 73px;
  /* Miscellaneous */
  --page-max-width: 2560px;
  --page-max-content: 1920px;
  --page-left-margin: 48px;
  --page-right-margin: 48px;
  --content-top-margin: 48px;
  --content-bottom-margin: 48px;
  --steps-max-image-height: 500px;
  /* font styles */
  --font-family-h1: Lora;
  --font-weight-h1: 700;
  --font-size-h1: 56px;
  --line-height-h1: 62px;
  --font-family-h2: Lora;
  --font-weight-h2: 600;
  --font-size-h2: 52px;
  --line-height-h2: 54px;
  --font-family-h3: Lora;
  --font-weight-h3: 600;
  --font-size-h3: 48px;
  --line-height-h3: 54px;
  --font-family-h4: Lora;
  --font-weight-h4: 600;
  --font-size-h4: 32px;
  --line-height-h4: 40px;
  --font-family-h5: Lora;
  --font-weight-h5: 600;
  --font-size-h5: 20px;
  --line-height-h5: 28px;
  --font-family-h6: Lora;
  --font-weight-h6: 700;
  --font-size-h6: 18px;
  --line-height-h6: 24px;
  --character-spacing-h6: 8%;
  --case-h6: uppercase;
  --font-family-subtitle: "Work Sans";
  --font-weight-subtitle: 700;
  --font-size-subtitle: 24px;
  --line-height-subtitle: 32px;
}

@media (min-width: 0px) {
  :root {
    --page-left-margin: 16px;
    --page-right-margin: 16px;
    --content-top-margin: 24px;
    --content-bottom-margin: 32px;
    --steps-max-image-height: 290px;
    /* font styles */
    --font-family-h1: Lora;
    --font-weight-h1: 700;
    --font-size-h1: 32px;
    --line-height-h1: 40px;
    --font-family-h2: Lora;
    --font-weight-h2: 600;
    --font-size-h2: 24px;
    --line-height-h2: 32px;
    --font-family-h3: Lora;
    --font-weight-h3: 600;
    --font-size-h3: 20px;
    --line-height-h3: 28px;
    --font-family-h4: Lora;
    --font-weight-h4: 600;
    --font-size-h4: 16px;
    --line-height-h4: 24px;
    --font-family-h5: Lora;
    --font-weight-h5: 700;
    --font-size-h5: 16px;
    --line-height-h5: 24px;
    --character-spacing-h5: 8%;
    --case-h5: uppercase;
    --font-family-h6: Lora;
    --font-weight-h6: 700;
    --font-size-h6: 16px;
    --line-height-h6: 24px;
    --character-spacing-h6: 8%;
    --case-h6: uppercase;
    --font-family-subtitle: "Work Sans";
    --font-weight-subtitle: 700;
    --font-size-subtitle: 20px;
    --line-height-subtitle: 28px;
  }
}
@media (min-width: 768px) {
  :root {
    --page-left-margin: 16px;
    --page-right-margin: 16px;
    --content-top-margin: 24px;
    --content-bottom-margin: 32px;
    --steps-max-image-height: 290px;
    /* font styles */
    --font-family-h1: Lora;
    --font-weight-h1: 700;
    --font-size-h1: 32px;
    --line-height-h1: 40px;
    --font-family-h2: Lora;
    --font-weight-h2: 600;
    --font-size-h2: 24px;
    --line-height-h2: 32px;
    --font-family-h3: Lora;
    --font-weight-h3: 600;
    --font-size-h3: 20px;
    --line-height-h3: 28px;
    --font-family-h4: Lora;
    --font-weight-h4: 600;
    --font-size-h4: 16px;
    --line-height-h4: 24px;
    --font-family-h5: Lora;
    --font-weight-h5: 700;
    --font-size-h5: 16px;
    --line-height-h5: 24px;
    --character-spacing-h5: 8%;
    --case-h5: uppercase;
    --font-family-h6: Lora;
    --font-weight-h6: 700;
    --font-size-h6: 16px;
    --line-height-h6: 24px;
    --character-spacing-h6: 8%;
    --case-h6: uppercase;
    --font-family-subtitle: "Work Sans";
    --font-weight-subtitle: 700;
    --font-size-subtitle: 20px;
    --line-height-subtitle: 28px;
  }
}
@media (min-width: 1200px) {
  :root {
    --page-left-margin: 24px;
    --page-right-margin: 24px;
    --content-top-margin: 48px;
    --content-bottom-margin: 48px;
    --steps-max-image-height: 500px;
    /* font styles */
    --font-family-h1: Lora;
    --font-weight-h1: 700;
    --font-size-h1: 56px;
    --line-height-h1: 62px;
    --font-family-h2: Lora;
    --font-weight-h2: 600;
    --font-size-h2: 52px;
    --line-height-h2: 54px;
    --font-family-h3: Lora;
    --font-weight-h3: 600;
    --font-size-h3: 48px;
    --line-height-h3: 54px;
    --font-family-h4: Lora;
    --font-weight-h4: 600;
    --font-size-h4: 32px;
    --line-height-h4: 40px;
    --font-family-h5: Lora;
    --font-weight-h5: 600;
    --font-size-h5: 20px;
    --line-height-h5: 28px;
    --font-family-h6: Lora;
    --font-weight-h6: 700;
    --font-size-h6: 18px;
    --line-height-h6: 24px;
    --character-spacing-h6: 8%;
    --case-h6: uppercase;
    --font-family-subtitle: "Work Sans";
    --font-weight-subtitle: 700;
    --font-size-subtitle: 24px;
    --line-height-subtitle: 32px;
  }
}
.max-content-width {
  max-width: 1920px;
  max-width: var(--page-max-content);
}

.container-main-box {
  padding-left: 48px;
  padding-left: var(--page-left-margin);
  padding-right: 48px;
  padding-right: var(--page-right-margin);
  padding-top: 48px;
  padding-top: var(--content-top-margin);
  padding-bottom: 48px;
  padding-bottom: var(--content-bottom-margin);
}

.page-margin {
  padding-left: 48px;
  padding-left: var(--page-left-margin);
  padding-right: 48px;
  padding-right: var(--page-right-margin);
}
@media (min-width: 992px) {
  :root {
    --spacing-heading-y-gap: 48px;
    --spacing-section-y: var(--spacing-11);
    --spacing-section-x: var(--spacing-08);
    --font-h1-size: 2.625rem;
    --font-h2-size: 2.25rem;
    --font-h3-size: 1.75rem;
    --font-h4-size: 1.5rem;
  }
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #373a36;
  color: var(--grey-900-color);
}

.objectives__question h1 {
  text-align: center;
  padding-bottom: 32px;
}

.objective {
  padding: 1rem 1rem;
  padding: var(--spacing-05) var(--spacing-05);
  display: flex;
  flex-direction: column;
  justify-items: center;
  align-items: flex-start;
  width: 100%;
  background-color: #ffffff;
  background-color: var(--neutral-white-color);
  box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.07);
}

.objective__title {
  margin-left: auto;
  margin-right: auto;
  margin-top: 12px;
  margin-bottom: 12px;
}

.objective__icon {
  margin-left: auto;
  margin-right: auto;
}

.objective__description {
  text-align: center;
  min-height: 70px;
  margin-bottom: 16px;
}

.objective__controls {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  row-gap: 16px;
  row-gap: var(--spacing-y-gap);
}
.objective__controls > * {
  flex: 1 1 100%;
}

.objective__controls a {
  min-width: auto;
}

html {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-color: #f9f9f9;
  background-color: var(--grey-250-color);
}

.page-layout {
  padding-top: 73px;
  padding-top: var(--header-height-mobile);
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .page-layout {
    padding-top: 129px;
  }
}
.container {
  padding: 3rem 1rem 3rem 1rem;
  padding: var(--spacing-section-y) var(--spacing-section-x) var(--spacing-section-y) var(--spacing-section-x);
}

.pd-x {
  padding-left: 1rem;
  padding-left: var(--spacing-05);
  padding-right: 1rem;
  padding-right: var(--spacing-05);
}

.page-banner {
  width: 100%;
  min-height: 200px;
  max-height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 992px) {
  .page-banner {
    max-height: 425px;
    height: 425px;
  }
}
.content-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.content-max {
  max-width: 2560px;
  max-width: var(--page-max-width);
  width: 100%;
}

.hide {
  display: none;
}

.homeownership .glide-slide {
  border-radius: 4px;
  box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08);
}

.homeownership__title {
  text-align: center;
}

.homeownership-card {
  border-radius: 4px;
  width: min(100%, 420px);
  display: none;
}

.homeownership-card__body {
  display: flex;
  flex-direction: column;
  width: 100%;
  -webkit-text-decoration: none;
  text-decoration: none;
  max-height: -moz-max-content;
  max-height: max-content;
  color: inherit;
}

.homeownership-card__body:visited,
.homeownership-card__body:active {
  -webkit-text-decoration: none;
  text-decoration: none;
  color: #000;
}

.homeownership-card__image {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.homeownership-card__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  gap: var(--spacing-05);
  padding: 1.5rem;
  padding: var(--spacing-06);
}

.homeownership-card__peek {
  color: #696b68;
  color: var(--grey-800-color);
}

.third-party div {
  display: flex;
  vertical-align: middle;
  justify-content: center;
}

.third-party__logo {
  width: 120px;
}

.fmac__logo {
  filter: contrast(50%);
}

.answer {
  display: flex;
  gap: 2rem;
  gap: var(--spacing-07);
  border-top: 1px solid #d9d8d6;
  border-top: 1px solid var(--grey-500-color);
}

.answer__image {
  display: none;
}

.answer__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: var(--spacing-y-gap);
}

.answer__link {
  color: #00698f;
  color: var(--primary-blue-color);
  max-width: -moz-max-content;
  max-width: max-content;
}

.questions__separator {
  display: none;
}

@media (min-width: 992px) {
  .questions__content {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .questions__separator {
    display: inline;
    display: initial;
    border: 1px solid #d9d8d6;
    border: 1px solid var(--grey-500-color);
    margin: 0 3rem;
    margin: 0 var(--spacing-09);
    max-height: 200px;
    min-height: 200px;
    align-self: center;
  }
  .answer {
    padding: 0;
    border-top: 0;
    border-top: initial;
    align-items: center;
  }
  .answer__image {
    display: inline;
    display: initial;
  }
}
.max-page-width {
  max-width: 2560px;
  max-width: var(--page-max-width);
}

.bg-white {
  background-color: #ffffff;
  background-color: var(--neutral-white-color);
}

.steps__image {
  max-height: 540px;
}

.questions {
  display: flex;
  flex-direction: column;
  background-color: inherit;
}

.questions__title {
  text-align: center;
}

.questions__content {
  display: flex;
  flex-wrap: wrap;
}

.answer {
  display: flex;
  gap: 2rem;
  gap: var(--spacing-07);
  border-top: 1px solid #d9d8d6;
  border-top: 1px solid var(--grey-500-color);
  padding: 1.5rem 0;
  padding: var(--spacing-06) 0;
}

.answer__image {
  display: none;
}

.answer__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  gap: var(--spacing-y-gap);
}

.answer__link {
  color: #00698f;
  color: var(--primary-blue-color);
  max-width: -moz-max-content;
  max-width: max-content;
}

.questions__separator {
  display: none;
}

@media (min-width: 992px) {
  .questions__content {
    justify-content: center;
    flex-wrap: nowrap;
  }
  .questions__separator {
    display: inline;
    display: initial;
    border: 1px solid #d9d8d6;
    border: 1px solid var(--grey-500-color);
    margin: 0 3rem;
    margin: 0 var(--spacing-09);
    max-height: 200px;
    min-height: 200px;
    align-self: center;
  }
  .answer {
    padding: 0;
    border-top: 0;
    border-top: initial;
    align-items: center;
  }
  .answer__image {
    display: inline;
    display: initial;
  }
}
.faq.container {
  padding-bottom: 3rem;
  padding-bottom: var(--spacing-section-y);
}

.faq__title {
  text-align: center;
}

.faq-answer {
  padding-bottom: 1rem;
  padding-bottom: var(--spacing-05);
}
.faq-answer a {
  color: #00698f;
  color: var(--primary-blue-color);
}

.faq-answer__more {
  padding-top: 0.75rem;
  padding-top: var(--spacing-04);
  display: block;
}

.accordion-item__title,
.accordion-item__content {
  padding-left: 1rem;
  padding-left: var(--spacing-05);
  padding-right: 1rem;
  padding-right: var(--spacing-05);
}

.accordion-item__title {
  border-top: 1px solid #d9d8d6;
  color: #373a36;
  color: var(--grey-900-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-top: var(--spacing-05);
  padding-bottom: 1rem;
  padding-bottom: var(--spacing-05);
  cursor: pointer;
}

.accordion-item__title--active,
.accordion-item__content--active {
  background-color: #f6f6f6;
}

.accordion-item__title:nth-last-child(2):not(.accordion-item__title--active) {
  border-bottom: 1px solid #d9d8d6;
}

.accordion-item__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 8px;
}

.accordion-item__content {
  visibility: hidden;
  height: 0;
  transition: height 1s linear;
}

.accordion-item__content--active {
  height: auto;
  visibility: visible;
}

.accordion-item__content--active:nth-last-child(1) {
  border-bottom: 1px solid #d9d8d6;
}

.home-goal {
  background-color: #005979;
  background-color: var(--primary-dark-blue-color);
  color: #ffffff;
  color: var(--neutral-white-color);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 16px;
  gap: var(--spacing-y-gap);
}

.home-goal__title,
.home-goal__subtitle {
  margin: 0;
  text-align: center;
  color: #ffffff;
  color: var(--neutral-white-color);
}

.home-goal__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  gap: var(--spacing-y-gap);
}

@media (min-width: 576px) {
  .home-goal {
    padding: 64px 16px;
  }
  .home-goal__buttons {
    flex-direction: row;
    justify-content: center;
  }
  .rocketchat-widget {
    display: none;
  }
}

@media (min-width: 0px) {
  @media not all and (min-width: 1200px) {
  .xxs\:max-xl\:heading {
    padding-bottom: 24px;
  }
  .mobile\:max-desktop\:amc-mh1 {
    font-family: "Lora";
    font-weight: 700;
    font-size: 32px;
    line-height: 40px;
    text-transform: none;
  }
  .mobile\:max-desktop\:amc-mh2 {
    font-family: "Lora";
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-transform: none;
  }
  .mobile\:max-desktop\:amc-mh3 {
    font-family: "Lora";
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-transform: none;
  }
  .mobile\:max-desktop\:amc-mh3-ws {
    font-family: "Work Sans";
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    text-transform: none;
  }
  .mobile\:max-desktop\:amc-m-subtitle-1 {
    font-family: "Work Sans";
    font-weight: 500;
    font-size: 20px;
    line-height: 28px;
    text-transform: none;
  }
  .mobile\:max-desktop\:amc-body-500-link {
    font-family: "Work Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    -webkit-text-decoration: underline;
    text-decoration: underline;
    text-transform: none;
  }
  .mobile\:max-desktop\:amc-body-500 {
    font-family: "Work Sans";
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    text-transform: none;
  }
  .xxs\:max-xl\:order-none {
      order: 0;
    }
  .xxs\:max-xl\:block {
      display: block;
    }
  .xxs\:max-xl\:hidden {
      display: none;
    }
  .xxs\:max-xl\:w-full {
      width: 100%;
    }
  .xxs\:max-xl\:text-center {
      text-align: center;
    }
  }
  @media not all and (min-width: 992px) {
    .xxs\:max-lg\:h-\[58px\] {
      height: 58px;
    }
    .xxs\:max-lg\:py-4 {
      padding-top: 1rem;
      padding-bottom: 1rem;
    }
  }
  @media not all and (min-width: 768px) {
    .xxs\:max-md\:order-none {
      order: 0;
    }
    .xxs\:max-md\:hidden {
      display: none;
    }
    .xxs\:max-md\:w-full {
      width: 100%;
    }
  }
  @media not all and (min-width: 576px) {
    .xxs\:max-sm\:m-auto {
      margin: auto;
    }
    .xxs\:max-sm\:h-32 {
      height: 8rem;
    }
    .xxs\:max-sm\:w-full {
      width: 100%;
    }
    .xxs\:max-sm\:basis-1-gap-6 {
      flex-basis: calc(100% - (0 * 1.5rem));
    }
    .xxs\:max-sm\:text-center {
      text-align: center;
    }
  }
  @media not all and (min-width: 320px) {
    .xxs\:max-xs\:block {
      display: block;
    }
    .xxs\:max-xs\:hidden {
      display: none;
    }
    .xxs\:max-xs\:w-full {
      width: 100%;
    }
  }
}

@media (min-width: 320px) {
  @media not all and (min-width: 576px) {
    .xs\:max-sm\:w-1\/2 {
      width: 50%;
    }
  }
}

@media (min-width: 576px) {
  .sm\:block {
    display: block;
  }
  .sm\:hidden {
    display: none;
  }
  .sm\:w-full {
    width: 100%;
  }
  @media not all and (min-width: 1200px) {
    .sm\:max-xl\:h-48 {
      height: 12rem;
    }
    .sm\:max-xl\:basis-1\/2-gap-6 {
      flex-basis: calc(50% - (1/2 * 1.5rem));
    }
  }
  @media not all and (min-width: 992px) {
    .sm\:max-lg\:w-1\/3 {
      width: 33.333333%;
    }
    .sm\:max-lg\:basis-1-gap-6 {
      flex-basis: calc(100% - (0 * 1.5rem));
    }
    .sm\:max-lg\:basis-1\/2-gap-6 {
      flex-basis: calc(50% - (1/2 * 1.5rem));
    }
  }
  @media not all and (min-width: 768px) {
    .sm\:max-md\:h-56 {
      height: 14rem;
    }
  }
}

@media (min-width: 768px) {
  .md\:-mx-6 {
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .md\:block {
    display: block;
  }
  .md\:hidden {
    display: none;
  }
  .md\:w-1\/3 {
    width: 33.333333%;
  }
  .md\:w-1\/4 {
    width: 25%;
  }
  .md\:w-2\/3 {
    width: 66.666667%;
  }
  .md\:shrink-0 {
    flex-shrink: 0;
  }
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .md\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  @media not all and (min-width: 768px) {
    .md\:max-md\:gap-4 {
      gap: 1rem;
    }
  }
}

@media (min-width: 992px) {
  .lg\:block {
    display: block;
  }
  .lg\:hidden {
    display: none;
  }
  .lg\:h-\[36px\] {
    height: 36px;
  }
  .lg\:w-1\/3 {
    width: 33.333333%;
  }
  .lg\:w-1\/4 {
    width: 25%;
  }
  .lg\:w-2\/3 {
    width: 66.666667%;
  }
  .lg\:p-4 {
    padding: 1rem;
  }
  @media not all and (min-width: 2560px) {
    .lg\:max-xxxl\:pl-12 {
      padding-left: 3rem;
    }
  }
}

@media (min-width: 1200px) {
  .xl\:block {
    display: block;
  }
  .xl\:hidden {
    display: none;
  }
  .xl\:w-1\/3 {
    width: 33.333333%;
  }
  .xl\:w-1\/4 {
    width: 25%;
  }
  .xl\:w-2\/3 {
    width: 66.666667%;
  }
}

@media (min-width: 1920px) {
  .xxl\:block {
    display: block;
  }
  .xxl\:hidden {
    display: none;
  }
  .xxl\:w-1\/3 {
    width: 33.333333%;
  }
  .xxl\:w-1\/4 {
    width: 25%;
  }
  .xxl\:w-2\/3 {
    width: 66.666667%;
  }
  @media not all and (min-width: 2560px) {
    .xxl\:max-xxxl\:px-64 {
      padding-left: 16rem;
      padding-right: 16rem;
    }
  }
}

@media (min-width: 2560px) {
  .xxxl\:block {
    display: block;
  }
  .xxxl\:hidden {
    display: none;
  }
  .xxxl\:w-1\/3 {
    width: 33.333333%;
  }
  .xxxl\:w-1\/4 {
    width: 25%;
  }
  .xxxl\:w-2\/3 {
    width: 66.666667%;
  }
}
