/*-- -------------------------- -->
<---        Hero 1623           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #hero-1623 {
        /* 200px - 300px - leaving extra space for the navigation */
        padding: clamp(12.5rem, 25.95vw, 18.75rem) 1rem;
        /* prevents the topper from causing an overflow */
        overflow: hidden;
        position: relative;
        z-index: 1;
    }
    #hero-1623 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 3rem;
    }
    #hero-1623 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        max-width: 46.875rem;
        /* 48px - 64px */
        padding: clamp(3rem, 6vw, 4rem);
        /* prevents padding from affecting height and width */
        box-sizing: border-box;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        z-index: 1;
    }
    #hero-1623 .cs-content:before {
        /* bottom left corner */
        content: "";
        width: 2.5rem;
        height: 2.5rem;
        border-bottom: 3px solid #fff;
        border-left: 3px solid #fff;
        box-sizing: border-box;
        opacity: 0.9;
        position: absolute;
        display: block;
        bottom: 1rem;
        left: 1rem;
        z-index: 2;
    }
    #hero-1623 .cs-topper {
        /* 13px - 16px */
        font-size: clamp(0.8125rem, 1.5vw, 1rem);
        line-height: 1.2em;
        text-transform: uppercase;
        text-align: center;
        letter-spacing: 0.1rem;
        font-weight: 700;
        /* 8px - 12px */
        margin-bottom: clamp(0.5rem, 1vw, 0.75rem);
        color: var(--primaryLight);
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.5rem;
    }
    #hero-1623 .cs-chevron {
        --chevronColor: var(--primaryLight);
        width: 3rem;
        height: auto;
        flex: none;
    }
    #hero-1623 .cs-title {
        /* 39px - 61px */
        font-size: clamp(2.4375rem, 5.5vw, 3.8125rem);
        font-weight: 900;
        line-height: 1.1em;
        text-align: center;
        max-width: 100%;
        margin: 0 auto 0.75rem;
        color: var(--bodyTextColorWhite);
        position: relative;
        text-transform: uppercase;
    }
    #hero-1623 .cs-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: center;
        max-width: 35rem;
        margin: 0 auto 1.5rem;
        color: var(--bodyTextColorWhite);
        opacity: 0.9;
    }
    #hero-1623 .cs-button-solid {
        font-size: 1rem;
        font-weight: 700;
        line-height: clamp(2.875rem, 8vw, 3.5rem);
        text-align: center;
        text-decoration: none;
        margin: 0;
        box-sizing: border-box;
        padding: 0 1.5rem;
        background-color: var(--primary);
        color: #fff;
        display: inline-block;
        position: relative;
        z-index: 1;
    }
    #hero-1623 .cs-button-solid:before {
        content: "";
        position: absolute;
        display: block;
        height: 100%;
        width: 0%;
        background: #1a1a1a;
        opacity: 1;
        top: 0;
        left: 0;
        z-index: -1;
        transition: width 0.3s;
    }
    #hero-1623 .cs-button-solid:hover:before {
        width: 100%;
    }
    #hero-1623 .cs-button-solid:active,
    #hero-1623 .cs-button-solid:focus {
        outline: none;
    }
    #hero-1623 .cs-corners {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        pointer-events: none;
    }
    #hero-1623 .cs-corners:before {
        /* top left corner */
        content: "";
        width: 2.5rem;
        height: 2.5rem;
        border-top: 3px solid #fff;
        border-left: 3px solid #fff;
        box-sizing: border-box;
        opacity: 0.9;
        position: absolute;
        display: block;
        top: 1rem;
        left: 1rem;
    }
    #hero-1623 .cs-corners:after {
        /* bottom right corner */
        content: "";
        width: 2.5rem;
        height: 2.5rem;
        border-bottom: 3px solid #fff;
        border-right: 3px solid #fff;
        box-sizing: border-box;
        opacity: 0.9;
        position: absolute;
        display: block;
        bottom: 1rem;
        right: 1rem;
    }
    /* Additional corners using the content div */
    #hero-1623 .cs-content:after {
        /* top right corner */
        content: "";
        width: 2.5rem;
        height: 2.5rem;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        box-sizing: border-box;
        opacity: 0.9;
        position: absolute;
        display: block;
        top: 1rem;
        right: 1rem;
        z-index: 2;
    }
    #hero-1623 .cs-background {
        width: 100%;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -2;
    }
    #hero-1623 .cs-background:before {
        /* Overlay */
        content: "";
        width: 100%;
        height: 100%;
        background: #1a1a1a;
        /* prevents the mouse from interacting with it */
        pointer-events: none;
        opacity: 0.7;
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
    #hero-1623 .cs-background img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        color: transparent; /* Hides alt text */
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #hero-1623 .cs-background:before {
        opacity: 0.85;
    }
}

