﻿html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

.header, .menu, .backdrop {
    width: 100%;
}

img, svg {
    height: auto;
    display: block;
}

/* ADD THIS NEW, TARGETED RULE */
.cs-graphic {
    max-width: 100%;
    height: auto;
}

:root {
    /* Add these styles to your global stylesheet, which is used across all site pages. You only need to do this once. All elements in the library derive their variables and base styles from this central sheet, simplifying site-wide edits. For instance, if you want to modify how your h2's appear across the site, you just update it once in the global styles, and the changes apply everywhere. */
    --primary: #0B233F;
    --primaryLight: #0B233F;
    --secondary: #7C7C7C;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --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: 3rem;
    --site-max: 72rem; /* e.g., 1140px; if header is 80rem, set 80rem */
    --site-pad: clamp(1rem, 3vw, 2rem); /* header’s inline padding */
}

body {
    margin: 0;
    padding: 0;
}

*, *:before, *:after {
    /* prevents padding from affecting height and width */
    box-sizing: border-box;
}

.cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: .1em;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 0.25rem;
    display: block;
}

.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

.cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
}

/* Headline / text gradient — a touch darker, still colorful */
.gradient-text {
    /* medium, on-brand blues (no bright near-white) */
    --g1: #A9BDF7; /* soft slate blue */
    --g2: #5F77E8; /* denim/indigo */
    --g3: #4F8FCA; /* muted blue-cyan */
    background: linear-gradient(60deg, var(--g1) 0%, var(--g2) 55%, var(--g3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    text-shadow: 0 0 4px rgba(0,0,0,0.12); /* subtle, reduced glow for crispness */
}

/* Button gradient — grey -> blue, high readability for white text */
.gradient-button {
    --g1: #5E6673; /* neutral grey */
    --g2: #465368; /* cool grey/ink */
    --g3: #2F59C7; /* brandy blue */
    background: linear-gradient(60deg, var(--g1) 0%, var(--g2) 45%, var(--g3) 100%);
    color: #fff;
    border: none;
    padding: 0.75em 1em;
    font-size: 1em;
    cursor: pointer;
    transition: filter .15s ease, transform .15s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,.25); /* optional depth */
}

    .gradient-button:hover {
        filter: brightness(1.06);
        transform: translateY(-1px);
    }

    .gradient-button:active {
        filter: brightness(.93);
        transform: translateY(0);
    }

    .gradient-button:focus-visible {
        outline: 3px solid #93B6FF;
        outline-offset: 2px;
    }

/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/

body,
html {
    /* reset margin and padding so there's no gap between the nav and the screen edges */
    margin: 0;
       padding: 0;
}

/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.cs-open {
        overflow: hidden;
    }

        body.cs-open #cs-navigation:after {
            width: 100%;
            opacity: 1;
        }

    body.scroll #cs-navigation:after {
        width: 100%;
    }

    #cs-navigation {
        width: 100%;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border-bottom: 1px solid #484848;
        position: fixed;
        z-index: 10000;
    }

        #cs-navigation:before {
            /* mobile nav overlay on open */
            content: "";
            width: 100%;
            height: 0vh;
            background: rgba(0, 0, 0, 0.6);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            position: absolute;
            display: block;
            top: 100%;
            right: 0;
            z-index: -1100;
            opacity: 0;
            transition: height 0.5s, opacity 0.5s;
        }

        #cs-navigation:after {
            /* on scroll overlay */
            content: "";
            width: 0%;
            height: 100%;
            background: #1a1a1a;
            opacity: 0.8;
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            z-index: -1;
            transition: width 0.3s, opacity 0.3s;
        }

        #cs-navigation.cs-active:before {
            height: 150vh;
            opacity: 1;
        }

        #cs-navigation.cs-active .cs-ul-wrapper {
            opacity: 1;
            transform: scaleY(1);
            transition-delay: 0.15s;
        }

        #cs-navigation.cs-active .cs-li {
            transform: translateY(0);
            opacity: 1;
        }

        #cs-navigation .cs-container {
            width: 100%;
            padding: 1rem;
            /* prevents padding and border from affecting height and width */
            box-sizing: border-box;
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        #cs-navigation .cs-logo {
            width: 9.1875rem;
            height: auto;
            margin: 0 auto 0 0;
            padding: 0;
            /* prevents padding and border from affecting height and width */
            box-sizing: border-box;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 10;
        }

            #cs-navigation .cs-logo img {
                width: 100%;
                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;
            }

        #cs-navigation .cs-toggle {
            width: 3.5rem;
            height: 3.5rem;
            margin: 0 0 0 auto;
            background-color: #484848;
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #cs-navigation .cs-active .cs-line1 {
            top: 50%;
            transform: translate(-50%, -50%) rotate(225deg);
        }

        #cs-navigation .cs-active .cs-line2 {
            top: 50%;
            transform-origin: center;
            transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
        }

        #cs-navigation .cs-active .cs-line3 {
            bottom: 100%;
            opacity: 0;
        }

        #cs-navigation .cs-box {
            /* 24px - 28px */
            width: clamp(1.5rem, 2vw, 1.75rem);
            height: 1rem;
            position: relative;
        }

        #cs-navigation .cs-line {
            width: 100%;
            height: 2px;
            border-radius: 2px;
            background-color: #fafbfc;
            position: absolute;
            left: 50%;
            transform: translateX(-50%);
        }

        #cs-navigation .cs-line1 {
            top: 0;
            transform-origin: center;
            transition: transform 0.5s, top 0.3s, left 0.3s;
            animation-duration: 0.7s;
            animation-timing-function: ease;
            animation-fill-mode: forwards;
            animation-direction: normal;
        }

        #cs-navigation .cs-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-fill-mode: forwards;
            animation-direction: normal;
        }

        #cs-navigation .cs-line3 {
            bottom: 0;
            transition: bottom 0.3s, opacity 0.3s;
        }

        #cs-navigation .cs-ul-wrapper {
            width: 100%;
            height: auto;
            padding-bottom: 3rem;
            opacity: 0;
            background-color: #1a1a1a;
            box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
            overflow: hidden;
            position: absolute;
            top: 100%;
            left: 0;
            z-index: -1;
            transform: scaleY(0);
            transform-origin: top;
            transition: transform 0.4s, opacity 0.3s;
        }

        #cs-navigation .cs-ul {
            margin: 0;
            width: 100%;
            height: auto;
            max-height: 65vh;
            overflow: scroll;
            display: flex;
            justify-content: flex-start;
            flex-direction: column;
            align-items: center;
            gap: 1.25rem;
        }

        #cs-navigation .cs-li {
            width: 100%;
            text-align: center;
            list-style: none;
            margin-right: 0;
            /* transition from these values */
            transform: translateY(-4.375rem);
            opacity: 0;
            transition: transform 0.6s, opacity 0.9s;
        }

            #cs-navigation .cs-li:nth-of-type(1) {
                transition-delay: 0.05s;
            }

            #cs-navigation .cs-li:nth-of-type(2) {
                transition-delay: 0.1s;
            }

            #cs-navigation .cs-li:nth-of-type(3) {
                transition-delay: 0.15s;
            }

            #cs-navigation .cs-li:nth-of-type(4) {
                transition-delay: 0.2s;
            }

            #cs-navigation .cs-li:nth-of-type(5) {
                transition-delay: 0.25s;
            }

            #cs-navigation .cs-li:nth-of-type(6) {
                transition-delay: 0.3s;
            }

            #cs-navigation .cs-li:nth-of-type(7) {
                transition-delay: 0.35s;
            }

            #cs-navigation .cs-li:nth-of-type(8) {
                transition-delay: 0.4s;
            }

            #cs-navigation .cs-li:nth-of-type(9) {
                transition-delay: 0.45s;
            }

            #cs-navigation .cs-li:nth-of-type(10) {
                transition-delay: 0.5s;
            }

            #cs-navigation .cs-li:nth-of-type(11) {
                transition-delay: 0.55s;
            }

            #cs-navigation .cs-li:nth-of-type(12) {
                transition-delay: 0.6s;
            }

            #cs-navigation .cs-li:nth-of-type(13) {
                transition-delay: 0.65s;
            }

        #cs-navigation .cs-li-link {
            /* 16px - 24px */
            font-size: clamp(1rem, 2.5vw, 1.5rem);
            line-height: 1.2em;
            text-decoration: none;
            margin: 0;
            color: var(--bodyTextColorWhite);
            display: inline-block;
            position: relative;
        }

            #cs-navigation .cs-li-link.cs-active {
                color: var(--secondary);
            }

            #cs-navigation .cs-li-link:hover {
                color: var(--secondary);
            }

        #cs-navigation .cs-button-solid {
            display: none;
        }
}

