:root,
:before,
:after {
    --container-width: 120rem;
    --container-space: 1.75rem;
    --header-height: 3.25rem;
    --font-family-headline: "STIX Two Text";
    --font-family-body: "Inter", sans-serif;
}

body {
    background-color: var(--main-background);
}

p {
    margin: 0;
}

.max-container {
    max-width: calc(var(--container-width) + var(--container-space)* 2);
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.max-container>.max-container {
    border-left: none;
    border-right: none;
}

.header-space {
    /* padding-top: var(--header-height); */
}

.hw-bg-image-gradient {
    position: absolute;
    z-index: -2;
    left: 0;
    min-height: 50vh;
    min-width: 140%;
    max-width: 140% !important;
    height: auto;
    object-fit: cover;
}

.hw-background-container {
    position: relative;
    overflow: hidden;
    /*safari fallback*/
    overflow: clip;
    width: 100%;
    max-width: 100%;
}

.single-case .hw-background-container {
    overflow: hidden;
    /*safari fallback*/
    overflow: clip;
}

.grecaptcha-badge {
    bottom: 100px !important;
}

/* Slider Button */
.slider-pagination-number {
    font-size: 1.125rem;
    width: auto;
    padding: 0 1rem;
    text-align: center;
}

.slider-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid var(--border-color);
    cursor: pointer;
    width: fit-content;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.slider-button svg {
    position: relative;
    left: 0;
    transition: all 0.2s ease-out;
    width: 1.25rem;
    height: 1.25rem;
}

.slider-button-next:hover svg {
    left: 3px;
}

.slider-button-prev:hover svg {
    left: -3px;
}

/*End Slider Button */

.area-12 {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    grid-template-areas: "a a a a b b b b b b b b";
    /* border-bottom: 1px solid var(--border-color); */
}

.area-12-left {
    grid-area: a;
    border-right: 1px solid var(--border-color);
}

.area-12-right {
    grid-area: b;
}

@media (max-width: 1920px) {
    .max-container {
        border-left: none!important;
        border-right: none!important;
    }
}



@media (max-width: 992px) {

    .area-12 {
        grid-template-columns: repeat(1, 1fr);
        grid-template-areas: "a" "b";
    }
}


@media (max-width: 768px) {
    :root {
        --container-space: 1rem;
    }

    .slider-pagination-number {
        font-size: 1rem;
    }
}


@keyframes moveImage {
    0% {
        left: 0%;
        right: 0%;
        width: 100%;
    }

    100% {
        left: -20%;
        right: -20%;
        width: 140%;
    }
}