/*#region Colors */

:root {
    --white: rgba(255,255,255,1);
    --ivoryblush: rgba(249,246,243,1);
    --warmlinen: rgba(238,231,223,1);
    /*--cooperclay:rgba(185,95,54,1);*/
    --cooperclay: rgba(183,94,53,1);
    --cinnamonbark: rgba(99,47,38,1);
    /**/
    --olivegreen: rgba(44,47,37,1);
    /**/
    --mahoganybark: rgba(73,35,29,1);
    --spicedember: rgba(133,58,39,1);
}

/*#endregion */

/*#region Fonts */

@font-face {
    font-family: 'SAArwen';
    src: url('fonts/SAArwen-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body, h1, h2, h3, h4, h5, p, li, span, label, ul, li, .btn {
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    line-height: 160%;
    font-size: 19px;
    color: var(--olivegreen);
}

@media (max-width: 990px) {
    body, h1, h2, h3, h4, h5, p, li, span, label, ul, li, .btn {
        font-size: 18px;
        line-height: 150%;
    }
}

h1, .h1 {
    font-family: SAArwen;
    font-size: 2.5em;
    font-weight: 400;
    line-height:120%;
}

h2, .h2 {
    font-size: 1.7em;
    font-weight: 600;
    line-height: 125%;
}

h3, .h3 {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 130%;
}

p b, p strong {
    font-weight: 500;
}

a {
    color: var(--spicedember);
}

    a:hover {
        text-decoration: underline;
    }

    a.button.style-one {
        display: flex;
        color: var(--olivegreen);
        border: 2px solid var(--spicedember);
        padding: 14px 20px;
        border-radius: 6px;
        color: var(--olivegreen);
        text-decoration: none;
        font-weight: 700;
        width: fit-content;
        text-align: center;
    }

    a.button.style-one:hover {
        color: var(--spicedember);
    }

    a.button.style-two {
        display: flex;
        color: var(--olivegreen);
        border: 2px solid var(--cooperclay);
        background: var(--cooperclay);
        padding: 14px 20px;
        border-radius: 6px;
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        width: fit-content;
        text-align:center;
    }

        a.button.style-two:hover {
            border: 2px solid var(--spicedember);
            background: var(--spicedember);
        }

    a.button.style-three {
        display: flex;
        color: var(--olivegreen);
        border: 2px solid var(--cooperclay);
        padding: 14px 20px;
        border-radius: 6px;
        color: var(--olivegreen);
        text-decoration: none;
        font-weight: 700;
        width: fit-content;
        text-align: center;
    }

@media(max-width:1150px){
    h1, .h1 {
        font-family: SAArwen;
        font-size: 2.2em;
        font-weight: 400;
        line-height: 120%;
    }

    h2, .h2 {
        font-size: 1.7em;
        font-weight: 600;
        line-height: 125%;
    }

    h3, .h3 {
        font-size: 1.15em;
        font-weight: 600;
        line-height: 130%;
    }
}

@media(max-width:825px) {
    h1, .h1 {
        font-family: SAArwen;
        font-size: 1.8em;
        font-weight: 400;
        line-height: 120%;
    }

    h2, .h2 {
        font-size: 1.4em;
        font-weight: 600;
        line-height: 125%;
    }

    h3, .h3 {
        font-size: 1.15em;
        font-weight: 600;
        line-height: 130%;
    }
}

@media(max-width:875px) {
    a.button {
        font-size:0.9em;
    }
}

/*#endregion */

/*#region Global */

html{
-webkit-text-size-adjust:none;
-ms-text-size-adjust:none;
-moz-text-size-adjust:none;
text-size-adjust:none;
}

html, body {
    padding:0px;
    margin:0px;
    overflow-x:hidden;
}

:root {
    --fullWidth: 1800px;
    --contentWidth: 1280px;
    --headingWidth: 880px;
}

/*#endregion */

/*#region Announcement */

div.announcement {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: var(--cooperclay);
}

    div.announcement > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 10px;
        width: calc(100% - 20px);
    }

        div.announcement > div.content > ul {
            position: relative;
            overflow: hidden;
            list-style-type: none;
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            width: 100%;
            height: 30px;
            justify-content: center;
        }

            div.announcement > div.content > ul > li {
                display: flex;
                flex-direction: column;
                margin: 0px;
                padding: 0px;
                min-width: 100%;
                width: 100%;
                flex-shrink: 0;
                transition: transform 0.5s ease-in-out;
                text-align: center;
                color: var(--white);
                font-family: SAArwen;
                font-size: 1em;
                visibility: hidden;
                opacity: 0;
                height: 0;
                transition:all 0.05s ease-in-out;
            }

            div.announcement > div.content > ul > li.active {
                visibility:visible;
                opacity:1;
                display:flex;
                height:unset;
            }

@media(max-width:900px){
    div.announcement > div.content > ul {
        height: 50px;
    }
}

/*#endregion */

/*#region Header */

body > div.header {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: var(--white);
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--mahoganybark);
}

    body > div.header > div.content {
        position:relative;
        display: flex;
        flex-direction: row;
        margin: 0px;
        padding: 0px;
        width: calc(100%);
        max-width: var(--fullWidth);
        justify-content: center;
        align-items: stretch;
    }

div.header > div.content > div.logo {
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 15px 10px;
    width: 260px;
    max-width: 260px;
    justify-content: center;
    align-items: flex-start;
}

    div.header > div.content > div.logo > div.image-wrapper {
        display: flex;
        width: 90%;
        position: relative
    }

        div.header > div.content > div.logo > div.image-wrapper > a > img {
            display: block;
            object-fit: contain;
            width: 100%;
            height: 100%;
        }

div.header > div.content > div.navigation {
    display: flex;
    flex-direction: row;
    margin: 0px;
    padding: 0px 20px;
    flex: 1 1 calc(100% - 320px);
    position: relative;
    height:169px;
}

    div.header > div.content > div.navigation > ul {
        list-style-type: none;
        position: relative;
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        width: 32px;
        gap: 8px;
        justify-content: center;
        cursor:pointer;
        display:none;
    }

        div.header > div.content > div.navigation > ul > li {
            display:flex;
            margin:0px;
            padding:0px;
            width: 100%;
            border-bottom: 2px solid var(--spicedember);
        }

    div.header > div.content > div.navigation.active > ul > li:nth-of-type(1) {
        transform: rotate(-45deg);
        margin-top:6px;
    }

    div.header > div.content > div.navigation.active > ul > li:nth-of-type(2) {
        transform: rotate(45deg);
        margin-top: -8px;
    }

    div.header > div.content > div.navigation.active > ul > li:nth-of-type(3) {
        display:none;
    }

    div.header > div.content > div.navigation > div.menu {
        display: flex;
        flex-direction: row;
        margin: 0px;
        padding: 0px;
        flex: 1 1 70%;
        justify-content: flex-start;
        align-items: center;
    }

        div.header > div.content > div.navigation > div.menu > ul {
            list-style-type: none;
            display: flex;
            flex-direction: row;
            margin: 0px;
            padding: 0px;
            height: 100%;
            width: 100%;
            justify-content: center;
            align-items: center;
            gap: 25px;
        }

            div.header > div.content > div.navigation > div.menu > ul > li {
                position: relative;
                display: flex;
                flex-direction: column;
                margin: 0px;
                height: 100%;
                padding: 0px 0px;
                justify-content: center;
                align-items: flex-start;
            }

                div.header > div.content > div.navigation > div.menu > ul > li a {
                    text-decoration: none;
                    color: var(--olivegreen);
                    font-weight: 500;
                }

                    div.header > div.content > div.navigation > div.menu > ul > li a:hover {
                        color: var(--cooperclay);
                    }

                div.header > div.content > div.navigation > div.menu > ul > li > ul {
                    position: absolute;
                    list-style-type: none;
                    display: flex;
                    flex-direction: column;
                    margin: 0px;
                    padding: 16px 20px;
                    width: 300px;
                    justify-content: flex-start;
                    align-items: flex-start;
                    gap: 0px;
                    top: 143px;
                    z-index: 9999;
                    background: var(--white);
                    opacity: 0;
                    visibility: hidden;
                    border: 1px solid var(--mahoganybark);
                }

                    div.header > div.content > div.navigation > div.menu > ul > li > ul.active {
                        opacity: 1;
                        visibility: visible;
                    }

                    div.header > div.content > div.navigation > div.menu > ul > li > ul > li {
                        display: flex;
                        flex-direction: column;
                        margin: 0px;
                        padding: 0px;
                        justify-content: center;
                        align-items: center;
                    }

                        div.header > div.content > div.navigation > div.menu > ul > li > ul > li a {
                            text-decoration: none;
                            color: var(--olivegreen);
                            font-weight: 400;
                            padding: 4px 0px;
                            margin: 0px;
                        }

                            div.header > div.content > div.navigation > div.menu > ul > li > ul > li a:href {
                                color: var(--cooperclay);
                            }

    div.header > div.content > div.navigation > div.contact {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        flex: 1 1 15%;
        min-width: 200px;
        justify-content: center;
        align-items: flex-end;
        max-width: 15%;
    }

        div.header > div.content > div.navigation > div.contact > .cta {
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            justify-content: center;
            align-items: center;
        }

            div.header > div.content > div.navigation > div.contact > .cta > span {
                font-weight: 600;
            }

            div.header > div.content > div.navigation > div.contact > .cta > a {
                font-size: 1.35em;
                text-decoration: none;
                font-weight: 600;
                color: var(--olivegreen)
            }

            div.header > div.content > div.navigation > div.contact > .cta > label {
                font-size: 0.85em;
            }

