/*-- -------------------------- -->
<---        Core Styles         -->
<--- -------------------------- -*/
/* Sticky header scroll state (applies at all breakpoints) */
body.scroll #cs-navigation {
  background-color: #08101A;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
/* Mobile */
@media only screen and (min-width: 0em) {
  :root {
    --primary: #3D64FD;
    --primaryLight: #F8F8F8;
    --primaryWhite: #FAFBFC;
    --secondary: #08101A;
    --secondaryLight: #F8F8F8;
    --headerColor: #08101A;
    --bodyTextColor: #55595E;
    --bodyTextColorWhite: #ffffff;
    --neutral90: #1A1A1F;
    --neutral10: #F8F8F8;
    --neutral50: #FAFBFC;
    --borderColor: #D2D8DF;
    --topperFontSize: clamp(0.6875rem, 1.6vw, 0.75rem);
    --heroFontSize: clamp(2.5rem, 4.2vw, 3rem);
    --headerFontSize: clamp(2.25rem, 4.2vw, 3rem);
    --headerTwoFontSize: clamp(2rem, 3vw, 2.5rem);
    --headerThreeFontSize: clamp(1.875rem, 3vw, 2.25rem);
    --headerFourFontSize: clamp(1.4rem, 3vw, 1.5rem);
    --headerFiveFontSize: clamp(1.25rem, 3vw, 1.375rem);
    --headerSixFontSize: clamp(1.125rem, 3vw, 1.25rem);
    --bodyFontSize: clamp(1rem, 2vw, 1.125rem);
    --mediumFontSize: clamp(0.875rem, 2vw, 1rem);
    --regularFontSize: clamp(0.75rem, 2vw, 0.875rem);
    --smallFontSize: clamp(0.625rem, 2vw, 0.75rem);
    /* 60px - 100px top and bottom */
    --cardPadding: clamp(1rem, 2vw, 1.25rem);
    --sectionPadding: clamp(3.75rem, 7.82vw, 5.625rem) 1rem;
    --boxCardShadow: rgba(87, 107, 147, 0.12) 0px 24px 54px 0px;
    --scrollbarWidth: 0px;
    --app-height: 100vh;
  }
  /* inter-regular - latin */
  @font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 400;
    src: url('/assets/fonts/inter-v18-latin-regular.woff2') format('woff2');
  }
  /* inter-600 - latin */
  @font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 600;
    src: url('/assets/fonts/inter-v18-latin-600.woff2') format('woff2');
  }
  /* inter-700 - latin */
  @font-face {
    font-display: swap;
    font-family: 'Inter';
    font-style: normal;
    font-weight: 700;
    src: url('/assets/fonts/inter-v18-latin-700.woff2') format('woff2');
  }
  body,
  html {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-family: 'Inter', sans-serif;
    color: var(--bodyTextColor);
    scroll-behavior: smooth;
  }
  /* WCAG 2.4.7 — visible focus indicator for keyboard navigation */
  *:focus-visible {
    outline: 2px solid #3D64FD;
    outline-offset: 2px;
  }
  /* body:before overlay removed — not needed for Anker Insurance design */
  main {
    flex: 1;
    width: 100%;
  }
  *,
  *:before,
  *:after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    transition: background-color 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }
  body:has(#cs-maintenance-popup) {
    overflow: hidden;
  }
  #cs-maintenance-popup {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: fixed;
    z-index: 100000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    display: flex;
  }
  .cs-maintenance-popup {
    background: var(--primary);
    border-radius: 2rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .cs-maintenance-popup p {
    color: white;
  }
  .cs-maintenance-popup a {
    width: fit-content;
  }
  .container {
    position: relative;
    width: 92%;
    margin: auto;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    margin: 0;
    color: var(--headerColor);
  }
  p,
  li {
    font-size: var(--bodyFontSize);
    line-height: 27/18em;
    margin: 0;
    text-decoration: none;
    color: var(--bodyTextColor);
  }
  p a,
  li a {
    text-decoration: underline;
    color: var(--primaryDarkest);
  }
  a {
    text-decoration: none;
    color: var(--bodyTextColor);
  }
  p,
  li {
    color: var(--bodyTextColor);
  }
  a:hover,
  button:hover {
    cursor: pointer;
  }
  p > a {
    -webkit-transition: 0.2s ease;
    -o-transition: 0.2s ease;
    transition: 0.2s ease;
  }
  input,
  input::placeholder {
    font-size: var(--mediumFontSize);
    text-align: start;
  }
  .cs-highlight-author {
    color: var(--secondaryDark);
  }
  .cs-bold {
    font-weight: bold;
  }
  .button-container {
    position: absolute;
    bottom: 0%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-wrap: wrap;
    width: max-content;
    gap: 15/16em;
    margin: auto;
    justify-content: center;
  }
  .cs-button-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: var(--mediumFontSize);
    border: 1px solid var(--primary);
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: var(--primary);
    height: clamp(2.875em, 5.5vw, 3.25em);
    min-width: 8rem;
    padding: 0 2rem;
    box-sizing: border-box;
    width: max-content;
  }
  .cs-button-link img {
    width: 20px;
    height: 20px;
  }
  .cs-button-link:hover .filter-dark {
    filter: invert(96%) sepia(100%) saturate(0%) hue-rotate(346deg) brightness(102%) contrast(104%);
  }
  .cs-button-link:hover:before {
    width: 100%;
  }
  .cs-invisible {
    visibility: hidden;
  }
  .cs-italic-bold {
    font-weight: 900;
    font-style: italic;
  }
  .cs-button-link-light {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    font-size: var(--mediumFontSize);
    border: 1px solid white;
    position: relative;
    z-index: 1;
    font-weight: 700;
    color: white;
    height: clamp(2.875em, 5.5vw, 3.25em);
    min-width: 8rem;
    padding: 0 2rem;
    box-sizing: border-box;
    width: max-content;
  }
  .line {
    width: 85%;
    background: var(--bodyTextColor);
    height: 1px;
    margin: 0 auto;
    max-width: 850px;
  }
  .line.line-full {
    width: 100%;
  }
  .skip {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: -1111111;
  }
  .cs-topper {
    font-size: var(--topperFontSize);
    line-height: 1.2em;
    text-transform: uppercase;
    text-align: inherit;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
    display: block;
  }
  h1.cs-title {
    font-size: var(--headerFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0 0;
    color: var(--headerColor);
    position: relative;
  }
  h2.cs-title {
    font-size: var(--headerTwoFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0 0;
    color: var(--headerColor);
    position: relative;
  }
  h3.cs-title {
    font-size: var(--headerThreeFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0 0;
    color: var(--headerColor);
    position: relative;
  }
  h4.cs-title {
    font-size: var(--headerFourFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0 0;
    color: var(--headerColor);
    position: relative;
  }
  h5.cs-title {
    font-size: var(--headerFiveFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0 0;
    color: var(--headerColor);
    position: relative;
  }
  h6.cs-title {
    font-size: var(--headerSixFontSize);
    font-weight: 700;
    line-height: 1.2em;
    text-align: inherit;
    margin: 0 0 0 0;
    color: var(--headerColor);
    position: relative;
  }
  .cs-top-section {
    padding-top: 100/16rem !important;
  }
  .cs-text {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0;
    color: var(--bodyTextColor);
  }
  .cs-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .cs-container {
    width: 100%;
    /* changes to 1280px at desktop */
    max-width: 31rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(2rem, 4vw, 2.5rem);
  }
  .cs-section-padding {
    padding: var(--sectionPadding);
  }
  .cs-button-solid {
    font-size: var(--mediumFontSize);
    height: clamp(2.875em, 5.5vw, 3.25em);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: #fff;
    padding: 0 2rem;
    background-color: var(--primary);
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    border: 0;
    display: flex;
    align-items: center;
    width: max-content;
  }
  .cs-button-solid.alt {
    background-color: var(--secondary);
  }
  .cs-graphic1 {
    /* 200px - 548px */
    width: clamp(12.5rem, 30vw, 34.25rem);
    height: auto;
    opacity: 0.4;
    display: block;
    position: absolute;
    top: 0rem;
    left: 0;
    z-index: 0;
  }
  .cs-graphic2 {
    width: 34.25rem;
    height: auto;
    opacity: 0.4;
    display: block;
    position: absolute;
    right: 0;
    bottom: 0rem;
    z-index: 0;
  }
  .cs-graphic3 {
    width: 34.25rem;
    height: auto;
    opacity: 0.4;
    display: block;
    position: absolute;
    right: 0;
    top: -2rem;
    z-index: -1;
  }
  .cs-graphic4 {
    width: 34.25rem;
    height: auto;
    opacity: 0.4;
    display: block;
    position: absolute;
    left: 0;
    bottom: 0rem;
    z-index: -1;
  }
  .cs-button-group {
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    height: auto;
  }
  #popup.popup {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
    align-items: center;
    justify-content: center;
  }
  #popup .popup-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 390px;
    text-align: center;
    position: relative;
  }
  #popup .close {
    color: var(--primary);
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    font-size: 2rem;
    height: 20px;
    align-items: center;
    justify-content: center;
    font-weight: bold;
  }
  #popup .close:hover,
  #popup close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  }
  .cs-modal {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 2rem;
    overflow: auto;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.85);
  }
  .cs-modal > div {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    height: auto;
  }
  .cs-modal-content {
    display: block;
    width: 100%;
    max-height: 80vh;
    max-width: 500px;
  }
  .cs-close {
    width: auto;
    margin-left: auto;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    transition: 0.3s;
    display: block;
    text-align: end;
  }
  .filter-dark {
    filter: invert(96%) sepia(100%) saturate(0%) hue-rotate(346deg) brightness(102%) contrast(104%);
  }
  .cs-close:hover,
  .cs-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
  }
  #cs-caption {
    display: block;
    width: 100%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: auto;
  }
  img {
    pointer-events: none;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
  }
  .cs-background:not(.cs-carousel-slides),
  .cs-picture {
    background-color: var(--primary);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .cs-container {
    max-width: 55.625rem;
  }
  .cs-card-group {
    grid-template-columns: repeat(2, 1fr);
  }
  .cs-card-group .cs-item .cs-flex-group .cs-desc .read-more-btn {
    bottom: 0;
    right: 0;
  }
}
/* Desktop */
@media only screen and (min-width: 64rem) {
  .cs-button-group {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1rem;
    min-height: 3em;
    height: auto;
  }
  .cs-top-section {
    padding-top: 125/16rem !important;
  }
  .cs-container {
    max-width: 80rem;
  }
  .cs-sidebar {
    position: sticky;
    top: 6.5em;
  }
  .cs-sidebar.cs-filter-searchable {
    height: 85vh;
    overflow-y: scroll!important;
    width: 23%!important;
    padding-right: 1rem;
  }
  .cs-card-group {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* Reset Margins */
@media only screen and (min-width: 1024px) {
  body,
  html {
    padding: 0;
    margin: 0;
  }
}
/* Scale full website with the viewport width */
@media only screen and (min-width: 2000px) {
  body,
  html {
    font-size: 0.85vw;
  }
}
/* Desktop */
@media only screen and (min-width: 0em) {
  ::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6/16em rgba(0, 0, 0, 0.3);
    background-color: #fff;
  }
  ::-webkit-scrollbar-track-piece {
    background-color: #fff;
  }
  ::-webkit-scrollbar {
    width: 12/16em;
    height: 6/16em;
    background-color: #fff;
  }
  .cs-desc::-webkit-scrollbar {
    width: 6/16em;
    background: var(--bodyTextColor);
  }
  ::-webkit-scrollbar-thumb {
    border-radius: 10/16em;
    background: var(--primary);
  }
}
/*-- -------------------------- -->
<---         Animations         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  @keyframes floatAnimation {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-2rem);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes floatAnimation2 {
    0% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-3rem);
    }
    100% {
      transform: translateY(0);
    }
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-262 {
    padding: var(--sectionPadding);
  }
  #cta-262 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    /* 32px - 88px top & bottom */
    /* 24px - 88px left & right */
    padding: clamp(2em, 5vw, 3em) clamp(1.5em, 5.7vw, 5.5em);
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    /* clips the corners for the border radius to show */
    overflow: hidden;
    z-index: 1;
    /* prevents padding from adding to height and width */
    box-sizing: border-box;
  }
  #cta-262 .cs-button-box {
    display: flex;
    gap: 1rem;
    margin: auto 0;
  }
  #cta-262 .cs-background {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    z-index: -1;
  }
  #cta-262 .cs-background:before {
    /* black overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.7;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta-262 .cs-background:after {
    /* brown overlay */
    content: "";
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.2;
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #cta-262 .cs-background img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #cta-262 .cs-left-section {
    max-width: 27.125rem;
    text-align: center;
  }
  #cta-262 .cs-title {
    color: var(--bodyTextColorWhite);
  }
  #cta-262 .cs-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    /* 12px - 20px */
    gap: clamp(0.75rem, 1.6vw, 1.25rem);
  }
  #cta-262 .cs-header {
    /* 20px - 25px */
    font-size: clamp(1.25rem, 2.4vw, 1.5625rem);
    font-weight: bold;
    color: var(--primaryLight);
    display: block;
  }
  #cta-262 .cs-p {
    /* 14px - 20px */
    font-size: clamp(0.875rem, 1.5vw, 1.25rem);
    line-height: 1.5em;
    margin: 0;
    color: var(--bodyTextColorWhite);
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #cta-262 .cs-container {
    flex-direction: row;
    justify-content: space-between;
  }
  #cta-262 .cs-container .cs-background img {
    object-position: 0 60%;
  }
  #cta-262 .cs-content {
    align-items: flex-end;
    text-align: right;
    /* prevents flexbox from squishing it */
    flex: none;
  }
}
/*-- -------------------------- -->
<---     Mobile Navigation      -->
<--- -------------------------- -*/
body,
html {
  /* reset margin and padding so there's no gap between the nav and the screen edges */
  margin: 0;
  padding: 0;
}
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  main {
    overflow: hidden;
  }
  body.cs-open {
    overflow: hidden;
  }
  #cs-navigation {
    width: 100%;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    /* Mobile "Get A Quote" button inside dropdown */
  }
  #cs-navigation:before {
    content: "";
    width: 100%;
    height: 0vh;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    position: absolute;
    display: block;
    top: 100%;
    right: 0;
    z-index: -1100;
    opacity: 0;
    transition: height 0.5s, opacity 0.5s;
  }
  #cs-navigation.cs-active:before {
    height: 150vh;
    opacity: 1;
  }
  #cs-navigation.cs-active .cs-toggle .cs-line1 {
    top: 50%;
    transform: translate(-50%, -50%) rotate(225deg);
  }
  #cs-navigation.cs-active .cs-toggle .cs-line2 {
    top: 50%;
    transform-origin: center;
    transform: translate(-50%, -50%) translateY(0) rotate(-225deg);
  }
  #cs-navigation.cs-active .cs-toggle .cs-line3 {
    bottom: 100%;
    opacity: 0;
  }
  #cs-navigation.cs-active .cs-ul-wrapper {
    opacity: 1;
    transform: scaleY(1);
    transition-delay: 0.15s;
  }
  #cs-navigation.cs-active .cs-ul-wrapper .cs-ul {
    overflow: auto;
  }
  #cs-navigation.cs-active .cs-li {
    transform: translateY(0);
    opacity: 1;
  }
  #cs-navigation .cs-top-bar {
    width: 100%;
    background-color: #1A1A1A;
  }
  #cs-navigation .cs-top-container {
    width: 100%;
    padding: 0.5rem 1rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #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.5rem;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    margin: 0;
    color: #F7F7F7;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #cs-navigation .cs-hours {
    display: none;
  }
  #cs-navigation .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-top-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: auto;
    height: auto;
    display: block;
  }
  #cs-navigation .cs-social-icon {
    width: 0.5rem;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-container {
    width: 100%;
    padding: 1rem;
    max-width: none;
    box-sizing: border-box;
    background-color: rgba(26, 26, 26, 0.15);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  #cs-navigation .cs-logo {
    width: auto;
    height: 3.625rem;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  #cs-navigation .cs-toggle {
    width: 3.5rem;
    height: 3.5rem;
    margin: 0;
    padding: 0.75rem;
    background-color: var(--primary);
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
  }
  #cs-navigation .cs-box {
    width: 1.75rem;
    height: 1rem;
    position: relative;
  }
  #cs-navigation .cs-line {
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #fff;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
  #cs-navigation .cs-line1 {
    top: 0;
    transform-origin: center;
    transition: transform 0.5s, top 0.3s, left 0.3s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #cs-navigation .cs-line2 {
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top 0.3s, left 0.3s, transform 0.5s;
    animation-duration: 0.7s;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-direction: normal;
  }
  #cs-navigation .cs-line3 {
    bottom: 0;
    transition: bottom 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-ul-wrapper {
    width: 100%;
    height: auto;
    padding-bottom: 3rem;
    opacity: 0;
    background-color: #1A1A1A;
    box-shadow: inset rgba(0, 0, 0, 0.2) 0px 8px 24px;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s, opacity 0.3s;
  }
  #cs-navigation .cs-ul {
    margin: 0;
    padding: 3rem 0 0 0;
    width: 100%;
    height: auto;
    max-height: 65vh;
    overflow: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }
  #cs-navigation .cs-li {
    width: 100%;
    text-align: center;
    list-style: none;
    margin-right: 0;
    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, 2.5vw, 1.5rem);
    line-height: 1.2em;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    margin: 0;
    color: #F7F7F7;
    display: inline-block;
    position: relative;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-nav-button {
    display: none;
  }
  #cs-navigation .cs-li-quote {
    margin-top: 0.25rem;
    padding: 0 1.5rem;
  }
  #cs-navigation .cs-quote-btn {
    background-color: var(--primary) !important;
    color: #fff !important;
    border-radius: 0.5rem;
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-align: center;
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s;
  }
  #cs-navigation .cs-quote-btn:hover {
    background-color: #2b4fd6 !important;
    color: #fff !important;
  }
}
/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation {
    /* Dropdown Search Input (Mobile) */
    /* Sub-dropdown (nested categories → products) */
  }
  #cs-navigation .cs-li {
    text-align: center;
    width: 100%;
    display: block;
  }
  #cs-navigation .cs-dropdown {
    position: relative;
    color: #F7F7F7;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-ul {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin: 0.75rem 0 0 0;
    padding: 0.75rem 0;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link {
    opacity: 1;
    color: white;
  }
  #cs-navigation .cs-dropdown.cs-active .cs-drop-link img {
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    position: relative;
    transition: opacity 0.3s;
  }
  #cs-navigation .cs-drop-icon {
    width: 1.25rem;
    height: auto;
    position: absolute;
    top: 51%;
    right: -1.5rem;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    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-drop-search {
    width: 100%;
    padding: 0.5rem 0.75rem;
  }
  #cs-navigation .cs-drop-search .cs-drop-search-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    line-height: 1.71428571em;
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0.25rem;
    outline: none;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.1);
    color: #F7F7F7;
  }
  #cs-navigation .cs-drop-search .cs-drop-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
  }
  #cs-navigation .cs-drop-search .cs-drop-search-input:focus {
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.15);
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #F7F7F7;
  }
  #cs-navigation .cs-sub-dropdown {
    position: relative;
    cursor: pointer;
  }
  #cs-navigation .cs-sub-dropdown.cs-active .cs-sub-drop-ul {
    height: auto;
    opacity: 1;
    visibility: visible;
    margin: 0.5rem 0 0 0;
    padding: 0.3125rem 0;
  }
  #cs-navigation .cs-sub-dropdown.cs-active > .cs-sub-trigger .cs-sub-drop-icon {
    transform: rotate(-90deg);
  }
  #cs-navigation .cs-li-link.cs-sub-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.625rem;
    cursor: pointer;
    background-color: rgba(61, 100, 253, 0.08);
    color: #1A1A1A;
    padding: 0.625rem 0.75rem;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5rem;
    border-left: 3px solid #3D64FD;
  }
  #cs-navigation .cs-sub-drop-icon {
    width: 1.125rem;
    height: 1.125rem;
    display: inline-block;
    filter: none;
    transition: transform 0.3s;
    flex-shrink: 0;
  }
  #cs-navigation .cs-sub-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.3125rem;
    transition: padding 0.3s, margin 0.3s, height 0.3s, opacity 0.3s, visibility 0.3s;
  }
  #cs-navigation .cs-sub-drop-li {
    list-style: none;
  }
  #cs-navigation .cs-li-link.cs-sub-drop-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.5rem;
    color: #555;
    text-decoration: none;
    background-color: #fff;
    padding: 0.4375rem 0.75rem 0.4375rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    white-space: nowrap;
  }
  #cs-navigation .cs-li-link.cs-sub-drop-link:after {
    content: '';
    display: inline-block;
    width: 1rem;
    height: 1rem;
    background-image: url('/assets/icons/chevron-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    flex-shrink: 0;
  }
  #cs-navigation .cs-li-link.cs-sub-drop-link:before {
    display: none;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    /* Dropdown Search Input (Desktop) */
    /* Sub-dropdown (nested categories → click to expand) */
  }
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown:hover,
  #cs-navigation .cs-dropdown.cs-search-focused {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul,
  #cs-navigation .cs-dropdown.cs-search-focused .cs-drop-ul {
    z-index: 100;
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li,
  #cs-navigation .cs-dropdown.cs-search-focused .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
  }
  #cs-navigation .cs-drop-icon {
    width: 1.25rem;
    height: auto;
    display: inline-block;
    filter: brightness(0) invert(1);
    transition: filter 0.3s;
  }
  #cs-navigation .cs-drop-ul {
    min-width: 16.25rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow-y: auto;
    overflow-x: hidden;
    max-height: calc(100vh - 8rem);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid var(--primary);
    position: absolute;
    top: 99.9%;
    z-index: -100;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.3s, visibility 0.3s, opacity 0.3s;
  }
  #cs-navigation .cs-drop-li {
    list-style: none;
    font-size: 0.875rem;
    text-decoration: none;
    opacity: 0;
    width: 100%;
    height: auto;
    color: #1A1A1A;
    display: block;
    transform: translateY(-0.625rem);
    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-search {
    opacity: 1;
    transform: none;
    padding: 0.5rem 0.625rem;
    border-bottom: 1px solid #E0E0E0;
  }
  #cs-navigation .cs-drop-search .cs-drop-search-input {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.53846154em;
    padding: 0.375rem 0.625rem;
    border: 1px solid #E0E0E0;
    border-radius: 0.25rem;
    outline: none;
    box-sizing: border-box;
    background: #fff;
    color: #1A1A1A;
  }
  #cs-navigation .cs-drop-search .cs-drop-search-input::placeholder {
    color: rgba(125, 121, 156, 0.5);
  }
  #cs-navigation .cs-drop-search .cs-drop-search-input:focus {
    border-color: var(--primary);
  }
  #cs-navigation .cs-li-link {
    position: relative;
  }
  #cs-navigation .cs-li-link.cs-drop-link {
    font-size: 0.875rem;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    line-height: 1.5rem;
    text-decoration: none;
    width: 100%;
    padding: 0.4375rem 1.25rem 0.4375rem 0.75rem;
    box-sizing: border-box;
    color: #1A1A1A;
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    color: var(--primary);
    background-color: rgba(61, 100, 253, 0.05);
  }
  #cs-navigation .cs-li-link.cs-drop-link:before {
    display: none;
  }
  #cs-navigation .cs-sub-dropdown {
    position: relative;
  }
  #cs-navigation .cs-sub-dropdown.cs-active > .cs-sub-drop-ul {
    max-height: 31.25rem;
    opacity: 1;
    visibility: visible;
    padding: 0.25rem 0;
  }
  #cs-navigation .cs-sub-dropdown.cs-active > .cs-sub-trigger {
    color: #fff;
    background-color: var(--primary);
  }
  #cs-navigation .cs-sub-dropdown.cs-active > .cs-sub-trigger .cs-sub-drop-icon {
    transform: rotate(0deg);
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-li-link.cs-sub-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.625rem;
    cursor: pointer;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-sub-drop-icon {
    width: 1.125rem;
    height: 1.125rem;
    display: inline-block;
    flex-shrink: 0;
    transform: rotate(-90deg);
    transition: transform 0.3s, filter 0.3s;
  }
  #cs-navigation .cs-sub-drop-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(61, 100, 253, 0.05);
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s, opacity 0.3s, visibility 0.3s, padding 0.3s;
  }
  #cs-navigation .cs-sub-drop-li {
    list-style: none;
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-sub-drop-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    line-height: 1.53846154em;
    white-space: nowrap;
    text-decoration: none;
    width: 100%;
    padding: 0.375rem 0.75rem 0.375rem 1.5rem;
    box-sizing: border-box;
    color: #1A1A1A;
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-sub-drop-link:hover {
    color: var(--primary);
    background-color: rgba(61, 100, 253, 0.08);
  }
  #cs-navigation .cs-li-link.cs-sub-drop-link:before {
    display: none;
  }
}
/*-- -------------------------- -->
<---     Desktop Navigation     -->
<--- -------------------------- -*/
/* Small Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation {
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    transition: transform 0.3s, background-color 0.3s, box-shadow 0.3s;
    /* Hide mobile-only quote button on desktop */
  }
  #cs-navigation .cs-top-bar {
    width: 100%;
    background-color: #1A1A1A;
  }
  #cs-navigation .cs-top-container {
    width: 100%;
    max-width: 90rem;
    margin: auto;
    padding: 0.5rem clamp(1rem, 3vw, 2.5rem);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #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;
    font-family: 'Inter', sans-serif;
    line-height: 1.5rem;
    text-decoration: none;
    margin: 0;
    color: #F7F7F7;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.5rem;
  }
  #cs-navigation .cs-top-link:hover {
    text-decoration: underline;
  }
  #cs-navigation .cs-hours {
    display: flex;
  }
  #cs-navigation .cs-link-icon {
    width: 1rem;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-top-social {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
  }
  #cs-navigation .cs-social-link {
    text-decoration: none;
    width: auto;
    height: auto;
    display: block;
    transition: transform 0.3s;
  }
  #cs-navigation .cs-social-link:hover {
    transform: translateY(-0.15rem);
  }
  #cs-navigation .cs-social-icon {
    width: 0.5rem;
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
  }
  #cs-navigation .cs-container {
    width: 100%;
    height: auto;
    max-width: 90rem;
    margin: auto;
    padding: 1.5rem clamp(1rem, 3vw, 2.5rem);
    box-sizing: border-box;
    background-color: rgba(26, 26, 26, 0.15);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    position: relative;
  }
  #cs-navigation .cs-toggle {
    display: none;
  }
  #cs-navigation .cs-logo {
    height: 3.625rem;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 100;
  }
  #cs-navigation .cs-logo img {
    width: auto;
    height: 100%;
    object-fit: contain;
  }
  #cs-navigation .cs-nav {
    display: flex;
    align-items: center;
  }
  #cs-navigation .cs-ul-wrapper {
    display: flex;
    align-items: center;
  }
  #cs-navigation .cs-ul {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2.25rem;
  }
  #cs-navigation .cs-li {
    list-style: none;
    padding: 0;
    flex: none;
  }
  #cs-navigation .cs-li-link {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    line-height: 1.75rem;
    text-decoration: none;
    margin: 0;
    color: #F7F7F7;
    display: block;
    position: relative;
    transition: color 0.3s;
  }
  #cs-navigation .cs-li-link:before {
    content: "";
    width: 0%;
    height: 2px;
    background: var(--primary);
    opacity: 1;
    position: absolute;
    display: block;
    bottom: -2px;
    left: 0;
    transition: width 0.3s;
  }
  #cs-navigation .cs-li-link:hover {
    color: var(--primary);
  }
  #cs-navigation .cs-li-link:hover:before {
    width: 100%;
  }
  #cs-navigation .cs-li-link.cs-active {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
  }
  #cs-navigation .cs-li-link.cs-active:before {
    width: 100%;
  }
  #cs-navigation .cs-nav-button {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.5rem;
    text-decoration: none;
    color: #fff;
    background-color: var(--primary);
    padding: 0.6875rem 2.5rem;
    display: inline-block;
    white-space: nowrap;
    transition: background-color 0.3s;
    height: auto;
  }
  #cs-navigation .cs-nav-button:hover {
    background-color: #2b4fd6;
  }
  #cs-navigation .cs-li-quote {
    display: none;
  }
}
/*-- -------------------------- -->
<---           Footer           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cs-footer-487 {
    padding: 3.75rem 1rem;
    background-color: #1A1A1F;
    overflow: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
  }
  #cs-footer-487 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    position: relative;
    z-index: 1;
  }
  #cs-footer-487 .cs-footer-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  #cs-footer-487 .cs-logo-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  #cs-footer-487 .cs-logo-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  #cs-footer-487 .cs-logo {
    display: flex;
    align-items: center;
    height: 3.5rem;
  }
  #cs-footer-487 .cs-logo-img {
    width: auto;
    height: 100%;
  }
  #cs-footer-487 .cs-text {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: #E8EBEF;
    margin: 0;
  }
  #cs-footer-487 .cs-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  #cs-footer-487 .cs-header {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.75rem;
    color: #fff;
    margin: 0;
  }
  #cs-footer-487 .cs-contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  #cs-footer-487 .cs-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
  }
  #cs-footer-487 .cs-contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    display: block;
    flex-shrink: 0;
    filter: brightness(0) invert(1);
  }
  #cs-footer-487 .cs-contact-link {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: #E8EBEF;
    text-decoration: none;
    transition: color 0.3s;
  }
  #cs-footer-487 .cs-contact-link:hover {
    color: var(--primary);
  }
  #cs-footer-487 .cs-social {
    display: flex;
    align-items: flex-start;
  }
  #cs-footer-487 .cs-social-link {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid #D2D8DF;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    transition: border-color 0.3s, background-color 0.3s;
  }
  #cs-footer-487 .cs-social-link:hover {
    border-color: var(--primary);
    background-color: rgba(61, 100, 253, 0.1);
  }
  #cs-footer-487 .cs-social-img {
    width: 0.75rem;
    height: 0.75rem;
    display: block;
    filter: brightness(0) invert(1);
  }
  #cs-footer-487 .cs-footer-details {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 3rem;
  }
  #cs-footer-487 .cs-quick-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  #cs-footer-487 .cs-links-columns {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  #cs-footer-487 .cs-links-col {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
  }
  #cs-footer-487 .cs-link-item {
    list-style: none;
  }
  #cs-footer-487 .cs-link {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: #E8EBEF;
    text-decoration: none;
    transition: color 0.3s;
  }
  #cs-footer-487 .cs-link:hover {
    color: var(--primary);
  }
  #cs-footer-487 .cs-link.cs-link-active {
    color: var(--primary);
  }
  #cs-footer-487 .cs-bottom {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  #cs-footer-487 .cs-bottom-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem 1rem;
  }
  #cs-footer-487 .cs-bottom-link {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: #E8EBEF;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s;
  }
  #cs-footer-487 .cs-bottom-link:hover {
    color: var(--primary);
  }
  #cs-footer-487 .cs-dot {
    width: 0.25rem;
    height: 0.25rem;
    background-color: #E8EBEF;
    border-radius: 50%;
    display: block;
  }
  #cs-footer-487 .cs-copyright {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.75rem;
    color: #E8EBEF;
    margin: 0;
  }
  #cs-footer-487 .cs-copyright-link {
    color: #E8EBEF;
    text-decoration: none;
    transition: color 0.3s;
  }
  #cs-footer-487 .cs-copyright-link:hover {
    color: var(--primary);
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-footer-487 {
    padding: 6.25rem clamp(1rem, 3vw, 2.5rem);
  }
  #cs-footer-487 .cs-footer-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  #cs-footer-487 .cs-logo-container {
    gap: 2.5rem;
    flex-shrink: 0;
  }
  #cs-footer-487 .cs-text {
    max-width: 24.1875rem;
  }
  #cs-footer-487 .cs-contact {
    gap: 1rem;
  }
  #cs-footer-487 .cs-social {
    padding-top: 1rem;
  }
  #cs-footer-487 .cs-footer-details {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 0;
    padding-left: 4rem;
    width: 42rem;
    flex-shrink: 0;
  }
  #cs-footer-487 .cs-links-columns {
    flex-direction: row;
    gap: 4rem;
  }
  #cs-footer-487 .cs-links-col {
    flex: 1;
  }
}
/* Carousel Styles */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  .cs-carousel {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f7f7f7;
    border-radius: 1rem;
  }
  .cs-carousel .cs-carousel-slides {
    width: 100%;
    position: relative;
    min-height: 300px;
    height: 100%;
  }
  .cs-carousel .cs-carousel-slides .cs-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;
    object-fit: cover;
    background-color: var(--primary);
    /* Placeholder color */
  }
  .cs-carousel .cs-carousel-slides .cs-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
  }
  .cs-carousel .cs-carousel-indicators {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 2;
    padding: 0.5rem;
  }
  .cs-carousel .cs-carousel-indicators .cs-indicator {
    width: 2rem;
    height: 0.25rem;
    background-color: var(--primary);
    opacity: 0.5;
    cursor: pointer;
    transition: opacity 0.3s ease;
    border-radius: 2px;
  }
  .cs-carousel .cs-carousel-indicators .cs-indicator.active {
    background-color: white;
    opacity: 1;
  }
  .cs-carousel .cs-carousel-indicators .cs-indicator:hover {
    opacity: 0.8;
  }
}
@media only screen and (min-width: 0rem) and only screen and (max-width: 768px) {
  .cs-carousel .cs-carousel-slides {
    height: 250px;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  .cs-carousel .cs-carousel-slides {
    aspect-ratio: 4/3;
  }
}
/* Hero Carousel Specific Styles */
#hero-1427 .cs-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: none;
  border-radius: 0;
  z-index: -1;
}
#hero-1427 .cs-carousel .cs-carousel-slides {
  height: 100%;
}
#hero-1427 .cs-carousel .cs-carousel-slides .cs-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a1a1a;
  opacity: 0.8;
  z-index: 1;
}
#hero-1427 .cs-carousel .cs-carousel-indicators {
  bottom: 2rem;
}
#hero-1427 .cs-carousel .cs-carousel-indicators .cs-indicator {
  opacity: 0.5;
}
#hero-1427 .cs-carousel .cs-carousel-indicators .cs-indicator.active {
  opacity: 1;
}
.cs-container .emailoctopus-form-wrapper .emailoctopus-success-message {
  color: white !important;
  font-weight: bold;
  margin: auto;
}
.cs-container .emailoctopus-form-wrapper {
  border-radius: 1rem;
  background-color: var(--primary);
  min-height: 37px;
  display: flex;
  margin: auto!important;
}
.cs-container .emailoctopus-form-wrapper .main-form .btn {
  margin: 0!important;
}
.cs-container .emailoctopus-form-wrapper .main-form .emailoctopus-form-row {
  margin: 0!important;
}
.cs-container .emailoctopus-form-wrapper form {
  width: 100%;
}
footer .cs-subscribe-group .form-container ~ div {
  display: none;
}
