:root {
    --primary: #ff7700;
    --primaryLight: #ffba43;
    --secondary: #ffba43;
    --secondaryLight: #ffba43;
    --accentBlue: #1c4c9f;
    --headerColor: #1a1a1a;
    --bodyBackgroundColor: #fff7f2;
    --bodyBackgroundColorEven: #ffffff;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', 'Arial', sans-serif;
    overflow-x: hidden;
    background-color: var(--bodyBackgroundColor);
}

body {
    -ms-overflow-style: none;
    scrollbar-width: none;
    scrollbar-gutter: unset;
}

body::-webkit-scrollbar {
    display: none;
}

body.mmactive .drop-icon {
    display: none;
}

.site-main {
    display: block;
}

.site-main--offset {
    padding-top: clamp(5.75rem, 10vw, 8.25rem);
}

.copyright {
    width: 100%;
    margin: 5rem auto 0;
    text-align: center;
}

.container {
    width: 100%;
    max-width: 123rem;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
}

*,
*:before,
*:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}
.topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
}

.title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 50rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

.even {
    background-color: var(--bodyBackgroundColorEven);
}

.button-solid {
    font-size: 1rem;
    /* 46px - 56px */
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    min-width: 9.375rem;
    padding: 0 1.5rem;
    background-color: var(--primary);
    border: 1px solid var(--accentBlue);
    border-radius: 0.25rem;
    display: inline-block;
    position: relative;
    z-index: 1;
    /* prevents padding from adding to the width */
    box-sizing: border-box;
}

.button-solid:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 0;
    background: var(--accentBlue);
    opacity: 1;
    top: 0;
    left: 0;
    z-index: -1;
    border: 1px solid var(--accentBlue);
    /*border-radius: 0.25rem;*/
    transition: width 0.3s;
}
.button-solid:hover:before {
    width: 100%;
}

.tear-background {
    --backgroundBG: var(--bodyBackgroundColor);
    display: block;
    width: 100%;
    min-width: 0;
    height: clamp(1.5rem, 3vw, 2.5rem);
    position: absolute;
    left: 0;
    right: 0;
}
.tear-background-top {
    top: 0;
}

.tear-background-bottom {
    bottom: 0;
    transform: rotateX(180deg);
}
.tear-section {
    position: relative;
    overflow: hidden;
}

.pagination {
    width: 100%;
    display: flex;
    justify-content: center;
}

.pagination__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}

.pagination__item {
    display: flex;
}

.pagination__link {
    font-size: 1rem;
    line-height: 1;
    text-decoration: none;
    font-weight: 700;
    color: var(--headerColor);
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(28, 76, 159, 0.18);
    border-radius: 0.5rem;
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}

.pagination__link:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff;
    transform: translateY(-0.125rem);
}

.pagination__link--current {
    background-color: var(--accentBlue);
    border-color: var(--accentBlue);
    color: #fff;
}

.pagination__link--disabled,
.pagination__link--ellipsis {
    background-color: rgba(255, 255, 255, 0.7);
    border-color: rgba(28, 76, 159, 0.12);
    color: var(--bodyTextColor);
    cursor: default;
}

.pagination__link--disabled:hover,
.pagination__link--ellipsis:hover,
.pagination__link--current:hover {
    background-color: inherit;
    cursor: not-allowed;
    border-color: inherit;
    color: var(--bodyTextColor);
    transform: none;
}

#navigation .dropdown {
    position: relative;
}

#navigation .dropdown .dropdown-toggle {
    /* Reset default button styles */
    background: none;
    border: none;
    text-align: inherit;
    cursor: pointer;
    /* Remove any default focus styles */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#navigation .drop-icon {
    width: 0.9375rem;
    height: auto;
}