@media(max-width:1300px){
    div.header > div.content > div.navigation > div.menu > ul > li a {
        font-size:0.90em;
    }
    div.header > div.content > div.logo {
        width: 220px;
        max-width: 220px;
    }
}

@media(max-width:1199px) {
    div.header > div.content > div.navigation > div.contact{
        display:none;
    }
}

@media(max-width:995px){


    div.header > div.content > div.navigation > ul {
        position: absolute;
        top: -80px;
        right: 20px;
        display: flex;
    }

    div.header > div.content > div.navigation {
        position: absolute;
        flex-direction: column;
        width: calc(100%);
        top: 90px;
        background: var(--ivoryblush);
        z-index: 9999;
        padding: 0px;
        height: unset;
        top:147px;
    }

        div.header > div.content > div.navigation div.menu {
            display: none;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            flex: 1 1 100%;
            justify-content: flex-start;
            align-items: flex-start;
        }

            div.header > div.content > div.navigation div.menu ul {
                flex-direction: column;
                margin: 0px;
                padding: 0px;
                height: 100%;
                width: 100%;
                justify-content: flex-start;
                align-items: flex-start;
            }

        div.header > div.content > div.navigation > div.contact {
            display:none;
            flex: 1 1 100%;
            max-width: 100%;
            align-items:flex-start;
            background:var(--cooperclay);
        }

            div.header > div.content > div.navigation > div.contact > .cta > a {
                font-size: 1.25em;
                text-decoration: none;
                font-weight: 600;
                color: var(--white);
            }

            div.header > div.content > div.navigation > div.contact span, div.header > div.content > div.navigation > div.contact label {
                display:none;
            }

        div.header > div.content > div.navigation > div.menu > ul > li > ul {
            position: relative;
            list-style-type: none;
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            width: 100%;
            justify-content: flex-start;
            align-items: flex-start;
            top: unset;
            z-index: 9999;
            background: unset;
            border: unset;
            opacity: 0;
            visibility: hidden;
            border: unset;
            height: 0px;
        }

        div.header > div.content > div.navigation > div.menu > ul > li > ul.active {
            opacity: 1;
            visibility: visible;
            height: auto;
        }

        div.header > div.content > div.navigation.active > div.menu, div.header > div.content > div.navigation.active > div.contact {
            display: flex;
            padding:20px;
            width:calc(100% - 40px);
        }

}

@media(max-width:675px){
    div.header > div.content > div.logo {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 15px 10px;
        width:240px;
        width:240px;
    }
}

/*#endregion */

/*#region Hero */

div .hero {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: var(--ivoryblush);
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid var(--mahoganybark);
}

    div.hero > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        width: 100%;
    }

        div.hero > div.content > div.banners {
            position: relative;
            width: 100%;
        }

            div.hero > div.content > div.banners > div.banner {
                position: absolute;
                display: flex;
                flex-direction: row;
                margin: 0px;
                padding: 0px;
                top: 0;
                left: 0;
                width: 100%;
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.5s ease-in-out;
                max-height: 640px;
                min-height: 440px;
            }

                div.hero > div.content > div.banners > div.banner.active {
                    opacity: 1;
                    pointer-events: auto;
                    position: relative;
                }

                div.hero > div.content > div.banners > div.banner > div.image {
                    position: relative;
                    display: flex;
                    flex-direction: column;
                    margin: 0px;
                    padding: 0px;
                    flex: 1 1 60%;
                    justify-content: center;
                    align-items: center;
                    border-right: 1px solid var(--mahoganybark);
                }

                div.hero > div.content > div.banners > div.banner > div.image.w30 {
                    flex: 1 1 30%;
                }
                div.hero > div.content > div.banners > div.banner > div.image.w40 {
                    flex: 1 1 40%;
                }
                div.hero > div.content > div.banners > div.banner > div.image.w50 {
                    flex: 1 1 50%;
                }
                div.hero > div.content > div.banners > div.banner > div.image.w60 {
                    flex: 1 1 60%;
                }
                div.hero > div.content > div.banners > div.banner > div.image.w70 {
                    flex: 1 1 70%;
                }

                div.hero > div.content > div.banners > div.banner > div.image > img {
                    display: block;
                    object-fit: cover;
                    width: 100%;
                    height: 100%;
                    object-position:center;
                }

            div.hero > div.content > div.banners > div.banner > div.copy {
                position: relative;
                display: flex;
                flex-direction: column;
                margin: 0px;
                padding: 40px;
                flex: 1 1 calc(40% - 80px);
                justify-content: center;
                align-items: flex-start;
            }

                div.hero > div.content > div.banners > div.banner > div.copy.w30 {
                    flex: 1 1 calc(30% - 80px);
                }

                div.hero > div.content > div.banners > div.banner > div.copy.w40 {
                    flex: 1 1 calc(40% - 80px);
                }

                div.hero > div.content > div.banners > div.banner > div.copy.w50 {
                    flex: 1 1 calc(50% - 80px);
                }

                div.hero > div.content > div.banners > div.banner > div.copy.w60 {
                    flex: 1 1 calc(60% - 80px);
                }

                div.hero > div.content > div.banners > div.banner > div.copy.w70 {
                    flex: 1 1 calc(70% - 80px);
                }

                div.hero > div.content > div.banners > div.banner > div.copy > h1 {
                    margin: 0px;
                    padding: 0px;
                }

        div.hero > div.content > ul.navigation {
            position:absolute;
            list-style-type: none;
            display: flex;
            flex-direction: row;
            margin: 30px 0px 0px 0px;
            padding: 0px;
            justify-content: flex-start;
            align-items: flex-end;
            gap: 10px;
            left: calc(60% + 40px);
            bottom: 40px;
        }

                    div.hero > div.content > ul.navigation > li {
                        display: flex;
                        margin: 0px;
                        padding: 10px;
                        border-radius: 50%;
                        background: var(--olivegreen);
                        cursor: pointer;
                    }

                        div.hero > div.content > ul.navigation > li.active {
                            padding: 15px;
                            background: var(--cooperclay);
                        }

@media(max-width:1150px) {
    div.hero > div.content > div.banners > div.banner > div.image.w60 {
        flex: 1 1 50%;
    }

    div.hero > div.content > div.banners > div.banner > div.copy.w40 {
        flex: 1 1 50%;
    }
}

@media(max-width:950px) {
    div.hero > div.content > div.banners > div.banner > div.image.w60 {
        flex: 1 1 40%;
    }

    div.hero > div.content > div.banners > div.banner > div.copy.w40 {
        flex: 1 1 60%;
    }
}

@media (min-width:876px){
    div.hero > div.content > div.banners {
        border-bottom:1px solid var(--mahoganybark);
    }
}

@media(max-width:875px) {

    div.hero > div.content > div.banners > div.banner {
        flex-wrap:wrap;
        max-height:unset;
    }

        div.hero > div.content > div.banners > div.banner > div.image.w60, div.hero > div.content > div.banners > div.banner > div.image.w40, div.hero > div.content > div.banners > div.banner > div.image.w50 {
            flex: 1 1 100%;
        }

        div.hero > div.content > div.banners > div.banner > div.copy.w40, div.hero > div.content > div.banners > div.banner > div.copy.w50, div.hero > div.content > div.banners > div.banner > div.copy.w60 {
            flex: 1 1 100%;
        }

        div.hero > div.content > div.banners > div.banner > div.copy {
            padding:30px 20px;
            background:var(--ivoryblush);
        }
}

/*#endregion */

/*#region Featured */