/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/

/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    body.scroll #cs-navigation:after {
        height: 100%;
    }

    #cs-navigation {
        width: 100%;
        padding: 0;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
        border: 1px solid #484848;
        position: fixed;
        z-index: 10000;
    }

        #cs-navigation:after {
            /* on scroll overlay */
            content: "";
            width: 100%;
            height: 0%;
            background: #1a1a1a;
            opacity: 0.8;
            position: absolute;
            display: block;
            top: 0;
            left: 0;
            z-index: -1;
            transition: height 0.3s, opacity 0.3s;
        }

        #cs-navigation .cs-container {
            width: 100%;
            /* same height as the cs-ul-wrapper */
            height: 5.8125rem;
            max-width: 80rem;
            margin: auto;
            padding: 0 1rem;
            /* prevents padding from affectin gheight */
            box-sizing: border-box;
            display: flex;
            justify-content: flex-end;
            align-items: center;
            gap: 1.5rem;
            position: relative;
        }

        #cs-navigation .cs-toggle {
            display: none;
        }

        #cs-navigation .cs-logo {
            width: 18.4%;
            max-width: 12.3125rem;
            height: 5rem;
            /* margin-right auto pushes everything away from it to the right */
            margin: 0 auto 0 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            z-index: 100;
        }

            #cs-navigation .cs-logo img {
                width: 100%;
                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;
            }

        #cs-navigation .cs-ul-wrapper {
            /* absolutely positioned to be dead center */
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
        }

        #cs-navigation .cs-ul {
            width: 100%;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            /* 20px - 36px */
            gap: clamp(1.25rem, 2.6vw, 2.25rem);
        }

        #cs-navigation .cs-li {
            list-style: none;
            padding: 2.25rem 0;
            /* prevent flexbox from squishing it */
            flex: none;
        }

        #cs-navigation .cs-li-link {
            /* 14px - 16px */
            font-size: clamp(0.875rem, 0.6vw, 1rem);
            line-height: 1.5em;
            text-decoration: none;
            margin: 0;
            color: var(--bodyTextColorWhite);
            display: block;
            position: relative;
            transition: color 0.3s;
        }

            #cs-navigation .cs-li-link:before {
                content: "";
                width: 0%;
                height: 1px;
                background: currentColor;
                opacity: 1;
                position: absolute;
                display: block;
                bottom: -2px;
                left: 0;
                transition: width 0.3s;
            }

            #cs-navigation .cs-li-link:hover {
                color: var(--secondary);
            }

                #cs-navigation .cs-li-link:hover:before {
                    width: 100%;
                }

            #cs-navigation .cs-li-link.cs-active {
                color: var(--secondary);
            }

                #cs-navigation .cs-li-link.cs-active:before {
                    width: 100%;
                }

        #cs-navigation .cs-button-solid {
            font-size: 1rem;
            /* 46px - 56px */
            line-height: clamp(2.875em, 5.5vw, 3.5em);
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            margin: 0;
            color: #fff;
            min-width: 9.375rem;
            padding: 0 2rem;
            background-color: var(--primary);
            display: inline-block;
            position: relative;
            z-index: 1;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
            transition: color 0.3s;
        }

            #cs-navigation .cs-button-solid:before {
                content: "";
                position: absolute;
                height: 100%;
                width: 0%;
                background: #fff;
                opacity: 1;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #cs-navigation .cs-button-solid:hover {
                color: #1a1a1a;
            }

                #cs-navigation .cs-button-solid:hover:before {
                    width: 100%;
                }

        #cs-navigation .cs-nav-button {
            line-height: 2.875rem;
        }
}

/*-- -------------------------- -->
<---          Footer            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-footer-1783 {
        padding: var(--sectionPadding);
        padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
        /* change this to match the color of the section above the footer */
        background-color: #0B233F;
        overflow: hidden;
        /* 30px - 50px */
        position: relative;
        z-index: 1;
    }

        #cs-footer-1783 .cs-card-group {
            /* reset on tablet */
            max-width: 34.375rem;
            margin: auto;
            display: grid;
            /* 20px - 58px */
            gap: clamp(1.25rem, 4vw, 3.625rem);
        }

        #cs-footer-1783 .cs-card {
            display: flex;
            flex-direction: row;
            align-items: center;
            /* 16px - 24px */
            gap: clamp(1rem, 2vw, 1.5rem);
        }

        #cs-footer-1783 .cs-picture {
            padding: 1.5rem;
            background-color: var(--secondary);
            display: block;
        }

        #cs-footer-1783 .cs-icon {
            width: 2rem;
            height: auto;
            display: block;
        }

        #cs-footer-1783 .cs-h3 {
            /* 20px - 25px */
            font-size: clamp(1.25rem, 2vw, 1.5625rem);
            font-weight: 700;
            line-height: 1.2em;
            margin: 0;
            color: var(--bodyTextColorWhite);
        }

        #cs-footer-1783 .cs-card-info {
            font-size: 1rem;
            text-decoration: none;
            line-height: 1.5em;
            color: var(--bodyTextColorWhite);
            opacity: 0.8;
            display: block;
        }

        #cs-footer-1783 .cs-container {
            width: 100%;
            /* reset on tablet */
            max-width: 34.375rem;
            margin: auto;
            display: grid;
            grid-template-columns: 1fr;
            /* 32px - 48px */
            gap: clamp(2rem, 2rem, 3rem);
        }

        #cs-footer-1783 .cs-logo-group {
            /* takes up all the space, lets the other ul's wrap below it */
            width: 100%;
            position: relative;
        }

        #cs-footer-1783 .cs-logo {
            width: 13.125rem;
            height: auto;
            margin: 0 0 1rem 0;
            display: block;
        }

        #cs-footer-1783 .cs-text {
            max-width: 44rem;
            /* 24px - 40px */
            margin: 0 0 clamp(1.5rem, 4vw, 2.5rem);
            color: var(--bodyTextColorWhite);
            opacity: 0.8;
        }

        #cs-footer-1783 .cs-logo-img {
            width: 100%;
            height: auto;
        }

        #cs-footer-1783 .cs-contact {
            display: grid;
            gap: 2rem;
        }

        #cs-footer-1783 .cs-topper {
            font-size: 1rem;
            margin-bottom: 0.25rem;
        }

        #cs-footer-1783 .cs-contact-link {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2em;
            text-decoration: none;
            color: var(--bodyTextColorWhite);
        }

        #cs-footer-1783 .cs-header {
            /* 20px - 25px */
            font-size: clamp(1.25rem, 3vw, 1.5625rem);
            font-weight: 700;
            line-height: 1.5em;
            /* 16px - 24px */
            margin: 0 0 clamp(1rem, 4vw, 1.5rem) 0;
            color: var(--bodyTextColorWhite);
            display: block;
            position: relative;
        }

        #cs-footer-1783 .cs-ul {
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
        }

        #cs-footer-1783 .cs-li {
            list-style: none;
        }

        #cs-footer-1783 .cs-link {
            font-size: 1rem;
            line-height: 1.5em;
            text-align: left;
            text-decoration: none;
            color: var(--bodyTextColorWhite);
            opacity: 0.8;
            display: inline-flex;
            align-items: flex-start;
            gap: 0.5rem;
            transition: color 0.3s;
        }

            #cs-footer-1783 .cs-link:hover {
                color: var(--primaryLight);
            }

        #cs-footer-1783 .cs-bottom {
            width: 100%;
            max-width: 80rem;
            /* 60px - 80px */
            margin: 3.75rem auto 0;
            padding-top: 1.5rem;
            border-top: 1px solid var(--border-border-10, #e8e8e8);
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

        #cs-footer-1783 .cs-credit,
        #cs-footer-1783 .cs-bottom-link,
        #cs-footer-1783 .cs-credit-link {
            font-size: 1rem;
            line-height: 1.5em;
            text-decoration: none;
            color: var(--bodyTextColorWhite);
            opacity: 0.8;
        }

        #cs-footer-1783 .cs-credit {
            width: 100%;
        }

        #cs-footer-1783 .cs-credit-link {
            font-size: 1rem;
            line-height: 1.5em;
            text-decoration: none;
            width: auto;
            margin: 0;
            display: inline-block;
            position: relative;
        }

            #cs-footer-1783 .cs-credit-link:hover {
                color: var(--primary);
            }

        #cs-footer-1783 .cs-bottom-links {
            width: 100%;
            display: flex;
        }

        #cs-footer-1783 .cs-bottom-link {
            display: flex;
            align-items: center;
        }

            #cs-footer-1783 .cs-bottom-link:hover {
                color: var(--primary);
            }

            #cs-footer-1783 .cs-bottom-link:last-of-type:before {
                /* separator */
                content: "";
                width: 1px;
                height: 0.875rem;
                margin: 0 0.75rem;
                background: currentColor;
                opacity: 1;
                display: block;
            }

        #cs-footer-1783 .cs-graphic {
            width: 100%;
            min-width: 120rem;
            height: auto;
            object-fit: cover;
            position: absolute;
            top: 9rem;
            left: 50%;
            z-index: -1;
            transform: translateX(-50%);
        }
}
/* Tablet - 600px */
@media only screen and (min-width: 37.5rem) {
    #cs-footer-1783 .cs-card-group {
        max-width: 80rem;
    }

    #cs-footer-1783 .cs-container {
        padding: var(--sectionPadding);
        padding-left: 0;
        padding-right: 0;
        padding-bottom: 0;
        max-width: 80rem;
        grid-template-columns: repeat(12, 1fr);
    }

    #cs-footer-1783 .cs-logo-group {
        grid-column: span 12;
    }

    #cs-footer-1783 .cs-ul-wrapper {
        grid-column: span 4;
    }

    #cs-footer-1783 .cs-contact {
        grid-template-columns: repeat(12, 1fr);
        grid-column: span 12;
    }

    #cs-footer-1783 .cs-table {
        grid-column: span 12;
    }

    #cs-footer-1783 .cs-bottom {
        justify-content: space-between;
        flex-wrap: nowrap;
    }

    #cs-footer-1783 .cs-credit {
        text-align: left;
    }

    #cs-footer-1783 .cs-bottom-links {
        justify-content: flex-end;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-footer-1783 .cs-card-group {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
    }

    #cs-footer-1783 .cs-card {
        grid-column: span 4;
    }

    #cs-footer-1783 .cs-logo-group {
        grid-column: span 6;
    }

    #cs-footer-1783 .cs-ul-wrapper {
        grid-column: span 3;
    }

    #cs-footer-1783 .cs-contact {
        display: flex;
        flex-direction: column;
        grid-column: span 4;
    }
}

