/*-- -------------------------- -->
<---         CORE STYLES        -->
<--- -------------------------- -*/

@media screen and (min-width: 0rem) {

	:root {
		--primary: #040404;
		--secondary: #b6914f;
		--tertiary: #faf9f6;
		--headerFont: "Instrument Serif", serif;
		--bodyFont: "Roboto", Arial, sans-serif;
		--topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
        --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
        --bodyFontSize: 1rem;
        --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
	}

	
	.cs-topper {
        display: block;
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-size: var(--topperFontSize);
        line-height: 1.2em;
        font-weight: 700;
        color: var(--tertiary);
        text-align: inherit;
    }

    .cs-title {
        position: relative;
        margin: 0 0 1rem 0;
        max-width: 43.75rem;
        font-size: var(--headerFontSize);
        line-height: 1.2em;
        font-weight: 400;
        color: var(--headerColor);
        text-align: inherit;
    }

    .cs-text {
        margin: 0;
        max-width: 40.625rem;
        width: 100%;
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        color: var(--tertiary);
        text-align: inherit;
    }

    .cs-button-solid {
        z-index: 1;
        position: relative;
        display: inline-block;
        background-color: var(--primary);
        width: auto;
        padding: 0 1.875rem;
        text-decoration: none;
        font-size: 1rem;
        line-height: 3.125em;
        border-radius: 5rem;
        font-weight: bold;
        overflow: hidden;
        color: var(--tertiary);
        transition: color 0.3s;
        transition-delay: 0.1s;
        text-align: center;
    }

    .cs-button-solid:hover {
        color: #fff;
    }

    .cs-button-solid:hover:before {
        width: 100%;
    }

    .cs-button-solid:before {
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        content: "";
        opacity: 1;
        display: block;
        background-color: #000;
        border-radius: 5rem;
        height: 100%;
        width: 0;
        transition: width 0.3s;
    }

    .cs-hide-on-mobile {
        display: none;
    }

}

@media only screen and (min-width: 64rem) {

    .cs-hide-on-mobile {
        display: block;
    }

    .cs-hide-on-desktop {
        display: none;
    }

}

@media only screen and (min-width: 0rem) {

    body, html {
        margin: 0;
        overflow-x: hidden;
        padding: 0;
        font-family: var(--bodyFont);
        font-size: 100%;
        color: var(--bodyTextColor);
    }

    *, *:before, *:after {
        margin: 0;
        box-sizing: border-box;
        padding: 0;
    }

    body {
        transition: background-color 0.3s;
    }

    .container {
        position: relative;
        margin: auto;
        width: 92%;
    }

    h1, h2, h3, h4, h5, h6 {
        margin: 0;
        color: var(--tertiary);
        font-family: var(--headerFont);
        font-weight: 400;
    }

    p, li, a {
        margin: 0;
        font-size: 1rem;
        line-height: 1.5em;
    }

    p, li {
        color: var(--tertiary);
    }

    a:hover, button:hover {
        cursor: pointer;
    }

    .skip {
        z-index: -1111111;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
    }

}

@media only screen and (min-width: 1024px) {

	body, html {
		margin: 0;
		padding: 0;
	}

}

@media only screen and (min-width: 3000px) {

    body, html {
        font-size: 0.55vw;
    }

}