div.featured {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    width: 100%;
    background: var(--cinnamonbark);
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid var(--mahoganybark);
}

    div.featured > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 30px 20px 40px 20px;
        width: calc(100% - 40px);
        max-width: var(--contentWidth);
    }

        div.featured > div.content > span {
            color:var(--white);
            font-weight:400;
            font-family:SAArwen;
            font-size:0.9em;
            letter-spacing:0.5px;
        }

        div.featured > div.content > ul.logos {
            list-style-type: none;
            display: flex;
            flex-direction: row;
            margin: 10px 0px 0px 0px;
            padding: 0px;
            justify-content: flex-start;
            align-items: center;
            gap: 40px;

            overflow-x: auto; /* horizontal scroll if needed */
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch; /* smooth on iOS */
            scroll-snap-type: x proximity; /* optional snapping */
            scroll-behavior: smooth; /* optional smooth scroll */
        }

            div.featured > div.content > ul.logos > li {
                display: flex;
                flex-direction: column;
                margin: 0px;
                padding: 0px;
                justify-content: center;
                align-items: center;

                flex: 0 0 auto; /* no shrink */
                scroll-snap-align: center; /* optional: snap each logo */
            }

                div.featured > div.content > ul.logos > li > img {
                    max-height: 100%;
                    max-width: 160px;
                    object-fit: contain;
                    display: block;
                    min-height: 26px;
                    filter: invert(1);
                }

            div.featured > div.content > ul.logos::-webkit-scrollbar {
                display: none;
            }

        div.featured > div.content > ul.logos {
            -webkit-mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 24px), transparent 100%);
            -webkit-mask-repeat: no-repeat;
            -webkit-mask-size: 100% 100%;
            mask-image: linear-gradient(to right, #000 0%, #000 calc(100% - 24px), transparent 100%);
            mask-repeat: no-repeat;
            mask-size: 100% 100%;
        }

/*#endregion */

/*#region Heading Block */

div.headingBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
    background: var(--white);
}

    div.headingBlock > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 90px 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: center;
    }

    div.headingBlock > div.content > * {
        margin:5px 0px;
    }

/*#endregion */

/*#region Text Block */

div.textBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
    background: var(--white);
}

    div.textBlock.borderedBottom {
        border-bottom: 1px solid var(--mahoganybark);
    }

    div.textBlock > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: stretch;
    }

        div.textBlock > div.content img {
            max-width:100%;
        }

        div.textBlock > div.content p {
            margin: 15px 0px 5px 0px;
        }

        div.textBlock > div.content iframe {
            max-width:100%;
        }

        div.textBlock > div.content p a {
            font-weight: 500;
            text-decoration: none;
        }

    div.textBlock > div.content ul {
        margin: 0px;
    }

@media(max-width:875px){
    div.textBlock > div.content {
        padding: 0px !important;
    }

    div.textBlock {
        padding: 70px 20px !important;
        border-bottom:1px solid var(--warmlinen);
    }


    div.textBlock > div.content h2 {
        margin-top:0px;
    }
}

/*#endregion */

/*#region Posts Index */

div.postsBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
}

    div.postsBlock > div.content {
        display: flex;
        flex-direction: column;
        margin: 110px 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: flex-start;
    }

        div.postsBlock > div.content > ul.posts {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            list-style: none;
            margin: 0px;
            padding: 0;
        }

            div.postsBlock > div.content > ul.posts > li {
                margin-bottom: 30px;
            }

                div.postsBlock > div.content > ul.posts > li > div.post {
                    display: flex;
                    flex-direction: column;
                    background: var(--ivoryblush);
                    padding: 0px;
                    margin: 0px;
                    border-radius: 14px;
                    width: 100%;
                    justify-content: flex-start;
                    align-items: flex-start;
                    overflow:hidden;
                }

                    div.postsBlock > div.content > ul.posts > li > div.post > div.image-wrapper {
                        display: flex;
                        flex-direction: column;
                        padding: 0px;
                        margin: 0px;
                        width: 100%;
                        height:260px;
                        justify-content: flex-start;
                        align-items: flex-start;
                    }

                    div.postsBlock > div.content > ul.posts > li > div.post > div.image-wrapper > img {
                        width:100%;
                        height:100%;
                        object-fit:cover;
                    }

                    div.postsBlock > div.content > ul.posts > li > div.post > div.copy {
                        display: flex;
                        flex-direction: column;
                        padding: 30px 20px;
                        margin: 0px;
                        width: calc(100% - 60px);
                        justify-content: flex-start;
                        align-items: flex-start;
                    }

                    div.postsBlock > div.content > ul.posts > li > div.post > div.copy > h3.title {
                        display: flex;
                        flex-direction: column;
                        padding: 0px;
                        margin: 10px 0px 20px 0px;
                        width: 100%;
                        font-size:1em;

                    }
                        
                        div.postsBlock > div.content > ul.posts > li > div.post > div.copy p.intro {
                            display: flex;
                            flex-direction: column;
                            padding: 0px;
                            margin: 0px;
                            width: 100%;
                        }

        div.postsBlock > div.content > nav.pagination ul.page-numbers {
            display: flex;
            gap: 8px;
            list-style: none;
            padding: 20px 0 0;
            margin: 20px 0px 0px 0px;
        }

        div.postsBlock > div.content > nav.pagination a,
        div.postsBlock > div.content > nav.pagination span {
            padding: 6px 14px;
            border: 1px solid var(--warmlinen);
            border-radius: 8px;
            text-decoration: none;
        }

        div.postsBlock > div.content > nav.pagination .current {
            background: var(--cooperclay);
            border: 1px solid var(--cooperclay);
            color: var(--white);
            font-weight: 600;
        }

@media(max-width:1200px){
    div.postsBlock > div.content > ul.posts {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:675px) {
    div.postsBlock > div.content > ul.posts {
        grid-template-columns: repeat(1, 1fr);
    }
}

/*#endregion */

/*#region Testimonials Block */

div.testimonialsBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
}

    div.testimonialsBlock > div.content {
        display: flex;
        flex-direction: row;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: flex-start;
    }

        div.testimonialsBlock > div.content ul.testimonials {
            column-count: 3;
            column-gap: 20px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

            div.testimonialsBlock > div.content ul.testimonials li {
                break-inside: avoid;
                margin-bottom: 20px;
            }

            div.testimonialsBlock > div.content ul.testimonials .testimonial {
                background: #fff;
                padding: 30px 25px;
                border-radius: 14px;
                border:2px solid var(--cooperclay);
            }

@media(max-width:1200px){
    div.testimonialsBlock > div.content ul.testimonials {
        column-count: 2;
    }
}

@media(max-width:675px) {
    div.testimonialsBlock > div.content ul.testimonials {
        column-count: 1;
    }
}

/*#endregion */

/*#region Image Scroll */

div.imageScrollBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

    div.imageScrollBlock > div.content {
        display: flex;
        flex-direction: row;
        margin: 0px;
        padding: 0px;
        width: 100%;
        justify-content: flex-start;
        align-items: flex-start;
    }

        div.imageScrollBlock > div.content .marquee {
            position: relative;
            display: flex;
            width: 100%;
            background: var(--ivoryblush);
            padding: 20px;
            overflow: hidden;
            user-select: none;
            gap: 4rem;
            z-index: 1;
        }

            div.imageScrollBlock > div.content .marquee .marquee_content {
                flex-shrink: 0;
                display: flex;
                flex-direction: row;
                justify-content: space-around;
                min-width: 100%;
                gap: 4rem;
                animation: scroll 180s linear infinite;
                list-style-type: none;
                padding: 20px 0px;
                margin: 0px;
                overflow: hidden;
            }


                div.imageScrollBlock > div.content .marquee .marquee_content li {
                    display: block;
                    border-radius: 0px;
                    overflow: hidden;
                    color: rgba(0,0,0,1);
                    font-weight: 700;
                    text-transform: lowercase;
                    height: 308px;
                }

                    div.imageScrollBlock > div.content .marquee .marquee_content li img {
                        display: block;
                        object-fit: cover;
                        width: 100%;
                        height: 100%;
                    }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-100% - 4rem));
    }
}

/*#endregion */

/*#region Timeline Block */

div.eventBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
}

    div.eventBlock > div.content {
        display: flex;
        flex-direction: row;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--headingWidth);
        justify-content: flex-start;
        align-items: flex-start;
    }

        div.eventBlock > div.content ul.events {
            list-style-type: none;
            display: flex;
            width: 100%;
            position: relative;
            flex-direction: column;
            margin-top: 30px;
            padding: 0px;
        }

            div.eventBlock > div.content ul.events > li {
                display: flex;
                flex-direction: column;
                position: relative;
                width: calc(100% - 30px);
                margin-bottom: 40px;
                padding-left: 30px;
            }

            div.eventBlock > div.content ul.events > li:last-of-type {
                margin-bottom: 0px;
            }

            div.eventBlock > div.content ul.events > li > h3 {
                margin:0px;
                padding:0px;
            }

                /* Circle */
                div.eventBlock > div.content ul.events > li::before {
                    content: "";
                    position: absolute;
                    left: -2px;
                    top: 5px;
                    width: 16px;
                    height: 16px;
                    background-color: var(--cooperclay);
                    border-radius: 50%;
                    z-index: 2;
                }

                /* Vertical line */
                div.eventBlock > div.content ul.events li::after {
                    content: "";
                    position: absolute;
                    left: 5px; /* centers with circle */
                    top: 20px;
                    width: 2px;
                    height: calc(100% + 20px); /* extends to next item */
                    background-color: var(--cooperclay);
                    z-index: 1;
                }

                                /* Remove line from last item */
                div.eventBlock > div.content ul.events li:last-child::after {
                    content: none;
                }