@media (max-width: 37.49rem) { /* <= 599px */
    #cs-footer-1783 .cs-container {
        grid-template-columns: 1fr 1fr; /* two columns on mobile */
    }

    #cs-footer-1783 .cs-logo-group {
        grid-column: 1 / -1; /* logo/blurb spans both columns */
    }
    /* optional: tighten list spacing a bit on mobile */
    #cs-footer-1783 .cs-ul {
        gap: 0.5rem;
    }
}

/* --- Footer tweaks --- */

/* 1) Nudge the logo down ~15px */
#cs-footer-1783 .cs-logo {
    margin-top: 15px;
}

/* 2) Tighten the space between the blurb and "Navigation" */
#cs-footer-1783 .cs-text {
    /* was: margin-bottom: clamp(1.5rem, 4vw, 2.5rem); */
    margin-bottom: 0.75rem; /* ~12px; adjust to taste */
}

/* 3) (Optional) reduce the gap between the logo group and link columns,
      but only on mobile so desktop spacing stays roomy */
@media (max-width: 37.49rem) {
    #cs-footer-1783 .cs-container {
        row-gap: 0.75rem; /* tighten vertical gap between rows */
    }
}

#cs-footer-1783 {
    padding-left: 0;
    padding-right: 0;
}

    /* Make the two inner containers align with the header container */
    #cs-footer-1783 .cs-card-group,
    #cs-footer-1783 .cs-container {
        max-width: var(--site-max);
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--site-pad);
        padding-right: var(--site-pad);
    }


.bg-video {
    position: fixed; /* or absolute if only inside a hero section */
    inset: 0; /* top:0 right:0 bottom:0 left:0 */
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* fills and crops like CSS background-size: cover */
    z-index: -1; /* sit behind content */
    pointer-events: none; /* clicks go to content */
    filter: brightness(0.6); /* optional darken for text contrast */
}

/* Example hero content stacking */
.hero-content {
    position: relative;
    min-height: 100vh;
    display: grid;
    place-items: center;
    text-align: center;
    color: #fff;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
    .bg-video {
        display: none;
    }
    /* or remove autoplay/loop via JS */
}

/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1856 {
        /* 200px - 300px - leaving extra space for the navigation */
        padding: clamp(12.5rem, 25.95vw, 18.75em) 1rem;
        /* prevents the topper line from causing an overflow */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        #hero-1856 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            justify-content: flex-start;
            align-items: center;
            flex-wrap: wrap;
            gap: 3rem;
        }

        #hero-1856 .cs-content {
            text-align: left;
            width: 100%;
            max-width: 46.875rem;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            position: relative;
            z-index: 1;
        }

        #hero-1856 .cs-title {
            /* 49px - 84px */
            font-size: clamp(3.0625rem, 6vw, 5.25rem);
            max-width: 100%;
            letter-spacing: -2px;
        }

        #hero-1856 .cs-title,
        #hero-1856 .cs-text {
            text-align: left;
            color: var(--bodyTextColorWhite);
        }

        #hero-1856 .cs-text {
            margin-bottom: 2rem;
        }

        #hero-1856 .cs-button-solid {
            font-size: 1rem;
            font-weight: 700;
            /* 46px - 56px */
            line-height: clamp(2.875rem, 5.5vw, 3.5rem);
            text-align: center;
            text-decoration: none;
            min-width: 12.5rem;
            margin: 0;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
            padding: 0 1.5rem;
            background-color: var(--primary);
            color: var(--bodyTextColorWhite);
            border-radius: 0.25rem;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

            #hero-1856 .cs-button-solid:before {
                content: "";
                width: 0%;
                height: 100%;
                background: #fff;
                opacity: 1;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #hero-1856 .cs-button-solid:hover {
                color: #1a1a1a;
            }

                #hero-1856 .cs-button-solid:hover:before {
                    width: 100%;
                }

        #hero-1856 .cs-content-graphic {
            height: 305%;
            max-height: 81.25rem;
            filter: brightness(60%);
            width: auto;
            position: absolute;
            top: 50%;
            right: -4rem;
            left: auto;
            z-index: -1;
            transform: translateY(-50%);
            z-index: -3;
        }

        #hero-1856 .cs-graphic {
            width: 100%;
            min-width: 0;
            max-width: none;
            height: auto;
            object-fit: cover;
            position: absolute;
            bottom: -1px;
            left: 50%;
            z-index: 2;
            transform: translateX(-50%);
        }

        #hero-1856 .cs-graphic-dark {
            display: none;
        }

        #hero-1856 .cs-background {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -2;
            /* Overlay on the background image that gets removed at tablet+, in favour of the svg graphic */
        }

            #hero-1856 .cs-background:before {
                content: "";
                width: 100%;
                height: 100%;
                background: #000;
                /* prevents the cursor from interacting with it */
                pointer-events: none;
                opacity: 0.4;
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
            }

            #hero-1856 .cs-background img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: absolute;
                top: 0;
                left: 0;
            }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #hero-1856 .cs-background::before {
        content: none;
    }
}
/* Desktop Parallax - 1300px */
@media only screen and (min-width: 81.25rem) {
    #hero-1856 .cs-background {
        background: url("../images/waitlist_background.png");
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /* creates the parallax effect */
        background-attachment: fixed;
    }

        #hero-1856 .cs-background img {
            display: none;
        }
}
/* Large Desktop - 1920px */
@media only screen and (min-width: 120rem) {
    #hero-1856 {
        /* this ties the padding bottom value to the size of the screen width. The wider the image gets the taller it gets, meaning it will get closer and closer to the content. This makes the padding bottom value grow with the screen size so it accounts for the growing height of the svg graphic getting taller */
        padding-bottom: 14vw;
    }
}

