/*************************
      GLOBAL VARIABLES
**************************/

:root {
    --brand-color-1: rgb(175, 39, 47);
    --brand-color-2: rgb(232, 190, 64);
    --color-black: rgb(0, 0, 0);
    --color-white: rgb(255, 255, 255);
    --color-text: rgb(35, 35, 35);
    --color-border: rgb(225, 225, 225);
    --color-overlay: rgba(0, 0, 0, 0.68);
    --color-off-canvas: rgba(0, 0, 0, 0.9);
}

/*************************
      GLOBAL RESET
**************************/

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    color: var(--color-text);
    background-color: var(--color-white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
}

body.navigation-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

/*************************
      SITE PREHEADER
**************************/

.site-preheader {
    display: flex;
    width: 100%;
    color: var(--color-white);
    background-color: var(--brand-color-1);
}

.site-preheader__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 2rem;
}

/*----------------------
  Phone Number
-----------------------*/

.site-preheader__phone {
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.site-preheader__phone:hover,
.site-preheader__phone:focus-visible {
    text-decoration: underline;
}

/*----------------------
  Quote Button
-----------------------*/

.site-preheader__quote-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    color: var(--color-white);
    background-color: transparent;
    border: 2px solid var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.site-preheader__quote-button:hover,
.site-preheader__quote-button:focus-visible {
    color: var(--brand-color-1);
    background-color: var(--color-white);
}

/*************************
      SITE HEADER
**************************/

.site-header {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1rem 2rem;
}

/*----------------------
  Logo
-----------------------*/

.site-header__logo {
    display: flex;
    align-items: center;
    width: 38%;
}

.site-header__logo-link {
    display: block;
    width: 100%;
}

.site-header__logo-image {
    width: 100%;
    max-width: 28rem;
    height: auto;
}

/*----------------------
  Mobile Menu Controls
-----------------------*/

.site-header__menu-toggle,
.site-header__menu-close,
.site-header__overlay {
    display: none;
}

.site-header__menu-toggle {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 3rem;
    height: 3rem;
    padding: 0.5rem;
    color: var(--color-text);
    background-color: transparent;
    border: 0;
    cursor: pointer;
}

.site-header__menu-toggle-line {
    display: block;
    width: 100%;
    height: 0.1875rem;
    margin: 0.1875rem 0;
    background-color: var(--brand-color-1);
}

/*screen-reader menu label*/
.site-header__menu-label {
    position: absolute;
    width: 0.0625rem;
    height: 0.0625rem;
    margin: -0.0625rem;
    padding: 0;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

/*----------------------
  Main Navigation
-----------------------*/

.site-header__navigation {
    display: flex;
    justify-content: flex-end;
    width: 62%;
}

.site-header__menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-header__menu-item {
    margin-left: 0.5rem;
}

.site-header__menu-link {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

/*active and interactive navigation links*/
.site-header__menu-link:hover,
.site-header__menu-link:focus-visible,
.site-header__menu-link--active {
    color: var(--color-white);
    background-color: var(--brand-color-1);
}

/*************************
      SITE MAIN
**************************/

.site-main {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    width: 100%;
}

/*************************
      HOME HERO
**************************/

.home-hero {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 30rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
}

.home-hero__inner {
    width: 100%;
    padding: 5rem 8%;
    text-align: center;
}

.home-hero__eyebrow {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
}

.home-hero__heading {
    width: 70%;
    margin: 0 auto 1.5rem;
    font-size: 3rem;
    line-height: 1.15;
}

.home-hero__text {
    width: 60%;
    margin: 0 auto 2rem;
    font-size: 1.25rem;
    line-height: 1.6;
}

/*----------------------
  Hero Buttons
-----------------------*/

.home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.home-hero__button {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
    padding: 0.75rem 1.5rem;
    color: var(--brand-color-1);
    background-color: var(--color-white);
    border: 2px solid var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.home-hero__button--outline {
    color: var(--color-white);
    background-color: transparent;
}

.home-hero__button:hover,
.home-hero__button:focus-visible {
    color: var(--color-white);
    background-color: var(--color-black);
    border-color: var(--color-black);
}

/*************************
      MID NAVIGATION
**************************/

.mid-navigation {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
}

.mid-navigation__inner {
    width: 100%;
    padding: 4rem 2rem;
}

/*----------------------
  Section Introduction
-----------------------*/

.mid-navigation__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    text-align: center;
}

.mid-navigation__introduction {
    width: 70%;
    margin: 0 auto 2.5rem;
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
}

/*----------------------
  Navigation Cards
-----------------------*/

.mid-navigation__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}

.mid-navigation__card {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 33%;
    min-height: 12rem;
    padding: 1.5rem;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    text-decoration: none;
}

.mid-navigation__card:hover,
.mid-navigation__card:focus-visible {
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border-color: var(--brand-color-1);
}

.mid-navigation__card:hover .mid-navigation__icon,
.mid-navigation__card:focus-visible .mid-navigation__icon {
    color: var(--brand-color-1);
    background-color: var(--color-white);
}

/*card icon*/
.mid-navigation__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20%;
    height: 4rem;
    margin-right: 1rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    font-size: 2rem;
    font-weight: 700;
}

/*title and blurb container*/
.mid-navigation__content {
    display: flex;
    flex-direction: column;
    width: 75%;
}

.mid-navigation__card-title {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.mid-navigation__card-text {
    font-size: 1rem;
    line-height: 1.5;
}

/*************************
      MAIN CONTENT
**************************/

.main-content {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
}

.main-content__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 4rem 8%;
}

/*----------------------
  Safety Seal
-----------------------*/

.main-content__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40%;
}

