.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 999;

    .nav-container {
        width: 100%;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        align-items: center;
        padding: 10px 30px;
        background: var(--white);

        .left-nav {
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            gap: 50px;

            @media (max-width: 1100px) {
                gap: 20px;
            }

            .site-logo {
                .logo-image {
                    height: 70px;
                }
            }

            .nav-buttons {
                display: flex;
                flex-flow: row nowrap;
                align-items: center;
                gap: 25px;

                a {
                    text-decoration: none;
                    color: var(--dark-green);
                    font-size: 20px;
                    font-weight: var(--medium);

                    &:hover {
                        color: var(--green);
                    }
                }

                .bold-link {
                    font-weight: var(--bold);
                }
            }
        }

        .right-nav {
            .desk-only {
                display: flex;
                flex-flow: row nowrap;
                align-items: center;
                gap: 20px;

                a {
                    text-decoration: none;
                    color: var(--green);
                    font-size: 19px;
                    font-weight: var(--medium);

                    &:hover {
                        color: var(--dark-green);
                    }
                }

                .action-button-green {
                    padding: 10px 20px;
                    border-radius: 26px;
                }
            }

            #menu-icon {
                display: none;
                font-size: 30px;

                @media (max-width: 1023px) {
                    display: unset;
                }
            }
        }

        .desk-only {
            @media (max-width: 1023px) {
                display: none !important;
            }
        }
    }

    #mobile-nav {
        display: none;

        &.show-menu {
            display: flex;
            flex-direction: column;
            text-align: right;
            align-items: flex-end;
            background: var(--white);
            width: 100%;
            position: absolute;
            top: 88px;

            a {
                text-decoration: none;
                font-size: 20px;
                font-weight: var(--medium);
                color: var(--dark-green);
                padding: 10px 30px;
                width: 100%;
                /* border-bottom: 0.5px solid var(--grey); */
                position: relative;

                &:first-of-type {
                    box-shadow: inset 0 4px 5px -6px var(--dark-green);
                }

                &::after {
                    position: absolute;
                    content: '';
                    background: var(--grey);
                    height: 0.5px;
                    bottom: 0px;
                    right: 28px;
                    left: 28px;
                }

                &:last-of-type {
                    &::after {
                        display: none;
                    }
                }
            }

            .bold-link {
                font-weight: var(--bold);
            }

            .green-bg-link {
                background: var(--green);
                color: var(--white);
            }
        }
    }
}