/*-- -------------------------- -->
<---       Services 1623        -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #services-1623 {
        /* 40px - 100px */
        padding: 0 1rem clamp(2.5rem, 6vw, 6.25rem);
        /* negative margin pulls it up into the hero section */
        margin-top: -3rem;
        position: relative;
        z-index: 10;
    }
    #services-1623 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
    }
    #services-1623 .cs-card-group {
        width: 100%;
        margin: 0;
        padding: 0;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1.25rem;
    }
    #services-1623 .cs-item {
        list-style: none;
    }
    #services-1623 .cs-link {
        text-decoration: none;
        /* 24px - 32px */
        padding: clamp(1.5rem, 3vw, 2rem);
        background-color: #fff;
        border: 1px solid #e8e8e8;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        transition: border-color 0.3s, box-shadow 0.3s;
    }
    #services-1623 .cs-link:hover {
        border-color: var(--primary);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    #services-1623 .cs-link:hover .cs-h3 {
        color: var(--primary);
    }
    #services-1623 .cs-icon {
        /* 40px - 48px */
        width: clamp(2.5rem, 4vw, 3rem);
        height: auto;
        margin-bottom: 1rem;
    }
    #services-1623 .cs-h3 {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        font-weight: 700;
        line-height: 1.2em;
        margin: 0 0 0.75rem 0;
        color: var(--headerColor);
        transition: color 0.3s;
    }
    #services-1623 .cs-item-text {
        font-size: 1rem;
        line-height: 1.5em;
        margin: 0;
        color: var(--bodyTextColor);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #services-1623 {
        margin-top: -4rem;
    }
    #services-1623 .cs-card-group {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
    #services-1623 .cs-card-group {
        grid-template-columns: repeat(4, 1fr);
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #services-1623 .cs-link {
        background-color: var(--medium);
        border-color: rgba(255, 255, 255, 0.1);
    }
    body.dark-mode #services-1623 .cs-link:hover {
        border-color: var(--primaryLight);
    }
    body.dark-mode #services-1623 .cs-h3 {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #services-1623 .cs-item-text {
        color: var(--bodyTextColorWhite);
        opacity: 0.8;
    }
}
/*-- -------------------------- -->
<---       Side By Side         -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #sbs-81 {
    padding: var(--sectionPadding);
  }
  #sbs-81 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #sbs-81 .cs-content {
    text-align: left;
    width: 100%;
    max-width: 33.875rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  #sbs-81 .cs-stats-bar {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
  }
  #sbs-81 .cs-stats-bar li {
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--bodyTextColor);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  #sbs-81 .cs-stats-bar li:before {
    content: "✓";
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    width: 1.25rem;
    height: 1.25rem;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  body.dark-mode #sbs-81 .cs-stats-bar li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-81 .cs-stats-bar li:before {
    background-color: var(--primaryLight);
  }
  body.dark-mode #sbs-81 .cs-li {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #sbs-81 .cs-li-icon {
    background-color: var(--primaryLight);
    color: #fff;
  }
  body.dark-mode #sbs-81 .cs-li-text a {
    color: var(--secondaryLight);
  }
  #sbs-81 .cs-text {
    margin-bottom: 1rem;
  }
  #sbs-81 .cs-text:last-of-type {
    margin-bottom: 2rem;
  }
  #sbs-81 .cs-ul {
    width: 100%;
    margin: 0 0 2rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  #sbs-81 .cs-li {
    font-size: var(--bodyFontSize);
    line-height: 1.5em;
    list-style: none;
    width: 100%;
    color: var(--bodyTextColor);
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
  }
  #sbs-81 .cs-li-icon {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
    background-color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    margin-top: 0.15rem;
  }
  #sbs-81 .cs-li-text {
    flex: 1;
  }
  #sbs-81 .cs-li-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
  }
  #sbs-81 .cs-li-text a:hover {
    text-decoration: underline;
  }
  #sbs-81 .cs-picture {
    width: 100%;
    max-width: 39.375rem;
    height: 25rem;
    display: block;
    position: relative;
  }
  #sbs-81 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #sbs-81 .cs-container {
    flex-direction: row;
    justify-content: flex-start;
  }
  #sbs-81 .cs-content {
    width: 53%;
    max-width: 33.875rem;
  }
  #sbs-81 .cs-picture {
    width: 47vw;
    max-width: 39.375rem;
    height: clamp(25rem, 50vw, 43.75rem);
    position: relative;
  }
}
/*-- -------------------------- -->
<---          Gallery           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #gallery-45 {
    padding: var(--sectionPadding);
    position: relative;
    overflow: hidden;
  }
  #gallery-45 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #gallery-45 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #gallery-45 .cs-button-group {
    width: 100%;
    margin: 0 auto;
    margin-top: 2rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  #gallery-45 .cs-button {
    font-size: 1rem;
    line-height: 1.5em;
    text-align: center;
    border: none;
    padding: 0.5rem 1.5rem;
    color: var(--bodyTextColor);
    background-color: transparent;
    border-radius: 0.25rem;
    transition: background-color 0.3s, color 0.3s;
  }
  #gallery-45 .cs-button:hover {
    cursor: pointer;
  }
  #gallery-45 .cs-button.cs-active {
    background-color: var(--primary);
    color: #fff;
  }
  #gallery-45 .cs-gallery-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }
  #gallery-45 .cs-gallery {
    width: 100%;
    padding: 0;
    margin: 0;
    opacity: 1;
    visibility: visible;
    position: relative;
    transition: transform 0.7s, opacity 0.3s, visibility 0.5s, top 0.3s, left 0.3s;
  }
  #gallery-45 .cs-gallery.cs-hidden {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
  }
  #gallery-45 .cs-image {
    width: 100%;
    height: clamp(15rem, 50vw, 25rem);
    display: block;
    position: relative;
  }
  #gallery-45 .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #gallery-45 .cs-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
}
/*-- -------------------------- -->
<---          Reviews           -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #reviews-81 {
    padding: var(--sectionPadding);
    background-color: #f7f7f7;
  }
  #reviews-81 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #reviews-81 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #reviews-81 .cs-card-group {
    width: 100%;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  #reviews-81 .cs-item {
    list-style: none;
    width: 100%;
    padding: 1.5rem;
    background-color: #fff;
    border-left: 4px solid var(--primary);
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    gap: 0.75rem;
    position: relative;
    transition: box-shadow 0.3s, border-color 0.3s;
  }
  #reviews-81 .cs-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    border-left-color: var(--primaryLight);
  }
  #reviews-81 .cs-quote {
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    font-family: Georgia, serif;
  }
  #reviews-81 .cs-icon {
    display: none;
  }
  #reviews-81 .cs-h3 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2em;
    margin: 0;
    color: var(--headerColor);
  }
  #reviews-81 .cs-item-text {
    font-size: 1rem;
    line-height: 1.6em;
    margin: 0;
    color: var(--bodyTextColor);
  }
  #reviews-81 .cs-name {
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.5em;
    color: var(--headerColor);
    display: block;
    margin-top: auto;
  }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
  #reviews-81 .cs-card-group {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #reviews-81 {
    background-color: rgba(0, 0, 0, 0.5);
  }
  body.dark-mode #reviews-81 .cs-item {
    background-color: var(--medium);
    border-left-color: var(--primaryLight);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  }
  body.dark-mode #reviews-81 .cs-quote {
    color: var(--primaryLight);
  }
  body.dark-mode #reviews-81 .cs-h3 {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #reviews-81 .cs-name {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #reviews-81 .cs-item-text {
    color: var(--bodyTextColorWhite);
    opacity: 0.9;
  }
}
/*-- -------------------------- -->
<---            CTA             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #cta-51 {
    padding: var(--sectionPadding);
    position: relative;
    z-index: 1;
  }
  #cta-51 .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  #cta-51 .cs-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #cta-51 .cs-topper {
    color: var(--secondaryLight);
  }
  #cta-51 .cs-title {
    color: #fff;
  }
  #cta-51 .cs-text {
    color: #fff;
    opacity: 0.8;
    margin-bottom: 2rem;
  }
  #cta-51 .cs-picture {
    width: 100%;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    background-color: #1a1a1a;
  }
  #cta-51 .cs-picture:before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 100%);
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #cta-51 .cs-picture img {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    color: transparent; /* Hides alt text */
  }
}