.main-content__seal {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22rem;
    height: 22rem;
    background-color: var(--brand-color-1);
    border: 0.75rem solid var(--brand-color-2);
    border-radius: 50%;
}

.main-content__seal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 82%;
    height: 82%;
    padding: 1rem;
    color: var(--color-text);
    background-color: var(--color-white);
    border: 0.25rem dotted var(--brand-color-2);
    border-radius: 50%;
    text-align: center;
}

.main-content__seal-top {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.main-content__seal-highlight {
    color: var(--brand-color-1);
    font-size: 4rem;
    line-height: 1;
}

.main-content__seal-bottom {
    margin-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.1rem;
}

/*----------------------
  Company Introduction
-----------------------*/

.main-content__copy {
    width: 55%;
}

.main-content__heading {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 2.25rem;
    line-height: 1.2;
}

.main-content__text {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

.main-content__button {
    display: inline-block;
    padding: 0.75rem 3rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border: 2px solid var(--brand-color-1);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.main-content__button:hover,
.main-content__button:focus-visible {
    color: var(--brand-color-1);
    background-color: var(--color-white);
}

/*************************
      INTERIOR PAGE HERO
**************************/

.page-hero {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 16rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
}

.page-hero__inner {
    width: 100%;
    padding: 3rem 8%;
}

.page-hero__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.75rem;
}

.page-hero__text {
    width: 65%;
    margin: 0;
    font-size: 1.25rem;
    line-height: 1.6;
}

/*************************
      FAQ CONTENT
**************************/

.faq-content {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
}

.faq-content__inner {
    width: 100%;
    padding: 4rem 8%;
}

/*----------------------
  Section Introduction
-----------------------*/

.faq-content__introduction {
    width: 75%;
    margin: 0 auto 2.5rem;
    text-align: center;
}

.faq-content__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 2.25rem;
    line-height: 1.2;
}

.faq-content__text {
    margin: 0;
    font-size: 1.125rem;
    line-height: 1.6;
}

/*----------------------
  Accordion Items
-----------------------*/

.faq-accordion {
    width: 80%;
    margin: 0 auto;
}

.faq-accordion__item {
    width: 100%;
    margin-bottom: 1rem;
    border: 1px solid var(--color-border);
}

.faq-accordion__question {
    margin: 0;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    font-size: 1.25rem;
    line-height: 1.4;
}

.faq-accordion__button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    color: var(--color-white);
    background-color: transparent;
    border: 0;
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
}

.faq-accordion__button:hover,
.faq-accordion__button:focus-visible {
    background-color: var(--color-black);
}

.faq-accordion__button:focus-visible {
    outline: 3px solid var(--brand-color-2);
    outline-offset: -3px;
}

/*accordion open and close symbol*/
.faq-accordion__icon {
    position: relative;
    flex: 0 0 1.25rem;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 1.5rem;
}

.faq-accordion__icon::before,
.faq-accordion__icon::after {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.125rem;
    background-color: var(--color-white);
    content: "";
    transform: translateY(-50%);
}