.banner {
    background: var(--cream);

    .content {
        display: flex;
        flex-flow: row nowrap;
        gap: 50px;
        margin-top: 90px;

        @media (max-width: 1023px) {
            flex-direction: column;
        }

        @media (max-width: 639px) {
            gap: 25px;
        }

        .column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
            align-items: flex-start;
            gap: 15px;

            @media (max-width: 1023px) {
                width: 100%;
            }
        }

        .right {
            align-items: center;

            .banner-image {
                border-radius: 40px;
            }

            .link-container {
                display: flex;
                flex-flow: column nowrap;
                background: white;
                border: 0.25px solid var(--grey);
                border-radius: 40px;
                padding: 50px;
                width: 100%;

                h6 {
                    margin-bottom: 30px;
                }

                @media (max-width: 639px) {
                    padding: 30px;

                    h6 {
                        margin-bottom: 20px;
                    }
                }

                .anchor-link {
                    position: relative;
                    display: flex;
                    align-items: center;
                    color: var(--dark-green);
                    text-decoration: none;
                    padding: 12px 0;
                    font-size: 22px;
                    border-bottom: 0.5px solid var(--grey);
                    padding-right: 25px;

                    @media (max-width: 639px) {
                        font-size: 20px;
                    }

                    &:last-of-type {
                        border-bottom: none;
                    }

                    &::after {
                        content: "\f061";
                        color: var(--green);
                        font-size: 18px;
                        font-family: 'font awesome 6 free';
                        font-weight: 900;
                        position: absolute;
                        right: 2px;
                    }

                    &:hover {
                        color: var(--green);
                        font-weight: var(--bold);
                    }
                }
            }

            .reach-us {
                display: flex;
                flex-flow: column nowrap;
                background: white;
                border: 0.25px solid var(--grey);
                border-radius: 40px;
                padding: 50px;
                width: 100%;

                h6 {
                    margin-bottom: 30px;
                }

                @media (max-width: 639px) {
                    padding: 30px;

                    h6 {
                        margin-bottom: 20px;
                    }
                }

                .line {
                    display: flex;
                    gap: 10px;
                    flex-flow: row wrap;
                    justify-content: space-between;
                    align-items: start;
                    padding: 15px 0;
                    border-bottom: 0.5px solid var(--grey);

                    @media (max-width: 1120px) {
                        flex-direction: column;
                    }

                    @media (max-width: 1023px) {
                        flex-direction: row;
                    }

                    @media (max-width: 425px) {
                        flex-direction: column;
                    }

                    p {
                        color: var(--darker-grey);
                    }

                    .phone-number {
                        color: var(--dark-green);
                        font-size: 25px;
                        font-weight: var(--bold);
                        text-decoration: none;

                        @media (max-width: 639px) {
                            font-size: 20px;
                        }
                    }

                    .email {
                        color: var(--green);
                        font-weight: var(--medium);
                        text-decoration: none;
                        font-size: 20px;

                        @media (max-width: 639px) {
                            font-size: 16px;
                        }
                    }

                    .arrow-link {
                        position: relative;
                        color: var(--green);
                        font-weight: var(--medium);
                        text-decoration: none;
                        padding-right: 25px;

                        &::after {
                            content: "\f061";
                            color: var(--green);
                            font-size: 18px;
                            font-family: 'font awesome 6 free';
                            font-weight: 900;
                            position: absolute;
                            right: 2px;
                        }
                    }
                }

                .note {
                    color: var(--darker-grey);
                    font-size: 16px;
                    padding: 20px 0;

                    @media (max-width: 639px) {
                        font-size: 14px;
                    }
                }
            }
        }

        h3 {
            color: var(--green);
            font-weight: var(--medium);
            font-size: 30px;

            @media (max-width: 639px) {
                font-size: 23px;
            }
        }
    }
}

.text-row {
    .content {
        max-width: 1000px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 25px;
    }

    &.cta {
        .content {
            max-width: 950px;

            h2 {
                font-size: 50px;

                @media (max-width: 639px) {
                    font-size: 30px;
                }
            }

            h3 {
                font-weight: var(--medium);
            }
        }
    }
}

.bullets-text-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        align-items: flex-start;
        gap: 50px;

        @media (max-width: 1023px) {
            flex-direction: column;
        }

        @media (max-width: 639px) {
            gap: 25px;
        }

        .column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 25px;

            @media (max-width: 1023px) {
                width: 100%;
                gap: 15px;
            }

            .bullet-container {
                display: flex;
                flex-flow: column nowrap;
                border: 0.25px solid var(--grey);
                border-radius: 40px;
                padding: 50px;
                width: 100%;

                h5 {
                    margin-bottom: 30px;
                }

                @media (max-width: 639px) {
                    padding: 30px;

                    h5 {
                        margin-bottom: 20px;
                    }
                }

                .bullets {
                    li {
                        position: relative;
                        display: flex;
                        align-items: center;
                        color: var(--dark-green);
                        padding: 12px 0;
                        font-size: 20px;
                        line-height: 20px;
                        margin-left: 30px;

                        @media (max-width: 639px) {
                            font-size: 16px;
                        }

                        &::before {
                            position: absolute;
                            content: '';
                            background: var(--green);
                            width: 15px;
                            height: 15px;
                            border-radius: 50%;
                            left: -30px;
                            top: 15px;
                        }
                    }
                }
            }
        }

        &:has(.container) {
            padding-top: 0px;
        }

        .container {
            width: 100%;
            border-radius: 42px;
            padding: 45px;
            display: flex;
            flex-flow: row nowrap;
            align-items: center;
            gap: 50px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            @media (max-width: 639px) {
                gap: 25px;
                padding: 25px;
            }

            .left {
                width: 40%;

                @media (max-width: 1023px) {
                    width: 100%;
                }
            }

            .right {
                width: 60%;

                @media (max-width: 1023px) {
                    width: 100%;
                }
            }

            .bullet-container {
                border-radius: 14px;
                padding: 35px;

                @media (max-width: 639px) {
                    padding: 20px;
                }
            }
        }

        &.flip {
            @media (max-width: 1023px) {
                flex-direction: column-reverse;
            }
        }
    }
}