@media(max-width:875px){
    div.eventBlock > div.content {
        padding: 0px 0px 70px 0px !important;
    }
}

/*#endregion */

/*#region FAQ Block */

div.faqBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
}

    div.faqBlock > div.content {
        display: flex;
        flex-direction: row;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: flex-start;
    }

        div.faqBlock > div.content ul.questions {
            list-style-type: none;
            display: flex;
            width: 100%;
            position: relative;
            flex-direction: column;
            margin-top: 30px;
            padding: 0px;
        }

            div.faqBlock > div.content ul.questions > li {
                display: flex;
                flex-direction: column;
                position: relative;
                width: 100%;
                margin: 0px;
                padding: 4px 0px;
                background: var(--ivoryblush);
                border-bottom:1px solid var(--white);
            }

            div.faqBlock > div.content ul.questions li div.question {
                display: flex;
                flex-direction: row;
                position: relative;
                width: 100%;
                margin: 0px;
                padding: 0px;
                justify-content: center;
                align-items: center;
                cursor: pointer;
            }

                div.faqBlock > div.content ul.questions li div.question p {
                    display: flex;
                    width: 80%;
                    flex-grow: 1;
                    margin: 0px;
                    padding: 0px 0px 0px 20px;
                    font-weight: 500;
                    font-size: 1em;
                }


                div.faqBlock > div.content ul.questions li div.question ul.toggle {
                    list-style-type: none;
                    display: flex;
                    flex-direction: column;
                    width: 60px;
                    height: 60px;
                    min-width: 40px;
                    position: relative;
                    justify-content: center;
                    align-items: center;
                    margin: 0px 0px 0px 0px;
                    padding: 0px;
                    border: 0px;
                    transition: all .075s linear;
                }

                    div.faqBlock > div.content ul.questions li div.question ul.toggle li {
                        display: flex;
                        width: 20px;
                        padding: 4px 0px;
                        border-top: 2px solid var(--olivegreen);
                    }

                        div.faqBlock > div.content ul.questions li div.question ul.toggle li:nth-of-type(1) {
                            transform: rotate(35deg);
                            position: absolute;
                            background: unset;
                            top: 20px;
                        }

                        div.faqBlock > div.content ul.questions li div.question ul.toggle li:nth-of-type(2) {
                            transform: rotate(-35deg);
                            position: absolute;
                            background: unset;
                            top: 31px;
                            right: 16px;
                        }

                    div.faqBlock > div.content ul.questions li div.question ul.toggle.active  {
                        transform: rotate(90deg);
                        right:5px;
                    }

                    div.faqBlock > div.content ul.questions li div.question ul.toggle li:nth-of-type(3) {
                        display: none;
                    }

            div.faqBlock > div.content ul.questions li div.response {
                display: flex;
                flex-direction: column;
                height: 1px;
                visibility: hidden;
                opacity: 0;
                transition: all 0.0s linear;
                padding: 0px;
            }


                div.faqBlock > div.content ul.questions li div.response ul {
                    margin-top: 10px;
                }

                div.faqBlock > div.content ul.questions li div.response.active {
                    background: var(--white);
                    padding: 40px;
                }

                div.faqBlock > div.content ul.questions li div.response p {
                    font-size: 1em;
                    max-width: 1180px;
                    margin:10px 0px;
                }

@media(max-width:875px){

    div.faqBlock > div.content ul.questions li div.response.active {
        padding: 40px 20px;
    }

    div.faqBlock > div.content ul.questions li div.response p img {
        max-width: 100% !important;
    }
}

/*#endregion */

/*#region Content Block */

div.contentBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background:var(--ivoryblush);
}

    div.contentBlock.bordered {
        border-top: 1px solid var(--mahoganybark);
        border-bottom: 1px solid var(--mahoganybark);
    }

    div.contentBlock.bordered, div.contentBlock.borderedBottom {
        border-bottom: 1px solid var(--mahoganybark);
    }

    div.contentBlock > div.content {
        display: flex;
        flex-direction: row;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content:flex-start;
        align-items:stretch;
    }

    div.contentBlock.videoBlock > div.content {
        max-width: unset;
   }

        div.contentBlock > div.content > div.copy {
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            flex: 1 1 55%;
            justify-content:center;
            align-items:flex-start;
        }

            div.contentBlock > div.content > div.copy p {
                margin: 15px 0px;
            }

            div.contentBlock > div.content > div.copy p  a {
                font-weight:500;
                text-decoration:none;
            }

    div.contentBlock.bordered > div.content > div.copy.left {
        border-right: 1px solid var(--mahoganybark);
    }

    div.contentBlock.bordered > div.content > div.copy:not(.left) {
        border-left: 1px solid var(--mahoganybark);
    }

            div.contentBlock > div.content > div.copy.w30 {
                flex: 1 1 30%;
            }
            div.contentBlock > div.content > div.copy.w40 {
                flex: 1 1 40%;
            }
            div.contentBlock > div.content > div.copy.w50 {
                flex: 1 1 50%;
            }
            div.contentBlock > div.content > div.copy.w60 {
                flex: 1 1 60%;
            }
            div.contentBlock > div.content > div.copy.w70 {
                flex: 1 1 70%;
            }

            div.contentBlock > div.content > div.copy.right {
                order: 2;
                border-right: 0px;
            }

    div.contentBlock > div.content > div.copy > .copy-inner {
        padding: 0px 0px 0px 40px;
    }

    div.contentBlock > div.content > div.copy.left > .copy-inner {
        padding: 0px 40px 0px 0px;
    }

            div.contentBlock > div.content > div.copy > h2 {
            }

            div.contentBlock > div.content > div.copy > b {
            }

            div.contentBlock > div.content > div.copy > p {
            }


    div.contentBlock > div.content > div.image, div.contentBlock > div.content > div.video {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        flex: 1 1 45%;
        justify-content: center;
        align-items: stretch;
    }

        div.contentBlock > div.content > div.image.w30, div.contentBlock > div.content > div.video.w30 {
            flex: 1 1 30%;
        }

        div.contentBlock > div.content > div.image.w40, div.contentBlock > div.content > div.video.w40 {
            flex: 1 1 40%;
        }

        div.contentBlock > div.content > div.image.w50, div.contentBlock > div.content > div.video.w50 {
            flex: 1 1 50%;
        }

        div.contentBlock > div.content > div.image.w60, div.contentBlock > div.content > div.video.w60 {
            flex: 1 1 60%;
        }

        div.contentBlock > div.content > div.image.w70, div.contentBlock > div.content > div.video.w70 {
            flex: 1 1 70%;
        }

        div.contentBlock > div.content > div.image.centered {
            align-items: center;
        }

            div.contentBlock > div.content > div.image > div.image-wrapper {
                position: relative;
                display: flex;
                flex-direction: column;
                margin: 0px;
                padding: 0px;
                height: 100%;
                justify-content: center;
                align-items: center;
                overflow: hidden;
            }

            div.contentBlock > div.content > div.image.centered > div.image-wrapper {
                align-items: center;
            }

                div.contentBlock > div.content > div.image > div.image-wrapper > img {
                    display:block;
                    height:auto;
                    width:auto;
                    max-width:100%;
                }

            div.contentBlock > div.content > div.image.imageCover > div.image-wrapper > img, div.contentBlock > div.content > div.image.imageContain > div.image-wrapper > img {
                display: flex;
                height: unset;
                width: unset;
                max-width: 80%;
            }

            div.contentBlock > div.content > div.image.imageCover > div.image-wrapper > img {
                display: block;
                height: 100%;
                width: 100%;
                object-fit: cover;
            }

            div.contentBlock > div.content > div.image.right.imageCover > div.image-wrapper {
                align-items: flex-start;
            }

            div.contentBlock > div.content > div.image.left.imageCover > div.image-wrapper {
                align-items: flex-end;
            }

            div.contentBlock > div.content > div.image.imageContain > div.image-wrapper > img {
                object-fit: contain;
            }

            div.contentBlock > div.content > div.image.max90 > div.image-wrapper > img {
                max-width: 90%;
            }

            div.contentBlock > div.content > div.image.max80 > div.image-wrapper > img {
                max-width: 80%;
            }

            div.contentBlock > div.content > div.image.max70 > div.image-wrapper > img {
                max-width: 70%;
            }

        div.contentBlock > div.content > div.image.max240px > div.image-wrapper > img {
            max-width: 240px;
            max-height: 240px;
        }

        div.contentBlock > div.content > div.image.max200px > div.image-wrapper > img {
            max-width: 200px;
            max-height: 200px;
        }

        div.contentBlock > div.content > div.image.max160px > div.image-wrapper > img {
            max-width: 160px;
            max-height: 160px;
        }

        div.contentBlock > div.content > div.image.max130px > div.image-wrapper > img {
            max-width: 130px;
            max-height: 130px;
        }

        div.contentBlock > div.content > div.image.max100px > div.image-wrapper > img {
            max-width: 100px;
            max-height: 100px;
        }


    div.contentBlock.videoBlock > div.content > div.video > video {
        object-fit: cover;
        width: 100%;
        height: 100%;
        display: block;
    }

        /* Chrome, Edge */
        div.contentBlock.videoBlock > div.content > div.video > video::-webkit-media-controls-volume-slider, div.contentBlock.videoBlock > div.content > div.video > video::-webkit-media-controls-mute-button {
            display: none !important;
        }

        /* Firefox */
        div.contentBlock.videoBlock > div.content > div.video > video::-moz-media-controls-mute-button, div.contentBlock.videoBlock > div.content > div.video > video::-moz-media-controls-volume-slider {
            display: none !important;
        }