#navigation .drop-li {
    list-style: none;
}

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 1023px) {
    body.open {
        overflow: hidden;
    }
    body.scroll #navigation {
        width: 100%;
        max-width: 100%;
        top: 0;
    }
    body.scroll #navigation:before {
        border-radius: 0;
    }
    body.scroll #navigation .ul-wrapper {
        top: 100%;
    }
    #navigation {
        width: 94%;
        max-width: 123rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        /* 12px - 24px */
        padding: clamp(0.75rem, 2vw, 1.5rem);
        /* 12px - 24px */
        border-radius: clamp(0.75rem, 2vw, 1.5rem);
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 10000;
        transform: translateX(-50%);
        transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
    }
    #navigation:before {
        /* background color */
        content: "";
        width: 100%;
        height: 100%;
        background: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
        opacity: 1;
        /* 12px - 24px */
        border-radius: clamp(0.75rem, 2vw, 1.5rem);
        display: block;
        position: absolute;
        top: 0;
        left: 50%;
        transform: translateX(-50%);
        transition: transform 0.2s, border-radius 0.3s ease-in-out;
    }
    #navigation.active:before {
        transform: translateX(-50%) scale(1.03);
    }
    #navigation.active .toggle {
        transform: rotate(180deg);
    }
    #navigation.active .ul-wrapper {
        opacity: 0.98;
        transform: scaleY(1);
        transition-delay: 0.15s;
    }
    #navigation.active .li {
        opacity: 1;
        transform: translateY(0);
    }
    #navigation .container {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1.5rem;
        flex-direction: row;
    }
    #navigation .logo {
        height: 100%;
        margin: 0 auto 0 0;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        z-index: 10;
    }
    .logo img {
        width: 210px;
        height: 100%;
        /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
        object-fit: contain;
    }
    #navigation .toggle {
        width: 3.5rem;
        height: 3.5rem;
        margin: 0 0 0 auto;
        background-color: var(--primary);
        border: none;
        border-radius: 0.25rem;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
        transition: transform 0.6s;
    }
    #navigation .nav {
        /* sends it to the right in the 3rd position */
        order: 3;
    }
    #navigation .contact-group {
        display: none;
        position: relative;
        z-index: 10;
    }
    #navigation .phone {
        font-size: 1rem;
        font-weight: bold;
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: var(--headerColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        transition: opacity 0.3s, color 0.3s;
    }
    #navigation .phone-icon {
        width: 1.5rem;
        height: auto;
        display: block;
    }
    #navigation .social {
        display: none;
    }
    #navigation .active .line1 {
        top: 50%;
        transform: translate(-50%, -50%) rotate(225deg);
    }
    #navigation .active .line2 {
        top: 50%;
        transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
        transform-origin: center;
    }
    #navigation .active .line3 {
        opacity: 0;
        bottom: 100%;
    }
    #navigation .box {
        /* 24px - 28px */
        width: clamp(1.5rem, 2vw, 1.75rem);
        height: 1rem;
        position: relative;
    }
    #navigation .line {
        width: 100%;
        height: 2px;
        background-color: #fafbfc;
        border-radius: 2px;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #navigation .line1 {
        top: 0;
        transition: transform 0.5s, top 0.3s, left 0.3s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-direction: normal;
        animation-fill-mode: forwards;
        transform-origin: center;
    }
    #navigation .line2 {
        top: 50%;
        transform: translateX(-50%) translateY(-50%);
        transition: top 0.3s, left 0.3s, transform 0.5s;
        animation-duration: 0.7s;
        animation-timing-function: ease;
        animation-direction: normal;
        animation-fill-mode: forwards;
    }
    #navigation .line3 {
        bottom: 0;
        transition: bottom 0.3s, opacity 0.3s;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 768px) {
    #navigation .contact-group {
        display: block;
    }
}
/*-- -------------------------- -->
<---   Mobile Navigation Menu   -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (max-width: 1023px) {
    #navigation .ul-wrapper {
        width: 100%;
        height: 100vh;
        padding-bottom: 3rem;
        opacity: 0;
        overflow: hidden;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: -1;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s, opacity 0.3s;
        background-color: var(--bodyBackgroundColor);
    }
    #navigation .ul {
        margin: 0;
        background-color: var(--darkSurfaceSoft);
        padding: 2rem 0 6rem;
        width: 100%;
        height: calc(100vh - 7rem);
        max-height: none;
        overflow-y: auto;
        overflow-x: hidden;
        display: flex;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 1.25rem;
    }
    #navigation .ul::-webkit-scrollbar {
        display: none;
    }
    #navigation .li {
        list-style: none;
        margin-right: 0;
        /* transition from these values */
        transform: translateY(-4.375rem);
        opacity: 0;
        transition: transform 0.6s, opacity 0.9s;
    }
    #navigation .li:nth-of-type(1) {
        transition-delay: 0.05s;
    }
    #navigation .li:nth-of-type(2) {
        transition-delay: 0.1s;
    }
    #navigation .li:nth-of-type(3) {
        transition-delay: 0.15s;
    }
    #navigation .li:nth-of-type(4) {
        transition-delay: 0.2s;
    }
    #navigation .li:nth-of-type(5) {
        transition-delay: 0.25s;
    }
    #navigation .li:nth-of-type(6) {
        transition-delay: 0.3s;
    }
    #navigation .li:nth-of-type(7) {
        transition-delay: 0.35s;
    }
    #navigation .li:nth-of-type(8) {
        transition-delay: 0.4s;
    }
    #navigation .li:nth-of-type(9) {
        transition-delay: 0.45s;
    }
    #navigation .li-link {
        font-size: 1.5rem;
        font-weight: bold;
        line-height: 1.2em;
        text-decoration: none;
        margin: 0;
        color: var(--headerColor);
        display: inline-block;
        position: relative;
        padding: 0.25rem;
    }
    #navigation .li-link:before {
        /* active state underline */
        content: "";
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: none;
        bottom: -0.125rem;
        left: 0;
    }
    #navigation .li-link.active:before {
        display: block;
    }
    #navigation.active .ul > .li {
        opacity: 1;
        transform: translateY(0);
    }
    #navigation .button-solid {
        display: none;
    }

    #navigation .theme-toggle {
        display: none;
    }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 1023px) {
    #navigation .li {
        text-align: center;
        width: 100%;
        display: block;
    }
    #navigation .dropdown {
        position: static;
        color: var(--bodyTextColorWhite);
    }
    #navigation .dropdown .li-link {
        position: relative;
        transition: opacity 0.3s, transform 0.3s;
    }
    #navigation .drop-icon {
        position: absolute;
        top: 50%;
        right: -1.25rem;
        transform: translateY(-50%);
    }
    #navigation .ul {
        position: relative;
    }
    #navigation.submenu-open .ul > .li:not(.active-mobile-submenu) {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-0.75rem);
        visibility: hidden;
        height: 0;
        min-height: 0;
        margin: 0;
        overflow: hidden;
    }
    #navigation.submenu-open .ul {
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding-top: 0;
    }
    #navigation.submenu-open .ul > .li.active-mobile-submenu {
        width: 100%;
        height: 0;
        min-height: 0;
        padding: 0;
        margin: 0;
        transform: none;
        opacity: 1;
        overflow: visible;
    }
    #navigation.submenu-open .ul > .li.active-mobile-submenu > .dropdown-toggle {
        display: block;
        width: 0;
        height: 0;
        padding: 0;
        opacity: 0;
        overflow: hidden;
    }
    #navigation.submenu-open .ul > .li.active-mobile-submenu > .dropdown-toggle::before {
        display: none;
    }
    #navigation .drop-ul {
        position: fixed;
        top: 6.5rem;
        left: 3%;
        right: 3%;
        bottom: 1rem;
        width: auto;
        height: 100vh;
        max-height: none;
        margin: 0;
        padding: 2.25rem 0 1rem;
        background-color: var(--primary);
        border-radius: 1.25rem;
        overflow-y: auto;
        overflow-x: hidden;
        opacity: 0;
        visibility: hidden;
        display: flex;
        justify-content: flex-start;
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        pointer-events: none;
        transform: translateX(100%);
        transition: transform 0.35s ease, opacity 0.2s ease;
        z-index: 10001;
    }
    #navigation .dropdown.active-mobile-submenu > .drop-ul {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }
    #navigation .drop-li {
        width: 100%;
        list-style: none;
    }
    #navigation .li-link.drop-link {
        width: 100%;
        max-width: none;
        padding: 0.875rem 1.5rem;
        text-align: left;
    }
    #navigation .submenu-back .li-link {
        background: transparent;
        border: none;
        font-size: 1rem;
        font-weight: 700;
        color: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.75rem;
    }
    #navigation .submenu-back .li-link::before {
        content: "";
        width: 0.85rem;
        height: 0.85rem;
        border-left: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
        flex: 0 0 auto;
    }
    #navigation .li-link.drop-link {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 2vw, 1.25rem);
        color: #fff;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 1024px) {
    #navigation li.submenu-back {
        display: none;
    }
    #navigation .dropdown:hover,
    #navigation .dropdown.active {
        cursor: pointer;
    }
    #navigation .dropdown::after {
        content: "";
        position: absolute;
        left: 0;
        top: 100%;
        width: 100%;
        height: 0.875rem;
    }
    #navigation .dropdown:hover .drop-ul,
    #navigation .dropdown.active .drop-ul {
        transform: scaleY(1);
        opacity: 1;
        visibility: visible;
    }
    #navigation .dropdown:hover .drop-li,
    #navigation .dropdown.active .drop-li {
        opacity: 1;
        transform: translateY(0);
    }
    #navigation .drop-icon {
        display: inline-block;
    }
    #navigation .drop-ul {
        min-width: 12.5rem;
        margin: 0;
        padding: 0;
        background-color: #fff;
        border-radius: 0 0 1.5rem 1.5rem;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        border-bottom: 3px solid var(--primary);
        /* if you have 8 or more links in your dropdown nav, uncomment the columns property to make the list into 2 even columns. Change it to 3 or 4 if you need extra columns. Then remove the transition delays on the drop-li so they don't have weird scattered animations */
        position: absolute;
        top: calc(100% - 2px);
        z-index: 100;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    }
    #navigation .drop-li {
        font-size: 1rem;
        text-decoration: none;
        opacity: 0;
        width: 100%;
        height: auto;
        display: block;
        transform: translateY(-0.625rem);
        transition: opacity 0.6s, transform 0.6s;
    }
    #navigation .drop-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }
    #navigation .drop-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }
    #navigation .drop-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }
    #navigation .drop-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }
    #navigation .drop-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }
    #navigation .drop-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }
    #navigation .drop-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }
    #navigation .drop-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }
    #navigation .drop-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }
    #navigation .li-link.drop-link {
        text-transform: capitalize;
        white-space: nowrap;
        width: 100%;
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        padding: 0.75rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        color: var(--headerColor);
        display: block;
        transition: color 0.3s, background-color 0.3s;
    }
    #navigation .li-link.drop-link:hover {
        background-color: var(--primary);
        color: var(--bodyTextColorWhite);
    }
    #navigation .li-link.drop-link:before {
        display: none;
    }
    #navigation .li-link.drop-link:focus-visible {
        outline-offset: -2px;
    }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 1024px) {
    body.scroll #navigation {
        width: 100%;
        max-width: 100%;
        border-radius: 0;
        top: 0;
    }
    #navigation {
        width: 94%;
        max-width: 123rem;
        height: 6rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        /* 12px - 24px */
        padding: clamp(0.75rem, 2vw, 1.5rem) 0;
        background-color: #fff;
        box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
        /* 12px - 24px */
        border-radius: clamp(0.75rem, 2vw, 1.5rem);
        display: flex;
        align-items: center;
        position: fixed;
        top: 2rem;
        left: 50%;
        z-index: 10000;
        transform: translateX(-50%);
        transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
    }
    #navigation .container {
        width: 100%;
        margin: auto;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        padding: 0 1.5rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    #navigation .toggle {
        display: none;
    }

    .logo {
        /* margin-right auto pushes everything away from it to the right */
        margin: 0 auto 0 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        z-index: 100;
        font-weight: bold;
        text-decoration: none;
    }

    .logo img {
        width: 250px;
        height: 100%;
        /* ensures the image never overflows the container. It stays contained within it's width and height and expands to fill it then stops once it reaches an edge */
        object-fit: contain;
    }
    #navigation .contact-group {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
    }
    .social {
        height: 2rem;
        opacity: 1;
        display: none;
        visibility: visible;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    }
    .social-link {
        text-decoration: none;
        width: 2rem;
        height: 2rem;
        background-color: #f7f7f7;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background-color 0.3s;
    }
    .theme-toggle {
        color: var(--bodyTextColor);
        width: 2rem;
        height: 2rem;
        padding: 0;
        background-color: #f7f7f7;
        border: none;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        cursor: pointer;
        transition: background-color 0.3s, color 0.3s;
    }
    .social-link:hover {
        background-color: var(--primary);
    }
    .theme-toggle:hover {
        background-color: var(--primary);
        color: #fff;
    }
    .social-link:hover .social-icon {
        filter: grayscale(1) brightness(10000%);
        opacity: 1;
    }
    .social-icon {
        width: 0.75rem;
        height: auto;
        opacity: 0.6;
        display: block;
        transition: opacity 0.3s;
    }
    .theme-toggle-icon {
        width: 0.9rem;
        height: 0.9rem;
        display: block;
    }
    .theme-toggle .icon-sun {
        display: none;
    }
    body.dark-mode .theme-toggle .icon-moon {
        display: none;
    }
    body.dark-mode .theme-toggle .icon-sun {
        display: block;
    }
    #navigation .ul-wrapper {
        height: 100%;
        display: flex;
        align-items: center;
        /* absolutely positioned to be dead center */
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    #navigation .ul {
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* 20px - 36px */
        gap: clamp(1.25rem, 2.6vw, 2.25rem);
    }
    #navigation .li {
        list-style: none;
        height: 100%;
        padding: 0;
        display: flex;
        align-items: center;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #navigation .li-link {
        font-size: 1rem;
        font-weight: bold;
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: var(--headerColor);
        display: block;
        position: relative;
        transition: color 0.3s;
    }
    #navigation .li-link:hover {
        color: var(--primary);
    }
    #navigation .li-link.active {
        color: var(--primary);
    }
    #navigation .theme-toggle {
        display: flex;
    }
}
/* Large Desktop - 1300px */
@media only screen and (min-width: 1300px) {
    .social {
        display: flex;
    }
    #navigation .container {
        flex-direction: row;
    }
}