.three-column-row {
    .content {
        display: flex;
        flex-direction: column;
        gap: 30px;

        @media (max-width: 639px) {
            gap: 20px;
        }

        h2 {
            width: 50%;

            @media (max-width: 767px) {
                width: 100%;
            }
        }

        .columns {
            display: flex;
            flex-direction: row;
            gap: 25px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            .column {
                display: flex;
                flex-flow: column nowrap;
                gap: 20px;
                padding: 40px;
                border-radius: 35px;
                width: calc(33.33% - 12.5px);

                @media (max-width: 1023px) {
                    width: 100%;
                }

                .icon {
                    font-size: 45px;
                    background: var(--light-green);
                    color: var(--green);
                    border-radius: 50%;
                    width: fit-content;
                    line-height: 1;
                    padding: 17px 15px;
                }

                .link {
                    color: var(--green);
                    position: relative;
                    text-decoration: none;

                    &::after {
                        position: absolute;
                        content: "\f061";
                        color: var(--green);
                        font-size: 18px;
                        font-family: 'font awesome 6 free';
                        font-weight: 900;
                        margin-left: 8px;
                    }

                    &:hover {
                        text-decoration-color: var(--grey) !important;
                        text-decoration: underline;
                    }
                }
            }
        }

        .link {
            color: var(--green);
            position: relative;
            text-decoration: none;

            &::after {
                position: absolute;
                content: "\f061";
                color: var(--green);
                font-size: 18px;
                font-family: 'font awesome 6 free';
                font-weight: 900;
                margin-left: 8px;
            }

            &:hover {
                text-decoration-color: var(--grey) !important;
                text-decoration: underline;
            }
        }
    }
}

.quote-row {
    background: var(--green);

    .content {
        max-width: 1040px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 25px;
        padding: 100px 50px 50px 50px;

        &::before {
            content: "“";
            color: var(--light-green);
            opacity: 50%;
            font-size: 115px;
            font-family: var(--figtree);
            line-height: 0;
        }

        .long-quote {
            text-align: center;
            font-family: var(--figtree);
            font-weight: var(--regular);
            color: var(--cream);
            font-size: 25px;
            line-height: 1.15;

            @media (max-width: 639px) {
                font-size: 20px;
            }
        }

        .short-quote {
            text-align: center;
            font-family: var(--figtree);
            font-weight: var(--regular);
            color: var(--cream);
            font-size: 32px;
            line-height: 1.15;

            @media (max-width: 639px) {
                font-size: 23px;
            }
        }

        .author {
            color: var(--light-green);
        }
    }
}

.three-photos-row {
    .content {
        display: flex;
        flex-direction: column;
        gap: 30px;

        @media (max-width: 639px) {
            gap: 20px;
        }

        p {
            width: 75%;

            @media (max-width: 767px) {
                width: 100%;
            }
        }

        .columns {
            display: flex;
            flex-direction: row;
            gap: 25px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            .photo-container {
                display: flex;
                flex-flow: column nowrap;
                gap: 0px;
                background: var(--white);
                border-radius: 35px;
                width: calc(33.33% - 12.5px);

                @media (max-width: 1023px) {
                    width: 100%;
                }

                .photo {}

                .photo-text {
                    display: flex;
                    flex-flow: column nowrap;
                    gap: 25px;
                    padding: 30px 35px;

                    p {
                        width: 100%;
                    }
                }
            }
        }
    }
}