@media(max-width:1350px){
    div.contentBlock {
        padding: 0px 45px;
        width:calc(100% - 90px);
    }
    div.contentBlock.videoBlock {
        padding: 0px;
        width: calc(100%);
    }
}

@media(max-width:1150px) {
        div.contentBlock > div.content > div.image > div.image-wrapper {
            overflow: unset;
        }

        div.contentBlock > div.content > div.image.imageCover > div.image-wrapper > img, div.contentBlock > div.content > div.image.imageContain > div.image-wrapper > img {
            max-width: 150%;
        }

        div.contentBlock > div.content > div.image.imageCover > div.image-wrapper > img {
            width: calc(100% + 45px);
            object-fit: cover;
        }
}

@media(max-width:1050px) {
    div.contentBlock {
        padding: 0px 20px;
        width: calc(100% - 40px);
    }
    div.contentBlock > div.content > div.copy.w50 {
        flex: 1 1 60%;
    }
    div.contentBlock > div.content > div.image.w50, div.contentBlock > div.content > div.video.w50 {
        flex: 1 1 40%;
    }
}

@media(max-width:875px) {

    div.contentBlock.videoBlock > div.content > div.copy{
        padding:60px 20px;
        width:calc(100% - 40px);
    }

        div.contentBlock.videoBlock > div.content > div.copy > .copy-inner {
            padding: 0px;
        }


    div.contentBlock > div.content {
        flex-wrap:wrap;
    }

        div.contentBlock:not(.videoBlock) > div.content > div.copy.orderBottom > .copy-inner {
            padding: 0px !important;
            width: 100%;
        }

    div.contentBlock:not(.videoBlock) > div.content > div.copy:not(.orderBottom) > .copy-inner {
        padding: 0px 0px 70px 0px !important;
        width: 100%;
    }

    div.contentBlock:not(.videoBlock) > div.content > div.image.orderTop {
        padding-bottom: 70px !important;
    }

        div.contentBlock > div.content > div.copy.right > .copy-inner {
            width: 100%;
        }

        div.contentBlock.bordered > div.content > div.copy.left {
            border-right:0px;
        }

        div.contentBlock > div.content > div.copy.w30, div.contentBlock > div.content > div.copy.w40, div.contentBlock > div.content > div.copy.w50, div.contentBlock > div.content > div.copy.w60div.contentBlock > div.content > div.copy.w70 {
            flex: 1 1 100%;
        }

        div.contentBlock > div.content > div.image.w30, div.contentBlock > div.content > div.video.w30,
        div.contentBlock > div.content > div.image.w40, div.contentBlock > div.content > div.video.w40,
        div.contentBlock > div.content > div.image.w50, div.contentBlock > div.content > div.video.w50,
        div.contentBlock > div.content > div.image.w60, div.contentBlock > div.content > div.video.w60,
        div.contentBlock > div.content > div.image.w70, div.contentBlock > div.content > div.video.w70 {
            flex: 1 1 100%;
        }

    div.contentBlock > div.content > div.copy.textCenterMob h2, div.contentBlock > div.content > div.copy.textCenterMob h3, div.contentBlock > div.content > div.copy.textCenterMob p {
        text-align: center;
        margin-top: 0px;
    }

    div.contentBlock > div.content > div.copy.textLeftMob h2, div.contentBlock > div.content > div.copy.textLeftMob h3, div.contentBlock > div.content > div.copy.textLeftMob p {
        text-align: left;
        margin-top: 0px;
    }

    div.contentBlock > div.content > div.copy.textRightMob h2, div.contentBlock > div.content > div.copy.textRightMob h3, div.contentBlock > div.content > div.copy.textRightMob p {
        text-align: right;
        margin-top: 0px;
    }

        div.contentBlock > div.content > div.copy > .copy-inner {
            padding: 0px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
        }

    div.contentBlock > div.content > div.copy.textLeftMob > .copy-inner {
        align-items: flex-start;
    }

        div.contentBlock > div.content > div.image.imageCover > div.image-wrapper > img, div.contentBlock > div.content > div.image.imageContain > div.image-wrapper > img {
            max-width: 100%;
        }

    div.contentBlock.bordered, div.contentBlock.borderedBottom, div.contentBlock {
        border-bottom: 1px solid var(--warmlinen);
    }

    div.contentBlock {
        padding: 70px 20px;
    }

        div.contentBlock > div.content > div.image.left {
            order: 2;
        }

        div.contentBlock > div.content > div.copy.right {
            order:1;
        }

        div.contentBlock > div.content > div.image.left {
            order: 2;
        }

        div.contentBlock > div.content > div.copy.right.orderBottom, div.contentBlock > div.content > div.copy.left.orderBottom, div.contentBlock > div.content > div.copy.orderBottom {
            order: 2;
        }

        div.contentBlock > div.content > div.image.right.orderBottom, div.contentBlock > div.content > div.image.left.orderBottom, div.contentBlock > div.content > div.image.orderBottom {
            order: 2;
        }

        div.contentBlock > div.content > div.copy.right.orderTop, div.contentBlock > div.content > div.copy.left.orderTop, div.contentBlock > div.content > div.copy.orderTop {
            order: 1;
        }

        div.contentBlock > div.content > div.image.right.orderTop, div.contentBlock > div.content > div.image.left.orderTop, div.contentBlock > div.content > div.image.orderTop {
            order: 1;

        }




        div.contentBlock > div.content {
            padding:0px !important;
        }

            div.contentBlock > div.content > div.image.max80 > div.image-wrapper > img {
                max-width: 100%;
            }
}

/*#endregion */

/*#region Price Block */