/*-- -------------------------- -->
<---            Hero            -->
<--- -------------------------- -*/
#hero {
    text-align: center;
    padding: clamp(7.25rem, 16.82vw, 10.25rem) 1rem clamp(3.75rem, 7.82vw, 6.25rem);
    position: relative;
    z-index: 1;
}
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero .container {
        gap: 3rem;
    }

    #hero .content {
        justify-content: center;
        align-items: center;
    }

    #hero .topper {
        font-size: 1rem;
    }
    #hero .title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 5vw, 3.8125rem);
    }
    #hero .text {
        /* 16px - 20px */
        font-size: clamp(1rem, 1.5vw, 1.25rem);
        line-height: 1.5em;
        text-align: center;
        width: 100%;
        max-width: 33.1875rem;
        /* 28px - 40px */
        margin: 0 0 clamp(1.75rem, 3.92vw, 2.5rem) 0;
        color: var(--bodyTextColor);
    }

    #hero .picture {
        width: 100%;
        max-width: 50rem;
        /* 400px - 712px */
        height: clamp(25rem, 95vw, 44.5rem);
        /* 100px - 200px */
        border-radius: 0 clamp(6.25rem, 17vw, 12.5rem) 0 clamp(6.25rem, 17vw, 12.5rem);
        box-shadow: 0 4px 60px rgba(0, 0, 0, 0.16);
        /* clips the img tag corners */
        overflow: hidden;
        display: block;
        position: relative;
    }
    #hero .picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes image act as a background image */
        object-fit: cover;
        /* ensures the top of the images is at the top of the container, no heads getting cut off */
        object-position: top;
    }
}