.photo-text-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        gap: 50px;

        @media (max-width: 1023px) {
            flex-direction: column;
        }

        @media (max-width: 639px) {
            gap: 25px;
        }

        .photo-column {
            display: flex;
            justify-content: center;
            align-content: center;
            width: 45%;

            @media (max-width: 1023px) {
                width: 100%;
            }

            img {
                object-fit: cover;
                border-radius: 40px;
            }
        }

        .text-column {
            width: 55%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 25px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                gap: 15px;
            }
        }
    }
}

.quote-text-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        gap: 50px;

        @media (max-width: 1023px) {
            flex-direction: column;
        }

        @media (max-width: 639px) {
            gap: 25px;
        }

        .quote-column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;

            @media (max-width: 1023px) {
                width: 100%;
            }

            .quote-container {
                display: flex;
                flex-flow: column nowrap;
                background: var(--white);
                border-left: 10px solid var(--green);
                border-radius: 31px;
                padding: 50px;
                gap: 30px;
                width: 100%;

                @media (max-width: 479px) {
                    padding: 30px;
                }

                .quote-content {
                    color: var(--dark-green);
                    font-weight: var(--medium);
                    font-size: 25px;
                    line-height: 1.25;

                    @media (max-width: 639px) {
                        font-size: 20px;
                    }
                }

                .author {
                    display: flex;
                    flex-direction: column;
                    gap: 5px;

                    .name {
                        color: var(--green);
                        font-weight: var(--bold);
                    }
                }
            }
        }

        .text-column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 25px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                gap: 15px;
            }
        }
    }
}

.confidence-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        gap: 100px;

        @media (max-width: 1023px) {
            flex-direction: column;
            gap: 25px;
        }

        .text-column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 20px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                gap: 15px;
            }
        }

        .rows-column {
            width: 50%;
            display: flex;
            flex-flow: column nowrap;
            gap: 15px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            .row-container {
                padding: 30px;
                background: var(--white);
                border-radius: 26px;
                border: 0.25px solid var(--grey);

                &.bottom {
                    border: none;
                    display: flex;
                    flex-direction: column;
                    background: var(--green);
                    gap: 10px;
                }
            }
        }
    }
}

.three-quotes {
    .content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 25px;

        p {
            max-width: 950px;
        }

        .quotes {
            display: flex;
            flex-direction: row nowrap;
            gap: 25px;
            margin-top: 15px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            .quote-wrapper {
                background: var(--cream);
                border-radius: 35px;
                padding: 50px;
                display: flex;
                flex-direction: column;
                text-align: left;
                justify-content: space-between;
                gap: 40px;
                width: calc(33.33% - 12.5px);

                @media (max-width: 1023px) {
                    width: 100%;
                }

                .author {
                    padding-top: 30px;
                    border-top: var(--grey) solid 1px;
                    display: flex;
                    flex-direction: column;
                    gap: 5px;

                    .name {
                        color: var(--green);
                        font-weight: var(--bold);
                    }
                }
            }
        }
    }
}

.eight-boxes-row {
    .content {
        display: flex;
        flex-direction: column;
        gap: 30px;

        @media (max-width: 639px) {
            gap: 20px;
        }

        p {
            max-width: 800px;
        }

        .boxes {
            display: flex;
            flex-flow: row wrap;
            gap: 20px;
            align-items: stretch;
            justify-content: flex-start;
            align-content: flex-start;

            .box {
                width: calc(25% - 20px*3/4);
                padding: 20px;
                border: solid var(--grey) 1px;
                border-radius: 13px;
                align-content: center;

                @media (max-width: 1023px) {
                    width: calc(50% - 20px/2);
                }

                @media (max-width: 479px) {
                    width: 100%;
                }
            }
        }
    }
}