div.priceBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 60px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
    background: var(--ivoryblush);
}

    div.priceBlock > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: center;
    }

        div.priceBlock > div.content > div.headline {
            text-align: center;
            max-width: var(--headingWidth);
        }

            div.priceBlock > div.content > div.headline > h2 {
            }

        div.priceBlock > div.content > div.prices {
            position:relative;
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            width: 100%;
            max-width: var(--contentWidth);
            justify-content: flex-start;
            align-items: center;
        }

            div.priceBlock > div.content > div.prices > ul {
                list-style-type: none;
                display: flex;
                flex-direction: row;
                margin: 0px;
                padding: 0px;
                justify-content: center;
                align-items: flex-start;
                gap: 40px;
                flex-wrap:wrap;
                flex: 1 1 100%;
                max-width:var(--headingWidth);
            }

                div.priceBlock > div.content > div.prices > ul > li {
                    display: flex;
                    flex-direction: column;
                    margin: 0px;
                    padding: 0px;
                    justify-content: center;
                    align-items: center;
                    flex: 1 1 calc(50% - 40px);
                }

    div.priceBlock.white-bg > div.content > div.prices > ul > li {
        border: 1px solid var(--warmlinen);
    }

                    div.priceBlock > div.content > div.prices > ul > li > div.service {
                        display: flex;
                        flex-direction: column;
                        margin: 0px;
                        padding: 0px;
                        width: 100%;
                        justify-content: center;
                        align-items: center;
                    }

                        div.priceBlock > div.content > div.prices > ul > li > div.service > div.header {
                            display:flex;
                            flex-direction:column;
                            color: var(--white);
                            text-align: center;
                            background: var(--cooperclay);
                            padding:12px 20px;
                            width:calc(100% - 40px);
                            font-weight:700;
                            font-size:1.1em;
                        }

                        div.priceBlock > div.content > div.prices > ul > li > div.service > div.header > span {
                            color: var(--white);
                            font-size: 0.9em;
                        }

                        div.priceBlock > div.content > div.prices > ul > li > div.service > div.price {
                            display: flex;
                            flex-direction: row;
                            margin: 0px;
                            padding: 0px;
                            justify-content: center;
                            align-items: center;
                            background: var(--white);
                            width: 100%;
                            border-bottom: 1px solid var(--warmlinen);
                        }

                        div.priceBlock > div.content > div.prices > ul > li > div.service > div.price > p {
                            font-family:SAArwen;
                            font-size:3em;
                            margin:0px;
                            padding:0px;
                        }

                            div.priceBlock > div.content > div.prices > ul > li > div.service > div.price > span {
                                font-size:1.25em;
                            }

                    div.priceBlock > div.content > div.prices > ul > li > div.keypoints {
                        display: flex;
                        flex-direction: column;
                        margin: 0px;
                        padding: 20px;
                        width: calc(100% - 40px);
                        justify-content: flex-start;
                        align-items: flex-start;
                        background:var(--white);
                    }

                        div.priceBlock > div.content > div.prices > ul > li > div.keypoints > ul {
                            list-style-type: none;
                            display: flex;
                            flex-direction: column;
                            margin: 0px;
                            padding: 0px;
                            justify-content: flex-start;
                            align-items: flex-start;
                            gap: 15px;
                        }

                            div.priceBlock > div.content > div.prices > ul > li > div.keypoints > ul > li {
                                margin-left:40px;
                                position:relative;
                            }

                                div.priceBlock > div.content > div.prices > ul > li > div.keypoints > ul > li::before {
                                    position:absolute;
                                    content: '';
                                    display: inline-block;
                                    width: 29px;
                                    height: 29px;
                                    left: -40px;
                                    background-image: url('images/arrow-point.svg');
                                    background-size: contain;
                                    background-repeat: no-repeat;
                                    background-position: center;
                                    vertical-align: middle;
                                }

                    div.priceBlock > div.content > div.prices > ul > li > div.action {
                        display: flex;
                        flex-direction: column;
                        margin: 0px;
                        padding: 20px;
                        width: calc(100% - 40px);
                        justify-content: center;
                        align-items: center;
                        background: var(--white);
                    }

                        div.priceBlock > div.content > div.prices > ul > li > div.action > a {

                        }

    div.priceBlock > div.content > div.terms {
        text-align: left;
        max-width: var(--headingWidth);
        padding: 0px 20px;
    }

    @media(max-width:875px)
    {
        div.priceBlock:not(.swipe) > div.content > div.prices > ul > li {
            flex: 1 1 calc(100% - 2px);
            max-width:460px;
        }

        div.priceBlock.swipe > div.content > div.prices > ul {
            margin-top: 50px;
            justify-content: flex-start;
            flex-wrap: nowrap;
            overflow-x: auto; /* horizontal scroll if needed */
            overflow-y: hidden;
            -webkit-overflow-scrolling: touch; /* smooth on iOS */
            scroll-snap-type: x proximity; /* optional snapping */
            scroll-behavior: smooth; /* optional smooth scroll */

            scrollbar-width: none; /* Firefox */
            -ms-overflow-style: none; /* IE 10+ */
            max-width: 100%;
        }

            div.priceBlock.swipe > div.content > div.prices > ul::before {
                content: "";
                position: absolute;
                top: 10px;
                right: 0px;
                width: 32px;
                height: 16px;
                pointer-events: none;
                opacity: 1;
                background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 24'%3E%3Cpath d='M2 12 H50 M50 12 L42 5 M50 12 L42 19' fill='none' stroke='%2349231D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
                background-repeat: no-repeat;
                background-position: center;
                background-size: contain;
            }

            div.priceBlock.swipe > div.content > div.prices > ul::-webkit-scrollbar {
                display: none; /* Chrome/Safari */
            }

            div.priceBlock.swipe > div.content > div.prices > ul li {
                flex: 0 0 calc(100% - 2px);
                scroll-snap-align: center; /* optional: snap each logo */
            }
        
    }

/*#endregion */

/*#region Key Points */

div.keypointsBlock {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 60px 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: var(--ivoryblush);
}

    div.keypointsBlock > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: center;
    }

        div.keypointsBlock > div.content > div.headline {
            text-align: center;
            max-width: var(--headingWidth);
        }

        div.keypointsBlock > div.content > div.points {
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            width: 100%;
            max-width: var(--contentWidth);
            justify-content: flex-start;
            align-items: center;
        }

            div.keypointsBlock > div.content > div.points > ul {
                display: flex;
                flex-direction: row;
                margin: 0px;
                padding: 0px;
                justify-content: center;
                align-items: flex-start;
                gap: 40px;
                flex-wrap: wrap;
                flex: 1 1 100%;
            }

                div.keypointsBlock > div.content > div.points > ul > li {
                    display: flex;
                    flex-direction: row;
                    margin: 0px;
                    padding: 0px 0px 0px 40px;
                    justify-content: flex-start;
                    align-items: center;
                    flex: 1 1 calc(33.3% - 80px);
                }

                    div.keypointsBlock > div.content > div.points > ul > li::before {
                        content: '';
                        display: inline-block;
                        width: 32px;
                        height: 32px;
                        margin-right: 14px;
                        background-image: url('images/arrow-point.svg');
                        background-size: contain;
                        background-repeat: no-repeat;
                        background-position: center;
                        vertical-align: middle;
                    }

@media(max-width:900px) {
    div.keypointsBlock > div.content > div.points > ul > li {
        flex: 1 1 calc(50% - 80px);
    }
}

@media(max-width:625px) {

    div.keypointsBlock {
        padding: 60px 20px;
        width: calc(100% - 40px);
    }

    div.keypointsBlock > div.content > div.points > ul {
        gap: 20px;
    }
        div.keypointsBlock > div.content > div.points > ul > li {
            padding: 0px;
            flex: 1 1 calc(100%);
            justify-content: flex-start;
        }
}
/*#endregion */

/*#region Service Index */

div.serviceIndex {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 90px 0px 110px 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: var(--white);
}

    div.serviceIndex > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: center;
    }

        div.serviceIndex > div.content > h2 {
            max-width:var(--headingWidth);
            text-align:center;
        }

        div.serviceIndex > div.content > div.services {
            position:relative;
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            width: 100%;
            max-width: var(--contentWidth);
            justify-content: flex-start;
            align-items: center;
        }

            div.serviceIndex > div.content > div.services > ul {
                display: flex;
                flex-direction: row;
                margin: 0px;
                padding: 0px;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 40px;
                flex-wrap: wrap;
                width:100%;
            }

                div.serviceIndex > div.content > div.services > ul > li {
                    display: flex;
                    flex-direction: column;
                    margin: 0px;
                    padding: 0px;
                    justify-content: center;
                    align-items: center;
                    flex: 1 1 calc(25% - 40px);
                }

                    div.serviceIndex > div.content > div.services > ul > li > div.image-wrapper {
                        display: flex;
                        flex-direction: column;
                        margin: 0px;
                        padding: 10px;
                        justify-content: center;
                        align-items: center;
                        width:calc(100% - 20px);
                    }

                        div.serviceIndex > div.content > div.services > ul > li > div.image-wrapper > img {
                            max-width: 80%;
                            aspect-ratio: 1 / 1;
                            object-fit: cover;
                            border-radius: 50%;
                        }

                    div.serviceIndex > div.content > div.services > ul > li > p {
                        text-align:center;
                        min-height:120px;
                    }

                    div.serviceIndex > div.content > div.services > ul > li > a.button2 {
                    }

    .serviceIndex.slider-enabled .arrow-right {
        position: absolute;
        right: -20px;
        z-index: 10;
        cursor: pointer;
        width: 40px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        top:50%;
    }

        .serviceIndex.slider-enabled .arrow-right ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            margin: 0;
            padding: 0;
            width:100%;
        }

            .serviceIndex.slider-enabled .arrow-right ul li {
                width: 100%;
                border-bottom:2px solid var(--cooperclay);
                transform: rotate(45deg);
                transition: transform 0.3s;
            }

        /* Optional hover effect */
        .serviceIndex.slider-enabled .arrow-right ul li:first-child {
            transform: rotate(35deg);
            margin-top:-10px;
        }

        .serviceIndex.slider-enabled .arrow-right ul li:last-child {
            transform: rotate(-35deg);
            margin-top: 20px;
        }

    div.serviceIndex.slider-enabled > div.content > div.services > ul::-webkit-scrollbar {
        display: none;
    }

    div.serviceIndex.slider-enabled > div.content > div.services > ul {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        position: relative;
    }

    div.serviceIndex.slider-enabled > div.content > div.services > ul > li {
        scroll-snap-align: center;
        flex: 0 0 calc(33.33% - 40px);
        box-sizing: border-box;
    }