@media only screen and (min-width: 48rem) {
  #gallery-45 .cs-image {
    height: 18rem;
  }
}

@media only screen and (min-width: 64rem) {
  #gallery-45 .cs-image {
    height: 20rem;
  }
}

/* Override homepage gallery to match portfolio style - SQUARE IMAGES */
@media only screen and (min-width: 0rem) {
  #gallery-45 .cs-gallery-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  
  #gallery-45 .cs-image {
    width: 100%;
    height: 0;
    padding-bottom: 100%; /* Makes it square */
    position: relative;
    overflow: hidden;
  }
  
  #gallery-45 .cs-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media only screen and (min-width: 48rem) {
  #gallery-45 .cs-gallery-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media only screen and (min-width: 64rem) {
  #gallery-45 .cs-gallery-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/*-- -------------------------- -->
<---       FAQ Section          -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #faq-1109 {
    padding: var(--sectionPadding);
    background-color: #fff;
  }
  #faq-1109 .cs-container {
    width: 100%;
    max-width: 50rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3rem, 6vw, 4rem);
  }
  #faq-1109 .cs-content {
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #faq-1109 .cs-faq-group {
    width: 100%;
    display: flex;
    flex-direction: column;
  }
  #faq-1109 .cs-faq-item {
    width: 100%;
    padding: 1.25rem;
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #e8e8e8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  #faq-1109 .cs-faq-item:hover {
    background-color: #f7f7f7;
  }
  #faq-1109 .cs-button-text {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5em;
    text-align: left;
    color: var(--headerColor);
    transition: color 0.3s;
  }
  #faq-1109 .cs-faq-item:hover .cs-button-text {
    color: var(--primary);
  }
  #faq-1109 .cs-indicator {
    width: 1rem;
    height: 1rem;
    flex: none;
    position: relative;
  }
  #faq-1109 .cs-indicator::before,
  #faq-1109 .cs-indicator::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    transition: transform 0.3s;
  }
  #faq-1109 .cs-indicator::before {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  #faq-1109 .cs-indicator::after {
    width: 2px;
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  #faq-1109 .cs-faq-item.cs-active .cs-indicator::after,
  #faq-1109 .cs-faq-item[aria-expanded="true"] .cs-indicator::after {
    transform: translateX(-50%) rotate(90deg);
  }
  #faq-1109 .cs-faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 1.25rem;
    font-size: 1rem;
    line-height: 1.5em;
    color: var(--bodyTextColor);
    opacity: 0;
    transition: max-height 0.3s, opacity 0.3s, padding 0.3s;
  }
  #faq-1109 .cs-faq-item.cs-active + .cs-faq-answer,
  #faq-1109 .cs-faq-item[aria-expanded="true"] + .cs-faq-answer {
    max-height: 20rem;
    opacity: 1;
    padding: 1rem 1.25rem 1.5rem;
  }
  #faq-1109 .cs-faq-answer a {
    color: var(--primary);
    text-decoration: underline;
  }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
  body.dark-mode #faq-1109 {
    background-color: var(--dark);
  }
  body.dark-mode #faq-1109 .cs-faq-item {
    border-color: rgba(255, 255, 255, 0.1);
  }
  body.dark-mode #faq-1109 .cs-faq-item:hover {
    background-color: var(--medium);
  }
  body.dark-mode #faq-1109 .cs-button-text {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #faq-1109 .cs-faq-answer {
    color: var(--bodyTextColorWhite);
    opacity: 0.8;
  }
  body.dark-mode #faq-1109 .cs-faq-answer a {
    color: var(--secondaryLight);
  }
  body.dark-mode #faq-1109 .cs-indicator::before,
  body.dark-mode #faq-1109 .cs-indicator::after {
    background-color: var(--primaryLight);
  }
}