/* Mobile - 360px */
@media only screen and (min-width: 0rem) {

}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero {
        text-align: left;
    }
    #hero .container {
        flex-direction: row;
        justify-content: space-between;
    }
    #hero .content {
        width: 40vw;
        /* prevents flex-box from squishing it */
        flex: none;
        align-items: flex-start;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #hero .title,
    #hero .text {
        text-align: left;
    }
    #hero .picture {
        /* 623px - 814px */
        height: clamp(38.9375rem, 60vw, 50.875rem);
    }
    #hero .wave {
        width: 100%;
        height: clamp(4rem, 7vw, 7rem);
        left: 0;
        /* flips it horizontally */
        transform: scaleX(-1);
    }
}

/*-- -------------------------- -->
<---          Services          -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<---    Centered Content        -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {
    .content-section--centered-content {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 10;
    }

    .content-section--centered-content .container {
        width: 100%;
        max-width: 50rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(1.5rem, 4vw, 2.5rem);
        position: relative;
    }

    .content-section--centered-content .content {
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .content-section--centered-content .title {
        max-width: 24ch;
        margin: 0;
    }

    .content-section--centered-content .text {
        max-width: 44rem;
    }
}

/* Always */
@media only screen and (min-width: 0rem) {
    #services {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 10;
    }
    #services .container {
        gap: clamp(3rem, 6vw, 4rem);
    }
    #services .content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #services .title {
        max-width: 25ch;
        margin: 0;
    }
    #services .card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        /* 16px - 20px */
        gap: clamp(1rem, 2vw, 1.25rem);
    }
    #services .item {
        text-align: center;
        list-style: none;
        width: 100%;
        height: 19.0625rem;
        margin: 0;
        padding: 0;
        background-color: #000;
        border-radius: 1.5rem;
        /* clips background image corners */
        overflow: hidden;
        box-shadow: 0 12px 80px 0 rgba(26, 26, 26, 0.08);
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        grid-column: span 12;
        grid-row: span 1;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-end;
        position: relative;
        z-index: 1;
    }
    #services .item:hover .background:before {
        background-color: var(--primary);
        opacity: 0.84;
    }
    #services .item:hover .background img {
        transform: scale(1.2);
    }
    #services .link {
        text-decoration: none;
        width: 100%;
        height: 100%;
        /* padding goes on the link, not the item as is normal. We do this because we want the whole card to be hoverable. So we add the padding to the link tag to create the space inside the card. By adding the space inside the link tag we can make the whole card hoverable since the padding is now contributing to the height and width of the link */
        padding: 1.5rem;
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #services .h3 {
        font-size: 1.5625rem;
        line-height: 1.2em;
        font-weight: bold;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColorWhite);
        transition: color 0.3s;
    }
    #services .span {
        /* forces the h3 to always be two lines */
        display: block;
    }
    #services .background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #services .background:before {
        /* background color overlay */
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 100%;
        opacity: 0.4;
        top: 0;
        left: 0;
        z-index: 1;
        transition:
            background-color 0.3s,
            opacity 0.3s;
    }
    #services .background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* Makes img tag act as a background image */
        object-fit: cover;
        transition: transform 0.6s;
    }
}

/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
    #services .item {
        grid-column: span 6;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services .item {
        grid-column: span 3;
    }
}

/*-- -------------------------- -->
<---         Donations          -->
<--- -------------------------- -*/