@media(max-width:1250px) {
    div.serviceIndex > div.content > div.services > ul > li {
        flex: 1 1 calc(50% - 40px);
    }

        div.serviceIndex > div.content > div.services > ul > li > div.image-wrapper > img {
            width:80%;
            max-width:300px;
        }
}

@media(max-width:990px) {
    div.serviceIndex > div.content {
        padding:0px 30px;
        width:calc(100% - 60px);
    }
}

@media(max-width:875px) {
    div.serviceIndex {
        padding: 70px 0px 70px 0px;
    }

        div.serviceIndex > div.content > h2 {
            margin-top:0px;
        }
}

@media(max-width:625px) {
    div.serviceIndex > div.content {
        padding: 0px 20px;
        width: calc(100% - 40px);
    }
}

@media(max-width:575px) {
    div.serviceIndex > div.content > div.services > ul > li {
        flex: 1 1 calc(100% );
    }
}

/*#endregion */

/*#region Article */

div.article {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 60px 0px;
    justify-content: center;
    align-items: center;
    background: var(--white);
}

    div.article > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--headingWidth);
        justify-content: flex-start;
        align-items: center;
    }

        div.article > div.content.image {
            background: var(--ivoryblush);
            max-width: unset;
            margin:40px 0px;
        }

        div.article > div.content.header, div.article > div.content.body {
            padding:0px 20px;
            width:calc(100% - 40px);
        }




        div.article > div.content > div.header {
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 0px;
            width: 100%;
            justify-content: flex-start;
            align-items: flex-start;
        }

            div.article > div.content > div.header > h1 {
                padding: 20px 0px;
                margin: 0px;
            }

            div.article > div.content > div.header > p:nth-of-type(1) {
                padding:0px;
                margin:0px;
            }

            div.article > div.content > div.header > p:nth-of-type(2) {
                padding: 0px;
                margin: 0px;
            }


        div.article > div.content.image > div.image {
            display:flex;
            margin:0px;
            padding:0px;
            width:100%;
            max-width:var(--headingWidth);
        }

            div.article > div.content.image  > div.image > img {
                width: 100%;
            }


        div.article > div.content > div.body {
            display: flex;
            flex-direction:column;
            justify-content:flex-start;
            align-items:center;
            margin: 0px;
            padding: 60px 0px;
            width: 100%;
            max-width: var(--headingWidth);
        }

            div.article > div.content > div.body > div.content {
                display: block;
                align-items: flex-start;
                margin: 0px;
                width: 100%;
            }

                div.article > div.content > div.body > div.content > p {
                    width: 100%;
                }

            div.article > div.content > div.body > div.quote {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding:20px 40px;
                margin: 0px;
                width: 100%;
                max-width:660px;
                background:var(--ivoryblush);
                border:1px solid var(--warmlinen);
                border-radius:30px;
            }

                div.article > div.content > div.body > div.quote > p {
                    color:var(--cooperclay);
                    font-style:italic;
                }

                    div.article > div.content > div.body > div.quote > p > b {
                    }

            div.article > div.content > div.body > div.action {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                padding:40px 0px;
                margin: 0px;
                width: 100%;
            }

                div.article > div.content > div.body > div.action > a {
                }

/*#endregion */

/*#region Article Index */

div.article-index {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 60px 20px;
    width: calc(100% - 40px);
    justify-content: center;
    align-items: center;
}

    div.article-index > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 0px;
        width: 100%;
        max-width: var(--contentWidth);
        justify-content: flex-start;
        align-items: center;
    }

        div.article-index > div.content > h2 {
            max-width: var(--headingWidth);
            text-align: center;
        }

        div.article-index > div.content > ul {
            display: flex;
            flex-direction: row;
            margin: 0px;
            padding: 0px;
            justify-content: center;
            align-items: flex-start;
            gap: 20px;
            flex-wrap: wrap;
            width: 100%;
        }

            div.article-index > div.content > ul > li {
                display: flex;
                flex-direction: column;
                margin: 0px;
                padding: 0px;
                justify-content: center;
                align-items: center;
                flex: 1 1 calc(33.3% - 40px);
            }

                div.article-index > div.content > ul > li > div.article {
                    display: flex;
                    flex-direction: column;
                    margin: 0px;
                    padding: 0px;
                    width:calc(100%);
                    justify-content: flex-start;
                    align-items: flex-start;
                    border:1px solid var(--warmlinen);
                }
                
                div.article-index > div.content > ul > li > div.article > div.image-wrapper {
		    display: flex;
                    flex-direction: column;
                    margin: 0px;
                    padding: 0px;
                    width:calc(100%);
                    justify-content: center;
                    align-items: center;
                    height:300px;
                }

                    div.article-index > div.content > ul > li > div.article > div.image-wrapper > img {
                        height:100%;
                       	width:100%;
                       	display:block;
                       	object-fit:cover;
                    }

                    div.article-index > div.content > ul > li > div.article > h3 {
                        font-size:1em;
                        margin:0px;
                        padding:20px;
                    }

                    div.article-index > div.content > ul > li > div.article > p {
                        margin: 0px;
                        padding: 0px 20px 20px 20px;
                    }
@media(max-width:1200px){
    div.article-index > div.content > ul > li {
        flex: 1 1 calc(50% - 30px);
    }
}

@media(max-width:675px) {
    div.article-index > div.content > ul > li {
        flex: 1 1 calc(100%);
    }
}

/*#endregion */

/*#region Footer */

div.footer {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 60px 30px;
    width: calc(100% - 60px);
    justify-content: center;
    align-items: center;
    background: var(--warmlinen);
}

    div.footer > div.content {
        display: flex;
        flex-direction: row;
        margin: 0px;
        padding: 0px;
        width: 100%;
        justify-content: center;
        align-items: stretch;
    }

        div.footer > div.content > div.meet {
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 20px;
            flex: 1 1 calc(35% - 40px);
            justify-content: flex-start;
            align-items: flex-start;
        }

            div.footer > div.content > div.meet > div.header {
                display: flex;
                flex-direction: row;
                margin: 0px;
                padding: 00px;
                width:100%;
                justify-content: flex-start;
                align-items: flex-start;
            }

                div.footer > div.content > div.meet > div.header > p {
                    font-size: 0.9em;
                }

                    div.footer > div.content > div.meet > div.header > p > b {
                    }

            div.footer > div.content > div.meet > div.bio {
                display: flex;
                flex-direction: row;
                margin: 0px;
                padding: 00px;
                width: 100%;
                gap: 20px;
                justify-content: flex-start;
                align-items: flex-start;
            }

                div.footer > div.content > div.meet > div.bio > .image-wrapper {
                    display: flex;
                    min-width: 110px;
                    min-height: 110px;
                    width: 110px;
                    height: 110px;
                    border-radius: 50%;
                    padding: 0px;
                    margin: 0px;
                    border: 2px solid var(--cooperclay);
                    overflow: hidden;
                }

                    div.footer > div.content > div.meet > div.bio > .image-wrapper > img {
                        width: 100%;
                        height: 100%;
                        object-fit: cover;
                    }

                div.footer > div.content > div.meet > div.bio > div.copy {
                    display: flex;
                    flex: 1 1 100%;
                    padding: 0px;
                    margin: 0px;
                    font-size: 0.90em;
                }

        div.footer > div.content > div.contact {
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 20px;
            flex: 1 1 calc(30% - 40px);
            justify-content: flex-start;
            align-items: flex-start;
        }

            div.footer > div.content > div.contact > div.header {
                display: flex;
                flex-direction: column;
                margin: 0px;
                padding: 0px;
                width: 100%;
                justify-content: flex-start;
                align-items: flex-start;
            }

                div.footer > div.content > div.contact > div.header > p {
                    font-size: 0.9em;
                }

            div.footer > div.content > div.contact > p {
                font-size: 0.9em;
                margin:0px;
            }

        div.footer > div.content > div.links {
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 20px;
            flex: 1 1 calc(20% - 40px);
            justify-content: flex-start;
            align-items: flex-start;
        }

            div.footer > div.content > div.links > div.header {
                display: flex;
                flex-direction: column;
                margin: 0px;
                padding: 0px;
                width: 100%;
                justify-content: flex-start;
                align-items: flex-start;
            }

                div.footer > div.content > div.links > div.header > p {
                    font-size: 0.9em;
                }

                    div.footer > div.content > div.links > div.header > p > b {
                    }

            div.footer > div.content > div.links > ul {
                list-style-type: none;
                display: flex;
                flex-direction: column;
                margin: 0px;
                padding: 00px;
                width: 100%;
                justify-content: flex-start;
                align-items: flex-start;
            }

                div.footer > div.content > div.links > ul > li > a {
                    color: var(--olivegreen);
                    font-size: 0.9em;
                }

        div.footer > div.content > div.certified {
            display: flex;
            flex-direction: column;
            margin: 0px;
            padding: 20px;
            flex: 1 1 calc(15% - 40px);
            justify-content: flex-start;
            align-items: flex-start;
        }

            div.footer > div.content > div.certified > ul {
                list-style-type: none;
                display: flex;
                flex-direction: column;
                margin: 1em 0px;
                padding: 00px;
                width: 100%;
                justify-content: center;
                align-items: flex-start;
                flex-wrap: wrap;
                gap: 20px;
            }

                div.footer > div.content > div.certified > ul > li img {
                    max-width:200px;
                }