/*-- -------------------------- -->
<---        Stats Section       -->
<--- -------------------------- -*/

/*-- -------------------------- -->
<---     Navigation Dropdown    -->
<--- -------------------------- -*/
/* Mobile - 1023px */
@media only screen and (max-width: 63.9375rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
    color: var(--headerColor);
  }
  #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-li-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    filter: brightness(0);
  }
  #cs-navigation .cs-drop-ul {
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    background-color: var(--primary);
    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-li-link.cs-drop-link {
    font-size: clamp(0.875rem, 2vw, 1.25rem);
    color: #fff;
  }
}
/* Desktop - 1024px */
@media only screen and (min-width: 64rem) {
  #cs-navigation .cs-dropdown {
    position: relative;
  }
  #cs-navigation .cs-dropdown:hover {
    cursor: pointer;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-ul {
    transform: scaleY(1);
    opacity: 1;
    visibility: visible;
  }
  #cs-navigation .cs-dropdown:hover .cs-drop-li {
    opacity: 1;
    transform: translateY(0);
  }
  #cs-navigation .cs-dropdown .cs-li-link {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }
  #cs-navigation .cs-drop-icon {
    width: 0.9375rem;
    height: auto;
    display: inline-block;
  }
  #cs-navigation .cs-drop-ul {
    min-width: 12.5rem;
    margin: 0;
    padding: 0;
    background-color: #fff;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    border-bottom: 5px solid var(--primary);
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: absolute;
    top: 100%;
    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: 1rem;
    text-decoration: none;
    opacity: 0;
    width: 100%;
    height: auto;
    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-li-link.cs-drop-link {
    text-transform: capitalize;
    white-space: nowrap;
    width: 100%;
    font-size: 1rem;
    line-height: 1.5em;
    text-decoration: none;
    padding: 0.75rem;
    box-sizing: border-box;
    color: var(--headerColor);
    display: block;
    transition: color 0.3s, background-color 0.3s;
  }
  #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: var(--primary);
    color: #fff;
  }
}
/* Dark Mode Desktop */
@media only screen and (min-width: 64rem) {
  body.dark-mode #cs-navigation .cs-drop-ul {
    background-color: var(--medium);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link {
    color: var(--bodyTextColorWhite);
  }
  body.dark-mode #cs-navigation .cs-li-link.cs-drop-link:hover {
    background-color: var(--primary);
    color: #fff;
  }
  body.dark-mode #cs-navigation .cs-drop-icon {
    filter: brightness(1000%);
  }
}
/* Dark Mode Mobile */
@media only screen and (max-width: 63.9375rem) {
  body.dark-mode #cs-navigation .cs-drop-icon {
    filter: brightness(1000%);
  }
}

/*-- -------------------------- -->
<---      Back to Top Button    -->
<--- -------------------------- -*/
#back-to-top {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transform: translateY(1rem);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background-color 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
#back-to-top:hover {
  background-color: var(--secondary);
}
#back-to-top.cs-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#back-to-top svg {
  width: 1.5rem;
  height: 1.5rem;
}
