:root {
    --bg01: #FFF; 
    --bg02: #000; 
    --bg03: #1A1A1A; 
    --bg04: #F2F2F2; 
    
    /* Background Colors E41917 */
    --primary: #2BADE8;
    --primaryLight: #2BADE8;
    --secondary: #2BADE8;
    --secondaryLight: #2BADE8;
    
    /* Font Colors */
    --headerColor: #1A1A1A;
    --bodyTextColor: #555555;
    --bodyTextColorWhite: #FAFBFC;
    
    /* Fonts */
    --subFont: Roboto-Bold, Arial, Helvetica;
    --titleFont: Oswald-Bold, Impact, Helvetica;
    --bodyFont: Roboto-Light, sans-serif, arial;
    
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
    
    /* Element Colors */
    --itemColor: #F7F7F7;
    --borderColor: #C8C8C8;
}
body {
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
*, *:before, *:after {
    box-sizing: border-box;
}
a {
    cursor: pointer;
}
#dark-mode-toggle {
    cursor: pointer;
}
@font-face {
    font-weight: 900;
    font-style: normal;
    font-display: swap; 
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2'); 
}
@font-face {
    font-weight: 900;
    font-display: swap;
    font-style: normal;
    font-family: 'Oswald-Bold';
    src: url('../fonts/Oswald-Bold.woff2') format('woff2');
}
@font-face {
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    font-family: 'Roboto-Light';
    src: url('../fonts/Roboto-Light.woff2') format('woff2');
}
.cs-topper {
    display: block;
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    letter-spacing: .1em;
    color: var(--primary);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    font-family: var(--subFont);
    font-size: var(--topperFontSize);
}
.cs-title {
    font-weight: 900;
    line-height: 1.2em;
    margin: 0 0 1rem 0;
    position: relative;
    text-align: inherit;
    max-width: 43.75rem;
    color: var(--headerColor);
    text-transform: uppercase;
    font-family: var(--titleFont);
    font-size: var(--headerFontSize);
}
.cs-text {
    margin: 0;
    width: 100%;
    line-height: 1.5em;
    text-align: inherit;
    max-width: 40.625rem;
    color: var(--bodyTextColor);
    font-family: var(--bodyFont);
    font-size: var(--bodyFontSize);
}
/* Universal Font Styling */
.cs-h3,
.cs-name,
.cs-header,
.cs-number,
.cs-button-text {
    font-family: var(--subFont);
}
.cs-item-text,
.cs-top-link,
.cs-li-link,
.cs-desc,
.cs-credit,
.cs-bottom-link,
.cs-credit-link,
.cs-contact-link,
.cs-link,
.cs-desc,
.cs-item-p,
.cs-nav-link {
    font-family: var(--bodyFont);
}
/* Mobile Navigation */
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    body.cs-open {
        overflow: hidden;
    }
    #cs-navigation {
        width: 100%;
        z-index: 10000;
        position: fixed;
        background: #FFF;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    #cs-navigation:after {
        /* on hover green bar */
        top: 0;
        left: 0%;
        width: 40%;
        opacity: 1;
        content: '';
        z-index: -1;
        height: 100%;
        display: block;
        position: absolute;
        max-width: 9.125rem;
        background: var(--primary);
        transition: width 0.2s, max-width 0.3s, background-color 0.3s;
    }
    #cs-navigation:before {
        top: 0;
        right: 0;
        opacity: 0;
        content: '';
        width: 100%;
        height: 0vh;
        z-index: -11;
        display: block;
        position: absolute;
        backdrop-filter: blur(10px);
        background: rgba(0, 0, 0, 0.6);
        -webkit-backdrop-filter: blur(10px);
        transition: height 0.5s, opacity 0.3s;
    }
    #cs-navigation.cs-active:after {
        width: 100%;
        max-width: 100%;
        background: #484848;
    }
    #cs-navigation.cs-active:before {
        opacity: 1;
        height: 150vh;
    }
    #cs-navigation.cs-active .cs-top-bar {
        z-index: initial;
    }
    #cs-navigation.cs-active .cs-top-bar:before {
        display: none;
    }
    #cs-navigation.cs-active .cs-link {
        color: var(--bodyTextColorWhite);
    }
    #cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        transform: scaleY(1);
        transition-delay: 0.2s;
    }
    #cs-navigation.cs-active .cs-li {
        opacity: 1;
        transform: translateY(0);
    }
    #cs-navigation.scroll .cs-top-bar {
        height: 0;
        opacity: 0;
        overflow: hidden;
        padding-bottom: 0;
    }
    #cs-navigation.scroll .cs-top-bar:before {
        opacity: 0;
    }
    #cs-navigation.scroll .cs-toggle {
        margin-top: 0;
    }
    #cs-navigation .cs-top-bar {
        margin: 0;
        z-index: -3;
        position: relative;
        padding: 0 0 0.75rem 0;
        transition: height 0.3s, padding-bottom 0.3s, opacity 0.3s;
    }
    #cs-navigation .cs-top-bar:before {
        /* grey line */
        bottom: 0;
        opacity: 1;
        content: '';
        width: 100%;
        height: 1px;
        z-index: -2;
        right: -1rem;
        display: block;
        position: absolute;
        background: #EFF1F0;
        transition: opacity 0.3s;
    }
    #cs-navigation .cs-logo {
        top: 0;
        left: 0;
        width: 40%;
        z-index: 10;
        height: 100%;
        display: flex;
        position: absolute;
        max-width: 9.125rem;
        align-items: center;
        padding: 0.75rem 1rem;
        box-sizing: border-box;
        justify-content: center;
    }
    #cs-navigation .cs-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #cs-navigation .cs-item {
        margin: 0;
        display: flex;
        list-style: none;
        align-items: center;
        justify-content: flex-end;
    }
    #cs-navigation .cs-remove {
        display: none;
    }
    #cs-navigation .cs-picture {
        width: 2rem;
        height: 2rem;
        display: none;
        margin-right: 1rem;
        border-radius: 50%;
        align-items: center;
        background: #EFF1F0;
        justify-content: center;
        transition: background-color 0.3s;
    }
    #cs-navigation .cs-icon {
        width: 1rem;
        height: auto;
        display: block;
    }
    #cs-navigation .cs-header {
        display: none;
    }
    #cs-navigation .cs-link {
        margin: 0;
        display: block;
        line-height: 1.5em;
        font-size: 0.875rem;
        text-align: inherit;
        text-decoration: none;
        transition: color 0.3s;
        color: var(--bodyTextColor);
    }
    #cs-navigation .cs-toggle {
        border: none;
        display: flex;
        align-items: center;
        border-radius: 0.25rem;
        justify-content: center;
        margin: 0.75rem 0 0 auto;
        width: clamp(2.75rem, 6vw, 3rem);
        height: clamp(2.75rem, 6vw, 3rem);
    }
    #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 {
        opacity: 0;
        bottom: 100%;
    }
    #cs-navigation .cs-box {
        position: relative;
        width: clamp(1.5rem, 2vw, 1.75rem);
        height: clamp(0.875rem, 1.5vw, 1rem);
    }
    #cs-navigation .cs-line {
        left: 50%;
        width: 100%;
        height: 2px;
        border-radius: 2px;
        position: absolute;
        background: #1A1A1A;
        transform: translateX(-50%);
    }
    #cs-navigation .cs-line1 {
        top: 0;
        animation-duration: 0.7s;
        transform-origin: center;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        transition: transform 0.5s, top 0.3S, left 0.3S;
    }
    #cs-navigation .cs-line2 {
        top: 50%;
        animation-duration: 0.7s;
        animation-direction: normal;
        animation-fill-mode: forwards;
        animation-timing-function: ease;
        transform: translateX(-50%) translateY(-50%);
        transition: top 0.3s, left 0.3s, transform 0.5s;
    }
    #cs-navigation .cs-line3 {
        bottom: 0;
        transition: bottom 0.3s, opacity 0.3s;
    }
    #cs-navigation .cs-ul-wrapper {
        left: 0;
        top: 100%;
        opacity: 0;
        width: 100%;
        z-index: -1;
        overflow: hidden;
        background: #FFF;
        position: absolute;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.4s, opacity 0.3s;
        box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    }
    #cs-navigation .cs-ul {
        margin: 0;
        width: 100%;
        height: auto;
        gap: 1.25rem;
        display: flex;
        max-height: 65vh;
        overflow: scroll;
        align-items: center;
        padding: 3rem 0 3rem 0;
        flex-direction: column;
        justify-content: flex-start;
    }
    #cs-navigation .cs-li {
        opacity: 0;
        width: 100%;
        margin-right: 0;
        list-style: none;
        transform: translateY(-4.375rem);
        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-link {
        margin: 0;
        line-height: 1.2em;
        position: relative;
        text-decoration: none;
        display: inline-block;
        color: var(--headerColor);
        font-size: clamp(1rem, 2.5vw, 1.5rem);
    }
    #cs-navigation .cs-li-link:before {
        /* active state underline */
        left: 0;
        opacity: 1;
        content: '';
        width: 100%;
        height: 1px;
        display: none;
        bottom: -0.125rem;
        position: absolute;
        background: currentColor;
    }
    #cs-navigation .cs-li-link.cs-active:before {
        display: block;
    }
    #cs-navigation .cs-button-solid {
        display: none;
    }
}
/* Mobile Navigation Dark Mode */
@media only screen and (max-width: 63.9375rem) {
    body.dark-mode #cs-navigation {
        background: var(--dark);
    }
    body.dark-mode #cs-navigation .cs-line {
        background: #FAFBFC;
    }
    body.dark-mode #cs-navigation .cs-ul-wrapper {
        background: var(--dark);
    }
    body.dark-mode #cs-navigation .cs-link,
    body.dark-mode #cs-navigation .cs-li-link {
        color: var(--bodyTextColorWhite);
    }
}
/* Tablet - 650px - 1023px */
@media only screen and (min-width: 40.625rem) and (max-width: 63.9375rem) {
    #cs-navigation .cs-top-bar {
        display: flex;
        flex-direction: row;
        justify-content: flex-end;
    }
    #cs-navigation .cs-item {
        position: relative;
    }
    #cs-navigation .cs-item:nth-of-type(2):after {
        display: none;
    }
    #cs-navigation .cs-item:after {
        /* divider line */
        width: 1px;
        opacity: 1;
        content: '';
        height: 100%;
        margin: 0 1rem;
        display: block;
        position: relative;
        background: #EFF1F0;
    }
    #cs-navigation .cs-picture {
        display: flex;
    }
    #cs-navigation .cs-ul {
        padding-top: 4.6875rem;
        gap: 2rem;
    }
    #cs-navigation .cs-li-link {
        font-size: 1.5rem;
    }
}
/* Mobile Navigation Dropdown */
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
    #cs-navigation .cs-li {
        text-align: center;
        width: 100%;
        display: block;
    }
    #cs-navigation .cs-dropdown {
        position: relative;
        color: var(--bodyTextColorWhite);
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
        opacity: 1;
        height: auto;
        padding: 0.75rem 0;
        visibility: visible;
        margin: 0.75rem 0 0 0;
    }
    #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
        opacity: 1;
    }
    #cs-navigation .cs-dropdown .cs-li-link {
        position: relative;
        transition: opacity 0.3s;
    }
    #cs-navigation .cs-drop-icon {
        width: 0.9375rem;
        height: auto;
        position: absolute;
        top: 50%;
        right: -1.25rem;
        transform: translateY(-50%);
    }
    #cs-navigation .cs-drop-ul {
        height: 0;
        margin: 0;
        padding: 0;
        opacity: 0;
        width: 100%;
        gap: 0.75rem;
        display: flex;
        overflow: hidden;
        visibility: hidden;
        align-items: center;
        flex-direction: column;
        background: var(--primary);
        justify-content: flex-start;
        transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
    }
    #cs-navigation .cs-drop-li {
        list-style: none;
    }
    #cs-navigation .cs-li-link.cs-drop-link {
        color: #FFF;
        font-size: clamp(0.875rem, 2vw, 1.25rem);
    }
}
/* Mobile Navigation Dropdown Dark Mode */
@media only screen and (max-width: 63.9375rem) {
    #cs-navigation .cs-drop-ul {
        background: var(--medium);
    }
}
/* Desktop Navigation Dropdown */
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-navigation .cs-dropdown {
        position: relative;
    }
    #cs-navigation .cs-dropdown:hover {
        cursor: pointer;
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-ul {
        opacity: 1;
        visibility: visible;
        transform: scaleY(1);
    }
    #cs-navigation .cs-dropdown:hover .cs-drop-li {
        opacity: 1;
        transform: translateY(0);
    }
    #cs-navigation .cs-drop-icon {
        height: auto;
        width: 0.9375rem;
        display: inline-block;
    }
    #cs-navigation .cs-drop-ul {
        margin: 0;
        top: 100%;
        padding: 0;
        opacity: 0;
        z-index: -100;
        overflow: hidden;
        background: #FFF;
        min-width: 12.5rem;
        visibility: hidden;
        position: absolute;
        transform: scaleY(0);
        transform-origin: top;
        border-bottom: 5px solid var(--primary);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 10px 16px;
        transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
    }
    #cs-navigation .cs-drop-li {
        opacity: 0;
        width: 100%;
        height: auto;
        display: block;
        font-size: 1rem;
        list-style: none;
        text-decoration: none;
        color: var(--bodyTextColor);
        transform: translateY(-10/16rem);
        transition: opacity 0.6s, transform 0.6s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(1) {
        transition-delay: 0.05s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(2) {
        transition-delay: 0.1s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(3) {
        transition-delay: 0.15s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(4) {
        transition-delay: 0.2s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(5) {
        transition-delay: 0.25s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(6) {
        transition-delay: 0.3s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(7) {
        transition-delay: 0.35s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(8) {
        transition-delay: 0.4s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(9) {
        transition-delay: 0.45s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(10) {
        transition-delay: 0.5s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(11) {
        transition-delay: 0.55s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(12) {
        transition-delay: 0.6s;
    }
    #cs-navigation .cs-drop-li:nth-of-type(13) {
        transition-delay: 0.65s;
    }
    #cs-navigation .cs-li-link.cs-drop-link {
        width: 100%;
        display: block;
        font-size: 1rem;
        padding: 0.75rem;
        line-height: 1.5em;
        white-space: nowrap;
        text-decoration: none;
        box-sizing: border-box;
        color: var(--bodyTextColor);
        transition: color 0.3s, background-color 0.3s;
    }
    #cs-navigation .cs-li-link.cs-drop-link:hover {
        background: #F7F7F7;
    }
    #cs-navigation .cs-li-link.cs-drop-link:before {
        display: none;
    }
}
/* Desktop Navigation Dropdown Dark Mode */
@media only screen and (min-width: 64rem) {
    body.dark-mode #cs-navigation .cs-drop-ul {
        background: var(--medium);
    }
    body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
        background: var(--dark);
    }
}
/* Desktop Navigation */
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-navigation {
        width: 100%;
        z-index: 10000;
        position: fixed;
        background: #FFF;
        box-sizing: border-box;
        padding: 1rem 1rem 0 1rem;
        transition: padding-top 0.3s;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    #cs-navigation.scroll {
        padding-top: 0;
    }
    #cs-navigation.scroll .cs-top-bar {
        height: 0;
        opacity: 0;
        margin-bottom: 0;
        overflow: hidden;
        padding-bottom: 0;
        transform: translateY(-50/16rem);
    }
    #cs-navigation.scroll .cs-top-bar:before {
        width: 0;
    }
    #cs-navigation.scroll .cs-toggle {
        margin-top: 0;
    }
    #cs-navigation .cs-toggle {
        display: none;
    }
    #cs-navigation .cs-logo {
        top: 0;
        left: 0;
        width: 18.4%;
        height: 100%;
        z-index: 100;
        display: flex;
        max-width: 20rem;
        position: absolute;
        align-items: center;
        box-sizing: border-box;
        justify-content: center;
        background-color: var(--primary);
        padding: 1rem clamp(2rem, 3vw, 3rem);
    }
    #cs-navigation .cs-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    #cs-navigation .cs-top-bar {
        margin: 0;
        width: 100%;
        display: flex;
        position: relative;
        padding: 0 0 1rem 0;
        align-items: center;
        justify-content: flex-end;
        transition: height 0.3s, opacity 0.3s, padding-bottom 0.3s, margin-bottom 0.3s, transform 0.3s;
    }
    #cs-navigation .cs-top-bar:before {
        /* grey line */
        bottom: 0;
        opacity: 1;
        content: '';
        width: 100%;
        height: 1px;
        z-index: -2;
        right: -1rem;
        display: block;
        position: absolute;
        background: #EFF1F0;
        transition: width 0.3s;
    }
    #cs-navigation .cs-item {
        margin: 0;
        display: flex;
        list-style: none;
        position: relative;
        align-items: center;
        justify-content: flex-start;
    }
    #cs-navigation .cs-item:last-of-type:after {
        display: none;
    }
    #cs-navigation .cs-item:hover .cs-picture {
        transform: scale(1.1);
    }
    #cs-navigation .cs-item:after {
        /* divider line */
        width: 1px;
        opacity: 1;
        content: '';
        height: 3rem;
        display: block;
        position: relative;
        background: #EFF1F0;
        margin: 0 clamp(1.5rem, 5vw, 2.75rem);
    }
    #cs-navigation .cs-picture {
        width: 3rem;
        height: 3rem;
        display: flex;
        margin-right: 1rem;
        border-radius: 50%;
        align-items: center;
        background: #EFF1F0;
        justify-content: center;
        transition: transform 0.3s;
    }
    #cs-navigation .cs-icon {
        height: auto;
        width: 1.5rem;
        display: block;
    }
    #cs-navigation .cs-header {
        margin: 0;
        display: block;
        font-size: 1rem;
        font-weight: 700;
        color: var(--headerColor);
    }
    #cs-navigation .cs-link {
        margin: 0;
        display: block;
        line-height: 1.5em;
        font-size: 0.875rem;
        text-align: inherit;
        text-decoration: none;
        transition: color 0.3s;
        color: var(--bodyTextColor);
    }
    #cs-navigation .cs-link:hover {
        text-decoration: underline;
    }
    #cs-navigation .cs-bottom-bar {
        width: 100%;
        display: flex;
        gap: 32/16rem;
        align-items: center;
        box-sizing: border-box;
        justify-content: space-between;
        padding: 0 0 0 clamp(14.6875rem, 23vw, 26.25rem);
    }
    #cs-navigation .cs-ul {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: clamp(1.25rem, 2.6vw, 2.25rem);
    }
    #cs-navigation .cs-li {
        flex: none;
        padding: 2rem 0;
        list-style: none;
    }
    #cs-navigation .cs-li:last-of-type {
        padding: 0;
        margin-left: auto;
    }
    #cs-navigation .cs-li-link {
        margin: 0;
        display: block;
        line-height: 1.5em;
        position: relative;
        text-decoration: none;
        color: var(--bodyTextColor);
        font-size: clamp(0.875rem, 1vw, 1rem);
    }
    #cs-navigation .cs-li-link:hover:before {
        width: 100%;
    }
    #cs-navigation .cs-li-link.cs-active:before {
        width: 100%;
    }
    #cs-navigation .cs-li-link:before {
        /* active state underline */
        left: 0;
        width: 0%;
        opacity: 1;
        content: '';
        height: 2px;
        bottom: 0rem;
        display: block;
        position: absolute;
        transition: width 0.3s;
        background: var(--primary);
    }
    #cs-navigation .cs-nav-button {
        border-radius: 0;
        margin-left: auto;
        z-index: 1;
        font-size: 1rem;
        font-weight: 700;
        padding: 0 1.5rem;
        text-align: center;
        position: relative;
        min-width: 9.375rem;
        letter-spacing: 2px;
        text-decoration: none;
        display: inline-block;
        box-sizing: border-box;
        transition: color 0.3s;
        text-transform: uppercase;
        background: var(--primaryLight);
        font-family: var(--subFont);
        border-radius: 0 1rem 0 1rem;
        color: var(--bodyTextColorWhite);
        line-height: clamp(2.875rem, 5.5vw, 3.5rem);
        transition: background-color 0.4s, color 0.4s, border-radius 0.4s;
    }
    #cs-navigation .cs-button-solid:hover {
        color: #000;
        border-radius: 1rem 0 1rem 0;
        background: var(--secondary);
    }
}
/* Desktop Navigation Dark Mode */
@media only screen and (min-width: 64rem) {
    body.dark-mode #cs-navigation {
        background: var(--dark);
    }
    body.dark-mode #cs-navigation .cs-header,
    body.dark-mode #cs-navigation .cs-li-link {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #cs-navigation .cs-link {
        color: var(--bodyTextColorDark);
    }
}
/* Banner Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #banner-2285 {
        z-index: 1;
        overflow: hidden;
        position: relative;
        padding: var(--sectionPadding);
        padding-top: clamp(11.875rem, 25vw, 17.5rem);
        padding-bottom: 0rem;
        
    }
    #banner-2285 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        text-align: center;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    #banner-2285 .cs-int-title {
        font-weight: 700;
        margin: 0 0 1rem;
        line-height: 1.2em;
        position: relative;
        text-align: inherit;
        text-transform: uppercase;
        font-family: var(--titleFont);
        color: var(--bodyTextColorWhite);
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
    }
    #banner-2285 .cs-text {
        text-align: left;
        max-width: 43.75rem;
        color: var(--bodyTextColorWhite);
        margin-bottom: clamp(3.75rem, 7vw, 7.5rem);
    }
    #banner-2285 .cs-breadcrumbs {
        z-index: 1;
        display: flex;
        position: relative;
        align-items: center;
        justify-content: center;
        padding: clamp(1rem, 3vw, 1.5rem) 0;
    }
    #banner-2285 .cs-breadcrumbs:before {
        top: 0;
        left: 50%;
        content: '';
        z-index: -1;
        width: 200vw;
        height: 100%;
        opacity: 0.12;
        display: block;
        position: absolute;
        background: #FFF;
        transform: translateX(-50%);
    }
    #banner-2285 .cs-breadcrumbs:after {
        top: 0;
        left: 50%;
        content: '';
        z-index: -1;
        width: 200vw;
        height: 100%;
        display: block;
        position: absolute;
        backdrop-filter: blur(16px);
        transform: translateX(-50%);
        -webkit-backdrop-filter: blur(16px);
    }
    #banner-2285 .cs-link {
        display: flex;
        font-size: 1rem;
        line-height: 1.2em;
        position: relative;
        align-items: center;
        text-decoration: none;
        justify-content: center;
        color: var(--bodyTextColorWhite);
    }
    #banner-2285 .cs-link:last-of-type {
        /* remove the chevron on the last list item */
    }
    #banner-2285 .cs-link:last-of-type::after {
        display: none;
    }
    #banner-2285 .cs-link:after {
        /* chevron */
        content: "";
        height: 1.5rem;
        margin: 0 1rem;
        display: block;
        width: 0.0625rem;
        position: relative;
        background: var(--itemColor);
    }
    #banner-2285 .cs-link.cs-active {
        color: var(--primary);
    }
    #banner-2285 .cs-background {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        display: block;
        position: absolute;
    }
    #banner-2285 .cs-background:before {
        /* gradient overlay */
        top: 0;
        left: 0;
        z-index: 1;
        content: "";
        width: 100%;
        height: 100%;
        opacity: 0.72;
        display: block;
        background: #000;
        position: absolute;
    }
    #banner-2285 .cs-background img {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Banner Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #banner-2285 .cs-breadcrumbs:before {
        background: #505050;
    }
}
/* Call Now Button */
@media only screen and (min-width: 0rem) {
    .call-now-widget {
        color: #FFF;
        display: flex;
        z-index: 9999;
        right: 1.25rem;
        width: 3.75rem;
        bottom: 1.25rem;
        height: 3.75rem;
        position: fixed;
        border-radius: 50%;
        align-items: center;
        text-decoration: none;
        justify-content: center;
        background: var(--primary);
        transition:
        background-color 0.3s ease,
        transform 0.4s cubic-bezier(0.33, 1, 0.68, 1); /* Ease out on hover, slower ease-in on return */
        box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
    }
    .call-now-widget:hover {
        background: var(--secondary);
        transform: translateY(-4px);
    }
    .call-icon {
        width: 1.75rem;
        height: 1.75rem;
    }
}
@media only screen and (min-width: 30rem) {
    .call-now-widget {
        width: 3.125rem;
        right: 0.9375rem;
        height: 3.125rem;
        bottom: 0.9375rem;
    }
    .call-icon {
        width: 1.5rem;
        height: 1.5rem;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    .call-now-widget {
        display: none;
    }
}
/* Button Section */
.cs-button-solid {
    z-index: 1;
    font-size: 1rem;
    font-weight: 700;
    padding: 0 1.5rem;
    text-align: center;
    position: relative;
    min-width: 9.375rem;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
    transition: color 0.3s;
    text-transform: uppercase;
    background: var(--secondary);
    font-family: var(--subFont);
    border-radius: 0 1rem 0 1rem;
    color: var(--bodyTextColorWhite);
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    transition: background-color 0.4s, color 0.4s, border-radius 0.4s;
}
.cs-button-solid:hover {
    color: #000;
    border-radius: 1rem 0 1rem 0;
    background: var(--secondary);
}
/* Global Sections */
/* Contact Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-form-1333 .hidden {
        display: none;
    }
    #contact-1333 {
        z-index: 1;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #contact-1333 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 36.5rem;
        position: relative;
        align-items: stretch;
        flex-direction: column;
        justify-content: center;
        gap: clamp(3rem, 6vw, 5rem);
    }
    #contact-1333 .cs-content {
        width: 100%;
        display: flex;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
    }
    #contact-1333 .cs-title {
        max-width: 23ch;
        margin: 0 0 1.75rem 0;
    }
    #contact-1333 .cs-form {
        flex: none;
        width: 100%;
        gap: 1.75rem;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        max-width: 40.625rem;
        box-sizing: border-box;
        background: var(--itemColor);
        justify-content: space-between;
        padding: clamp(2rem, 5.18vw, 3rem) clamp(1rem, 5vw, 3.75rem);
    }
    #contact-1333 .cs-form .cs-title {
        margin: 0 0 clamp(1rem, 3vw, 1.75rem) 0;
    }
    #contact-1333 .cs-label {
        width: 100%;
        gap: 0.25rem;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        color: var(--headerColor);
        font-family: var(--bodyFont);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }
    #contact-1333 .cs-input {
        padding: 0;
        width: 100%;
        border: none;
        height: 3.5rem;
        font-size: 1rem;
        color: #1A1A1A;
        background: #FFF;
        padding-left: 1.5rem;
        box-sizing: border-box;
    }
    #contact-1333 .cs-input::placeholder {
        opacity: 0.6;
        color: #767676;
    }
    #contact-1333 .cs-textarea {
        min-height: 7.5rem;
        padding-top: 1.5rem;
        font-family: inherit;
        margin: 0 0 clamp(1rem, 3vw, 1.75rem) 0;
    }
    #contact-1333 .cs-submit {
        width: 100%;
        min-width: 17.6875rem;
    }
    #contact-1333 .cs-submit:hover {
        cursor: pointer;
    }
    #contact-1333 .cs-faq-group {
        margin: 0;
        padding: 0;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    #contact-1333 .cs-faq-item {
        width: 100%;
        list-style: none;
        transition: border-bottom 0.3s;
        border-bottom: 1px solid var(--borderColor);
    }
    #contact-1333 .cs-faq-item.active {
        border-color: var(--primary);
    }
    #contact-1333 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }
    #contact-1333 .cs-faq-item.active .cs-button:before {
        background-color: var(--primary);
        transform: rotate(315deg);
    }
    #contact-1333 .cs-faq-item.active .cs-button:after {
        background-color: var(--primary);
        transform: rotate(-315deg);
    }
    #contact-1333 .cs-faq-item.active .cs-item-p {
        opacity: 1;
        height: auto;
        padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 2vw, 1.5rem) 0;
    }
    #contact-1333 .cs-button {
        width: 100%;
        border: none;
        display: block;
        font-size: 1rem;
        padding-left: 0;
        text-align: left;
        font-weight: bold;
        line-height: 1.2em;
        position: relative;
        background: transparent;
        color: var(--headerColor);
        padding: clamp(1rem, 2vw, 1.5rem);
        transition:
        background-color 0.3s,
        color 0.3s;
    }
    #contact-1333 .cs-button:hover {
        cursor: pointer;
    }
    #contact-1333 .cs-button:before {
        /* left line */
        top: 45%;
        opacity: 1;
        content: "";
        width: 0.5rem;
        right: 1.5rem;
        display: block;
        height: 0.125rem;
        border-radius: 50%;
        position: absolute;
        transform: rotate(45deg);
        transition: transform 0.5s;
        transform-origin: left center;
        background: var(--headerColor);
    }
    #contact-1333 .cs-button:after {
        /* right line */
        top: 45%;
        opacity: 1;
        content: "";
        width: 0.5rem;
        display: block;
        height: 0.125rem;
        right: 1.3125rem;
        border-radius: 50%;
        position: absolute;
        transform: rotate(-45deg);
        transition: transform 0.5s;
        transform-origin: right center;
        background: var(--headerColor);
    }
    #contact-1333 .cs-button-text {
        width: 80%;
        display: block;
    }
    #contact-1333 .cs-item-p {
        height: 0;
        margin: 0;
        width: 90%;
        opacity: 0;
        overflow: hidden;
        line-height: 1.5em;
        color: var(--bodyTextColor);
        font-family: var(--bodyFont);
        padding: 0 clamp(1rem, 2vw, 1.5rem);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        transition:
        opacity 0.3s,
        padding-bottom 0.3s;
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #contact-1333 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #contact-1333 .cs-form {
        width: 45vw;
    }
    #contact-1333 .cs-submit {
        width: auto;
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #contact-1333 .cs-form {
        background: var(--medium);
    }
}
/* CTA Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cta-403 {
        position: relative;
        padding: var(--sectionPadding);
    }
    #cta-403 .cs-background {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        display: block;
        position: absolute;
        background-blend-mode: multiply;
    }
    #cta-403 .cs-background:before {
        top: 0;
        left: 0;
        z-index: 1;
        content: "";
        width: 100%;
        height: 100%;
        opacity: 0.8;
        display: block;
        position: absolute;
        background: #1A1A1A;
    }
    #cta-403 .cs-background img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        object-position: 0% 30%;
    }
    #cta-403 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #cta-403 .cs-content {
        width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        max-width: 32.3125rem;
        flex-direction: column;
    }
    #cta-403 .cs-title,
    #cta-403 .cs-text {
        color: var(--bodyTextColorWhite);
    }
    #cta-403 .cs-text {
        opacity: 0.8;
        margin-bottom: 1rem;
    }
    #cta-403 .cs-text:last-of-type {
        margin-bottom: 2rem;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cta-403 .cs-background {
        overflow: hidden;
    }
    #cta-403 .cs-background:before {
        width: 40%;
        opacity: 1;
    }
    #cta-403 .cs-background:after {
        /* black slant */
        top: 50%;
        opacity: 1;
        right: 50%;
        content: "";
        display: block;
        width: 31.25rem;
        height: 93.75rem;
        position: absolute;
        margin-right: -3.125rem;
        transform: rotate(10deg) translateY(-50%);
        background: linear-gradient(to right, #1a1a1a 0%, #1a1a1a 57%, rgba(26, 26, 26, 0) 100%);
        background: -moz-linear-gradient(left, #1a1a1a 0%, #1a1a1a 57%, rgba(26, 26, 26, 0) 100%);
        background: -webkit-linear-gradient(left, #1a1a1a 0%, #1a1a1a 57%, rgba(26, 26, 26, 0) 100%);
    }
    #cta-403 .cs-background img {
        right: 0;
        width: 60%;
        left: auto;
        object-position: right;
    }
    #cta-403 .cs-container {
        flex-direction: row;
        justify-content: space-between;
    }
    #cta-403 .cs-content {
        width: 45%;
        text-align: left;
        align-items: flex-start;
    }
    #cta-403 .cs-text,
    #cta-403 .cs-title {
        margin-left: 0;
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #cta-403 .cs-background:before {
        background: var(--medium);
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 48rem) {
    body.dark-mode #cta-403 .cs-background:after {
        /* black slant */
        background: linear-gradient(to right, #061A28 0%, #061A28 57%, rgba(26, 26, 26, 0) 100%);
        background: -moz-linear-gradient(left, #061A28 0%, #061A28 57%, rgba(26, 26, 26, 0) 100%);
        background: -webkit-linear-gradient(left, #061A28 0%, #061A28 57%, rgba(26, 26, 26, 0) 100%);
    }
}
/* Footer Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #cs-footer-275 {
        background: #1A1A1A;
        padding: var(--sectionPadding);
    }
    body.dark-mode #cs-footer-275 {
        background: var(--medium);
    }
    #cs-footer-275 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        row-gap: 2rem;
        flex-wrap: wrap;
        column-gap: 5.5rem;
        max-width: 34.375rem;
        align-items: flex-start;
        justify-content: flex-start;
    }
    #cs-footer-275 .cs-logo-group {
        width: 100%;
        position: relative;
    }
    #cs-footer-275 .cs-logo {
        height: auto;
        display: block;
        width: clamp(13.125rem, 8vw, 15rem);
        margin-bottom: clamp(1.75rem, 4.17vw, 2.75rem);
    }
    #cs-footer-275 .cs-logo-img {
        width: 100%;
        height: auto;
    }
    #cs-footer-275 .cs-logo-img.dark {
        display: none;
    }
    #cs-footer-275 .cs-text {
        margin: 0;
        width: 78%;
        line-height: 1.5em;
        margin-bottom: 2rem;
        max-width: 33.75rem;
        color: var(--bodyTextColorWhite);
        font-size: clamp(0.875rem, 2.5vw, 1rem);
    }
    #cs-footer-275 .cs-social {
        top: 0;
        right: 0;
        gap: 0.75rem;
        position: absolute;
        display: inline-flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    #cs-footer-275 .cs-social-link {
        z-index: 1;
        width: 1.5rem;
        display: flex;
        height: 1.5rem;
        border-radius: 50%;
        position: relative;
        align-items: center;
        background: #4E4B66;
        justify-content: center;
        transition:
        transform 0.3s,
        background-color 0.3s;
    }
    #cs-footer-275 .cs-social-link:hover {
        background: #1A1A1A;
        transform: translateY(-0.1875rem);
    }
    #cs-footer-275 .cs-social-img {
        width: auto;
        display: block;
        height: 0.8125rem;
    }
    #cs-footer-275 .cs-nav {
        margin: 0;
        padding: 0;
    }
    #cs-footer-275 .cs-nav-li {
        list-style: none;
        margin-bottom: 1rem;
    }
    #cs-footer-275 .cs-nav-li:last-of-type {
        margin-bottom: 0;
    }
    #cs-footer-275 .cs-header {
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5em;
        position: relative;
        color: var(--bodyTextColorWhite);
    }
    #cs-footer-275 .cs-header:after {
        opacity: 1;
        content: "";
        width: 2rem;
        display: block;
        height: 0.25rem;
        position: relative;
        margin: 1rem auto 1.5rem 0;
        background: var(--primary);
    }
    #cs-footer-275 .cs-nav-link {
        font-size: 1rem;
        line-height: 1.5em;
        position: relative;
        text-decoration: none;
        color: var(--bodyTextColorWhite);
    }
    #cs-footer-275 .cs-nav-link:before {
        /* underline */
        left: 0;
        width: 0%;
        opacity: 1;
        content: "";
        display: block;
        height: 0.225rem;
        bottom: -0.345rem;
        position: absolute;
        transition: width 0.3s;
        background: var(--primary);
    }
    #cs-footer-275 .cs-nav-link:hover:before {
        width: 100%;
    }
    #cs-footer-275 .cs-contact {
        margin: 0;
        padding: 0;
        width: 35%;
    }
    #cs-footer-275 .cs-contact-li {
        list-style: none;
        margin-bottom: 0rem;
    }
    #cs-footer-275 .cs-contact-li:last-of-type {
        margin-bottom: 0;
    }
    #cs-footer-275 .cs-contact-link {
        font-size: 1rem;
        text-align: left;
        line-height: 1.5em;
        text-decoration: none;
        display: inline-block;
        color: var(--bodyTextColorWhite);
    }
    #cs-footer-275 .cs-contact-link:hover {
        text-decoration: underline;
    }
    #cs-footer-275 .cs-address {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #cs-footer-275 .cs-container {
        row-gap: 0;
        max-width: 80rem;
    }
    #cs-footer-275 .cs-contact {
        border-top: none;
        flex-direction: row;
        justify-content: space-between;
    }
    #cs-footer-275 .cs-contact-li {
        margin: 0;
    }
}
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #cs-footer-275 .cs-container {
        align-items: flex-start;
        justify-content: flex-end;
    }
    #cs-footer-275 .cs-logo-group {
        width: auto;
        margin-right: auto;
        max-width: 19.0625rem;
    }
    #cs-footer-275 .cs-text {
        width: 100%;
    }
    #cs-footer-275 .cs-social {
        top: auto;
        right: auto;
        position: relative;
        flex-direction: row;
    }
    #cs-footer-275 .cs-contact {
        width: auto;
    }
}
.shape-divider-top {
    top: 0;
    left: 0;
    width: 100%;
    line-height: 0;
    max-width: 63.255rem;
}
.shape-divider-top svg {
    height: 90px;
    display: block;
    position: relative;
    width: calc(150% + 1.3px);
}
.shape-divider-top .shape-fill {
    fill: #DDF9EB;
}
body.dark-mode #hero-408 .cs-wave path {
    fill: var(--dark);
}
@media only screen and (min-width: 0rem) {
    #list-1186 {
        margin: 0;
        padding: 0;
        width: 100%;
        gap: 1.5rem;
        display: flex;
        max-width: 39.375rem;
        flex-direction: column;
        align-items: flex-start;
    }
    #list-1186 .cs-li {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: flex-start;
        justify-content: flex-start;
        font-family: var(--bodyFont);
        gap: clamp(1rem, 2.5vw, 1.25rem);
    }
    #list-1186 .cs-li:last-of-type {
        margin-bottom: 3rem;
        
    }
    #list-1186 .cs-li-picture {
        margin: 0;
        flex: none;
        display: flex;
        border-radius: 50%;
        align-items: center;
        background: var(--itemColor);
        justify-content: center;
        width: clamp(3.75rem, 6vw, 5rem);
        height: clamp(3.75rem, 6vw, 5rem);
    }
    #list-1186 .cs-li-icon {
        height: auto;
        display: block;
        width: clamp(1.5rem, 3vw, 2rem);
    }
    #list-1186 .cs-h3 {
        font-weight: 700;
        text-align: left;
        font-size: 1.25rem;
        line-height: 1.2em;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
    }
    #list-1186 .cs-li-text {
        margin: 0;
        font-size: 1rem;
        text-align: left;
        line-height: 1.5em;
        color: var(--bodyTextColor);
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #list-1186 .cs-li-picture {
        background: #061A28;
    }
}