/* Always */
@media only screen and (min-width: 0rem) {
    #donations {
        padding: var(--sectionPadding);
        overflow: hidden;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        position: relative;
        z-index: 1;
    }
    #donations .container {
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        z-index: 10;
    }

    #donations .text {
        margin-bottom: 1rem;
        color: var(--bodyTextColor);
        opacity: .8;
    }
    #donations .text:last-of-type {
        margin-bottom: 2rem;
    }

    #donations .card-group {
        width: 100%;
        /* changes to 630px at large desktop */
        max-width: 59rem;
        padding: 0;
        margin: 0;
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.25rem;
    }
    #donations .item {
        text-align: left;
        list-style: none;
        border-radius: 1rem;
        overflow: hidden;
        background-color: #fff;
        box-shadow: 0 4px 120px 0 rgba(0, 0, 0, 0.12);
        grid-column: span 12;
        position: relative;
        z-index: 1;
        transition: box-shadow 0.3s, transform 0.3s;
    }
    #donations .item:hover {
        box-shadow: rgba(149, 157, 165, 0.2) 0 8px 24px;
    }
    #donations .item:hover .picture img {
        opacity: .3;
        transform: scale(1.1);
    }
    #donations .item:hover .h3 {
        color: var(--primary);
    }
    #donations .link {
        text-decoration: none;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }
    #donations .picture {
        width: 100%;
        height: 15rem;
        background-color: var(--primary);
        overflow: hidden;
        display: block;
        position: relative;
        z-index: 1;
    }
    #donations .picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
        transition: transform .6s, opacity .3s;
    }
    #donations .flex {
        padding: 1.5rem;
        /* pr-blog padding from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        z-index: 2;
    }
    #donations .h3 {
        font-size: 1.25rem;
        text-align: inherit;
        line-height: 1.2em;
        font-weight: 700;
        color: var(--headerColor);
        margin: 0 0 0.75rem 0;
        transition: color .3s;
    }
    #donations .item-text {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        text-align: inherit;
        margin: 0 0 1.5rem;
        padding: 0 0 1.5rem;
        color: var(--bodyTextColor);
        border-bottom: 1px solid #E8E8E8;
    }
    #donations .donations-flex {
        width: 100%;
        margin: 0 0 0.5rem;
    }
    #donations .bar {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        /* 4px - 8px */
        gap: clamp(0.25rem, 1vw, 0.5rem);
    }
    #donations .progress {
        width: 100%;
        height: 6px;
        border-radius: 0.5rem;
        overflow: hidden;
        background-color: #E8E8E8;
    }
    #donations .progress-bar {
        width: var(--progress);
        height: 100%;
        background-color: var(--secondary);
        border-radius: 0.5rem;
        display: block;
    }
    #donations .percentage {
        font-size: 0.875rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: block;
    }
    #donations .number-group {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    #donations .raised {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        gap: 0.25rem;
    }
    #donations .number {
        font-size: 0.875rem;
        line-height: 1.2em;
        margin: 0;
        color: var(--bodyTextColor);
        display: block;
    }
    #donations .stats-container {
        width: 100%;
        /* changes to 1280px at large desktop */
        max-width: 59rem;
        position: relative;
        z-index: 1;
    }
    #donations .stats-group {
        width: 100%;
        max-width: 59rem;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
        /* 16px - 20px */
        gap: clamp(1rem, 4vw, 4rem);
    }
    #donations .stat {
        list-style: none;
        width: 100%;
        max-width: 25rem;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 16px - 20xp */
        gap: clamp(1rem, 2vw, 1.25rem);
        grid-column: span 6;
    }
    #donations .info {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    #donations .icon-wrapper {
        /* 60px - 88px */
        width: clamp(3.75rem, 7vw, 5.5rem);
        height: clamp(3.75rem, 7vw, 5.5rem);
        border-radius: 50%;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        position: relative;
        z-index: 1;
    }
    #donations .icon-wrapper:before {
        /* background color */
        content: '';
        width: 100%;
        height: 100%;
        opacity: .1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
    }
    #donations .icon {
        /* 32px - 48px */
        width: clamp(2rem, 4vw, 3rem);
        height: auto;
        display: block;
    }
    #donations .stat-number {
        /* 25px - 39px */
        font-size: clamp(1.5625rem, 3vw, 2.4375rem);
        text-align: inherit;
        line-height: 1.2em;
        font-weight: 900;
        margin: 0;
        color: var(--headerColor);
    }
    #donations .desc {
        /* 14px - 16px */
        font-size: clamp(0.875em, 3vw, 1rem);
        text-align: inherit;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #donations .background {
        width: 100%;
        /* 100% at large desktop */
        height: 70%;
        /* removed at large desktop */
        max-height: 40.625rem;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #donations .background:before {
        content: "";
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #donations .background img {
        width: 100%;
        height: 100%;
        opacity: .02;
        object-fit: cover;
        top: 0;
        left: 0;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #donations .item {
        grid-column: span 6;
    }
    #donations .stat {
        flex-direction: row;
        align-items: flex-start;
    }
    #donations .info {
        text-align: left;
        align-items: flex-start;
    }
}

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #footer {
        padding: var(--sectionPadding);
        /* Navigation Links */
    }
    #footer .container {
        width: 100%;
        /* reset on tablet */
        max-width: 34.375rem;
        flex-direction: row;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        column-gap: 5.5rem;
        row-gap: 2rem;
    }
    #footer .logo-group {
        /* takes up all the space, lets the other ul's wrap below it */
        width: 100%;
        position: relative;
    }
    #footer .logo-group {
        /* 44px - 52px */
        margin-bottom: clamp(2.75rem, 6.8vw, 3.25rem);
    }
    #footer .logo {
        /* 210px - 240px */
        width: clamp(13.125rem, 8vw, 15rem);
        height: auto;
        display: block;
    }
    #footer .logo-img {
        width: 100%;
        height: auto;
    }
    #footer .social {
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 0.75rem;
        position: absolute;
        top: 0;
        right: 0;
    }
    #footer .social-link {
        width: 1.5rem;
        height: 1.5rem;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 1;
        transition:
            transform 0.3s,
            background-color 0.3s;
    }
    #footer .social-link:hover {
        background-color: var(--primary);
        transform: translateY(-0.1875rem);
    }
    #footer .social-img {
        height: 0.8125rem;
        width: auto;
        display: block;
    }
    #footer .nav {
        padding: 0;
        margin: 0;
    }
    #footer .nav-li {
        list-style: none;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #footer .header {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 700;
        /* 16px - 20px */
        margin-bottom: clamp(1rem, 2.7vw, 1.25rem);
        color: var(--headerColor);
        position: relative;
        display: block;
    }
    .nav-link {
        font-size: 1rem;
        text-decoration: none;
        line-height: 1.5em;
        color: var(--accentBlue);
        position: relative;
    }
    .nav-link:before {
        /* underline */
        content: "";
        width: 0;
        height: 0.125rem;
        opacity: 1;
        position: absolute;
        background-color: var(--primary);
        display: block;
        bottom: -0.125rem;
        left: 0;
        transition: width 0.3s;
    }
    .nav-link:hover:before {
        width: 100%;
    }
    #footer .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 0.875rem;
    }
    #footer .footer-contact__item {
        display: grid;
        grid-template-columns: 2rem minmax(0, 1fr);
        align-items: flex-start;
        gap: 0.75rem;
    }
    #footer .footer-contact__icon {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background-color: var(--bodyBackgroundColor);
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-size: 0.875rem;
        flex: none;
    }
    #footer .footer-contact__svg {
        width: 1rem;
        height: 1rem;
        display: block;
        background-color: currentColor;
        mask: var(--footer-icon) center / contain no-repeat;
        -webkit-mask: var(--footer-icon) center / contain no-repeat;
    }
    #footer .footer-contact__line {
        display: block;
        font-size: 1rem;
        line-height: 1.5em;
        color: var(--bodyTextColor);
    }
    #footer .footer-contact__meta {
        font-size: 0.875rem;
        line-height: 1.5em;
        color: var(--bodyTextColor);
    }
    #footer .footer-hours {
        min-width: min(100%, 18rem);
    }
    #footer .footer-hours__row {
        display: grid;
        grid-template-columns: 7.5rem minmax(0, 1fr);
        gap: 0.75rem;
        align-items: baseline;
    }
    #footer .footer-hours__day,
    #footer .footer-hours__time {
        font-size: 1rem;
        line-height: 1.5em;
        color: var(--bodyTextColor);
    }
    #footer .footer-hours__day {
        font-weight: 700;
        color: var(--headerColor);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #footer .container {
        max-width: 80rem;
        row-gap: 0;
        /* 44px - 88px */
        column-gap: clamp(2.75rem, calc(6%), 5.5rem);
    }
    #footer .logo-group {
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
    }
    #footer .social {
        flex-direction: row;
        position: relative;
        top: auto;
        right: auto;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #footer .container {
        justify-content: flex-end;
    }
    #footer .logo-group {
        width: 45%;
        /* pushes the rest of the content to the right in a flexbox */
        margin: 0 auto 0 0;
        flex-direction: column;
    }
    #footer .logo-img {
        margin-bottom: 2.75rem;
    }
    #footer .nav {
        margin-top: 0.75rem;
    }
}