@media only screen and (max-width: 1023px) {

	body.cs-open {
		overflow: hidden;
	}

	body.scroll #cs-navigation {
		transform: translateY(-3.3125rem);
	}

	#cs-navigation {
		width: 100%;
        box-sizing: border-box;
        background-color: var(--primary);
        box-shadow: rgba(182, 145, 79, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
        transition: transform 0.3s;
	}

	#cs-navigation.cs-active .cs-ul-wrapper {
        opacity: 1;
        transform: scaleY(1);
    }

    #cs-navigation.cs-active .cs-li {
        transform: translateY(0);
        opacity: 1;
    }

    #cs-navigation .cs-top-bar {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #cs-navigation .cs-top-container {
        width: 100%;
        padding: 1rem 1.5rem;
        box-sizing: border-box;
        background-color: var(--primary);
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
    }

    #cs-navigation .cs-top-contact {
        width: auto;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: clamp(1rem, 2vw, 1.5rem);
    }

    #cs-navigation .cs-top-link {
        font-size: 0.875rem;
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: var(--tertiary);
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }

    #cs-navigation .cs-top-link:nth-of-type(2), #cs-navigation .cs-top-link:nth-of-type(3) {
        display: none;
    }

    #cs-navigation .cs-link-icon {
        width: 1rem;
        height: auto;
        display: block;
    }

    #cs-navigation .cs-top-social {
        visibility: visible;
        opacity: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
        transition: opacity 0.3s, visibility 0.3s, height 0.3s;
    }

    #cs-navigation .cs-social-link {
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    #cs-navigation .cs-social-icon {
        width: 1.25rem;
        height: auto;
        display: block;
    }

    #cs-navigation .cs-container {
        width: 100%;
        padding: 1.25rem 1rem;
        box-sizing: border-box;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        position: relative;
    }

    #cs-navigation .cs-logo {
        width: auto;
        height: 4rem;
        margin: 0 auto 0 0;
        padding: 0;
        box-sizing: border-box;
        display: flex;
        justify-content: center;
        align-items: center;
        order: 1;
        z-index: 10;
    }

    #cs-navigation .cs-logo img {
        width: auto;
        height: 100%;
        object-fit: contain;
    }

    #cs-navigation .cs-nav {
        order: 2;
    }

    #cs-navigation .cs-toggle {
        width: 2.875rem;
        height: 2.875rem;
        margin: 0 0 0 auto;
        background-color: var(--secondary);
        border: none;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.6s;
    }

    #cs-navigation .cs-toggle.cs-active {
        transform: rotate(180deg);
    }

    #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 {
        width: clamp(1.5rem, 2vw, 1.75rem);
        height: 0.75rem;
        position: relative;
    }

    #cs-navigation .cs-line {
        width: 100%;
        height: 2px;
        border-radius: 2px;
        background-color: var(--tertiary);
        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: 100vh;
        padding-bottom: 3rem;
        opacity: 0;
        background-color: var(--secondary);
        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;
        padding: 3rem 0 0 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 {
        list-style: none;
        margin-right: 0;
        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-link {
        font-size: clamp(1rem, 3vw, 1.5rem);
        line-height: 1.2em;
        text-decoration: none;
        margin: 0;
        color: var(--tertiary);
        display: inline-block;
        position: relative;
    }

    #cs-navigation .cs-li-link:before {
        content: '';
        width: 100%;
        height: 1px;
        background: currentColor;
        opacity: 1;
        position: absolute;
        display: none;
        bottom: -0.125rem;
        left: 0;
    }

    #cs-navigation .cs-li-link.cs-active:before {
        display: block;
    }

    #cs-navigation .cs-button-solid {
        display: none;
    }

}

@media only screen and (min-width: 48rem) {

    #cs-navigation .cs-top-link:nth-of-type(2) {
        display: flex;
    }

}

@media only screen and (max-width: 1023px) {

    #cs-navigation .cs-li {
        text-align: center;
        width: 100%;
        display: block;
    }

}