.faq-accordion__icon::after {
    transform: translateY(-50%) rotate(90deg);
}

.faq-accordion__button[aria-expanded="true"] .faq-accordion__icon::after {
    transform: translateY(-50%) rotate(0);
}

/*----------------------
  Accordion Answers
-----------------------*/

.faq-accordion__answer {
    padding: 1.5rem;
    background-color: var(--color-white);
}

.faq-accordion__answer[hidden] {
    display: none;
}

.faq-accordion__answer-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.7;
}

/*************************
      SPLIT CONTENT
**************************/

.split-content {
    display: flex;
    width: 100%;
    background-color: var(--color-white);
}

.split-content__text-column,
.split-content__image-column {
    width: 50%;
}

/*----------------------
  Text Column
-----------------------*/

.split-content__text-column {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40rem;
}

.split-content__text-inner {
    width: 78%;
    padding: 4rem 0;
}

.split-content__heading {
    margin-top: 0;
    margin-bottom: 1.25rem;
    font-size: 2.5rem;
    line-height: 1.2;
}

.split-content__text {
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 1.125rem;
    line-height: 1.8;
}

/*----------------------
  Project Callout
-----------------------*/

.split-content__callout {
    padding: 2rem;
    background-color: var(--color-white);
    border: 2px solid var(--color-border);
    text-align: center;
}

.split-content__callout-heading {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
    line-height: 1.25;
}

