@media only screen and (min-width: 0rem) {
    #classes {
        z-index: 1;
        position: relative;
        background-color: #1a1a1a;
        overflow: hidden;
        padding: var(--sectionPadding);
        padding-top: 3.125rem;
    }

    #classes .cs-container {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        margin: auto;
        max-width: 80rem;
        width: 100%;
        gap: clamp(3rem, 6vw, 4rem);
    }

    #classes .cs-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 52.625rem;
        width: 100%;
        text-align: left;
    }

    #classes .cs-content img {
        display: block;
        margin: 1rem 0;
        height: auto;
        width: 100%;
    }

    #classes h2, #classes h3, #classes h4, #classes h5, #classes h6 {
        margin: 0 0 1rem 0;
        line-height: 1.2em;
        font-weight: 700;
        color: var(--bodyTextColorWhite);
        text-align: inherit;
    }

    #classes h2 {
        margin-top: 2rem;
        font-size: clamp(2rem, 3.2vw, 2.75rem);
    }

    #classes h3 {
        font-size: 1.5rem;
        color: var(--primary);
    }

    #classes h4, #classes h5, #classes h6 {
        font-size: 1.25rem;
        font-weight: 400;
    }

    #classes .cs-button-solid {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    #classes .cs-button-solid img {
        margin: 0;
        height: auto;
        width: 1.75rem;
    }

    #classes .cs-color {
        color: var(--primary);
    }

    #classes p {
        margin: 0 0 1rem 0;
        width: 100%;
        font-size: var(--bodyFontSize);
        line-height: 1.5em;
        color: var(--bodyTextColorWhite);
        text-align: inherit;
    }

    #classes p a {
        text-decoration: underline;
        font-size: inherit;
        line-height: inherit;
        color: var(--primary);
    }

    #classes p:last-of-type {
        margin-bottom: 2rem;
    }

    #classes ol, #classes ul {
        display: flex;
        flex-direction: column;
        margin: 0 0 2rem 0;
        padding-left: 1.5rem;
        color: var(--bodyTextColorWhite);
        gap: 1rem;
    }

    #classes ul li, #classes ol li {
        position: relative;
        list-style: none;
        color: var(--bodyTextColorWhite);
    }

    #classes ul li p:last-of-type, #classes ol li p:last-of-type {
        margin: 0;
    }

    #classes ul li a, #classes ol li a {
        text-decoration: underline;
        font-size: inherit;
        line-height: inherit;
        color: var(--primary);
    }

    #classes ul li:before, #classes ol li:before {
        position: absolute;
        top: 0.625rem;
        left: -0.75rem;
        content: "";
        opacity: 1;
        display: block;
        border-radius: 50%;
        background: currentColor;
        height: 3px;
        width: 3px;
    }

    #classes .cs-content-group {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    #classes .cs-content-group img {
        margin: 0;
    }

    #classes .cs-image-group {
        z-index: 1;
        position: relative;
        display: none;
        height: 48.3125em;
        width: 28.125em;
        font-size: min(1vw, 1em);
        flex: none;
    }

    #classes .cs-picture {
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        border: 0.75em solid #393939;
        background-color: #393939;
        height: 40.4375em;
        width: 100%;
        box-sizing: border-box;
        overflow: hidden;
    }

    #classes .cs-picture img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

}

@media only screen and (min-width: 37.5rem) {
    #classes .cs-content-group {
        flex-direction: row;
    }

    #classes .cs-wrapper {
        z-index: 1;
        position: relative;
        display: block;
        height: clamp(12.5rem, 20vw, 19rem);
        width: 100%;
    }

    #classes .cs-wrapper img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        object-position: top;
    }
}

@media only screen and (min-width: 48rem) {
    #classes .cs-container {
        flex-direction: row;
        align-items: flex-start;
    }

    #classes .cs-image-group {
        display: block;
        transform: scaleX(-1);
    }

    #classes .cs-picture {
        transform: scaleX(-1);
    }

    #classes .cs-content {
        margin-left: auto;
    }

    #classes .cs-background {
        z-index: -1;
        position: absolute;
        top: 0;
        left: 0;
        display: block;
        background-color: #f7f7f7;
        height: 100%;
        width: 20%;
    }

    #classes .cs-background img {
        z-index: 1;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0.2;
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}
