/*-- -------------------------- -->
<---          Banner            -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #banner-712 {
        padding: clamp(10.9375rem, 10vw, 12.5rem) 1rem 6.25rem;
        position: relative;
        z-index: 1;
        background: linear-gradient(135deg, #0F0020 0%, #2E1065 50%, #5B21B6 100%);
    }

    #banner-712 .cs-container {
        text-align: center;
        width: 100%;
        max-width: 80rem;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        flex-direction: column;
        gap: 1rem;
    }

    #banner-712 .cs-int-title {
        font-size: clamp(2.4375rem, 6.4vw, 3.8125rem);
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        margin: 0;
        color: #fff;
        position: relative;
        font-family: var(--headerFont);
    }

    #banner-712 .cs-breadcrumbs {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    #banner-712 .cs-link,
    #banner-712 .cs-color {
        font-size: 1rem;
        line-height: 1.2em;
        text-decoration: none;
        color: rgba(255, 255, 255, 0.75);
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    #banner-712 .cs-link:hover {
        color: var(--secondaryLight);
    }

    #banner-712 .cs-link:last-of-type::after {
        display: none;
    }

    #banner-712 .cs-color {
        color: var(--secondaryLight);
    }

    /* Hide the background image - use gradient instead */
    #banner-712 .cs-background {
        display: none;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #banner-712 .cs-container {
        text-align: left;
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #banner-712 {
        background: linear-gradient(135deg, #050010 0%, #1E1044 50%, #2E1065 100%);
    }
}


/*-- -------------------------- -->
<---        Content Page        -->
<--- -------------------------- -*/

/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
    #content-page-852 {
        padding: var(--sectionPadding);
        background-color: #fff;
        overflow: hidden;
        position: relative;
        z-index: 1;
    }

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

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

    #content-page-852 .cs-title {
        font-size: var(--headerFontSize);
        font-weight: 700;
        line-height: 1.2em;
        text-align: inherit;
        width: 100%;
        max-width: 100%;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
        position: relative;
    }

    #content-page-852 h2,
    #content-page-852 h3,
    #content-page-852 h4,
    #content-page-852 h5,
    #content-page-852 h6 {
        font-weight: 700;
        text-align: inherit;
        margin: 0 0 1rem 0;
        color: var(--headerColor);
    }

    #content-page-852 h2 {
        font-size: 2rem;
        margin-top: 2rem;
    }

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

    #content-page-852 h4,
    #content-page-852 h5,
    #content-page-852 h6 {
        font-size: 1.25rem;
    }

    #content-page-852 .cs-button-solid {
        font-size: 1rem;
        line-height: 3.5rem;
        text-decoration: none;
        font-weight: 700;
        margin: 0 0 2rem 0;
        color: #fff;
        padding: 0 2.5rem;
        border-radius: 2rem;
        background: linear-gradient(135deg, #5B21B6, #7C3AED);
        display: inline-block;
        transition: opacity 0.3s, transform 0.3s;
    }

    #content-page-852 .cs-button-solid:hover {
        opacity: 0.9;
        transform: scale(1.02);
    }

    #content-page-852 .cs-no-margin {
        margin: 0;
    }

    #content-page-852 .cs-color {
        color: var(--primary);
    }

    #content-page-852 p {
        font-size: var(--bodyFontSize);
        line-height: 1.7em;
        text-align: inherit;
        width: 100%;
        margin: 0 0 1rem 0;
        color: var(--bodyTextColor);
    }

    #content-page-852 p:last-of-type {
        margin-bottom: 2rem;
    }

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

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

    #content-page-852 ul li {
        list-style: none;
        color: inherit;
        position: relative;
    }

    #content-page-852 ul li:before {
        content: "";
        width: 6px;
        height: 6px;
        background: var(--primary);
        opacity: 0.7;
        border-radius: 50%;
        position: absolute;
        display: block;
        top: 0.55rem;
        left: -1rem;
    }

    #content-page-852 img {
        width: 100%;
        height: auto;
        display: block;
    }

    #content-page-852 .cs-image-group {
        width: 50%;
        max-width: 27.0625rem;
        display: none;
        flex-direction: column;
        gap: 1.25rem;
        position: relative;
    }

    #content-page-852 .cs-image-group:after {
        content: "";
        width: 100%;
        height: clamp(11.0625rem, 19vw, 16.125rem);
        background: var(--primary);
        border-radius: 6.25rem 0 6.25rem;
        opacity: 0.1;
        display: block;
    }

    #content-page-852 .cs-picture {
        width: 100%;
        height: clamp(18.75rem, 40vw, 32.5rem);
        box-shadow: 0 8px 32px rgba(91, 33, 182, 0.15);
        border-radius: 0 clamp(7.8125rem, 15vw, 12.5rem) 0 clamp(7.8125rem, 15vw, 12.5rem);
        box-sizing: border-box;
        overflow: hidden;
        display: block;
        position: relative;
    }

    #content-page-852 .cs-picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Tablet - 768px */
@media only screen and (min-width: 48rem) {
    #content-page-852 .cs-container {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
    }

    #content-page-852 .cs-content {
        flex: none;
        width: 60%;
        order: 2;
    }

    #content-page-852 .cs-image-group {
        display: flex;
    }
}

/* Dark Mode */
@media only screen and (min-width: 0rem) {
    body.dark-mode #content-page-852 {
        background-color: var(--dark);
    }

    body.dark-mode #content-page-852 .cs-title,
    body.dark-mode #content-page-852 .cs-text,
    body.dark-mode #content-page-852 h2,
    body.dark-mode #content-page-852 h3,
    body.dark-mode #content-page-852 h4,
    body.dark-mode #content-page-852 h5,
    body.dark-mode #content-page-852 h6,
    body.dark-mode #content-page-852 li,
    body.dark-mode #content-page-852 p {
        color: var(--bodyTextColorWhite);
    }

    body.dark-mode #content-page-852 h3 {
        color: var(--primaryLight);
    }

    body.dark-mode #content-page-852 .cs-color,
    body.dark-mode #content-page-852 a {
        color: var(--primaryLight);
    }

    body.dark-mode #content-page-852 p,
    body.dark-mode #content-page-852 li {
        color: rgba(250, 251, 252, 0.85);
    }

    body.dark-mode #content-page-852 .cs-picture {
        border-color: var(--dark);
        background-color: var(--dark);
    }
}
