/************ MOBILE - 360PX *************/
/*****************************************/
@media only screen and (min-width: 0rem) {
    /****************** FAQ ******************/
    /*****************************************/
    #faq-2286 {
        padding: var(--sectionPadding);
        position: relative;
    }
    #faq-2286 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 36.5rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 40px - 48px */
        gap: clamp(2.5rem, 5vw, 3rem);
    }
    #faq-2286 .cs-content {
        text-align: left;
        max-width: 33.875rem;
        /* prevents padding and border from affecting height and width */
        box-sizing: border-box;
    }
    #faq-2286 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 33.875rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }
    #faq-2286 .cs-title {
        /* 20 characters wide including spaces */
        max-width: 20ch;
        margin: 0 auto 2rem 0;
    }
    #faq-2286 .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    #faq-2286 .cs-faq-item {
        list-style: none;
        width: 100%;
        border-bottom: 1px solid #e8e8e8;
        transition: border-bottom 0.3s;
    }
    #faq-2286 .cs-faq-item.active {
        border-bottom: 4px solid var(--primary);
    }
    #faq-2286 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }
    #faq-2286 .cs-faq-item.active .cs-button .cs-indicator:before {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    #faq-2286 .cs-faq-item.active .cs-button .cs-indicator:after {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    #faq-2286 .cs-faq-item.active .cs-item-p {
        height: auto;
        /* 20px - 24px bottom */
        padding: 0 0 clamp(1rem, 2vw, 1.5rem) 0;
        opacity: 1;
    }
    #faq-2286 .cs-button {
        /* 16px - 20px */
        font-size: clamp(1rem, 2vw, 1.25rem);
        line-height: 1.2em;
        text-align: left;
        font-weight: bold;
        /* 16px - 24px */
        padding: clamp(1rem, 2.3vw, 1.5rem) 0;
        border: none;
        background: transparent;
        color: var(--headerColor);
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
        transition: background-color 0.3s, color 0.3s;
    }
    #faq-2286 .cs-button:hover {
        cursor: pointer;
    }
    #faq-2286 .cs-button .cs-indicator {
        width: 1.5rem;
        height: 1.5rem;
        position: relative;
        z-index: 1;
    }
    #faq-2286 .cs-button .cs-indicator:before {
        /* left line */
        content: '';
        width: 0.75rem;
        height: 0.125rem;
        background-color: #585B5D;
        opacity: 1;
        border-radius: 2px;
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: transform 0.5s;
    }
    #faq-2286 .cs-button .cs-indicator:after {
        /* right line */
        content: '';
        width: 0.75rem;
        height: 0.125rem;
        background-color: #585B5D;
        opacity: 1;
        border-radius: 2px;
        position: absolute;
        display: block;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(90deg);
        transition: transform 0.5s;
    }
    #faq-2286 .cs-button-text {
        width: 90%;
        display: block;
    }
    #faq-2286 .cs-item-p {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        width: 90%;
        max-width: 33.8125rem;
        height: 0;
        margin: 0;
        padding: 0;
        opacity: 0;
        color: var(--bodyTextColor);
        /* clips the text so it doesn't show up */
        overflow: hidden;
        transition: opacity 0.3s, padding-bottom 0.3s;
    }
    #faq-2286 .cs-image-group {
        /* everything inside the image group is in ems so the font size will scale them down.  Font size minimum is tied to view width size, and grows until it reaches 86% of the value on em */
        font-size: min(2.3vw, .86rem);
        width: 39.375em;
        height: 37.8125em;
        position: relative;
        z-index: 1;
    }
    #faq-2286 .cs-picture {
        overflow: hidden;
        display: block;
        position: absolute;
    }
    #faq-2286 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
    }
    #faq-2286 .cs-picture1 {
        width: 19.0625em;
        height: 25.3125em;
        top: 0;
        left: 0;
    }
    #faq-2286 .cs-picture2 {
        width: 19.0625em;
        height: 11.25em;
        top: 0;
        right: 0;
    }
    #faq-2286 .cs-picture3 {
        width: 19.0625em;
        height: 11.25em;
        bottom: 0;
        left: 0;
    }
    #faq-2286 .cs-picture4 {
        width: 19.0625em;
        height: 25.3125em;
        bottom: 0;
        right: 0;
    }
}

/************ DESKTOP - 1024PX ***********/
/*****************************************/
@media only screen and (min-width: 64rem) {
    /****************** FAQ ******************/
    /*****************************************/
    #faq-2286 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.25rem;
    }
    #faq-2286 .cs-content {
        width: 55%;
        max-width: 33.125rem;
        padding: 0;
    }
    #faq-2286 .cs-image-group {
        font-size: inherit;
        width: 45vw;
        max-width: 39.375rem;
        min-height: 28.875rem;
        order: 2;
        flex: none;
    }
    #faq-2286 .cs-picture1 {
        width: auto;
        margin-right: 0.625em;
        right: 50%;
    }
    #faq-2286 .cs-picture2 {
        width: auto;
        margin-left: 0.625em;
        left: 50%;
    }
    #faq-2286 .cs-picture3 {
        width: auto;
        margin-right: 0.625em;
        right: 50%;
    }
    #faq-2286 .cs-picture4 {
        width: auto;
        margin-left: 0.625em;
        left: 50%;
    }
}

/************ DARK MODE ******************/
/*****************************************/
@media only screen and (min-width: 0rem) {
    /****************** FAQ ******************/
    /*****************************************/
    body.dark-mode #faq-2286 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #faq-2286 .cs-title,
    body.dark-mode #faq-2286 .cs-item-p {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-2286 .cs-faq-item {
        border-color: rgba(255, 255, 255, 0.2);
    }
    body.dark-mode #faq-2286 .cs-faq-item.active {
        border-color: var(--primaryLight);
    }
    body.dark-mode #faq-2286 .cs-faq-item.active .cs-button {
        color: var(--primaryLight);
    }
    body.dark-mode #faq-2286 .cs-faq-item.active .cs-button .cs-indicator:before,
    body.dark-mode #faq-2286 .cs-faq-item.active .cs-button .cs-indicator:after {
        background-color: var(--primaryLight);
    }
    body.dark-mode #faq-2286 .cs-button {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-2286 .cs-button .cs-indicator:before,
    body.dark-mode #faq-2286 .cs-button .cs-indicator:after {
        background-color: var(--bodyTextColorWhite);
    }
}