/*-- -------------------------- -->
<---           Stats            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    .stat-number {
        font-variant-numeric: tabular-nums;
        font-feature-settings: "tnum";
    }

    #stats-534 {
        background-color: #0B233F;
    }

        #stats-534 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            /* 48px - 64px */
            gap: clamp(3rem, 6vw, 4rem);
        }

        #stats-534 .cs-content {
            text-align: left;
            /* changes to 41% at tablet */
            width: 100%;
            max-width: 32.625rem;
        }

        #stats-534 .cs-color {
            color: var(--secondary);
        }

        #stats-534 .cs-topper {
            color: var(--bodyTextColorWhite);
        }

        #stats-534 .cs-title {
            max-width: 17ch;
            color: var(--bodyTextColorWhite);
        }

        #stats-534 .cs-text {
            color: var(--bodyTextColorWhite);
            opacity: 0.8;
        }

        #stats-534 .cs-card-group {
            /* changes to 43% at tablet */
            width: 90%;
            max-width: 32.625rem;
            margin: 0 auto 0 0;
            padding: 0;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            /* 16px - 52px */
            row-gap: 1rem;
        }

        #stats-534 .cs-item {
            width: 40%;
            max-width: 12.5rem;
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        #stats-534 .cs-number {
            /* 39px - 61px */
            font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
            font-weight: 900;
            line-height: 1.2em;
            margin: 0 0 0.5rem 0;
            color: var(--bodyTextColorWhite);
            display: block;
        }

        #stats-534 .cs-desc {
            /* 16px - 20px */
            font-size: clamp(1rem, 2vw, 1.25rem);
            line-height: 1.5em;
            margin: 0;
            color: var(--bodyTextColorWhite);
        }

        #stats-534 .cs-big-link {
            width: 100%;
            /* changes to a clamp at tablet */
            height: 20rem;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

            #stats-534 .cs-big-link:hover .cs-background img {
                transform: scale(1.1);
            }

        #stats-534 .cs-background {
            width: 100%;
            height: 100%;
            /* clips the img from overflowing the container on hover */
            overflow: hidden;
            display: block;
            position: relative;
            top: 0;
            left: 0;
            z-index: 1;
        }

            #stats-534 .cs-background:before {
                /* color overlay */
                content: "";
                width: 100%;
                height: 100%;
                background: var(--primary);
                opacity: 0.72;
                background-blend-mode: multiply;
                position: absolute;
                display: block;
                top: 0;
                left: 0;
                z-index: 10;
            }

            #stats-534 .cs-background img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
                z-index: -1;
                transition: transform 0.7s;
            }

        #stats-534 .cs-link-icon {
            /* 80px - 110px */
            width: clamp(5rem, 11vw, 6.875rem);
            height: clamp(5rem, 11vw, 6.875rem);
            border-radius: 50%;
            position: absolute;
            z-index: 10;
            transition: transform 0.3s, box-shadow 0.3s;
        }

            #stats-534 .cs-link-icon:hover {
                transform: scale(1.1);
                box-shadow: rgba(0, 0, 0, 0.5) 0px 7px 29px 0px;
            }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #stats-534 .cs-container {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    #stats-534 .cs-content {
        width: 41%;
    }

    #stats-534 .cs-card-group {
        width: 43%;
    }

    #stats-534 .cs-big-link {
        /* 280px - 580px */
        height: clamp(20rem, 44vw, 36.25rem);
    }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-2320 {
        padding: var(--sectionPadding);
        display: flex;
        flex-direction: column;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
        position: relative;
        z-index: 1;
    }

        #contact-2320 .cs-container {
            width: 100%;
            /* changes to 1280px at desktop */
            max-width: 36.25rem;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            /* 48px - 64px */
            gap: clamp(3rem, 6vw, 4rem);
        }

        #contact-2320 .cs-container2 {
            width: 100%;
            /* changes to 1280px at desktop */
            max-width: 36.25rem;
            padding: 5rem 3rem;
            margin: auto;
            position: relative;
            z-index: 1;
        }

            #contact-2320 .cs-container2 .cs-topper {
                color: #fff;
            }

        #contact-2320 .cs-content {
            text-align: left;
        }

        #contact-2320 .cs-title {
            margin-bottom: 2rem;
        }

        #contact-2320 .cs-form {
            border-radius: 1rem;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            gap: 0.75rem;
        }

        #contact-2320 .cs-label {
            /* 14px - 16px */
            font-size: clamp(0.875rem, 1.5vw, 1rem);
            width: 100%;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 0.25rem;
        }

        #contact-2320 .cs-input {
            font-size: 1rem;
            width: 100%;
            height: 3.5rem;
            padding: 0;
            padding-left: 1.5rem;
            color: var(--headerColor);
            background-color: #f7f7f7;
            border: none;
            /* prevents padding from adding to height and width */
            box-sizing: border-box;
        }

            #contact-2320 .cs-input::placeholder {
                color: #7d799c;
                opacity: 0.6;
            }

        #contact-2320 .cs-textarea {
            min-height: 7.5rem;
            padding-top: 1.5rem;
            margin-bottom: 0.75rem;
            font-family: inherit;
        }

        #contact-2320 .cs-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;
            padding: 0 1.5rem;
            background-color: var(--primary);
            display: inline-block;
            position: relative;
            z-index: 1;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
        }

            #contact-2320 .cs-button-solid:before {
                content: "";
                position: absolute;
                height: 100%;
                width: 0%;
                background: #000;
                opacity: 1;
                top: 0;
                left: 0;
                z-index: -1;
                border-radius: 0.25rem;
                transition: width 0.3s;
            }

            #contact-2320 .cs-button-solid:hover:before {
                width: 100%;
            }

        #contact-2320 .cs-submit {
            text-transform: uppercase;
            background-color: var(--secondaryLight);
            color: var(--headerColor);
            border: none;
            transition: color 0.3s;
        }

            #contact-2320 .cs-submit:hover {
                cursor: pointer;
                color: #fff;
            }

        #contact-2320 .cs-map {
            width: 100%;
            max-width: 39.375rem;
            height: 25rem;
            position: relative;
            z-index: 1;
            display: block;
        }

        #contact-2320 .cs-iframe-wrapper {
            width: 100%;
            position: absolute;
            top: 0;
            left: 0;
            /* 40px - 56px */
            bottom: clamp(2.5rem, 5vw, 3.5rem);
        }

            #contact-2320 .cs-iframe-wrapper iframe {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }

        #contact-2320 .cs-box {
            width: 90%;
            max-width: 28.125rem;
            /* 16px - 32px top & bottom */
            /* 16px left & right */
            padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 2.4vw, 1rem);
            background-color: #fff;
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            z-index: 100;
        }

            #contact-2320 .cs-box:before {
                content: '';
                width: 100%;
                height: 100%;
                background: var(--primary);
                pointer-events: none;
                opacity: 0.1;
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
            }

        #contact-2320 .cs-icon {
            width: 2rem;
            height: auto;
            display: block;
        }

        #contact-2320 .cs-flex {
            display: flex;
            flex-direction: column;
        }

        #contact-2320 .cs-header {
            font-size: 1.25rem;
            font-weight: 700;
            line-height: 1.2em;
            margin: 0 0 0.5rem;
            color: var(--headerColor);
        }

        #contact-2320 .cs-address {
            font-size: clamp(0.75rem, 2.8vw, 1rem);
            line-height: 1.5em;
            margin: 0;
            color: var(--bodyTextColor);
        }

        #contact-2320 .cs-hours {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #contact-2320 .cs-hours-info {
            /* 20px - 25px */
            font-size: clamp(1.25rem, 3vw, 1.5625rem);
            line-height: 1.2em;
            font-weight: 700;
            width: 60%;
            max-width: 28ch;
            margin: 0;
            color: var(--bodyTextColorWhite);
        }

        #contact-2320 .cs-background {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

            #contact-2320 .cs-background:before {
                /* background color overlay */
                content: '';
                position: absolute;
                display: block;
                height: 100%;
                width: 100%;
                background: #000;
                opacity: 0.72;
                top: 0;
                left: 0;
                z-index: 1;
            }

            #contact-2320 .cs-background img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                /* Makes img tag act as a background image */
                object-fit: cover;
            }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-2320 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: stretch;
        gap: 3.25rem;
    }

    #contact-2320 .cs-container2 {
        max-width: 80rem;
    }

    #contact-2320 .cs-content {
        max-width: 32.625rem;
    }

    #contact-2320 .cs-title,
    #contact-2320 .cs-topper,
    #contact-2320 .cs-text {
        text-align: left;
        margin-left: 0;
    }

    #contact-2320 .cs-title {
        max-width: 32.625rem;
    }

    #contact-2320 .cs-services,
    #contact-2320 .cs-phone {
        width: 47%;
    }

    #contact-2320 .cs-button-solid {
        margin-left: 0;
    }

    #contact-2320 .cs-map {
        max-width: 39.375rem;
        height: auto;
        order: -1;
    }
}

/* Put Email + Phone on the same line at desktop */
@media only screen and (min-width: 64rem) {
    #contact-2320 .cs-half {
        width: 47%;
    }
    /* shared half-width helper */
    /* keep your existing .cs-phone width:47%; */
    /* give email the same half width */
    #contact-2320 .cs-email {
        width: 47%;
    }
}

/* File input row */
#contact-2320 .cs-file-row {
    display: flex;
    gap: .75rem;
    align-items: center;
}