.two-bullets-row {
    .content {
        display: flex;
        flex-flow: column nowrap;
        align-items: flex-start;
        gap: 25px;

        @media (max-width: 639px) {
            gap: 15px;
        }

        .columns-container {
            display: flex;
            flex-flow: row nowrap;
            align-items: flex-start;
            width: 100%;
            gap: 50px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            @media (max-width: 639px) {
                gap: 25px;
            }

            .column {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                gap: 25px;

                @media (max-width: 1023px) {
                    width: 100%;
                    gap: 15px;
                }

                .bullet-container {
                    display: flex;
                    flex-flow: column nowrap;
                    border: 0.25px solid var(--grey);
                    border-radius: 40px;
                    padding: 50px;
                    width: 100%;

                    h5 {
                        margin-bottom: 30px;
                    }

                    @media (max-width: 639px) {
                        padding: 30px;

                        h5 {
                            margin-bottom: 20px;
                        }
                    }

                    .bullets {
                        li {
                            position: relative;
                            display: flex;
                            align-items: center;
                            color: var(--dark-green);
                            padding: 12px 0;
                            font-size: 20px;
                            line-height: 20px;
                            margin-left: 30px;

                            @media (max-width: 639px) {
                                font-size: 16px;
                            }

                            &::before {
                                position: absolute;
                                content: '';
                                background: var(--green);
                                width: 15px;
                                height: 15px;
                                border-radius: 50%;
                                left: -30px;
                                top: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.text-photo-boxes-row {
    .content {
        display: flex;
        flex-flow: column nowrap;
        gap: 30px;

        .columns-container {
            display: flex;
            flex-flow: row nowrap;
            gap: 50px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            @media (max-width: 639px) {
                gap: 25px;
            }

            .photo-column {
                display: flex;
                justify-content: center;
                align-content: center;
                width: 50%;

                @media (max-width: 1023px) {
                    width: 100%;
                }

                img {
                    object-fit: cover;
                    border-radius: 40px;
                }
            }

            .text-column {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 25px;

                @media (max-width: 1023px) {
                    width: 100%;
                }

                @media (max-width: 767px) {
                    gap: 15px;
                }
            }
        }

        .boxes {
            display: flex;
            flex-flow: row wrap;
            gap: 20px;

            .box {
                width: calc(20% - 20px*4/5);
                padding: 20px;
                border: solid var(--grey) 1px;
                border-radius: 15px;
                align-content: center;

                @media (max-width: 1023px) {
                    width: calc(33.33% - 20px*2/3);
                }

                @media (max-width: 639px) {
                    width: 100%;
                }
            }
        }
    }
}

.economical-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        gap: 100px;

        @media (max-width: 1023px) {
            flex-direction: column;
            gap: 25px;
        }

        .text-column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 20px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                gap: 15px;
            }
        }

        .rows-column {
            width: 50%;
            display: flex;
            flex-flow: row wrap;
            gap: 20px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            .row-box {
                display: flex;
                flex-flow: column nowrap;
                gap: 15px;
                padding: 30px;
                border-radius: 15px;
                border: 0.25px solid var(--grey);
                width: calc(50% - 10px);

                @media (max-width: 479px) {
                    width: 100%;
                }

                h3 {
                    font-size: 30px;

                    @media (max-width: 639px) {
                        font-size: 23px;
                    }
                }
            }

            .lines-row {
                display: flex;
                flex-flow: column nowrap;
                width: 100%;
                padding: 20px 30px;
                border-radius: 15px;
                border: 0.25px solid var(--grey);

                p {
                    padding: 10px 0;
                    border-bottom: var(--grey) solid 0.5px;

                    &:last-of-type {
                        border-bottom: none;
                    }
                }
            }
        }
    }
}

.image-banner {
    img {
        width: 100%;
        min-height: 200px;
        object-fit: cover;
    }
}

.customizable-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        gap: 50px;

        @media (max-width: 1023px) {
            flex-direction: column;
        }

        @media (max-width: 639px) {
            gap: 25px;
        }

        .photo-column {
            display: flex;
            justify-content: center;
            align-content: center;
            width: 45%;

            @media (max-width: 1023px) {
                width: 100%;
            }

            img {
                object-fit: cover;
                border-radius: 40px;
            }
        }

        .text-column {
            width: 55%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 25px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                gap: 15px;
            }

            .boxes {
                display: flex;
                flex-flow: row wrap;
                gap: 20px;

                .box {
                    padding: 30px;
                    border: var(--grey) solid 0.25px;
                    border-radius: 15px;
                    width: calc(50% - 10px);

                    @media (max-width: 479px) {
                        width: 100%;
                    }
                }
            }

            .pills {
                display: flex;
                flex-flow: row wrap;
                gap: 30px;

                @media (max-width: 767px) {
                    gap: 15px;
                }

                .pill {
                    color: var(--green);
                    font-weight: var(--semibold);
                    border: solid var(--medium-grey) 1px;
                    border-radius: 30px;
                    width: fit-content;
                    padding: 12px 22px;
                }
            }
        }
    }
}

.two-bullets-photo-row {
    .content {
        display: flex;
        flex-flow: column nowrap;
        gap: 30px;

        .photo-text-container {
            display: flex;
            flex-flow: row nowrap;
            gap: 75px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            @media (max-width: 639px) {
                gap: 25px;
            }

            .photo-column {
                display: flex;
                justify-content: center;
                align-content: center;
                width: 45%;

                @media (max-width: 1023px) {
                    width: 100%;
                }

                img {
                    object-fit: cover;
                    border-radius: 40px;
                }
            }

            .text-column {
                width: 55%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                gap: 25px;

                @media (max-width: 1023px) {
                    width: 100%;
                }

                @media (max-width: 767px) {
                    gap: 15px;
                }
            }
        }

        .two-bullets-container {
            display: flex;
            flex-flow: row nowrap;
            align-items: flex-start;
            width: 100%;
            gap: 30px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            @media (max-width: 639px) {
                gap: 15px;
            }

            .column {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
                gap: 25px;

                @media (max-width: 1023px) {
                    width: 100%;
                    gap: 15px;
                }

                .bullet-container {
                    display: flex;
                    flex-flow: column nowrap;
                    border: 0.25px solid var(--grey);
                    border-radius: 40px;
                    padding: 50px;
                    width: 100%;

                    h5 {
                        margin-bottom: 30px;
                    }

                    @media (max-width: 639px) {
                        padding: 30px;

                        h5 {
                            margin-bottom: 20px;
                        }
                    }

                    .bullets {
                        li {
                            position: relative;
                            display: flex;
                            align-items: center;
                            color: var(--dark-green);
                            padding: 12px 0;
                            font-size: 20px;
                            line-height: 20px;
                            margin-left: 30px;

                            @media (max-width: 639px) {
                                font-size: 16px;
                            }

                            &::before {
                                position: absolute;
                                content: '';
                                background: var(--green);
                                width: 15px;
                                height: 15px;
                                border-radius: 50%;
                                left: -30px;
                                top: 15px;
                            }
                        }
                    }
                }
            }
        }
    }
}

.clearinghouse-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        gap: 100px;

        @media (max-width: 1023px) {
            flex-direction: column;
            gap: 25px;
        }

        .text-column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 25px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                gap: 15px;
            }

            .pills {
                display: flex;
                flex-flow: row wrap;
                gap: 30px;

                @media (max-width: 767px) {
                    gap: 15px;
                }

                .pill {
                    color: var(--light-green);
                    font-weight: var(--semibold);
                    border: solid var(--light-green) 1px;
                    border-radius: 30px;
                    width: fit-content;
                    padding: 12px 22px;
                }
            }
        }

        .rows-column {
            width: 50%;
            display: flex;
            flex-flow: row wrap;
            gap: 20px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            .row-box {
                display: flex;
                flex-flow: column nowrap;
                gap: 15px;
                padding: 30px;
                border-radius: 15px;
                border: none;
                width: 100%;
                background-color: #E7EFEA40;

                h3 {
                    font-size: 30px;

                    @media (max-width: 639px) {
                        font-size: 23px;
                    }
                }
            }

            .row-photo {
                width: 100%;
                aspect-ratio: 700 / 250;
                object-fit: cover;
                border-radius: 15px;
            }
        }
    }
}