@media only screen and (min-width: 64rem) {

    body.scroll #cs-navigation {
        transform: translateY(-3.3125rem);
    }

    #cs-navigation {
        width: 100%;
        padding: 0;
        box-sizing: border-box;
        background-color: var(--primary);
        box-shadow: rgba(182, 145, 79, 0.2) 0px 8px 24px;
        position: fixed;
        z-index: 10000;
        transition: transform 0.3s;
    }

    #cs-navigation .cs-top-bar {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #cs-navigation .cs-top-container {
        width: 100%;
        padding: 1rem;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 3.125rem;
        position: relative;
        z-index: 1;
    }

    #cs-navigation .cs-top-container:before {
        content: '';
        width: 100vw;
        height: 100%;
        background-color: var(--primary);
        border-bottom: 1px solid var(--secondary);
        opacity: 1;
        position: absolute;
        display: block;
        top: 0;
        left: 50%;
        z-index: -1;
        transform: translateX(-50%);
    }

    #cs-navigation .cs-top-contact {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
    }

    #cs-navigation .cs-top-link {
        font-size: 0.875rem;
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: white;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 0.5rem;
        position: relative;
    }

    #cs-navigation .cs-top-link:hover {
        text-decoration: underline;
    }

    #cs-navigation .cs-link-icon {
        width: 1rem;
        height: auto;
        display: block;
		color: var(--tertiary);
    }

    #cs-navigation .cs-top-social {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }

    #cs-navigation .cs-social-link {
        text-decoration: none;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s;
    }

    #cs-navigation .cs-social-link:hover {
        transform: scale(1.1);
    }

    #cs-navigation .cs-social-icon {
        width: 1.25rem;
        height: auto;
        display: block;
    }

    #cs-navigation .cs-container {
        width: 100%;
        margin: auto;
        padding: 0 1rem;
        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 {
        height: clamp(5rem, 8vw, 5.5rem);
        margin: 0 auto 0 0;
        padding: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        z-index: 100;
    }

    #cs-navigation .cs-logo img {
        width: auto;
        height: 100%;
        object-fit: contain;
    }

    #cs-navigation .cs-ul {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 3rem;
    }

    #cs-navigation .cs-li {
        list-style: none;
        padding: 1.9375rem 0;
        flex: none;
    }

    #cs-navigation .cs-li-link {
        font-size: clamp(0.875rem, 1.3vw, 1rem);
        line-height: 1.5em;
        text-decoration: none;
        margin: 0;
        color: var(--tertiary);
        display: block;
        position: relative;
        transition: color 0.3s;
    }

    #cs-navigation .cs-li-link:hover {
        color: var(--secondary);
    }

    #cs-navigation .cs-li-link.cs-active {
        font-weight: 700;
        color: var(--tertiary);
		font-weight: bold;
    }

    #cs-navigation .cs-button-solid {
        font-size: 1rem;
        line-height: clamp(2.875em, 5.5vw, 3.5em);
        text-decoration: none;
        font-weight: 700;
        text-align: center;
        margin: 0;
        color: var(--tertiary);
        padding: 0 2rem;
        border-radius: 5rem;
        background-color: var(--secondary);
        overflow: hidden;
        display: inline-block;
        position: relative;
        z-index: 1;
        box-sizing: border-box;
        transition: color 0.3s;
    }

    #cs-navigation .cs-button-solid:before {
        content: '';
        position: absolute;
        height: 100%;
        width: 0%;
        background: var(--tertiary);
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }

    #cs-navigation .cs-button-solid:hover {
        color: var(--primary);
    }

    #cs-navigation .cs-button-solid:hover:before {
        width: 100%;
    }

    #cs-navigation .cs-nav-button {
        line-height: 2.875rem;
        margin-left: 1.5rem;
    }
}

@media only screen and (min-width: 0rem) {

    #banner {
        padding-top: clamp(13rem, 29vw, 18.75rem);
        padding-bottom: clamp(5rem, 13vw, 8.75rem);
        position: relative;
        z-index: 1;
    }

    #banner .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    #banner .cs-title {
        font-size: clamp(2.4375rem, 4.5vw, 3.0625rem);
        font-weight: 400;
        line-height: 1.2em;
        text-align: center;
        max-width: 43.75rem;
        margin: 0 auto 0.75rem;
        color: var(--tertiary);
        font-family: var(--headerFont);
        position: relative;
    }

    #banner .cs-title-link {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #banner .cs-link {
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.2em;
        text-decoration: none;
        color: var(--tertiary);
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #banner .cs-link:last-of-type::after {
        display: none;
    }

    #banner .cs-link:after {
        content: "";
        width: 0.4375rem;
        height: 0.75rem;
        margin-left: 0.75rem;
        margin-right: 0.75rem;
        background: url("https://csimg.nyc3.digitaloceanspaces.com/Banners/chevron-right.svg");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
    }

    #banner .cs-link.cs-active {
        color: var(--secondary);
    }

    #banner .cs-background {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        z-index: -1;
    }

    #banner .cs-background:before {
        content: "";
        width: 100%;
        height: 100%;
        background: var(--primary);
        opacity: 0.66;
        position: absolute;
        display: block;
        top: 0;
        left: 0;
        z-index: 1;
    }

    #banner .cs-background img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

}