/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #side-by-side,
    #side-by-side-reversed {
        padding: var(--sectionPadding);
        overflow: hidden;
    }
    #side-by-side .container,
    #side-by-side-reversed .container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #side-by-side .content,
    #side-by-side-reversed .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #side-by-side .text,
    #side-by-side-reversed .text {
        margin-bottom: 1rem;
    }
    #side-by-side .text:last-of-type,
    #side-by-side-reversed .text:last-of-type {
        margin-bottom: 2rem;
    }
    #side-by-side .card-group,
    #side-by-side-reversed .card-group {
        width: 100%;
        max-width: 39.375rem;
        margin: 0 0 2rem 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        gap: 1.5rem;
    }
    #side-by-side .li,
    #side-by-side-reversed .li {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        /* 16px - 20px */
        gap: clamp(1rem, 2.5vw, 1.25rem);
    }
    #side-by-side .li-picture,
    #side-by-side-reversed .li-picture {
        width: 5rem;
        height: 5rem;
        margin: 0;
        border-radius: 50%;
        background-color: #fff;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
        /* prevents flexbox from squishing it */
        flex: none;
        position: relative;
        z-index: 1;
    }
    #side-by-side .li-picture:before,
    #side-by-side-reversed .li-picture:before {
        content: '';
        width: 100%;
        height: 100%;
        opacity: .1;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #side-by-side .li-icon,
    #side-by-side-reversed .li-icon {
        width: 2rem;
        height: auto;
        display: block;
    }
    #side-by-side .h3,
    #side-by-side-reversed .h3 {
        font-size: 1.25rem;
        line-height: 1.2em;
        font-weight: 700;
        text-align: left;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    #side-by-side .li-text,
    #side-by-side-reversed .li-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: left;
        margin: 0;
        color: var(--bodyTextColor);
    }
    #side-by-side .picture,
    #side-by-side-reversed .picture {
        width: 100%;
        max-width: 40.625rem;
        aspect-ratio: 65 / 60;
        min-height: 22.625rem;
        border-radius: 1.5rem;
        /* clips img tag corners */
        overflow: hidden;
        display: block;
        position: relative;
        z-index: 1;
    }
    #side-by-side .picture img,
    #side-by-side-reversed .picture img {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        object-fit: cover;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #side-by-side .container,
    #side-by-side-reversed .container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        position: relative;
    }
    #side-by-side .content,
    #side-by-side-reversed .content {
        width: 50%;
        padding: 2.5rem 0;
    }
    #side-by-side .picture,
    #side-by-side-reversed .picture {
        height: auto;
        width: 55%;
        min-height: 0;
    }
}

/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #side-by-side-reversed .picture {
        /* sends it to the right in the 2nd position */
        order: 2;
    }
}

/*-- -------------------------- -->
<---            FAQ             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq {
        padding: var(--sectionPadding);
    }
    #faq .container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 40px - 48px */
        gap: clamp(2.5rem, 5vw, 3rem);
    }
    #faq .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #faq .title {
        margin: 0 0 2rem 0;
    }
    #faq .faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #faq .faq-item {
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
        transition: border-bottom 0.3s;
    }
    #faq .faq-item.active {
        border-color: var(--primaryLight);
    }
    #faq .faq-item.active .button:before {
        background-color: var(--primaryLight);
        transform: rotate(315deg);
    }
    #faq .faq-item.active .button:after {
        background-color: var(--primaryLight);
        transform: rotate(-315deg);
    }
    #faq .faq-item.active .item-p {
        height: auto;
        /* 20px - 24px bottom */
        /* 16px - 24px left & right */
        padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 1.3vw, 1.5rem);
        opacity: 1;
    }
    #faq .button {
        font-size: 1rem;
        line-height: 1.2em;
        text-align: left;
        font-weight: bold;
        /* 16px - 20px */
        padding: clamp(1rem, 1.3vw, 1.25rem);
        border: none;
        background: transparent;
        color: var(--headerColor);
        display: block;
        width: 100%;
        position: relative;
        transition:
            background-color 0.3s,
            color 0.3s;
    }
    #faq .button:hover {
        cursor: pointer;
    }
    #faq .button:before {
        /* left line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--headerColor);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 45%;
        right: 1.5rem;
        transform: rotate(45deg);
        /* animate the transform from the left side of the x axis, and the center of the y */
        transform-origin: left center;
        transition: transform 0.5s;
    }
    #faq .button:after {
        /* right line */
        content: "";
        width: 0.5rem;
        height: 0.125rem;
        background-color: var(--headerColor);
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 45%;
        right: 1.3125rem;
        transform: rotate(-45deg);
        /* animate the transform from the right side of the x axis, and the center of the y */
        transform-origin: right center;
        transition: transform 0.5s;
    }
    #faq .button-text {
        width: 80%;
        display: block;
    }
    #faq .item-p {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        width: 90%;
        height: 0;
        margin: 0;
        /* 16px - 24px */
        padding: 0 clamp(1rem, 2vw, 1.5rem);
        opacity: 0;
        color: var(--bodyTextColor);
        /* clips the text so it doesn't show up */
        overflow: hidden;
        transition:
            opacity 0.3s,
            padding-bottom 0.3s;
    }
    #faq .left {
        /* scaling entire section down. font-size starts at a min in vw, and stops
               when that value reaches 1em (16px). Since we want the picture elements to base their
               font size on the parent and not the root, we use ems for this entire section  */
        font-size: min(2.08vw, 0.791em);
        width: 42.875em;
        height: 42em;
        position: relative;
        /* flips it horizontally */
        transform: scaleX(-1);
    }
    @keyframes floatAnimation {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2em);
        }
        100% {
            transform: translateY(0);
        }
    }
    @keyframes floatAnimation2 {
        0% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-1em);
        }
        100% {
            transform: translateY(0);
        }
    }
    #faq .left:before {
        /* blue circle */
        content: "";
        width: 7.5em;
        height: 7.5em;
        border-radius: 50%;
        background: var(--secondary);
        opacity: 1;
        position: absolute;
        display: block;
        bottom: 6.25em;
        left: 0;
        z-index: 10;
        animation-name: floatAnimation;
        animation-duration: 6s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #faq .picture {
        border-radius: 50%;
        border: clamp(6px, 1.2vw, 12px) solid #ffffff;
        /* clips the img tag corners */
        overflow: hidden;
        position: absolute;
        display: block;
    }
    #faq .picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
    #faq .picture1 {
        width: 42em;
        height: 42em;
        top: -0.75em;
        left: -0.75em;
    }
    #faq .picture2 {
        width: 12.5em;
        height: 12.5em;
        top: -0.75em;
        left: -0.75em;
        animation-name: floatAnimation2;
        animation-duration: 20s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
    #faq .picture3 {
        width: 18.75em;
        height: 18.75em;
        bottom: -0.75em;
        right: -0.75em;
        animation-name: floatAnimation;
        animation-duration: 13s;
        animation-delay: 1s;
        animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        animation-iteration-count: infinite;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #faq .container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 3.25rem;
    }
    #faq .left {
        /* reset the scale */
        font-size: min(1vw, 1em);
        /* prevents flexbox from squishing it */
        flex: none;
        /* sends it to the right in the 2nd position */
        order: 2;
    }
    #faq .title,
    #faq .topper {
        text-align: left;
        width: 80%;
        margin-left: 0;
    }
}