/* Make the file input look like other inputs but allow filename */
#contact-2320 .cs-file-input {
    padding-right: 1rem; /* room for native button text */
}

/* Clear/remove button */
#contact-2320 .cs-file-clear {
    line-height: 3.5rem; /* match input height */
    padding: 0 1rem;
    border: none;
    cursor: pointer;
    white-space: nowrap;
}

/* Filename helper text */
#contact-2320 .cs-file-name {
    display: block;
    margin-top: .35rem;
    color: #9fb1c7;
}


.job {
    color: #DBE6F6;
    max-width: 70ch;
}

.job__header {
    margin-bottom: 1rem;
}

.job h2 {
    margin: 0 0 .25rem;
    font-weight: 800;
}

.job__intro {
    color: #9FB1C7;
    margin: 0 0 1rem;
}

.job h3 {
    margin: 1.25rem 0 .5rem;
    font-weight: 700;
}

.job ul {
    margin: 0 0 .5rem 1.25rem;
}

    .job ul ul {
        margin-top: .35rem;
    }

.job__cta {
    margin-top: 1.25rem;
}

.btn {
    background: #2F59C7;
    color: #fff;
    text-decoration: none;
    padding: .75rem 1rem;
    display: inline-block;
    border: 0;
}

    .btn:hover {
        filter: brightness(1.06);
    }

/*-- -------------------------- -->
<---        Side By Side        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #RPsbs-1280,
    #RPsbsr-1280 {
        padding: var(--sectionPadding);
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        #RPsbs-1280 .cs-container,
        #RPsbsr-1280 .cs-container {
            width: 100%;
            /* changes to 1280px at desktop */
            max-width: 53.125rem;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: stretch;
            flex-direction: column;
            /* 48px - 108px */
            gap: clamp(3rem, 5vw, 6.75rem);
        }

        #RPsbs-1280 .cs-content,
        #RPsbsr-1280 .cs-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;
        }

        #RPsbs-1280 .cs-title,
        #RPsbsr-1280 .cs-title {
            max-width: 20ch;
        }

        #RPsbs-1280 .cs-text,
        #RPsbsr-1280 .cs-text {
            margin-bottom: 1rem;
        }

            #RPsbs-1280 .cs-text:last-of-type,
            #RPsbsr-1280 .cs-text:last-of-type {
                margin-bottom: 2rem;
            }

        #RPsbs-1280 .cs-button-solid,
        #RPsbsr-1280 .cs-button-solid {
            font-size: 1rem;
            /* 46px - 56px */
            line-height: clamp(2.875em, 5.5vw, 3.5em);
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            margin: 0;
            color: #fff;
            border: none;
            min-width: 9.375rem;
            padding: 0 1.5rem;
            background-color: var(--primary);
            border-radius: 0.25rem;
            overflow: hidden;
            display: inline-block;
            position: relative;
            z-index: 1;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
            transition: color 0.3s;
        }

            #RPsbs-1280 .cs-button-solid:before,
            #RPsbsr-1280 .cs-button-solid:before {
                content: "";
                position: absolute;
                height: 100%;
                width: 0%;
                background: #000;
                opacity: 1;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #RPsbs-1280 .cs-button-solid:hover,
            #RPsbsr-1280 .cs-button-solid:hover {
                color: #fff;
            }

                #RPsbs-1280 .cs-button-solid:hover:before,
                #RPsbsr-1280 .cs-button-solid:hover:before {
                    width: 100%;
                }

        #RPsbs-1280 .cs-picture,
        #RPsbsr-1280 .cs-picture {
            width: 100%;
            /* 456px - 598px */
            height: clamp(28.5rem, 46vw, 37.375rem);
            border-radius: 1.25rem;
            overflow: hidden;
            display: block;
            /* sends it to the bottom in the 2nd position */
            order: 2;
            position: relative;
            z-index: 1;
        }

            #RPsbs-1280 .cs-picture:before,
            #RPsbsr-1280 .cs-picture:before {
                /* black overlay */
                content: "";
                width: 100%;
                height: 100%;
                background: #1a1a1a;
                opacity: 0.3;
                position: absolute;
                display: block;
                top: 0;
                left: 0;
                z-index: 1;
            }

            #RPsbs-1280 .cs-picture img,
            #RPsbsr-1280 .cs-picture img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: absolute;
                top: 0;
                left: 0;
            }

        #RPsbs-1280 .cs-background,
        #RPsbsr-1280 .cs-background {
            width: 100%;
            height: 50%;
            background-color: #0B233F;
            display: block;
            position: absolute;
            bottom: 0;
            left: 0;
            z-index: -1;
        }

            #RPsbs-1280 .cs-background img,
            #RPsbsr-1280 .cs-background img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: absolute;
                top: 0;
                left: 0;
            }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #RPsbs-1280 .cs-content,
    #RPsbsr-1280 .cs-content {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
        row-gap: 2rem;
    }

    #RPsbs-1280 .cs-flex,
    #RPsbsr-1280 .cs-flex {
        width: 45%;
    }

    #RPsbs-1280 .cs-title,
    #RPsbsr-1280 .cs-title {
        margin: 0;
    }

    #RPsbs-1280 .cs-text,
    #RPsbsr-1280 .cs-text {
        width: 50%;
    }

    #RPsbs-1280 .cs-button-solid,
    #RPsbsr-1280 .cs-button-solid {
        margin-right: auto;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #RPsbs-1280,
    #RPsbsr-1280 {
        /* moved padding back to the section container */
        padding: var(--sectionPadding);
    }

        #RPsbs-1280 .cs-container,
        #RPsbsr-1280 .cs-container {
            max-width: 80rem;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;
        }

        #RPsbs-1280 .cs-content,
        #RPsbsr-1280 .cs-content {
            width: 100%;
            max-width: 27.0625rem;
            margin: 0;
            flex-direction: column;
            order: 2;
            row-gap: 0;
        }

        #RPsbs-1280 .cs-flex,
        #RPsbsr-1280 .cs-flex {
            width: 100%;
        }

        #RPsbs-1280 .cs-title,
        #RPsbsr-1280 .cs-title {
            margin: 0 0 1rem 0;
            color: var(--headerColor);
        }

        #RPsbs-1280 .cs-text,
        #RPsbsr-1280 .cs-text {
            width: 100%;
        }

        #RPsbs-1280 .cs-picture,
        #RPsbsr-1280 .cs-picture {
            max-width: 46.125rem;
            order: 1;
        }

        #RPsbs-1280 .cs-background,
        #RPsbsr-1280 .cs-background {
            width: 60vw;
            height: 100%;
            /* 172px - 336px */
            margin-right: clamp(11.125rem, 30vw, 21rem);
            border-radius: 0 0 1rem 0;
            left: auto;
            right: 50%;
            top: 0;
        }
}

/*-- -------------------------- -->
<---   Side By Side Reverse     -->
<--- -------------------------- -*/

/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #RPsbsr-1280 .cs-content {
        order: -1;
    }

    #RPsbsr-1280 .cs-background {
        margin: 0;
        /* 172px - 336px */
        margin-left: clamp(11.125rem, 30vw, 21rem);
        border-radius: 1rem 0 0 0;
        left: 50%;
        right: auto;
    }
}