.online-offline-row {
    .content {
        display: flex;
        flex-direction: column;
        gap: 45px;

        @media (max-width: 639px) {
            gap: 30px;
        }

        .heading {
            display: flex;
            flex-direction: column;
            gap: 30px;
            width: 75%;

            @media (max-width: 767px) {
                width: 100%;
                gap: 20px;
            }
        }

        .container {
            display: flex;
            flex-flow: row nowrap;
            gap: 50px;

            @media (max-width: 1023px) {
                flex-direction: column;
            }

            @media (max-width: 639px) {
                gap: 25px;
            }

            .photo-column {
                display: flex;
                justify-content: center;
                align-content: center;
                width: 40%;

                @media (max-width: 1023px) {
                    width: 100%;
                }

                img {
                    object-fit: cover;
                    border-radius: 40px;
                }
            }

            .rows-column {
                width: 60%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                gap: 15px;

                @media (max-width: 1023px) {
                    width: 100%;
                }

                @media (max-width: 767px) {
                    gap: 15px;
                }

                .row-box {
                    padding: 30px;
                    background: var(--cream);
                    border: solid var(--grey) 0.25px;
                    border-radius: 14px;
                }
            }
        }
    }
}

.self-help-row {
    .content {
        display: flex;
        flex-flow: column nowrap;
        gap: 30px;

        .photo-text-container {
            display: flex;
            flex-flow: row nowrap;
            gap: 75px;

            @media (max-width: 1023px) {
                gap: 25px;
                flex-direction: column;
            }

            .photo-column {
                display: flex;
                justify-content: center;
                align-content: center;
                width: 50%;

                @media (max-width: 1023px) {
                    width: 100%;
                }

                img {
                    object-fit: cover;
                    border-radius: 40px;
                }
            }

            .text-column {
                width: 50%;
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                gap: 25px;

                @media (max-width: 1023px) {
                    width: 100%;
                }

                @media (max-width: 767px) {
                    gap: 15px;
                }
            }
        }

        .boxes {
            display: flex;
            flex-flow: row wrap;
            gap: 20px;
            align-items: stretch;
            justify-content: flex-start;
            align-content: flex-start;

            .box {
                display: flex;
                flex-direction: column;
                gap: 10px;
                width: calc(25% - 20px*3/4);
                padding: 20px;
                border: solid var(--grey) 1px;
                border-radius: 13px;
                align-content: center;

                @media (max-width: 1023px) {
                    width: calc(50% - 20px/2);
                }

                @media (max-width: 479px) {
                    width: 100%;
                }
            }
        }
    }
}