/*-- -------------------------- -->
<---            Blog            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #blog {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
        overflow: hidden;
    }
    #blog:before {
        /* background color */
        content: '';
        width: 100%;
        height: 100%;
        opacity: .05;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: -1;
    }
    #blog .container {
        width: 100%;
        /* changes to 1280px at large desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #blog .content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
    #blog .title {
        /* max width of 18 characters, includes spaces between words */
        max-width: 23ch;
    }
    #blog .card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        justify-items: center;
        grid-template-columns: repeat(12, 1fr);
        gap: 1.25rem;
    }
    #blog .item {
        text-align: left;
        list-style: none;
        /* 16px - 24px */
        padding: clamp(1rem, 3vw, 1.5rem);
        box-sizing: border-box;
        background-color: #fff;
        border: 1px solid #e8e8e8;
        border-radius: 2.5rem;
        grid-column: span 12;
        position: relative;
        z-index: 1;
        overflow: hidden;
        transition: border-color 0.3s;
    }
    #blog .item:hover {
        border-color: var(--primary);
    }
    #blog .link {
        text-decoration: none;
        font-weight: 400;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
        z-index: 1;
    }
    #blog .picture-group {
        width: 100%;
        margin-bottom: 1.5rem;
        position: relative;
    }
    #blog .picture {
        width: 100%;
        /* 200px - 340px, resets to 200px at desktop */
        height: clamp(12.5rem, 45vw, 21.25rem);
        background-color: #1a1a1a;
        display: block;
        position: relative;
        z-index: 1;
        overflow: hidden;
        /* prevents flexbox from squishing it */
        flex: none;
    }
    #blog .picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        transition: transform 0.6s, opacity 0.3s;
    }
    #blog .mask {
        --maskBG: #fff;
        --maskBorder: #e8e8e8;
        width: 101%;
        height: 101%;
        position: absolute;
        top: -1px;
        right: -1px;
        bottom: -1px;
        left: -1px;
        z-index: 1;
    }
    #blog .flex {
        margin: 0 0 1.5rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1.5rem;
    }
    #blog .tag {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.2em;
        text-align: center;
        width: fit-content;
        margin-right: 0;
        padding: 0.5rem 1rem;
        color: var(--primary);
        border-radius: 6.25rem;
        display: block;
        position: relative;
        overflow: hidden;
    }
    #blog .tag::before {
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.1;
        position: absolute;
        top: 0;
        left: 0;
    }
    #blog .date {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.5rem;
    }
    #blog .item-text {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        margin: 0;
        color: var(--bodyTextColor);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
    #blog .h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        margin: 0 0 0.5rem 0;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #blog .bottom {
        margin: 1.5rem 0 0 0;
        padding: 1.5rem 0 0 0;
        border-top: 1px solid #E8E8E8;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 0.75rem;
    }
    #blog .author-group {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
    }
    #blog .profile {
        width: 3.125rem;
        height: 3.125rem;
        border: 2px solid #BABABA;
        background-color: #BABABA;
        border-radius: 50%;
        /* clips image corners to make circle */
        overflow: hidden;
        position: relative;
        display: block;
    }
    #blog .profile img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        /* makes the image behave like a background image */
        object-fit: cover;
    }
    #blog .name {
        font-size: 1rem;
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: block;
    }
    #blog .job {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 700;
        margin: 0;
        color: var(--secondary);
        display: block;
    }
    #blog .wrapper {
        width: 3rem;
        height: 3rem;
        border: 1px solid #bababa;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #blog .container {
        max-width: 80rem;
    }
    #blog .picture {
        height: 12.5rem;
    }
    #blog .item {
        grid-column: span 4;
    }
}

