/*-- -------------------------- -->
<---          Pricing           -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #pricing-975 {
        padding: var(--sectionPadding);
        padding-top: clamp(10.25rem, 16.82vw, 18.25rem)
    }

    #pricing-975 .cs-container {
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        /* 48px - 64px */
        gap: clamp(3rem, 6vw, 4rem);
    }

    #pricing-975 .cs-content {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }

    #pricing-975 .cs-title {
        margin: 0;
    }

    #pricing-975 .cs-menu {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        column-gap: 1.25rem;
        /* 28px - 40px */
        row-gap: clamp(1.75rem, 3vw, 2.5rem);
    }

    #pricing-975 .cs-menu-group {
        width: 100%;
        max-width: 37.5rem;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        /* 28px - 40px */
        gap: clamp(1.75rem, 3vw, 2.5rem);
    }

    #pricing-975 .cs-menu-item {
        list-style: none;
        width: 100%;
        margin: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0.5rem;
    }

    #pricing-975 .cs-h3 {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        gap: 1.5rem;
        position: relative;
    }

    #pricing-975 .cs-h3:before {
        /* grey line */
        content: "";
        width: 100%;
        height: 2px;
        background: #e8e8e8;
        opacity: 1;
        position: absolute;
        display: block;
        top: 0.8125rem;
        left: 0;
        z-index: -1;
    }

    #pricing-975 .cs-header {
        /* 20px - 25px */
        font-size: clamp(1.25rem, 2vw, 1.5625rem);
        line-height: 1.2em;
        text-align: inherit;
        font-weight: 700;
        max-width: 25rem;
        padding-right: 0.5rem;
        background-color: #fff;
        color: var(--headerColor);
    }

    #pricing-975 .cs-price {
        font-size: 1rem;
        line-height: 1.5em;
        font-weight: 400;
        padding-left: 0.5rem;
        background-color: #fff;
        color: var(--headerColor);
    }

    #pricing-975 .cs-menu-text {
        font-size: 1rem;
        line-height: 1.5em;
        text-align: inherit;
        margin: 0;
        color: var(--bodyTextColor);
    }

    #pricing-975 .cs-disclaimer {
        /* set text align to left if content needs to be left aligned */
        text-align: center;
        width: 100%;
        display: flex;
        flex-direction: column;
        /* centers content horizontally, set to flex-start to left align */
        align-items: center;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #pricing-975 .cs-menu {
        flex-direction: row;
        justify-content: space-between;
    }

    #pricing-975 .cs-menu-group {
        width: 100%;
    }
}