.help-desk-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        gap: 50px;
        align-items: flex-start;

        @media (max-width: 1100px) {
            flex-direction: column;
            gap: 25px;
        }

        .text-column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 20px;

            @media (max-width: 1100px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                gap: 15px;
            }
        }

        .rows-column {
            width: 50%;
            min-width: 650px;
            display: flex;
            flex-flow: row wrap;
            gap: 20px;

            @media (max-width: 1100px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                min-width: unset;
                gap: 15px;
            }

            .row {
                width: 100%;
                display: flex;
                flex-flow: column nowrap;
                gap: 15px;
                padding: 30px;
                border-radius: 15px;
                border: 0.25px solid var(--grey);
            }

            .row-box {
                display: flex;
                flex-flow: column nowrap;
                gap: 15px;
                padding: 30px;
                border-radius: 15px;
                border: 0.25px solid var(--grey);
                width: calc(50% - 10px);

                @media (max-width: 767px) {
                    width: 100%;
                }
            }
        }
    }
}

.contact-form-row {
    .content {
        display: flex;
        flex-flow: row nowrap;
        align-items: flex-start;
        gap: 50px;

        @media (max-width: 1023px) {
            flex-direction: column;
        }

        @media (max-width: 639px) {
            gap: 25px;
        }

        .text-column {
            width: 50%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            gap: 25px;

            @media (max-width: 1023px) {
                width: 100%;
            }

            @media (max-width: 767px) {
                gap: 15px;
            }
        }

        .form-column {
            width: 50%;

            @media (max-width: 1023px) {
                width: 100%;
            }

            .contact-form {
                display: flex;
                flex-direction: column;
                gap: 20px;
                padding: 30px;
                background: var(--white);
                border-radius: 35px;

                .form-field {
                    display: flex;
                    flex-flow: column nowrap;

                    label {
                        font-family: var(--figtree);
                        line-height: 1;
                        color: var(--dark-green);
                        font-size: 20px;
                        font-weight: var(--medium);
                        margin-bottom: 5px;

                        @media (max-width: 639px) {
                            font-size: 16px;
                        }
                    }

                    input {
                        padding: 10px;
                        border: var(--grey) solid 1px;
                        border-radius: 6px;
                        color: var(--darker-grey);
                        opacity: 0.5;
                    }
                }

                .form-row {
                    display: flex;
                    flex-flow: row nowrap;
                    justify-content: space-between;
                    gap: 15px;

                    .form-field {
                        width: 50%;
                    }
                }

                .submit-button {
                    width: 100%;

                    &:hover {
                        background: var(--light-green) !important;
                    }
                }

                .form-desc {
                    color: var(--darker-grey);
                    text-align: center;
                    font-size: 16px;

                    @media (max-width: 639px) {
                        font-size: 12px;
                    }
                }
            }
        }
    }
}