@media only screen and (min-width: 0rem) {

    #contact {
        padding: var(--sectionPadding);
        background-color: var(--primary);
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    #contact:before {
        content: "";
        width: 37.75rem;
        height: 37.75rem;
        border-radius: 50%;
        background: var(--primary);
        opacity: 0.16;
        filter: blur(110px);
        position: absolute;
        display: block;
        top: -3.125rem;
        right: -18.75rem;
        z-index: -2;
    }

    #contact:after {
        content: "";
        width: 51.875rem;
        height: 37.9375rem;
        margin-right: 12.5rem;
        border-radius: 50%;
        opacity: 0.16;
        background: var(--secondary);
        filter: blur(364px);
        position: absolute;
        display: block;
        top: -25rem;
        right: 50%;
        z-index: -2;
    }

    #contact .cs-container {
        width: 100%;
        max-width: 31.25rem;
        margin: auto;
    }

    #contact .cs-swoosh {
        display: none;
    }

    #contact .cs-container {
        width: 100%;
        max-width: 31.25rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #contact .cs-content {
        text-align: left;
        width: 100%;
        max-width: 36.3125rem;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    #contact .cs-topper {
        color: var(--secondary);
    }

    #contact .cs-title, #contact .cs-text {
        color: var(--primary);
    }

    #contact .cs-text {
        opacity: 0.8;
    }

    #contact .cs-decoration {
        display: none;
    }

    #contact .cs-cta {
        font-size: clamp(0.875rem, 1.5vw, 1.25rem);
        text-decoration: none;
        text-align: center;
        width: clamp(8.8125rem, 17vw, 14rem);
        height: clamp(8.8125rem, 17vw, 14rem);
        margin: 0 2.25rem 1rem auto;
        background-color: var(--primary);
        color: var(--tertiary);
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        align-self: flex-end;
        position: relative;
        transition: background-color 0.3s;
    }

    #contact .cs-cta:hover {
        background-color: var(--secondary);
    }

    #contact .cs-cta:hover .cs-arrow {
        transform: translateX(3.75rem);
        opacity: 0;
    }

    #contact .cs-cta:hover .cs-cta-text {
        transform: translateY(-0.9375rem);
    }

    #contact .cs-cta:before {
        content: "";
        width: 93.75rem;
        height: 62.5rem;
        background: var(--tertiary);
        border-radius: 0 0 6.25rem 0;
        opacity: 1;
        position: absolute;
        display: block;
        bottom: -4.75rem;
        right: 2rem;
        transform: rotate(30deg);
        transform-origin: bottom right;
        z-index: -1;
    }

    #contact .cs-arrow {
        width: 2.5rem;
        height: auto;
        transition: transform 0.3s, opacity 0.3s;
    }

    #contact .cs-cta-text {
        transition: transform 0.3s;
    }

}

@media only screen and (min-width: 31.25rem) {

    #contact {
        overflow: hidden;
        padding-bottom: 12vw;
    }

    #contact .cs-container {
        align-items: flex-start;
    }

    #contact .cs-cta:before {
        border-radius: 9.375rem;
        bottom: -6.25rem;
        right: 1.25rem;
    }

}

@media only screen and (min-width: 48rem) {

    #contact {
        padding-bottom: 0;
        background-color: var(--tertiary);
        position: relative;
    }

    #contact:before {
        content: "";
        width: 37.75rem;
        height: 37.75rem;
        border-radius: 50%;
        background: var(--tertiary);
        opacity: 0.24;
        filter: blur(110px);
        position: absolute;
        display: block;
        top: -6.25rem;
        right: -18.75rem;
        z-index: -2;
    }

    #contact:after {
        content: "";
        width: 51.875rem;
        height: 37.9375rem;
        margin-right: 12.5rem;
        border-radius: 50%;
        opacity: 0.24;
        background: var(--tertiary);
        filter: blur(364px);
        position: absolute;
        display: block;
        top: -25rem;
        right: 50%;
        z-index: -2;
    }

    #contact .cs-container {
        max-width: 80rem;
        position: relative;
    }

    #contact .cs-container:before {
        content: "";
        width: 375rem;
        height: 62.5rem;
        margin-right: -93.75rem;
        background: var(--primary);
        pointer-events: none;
        opacity: 1;
        position: absolute;
        display: block;
        top: 50%;
        right: 50%;
        transform: rotate(5deg);
    }

    #contact .cs-container:after {
        content: "";
        width: 375rem;
        height: 187.5rem;
        margin-right: -218.75rem;
        background: var(--primary);
        pointer-events: none;
        opacity: 1;
        position: absolute;
        display: block;
        top: 100%;
        right: 50%;
        transform: rotate(-25deg);
        z-index: -1;
    }

    #contact .cs-text {
        width: 80%;
    }

    #contact .cs-cta {
        box-sizing: border-box;
        border: 12px solid var(--secondary);
        margin-right: 3.125rem;
    }

    #contact .cs-cta:before {
        display: none;
    }

}


