/********** MOBILE - 360PX ***************/
/*****************************************/
@media only screen and (min-width: 0rem) {
    /************* FAQ FEATURE ***************/
    /*****************************************/
    #faq-460 {
        padding: var(--sectionPadding);
        background: #f7f7f7;
    }
    #faq-460 .cs-container {
        width: 100%;
        /* changes to 1280px at desktop */
        max-width: 34.375rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* 40px - 48px */
        gap: clamp(2.5rem, 5vw, 3rem);
    }
    #faq-460 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: left;
        width: 100%;
        max-width: 32.625rem;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: flex-start;
    }

    #faq-460 .cs-title {
        /* 40px - 48px */
        margin: 0 0 clamp(2.5rem, 4vw, 3rem) 0;
    }
    #faq-460 .cs-faq-group {
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        gap: 1rem;
    }
    #faq-460 .cs-faq-item {
        list-style: none;
        width: 100%;
        border: 1px solid #b4b2c7;
        border-radius: 0.5rem;
        transition: border-bottom 0.3s;
    }
    #faq-460 .cs-faq-item.active {
        border-color: var(--primary);
        border-bottom: 4px solid var(--primary);
    }
    #faq-460 .cs-faq-item.active .cs-button {
        color: var(--primary);
    }
    #faq-460 .cs-faq-item.active .cs-button:before {
        background-color: var(--primary);
        transform: translateY(-50%) rotate(180deg);
        opacity: 0;
    }
    #faq-460 .cs-faq-item.active .cs-button:after {
        background-color: var(--primary);
        transform: translateY(-50%) rotate(360deg);
    }
    #faq-460 .cs-faq-item.active .cs-item-p {
        height: auto;
        /* 20px - 24px bottom */
        /* 16px - 24px left & right */
        padding: 0 clamp(1rem, 2vw, 1.5rem) clamp(1.25rem, 1.3vw, 1.5rem);
        opacity: 1;
    }
    #faq-460 .cs-button {
        /* 16px - 20px */
        font-size: clamp(1rem, 2.5vw, 1.25rem);
        line-height: 1.2em;
        text-align: left;
        font-weight: bold;
        /* 12px - 24px top and bottom */
        /* 16px - 24px left & right */
        padding: clamp(0.75rem, 2vw, 1.5rem) clamp(1rem, 2.5vw, 1.5rem);
        border: none;
        background: transparent;
        color: var(--headerColor);
        display: block;
        width: 100%;
        position: relative;
        transition:
            background-color 0.3s,
            color 0.3s;
    }
    #faq-460 .cs-button:hover {
        cursor: pointer;
    }
    #faq-460 .cs-button:before {
        /* horizontal line */
        content: "";
        width: 0.75rem;
        height: 0.1875rem;
        background-color: #1a1a1a;
        opacity: 1;
        border-radius: 3px;
        position: absolute;
        display: block;
        top: 50%;
        /* 16px - 20px */
        right: clamp(1rem, 2.5vw, 1.15rem);
        transform: translateY(-50%);
        transition:
            transform 0.5s,
            opacity 0.3s;
    }
    #faq-460 .cs-button:after {
        /* vertical line */
        content: "";
        width: 0.75rem;
        height: 0.1875rem;
        background-color: #1a1a1a;
        opacity: 1;
        border-radius: 3px;
        position: absolute;
        display: block;
        top: 50%;
        /* 16px - 20px */
        right: clamp(1rem, 2.5vw, 1.15rem);
        transform: translateY(-50%) rotate(90deg);
        transform-origin: center;
        transition: transform 0.5s;
    }
    #faq-460 .cs-button-text {
        width: 80%;
        display: block;
    }
    #faq-460 .cs-item-p {
        /* 14px - 16px */
        font-size: clamp(0.875rem, 1.5vw, 1rem);
        line-height: 1.5em;
        width: 90%;
        max-width: 39.375rem;
        height: 0;
        margin: 0;
        /* 16px - 24px */
        padding: 0 clamp(1rem, 2vw, 1.5rem);
        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-460 .cs-image-group {
        max-width: 37.625rem;
        display: inline-flex;
        justify-content: center;
        align-items: flex-end;
        position: relative;
        /* places it at the first position at the top of the container */
        order: -1;
        z-index: 1;
    }
    #faq-460 .cs-picture {
        width: 100%;
        margin: 0;
        display: inline-flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-end;
    }
    #faq-460 .cs-picture img {
        width: 100%;
        height: auto;
        filter: drop-shadow(10px 4px 44px rgba(0, 0, 0, 0.25));
    }
    #faq-460 .cs-trapezoid {
        width: 60%;
        max-width: 18.9375rem;
        height: auto;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        z-index: -1;
    }
}

/********** TABLET - 768PX ***************/
/*****************************************/
@media only screen and (min-width: 48rem) {
    /************* FAQ FEATURE ***************/
    /*****************************************/
    #faq-460 .cs-container {
        max-width: 80rem;
        flex-direction: row;
        justify-content: flex-end;
        align-items: flex-end;
        gap: 3.25rem;
        position: relative;
    }
    #faq-460 .cs-content {
        width: 65vw;
        max-width: 52.9375rem;
    }
    #faq-460 .cs-image-group {
        width: 52vw;
        flex: none;
        position: absolute;
        right: 71%;
        bottom: 0;
        order: -1;
    }
}

/************** DARK MODE ****************/
/*****************************************/
@media only screen and (min-width: 0rem) {
    /************* FAQ FEATURE ***************/
    /*****************************************/
    body.dark-mode #faq-460 {
        background-color: rgba(0, 0, 0, 0.2);
    }
    body.dark-mode #faq-460 .cs-splash {
        opacity: 0.2;
    }
    body.dark-mode #faq-460 .cs-orange,
    body.dark-mode #faq-460 .cs-blue {
        filter: brightness(70%);
    }
    body.dark-mode #faq-460 .cs-topper {
        color: var(--primaryLight);
    }
    body.dark-mode #faq-460 .cs-title,
    body.dark-mode #faq-460 .cs-item-p {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-460 .cs-faq-item {
        border-color: rgba(255, 255, 255, 0.2);
    }
    body.dark-mode #faq-460 .cs-faq-item.active {
        border-color: var(--primaryLight);
    }
    body.dark-mode #faq-460 .cs-faq-item.active .cs-button {
        color: var(--primaryLight);
    }
    body.dark-mode #faq-460 .cs-faq-item.active .cs-button:before,
    body.dark-mode #faq-460 .cs-faq-item.active .cs-button:after {
        background-color: var(--primaryLight);
    }
    body.dark-mode #faq-460 .cs-button {
        color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-460 .cs-button:before,
    body.dark-mode #faq-460 .cs-button:after {
        background-color: var(--bodyTextColorWhite);
    }
    body.dark-mode #faq-460 .cs-trapezoid {
        filter: brightness(70%);
    }
}