/*-- -------------------------- -->
<---           Hero             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1839 {
        /* 150px = 9.375rem, 200px = 12.5rem */
        padding: clamp(9.375rem, 25.95vw, 12.5rem) 1rem;
        /* prevents the topper line from causing an overflow */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

        #hero-1839 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            /* 120px - 200px */
            gap: clamp(5rem, 10vw, 8rem);
        }

        #hero-1839 .cs-content {
            text-align: center;
            width: 100%;
            max-width: 46.875rem;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        #hero-1839 .cs-title {
            /* 49px - 84px */
            font-size: clamp(4.0625rem, 5vw, 4.25rem);
        }

        #hero-1839 .cs-title,
        #hero-1839 .cs-text {
            color: var(--bodyTextColorWhite);
        }

        #hero-1839 .cs-text {
            margin-bottom: 2rem;
        }

        #hero-1839 .cs-button-group {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        #hero-1839 .cs-button-solid {
            font-size: 1rem;
            font-weight: 700;
            /* 46px - 56px */
            line-height: clamp(2.875rem, 5.5vw, 3.5rem);
            text-align: center;
            text-decoration: none;
            min-width: 12.5rem;
            margin: 0;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
            padding: 0 1.5rem;
            background-color: var(--primary);
            color: var(--bodyTextColorWhite);
            border-radius: 0.25rem;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

            #hero-1839 .cs-button-solid:before {
                content: "";
                width: 0%;
                height: 100%;
                background: #000;
                opacity: 1;
                border-radius: 0.25rem;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #hero-1839 .cs-button-solid:hover:before {
                width: 100%;
            }

        #hero-1839 .cs-card-group {
            width: 100%;
            margin: 0;
            padding: 0;
            display: grid;
            grid-template-columns: repeat(12, 1fr);
            /* 16px - 20px */
            gap: clamp(1rem, 2.3vw, 1.25rem);
        }

        #hero-1839 .cs-item {
            text-align: left;
            list-style: none;
            width: 100%;
            margin: 0;
            /* prevents padding from affecting height and width */
            box-sizing: border-box;
            /* 24px - 40px */
            padding: clamp(1.5rem, 3vw, 2.5rem);
            background-color: #fff;
            box-shadow: 0px 12px 80px 0px rgba(26, 26, 26, 0.08);
            display: flex;
            flex-direction: column;
            align-items: center;
            grid-column: span 12;
            grid-row: span 1;
            gap: 1.25rem;
            position: relative;
            z-index: 1;
        }

        #hero-1839 .cs-picture {
            width: 100%;
            height: 10rem;
            display: block;
            /* causes the image to grow to it's "auto" size, but won't shrink. the cs-info fills the remaining space */
            flex: 1 0 auto;
        }

            #hero-1839 .cs-picture img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        #hero-1839 .cs-h3 {
            /* 20px - 25px */
            font-size: clamp(1.25rem, 2.5vw, 1.5625rem);
            font-weight: bold;
            line-height: 1.2em;
            text-align: inherit;
            /* 8px - 16px */
            margin: 0 0 clamp(0.5rem, 1.2vw, 1rem) 0;
            color: var(--headerColor);
        }

        #hero-1839 .cs-item-text {
            font-size: 1rem;
            line-height: 1.5em;
            margin: 0;
            padding: 0;
            color: var(--bodyTextColor);
        }

        #hero-1839 .cs-link {
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.2em;
            text-decoration: none;
            width: 100%;
            margin: 1.5rem 0 0;
            color: var(--primary);
            display: flex;
            gap: 0.25rem;
        }

            #hero-1839 .cs-link:hover img {
                transform: translateX(0.25rem);
            }

            #hero-1839 .cs-link img {
                transition: transform 0.3s;
            }

        #hero-1839 .cs-background {
            width: 100%;
            height: 50%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -2;
        }

            #hero-1839 .cs-background:before {
                /* Overlay */
                content: "";
                width: 100%;
                height: 100%;
                background: #000;
                /* prevents the cursor from interacting with it */
                pointer-events: none;
                opacity: 0.7;
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                z-index: 1;
            }

            #hero-1839 .cs-background img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                position: absolute;
                top: 0;
                left: 0;
            }
}
/* Large Phone/Tablet - 500px */
@media only screen and (min-width: 31.25rem) {
    #hero-1839 .cs-item {
        flex-direction: row;
        align-items: stretch;
    }

    #hero-1839 .cs-picture {
        height: auto;
        min-height: 8.75rem;
        max-width: 8.75rem;
    }

    #hero-1839 .cs-info {
        align-self: center;
    }

    #hero-1839 .cs-background {
        height: 60%;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #hero-1839 .cs-item {
        grid-column: span 6;
    }

    #hero-1839 .cs-background {
        height: 70%;
    }
}

/*-- -------------------------- -->
<---           Table            -->
<--- -------------------------- -*/

/* Mobile - 360px */
/* Table — modernized */
@media only screen and (min-width: 0rem) {
    :root {
        --bg: #222222;
        --panel: #0f172a; /* table background */
        --panel-2: #0b1324; /* zebra alt row */
        --text: #e8edf7;
        --muted: #aab3c7;
        --brand: #2e6bff;
        --border: rgba(255,255,255,.10);
        --hover: rgba(46,107,255,.10);
    }

    #table-1855 {
        padding: var(--sectionPadding);
        background: var(--bg);
        position: relative;
    }

        #table-1855 .cs-container {
            max-width: 80rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            position: relative;
        }

        #table-1855 .cs-content {
            text-align: center;
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        #table-1855 .cs-title {
            margin: 0 0 1.5rem 0;
            color: var(--text);
            letter-spacing: .02em;
        }

        /* Table wrapper becomes a “card” */
        #table-1855 .cs-table-wrapper {
            width: 100%;
            overflow: auto;
            background: var(--panel);
            border: 1px solid var(--border);
            border-radius: 16px;
            box-shadow: 0 12px 30px rgba(0,0,0,.35);
        }

            /* keep your hidden animation hooks */
            #table-1855 .cs-table-wrapper.cs-hidden {
                pointer-events: none;
                opacity: 0;
                visibility: hidden;
                position: absolute;
                bottom: 0;
                left: 0;
                transform: scaleY(0);
            }

                #table-1855 .cs-table-wrapper.cs-hidden .cs-table {
                    opacity: 0;
                    transform: translateY(2.1875rem);
                }

        /* Table base */
        #table-1855 .cs-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-feature-settings: "tnum" 1,"lnum" 1; /* tabular lining numbers */
        }

        #table-1855 .cs-thead th,
        #table-1855 .cs-th,
        #table-1855 .cs-td {
            font-size: 1rem;
            line-height: 1.3;
            min-width: clamp(5rem, 16vw, 7.5rem);
            padding: 14px 16px;
            border-bottom: 1px solid var(--border);
        }

        /* Sticky gradient header */
        #table-1855 .cs-thead .cs-th {
            position: sticky;
            top: 0;
            z-index: 2;
            background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
            color: var(--text);
            text-transform: uppercase;
            letter-spacing: .08em;
            font-weight: 700;
            text-align: left; /* header left for readability */
        }

        /* Body cells */
        #table-1855 .cs-tbody .cs-th { /* first column (names) */
            background: transparent;
            color: var(--text);
            text-align: left;
            font-weight: 600;
            border-right: 1px solid var(--border);
        }

        #table-1855 .cs-tbody .cs-td {
            color: var(--muted);
            background: transparent;
            text-align: right; /* numeric columns align right */
        }

        /* Zebra & hover */
        #table-1855 .cs-tbody .cs-tr:nth-child(even) .cs-th,
        #table-1855 .cs-tbody .cs-tr:nth-child(even) .cs-td {
            background: var(--panel-2);
        }

        #table-1855 .cs-tbody .cs-tr:hover .cs-th,
        #table-1855 .cs-tbody .cs-tr:hover .cs-td {
            background: var(--hover);
        }

        /* Badge look for the last column (# of Axis) without HTML changes */
        #table-1855 .cs-tbody .cs-tr .cs-td:last-child {
            text-align: right;
            font-weight: 700;
            color: #cfe0ff;
        }

        #table-1855 .cs-tbody .cs-tr .cs-td:last-child {
            display: inline-block;
            margin: 6px 8px 6px 0;
            padding: 4px 12px;
            border-radius: 999px;
            background: rgba(46,107,255,.15);
        }

        /* Borders for the table edges */
        #table-1855 .cs-table thead .cs-tr .cs-th:first-child,
        #table-1855 .cs-table tbody .cs-tr .cs-th:first-child {
            border-left: none;
        }

        #table-1855 .cs-table thead .cs-tr .cs-th:last-child,
        #table-1855 .cs-table tbody .cs-tr .cs-td:last-child {
            border-right: none;
        }

        /* Background image behind everything */
        #table-1855 .cs-background {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
            z-index: -1;
            opacity: .15;
        }
}

