 @media only screen and (min-width: 0rem) {
     :root {
         --primary: #024950;
         --primaryLight: #AFDDE5;
         --secondary: #AFDDE5;
         --secondaryLight: #001f3f;
         --headerColor: #1a1a1a;
         --bodyTextColor: #4e4b66;
         --bodyTextColorWhite: #fafbfc;
         --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;
         --headerFont: "Oswald", Arial, sans-serif;
         --bodyFont: "Source Sans 3", Arial, sans-serif;
         --navNeon: "Yellowtail", "Adjusted Verdana Fallback", "Verdana", sans-serif;
     }

     .cs-topper {
         display: block;
         margin-bottom: 0.25rem;
         text-transform: uppercase;
         font-family: var(--headerFont);
         font-size: var(--topperFontSize);
         line-height: 1.2em;
         letter-spacing: 0.3em;
         font-weight: 700;
         color: #707070;
         text-align: inherit;
     }

     body.dark-mode .cs-topper {
         color: var(--secondary);
     }

     .cs-title {
         position: relative;
         margin: 0 0 1rem 0;
         max-width: 43.75rem;
         font-size: var(--headerFontSize);
         line-height: 1.2em;
         font-weight: 900;
         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(--bodyTextColor);
         text-align: inherit;
     }

     .cs-button-solid {
         z-index: 1;
         position: relative;
         display: inline-block;
         border-radius: 3.75rem;
         margin: 0;
         background-color: var(--primary);
         min-width: 11.25rem;
         box-sizing: border-box;
         overflow: hidden;
         padding: 0 3rem;
         text-decoration: none;
         text-transform: uppercase;
         font-family: var(--headerFont);
         font-size: 1rem;
         line-height: clamp(2.875rem, 5.5vw, 3.5rem);
         font-weight: 700;
         color: #fff;
         transition: box-shadow 0.3s, color 0.3s, background-color 0.3s;
         text-align: center;
         white-space: nowrap;
     }

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

     .cs-button-solid:hover {
         background-color: var(--secondary);
         color: var(--primary);
     }

     .cs-button-solid:hover:before {
         width: 100%;
     }

     .cs-button-solid.cs-secondary {
         background-color: var(--secondary);
         color: var(--primary);
         transition: color 0.3s, background-color 0.3s;
     }

     .cs-button-solid.cs-secondary:hover {
         background-color: #fff;
     }

     .cs-button-solid.cs-secondary:before {
         background-color: #fff;
     }

     .cs-button-solid.cs-white {
         background-color: #fff;
         color: var(--primary);
         transition: color 0.3s, background-color 0.3s;
     }

     .cs-button-solid.cs-white:hover {
         background-color: #fff;
     }

     .cs-button-solid.cs-white:before {
         background-color: #fff;
     }

     body.dark-mode .cs-button-solid:not(.cs-button-transparent) {
         background: linear-gradient(45deg, #cecece 0%, #ffffff 100%);
         color: var(--primary);
         transition: box-shadow 0.3s;
         animation: buttonGlow 3.2s forwards infinite;
         box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 60px;
     }

     body.dark-mode .cs-button-solid:not(.cs-button-transparent):before {
         opacity: 0;
         background-color: #fff;
         width: 100%;
         transition: opacity 0.4s;
     }

     body.dark-mode .cs-button-solid:not(.cs-button-transparent):hover {
         animation: none;
         box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 54px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
     }

     body.dark-mode .cs-button-solid:not(.cs-button-transparent):hover:before {
         opacity: 1;
     }

     @keyframes buttonGlow {
         0% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 60px;
         }

         50% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 54px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
         }

         78% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 54px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
         }

         100% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 60px;
         }
     }

     @keyframes ulGlow {
         0% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 69px, inset rgba(67, 183, 255, 0.2) 0px 0px 60px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
         }

         50% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 39px, inset rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
         }

         51% {
             box-shadow: none;
         }

         52% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 69px, inset rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
         }

         53% {
             box-shadow: none;
         }

         64% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 69px, inset rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
         }

         78% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 14px, inset rgba(67, 183, 255, 0.2) 0px 0px 49px, inset rgba(67, 183, 255, 0.2) 0px 0px 14px, rgba(67, 183, 255, 0.2) 0px 0px 54px;
         }

         92% {
             box-shaodw: none;
         }

         93% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 14px, inset rgba(67, 183, 255, 0.2) 0px 0px 49px, inset rgba(67, 183, 255, 0.2) 0px 0px 14px, rgba(67, 183, 255, 0.2) 0px 0px 54px;
         }

         94% {
             box-shaodw: none;
         }

         95% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 14px, inset rgba(67, 183, 255, 0.2) 0px 0px 49px, inset rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 54px;
         }

         100% {
             box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, inset rgba(67, 183, 255, 0.2) 0px 0px 69px, inset rgba(67, 183, 255, 0.2) 0px 0px 60px, rgba(67, 183, 255, 0.2) 0px 0px 74px;
         }
     }

     .cs-button-transparent {
         background-color: transparent;
         min-width: 0;
         padding: 0 1.5rem;
         color: var(--bodyTextColorWhite);
         box-shadow: none;
     }

     .cs-button-transparent:hover {
         color: var(--primary);
     }

     .cs-hide-on-mobile {
         display: none;
     }
 }

 @media only screen and (min-width: 1024px) {
     .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);
         scroll-behavior: smooth;
     }

     *, *: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;
         text-transform: uppercase;
         font-family: var(--headerFont);
         color: var(--headerColor);
     }

     p, li, a {
         margin: 0;
         font-size: 1rem;
         line-height: 1.5em;
     }

     p, li {
         color: #353535;
     }

     a:hover, button:hover {
         cursor: pointer;
     }

     .skip {
         z-index: -1111111;
         position: absolute;
         top: 0;
         left: 0;
         opacity: 0;
     }

     @font-face {
         font-style: normal;
         font-family: "Yellowtail";
         font-weight: 400;
         font-display: swap;
         src: url("../fonts/yellowtail-v22-latin-regular.woff2") format("woff2");
     }

     @font-face {
         font-style: normal;
         font-family: "Oswald";
         font-weight: 400;
         font-display: swap;
         src: url("../fonts/oswald-v53-latin-regular.woff2") format("woff2");
     }

     @font-face {
         font-style: normal;
         font-family: "Oswald";
         font-weight: 600;
         font-display: swap;
         src: url("../fonts/oswald-v53-latin-600.woff2") format("woff2");
     }
 }

 @media only screen and (min-width: 1024px) {
     body, html {
         margin: 0;
         padding: 0;
     }
 }

 @media only screen and (min-width: 2500px) {
     body, html {
         font-size: 0.55vw;
     }
 }

 @media only screen and (min-width: 0rem) {
     body.dark-mode #dark-mode-toggle .cs-sun {
         opacity: 1;
         transform: translate(-50%, -50%);
     }

     body.dark-mode #dark-mode-toggle .cs-moon {
         opacity: 0;
         transform: translate(-50%, -150%);
     }

     #dark-mode-toggle {
         order: 2;
         z-index: 1000;
         position: relative;
         display: block;
         border: none;
         margin: 0;
         background: transparent;
         height: 3rem;
         width: 3rem;
         overflow: hidden;
         padding: 0;
         flex: none;
     }

     #dark-mode-toggle img, #dark-mode-toggle svg {
         position: absolute;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         height: 1.25rem;
         width: 1.25rem;
         pointer-events: none;
     }

     #dark-mode-toggle .cs-moon {
         z-index: 2;
         transition: transform 0.3s, opacity 0.3s;
     }

     #dark-mode-toggle .cs-sun {
         z-index: 1;
         opacity: 0;
         transform: translate(-50%, 100%);
         transition: transform 0.3s, opacity 0.3s;
     }
 }

 @media only screen and (min-width: 1024px) {
     #dark-mode-toggle {
         position: relative;
         top: auto;
         right: -0.625rem;
         transform: none;
         margin: 0;
     }

     #dark-mode-toggle:hover {
         cursor: pointer;
     }
 }

 @media only screen and (min-width: 0rem) {
     #cs-navigation .neon {
         z-index: 1000;
         position: absolute;
         bottom: -0.625rem;
         right: 0;
         visibility: hidden;
         opacity: 0;
         display: flex;
         font-family: "Yellowtail";
         color: #fff;
         transition: 100ms ease-in;
     }

     #cs-navigation .neon span {
         display: table-cell;
         margin: 0;
         padding: 0;
         font-family: var(--navNeon);
         font-size: clamp(1rem, 1.5vw, 1.5rem);
         color: #646464;
         animation: neonGlow 3s linear infinite;
     }

     #cs-navigation .neon span:nth-child(5) {
         padding-right: 3px;
     }

     #cs-navigation .neon span:nth-child(1), #cs-navigation .neon span:nth-child(2), #cs-navigation .neon span:nth-child(4) {
         animation-delay: 1s;
     }

     #cs-navigation .neon span:nth-child(3) {
         animation-delay: 1.2s;
     }

     #cs-navigation .neon span:nth-child(5) {
         margin-right: 3px !important;
         animation-delay: 2s;
     }

     #cs-navigation .neon span:nth-child(6) {
         animation-delay: 2.45s;
     }

     #cs-navigation .neon span:nth-child(7), #cs-navigation .neon span:nth-child(8), #cs-navigation .neon span:nth-child(9) {
         animation-delay: 2.75s;
     }

     @keyframes neonGlow {
         0%, 100% {
             text-shadow: 0 0 10px #43b7ff, 0 0 20px #43b7ff, 0 0 40px #43b7ff, 0 0 50px #43b7ff, 0 0 60px #43b7ff;
             color: #abe1fe;
             filter: blur(2px);
         }

         5%, 95% {
             text-shadow: 0;
             color: #fff;
             filter: blur(0px);
         }
     }
 }

 @media only screen and (min-width: 0rem) {
     body.dark-mode #cs-navigation .neon {
         visibility: visible;
         opacity: 1;
         display: block;
     }
 }

 @media only screen and (max-width: 1023px) {
     body.cs-open {
         overflow: hidden;
     }

     body.scroll #cs-navigation {
         top: 0;
         max-width: 100%;
         width: 100%;
     }

     body.scroll #cs-navigation:before {
         border-radius: 0;
     }

     #cs-navigation {
         z-index: 10000;
         position: fixed;
         top: 1rem;
         left: 50%;
         transform: translateX(-50%);
         border-radius: clamp(0.75rem, 2vw, 1.5rem);
         max-width: 80rem;
         width: 94%;
         box-sizing: border-box;
         padding: clamp(0.75rem, 2vw, 1.5rem);
         transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s;
     }

     #cs-navigation .cs-container {
         display: flex;
         justify-content: flex-end;
         align-items: center;
         width: 100%;
         gap: 1.5rem;
     }

     #cs-navigation .cs-logo {
         z-index: 10;
         position: relative;
         transform-style: preserve-3d;
         perspective: 700px;
         display: flex;
         justify-content: flex-start;
         align-items: center;
         margin: 0 auto 0 0;
         height: 100%;
         max-width: 7.5rem;
         width: auto;
         box-sizing: border-box;
         padding: 0;
     }

     #cs-navigation .cs-logo img {
         height: auto;
         width: 100%;
         object-fit: contain;
     }

     #cs-navigation .cs-logo .cs-default {
         -webkit-backface-visibility: hidden;
         backface-visibility: hidden;
         transition: opacity 0.3s, transform 0.6s;
     }

     #cs-navigation .cs-logo .cs-onscroll {
         z-index: -1;
         position: absolute;
         top: 0;
         left: 0;
         -webkit-backface-visibility: hidden;
         backface-visibility: hidden;
         opacity: 0;
         transform: rotateX(180deg);
         width: 100%;
         transition: opacity 0.3s, transform 0.6s;
     }

     #cs-navigation .cs-toggle {
         z-index: 10;
         position: relative;
         display: flex;
         justify-content: center;
         align-items: center;
         border: none;
         border-radius: 0.5rem;
         margin: 0 0 0 auto;
         background-color: var(--primary);
         height: 3rem;
         width: 3rem;
         transition: transform 0.6s, background-color 0.3s;
     }

     #cs-navigation .cs-nav {
         order: 3;
     }

     #cs-navigation .cs-contact-group {
         z-index: 10;
         position: relative;
         display: none;
     }

     #cs-navigation .cs-active .cs-line1 {
         top: 50%;
         transform: translate(-50%, -50%) rotate(225deg);
     }

     #cs-navigation .cs-active .cs-line2 {
         top: 50%;
         transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
         transform-origin: center;
     }

     #cs-navigation .cs-active .cs-line3 {
         bottom: 100%;
         opacity: 0;
     }

     #cs-navigation .cs-box {
         position: relative;
         height: 1rem;
         width: clamp(1.5rem, 2vw, 1.75rem);
     }

     #cs-navigation .cs-line {
         position: absolute;
         left: 50%;
         transform: translateX(-50%);
         border-radius: 2px;
         background-color: #fafbfc;
         height: 2px;
         width: 100%;
         transition: background-color 0.3s;
     }

     #cs-navigation .cs-line1 {
         top: 0;
         transition: transform 0.5s, top 0.3s, left 0.3s;
         animation-duration: 0.7s;
         animation-timing-function: ease;
         animation-direction: normal;
         animation-fill-mode: forwards;
         transform-origin: center;
     }

     #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-direction: normal;
         animation-fill-mode: forwards;
     }

     #cs-navigation .cs-line3 {
         bottom: 0;
         transition: bottom 0.3s, opacity 0.3s;
     }

     #cs-navigation .cs-ul-wrapper {
         z-index: -1;
         position: absolute;
         top: 0.9375rem;
         left: 0;
         transform: scaleY(0);
         border-radius: 3.125rem 3.125rem 1.5rem 1.5rem;
         background-color: #fff;
         max-height: 95dvh;
         height: auto;
         width: 100%;
         box-sizing: border-box;
         overflow: hidden;
         padding-bottom: 2.4em;
         transition: transform 0.4s;
         box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
         transform-origin: top;
     }

     #cs-navigation .cs-ul {
         display: flex;
         flex-direction: column;
         justify-content: flex-start;
         align-items: center;
         margin: 0;
         max-height: 90vh;
         height: auto;
         width: 100%;
         box-sizing: border-box;
         overflow: auto;
         padding: 6.25rem 0 0 0;
         gap: 1.25rem;
     }

     #cs-navigation .cs-li {
         opacity: 0;
         transform: translateY(-70/16rem);
         margin-right: 0;
         width: 100%;
         list-style: none;
         transition: transform 0.6s, opacity 0.9s;
         text-align: center;
     }

     #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 {
         position: relative;
         display: inline-block;
         margin: 0;
         text-decoration: none;
         text-transform: uppercase;
         font-family: var(--headerFont);
         font-size: clamp(1rem, 2.5vw, 1.5rem);
         line-height: 1.2em;
         font-weight: 600;
         color: var(--headerColor);
     }

     #cs-navigation .cs-li-link:hover {
         color: var(--primaryLight);
     }

     #cs-navigation .cs-li-link.cs-active {
         color: var(--primaryLight);
     }

     #cs-navigation .cs-button-solid {
         display: none;
     }

     #cs-navigation:before {
         position: absolute;
         top: 0;
         left: 50%;
         content: "";
         opacity: 1;
         transform: translateX(-50%);
         display: block;
         border-radius: clamp(0.75rem, 2vw, 1.5rem);
         background: #fff;
         height: 100%;
         width: 100%;
         transition: transform 0.2s, border-radius 0.3s, background-color 0.3s ease-in-out;
         box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
     }

     #cs-navigation.cs-active .cs-toggle {
         transform: rotate(180deg);
     }

     #cs-navigation.cs-active .cs-ul-wrapper {
         transform: scaleY(1);
         transition-delay: 0.15s;
     }

     #cs-navigation.cs-active .cs-li {
         opacity: 1;
         transform: translateY(0);
     }

     #cs-navigation.cs-active:before {
         transform: translateX(-50%) scale(1.03);
     }
 }

 @media only screen and (min-width: 48rem) and (max-width: 1023px) {
     #cs-navigation .cs-contact-group {
         display: flex;
         align-items: center;
         gap: 1.5rem;
     }

     #cs-navigation .login {
         text-decoration: none;
         font-size: 1em;
         font-weight: 700;
         color: var(--bodyText);
     }

     #cs-navigation .login:hover {
         text-decoration: underline;
     }
 }

 @media only screen and (max-width: 63.999rem) {
     body.dark-mode #cs-navigation .cs-logo .cs-default {
         opacity: 1;
         transform: rotateX(-180deg);
     }

     body.dark-mode #cs-navigation .cs-logo .cs-onscroll {
         opacity: 1;
         transform: rotateX(0deg);
     }

     body.dark-mode #cs-navigation .cs-toggle {
         background-color: var(--bodyTextColorWhite);
         box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 44px, inset rgba(67, 183, 255, 0.2) 0px 0px 30px, rgba(67, 183, 255, 0.2) 0px 0px 55px, rgba(67, 183, 255, 0.4) 0px 0px 75px, rgba(67, 183, 255, 0.4) 0px 0px 95px;
     }

     body.dark-mode #cs-navigation .cs-phone {
         color: var(--bodyTextColorWhite);
     }

     body.dark-mode #cs-navigation .cs-phone-icon {
         filter: grayscale(1) brightness(1000%);
     }

     body.dark-mode #cs-navigation .cs-line {
         background-color: var(--dark);
     }

     body.dark-mode #cs-navigation .cs-ul-wrapper {
         background-color: var(--dark);
     }

     body.dark-mode #cs-navigation .cs-li-link, body.dark-mode #cs-navigation .login {
         color: var(--bodyTextColorWhite);
     }

     body.dark-mode #cs-navigation .cs-li-link.cs-active {
         color: var(--secondary);
     }

     body.dark-mode #cs-navigation:before {
         background-color: var(--dark);
     }
 }

 @media only screen and (max-width: 63.999rem) {
     #cs-navigation .cs-li {
         display: block;
         width: 100%;
         text-align: center;
     }

     #cs-navigation .cs-dropdown {
         position: relative;
         color: var(--bodyTextColorWhite);
     }

     #cs-navigation .cs-dropdown .cs-li-link {
         position: relative;
         transition: opacity 0.3s;
     }

     #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
         visibility: visible;
         opacity: 1;
         margin: 0.75rem auto 0 auto;
         height: auto;
         padding: 1.75rem 0;
     }

     #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
         opacity: 1;
     }

     #cs-navigation .cs-drop-icon {
         position: absolute;
         top: 50%;
         right: -1.25rem;
         transform: translateY(-50%);
         height: auto;
         width: 0.75rem;
     }

     #cs-navigation .cs-drop-ul {
         visibility: hidden;
         opacity: 0;
         display: flex;
         flex-direction: column;
         justify-content: flex-start;
         align-items: center;
         border-radius: 1em;
         margin: 0 auto;
         background-color: var(--primary);
         height: 0;
         width: 90%;
         overflow: hidden;
         padding: 0;
         transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
         gap: 0.75rem;
     }

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

     #cs-navigation .cs-li-link {
         text-transform: uppercase;
         font-family: var(--headerFont);
         font-weight: 600;
     }

     #cs-navigation .cs-li-link.cs-drop-link {
         font-size: clamp(0.875rem, 2vw, 1.25rem);
         color: #fff;
     }
 }

 @media only screen and (min-width: 1024px) {
     #cs-navigation .cs-dropdown {
         position: relative;
     }

     #cs-navigation .cs-dropdown:hover {
         cursor: pointer;
     }

     #cs-navigation .cs-dropdown:hover .cs-drop-ul {
         visibility: visible;
         opacity: 1;
         transform: scaleY(1);
     }

     #cs-navigation .cs-dropdown:hover .cs-drop-li {
         opacity: 1;
         transform: translateY(0);
     }

     #cs-navigation .cs-drop-icon {
         display: inline-block;
         height: auto;
         width: 0.75rem;
     }

     #cs-navigation .cs-drop-ul {
         z-index: -100;
         position: absolute;
         top: 100%;
         visibility: hidden;
         opacity: 0;
         transform: scaleY(0);
         border-bottom: 5px solid var(--secondary);
         border-radius: 0 0 1.5rem 1.5rem;
         margin: 0;
         background-color: #fff;
         min-width: 12.5rem;
         overflow: hidden;
         padding: 0;
         transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
         box-shadow: inset rgba(149, 157, 165, 0.1) 0px 8px 10px;
         transform-origin: top;
     }

     #cs-navigation .cs-drop-li {
         opacity: 0;
         transform: translateY(-0.625rem);
         display: block;
         height: auto;
         width: 100%;
         list-style: none;
         text-decoration: none;
         font-size: 1rem;
         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-li-link.cs-drop-link {
         display: block;
         width: 100%;
         box-sizing: border-box;
         padding: 0.75rem;
         white-space: nowrap;
         text-decoration: none;
         text-transform: uppercase;
         font-family: var(--headerFont);
         font-size: 0.875rem;
         line-height: 1.5em;
         font-weight: 600;
         color: var(--headerColor);
         transition: color 0.3s, background-color 0.3s;
     }

     #cs-navigation .cs-li-link.cs-drop-link:hover {
         background-color: #f7f7f7;
     }

     #cs-navigation .cs-li-link.cs-drop-link:before {
         display: none;
     }
 }

 @media only screen and (max-width: 1023px) {
     body.dark-mode #cs-navigation .cs-drop-ul {
         background-color: transparent;
         border: 1px solid #fff;
         animation: ulGlow 7.2s forwards infinite;
         box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 44px, inset rgba(67, 183, 255, 0.2) 0px 0px 30px, inset rgba(67, 183, 255, 0.2) 0px 0px 55px, rgba(67, 183, 255, 0.4) 0px 0px 10px;
     }

     body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
         color: #1a1a1a;
     }

     body.dark-mode #cs-navigation .cs-drop-icon {
         filter: grayscale(1) brightness(1000%);
     }
 }

 @media only screen and (min-width: 1024px) {
     body.dark-mode #cs-navigation .cs-drop-ul {
         background-color: var(--dark);
         border-color: #fff;
         overflow: visible;
     }

     body.dark-mode #cs-navigation .cs-li-link.cs-drop-link {
         color: var(--bodyTextColorWhite);
         transition: color 0.3s, background-color 0.3s, box-shadow 0.3s;
     }

     body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
         color: var(--primary);
         box-shadow: rgba(67, 183, 255, 0.2) 0px 0px 24px, rgba(67, 183, 255, 0.2) 0px 0px 39px, rgba(67, 183, 255, 0.2) 0px 0px 60px;
     }

     body.dark-mode #cs-navigation .cs-drop-li:last-of-type .cs-drop-link {
         border-radius: 0 0 1.3125rem 1.3125rem;
     }

     body.dark-mode #cs-navigation .cs-drop-icon {
         filter: grayscale(1) brightness(1000%);
     }
 }

 @media only screen and (min-width: 1024px) {
     body.scroll #cs-navigation {
         top: 0;
         border-radius: 0;
         max-width: 100%;
         width: 100%;
     }

     #cs-navigation {
         z-index: 10000;
         position: fixed;
         top: 2rem;
         left: 50%;
         transform: translateX(-50%);
         display: flex;
         align-items: center;
         border-radius: clamp(0.75rem, 2vw, 1.5rem);
         background-color: #fff;
         height: 6rem;
         max-width: 90rem;
         width: 94%;
         box-sizing: border-box;
         padding: clamp(0.75rem, 2vw, 1.5rem) 0;
         transition: top 0.3s, border-radius 0.3s, width 0.3s, max-width 0.3s, background-color 0.3s;
         box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
     }

     #cs-navigation .cs-container {
         display: flex;
         justify-content: space-between;
         align-items: center;
         margin: auto;
         max-width: 90rem;
         width: 100%;
         box-sizing: border-box;
         padding: 0 1.5rem;
         gap: 1.5rem;
     }

     #cs-navigation .cs-toggle {
         display: none;
     }

     #cs-navigation .cs-logo {
         z-index: 100;
         position: relative;
         transform-style: preserve-3d;
         perspective: 700px;
         display: flex;
         justify-content: flex-start;
         align-items: center;
         margin: 0 auto 0 0;
         height: 3rem;
         max-width: 10.125rem;
         width: 18.4%;
         padding: 0;
     }

     #cs-navigation .cs-logo img {
         height: 100%;
         width: auto;
         object-fit: contain;
     }

     #cs-navigation .cs-logo .cs-default {
         -webkit-backface-visibility: hidden;
         backface-visibility: hidden;
         transition: opacity 0.3s, transform 0.6s;
     }

     #cs-navigation .cs-logo .cs-onscroll {
         z-index: -1;
         position: absolute;
         top: 0;
         left: 0;
         -webkit-backface-visibility: hidden;
         backface-visibility: hidden;
         opacity: 1;
         transform: rotateX(180deg);
         width: 100%;
         transition: opacity 0.3s, transform 0.6s;
     }

     #cs-navigation .cs-contact-group {
         display: flex;
         justify-content: center;
         align-items: center;
         gap: 1.5rem;
     }

     #cs-navigation .login {
         text-decoration: none;
         font-size: 0.875em;
         font-weight: 700;
         color: var(--bodyText);
     }

     #cs-navigation .login:hover {
         text-decoration: underline;
     }

     #cs-navigation .cs-ul-wrapper {
         position: absolute;
         top: 50%;
         left: 50%;
         transform: translate(-50%, -50%);
         display: flex;
         align-items: center;
         height: 100%;
     }

     #cs-navigation .cs-ul {
         display: flex;
         justify-content: flex-start;
         align-items: center;
         margin: 0;
         height: 100%;
         width: 100%;
         padding: 0;
         gap: clamp(1.25rem, 2.6vw, 2.25rem);
     }

     #cs-navigation .cs-li {
         display: flex;
         align-items: center;
         height: 100%;
         padding: 0;
         list-style: none;
         flex: none;
     }

     #cs-navigation .cs-li-link {
         position: relative;
         display: block;
         margin: 0;
         text-decoration: none;
         text-transform: uppercase;
         font-family: var(--headerFont);
         font-size: clamp(0.7rem, 1vw, 1rem);
         line-height: 1.5em;
         font-weight: 600;
         color: var(--headerColor);
         transition: color 0.3s;
     }

     #cs-navigation .cs-li-link:hover {
         color: var(--primaryLight);
     }

     #cs-navigation .cs-li-link.cs-active {
         font-weight: 700;
         color: var(--primaryLight);
     }

     #cs-navigation .cs-button-solid {
         display: none;
     }
 }

 @media only screen and (min-width: 1200px) {
     #cs-navigation .cs-social {
         display: flex;
     }

     #cs-navigation .cs-button-solid {
         z-index: 1;
         position: relative;
         right: -1.25rem;
         display: block;
         line-height: 3rem;
     }
 }

 @media only screen and (min-width: 87.5rem) {
     #cs-navigation .button-orange {
         display: block;
     }
 }

 @media only screen and (min-width: 1024px) {
     body.dark-mode #cs-navigation {
         background-color: var(--dark);
     }

     body.dark-mode #cs-navigation .cs-logo .cs-default {
         opacity: 1;
         transform: rotateX(-180deg);
     }

     body.dark-mode #cs-navigation .cs-logo .cs-onscroll {
         opacity: 1;
         transform: rotateX(0deg);
     }

     body.dark-mode #cs-navigation .cs-li-link, body.dark-mode #cs-navigation .login {
         color: var(--bodyTextColorWhite);
     }

     body.dark-mode #cs-navigation .cs-li-link:hover {
         color: var(--secondary);
     }

     body.dark-mode #cs-navigation .cs-li-link.cs-active {
         color: var(--secondary);
     }
 }

 @media only screen and (min-width: 0rem) {
     #banner-1519 {
         z-index: 1;
         position: relative;
         background-color: var(--primary);
         overflow: hidden;
         padding: var(--sectionPadding);
         padding-top: clamp(11.875rem, 25vw, 16.75rem);
         padding-bottom: clamp(3rem, 7vw, 6.25rem);
     }

     #banner-1519 .cs-container {
         display: flex;
         flex-direction: column;
         justify-content: center;
         align-items: center;
         margin: auto;
         max-width: 80rem;
         width: 100%;
         text-align: center;
     }

     #banner-1519 .cs-int-title {
         position: relative;
         margin: 0;
         text-transform: uppercase;
         font-family: var(--headerFont);
         font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
         line-height: 1.2em;
         font-weight: 900;
         color: var(--bodyTextColorWhite);
         text-align: center;
         text-align: inherit;
     }

     #banner-1519 .cs-breadcrumbs {
         display: flex;
         justify-content: center;
         align-items: center;
     }

     #banner-1519 .cs-link {
         position: relative;
         display: flex;
         justify-content: center;
         align-items: center;
         text-decoration: none;
         font-size: 1rem;
         line-height: 1.2em;
         color: var(--bodyTextColor);
     }

     #banner-1519 .cs-link:last-of-type {}

     #banner-1519 .cs-link:last-of-type::after {
         display: none;
     }

     #banner-1519 .cs-link:after {
         position: relative;
         content: "";
         display: block;
         margin: 0 1rem;
         background: url("https://csimg.nyc3.cdn.digitaloceanspaces.com/Images/Icons/grey-chevron.svg");
         background-position: center;
         background-size: contain;
         background-repeat: no-repeat;
         height: 0.75rem;
         width: 0.4375rem;
     }

     #banner-1519 .cs-link.cs-active {
         color: var(--primary);
     }

     #banner-1519 .cs-background {
         z-index: -1;
         position: absolute;
         top: 0;
         left: 0;
         display: block;
         height: 100%;
         width: 100%;
     }

     #banner-1519 .cs-background img {
         position: absolute;
         top: 0;
         left: 0;
         height: 100%;
         width: 100%;
         object-fit: cover;
     }

     #banner-1519 .cs-background:before {
         z-index: 1;
         position: absolute;
         top: 0;
         left: 0;
         content: "";
         opacity: 0.8;
         display: block;
         background: #fff3ec;
         height: 100%;
         width: 100%;
     }

     #banner-1519 .cs-mask {
         --maskBG: #ffffff;
         z-index: 100;
         position: absolute;
         bottom: -1px;
         left: 0;
         display: block;
         height: auto;
         width: 100%;
     }
 }

 @media only screen and (min-width: 48rem) {
     #banner-1519 .cs-background:before {
         opacity: 1;
         background: linear-gradient(90deg, rgba(255, 243, 236, 0.9) 23.05%, rgba(255, 243, 236, 0) 80.08%);
         height: 100%;
         width: 100%;
     }
 }

 @media only screen and (min-width: 0rem) {
     body.dark-mode #banner-1519 {
         z-index: 1;
         position: relative;
         background-color: #000;
     }

     body.dark-mode #banner-1519 .cs-mask {
         --maskBG: var(--dark);
     }

     body.dark-mode #banner-1519:before {
         z-index: -1;
         position: absolute;
         top: 0;
         left: 0;
         content: "";
         opacity: 1;
         display: block;
         background: rgba(0, 16, 153, 0.3);
         background: -o-linear-gradient(305deg, rgba(0, 16, 153, 0.2) 0%, rgba(58, 217, 255, 0.2) 96%);
         background: linear-gradient(145deg, rgba(0, 16, 153, 0.2) 0%, rgba(58, 217, 255, 0.2) 96%);
         height: 100%;
         width: 100%;
         filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#001099", endColorstr="#3ad9ff", GradientType=1);
     }
 }

 @media only screen and (min-width: 0rem) {
     #cta-1693 {
         position: relative;
         padding: var(--sectionPadding);
         padding-top: 0;
         z-index: 100;
     }

     #cta-1693 .cs-container {
         display: flex;
         flex-direction: column;
         align-items: center;
         border-radius: 1rem;
         margin: auto;
         background-color: var(--primary);
         max-width: 90rem;
         width: 100%;
         padding: clamp(3rem, 9vw, 6.25rem) clamp(2rem, 7vw, 6.25rem);
         gap: clamp(3rem, 6vw, 4rem);
     }

     #cta-1693 .cs-content {
         display: flex;
         flex-direction: column;
         align-items: center;
         width: 100%;
         text-align: center;
         gap: 1.5rem;
     }

     #cta-1693 .cs-title {
         margin: 0;
         max-width: 20ch;
         color: #fff;
     }

     #cta-1693 .cs-wrapper {
         z-index: 1;
         position: absolute;
         top: 0;
         left: 50%;
         transform: translateX(-50%);
         height: 100%;
         max-width: 120rem;
         width: 100%;
     }

     #cta-1693 .cs-graphic {
         position: absolute;
         top: 50%;
         opacity: 0.1;
         transform: translateY(-50%);
         height: 23.25rem;
         width: 23.25rem;
     }

     #cta-1693 .cs-graphic-1 {
         left: -16.3125rem;
     }

     #cta-1693 .cs-graphic-2 {
         right: -16.3125rem;
     }
 }

 @media only screen and (min-width: 48rem) {
     #cta-1693 .cs-content {
         flex-direction: row;
         justify-content: space-between;
         text-align: left;
     }

     #cta-1693 .cs-graphic-1 {
         left: -7.8125rem;
     }

     #cta-1693 .cs-graphic-2 {
         right: -7.8125rem;
     }
 }

 @media only screen and (min-width: 0rem) {
     body.dark-mode #cta-1693 .cs-container {
         z-index: 1;
         position: relative;
         background-color: #0a2030;
     }
 }

 @media only screen and (min-width: 0rem) {
     #cta-1693 .cs-container, #cta-1693 .cs-wrapper {
         max-width: 67.5rem;
         position: relative;
         z-index: 1;
     }

     /* #cta-1693 .cs-container:after, #cta-1693 .cs-wrapper:after {
         content: '';
         width: 60%;
         height: clamp(12rem, 25vw, 25rem);
         border-left: 1.25rem solid var(--primary);
         border-right: 1.25rem solid var(--primary);
         opacity: 1;
         position: absolute;
         display: block;
         top: 80%;
         left: 50%;
         transform: translateX(-50%);
         z-index: -2;
     } */

     #cta-1693 .cs-container:before {
         content: '';
         width: 100%;
         height: 100%;
         background: var(--primary);
         opacity: 1;
         border-radius: 1rem;
         position: absolute;
         display: block;
         top: 0;
         left: 0;
         z-index: 1;
     }

     #cta-1693 .cs-content {
         z-index: 2;
     }

     #cta-1693 .cs-lights-wrapper {
         font-size: min(1.9vw, 1rem);
         width: 44.5625em;
         position: absolute;
         left: 50%;
         z-index: -1;
         pointer-events: none;
         transform: translateX(-50%) translateY(-100px);
         transition: transform 0.4s;
     }

     #cta-1693 .cs-lights {
         width: 100%;
         height: auto;
         position: absolute;
         top: 100%;
         left: 50%;
         transform: translateX(-50%);
         z-index: -10;
     }

     #cta-1693 .cs-lights img {
         width: 100%;
         height: auto;
     }

     #cta-1693 .cs-flare {
         width: 14.625em;
         height: 25.0625em;
         border-radius: 50%;
         background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 46%, #ffffff 93%, #ffffff 100%), linear-gradient(to bottom, rgba(255, 255, 255, 0) 78%, #ffffff 89%, #ffffff 93%, #ffffff 100%);
         filter: blur(1.25em);
         animation-delay: 0.7s;
         opacity: 0;
         position: absolute;
         bottom: -2.6875em;
     }

     #cta-1693 .cs-flare:before {
         content: '';
         width: 1.75em;
         height: 1em;
         background: #fff;
         border-radius: 50%;
         opacity: 1;
         position: absolute;
         display: block;
         bottom: 0;
         left: 50%;
         transform: translateY(-50%);
     }

     #cta-1693 .light1 {
         left: 4.375em;
         animation-delay: 3s;
     }

     #cta-1693 .light2 {
         left: 14.9375em;
         animation-delay: 5s;
     }

     #cta-1693 .light3 {
         left: 26.6875em;
         animation-delay: 0.1s;
     }

     #cta-1693 .light4 {
         display: none;
         left: 16.3125em;
     }

     #cta-1693 .light5 {
         display: none;
         left: 16.3125em;
     }

     @keyframes wrapperZ {
         0% {
             z-index: -1;
         }

         98% {
             z-index: -1;
         }

         99% {
             z-index: 2;
         }

         100% {
             z-index: 2;
         }
     }

     @keyframes bilboardGlow {
         0% {
             opacity: 0.18;
         }

         19% {
             opacity: 0.18;
         }

         20% {
             opacity: 0;
         }

         21% {
             opacity: 0.3;
         }

         59% {
             opacity: 0.18;
         }

         60% {
             opacity: 0;
         }

         61% {
             opacity: 0.18;
         }

         62% {
             opacity: 0;
         }

         63% {
             opacity: 0.25;
         }

         100% {
             opacity: 0.18;
         }
     }

     #cta-1693 .cs-bulb {
         width: 1.75em;
         height: 1em;
         background: #fff;
         border-radius: 50%;
         opacity: 0.3;
         position: absolute;
         display: block;
         bottom: -3.25em;
         z-index: -20;
         animation-delay: 0.7s;
     }

     #cta-1693 .cs-bulb1 {
         left: 10.375em;
         animation-delay: 3s;
     }

     #cta-1693 .cs-bulb2 {
         left: 21.4375em;
         animation-delay: 5s;
     }

     #cta-1693 .cs-bulb3 {
         left: 33.125em;
         animation-delay: 0.1s;
     }

     #cta-1693 .cs-bulb4 {
         display: none;
     }

     #cta-1693 .cs-bulb5 {
         display: none;
     }

     @keyframes bulbGlow {
         0% {
             opacity: 1;
         }

         19% {
             opacity: 1;
         }

         20% {
             opacity: 0.3;
         }

         21% {
             opacity: 1;
         }

         59% {
             opacity: 1;
         }

         60% {
             opacity: 0.3;
         }

         61% {
             opacity: 1;
         }

         62% {
             opacity: 0.3;
         }

         63% {
             opacity: 1;
         }

         100% {
             opacity: 1;
         }
     }
 }

 @media only screen and (min-width: 64rem) {
     #cta-1693 .cs-lights-wrapper {
         width: 57.75em;
     }

     #cta-1693 .cs-lights {
         width: 57.75em;
     }

     #cta-1693 .light1 {
         left: -1.25em;
         animation-delay: 3s;
     }

     #cta-1693 .light2 {
         left: 9.9375em;
         animation-delay: 5s;
     }

     #cta-1693 .light3 {
         left: 21.1875em;
         animation-delay: 0.1s;
     }

     #cta-1693 .light4 {
         left: 32.9375em;
         animation-delay: 4s;
         display: block;
     }

     #cta-1693 .light5 {
         left: 44.125em;
         animation-delay: 2.5s;
         display: block;
     }

     #cta-1693 .cs-bulb1 {
         left: 4.875em;
         animation-delay: 3s;
     }

     #cta-1693 .cs-bulb2 {
         left: 16.875em;
         animation-delay: 5s;
     }

     #cta-1693 .cs-bulb3 {
         left: 28em;
         animation-delay: 0.1s;
     }

     #cta-1693 .cs-bulb4 {
         display: block;
         left: 39.6875em;
         animation-delay: 4s;
     }

     #cta-1693 .cs-bulb5 {
         display: block;
         left: 50.9375em;
         animation-delay: 2.5s;
     }
 }

 @media only screen and (min-width: 0rem) {
     body.dark-mode #cta-1693 .cs-container:before {
         box-sizing: border-box;
         border: 5px solid rgba(255, 255, 255, 0.1);
         background: radial-gradient(ellipse at center, #143f6d 0%, #01060a 78%);
     }

     body.dark-mode #cta-1693 .cs-container:after {
         border-color: #01060a;
     }

     body.dark-mode #cta-1693 .cs-flare {
         animation: bilboardGlow 15.2s forwards infinite;
         animation-delay: 0.7s;
     }

     body.dark-mode #cta-1693 .cs-bulb {
         animation: bulbGlow 15.2s forwards infinite;
         animation-delay: 0.7s;
     }

     body.dark-mode #cta-1693 .light1 {
         animation-delay: 3s;
     }

     body.dark-mode #cta-1693 .light2 {
         animation-delay: 5s;
     }

     body.dark-mode #cta-1693 .light3 {
         animation-delay: 0.1s;
     }

     body.dark-mode #cta-1693 .light4 {
         animation-delay: 4s;
     }

     body.dark-mode #cta-1693 .light5 {
         animation-delay: 2.5s;
     }

     body.dark-mode #cta-1693 .cs-bulb1 {
         animation-delay: 3s;
     }

     body.dark-mode #cta-1693 .cs-bulb2 {
         animation-delay: 5s;
     }

     body.dark-mode #cta-1693 .cs-bulb3 {
         animation-delay: 0.1s;
     }

     body.dark-mode #cta-1693 .cs-bulb4 {
         animation-delay: 4s;
     }

     body.dark-mode #cta-1693 .cs-bulb5 {
         animation-delay: 2.5s;
     }

     body.dark-mode #cta-1693 .cs-lights-wrapper {
         transform: translateX(-50%) translateY(0);
         animation: wrapperZ 0.35s forwards;
     }
 }

 @media only screen and (min-width: 0rem) {
     #cs-footer-840 {
         z-index: 10;
         position: relative;
         background-color: var(--primary);
         padding: var(--sectionPadding);
         padding-top: clamp(6.25rem, 20vw, 18.5rem);
         padding-bottom: clamp(1.875rem, 5vw, 3.125rem);
     }

     #cs-footer-840 .cs-container {
         display: flex;
         flex-wrap: wrap;
         justify-content: flex-start;
         align-items: flex-start;
         margin: auto;
         max-width: 34.375rem;
         width: 100%;
         column-gap: 3rem;
         row-gap: 2rem;
     }

     #cs-footer-840 .cs-logo-group {
         position: relative;
         width: 100%;
     }

     #cs-footer-840 .cs-logo {
         display: block;
         margin: 0 0 1rem 0;
         height: auto; 
         width: 19.625rem;
     }

     #cs-footer-840 .cs-text {
         margin: 0 0 2rem;
         color: var(--bodyTextColorWhite);
     }

     #cs-footer-840 .cs-logo-img {
         /* height: auto;
         width: 100%; */
     }

     #cs-footer-840 .cs-header {
         position: relative;
         display: block;
         margin: 0 0 1.25rem 0;
         text-transform: uppercase;
         font-family: var(--headerFont);
         font-size: 1.25rem;
         line-height: 1.5em;
         font-weight: 700;
         color: var(--bodyTextColorWhite);
     }

     #cs-footer-840 .cs-ul {
         display: flex;
         flex-direction: column;
         margin: 0;
         padding: 0;
         gap: 0.75rem;
     }

     #cs-footer-840 .cs-ul-1 {
         flex-direction: row;
         flex-wrap: wrap;
         justify-content: space-between;
         max-width: 21.875rem;
         width: 100%;
         column-gap: 2rem;
     }

     #cs-footer-840 .cs-ul-1 .cs-li {
         width: 44%;
     }

     #cs-footer-840 .cs-li {
         list-style: none;
     }

     #cs-footer-840 .cs-link {
         display: inline-flex;
         align-items: flex-start;
         text-decoration: none;
         font-size: 1rem;
         line-height: 1.5em;
         color: #fff;
         transition: color 0.3s;
         text-align: left;
         gap: 0.5rem;
     }

     #cs-footer-840 .cs-link:hover {
         color: var(--secondary);
     }

     #cs-footer-840 .cs-icon {
         display: block;
         margin-right: 0.125rem;
         height: auto;
         width: 1.25rem;
     }

     #cs-footer-840 .cs-bottom {
         display: flex;
         flex-wrap: wrap;
         justify-content: center;
         border-top: 1px solid rgba(255, 255, 255, 0.2);
         margin: clamp(3rem, 7vw, 4rem) auto 0;
         max-width: 80rem;
         width: 100%;
         padding-top: 1.5rem;
         text-align: center;
         gap: 0.75rem;
     }

     #cs-footer-840 .cs-credit, #cs-footer-840 .cs-bottom-link, #cs-footer-840 .cs-credit-link {
         position: relative;
         display: inline-block;
         margin: 0;
         width: auto;
         text-decoration: none;
         font-size: clamp(0.875rem, 1.5vw, 1rem);
         line-height: 1.5em;
         color: #fff;
         transition: color 0.3s;
     }

     #cs-footer-840 .cs-credit {
         width: 100%;
     }

     #cs-footer-840 .cs-credit-link {
         position: relative;
         display: inline-block;
         margin: 0;
         width: auto;
         text-decoration: none;
         font-size: clamp(0.875rem, 1.5vw, 1rem);
         line-height: 1.5em;
         color: #fff;
     }

     #cs-footer-840 .cs-credit-link:hover {
         color: var(--primary);
     }

     #cs-footer-840 .cs-bottom-links {
         display: flex;
         justify-content: center;
         align-items: center;
         width: 100%;
     }

     #cs-footer-840 .cs-bottom-link {
         display: flex;
         align-items: center;
     }

     #cs-footer-840 .cs-bottom-link:hover {
         color: var(--secondary);
     }

     #cs-footer-840 .cs-bottom-link:last-of-type:before {
         content: "";
         opacity: 1;
         display: block;
         margin: 0 0.75rem;
         background: currentColor;
         height: 0.875rem;
         width: 1px;
     }

     #cs-footer-840 .cs-footer-swoosh {
         --footerSwish: #fff;
         position: absolute;
         top: -1px;
         left: 0;
         height: auto;
         width: 100%;
     }
 }

 @media only screen and (min-width: 48rem) {
     #cs-footer-840 .cs-container {
         max-width: 80rem;
         row-gap: clamp(3rem, 7vw, 4rem);
     }

     #cs-footer-840 .cs-bottom {
         flex-wrap: nowrap;
         justify-content: space-between;
     }

     #cs-footer-840 .cs-credit {
         text-align: left;
     }

     #cs-footer-840 .cs-bottom-links {
         justify-content: flex-end;
     }
 }

 @media only screen and (min-width: 1024px) {
     #cs-footer-840 .cs-container {
         flex-wrap: nowrap;
         justify-content: flex-end;
         align-items: flex-start;
     }

     #cs-footer-840 .cs-logo-group {
         margin-right: auto;
         max-width: 25rem;
         width: 30%;
     }

     #cs-footer-840 .cs-text {
         width: 100%;
     }

     #cs-footer-840 .cs-social {
         position: relative;
         top: auto;
         right: auto;
         flex-direction: row;
     }
 }

 @media only screen and (min-width: 0rem) {
     body.dark-mode #cs-footer-840 {
         background-color: #01060a;
     }

     body.dark-mode #cs-footer-840 .cs-footer-swoosh {
         --footerSwish: var(--dark);
     }
 }