@media only screen and (min-width: 75rem) {

    #contact {
        padding-top: 10rem;
    }

    #contact:before {
        width: 51.5rem;
        height: 51.5rem;
        margin-left: 7.5rem;
        opacity: 0.28;
        right: auto;
        left: 50%;
        top: -3.125rem;
        transform: none;
    }

    #contact .cs-text {
        margin-bottom: 12.5rem;
    }

}


/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/

@media only screen and (min-width: 0rem) {

    #cs-footer {
        padding: var(--sectionPadding);
        padding-top: 5rem;
        background-color: var(--primary);
        position: relative;
        z-index: 10;
    }

    #cs-footer .cs-container {
        width: 100%;
        max-width: 43.75rem;
        margin: auto;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 2.5rem;
    }

    #cs-footer .cs-logo-group {
        width: 100%;
        position: relative;
    }

    #cs-footer .cs-logo {
        width: 12.3125rem;
        height: auto;
        margin-bottom: 1.5rem;
        display: block;
    }

    #cs-footer .cs-logo-img {
        width: 100%;
        height: auto;
    }

    #cs-footer .cs-logo-img.dark {
        display: none;
    }

    #cs-footer .cs-text {
        color: var(--tertiary);
    }

    #cs-footer .cs-nav {
        width: 100%;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 0.75rem;
    }

    #cs-footer .cs-nav-li {
        list-style: none;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
    }

    #cs-footer .cs-header {
        font-size: 1.5rem;
        font-family: var(--headerFont);
        line-height: 1.2em;
        margin-bottom: 0.75rem;
        color: var(--tertiary);
        display: block;
        position: relative;
    }

    #cs-footer .cs-nav-link {
        font-size: 1rem;
        line-height: 1.5em;
        text-decoration: none;
        color: var(--tertiary);
        display: inline-block;
        position: relative;
        transition: color 0.3s;
    }

    #cs-footer .cs-nav-link:hover {
        color: var(--secondary);
    }

    #cs-footer .cs-nav-link:hover:before {
        width: 100%;
    }

    #cs-footer .cs-icon {
        width: 1.5rem;
        height: auto;
        margin-right: 0.75rem;
    }

    #cs-footer .cs-bottom {
        max-width: 80rem;
        margin: auto;
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--secondary);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #cs-footer .cs-copyright, #cs-footer .cs-copyright-link {
        font-size: 1rem;
        line-height: 1.5em;
        color: var(--tertiary);
    }

    #cs-footer .cs-copyright-link {
        text-decoration: none;
        transition: color 0.3s;
    }

    #cs-footer .cs-copyright-link:hover {
        color: var(--secondary);
    }

}

@media only screen and (min-width: 48rem) {

    #cs-footer {
        padding-bottom: 3rem;
    }

    #cs-footer .cs-container {
        flex-direction: row;
        justify-content: space-between;
        row-gap: 0;
        row-gap: 2.5rem;
    }

    #cs-footer .cs-nav {
        width: auto;
    }

}

@media only screen and (min-width: 64rem) {

    #cs-footer .cs-container {
        max-width: 80rem;
        justify-content: flex-end;
        flex-wrap: nowrap;
        column-gap: clamp(2.5rem, 6vw, 5.25rem);
    }

    #cs-footer .cs-logo-group {
        width: 30%;
        max-width: 24.1875rem;
        margin-right: auto;
    }

    #cs-footer .cs-text {
        width: 100%;
    }

}
