/* Content Section One */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #content-page-01 {
        z-index: 1;
        overflow: hidden;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #content-page-01 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80em;
        position: relative;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #content-page-01 .cs-content {
        width: 100%;
        display: flex;
        text-align: left;
        max-width: 46.125rem;
        flex-direction: column;
        align-items: flex-start;
    }
    #content-page-01 .cs-title {
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }
    #content-page-01 h2,
    #content-page-01 h3,
    #content-page-01 h4,
    #content-page-01 h5,
    #content-page-01 h6 {
        font-weight: 700;
        margin: 0 0 1rem 0;
        text-align: inherit;
        color: var(--headerColor);
        font-family: var(--titleFont);
    }
    #content-page-01 h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-01 h4,
    #content-page-01 h5,
    #content-page-01 h6 {
        font-size: 1.25rem;
    }
    #content-page-01 .cs-button-solid {
        margin-bottom: 2rem;
    }
    #content-page-01 .cs-no-margin {
        margin: 0;
    }
    #content-page-01 p {
        width: 100%;
        line-height: 1.5em;
        margin: 0 0 1rem 0;
        text-align: inherit;
        color: var(--bodyTextColor);
        font-family: var(--bodyFont);
        font-size: var(--bodyFontSize);
    }
    #content-page-01 p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page-01 p a {
        font-size: inherit;
        line-height: inherit;
        color: var(--primary);
        text-decoration: underline;
    }
    #content-page-01 ol,
    #content-page-01 ul {
        gap: 1rem;
        display: flex;
        margin: 0 0 2rem 0;
        padding-left: 1.5rem;
        flex-direction: column;
        color: var(--bodyTextColor);
        font-family: var(--bodyFont);
    }
    #content-page-01 ul li {
        color: inherit;
        list-style: none;
        position: relative;
    }
    #content-page-01 ul li:before {
        /* custom list bullet */
        width: 3px;
        opacity: 1;
        content: '';
        height: 3px;
        top: 0.625rem;
        display: block;
        left: -0.75rem;
        border-radius: 50%;
        position: absolute;
        background: currentColor;
    }
    #content-page-01 img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0.25rem;
    }
    #content-page-01 .cs-image-group {
        flex: none;
        z-index: 1;
        display: none;
        width: 33.875em;
        height: 48.3125em;
        position: relative;
        font-size: min(1vw, 1em);
    }
    #content-page-01 .cs-picture {
        top: 0;
        left: 0;
        display: block;
        width: 33.875em;
        overflow: hidden;
        height: 40.4375em;
        position: absolute;
        box-sizing: border-box;
        border-radius: 0.25rem;
        border: 0.75em solid #FFF;
        background-color: #F7F7F7;
    }
    #content-page-01 .cs-picture img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
    #content-page-01 .cs-background {
        display: none;
    }
    #content-page-01 .cs-link {
        color: var(--primary);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-01 .cs-container {
        flex-direction: row;
        align-items: flex-start;
    }
    #content-page-01 .cs-image-group {
        order: -1;
        display: block;
    }
    #content-page-01 .cs-content {
        margin-left: auto;
    }
    #content-page-01 .cs-background {
        top: 0;
        left: 0;
        width: 20%;
        z-index: -1;
        height: 100%;
        display: block;
        position: absolute;
        background: #F7F7F7;
    }
    #content-page-01 .cs-background img {
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        opacity: .2;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
    #content-page-01 .cs-image-group {
        top: 0rem;
        left: -6.25rem;
        font-size: inherit;
        position: absolute;
    }
    #content-page-01 .cs-background {
        width: 50%;
        left: auto;
        right: 50%;
        margin-right: 20.9375rem;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #content-page-01 {
        background-color: var(--dark);
    }
    body.dark-mode #content-page-01 .cs-title,
    body.dark-mode #content-page-01 .cs-text,
    body.dark-mode #content-page-01 h2,
    body.dark-mode #content-page-01 h4,
    body.dark-mode #content-page-01 h5,
    body.dark-mode #content-page-01 h6,
    body.dark-mode #content-page-01 li,
    body.dark-mode #content-page-01 p {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #content-page-01 h3 {
        color: var(--primary);
    }
    body.dark-mode #content-page-01 .cs-color,
    body.dark-mode #content-page-01 p a {
        color: var(--primaryLight);
    }
    body.dark-mode #content-page-01 p,
    body.dark-mode #content-page-01 li {
        color: #EBEBEB;
    }
    body.dark-mode #content-page-01 .cs-picture {
        border-color: var(--dark);
        background-color: var(--dark);
    }
    body.dark-mode #content-page-01 .cs-background {
        background-color: var(--medium);
        filter: brightness(70%);
    }
    body.dark-mode #content-page-01 .cs-background img {
        opacity: .1;
    }
}
/* Content Section Two */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #content-page-02 {
        z-index: 1;
        overflow: hidden;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #content-page-02 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        position: relative;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #content-page-02 .cs-content {
        width: 100%;
        display: flex;
        text-align: left;
        max-width: 46.125rem;
        flex-direction: column;
        align-items: flex-start;
    }
    #content-page-02 .cs-content img {
        width: 100%;
        height: auto;
        margin: 1rem 0;
        display: block;
    }
    #content-page-02 .cs-title {
        width: 100%;
        max-width: 100%;
        font-weight: 900;
        line-height: 1.2em;
        margin: 0 0 1rem 0;
        position: relative;
        text-align: inherit;
        color: var(--headerColor);
        font-family: var(--titleFont);
        font-size: var(--headerFontSize);
    }
    #content-page-02 h2,
    #content-page-02 h3,
    #content-page-02 h4,
    #content-page-02 h5,
    #content-page-02 h6 {
        font-weight: 700;
        margin: 0 0 1rem 0;
        text-align: inherit;
        color: var(--headerColor);
        font-family: var(--titleFont);
    }
    #content-page-02 h2 {
        font-size: 2rem;
        margin-top: 2rem;
    }
    #content-page-02 h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-02 h4,
    #content-page-02 h5,
    #content-page-02 h6 {
        font-size: 1.25rem;
    }
    #content-page-02 .cs-button-solid {
        margin-bottom: 2rem;
    }
    #content-page-02 .cs-color {
        color: var(--primary);
    }
    #content-page-02 p {
        width: 100%;
        line-height: 1.5em;
        margin: 0 0 1rem 0;
        text-align: inherit;
        color: var(--bodyTextColor);
        font-family: var(--bodyFont);
        font-size: var(--bodyFontSize);
    }
    #content-page-02 p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page-02 p a {
        font-size: inherit;
        line-height: inherit;
        color: var(--primary);
        text-decoration: underline;
    }
    #content-page-02 ol,
    #content-page-02 ul {
        gap: 1rem;
        display: flex;
        margin: 0 0 2rem 0;
        padding-left: 1.5rem;
        flex-direction: column;
        color: var(--bodyTextColor);
    }
    #content-page-02 ul li {
        color: inherit;
        list-style: none;
        position: relative;
        font-family: var(--bodyFont);
    }
    #content-page-02 ul li:before {
        width: 3px;
        opacity: 1;
        content: "";
        height: 3px;
        top: 0.625rem;
        display: block;
        left: -0.75rem;
        border-radius: 50%;
        position: absolute;
        background: currentColor;
    }
    #content-page-02 .cs-image-group {
        flex: none;
        display: none;
        width: 33.875em;
        height: 48.3125em;
        position: relative;
        transform: scaleX(-1);
        font-size: min(1vw, 1em);
    }
    #content-page-02 .cs-picture {
        top: 0;
        left: 0;
        display: block;
        width: 33.875em;
        overflow: hidden;
        height: 40.4375em;
        position: absolute;
        background: #F7F7F7;
        box-sizing: border-box;
        border-radius: 0.75rem;
        border: 0.75em solid var(--bg04);
    }
    #content-page-02 .cs-picture img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        transform: scaleX(-1);
    }
    #content-page-02 .cs-background {
        display: none;
    }
    #content-page-02 .cs-link {
        color: var(--primary);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-02 .cs-container {
        flex-direction: row;
        align-items: flex-start;
    }
    #content-page-02 .cs-image-group {
        display: block;
    }
    #content-page-02 .cs-background {
        top: 0;
        right: 0;
        width: 20%;
        z-index: -1;
        height: 100%;
        display: block;
        position: absolute;
        background: #F7F7F7;
    }
    #content-page-02 .cs-background img {
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        object-fit: cover;
        position: absolute;
    }
}
/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
    #content-page-02 .cs-image-group {
        top: 0rem;
        right: -6.25rem;
        font-size: inherit;
        position: absolute;
    }
    #content-page-02 .cs-background {
        left: 50%;
        width: 50%;
        right: auto;
        margin-left: 20.9375rem;
    }
}
/* Services Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #content-page-03 {
        z-index: 1;
        overflow: hidden;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #content-page-03 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80em;
        position: relative;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #content-page-03 .cs-content {
        width: 100%;
        display: flex;
        text-align: left;
        max-width: 46.125rem;
        flex-direction: column;
        align-items: flex-start;
    }
    #content-page-03 .cs-title {
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }
    #content-page-03 h2,
    #content-page-03 h3,
    #content-page-03 h4,
    #content-page-03 h5,
    #content-page-03 h6 {
        font-weight: 700;
        margin: 0 0 1rem 0;
        text-align: inherit;
        color: var(--headerColor);
        font-family: var(--titleFont);
    }
    #content-page-03 h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }
    #content-page-03 h4,
    #content-page-03 h5,
    #content-page-03 h6 {
        font-size: 1.25rem;
    }
    #content-page-03 .cs-button-solid {
        margin-bottom: 2rem;
    }
    #content-page-03 .cs-no-margin {
        margin: 0;
    }
    #content-page-03 p {
        width: 100%;
        line-height: 1.5em;
        margin: 0 0 1rem 0;
        text-align: inherit;
        color: var(--bodyTextColor);
        font-family: var(--bodyFont);
        font-size: var(--bodyFontSize);
    }
    #content-page-03 p:last-of-type {
        margin-bottom: 2rem;
    }
    #content-page-03 p a {
        font-size: inherit;
        line-height: inherit;
        color: var(--primary);
        text-decoration: underline;
    }
    #content-page-03 ol,
    #content-page-03 ul {
        gap: 1rem;
        display: flex;
        margin: 0 0 2rem 0;
        padding-left: 1.5rem;
        flex-direction: column;
        color: var(--bodyTextColor);
        font-family: var(--bodyFont);
    }
    #content-page-03 ul li {
        color: inherit;
        list-style: none;
        position: relative;
    }
    #content-page-03 ul li:before {
        /* custom list bullet */
        width: 3px;
        opacity: 1;
        content: '';
        height: 3px;
        top: 0.625rem;
        display: block;
        left: -0.75rem;
        border-radius: 50%;
        position: absolute;
        background: currentColor;
    }
    #content-page-03 img {
        width: 100%;
        height: auto;
        display: block;
        border-radius: 0.25rem;
    }
    #content-page-03 .cs-image-group {
        flex: none;
        z-index: 1;
        display: none;
        width: 33.875em;
        height: 48.3125em;
        position: relative;
        font-size: min(1vw, 1em);
    }
    #content-page-03 .cs-picture {
        top: 0;
        left: 0;
        display: block;
        width: 33.875em;
        overflow: hidden;
        height: 40.4375em;
        position: absolute;
        box-sizing: border-box;
        border-radius: 0.25rem;
        border: 0.75em solid #FFF;
        background-color: #F7F7F7;
    }
    #content-page-03 .cs-picture img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
    #content-page-03 .cs-background {
        display: none;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-03 .cs-container {
        flex-direction: row;
        align-items: flex-start;
    }
    #content-page-03 .cs-image-group {
        order: -1;
        display: block;
    }
    #content-page-03 .cs-content {
        margin-left: auto;
    }
    #content-page-03 .cs-background {
        top: 0;
        left: 0;
        width: 20%;
        z-index: -1;
        height: 100%;
        display: block;
        position: absolute;
        background: #F7F7F7;
    }
    #content-page-03 .cs-background img {
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        opacity: .2;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Large Desktop 1300px */
@media only screen and (min-width: 81.25rem) {
    #content-page-03 .cs-image-group {
        top: 0rem;
        left: -6.25rem;
        font-size: inherit;
        position: absolute;
    }
    #content-page-03 .cs-background {
        width: 50%;
        left: auto;
        right: 50%;
        margin-right: 20.9375rem;
    }
}
/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #content-page-03 {
        background-color: var(--dark);
    }
    body.dark-mode #content-page-03 .cs-title,
    body.dark-mode #content-page-03 .cs-text,
    body.dark-mode #content-page-03 h2,
    body.dark-mode #content-page-03 h4,
    body.dark-mode #content-page-03 h5,
    body.dark-mode #content-page-03 h6,
    body.dark-mode #content-page-03 li,
    body.dark-mode #content-page-03 p {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #content-page-03 h3 {
        color: var(--primary);
    }
    body.dark-mode #content-page-03 .cs-color,
    body.dark-mode #content-page-03 p a {
        color: var(--primaryLight);
    }
    body.dark-mode #content-page-03 p,
    body.dark-mode #content-page-03 li {
        color: #EBEBEB;
    }
    body.dark-mode #content-page-03 .cs-picture {
        border-color: var(--dark);
        background-color: var(--dark);
    }
    body.dark-mode #content-page-03 .cs-background {
        background-color: var(--medium);
        filter: brightness(70%);
    }
    body.dark-mode #content-page-03 .cs-background img {
        opacity: .1;
    }
}
/* Contact Strip */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #contact-strip-1111 {
        z-index: 1;
        position: relative;
        background: var(--primary);
        padding: var(--sectionPadding);
    }
    #contact-strip-1111 .cs-stat-group {
        padding: 0;
        width: 100%;
        gap: 2.5rem;
        margin: auto;
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: center;
    }
    #contact-strip-1111 .cs-item {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        width: 18.125rem;
        align-items: center;
        justify-content: flex-start;
    }
    #contact-strip-1111 .cs-item:hover .cs-picture {
        background: #FFF;
        transform: scale(1.1);
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    }
    #contact-strip-1111 .cs-picture {
        flex: none;
        display: flex;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        width: clamp(3rem, 5.7vw, 5rem);
        height: clamp(3rem, 5.7vw, 5rem);
        border: 2px solid var(--secondary);
        margin-right: clamp(0.75rem, 1.5vw, 1.25rem);
        transition:
        background-color 0.3s,
        box-shadow 0.3s,
        transform 0.6s;
    }
    #contact-strip-1111 .cs-flex-group {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    #contact-strip-1111 .cs-icon {
        height: auto;
        width: clamp(1.25rem, 2.5vw, 2.5rem);
    }
    #contact-strip-1111 .cs-header {
        margin: 0;
        display: block;
        font-weight: 900;
        font-size: 1.25rem;
        line-height: 1.2em;
        margin-bottom: 0.75rem;
        color: var(--bodyTextColorWhite);
    }
    #contact-strip-1111 .cs-address,
    #contact-strip-1111 .cs-link {
        display: block;
        line-height: 1.5em;
        text-decoration: none;
        font-family: var(--bodyFont);
        color: var(--bodyTextColorWhite);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }
    #contact-strip-1111 .cs-link:hover {
        text-decoration: underline;
    }
    #contact-strip-1111 .cs-background {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        display: block;
        position: absolute;
    }
    #contact-strip-1111 .cs-background:before {
        /* background color overlay */
        top: 0;
        left: 0;
        z-index: 1;
        content: "";
        width: 100%;
        height: 100%;
        opacity: 0.84;
        display: block;
        position: absolute;
        background: #1A1A1A;
    }
    #contact-strip-1111 .cs-background img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #contact-strip-1111 .cs-stat-group {
        gap: 1.5rem;
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
    }
    #contact-strip-1111 .cs-item {
        width: auto;
    }
}
/* Gallery Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #gallery-1446 {
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #gallery-1446 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        position: relative;
        align-items: center;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #gallery-1446 .cs-content {
        width: 100%;
        gap: 1.5rem;
        display: flex;
        text-align: center;
        flex-direction: row;
        align-items: center;
        justify-content: center;
    }
    #gallery-1446 .cs-title {
        margin: 0;
    }
    #gallery-1446 .cs-gallery {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        position: relative;
        gap: clamp(1rem, 1.5vw, 1.25rem);
        grid-template-columns: repeat(auto-fit, minmax(19.0625rem, 1fr));
    }
    #gallery-1446 .cs-image {
        /* 260px - 360px */
        display: block;
        overflow: hidden;
        position: relative;
        border-radius: 0.75rem;
        min-height: clamp(16.25rem, 60vw, 20rem);
    }
    #gallery-1446 .cs-image img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Google Maps Section  */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #map-720 {
        display: flex;
        position: relative;
        align-items: center;
        min-height: 33.75rem;
        box-sizing: border-box;
        justify-content: center;
        padding: var(--sectionPadding);
    }
    #map-720 .cs-background {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        display: block;
        position: absolute;
    }
    #map-720 .cs-background img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* FAQ Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #faq-1263 {
        z-index: 1;
        overflow: hidden;
        position: relative;
        background: var(--bg01);
        padding: var(--sectionPadding);
    }
    #faq-1263 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        max-width: 80rem;
        align-items: center;
        flex-direction: column;
        justify-content: center;
        gap: clamp(2.5rem, 5vw, 3rem);
    }
    #faq-1263 .cs-content {
        width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    #faq-1263 .cs-title {
        margin: 0;
        color: var(--headerColor);
    }
    #faq-1263 .cs-faq-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: flex;
        align-items: center;
        max-width: 52.875rem;
        flex-direction: column;
        justify-content: center;
        gap: clamp(1rem, 2.4vw, 1.25rem);
    }
    #faq-1263 .cs-faq-item {
        padding: 0;
        width: 100%;
        list-style: none;
        border-radius: 0.5rem;
        box-sizing: border-box;
        background: var(--bg04);
        transition: border-bottom 0.3s;
    }
    #faq-1263 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }
    #faq-1263 .cs-faq-item.active .cs-button:before {
        transform: rotate(315deg);
        background: var(--primary);
    }
    #faq-1263 .cs-faq-item.active .cs-button:after {
        background: var(--primary);
        transform: rotate(-315deg);
    }
    #faq-1263 .cs-faq-item.active .cs-item-p {
        height: auto;
        opacity: 0.8;
        margin-top: 0.75rem;
        padding-top: 0.75rem;
        padding-bottom: 1.5rem;
        color: var(--bodyTextColor);
    }
    #faq-1263 .cs-faq-item.active .cs-item-p:before {
        /* border top */
        top: 0;
        opacity: 1;
        content: "";
        height: 1px;
        left: 1.5rem;
        right: 1.5rem;
        display: block;
        position: absolute;
        background: #7D799C;
    }
    #faq-1263 .cs-button {
        width: 100%;
        border: none;
        display: flex;
        text-align: left;
        overflow: hidden;
        font-weight: bold;
        line-height: 1.2em;
        position: relative;
        align-items: stretch;
        background: transparent;
        padding: 1.5rem 1.5rem 0;
        justify-content: flex-start;
        gap: clamp(1rem, 2.5vw, 1.5rem);
        color: var(--headerColor);
        font-size: clamp(1rem, 2vw, 1.25rem);
        transition:
        background-color 0.3s,
        color 0.3s;
    }
    #faq-1263 .cs-button:hover {
        cursor: pointer;
    }
    #faq-1263 .cs-button:before {
        /* left line */
        top: 67%;
        opacity: 1;
        content: "";
        width: 0.5rem;
        display: block;
        height: 0.125rem;
        right: 1.1875rem;
        border-radius: 50%;
        position: absolute;
        transform: rotate(45deg);
        transition: transform 0.5s;
        transform-origin: left center;
        background-color: var(--bodyTextColorWhite);
    }
    #faq-1263 .cs-button:after {
        /* right line */
        top: 67%;
        opacity: 1;
        content: "";
        right: 1rem;
        width: 0.5rem;
        display: block;
        height: 0.125rem;
        border-radius: 50%;
        position: absolute;
        transform: rotate(-45deg);
        transition: transform 0.5s;
        transform-origin: right center;
        background-color: var(--bodyTextColorWhite);
    }
    #faq-1263 .cs-button-text {
        width: 90%;
        padding: 0;
        display: block;
        font-size: 1.25rem;
        margin: 0;
    }
    #faq-1263 .cs-item-p {
        /* 14px - 16px */
        height: 0;
        margin: 0;
        opacity: 0;
        width: 100%;
        overflow: hidden;
        line-height: 1.5em;
        position: relative;
        box-sizing: border-box;
        padding: 0 1.5rem 1.5rem;
        color: var(--bodyTextColor);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        transition:
        opacity 0.3s,
        padding-bottom 0.3s,
        padding-top 0.3s;
    }
    #faq-1263 .cs-background {
        top: 0;
        left: 0;
        width: 100%;
        z-index: -1;
        height: 100%;
        position: absolute;
    }
    #faq-1263 .cs-background img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
    }
}
/* Why Choose Us Section */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #why-choose-890 {
        z-index: 1;
        overflow: hidden;
        text-align: center;
        position: relative;
        background: var(--bg04);
        padding: var(--sectionPadding);
    }
    #why-choose-890 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        position: relative;
        align-items: center;
        max-width: 34.375rem;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #why-choose-890 .cs-content {
        width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    #why-choose-890 .cs-topper {
        display: block;
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        letter-spacing: 0.1em;
        color: var(--primary);
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        font-size: var(--topperFontSize);
    }
    #why-choose-890 .cs-title {
        font-weight: 900;
        line-height: 1.2em;
        margin: 0 0 1rem 0;
        position: relative;
        text-align: inherit;
        max-width: 43.75rem;
        color: var(--headerColor);
        font-size: var(--headerFontSize);
    }
    #why-choose-890 .cs-text {
        margin: 0;
        width: 100%;
        line-height: 1.5em;
        text-align: inherit;
        max-width: 40.625rem;
        color: var(--bodyTextColor);
        font-size: var(--bodyFontSize);
    }
    #why-choose-890 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        gap: clamp(1rem, 2vw, 1.25rem);
        grid-template-columns: repeat(2, 1fr);
    }
    #why-choose-890 .cs-item {
        z-index: 1;
        width: 100%;
        display: flex;
        text-align: left;
        list-style: none;
        position: relative;
        grid-column: span 2;
        border-radius: 0.25rem;
        box-sizing: border-box;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background: var(--itemColor);
        padding: clamp(1.25rem, 2.3vw, 2rem);
    }
    #why-choose-890 .cs-icon {
        width: 3rem;
        height: auto;
        display: block;
        margin: 0 0 1.25rem 0;
    }
    #why-choose-890 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.5em;
        margin: 0 0 0.75rem 0;
        transition: color 0.3s;
        color: var(--headerColor);
    }
    #why-choose-890 .cs-item-text {
        margin: 0;
        line-height: 1.5em;
        transition: color 0.3s;
        color: var(--bodyTextColor);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }
    #why-choose-890 .cs-button-solid:hover:before {
        width: 100%;
    }
    #why-choose-890 .cs-floater {
        height: auto;
        display: none;
        top: -13.75rem;
        right: -3.75rem;
        width: 21.9375rem;
        position: absolute;
        transform: rotate(-66deg);
    }
}
/* Dark Mode Styles */
@media only screen and (min-width: 0rem) {
    body.dark-mode #why-choose-890 .cs-topper {
        color: var(--secondaryBackUp);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #why-choose-890 .cs-container {
        max-width: 91rem;
    }
    #why-choose-890 .cs-item {
        grid-column: span 1;
    }
    #why-choose-890 .cs-floater {
        display: block;
    }
}
/* Why Choose Us Section Two */
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #why-choose-892 {
        z-index: 1;
        overflow: hidden;
        text-align: center;
        position: relative;
        background: var(--bg04);
        padding: var(--sectionPadding);
    }
    #why-choose-892 .cs-container {
        width: 100%;
        margin: auto;
        display: flex;
        position: relative;
        align-items: center;
        max-width: 34.375rem;
        flex-direction: column;
        gap: clamp(3rem, 6vw, 4rem);
    }
    #why-choose-892 .cs-content {
        width: 100%;
        display: flex;
        text-align: center;
        align-items: center;
        flex-direction: column;
    }
    #why-choose-892 .cs-topper {
        display: block;
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        letter-spacing: 0.1em;
        color: var(--primary);
        margin-bottom: 0.25rem;
        text-transform: uppercase;
        font-size: var(--topperFontSize);
    }
    #why-choose-892 .cs-title {
        font-weight: 900;
        line-height: 1.2em;
        margin: 0 0 1rem 0;
        position: relative;
        text-align: inherit;
        max-width: 43.75rem;
        color: var(--headerColor);
        font-size: var(--headerFontSize);
    }
    #why-choose-892 .cs-text {
        margin: 0;
        width: 100%;
        line-height: 1.5em;
        text-align: inherit;
        max-width: 40.625rem;
        color: var(--bodyTextColor);
        font-size: var(--bodyFontSize);
    }
    #why-choose-892 .cs-text {
        max-width: 62.5rem;
    }
    #why-choose-892 .cs-card-group {
        margin: 0;
        padding: 0;
        width: 100%;
        display: grid;
        gap: clamp(1rem, 2vw, 1.25rem);
        grid-template-columns: repeat(6, 1fr);
    }
    #why-choose-892 .cs-item {
        z-index: 1;
        width: 100%;
        display: flex;
        text-align: left;
        list-style: none;
        position: relative;
        grid-column: span 6;
        border-radius: 0.25rem;
        box-sizing: border-box;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        background: var(--itemColor);
        padding: clamp(1.25rem, 2.3vw, 2rem);
    }
    #why-choose-892 .cs-icon {
        width: 3rem;
        height: auto;
        display: block;
        margin: 0 0 1.25rem 0;
    }
    #why-choose-892 .cs-h3 {
        font-size: 1.25rem;
        line-height: 1.5em;
        margin: 0 0 0.75rem 0;
        transition: color 0.3s;
        color: var(--headerColor);
    }
    #why-choose-892 .cs-item-text {
        margin: 0;
        line-height: 1.5em;
        transition: color 0.3s;
        color: var(--bodyTextColor);
        font-size: clamp(0.875rem, 1.5vw, 1rem);
    }
    #why-choose-892 .cs-floater {
        height: auto;
        display: none;
        top: -13.75rem;
        left: -3.75rem;
        width: 21.9375rem;
        position: absolute;
        transform: rotate(60deg) scaleX(-1);
    }
}
/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #why-choose-892 .cs-container {
        max-width: 91rem;
    }
    #why-choose-892 .cs-item {
        grid-column: span 2;
    }
    #why-choose-892 .cs-floater {
        display: block;
    }
}