@media(max-width:1650px)
{
    div.footer > div.content > div.meet {
        flex: 1 1 calc(40% - 40px);
    }
    div.footer > div.content > div.links {
        flex: 1 1 calc(15% - 40px);
    }
}

@media(min-width:1426px) {
    div.footer > div.content > div.meet > div.bio > div.copy > img {
        display: none;
    }
    div.footer > div.content > div.meet > div.bio > .image-wrapper {
        order:2;
    }

    div.footer > div.content > div.meet > div.bio > div.copy {
        order: 1;
    }
}

@media(max-width:1425px) 
{
    div.footer > div.content > div.meet {
        flex: 1 1 calc(30% - 40px);
    }

    div.footer > div.content > div.links {
        flex: 1 1 calc(25% - 40px);
    }

    div.footer > div.content > div.meet > div.bio {
        display:block;
    }
        div.footer > div.content > div.meet > div.bio > .image-wrapper {
            display: block;
            float: left;
            margin-right:10px;
        }
        div.footer > div.content > div.meet > div.bio > div.copy {
            display:block;
        }
}

@media(max-width:1250px) {

    div.footer > div.content {
        flex-wrap:wrap;
    }

    div.footer > div.content > div.certified {
        flex: 1 1 calc(100% - 40px);
    }

        div.footer > div.content > div.certified > ul {
            flex-direction: row;
            align-items: center;
        }

    div.footer > div.content > div.links {
        flex: 1 1 calc(25% - 40px);
    }

    div.footer > div.content > div.meet > div.bio {
        display: block;
    }

        div.footer > div.content > div.meet > div.bio > .image-wrapper {
            display: block;
            float: left;
            margin-right: 10px;
        }

        div.footer > div.content > div.meet > div.bio > div.copy {
            display: block;
        }
}

@media(max-width:1125px) {

        div.footer > div.content > div.certified {
            flex: 1 1 calc(50% - 40px);
        }

            div.footer > div.content > div.certified > ul {
                flex-direction: column;
                align-items: center;
            }

        div.footer > div.content > div.links {
            flex: 1 1 calc(50% - 40px);
        }

    div.footer > div.content > div.meet {
        flex: 1 1 calc(50% - 40px);
    }

    div.footer > div.content > div.contact {
        flex: 1 1 calc(50% - 40px);
    }   
}

@media(max-width:875px) {

    div.footer > div.content > div.certified {
        flex: 1 1 calc(100% - 40px);
    }

        div.footer > div.content > div.certified > ul {
            flex-direction: row;
            align-items: center;
            flex-wrap:wrap;
        }

    div.footer > div.content > div.links {
        flex: 1 1 calc(100% - 40px);
    }

        div.footer > div.content > div.links > div.header {
            align-items: center;
        }

        div.footer > div.content > div.links > ul {
            flex-direction: row;
            justify-content: center;
            align-items: flex-start;
            gap: 10px;
            flex-wrap: wrap;
        }

            div.footer > div.content > div.links > ul > li {
                display:flex;
            }

            div.footer > div.content > div.links > ul > li > a {
                text-align: center;
            }

    div.footer > div.content > div.meet {
        flex: 1 1 calc(100% - 40px);
    }

        div.footer > div.content > div.meet > div.header {
            justify-content: center;
        }

        div.footer > div.content > div.meet > div.bio {
            flex-direction: column;
            display: flex;
            align-items: center;
        }

            div.footer > div.content > div.meet > div.bio > .image-wrapper {
                display: flex;
                float: unset;
                margin-right: unset;
            }

            div.footer > div.content > div.meet > div.bio > div.copy {
                display: flex;
                justify-content: center;
                align-items: center;
                text-align: center;
            }

    div.footer > div.content > div.contact {
        justify-content: flex-start;
        align-items: center;
        text-align: center;
        flex: 1 1 calc(100% - 40px);
    }

        div.footer > div.content > div.contact > div.header {
            align-items: center;
        }



}

@media(max-width:625px){
    div.footer {
        padding: 40px 20px;
        width: calc(100% - 40px);
    }
        div.footer > div.content > div.certified > ul > li img {
            width: 100%;
            max-width:220px;
        }

        div.footer > div.content > div.meet, div.footer > div.content > div.contact, div.footer > div.content > div.links {
            padding: 0px;
            flex: 1 1 100%;
        }
}

@media(max-width:410px) {
    p, a {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    div.footer > div.content > div.links > ul > li {
        width: 100%;
        justify-content: center;
    }

    div.footer > div.content > div.meet, div.footer > div.content > div.contact, div.footer > div.content > div.links, div.footer > div.content > div.certified {
        padding: 20px 0px;
        flex: 1 1 calc(100%);
    }
}


/*#endregion */

/*#region Copyright */

div.copyright {
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0px;
    padding: 0px 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
    background: var(--warmlinen);
    border-top: 1px solid var(--mahoganybark);
}

    div.copyright > div.content {
        display: flex;
        flex-direction: column;
        margin: 0px;
        padding: 30px 0px;
        width: 100%;
        justify-content: center;
        align-items: center;
    }

        div.copyright > div.content > p:nth-of-type(1) {
            font-size: 0.9em;
            margin: 0px;
            padding: 0px;
        }

        div.copyright > div.content > p:nth-of-type(2) {
            margin: 0px;
            padding: 0px;
            font-size:0.8em;
        }

@media(max-width:875px){

    div.copyright > div.content {
        padding: 30px 20px;
        width: calc(100% - 40px);
    }

    div.copyright > div.content > p {
        text-align:center;
    }
}
/*#endregion */

/*#endregion */

/*#region Color Override*/

.white-bg {
    background: rgba(255,255,255,1) !important;
}
.ivoryblush-bg {
    background: rgba(249,246,243,1) !important;
}
.warmlinen-bg {
    background: rgba(238,231,223,1) !important;
}
.cooperclay-bg {
    background: rgba(185,95,54,1) !important;
}
.cinnamonbark-bg {
    background: rgba(99,47,38,1) !important;
}
.olivegreen-bg {
    background: rgba(44,47,37,1) !important;
}
.mahoganybark-bg {
    background: rgba(73,35,29,1) !important;
}
.spicedember-bg {
    background: rgba(133,58,39,1) !important;
}

.white {
    color: rgba(255,255,255,1) !important;
}

.ivoryblush {
    color: rgba(249,246,243,1) !important;
}

.warmlinen {
    color: rgba(238,231,223,1) !important;
}

.cooperclay {
    color: rgba(185,95,54,1) !important;
}

.cinnamonbark {
    color: rgba(99,47,38,1) !important;
}

.olivegreen {
    color: rgba(44,47,37,1) !important;
}

.mahoganybark {
    color: rgba(73,35,29,1) !important;
}

.spicedember {
    background: rgba(133,58,39,1) !important;
}


/*#endregion */

/*#region Width Override*/
.contentWidth {
    max-width: 1280px !important;
}

.headingWidth {
    max-width: 880px !important;
}

/*#endregion */

/*#region Alignment Override*/

.alignCenter {
    align-items: center !important;
    text-align: center !important;
}

.alignLeft {
    align-items: flex-start !important;
    text-align: left !important;
}

.textLeft, .textLeft p, .textLeft h1 .textLeft h2 .textLeft h3 .textLeft span .textLeft label .textLeft a {
    text-align: left;
}

.textCenter, .textCenter p, .textCenter h1 .textCenter h2 .textCenter h3 .textCenter span .textCenter label .textCenter a {
    text-align: center;
}

.textRight, .textRight p, .textRight h1 .textRight h2 .textRight h3 .textRight span .textRight label .textRight a {
    text-align: right;
}

/*#endregion */