/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #content-page {
        padding: var(--sectionPadding);
        background-color: #fff;
        /* clips the wave background from causing overflow issues when it goes off screen */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #content-page .container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
    }
    #content-page .content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 46.125rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #content-page .title {
        font-size: var(--headerFontSize);
        font-weight: 900;
        line-height: 1.2em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }
    #content-page h2,
    #content-page h3,
    #content-page h4,
    #content-page h5,
    #content-page h6 {
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }
    #content-page h2 {
        font-size: 2rem;
        margin-top: 2rem;
    }
    #content-page h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page h4,
    #content-page h5,
    #content-page h6 {
        font-size: 1.25rem;
    }
    #content-page .button-solid {
        margin-bottom: 2rem;
    }
    #content-page .no-margin {
        margin: 0;
    }
    #content-page .color {
        color: var(--primary);
    }
    #content-page p {
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }
    #content-page p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page p a {
        font-size: inherit;
        line-height: inherit;
        text-decoration: underline;
        color: var(--primary);
    }
    #content-page ol,
    #content-page ul {
        padding-left: 1.5rem;
        margin: 0 0 2rem 0;
        color: var(--bodyTextColor);
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }
    #content-page ul li {
        list-style: none;
        color: inherit;
        position: relative;
    }
    #content-page ul li:before {
        /* custom list bullet */
        content: "";
        width: 3px;
        height: 3px;
        background: currentColor;
        opacity: 1;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 0.625rem;
        left: -0.75rem;
    }
    #content-page img {
        width: 100%;
        height: auto;
        display: block;
    }
    #content-page .image-group {
        width: 50%;
        max-width: 27.0625rem;
        display: none;
        flex-direction: column;
        gap: 1.25rem;
        position: relative;
    }
    #content-page .image-group:after {
        /* colored box */
        content: "";
        width: 100%;
        /* 177px - 258px */
        height: clamp(11.0625rem, 19vw, 16.125rem);
        background: var(--primary);
        border-radius: 6.25rem 0 6.25rem;
        opacity: 0.15;
        display: block;
    }
    #content-page .picture {
        width: 100%;
        /* 300px - 520px */
        height: clamp(18.75rem, 40vw, 32.5rem);
        box-shadow: 0 3px 50px rgba(0, 0, 0, 0.16);
        /* 125px - 200px */
        border-radius: 0 clamp(7.8125rem, 15vw, 12.5rem) 0
        clamp(7.8125rem, 15vw, 12.5rem);
        /* prevents border from affecting height and width */
        box-sizing: border-box;
        /* clips img tag corners */
        overflow: hidden;
        display: block;
        position: relative;
    }
    #content-page .picture img {
        width: 100%;
        height: 100%;
        /* makes it act like a background image */
        object-fit: cover;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page .container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }
    #content-page .content {
        flex: none;
        width: 60%;
        /* sens it to the right in the 2nd position */
        order: 2;
    }
    #content-page .image-group {
        display: flex;
    }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-form {
        padding: var(--sectionPadding);
        background-color: #fafbfc;
        position: relative;
        z-index: 1;
    }

    #contact-form .left {
        max-width: 39.375rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 3rem;
    }
    #contact-form .content {
        /* set text aling to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #contact-form .form {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        align-items: center;
        gap: 1rem;
    }
    #contact-form .form-alert {
        width: 100%;
        padding: 1rem 1.25rem;
        border-radius: 0.75rem;
        background-color: #eef9f1;
        border: 1px solid #b7e3c1;
        color: #174c24;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    #contact-form .form-alert--error {
        background-color: #fff1f1;
        border-color: #f0b8b8;
        color: #7f1d1d;
    }
    #contact-form .label {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        width: 100%;
        color: var(--headerColor);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.25rem;
    }
    #contact-form .field-error {
        font-size: 0.875rem;
        line-height: 1.4em;
        color: #b42318;
    }
    #contact-form .input {
        font-size: 1rem;
        width: 100%;
        height: 2.5rem;
        padding: 0 0 0 1.5rem;
        color: var(--headerColor);
        background-color: #fff;
        border: 1px solid #e0e0e0;
        /* prevents padding from adding to height and width */
        box-sizing: border-box;
        transition: border-color 0.3s;
    }
    #contact-form .input:hover {
        border-color: var(--secondary);
    }
    #contact-form .input:focus {
        outline: 1px solid var(--secondary);
    }
    #contact-form .input::placeholder {
        color: #7d799c;
        opacity: 0.6;
        font-size: 0.875rem;
    }
    #contact-form .textarea {
        /* 120px - 140px */
        min-height: clamp(7.5rem, 28vw, 8.75rem);
        padding-top: 1.5rem;
        margin-bottom: 0.75rem;
        font-family: inherit;
    }

    #contact-form .right {
        width: 100%;
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: 3rem;
    }
    #contact-form .flex {
        /* resets to 100% at desktop */
        width: 49%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    #contact-form .contact-detail {
        display: grid;
        grid-template-columns: 2rem minmax(0, 1fr);
        align-items: flex-start;
        gap: 0.75rem;
    }
    #contact-form .contact-detail__icon {
        width: 2rem;
        height: 2rem;
        border-radius: 50%;
        background-color: var(--bodyBackgroundColor);
        color: var(--primary);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: none;
    }
    #contact-form .contact-detail__svg {
        width: 1rem;
        height: 1rem;
        display: block;
        background-color: currentColor;
        mask: var(--contact-icon) center / contain no-repeat;
        -webkit-mask: var(--contact-icon) center / contain no-repeat;
    }
    #contact-form .header {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 5vw, 1.5625rem);
        line-height: 1.2em;
        font-weight: 700;
        margin: 0;
        color: var(--headerColor);
        display: block;
    }
    #contact-form .link {
        /* 14px - 16px */
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        display: block;
    }

    #contact-form .social {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* 24px - 30px */
        gap: clamp(1.5rem, 3vw, 1.875rem);
    }
    #contact-form .li {
        list-style: none;
        margin: 0;
        padding: 0;
    }
    #contact-form .social-link {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 2.5rem;
        height: 2.5rem;
        border: 1px solid var(--secondary);
        border-radius: 50%;
        transition:
            background-color 0.3s,
            transform 0.3s;
    }
    #contact-form .social-link:hover {
        background-color: var(--secondary);
        transform: translateY(-0.25rem);
    }
    #contact-form .social-link:hover .icon {
        /* turn icon white */
        filter: grayscale(1) brightness(1000%);
    }
    #contact-form .icon {
        width: auto;
        height: 0.9375rem;
    }
}
/* Tablet - 650px */
@media only screen and (min-width: 40.625rem) {
    #contact-form .label {
        width: 48.4%;
    }
    #contact-form .message {
        width: 100%;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-form .container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    #contact-form .left {
        width: 60%;
    }
    #contact-form .submit {
        width: 15rem;
    }
    #contact-form .right {
        width: 19rem;
        flex-direction: column;
        /* prevent flexbox from squishing it */
        flex: none;
    }
    #contact-form .flex {
        width: 100%;
    }
    #contact-form .social {
        /* adds an extra 16px + 48px row gap on the parent to make 64px space between */
        margin-top: 1rem;
    }
}