.loading-row {
    margin-top: 90px;
    height: calc(100vh - 142px - 90px);

    @media (max-width: 900px) {
        height: calc(100vh - 90px - 110px);
    }

    @media (max-width: 639px) {
        height: calc(100vh - 90px - 90px);
    }

    .content {
        display: flex;
        height: 100%;
        flex-direction: column;
        justify-content: space-between;
        text-align: center;

        .white-logo {
            max-width: 150px;
            max-height: 100px;
        }

        .pills {
            display: flex;
            flex-direction: row;
            justify-content: center;
            gap: 15px;

            .pill {
                color: var(--white);
                border: var(--white) solid 1px;
                border-radius: 24px;
                padding: 10px 15px;
                font-size: 16px;

                @media (max-width: 639px) {
                    font-size: 12px;
                }
            }
        }

        .middle,
        .bottom {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 30px;
        }
    }
}

.footer-container {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    background: var(--dark-green);
    padding: 50px 75px;
    gap: 15px;

    @media (max-width: 900px) {
        flex-flow: column nowrap;
        padding: 20px;
    }

    .left-footer {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;

        @media (max-width: 900px) {
            align-items: center;
        }

        .name-link {
            text-decoration: none;
            font-size: 42px;
            color: var(--white);
            font-weight: var(--bold);

            @media (max-width: 639px) {
                font-size: 26px;
            }
        }

        a {
            font-size: 20px;
            font-weight: var(--regular);
            color: var(--white);
            text-decoration: none;

            @media (max-width: 639px) {
                font-size: 16px;
            }

            &:hover {
                color: var(--light-green);
                text-decoration: underline;
            }
        }
    }

    .right-footer {
        display: flex;
        flex-flow: row nowrap;
        align-items: center;
        gap: 40px;
        justify-content: center;

        @media (max-width: 900px) {
            gap: 10px;
        }

        a {
            text-decoration: none;
            font-size: 20px;
            font-weight: var(--medium);
            color: var(--white);

            @media (max-width: 639px) {
                font-size: 16px;
            }

            &:hover {
                text-decoration: underline;
                text-decoration-color: var(--green);
                transform: translateY(-3px);
            }
        }

        .bold-link {
            font-weight: var(--bold);
        }
    }

    .footer-desk-only {
        display: unset;

        @media (max-width: 900px) {
            display: none;
        }
    }

    .footer-mobile-only {
        display: none;

        @media (max-width: 900px) {
            display: unset;
            text-align: center;

            a {
                font-size: 20px;
                font-weight: var(--regular);
                color: var(--white);
                text-decoration: none;

                @media (max-width: 639px) {
                    font-size: 16px;
                }

                &:hover {
                    color: var(--light-green);
                    text-decoration: underline;
                }
            }
        }
    }
}