/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-302 {
        padding: var(--sectionPadding);
        position: relative;
        z-index: 1;
    }

        #cta-302 .cs-container {
            width: 100%;
            /* changes to 1280px at tablet */
            max-width: 34.375rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* 48px - 64px */
            gap: clamp(3rem, 6vw, 4rem);
        }

        #cta-302 .cs-content {
            /* set text align to left if content needs to be left aligned */
            text-align: center;
            width: 100%;
            max-width: 39.375rem;
            display: flex;
            flex-direction: column;
            /* centers content horizontally, set to flex-start to left align */
            align-items: center;
        }

        #cta-302 .cs-topper {
            color: var(--secondaryLight);
        }

        #cta-302 .cs-title {
            max-width: 20ch;
            color: var(--bodyTextColorWhite);
        }

        #cta-302 .cs-text {
            color: var(--bodyTextColorWhite);
        }

        #cta-302 .cs-form {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
        }

        #cta-302 .cs-input {
            font-size: 1rem;
            width: 100%;
            height: clamp(2.875rem, 5.5vw, 3.5rem);
            margin: 0;
            padding: 0;
            padding-left: 1.25rem;
            border: none;
            border-radius: 0.25rem;
            /* prevents padding from adding to width and height */
            box-sizing: border-box;
            display: block;
        }

            #cta-302 .cs-input::placeholder {
                color: #767676;
            }

        #cta-302 .cs-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(--primaryLight);
            border-radius: 0.25rem;
            display: inline-block;
            position: relative;
            z-index: 1;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
        }

            #cta-302 .cs-button-solid:before {
                content: "";
                position: absolute;
                height: 100%;
                width: 0%;
                background: #000;
                opacity: 1;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #cta-302 .cs-button-solid:hover:before {
                width: 100%;
            }

        #cta-302 .cs-submit {
            width: 100%;
            color: var(--headerColor);
            border: none;
        }

        #cta-302 .cs-background {
            width: 100%;
            height: 100%;
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            z-index: -1;
        }

            #cta-302 .cs-background:before {
                /* black overlay */
                content: "";
                width: 100%;
                height: 100%;
                background: #000;
                opacity: 0.6;
                position: absolute;
                display: block;
                top: 0;
                left: 0;
                z-index: 1;
            }

            #cta-302 .cs-background img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }

        #cta-302 .cs-button-solid {
            font-size: 1rem;
            font-weight: 700;
            /* 46px - 56px */
            line-height: clamp(2.875rem, 5.5vw, 3.5rem);
            text-align: center;
            text-decoration: none;
            min-width: 12.5rem;
            margin: 0;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
            padding: 0 1.5rem;
            background-color: var(--primary);
            color: var(--bodyTextColorWhite);
            border-radius: 0.25rem;
            display: inline-block;
            position: relative;
            z-index: 1;
        }

            #cta-302 .cs-button-solid:before {
                content: "";
                width: 0%;
                height: 100%;
                background: #fff;
                opacity: 1;
                border-radius: 0.25rem;
                position: absolute;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #cta-302 .cs-button-solid:hover {
                color: #1a1a1a;
            }

    #scta-302 .cs-button-solid:hover:before {
        width: 100%;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cta-302 .cs-container {
        max-width: 80rem;
    }

    #cta-302 .cs-form {
        flex-direction: row;
    }

    #cta-302 .cs-input {
        width: 22.5rem;
    }

    #cta-302 .cs-submit {
        width: 13.875rem;
    }
}
/* Large Desktop 1300px - Parallax Scroll */
@media only screen and (min-width: 81.25rem) {
    #cta-302 {
        background: url("../images/waitlist_signup.jpg");
        background-size: cover;
        background-position: center 20%;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

        #cta-302 .cs-background img {
            display: none;
        }
}

/*-- -------------------------- -->
<---          Contact           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-984 {
        position: relative;
        z-index: 1;
    }

        #contact-984 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 3rem;
        }

        #contact-984 .cs-content {
            /* set text aling 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;
        }

        #contact-984 .cs-title {
            margin: 0;
        }

        #contact-984 .cs-right {
            width: 100%;
            /* changes to 630px at desktop */
            max-width: 36.5rem;
            /* moved section padding to the content so the picture can be full width */
            padding: var(--sectionPadding);
            padding-top: 0;
            /* prevents padding and border from affecting height and width */
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 2.5rem;
        }

        #contact-984 .cs-form {
            width: 100%;
            padding: 0;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            align-items: center;
            flex-direction: column;
            gap: 0.75rem;
        }

        #contact-984 .cs-label {
            font-size: 1rem;
            width: 100%;
            color: var(--headerColor);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            gap: 0.5rem;
            color:white;
        }

        #contact-984 .cs-input {
            font-size: 1rem;
            width: 100%;
            height: 3.5rem;
            padding: 0;
            padding-left: 1.5rem;
            color: var(--headerColor);
            background-color: #f7f7f7;
            border: none;
            /* prevents padding from adding to height and width */
            box-sizing: border-box;
            transition: border-color 0.3s;
        }

            #contact-984 .cs-input:hover {
                border-color: var(--secondary);
            }

            #contact-984 .cs-input:focus {
                outline: 1px solid var(--secondary);
            }

            #contact-984 .cs-input::placeholder {
                color: #767676;
                opacity: 0.8;
            }

        #contact-984 .cs-textarea {
            min-height: 7.5rem;
            padding-top: 1.5rem;
            margin-bottom: 1.75rem;
            font-family: inherit;
        }

        #contact-984 .cs-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 2rem;
            background-color: var(--primary);
            display: inline-block;
            position: relative;
            z-index: 1;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
        }

            #contact-984 .cs-button-solid:before {
                content: "";
                position: absolute;
                height: 100%;
                width: 0%;
                background: #000;
                opacity: 1;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #contact-984 .cs-button-solid:hover:before {
                width: 100%;
            }

        #contact-984 .cs-submit {
            min-width: 13.375rem;
            border: none;
            border-radius: 0;
        }

            #contact-984 .cs-submit:hover {
                cursor: pointer;
            }

        #contact-984 .cs-picture {
            display: block;
            position: relative;
            width: 100%;
            /* 360px - 600px */
            height: clamp(22.5rem, 100vw, 37.5rem);
        }

            #contact-984 .cs-picture img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
}
/* Desktop / Tablet – single, clean layout */
/* Desktop layout: full-bleed image on the left, form on the right */
@media only screen and (min-width: 48rem) {
    /* remove section padding so image can touch the left edge */
    #contact-984 {
        padding: 0; /* important */
        position: relative;
        background: #0e2844; /* your dark bg */
    }

        /* full-width container becomes a 2-col grid */
        #contact-984 .cs-container {
            max-width: none; /* important */
            width: 100%;
            margin: 0;
            padding: 0; /* no internal padding so the img truly flushes left */
            display: grid;
            grid-template-columns: 50vw 1fr; /* image = half the viewport width */
            align-items: stretch;
            gap: 0;
        }

        /* image fills entire left column edge-to-edge */
        #contact-984 .cs-picture {
            grid-column: 1;
            height: 100vh; /* full screen height */
            width: 100%;
            border-radius: 0; /* remove rounded corners to avoid blue showing */
            overflow: hidden;
        }

            #contact-984 .cs-picture img {
                width: 100%;
                height: 100%;
                object-fit: cover; /* cover the area without distortion */
                display: block;
            }

        /* right column holds the form; add the spacing here */
        #contact-984 .cs-right {
            grid-column: 2;
            width: 100%;
            max-width: 48rem; /* optional cap */
            padding: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
            margin-left: 0;
        }

        /* keep form controls stretching nicely */
        #contact-984 .cs-form {
            align-items: stretch;
        }
}




/* Drag & Drop uploader */
.cs-file {
    margin-top: 1rem;
}

.cs-file-legend {
    font-weight: 700;
    margin-bottom: .5rem;
    color: var(--bodyTextColorWhite, #fff);
}

.cs-dropzone {
    position: relative;
    border: 1px dashed rgba(255,255,255,.35);
    background: rgba(255,255,255,.04);
    border-radius: 12px;
    padding: 1rem;
    cursor: pointer;
    outline: none;
    transition: background .2s, border-color .2s, box-shadow .2s;
}

    .cs-dropzone:focus {
        box-shadow: 0 0 0 3px rgba(46,107,255,.35);
    }

    .cs-dropzone.dragover {
        background: rgba(46,107,255,.08);
        border-color: rgba(46,107,255,.65);
    }

.cs-dropzone-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    color: #cfd6e4;
    text-align: center;
    pointer-events: none;
}

.cs-dropzone svg {
    opacity: .75;
}

.cs-link {
    text-decoration: underline;
}

.cs-accept-note {
    font-size: .85rem;
    color: #9fb0ce;
}

.cs-dropzone input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.cs-file-list {
    list-style: none;
    margin: .75rem 0 0;
    padding: 0;
    display: grid;
    gap: .5rem;
}

.cs-file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .6rem .75rem;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 10px;
    background: rgba(255,255,255,.03);
    color: #dde6f7;
}

.cs-file-meta {
    display: flex;
    gap: .5rem;
    align-items: center;
    min-width: 0;
}

.cs-file-name {
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42ch;
}

.cs-file-size {
    color: #9fb0ce;
    font-size: .9rem;
}

.cs-file-remove {
    background: transparent;
    color: #cfe0ff;
    border: 1px solid rgba(255,255,255,.18);
    padding: .25rem .6rem;
    border-radius: 8px;
    cursor: pointer;
}

    .cs-file-remove:hover {
        background: rgba(255,255,255,.08);
    }

.cs-file-clear {
    background: #3a4660;
    color: #fff;
    border: 1px solid rgba(255,255,255,.2);
}

    .cs-file-clear:hover {
        background: #4b5980;
    }