.split-content__button {
    display: inline-block;
    padding: 0.75rem 2rem;
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border: 2px solid var(--brand-color-1);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.split-content__button:hover,
.split-content__button:focus-visible {
    color: var(--brand-color-1);
    background-color: var(--color-white);
}

/*----------------------
  Image Column
-----------------------*/

.split-content__image-column {
    position: relative;
    min-height: 40rem;
    overflow: hidden;
}

.split-content__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content__image-label {
    position: absolute;
    right: 0;
    bottom: 20%;
    min-width: 30%;
    padding: 1rem 2rem;
    color: var(--color-white);
    background-color: var(--color-black);
    font-size: 1.125rem;
    font-weight: 700;
    text-align: center;
}

/*************************
      SITE CTA
**************************/

.site-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 28rem;
    color: var(--color-white);
    background-image:
        linear-gradient(var(--color-overlay), var(--color-overlay)),
        url("../image/cta-theater-background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

.site-cta__inner {
    width: 100%;
    padding: 5rem 2rem;
    text-align: center;
}

.site-cta__heading {
    width: 80%;
    margin: 0 auto 2rem;
    font-size: 3rem;
    line-height: 1.2;
    text-transform: uppercase;
}

/*----------------------
  CTA Buttons
-----------------------*/

.site-cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.site-cta__button {
    display: inline-block;
    min-width: 12rem;
    margin-right: 0.75rem;
    margin-left: 0.75rem;
    padding: 1rem 1.5rem;
    color: var(--color-white);
    background-color: transparent;
    border: 2px solid var(--color-white);
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
}

.site-cta__button:hover,
.site-cta__button:focus-visible {
    color: var(--color-white);
    background-color: var(--brand-color-1);
    border-color: var(--brand-color-1);
}

/*************************
      SITE FOOTER
**************************/

.site-footer {
    display: flex;
    width: 100%;
    margin-top: auto;
    color: var(--color-white);
    background-color: var(--color-black);
}

.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    padding: 3rem 2rem;
}

.site-footer__column {
    width: 22%;
}

.site-footer__column--about {
    width: 28%;
}

.site-footer__heading {
    margin-top: 0;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-size: 1.25rem;
}

/*----------------------
  Logo and Contact
-----------------------*/

.site-footer__logo-link {
    display: block;
    width: 100%;
    margin-bottom: 1.5rem;
}

/*render the full logo in white*/
.site-footer__logo-image {
    width: 100%;
    max-width: 20rem;
    height: auto;
    filter: brightness(0) invert(1);
}

.site-footer__contact {
    font-style: normal;
}

.site-footer__contact-line {
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.site-footer__contact-link {
    color: var(--color-white);
    text-decoration: none;
}

.site-footer__contact-link:hover,
.site-footer__contact-link:focus-visible {
    color: var(--brand-color-1);
    text-decoration: underline;
}

/*----------------------
  About Company
-----------------------*/

.site-footer__about-text {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/*----------------------
  Footer Navigation
-----------------------*/

.site-footer__menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-footer__menu-item {
    margin-bottom: 0.75rem;
}

.site-footer__menu-link {
    color: var(--color-white);
    font-size: 1rem;
    text-decoration: none;
}

.site-footer__menu-link:hover,
.site-footer__menu-link:focus-visible {
    color: var(--brand-color-1);
    text-decoration: underline;
}

/*----------------------
  Social Media
-----------------------*/

.site-footer__social {
    display: flex;
    align-items: center;
}

.site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin-right: 0.75rem;
    color: var(--color-black);
    background-color: var(--color-white);
    text-decoration: none;
}

.site-footer__social-link:hover,
.site-footer__social-link:focus-visible {
    color: var(--color-white);
    background-color: var(--brand-color-1);
}

/*youtube play symbol*/
.site-footer__icon--youtube {
    width: 0;
    height: 0;
    margin-left: 0.25rem;
    border-top: 0.5rem solid transparent;
    border-bottom: 0.5rem solid transparent;
    border-left: 0.75rem solid currentColor;
}

/*facebook letter symbol*/
.site-footer__icon--facebook {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
    text-transform: lowercase;
}

/*************************
      LAPTOP BREAKPOINT
**************************/

@media (max-width: 75rem) {
    .site-preheader__inner,
    .site-header__inner {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }

    .site-header__logo {
        width: 34%;
    }

    .site-header__navigation {
        width: 66%;
    }

    .site-header__menu-link {
        padding-right: 0.75rem;
        padding-left: 0.75rem;
    }

    .home-hero__inner,
    .main-content__inner {
        padding-right: 6%;
        padding-left: 6%;
    }

    .faq-content__inner {
        padding-right: 6%;
        padding-left: 6%;
    }

    .faq-accordion {
        width: 90%;
    }

    .site-footer__inner {
        padding-right: 1.5rem;
        padding-left: 1.5rem;
    }
}

/*************************
      TABLET BREAKPOINT
**************************/

@media (max-width: 56rem) {
    .site-preheader__inner {
        padding: 0.75rem 1rem;
    }

    .site-header__inner {
        padding: 0.75rem 1rem;
    }

    .site-header__logo {
        justify-content: flex-start;
        width: 70%;
    }

    .site-header__logo-link {
        width: 100%;
    }

    .site-header__logo-image {
        max-width: 22rem;
    }

    .site-header__menu-toggle {
        display: flex;
    }

    .site-header__menu-toggle:focus-visible,
    .site-header__menu-close:focus-visible {
        outline: 2px solid var(--brand-color-1);
        outline-offset: 0.25rem;
    }

    .site-header__navigation {
        position: fixed;
        top: 0;
        right: -100%;
        z-index: 1002;
        align-items: flex-start;
        justify-content: flex-start;
        flex-direction: column;
        width: 100%;
        height: 100vh;
        padding: 2rem;
        overflow-y: auto;
        background-color: var(--color-off-canvas);
        border-left: 0;
        transition: right 0.3s ease;
    }

    .site-header--open .site-header__navigation {
        right: 0;
    }

    .site-header__menu-close {
        display: block;
        align-self: flex-end;
        width: 3rem;
        height: 3rem;
        margin-bottom: 2rem;
        padding: 0;
        color: var(--color-white);
        background-color: transparent;
        border: 2px solid var(--color-white);
        font-size: 2rem;
        line-height: 1;
        cursor: pointer;
    }

    .site-header__overlay {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 1001;
        width: 100%;
        height: 100vh;
        padding: 0;
        background-color: var(--color-overlay);
        border: 0;
        cursor: pointer;
    }

    .site-header--open .site-header__overlay {
        display: block;
    }

    .site-header__menu {
        align-items: stretch;
        justify-content: flex-start;
        flex-direction: column;
    }

    .site-header__menu-item {
        width: 100%;
        margin: 0 0 0.5rem;
    }

    .site-header__menu-link {
        width: 100%;
        padding: 1rem;
        color: var(--color-white);
    }

    .home-hero__heading,
    .home-hero__text,
    .page-hero__text {
        width: 85%;
    }

    .home-hero__button {
        width: 42%;
        margin-right: 0.5rem;
        margin-left: 0.5rem;
        text-align: center;
    }

    .mid-navigation__introduction {
        width: 85%;
    }

    .faq-content__introduction,
    .faq-accordion {
        width: 100%;
    }

    .mid-navigation__card {
        width: 48%;
        margin-bottom: 1.5rem;
    }

    .main-content__inner {
        flex-direction: column;
        padding: 3rem 2rem;
    }

    .main-content__visual,
    .main-content__copy {
        width: 100%;
    }

    .main-content__visual {
        margin-bottom: 2rem;
    }

    .main-content__seal {
        width: 18rem;
        height: 18rem;
    }

    .main-content__copy {
        text-align: center;
    }

    .site-cta {
        min-height: 24rem;
        background-attachment: scroll;
    }

    .site-cta__heading {
        width: 90%;
        font-size: 2.5rem;
    }

    .split-content {
        flex-direction: column;
    }

    .split-content__text-column,
    .split-content__image-column {
        width: 100%;
        min-height: 30rem;
    }

    .split-content__text-inner {
        width: 85%;
        padding: 3rem 0;
    }

    .site-footer__column,
    .site-footer__column--about {
        width: 48%;
        margin-bottom: 2rem;
    }
}

/*************************
      CELL PHONE BREAKPOINT
**************************/

@media (max-width: 35rem) {
    .site-preheader__inner {
        flex-direction: column;
    }

    .site-preheader__quote-button {
        margin-top: 0.75rem;
    }

    .site-header__logo {
        width: 72%;
    }

    .site-header__navigation {
        width: 100%;
        padding: 1.5rem;
    }

    .home-hero {
        min-height: 26rem;
    }

    .home-hero__inner,
    .page-hero__inner {
        padding: 3rem 1rem;
    }

    .home-hero__heading,
    .home-hero__text,
    .page-hero__text {
        width: 100%;
    }

    .home-hero__heading {
        font-size: 2.25rem;
    }

    .home-hero__text,
    .page-hero__text {
        font-size: 1.125rem;
    }

    .home-hero__actions {
        align-items: center;
        flex-direction: column;
    }

    .home-hero__button {
        width: 80%;
        margin: 0 0 1rem;
    }

    .page-hero__heading {
        font-size: 2.25rem;
    }

    .faq-content__inner {
        padding: 3rem 1rem;
    }

    .faq-content__heading {
        font-size: 2rem;
    }

    .faq-accordion__button {
        padding: 1rem;
    }

    .faq-accordion__answer {
        padding: 1rem;
    }

    .mid-navigation__inner {
        padding: 3rem 1rem;
    }

    .mid-navigation__heading {
        font-size: 2rem;
    }

    .mid-navigation__introduction {
        width: 100%;
    }

    .mid-navigation__card {
        width: 100%;
    }

    .main-content__inner {
        padding: 3rem 1rem;
    }

    .main-content__seal {
        width: 15rem;
        height: 15rem;
    }

    .main-content__seal-top,
    .main-content__seal-bottom {
        font-size: 1.125rem;
    }

    .main-content__seal-highlight {
        font-size: 3rem;
    }

    .main-content__heading {
        font-size: 2rem;
    }

    .site-cta__inner {
        padding: 4rem 1rem;
    }

    .site-cta__heading {
        width: 100%;
        font-size: 2rem;
    }

    .site-cta__actions {
        align-items: center;
        flex-direction: column;
    }

    .site-cta__button {
        width: 80%;
        margin: 0 0 1rem;
    }

    .split-content__text-column,
    .split-content__image-column {
        min-height: 24rem;
    }

    .split-content__text-inner {
        width: 100%;
        padding: 3rem 1rem;
    }

    .split-content__heading {
        font-size: 2rem;
    }

    .split-content__callout {
        padding: 1.5rem 1rem;
    }

    .split-content__button {
        width: 100%;
        text-align: center;
    }

    .split-content__image-label {
        min-width: 45%;
        padding: 1rem;
    }

    .site-footer__inner {
        padding: 2rem 1rem;
    }

    .site-footer__column,
    .site-footer__column--about {
        width: 100%;
        text-align: center;
    }

    .site-footer__logo-image {
        margin-right: auto;
        margin-left: auto;
    }

    .site-footer__social {
        justify-content: center;
    }
}