.cs-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: .75rem;
}

/* optional: keep nice on narrow screens */
@media (max-width: 480px) {
    .cs-actions {
        flex-wrap: wrap;
    }
}

/* make both buttons same height (optional) */
.cs-actions .cs-button-solid {
    min-height: 44px;
}

.cs-dropzone-inner {
    pointer-events: auto;
}

/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0em) {
    #banner-1014 {
        padding: 0 1rem;
        /* 160px - 245px */
        padding-top: clamp(10rem, 25vw, 15.3125rem);
        padding-bottom: 7.5rem;
        background-color: #000;
        position: relative;
        z-index: 1;
    }

        #banner-1014 .cs-container {
            text-align: center;
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
        }

        #banner-1014 .cs-picture {
            width: 100%;
            margin: 0 0 0.75rem;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            position: relative;
        }

        #banner-1014 .cs-icon {
            width: 40%;
            /* 100px - 180px */
            max-width: clamp(6.25rem, 18vw, 11.25rem);
            height: auto;
            /* prevents flexbox from squishing it */
            flex: none;
        }

        #banner-1014 .cs-int-title {
            /* 39px - 61px */
            font-size: clamp(2.4375rem, 6.5vw, 3.8125rem);
            font-weight: 900;
            line-height: 1.2em;
            text-align: center;
            max-width: 43.75rem;
            margin: 0 0 1rem 0;
            color: var(--bodyTextColorWhite);
            position: relative;
        }

        #banner-1014 .cs-text {
            color: var(--bodyTextColorWhite);
        }

        #banner-1014 .cs-background {
            width: 100%;
            height: 100%;
            opacity: 0.7;
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            z-index: -1;
        }

            #banner-1014 .cs-background:before {
                /* black overlay box */
                content: "";
                width: 100%;
                height: 100%;
                background: #000;
                opacity: 0.1;
                position: absolute;
                display: block;
                top: 0;
                left: 0;
                z-index: 1;
            }

            #banner-1014 .cs-background img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #sbs-1014 {
        padding: var(--sectionPadding);
        background-color: #f7f7f7;
    }

        #sbs-1014 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* 48px - 64px */
            gap: clamp(3rem, 6vw, 4rem);
        }

        #sbs-1014 .cs-content {
            /* set text align to left if content needs to be left aligned */
            text-align: left;
            width: 100%;
            max-width: 33.875rem;
            display: flex;
            flex-direction: column;
            /* centers content horizontally, set to flex-start to left align */
            align-items: flex-start;
        }

        #sbs-1014 .cs-text {
            font-size: var(--bodyFontSize);
            line-height: 1.5em;
            text-align: inherit;
            width: 100%;
            max-width: 40.625rem;
            margin: 0;
            color: var(--bodyTextColor);
        }

        #sbs-1014 .cs-text {
            margin-bottom: 1rem;
        }

            #sbs-1014 .cs-text:last-of-type {
                margin-bottom: 2rem;
            }

        #sbs-1014 .cs-quote {
            margin: 0 0 2rem 0;
            /* 16px - 32px */
            padding: clamp(1rem, 3vw, 2rem);
            background-color: #1a1a1a;
            position: relative;
        }

        #sbs-1014 .cs-quote-text {
            /* 14px - 16px */
            font-size: clamp(0.875rem, 1.5vw, 1rem);
            line-height: 1.5em;
            margin: 0 0 1rem;
            color: var(--bodyTextColorWhite);
            display: block;
        }

        #sbs-1014 .cs-name {
            font-size: 1rem;
            line-height: 1.2em;
            text-transform: uppercase;
            font-weight: bold;
            margin: 0 0 0.25rem;
            color: var(--primary);
            display: block;
        }

        #sbs-1014 .cs-job {
            font-size: 0.875rem;
            line-height: 1.5em;
            color: var(--bodyTextColorWhite);
            display: block;
        }

        #sbs-1014 .cs-quote-icon {
            /* 60px - 136px */
            width: clamp(3.75rem, 10vw, 8.5rem);
            height: auto;
            position: absolute;
            bottom: 0rem;
            /* 16px - 32px */
            right: clamp(1rem, 4vw, 2rem);
        }

        #sbs-1014 .cs-image-group {
            /* scaling the font size with the view width */
            font-size: min(2.31vw, .7em);
            /* using ems so we can use font size to scale the whole section */
            width: 39.4375em;
            height: 39.75em;
            position: relative;
        }

        #sbs-1014 .cs-picture {
            position: absolute;
            display: block;
        }

            #sbs-1014 .cs-picture img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                /* makes image act like a background image */
                object-fit: cover;
            }

        #sbs-1014 .cs-picture1 {
            width: 32.625em;
            height: 36.3125em;
            left: 0;
            top: 0;
        }

        #sbs-1014 .cs-picture2 {
            width: 25.875em;
            height: 25em;
            background-color: #fff;
            box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 40px;
            /* 6px - 12px */
            border: clamp(0.375em, 1.5vw, 0.75em) solid #fff;
            right: 0;
            bottom: 0;
        }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #sbs-1014 .cs-container {
        flex-flow: row;
        justify-content: space-between;
        gap: 3.25rem;
    }

    #sbs-1014 .cs-image-group {
        font-size: min(1.2vw, 1em);
        flex: none;
    }

    #sbs-1014 .cs-content {
        margin: 0;
    }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-1014 {
        padding: var(--sectionPadding);
    }

        #cta-1014 .cs-container {
            width: 100%;
            max-width: 80rem;
            margin: auto;
            /* 32px - 88px top & bottom */
            /* 24px - 88px left & right */
            padding: clamp(2em, 6.3vw, 5.5em) clamp(1.5em, 5.7vw, 5.5em);
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            gap: 2rem;
            position: relative;
            /* clips the corners for the border radius to show */
            overflow: hidden;
            z-index: 1;
            /* prevents padding from adding to height and width */
            box-sizing: border-box;
        }

        #cta-1014 .cs-background {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            display: block;
            z-index: -1;
        }

            #cta-1014 .cs-background:before {
                /* black overlay */
                content: "";
                width: 100%;
                height: 100%;
                background: #000;
                opacity: 0.5;
                position: absolute;
                display: block;
                top: 0;
                left: 0;
                z-index: 1;
            }

            #cta-1014 .cs-background img {
                position: absolute;
                top: 0;
                left: 0;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }

        #cta-1014 .cs-left-section {
            max-width: 27.125rem;
        }

        #cta-1014 .cs-title {
            /* 25px - 49px */
            font-size: clamp(1.5625rem, 3.9vw, 3.0625rem);
            font-weight: 900;
            line-height: 1.2em;
            text-align: left;
            max-width: 50rem;
            /* 20px - 48px */
            margin: 0 auto clamp(1.25rem, 4.7vw, 3rem);
            color: var(--bodyTextColorWhite);
            position: relative;
        }

        #cta-1014 .cs-button-solid {
            font-size: 1rem;
            /* 46px - 56px */
            line-height: clamp(2.875em, 5.5vw, 3.5em);
            text-decoration: none;
            font-weight: 700;
            text-align: center;
            margin: auto;
            color: #fff;
            min-width: 9.375rem;
            padding: 0 2rem;
            background-color: var(--primary);
            display: inline-block;
            position: relative;
            z-index: 1;
            /* prevents padding from adding to the width */
            box-sizing: border-box;
        }

            #cta-1014 .cs-button-solid:before {
                content: "";
                position: absolute;
                height: 100%;
                width: 0%;
                background: #000;
                opacity: 1;
                top: 0;
                left: 0;
                z-index: -1;
                transition: width 0.3s;
            }

            #cta-1014 .cs-button-solid:hover:before {
                width: 100%;
            }

        #cta-1014 .cs-content {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: flex-start;
            /* 12px - 20px */
            gap: clamp(0.75rem, 1.6vw, 1.25rem);
        }

        #cta-1014 .cs-header {
            /* 20px - 25px */
            font-size: clamp(1.25rem, 2.4vw, 1.5625rem);
            font-weight: bold;
            color: var(--primary);
            display: block;
        }

        #cta-1014 .cs-p {
            /* 14px - 20px */
            font-size: clamp(0.875rem, 1.5vw, 1.25rem);
            line-height: 1.5em;
            margin: 0;
            color: var(--bodyTextColorWhite);
        }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cta-1014 .cs-container {
        flex-direction: row;
        justify-content: space-between;
    }

    #cta-1014 .cs-content {
        align-items: flex-end;
        text-align: right;
        /* prevents flexbox from squishing it */
        flex: none;
    }
}
                                

                                