*,
*::before,
*::after {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;

    &:has(body.logged-in) {
        &:has(#wpadminbar) {
            margin-top: 0 !important;
        }
    }

    body {
        &.logged-in {
            .o-header {
                @media (min-width: 781px) {
                    top: 32px;
                }
            } 
        }
        p, div {
            font-family: "Lato", sans-serif;
            padding-top: 0;
            margin-top: 0;
            font-size: 13px;
            line-height: inherit;
            
            @media (min-width: 1025px) {
                font-size: 16px !important;
            }
            @media (min-width: 1600px) {
                font-size: 18px !important;
            }
            @media (min-width: 1920px) {
                font-size: 24px !important;
            }
        }
    }
}
ul, ol {
    margin: 0;
    padding: 0;
}
ul {
    &.slick-dots {
        display: flex;
        align-items: center;
        justify-content: center;
        bottom: -60px;
        flex-wrap: wrap;
        gap: 1rem;

        li {
            margin: 0;
            width: 49px;
            height: 12px;
            display: inline-flex;
            align-items: center;
            justify-content: center;

            button {
                display: flex;
                width: 49px;
                height: 12px;
                align-items: center;
                justify-content: center;
                background-color: #b9b9b9;
                border-radius: 25px;
                -webkit-border-radius: 25px;

                &:before {
                    display: none;
                }
            }

            &.slick-active, &:hover {
                button {
                    background-color: #091356;
                }
            }
        }
    }
}
a, ::after, ::before, input[type="submit"], input[type="reset"], .o-logoWrap, .o-header > .wp-block-group {
    transition: all 500ms ease-in-out !important;
    -webkit-transition: all 500ms ease-in-out !important;
}
a {
    text-decoration: none;

    &:hover, &:focus {
        outline: none;
        text-decoration: none;
    }
}
sup {
    font-size: 0.75em;
    vertical-align: super;
}
p:empty{
    display: none;
}
iframe {
    width: 100%;
}
img {
    max-width: 100%;
}
strong {
    font-weight: 700;
}
table {
    width: 100%;
}
.w-100 {
    width: 100% !important;
}
.mx-100 {
    max-width: 100% !important;
}
.p-relative {
    position: relative !important;
}
.p-absolute {
    position: absolute !important;
}
.t0 {
    top: 0 !important;
}
.b0 {
    bottom: 0 !important;
}
.l0 {
    left: 0 !important;
}
.r0 {
    right: 0 !important;
}
.m-auto {
    margin: 0 auto !important;
}
.ml-auto {
    margin-left: auto !important;
}
.mr-auto {
    margin-right: auto !important;
}
.d-none {
    display: none !important;
}
.d-block {
    display: block !important;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
.justify-spcbetwn {
    justify-content: space-between !important;
}
.justify-start {
    justify-content: flex-start !important;
}
.justify-end {
    justify-content: flex-end !important;
}
.justify-center {
    justify-content: center !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-row {
    flex-direction: row !important;
}
.flex-column-reverse {
    flex-direction: column-reverse !important;
}
.flex-row-reverse {
    flex-direction: row-reverse !important;
}
.align-center {
    align-items: center !important;
}
.align-content-center {
    align-content: center !important;
}
.align-start {
    align-items: flex-start !important;
}
.align-stretch {
    align-items: stretch !important;
}
.align-stretch {
    align-items: stretch !important;
}
.flex-wrap {
    flex-wrap: wrap !important;
}
.order1 {
    order: 1 !important;
}
.order2 {
    order: 2 !important;
}
.order3 {
    order: 3 !important;
}
.gform_wrapper {
    width: 90%;
    
    input[type='text'], input[type='url'], input[type='email'], input[type='password'], input[type='url'], input[type='tel'], input[type='file'], textarea, select, .ginput_container_fileupload {
        padding: 8px 10px !important;
        height: auto !important;
        width: 100%;

        @media (max-width: 1024px) {
            padding: 5px 10px !important;
        }
    }
    ::placeholder, ::-ms-input-placeholder, ::-webkit-input-placeholder, ::-o-input-placeholder {
        color: #e19aec !important;
        opacity: 1;
    }
    input[type='submit'] {
        padding: 20px 80px 20px 70px !important;
        height: auto;
        border: 2px solid #9c4da8 !important;
        font-family: "Lato", sans-serif;
        font-weight: 700 !important;
        outline: none !important;
        cursor: pointer !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;

        &:hover {
            background-color: #6a1b7b !important;
        }
        @media (min-width: 1025px) {
            font-size: 24px !important;
        }
        @media (max-width: 1024px) {
            padding: 5px 30px 5px 25px !important;
        }
    }

    .gfield_error {
        input[type='text'], input[type='url'], input[type='email'], input[type='password'], input[type='url'], input[type='tel'], input[type='file'], textarea, select, .ginput_container_fileupload {
            border-color: #e19aec !important;
        }
    }

    .gform-footer {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.o-form {
    textarea {
        height: 121px !important;
    }
}
/* --------------------------------------- *
|           F L E X    I T E M S           |
* ----------------------------------------*/
.fixed {
    position: fixed;
    top: 0;
    height: 70px;
    z-index: 1;
}
.d-flex {
    display: flex !important;
}
.d-inline-flex {
    display: inline-flex !important;
}
.justify-spcbetwn {
    justify-content: space-between !important;
}
.justify-start {
    justify-content: flex-start !important;
}
.justify-end {
    justify-content: flex-end !important;
}
.justify-center {
    justify-content: center !important;
}
.flex-column {
    flex-direction: column !important;
}
.flex-row {
    flex-direction: row !important;
}
.align-center {
    align-items: center !important;
}
.align-content-center {
    align-content: center !important;
}
.align-baseline {
    align-items: baseline !important;
}
.align-stretch {
    align-items: stretch !important;
}
.align-end {
    align-items: flex-end !important;
}
.flex-wrap {
    flex-wrap: wrap;
}
.order1 {
    order: 1 !important;
}
.order2 {
    order: 2 !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.text-center {
    text-align: center;
}
img {
    &.alignright { 
        margin: 0 0 20px 50px; 
        display: inline; 
        float: right;
    }
    &.alignleft { 
        margin: 0 50px 20px 0; 
        display: inline; 
        float: left;
    }
    &.aligncenter { 
        display: block; 
        margin: 0 auto 20px;
    }
    &.alignleft, &.alignright, &.aligncenter, &.alignnone {
        border: 10px solid #fff;
        box-shadow: 0px 0px 20px 0px rgba(69, 69, 69, 0.16);
        -webkit-box-shadow: 0px 0px 20px 0px rgba(69, 69, 69, 0.16);
    }
}
.o-greyscale {
    filter: grayscale(1);
    -filter: grayscale(1);
}
.wp-site-blocks {
    padding: 0;
    margin: 0;
}

.sameHeight {
    @media (max-width: 780px) {
        min-height: inherit !important;
    }
}
.gform_fields {
    @media (max-width: 640px) {
        gap: 1rem !important;
    }
}
.gform-field-label {
    margin: 0;
}
.gform_required_legend {
    display: none !important;
}
.o-container {
    width: calc(100% - 30px);
    margin: 0 auto;
    
    @media (min-width: 1025px) {
        max-width: calc(100% - 30px);
        width: 100%;
    }
    @media (min-width: 1300px) {
        max-width: 1295px;
    }
    @media (min-width: 1600px) {
        max-width: 1495px;
    }
}
.o-heading--border {
    &:has(h1, h2, h3, h4, h5, h6) {
        position: relative;
        display: flex;
        margin: 0;
        
        h1, h2, h3, h4, h, h6 {
            width: 100%;
            display: flex;
            flex-direction: column;
            line-height: inherit;

            &:after, &:before {
                position: relative;
                display: block;
                width: 83px;
                height: 3px;
                content: '';
            }
        }
    }

    &.o-heading--borderCenterRightLightGreen {
        h1, h2, h3, h4, h, h6 {
            &:before {
                display: none;
            }
            &:after {
                top: 50%;
                right: 0;
                background:#7e8f87;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
            }
        } 
    }
    &.o-heading--borderCenterLeftRightLightGreen {
        h1, h2, h3, h4, h, h6 {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;

            &:after, &:before {
                width: 15%;
                height: 1px;
                top: 50%;
                background:#738673;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
            }
            &:after {
                margin-left: 10px;

                @media (min-width: 781px) {
                    margin-left: 20px;
                }
            }
            &:before {
                left: 0;
                margin-right: 10px;

                @media (min-width: 781px) {
                    margin-right: 20px;
                }
            }
        } 
    }

    &.o-heading--borderCenterLeftRightPurple {
        h1, h2, h3, h4, h, h6 {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: row;

            &:after, &:before {
                width: 15%;
                height: 1px;
                top: 50%;
                background:#6a1b7b;
                transform: translateY(-50%);
                -webkit-transform: translateY(-50%);
            }
            &:after {
                margin-left: 10px;

                @media (min-width: 781px) {
                    margin-left: 20px;
                }
            }
            &:before {
                left: 0;
                margin-right: 10px;

                @media (min-width: 781px) {
                    margin-right: 20px;
                }
            }
        } 
    }
}
.o-overlay {
    position: relative;

    .o-container {
        position: relative;
        z-index: 3;
    }

    &:after {
        position: absolute;
        content: '';
        z-index: 0;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    &.o-overlay--White {
        &:after {
            background-color: rgba(255,255,255,0.80);
        }
    }

    &.o-overlay--DarkBlue {
        &:after {
            background-color: rgba(19,24,70,0.80);
        }
    }
}
.o-bttn {

    a {
        padding: 1rem 1.3rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        position: relative;
        z-index: 2;
        border-radius: 5px;
        -webkit-border-radius: 5px;
    }

    &.o-bttn--purple {
        a {
            color: #fff;
            background-color: #9c4da8;

            &:hover {
                color: #fff;
                background-color: #7e8f87;
            }
        }
    }

    &.o-bttn--lightGrey {
        a {
            color: #fff;
            background-color: #7e8f87;

            &:hover {
                color: #fff;
                background-color: #9c4da8;
            }
        }
    }
}
h1 {
    font-size: 22px !important;
    
    br {
        @media (max-width: 1024px) {
            display: none;
        }
    }    
    @media (min-width: 1025px) {
        font-size: 32px !important;
    }
    @media (min-width: 1200px) {
        font-size: 52px !important;
    }
    @media (min-width: 1600px) {
        font-size: 70px !important;
    }
}
section {
    &.wp-block-group {
        width: 100%;

        .slick-next, .slick-prev {
            background: #fff;
            width: 38px;
            height: 38px;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 500%;
            -webkit-border-radius: 500%;
            box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
            -webkit-box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
    
            &:before {
                font-family: 'FontAwesome';
                color: #000532;
                font-size: 30px;
            }
        }
        .slick-prev {
            left: -15px;
            &:before {
                content: '\f104';
            }
        }
        .slick-next {
            right: -15px;
            &:before {
                content: '\f105';
            }
        }
        ul, ol {
            &:not(.slick-dots) {
                margin: 0;
                padding: 0;
    
                li {
                    position: relative;
                    list-style: none;
                }
            }
        }
    
        ul, ol {
            &.wp-block-list {
    
                li {
                    list-style: none;
                    padding: 0 0 0.5rem 1.5rem;
    
                    &:before {
                        font-size: 15px;
                        position: absolute;
                        left: 0;

                        @media (min-width: 781px) {
                            top: 5px;
                        }
                    }
                }
            }
        }
    
        ul {
            &.wp-block-list {
                li {
                    &:before {
                        background: url('../../../../wp-content/uploads/2026/04/checkmark-light-green.svg') 0 0 no-repeat;
                        content: '';
                        width: 18px;
                        height: 18px;
                        background-size: contain;
                    }
                }
            }
        }
    
        ol {
            counter-reset: line;
    
            &.wp-block-list {
                & > li {
                    padding: 0 0 0 2rem;
    
                    &:before {
                        color: #fff;
                        background-color: #0b156e;
                        counter-increment: line;
                        content: counter(line);
                        display: inline-flex;
                        align-items: center;
                        justify-content: center;
                        width: 22px;
                        height: 22px;
                        border-radius: 50%;
                        -webkit-border-radius: 50%;
                    }
                }
            }
        }
    }
}
.wp-block-image {
    img {
        width: 100%;
    }
}
.o-header {
    z-index: 11;
    position:fixed;
    top: 0;
    left: 0;
    width: 100%;

    &.o-resize {
        background-color: rgba(255,255,255,0.90) !important;
        
        & > .wp-block-group {
            .o-logoWrap {
                @media (min-width: 1025px) {
                    flex-basis: 175px !important;
                }
            }

            @media (min-width: 1025px) {
                padding: 10px 0;
            }
        }
    }

    & > .wp-block-group {
        .o-logoWrap, .o-logo, .o-logo > a {
            @media (max-width: 1024px) {
                width: auto !important;
                flex-basis: 135px !important;
                display: flex;
            }
        }
        .o-navWrap {
            &.o-navWrap--primary {
                @media (max-width: 1024px) {
                    flex-basis: 40% !important;
                }
            }
        }
    }
}
.wp-block-navigation__responsive-container-content {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
}
nav {
    &.wp-block-navigation {
        &.o-nav {
            &.o-nav--primary {
                margin-top: 0.5rem !important;
            }
        }
    }
    .o-nav {
        margin: 0;
    
        &.o-nav--primary {
            width: 100%;

            li {
                a {
                    font-size: 11px;
                    position: relative;
                    text-align: left !important;
                    font-weight: 400 !important;
                    width: 100% !important;
    
                    &:hover {
                        color: #9c4da8;
                    }
    
                    @media (min-width: 1025px) {
                        font-size: 14px !important;
                    }
    
                    @media (min-width: 1200px) {
                        font-size: 1rem !important;
                    }
                }
    
                &:not(.o-bttn) {
                    a {
                        &:after {
                            content: '';
                            position: relative;
                            bottom: -7px;
                            left: 0;
                            background-color: #9c4da8;
                            width: 0;
                            height: 3px;
                            display: block;
    
                            &:hover {
                                color: #9c4da8;
                            }
                        }
                    }

                    &.current-menu-item, &:hover {
                        & > a {
                            color: #9c4da8;
    
                            &:after {
                                width: 100%;
                                opacity: 1;
                            }
                        }
                    }
                }

                &.o-bttn {
                    a {
                        padding: 0.5rem 1.5rem !important;
                        color: #fff;
                        display: flex;

                        @media (max-width: 780px) {
                            align-items: center;
                            justify-content: center;
                        }
                    }

                    &.current-menu-item {
                        a {
                            background-color: #7e8f87;
                        }
                    }
                }

                @media (max-width: 780px) {
                    width: 100%;
                    display: block;
                }
            }
    
            @media (min-width: 781px) {
                gap: 0.7rem;
            }
            @media (min-width: 1025px) {
                gap: 1rem;
            }
            @media (min-width: 1400px) {
                gap: 1.5rem;
            }
    
            @media (max-width: 780px) {
                display: flex !important;
                flex-direction: column !important;
                align-items: flex-start !important;
                background: #fff !important;
                padding: 0;
                gap: 1rem !important;
            }
        }
    
        &.o-nav--footer {
            li {
                a {
                    &:after {
                        content: '';
                        position: relative;
                        bottom: 0;
                        left: 0;
                        background-color: #fff;
                        width: 0;
                        height: 1px;
                        display: block;
                    }

                    @media (max-width: 1024px) {
                        font-size: 13px;
                    }
                }
    
                &.current-menu-item, &:hover {
                    & > a {
                        &:after {
                            width: 25%;
                            opacity: 1;
                        }
                    }
                }

                &.o-bttn {
                    a {
                        padding: 0;
                        background-color: transparent;
                    }
                }
            }

            @media (max-width: 640px) {
                flex-wrap: wrap;
            }
        }
    }
}
.wp-block-navigation__responsive-container-open {
    &:not(.always-shown) {
        @media (min-width: 600px) and (max-width: 780px) {
            display: block !important;
        }
    }
    @media (max-width: 780px) {
        margin-top: -7px !important;
    }
}
.wp-block-navigation__responsive-container:not(.hidden-by-default):not(.is-menu-open) {
    @media (min-width: 600px) and (max-width: 780px) {
        display: none !important;
        position: fixed !important;
    }
}
.o-social {
    &.o-socialHeader {
        li {
            a {
                svg {
                    height: 1.6em;
                    width: 1.6em;
                }
            }
        }
    }
}
.o-banner {
    &.o-bannerHome {
        min-height: 500px;
        overflow: hidden;
        height: 100%;

        .o-bannerContent {
            order: 2;
            position: relative;
        
            @media (min-width: 1200px) {
                height: 100vh;
            }    
        }
    }
    .o-bannerContent {
        order: 2;
        position: relative;

        &.o-bannerContent--inner {
            .o-bannerContent--inside {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 100%;
            }
        }

        @media (max-width: 780px) {
            padding: 20px 30px;
        }

    }
    .o-bannerImage {
        display: block;
        position: relative;

        &:after {
            background-color: #93499e;
            width: 80%;
            height: 39px;
            content: '';
            bottom: 0;
            right: 0;
            position: relative;
            display: block;
            opacity: 1;
            float: right;
        }

        .wp-block-image {
            height: 100%;
            display: block;

            img {
                width: 100%;
                height: 100%;
                display: block;
                object-fit: cover;
                aspect-ratio: 1;
            }
        }
        @media (min-width: 781px) {
            height: 95vh;
        }
        @media (max-width: 780px) {
            order: 1;
        }
    }
    &.o-bannerInner {
        .o-bannerContent {

            .wp-block-separator {
                width: 10%;
            }
            @media (max-width: 780px) {
                padding-top: 30px !important;
                padding-bottom: 20px !important;
            }
        }
    } 
}
.o-placeholder {
    img {
        object-fit: contain !important;
    }
}
.is-type-video, .is-type-image {
    position: relative;
    width: 100%;
    height: 100%;

    &:before {
        background-color: #1a1f4e;
        position: absolute;
        content: '';
        width: 30%;
        z-index: 1;
        left: -15px;
        top: -15px;
        right: -15px;
        bottom: -15px;
    }

    .wp-block-embed__wrapper, img {
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 2;
        box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
        -webkit-box-shadow: 0px 2px 18px 0px rgba(0, 0, 0, 0.3);
    }

    @media (min-width: 781px) {
        padding: 30px;
    }
}
.wp-block-table {
    table {
        &.is-style-stripes {
            border: 1px solid #f0f0f0;
        }

        thead {
            tr {
                background-color: #25275a;
                color: #fff;

                th {
                    font-family: "Playfair Display", serif;
                    font-weight: 400;
                    
                    font-size: 1.1rem;
                }
            }
        }
    }
}
blockquote {
    padding: 20px;
    border-left: 10px solid #252859 !important;
    background-color: #f4f4f4;
    font-style: italic;
}
.o-col {
    &.o-colFH {
        .wp-block-image {
            height: 100%;
            display: block;

            img {
                height: 100%;
                display: block;
                object-fit: cover;
                aspect-ratio: auto;
            }
        }
    }
}
.o-iconBox {
    svg {
        width: 17px;

        @media (min-width: 781px) {
            width: 26px;        }
    }

    p {
        display: flex;
        align-items: center;
        justify-content: center;
    }
}
.o-listCol2 {
    @media (min-width: 1025px) {
        column-count: 2;
    }
}
.o-blurb {
    &.o-blurbIconTitleSubBrief {
        position: relative;
        counter-increment: counter;

        .wp-block-image {
            background-color: #fff;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid #7e8f87;
            box-shadow: var(--wp--preset--shadow--natural);
            -webkit-box-shadow: var(--wp--preset--shadow--natural);
            border-radius: 500%;
            -webkit-border-radius: 500%;

            img {
                width: 50px;
                display: flex;
                flex-shrink: 0;
                object-fit: contain;
                padding: 0.5rem;

                @media (min-width: 1025px) {
                    padding: 1rem;
                    width: 90px;
                }
            }

            @media (min-width: 1025px) {
                width: 90px;
                height: 90px;
            }
        }
        .o-contentColGroup {
            width: 100%;

            &:before {
                display: block;
                top: 15px;
                position: relative;
                color: #7e8f87;
                content: "Step "counter(counter);
                font-family: "Playfair Display", serif;
            }
        }
        .wp-block-heading {
            display: flex;
            flex-direction: row;
            align-items: center;
            
            @media (max-width: 1024px) {
                font-size: 20px !important;
            }
        }

        .o-heading--borderCenterRightLightGreen {
            & h1, & h2, & h3, & h4, & h, & h6 {
                &:after {
                    right: auto;
                    left: 0;
                    height: 1px;
                    width: 100%;

                    @media (min-width: 781px) {
                        left: 10px;
                        width: calc-size(fit-content, 100% / 2);
                    }
                }

                @media (max-width: 780px) {
                    flex-direction: column;
                    align-items: flex-start;
                }
            }
        }

        @media (max-width: 780px) {
            flex-direction: column;
            align-items: flex-start;
            gap: 0;
        }

        &:not(:last-child) {
            @media (max-width: 780px) {
                padding: 0 0 2rem !important;
            }
        }
    }
}
.o-SectionWColsOfILeftmageRightContent  {
    .wp-block-columns {
        @media (max-width: 1199px) {
            gap: 0 !important;
        }
    }

    &.o-SectionWColsOfILeftmageRightContent--inner {
        @media (max-width: 1199px) {
            padding-top: 20px !important;
            padding-bottom: 20px !important;
        }
    }
}
.o-sectionWIconTitleBriefIn2Cols {
    .wp-block-columns {
        .wp-block-heading {
            @media (max-width: 1024px) {
                font-size: 20px !important;
            }
        }
        &:not(:last-child) {
            @media (min-width: 1025px) {
                border-bottom: 1px solid #dbdbdb;
            }
        }
        &:not(:last-child) {
            @media (max-width: 780px) {
                padding-bottom: 2rem !important;
            }
        }

        .o-sectionWIconTitleBriefIn2Col {
            p {
                @media (min-width: 1025px) {
                    min-height: 80px;
                }
            }
        }
    }
    
    .wp-block-column {
        & > .wp-block-group {
            @media (max-width: 780px) {
                gap: 1rem !important;
                padding: 0 !important;
            }
        }
        &:not(:last-child) {
            @media (min-width: 1025px) {
                border-right: 1px solid #dbdbdb;
            }
        }
        .wp-block-image {
            max-width: 10%;

            @media (min-width: 1025px) {
                max-width: 15%;
            }
            @media (min-width: 1920px) {
                max-width: 20%;
            }
        }
        @media (max-width: 780px) {
            padding: 0 !important;
        }
    }
}
.o-sectionW2Cols, .o-sectionWIconTitleBrief, .o-fullSectionOneCol {
    @media (max-width: 1199px) {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }
}
.o-sectionW2Cols {
    h5 {
        @media (min-width: 1200px) {
            font-size: 24px !important;
        }
    }

    &.o-sectionW2Cols--inner {
        @media (max-width: 1024px) {
            padding-top: 0 !important;
        }
    }
}
.o-processLeftCol {
    
    @media (max-width: 1024px) {
        padding: 2rem 1rem !important;
    }
    
    @media (max-width: 781px) {
        padding: 1rem !important;
    }
}
.o-footer {
    .gform_validation_errors, .gform_validation_errors *, .gfield_required, .gfield_required *, .gfield_description , .gfield_description  * {
        color: #fff !important;
        border-color: #fff;
    }
    p {
        @media (max-width: 1024px) {
            padding: 0 !important;
        }
    }
    h2 {
        @media (max-width: 1024px) {
            font-size: 19px;
        }
    }
    hr {
        @media (max-width: 1024px) {
            margin: 0.5rem 0 !important;
        }
    }
    .o-footerBottom {
        .wp-block-image {
            @media (max-width: 1024px) {
                max-width: 150px;
            }
        }
        @media (max-width: 1024px) {
            padding-bottom: 0 !important;
        }
    }
}
.o-cta {
    &.o-cta--header {
        .wp-block-cover__inner-container {
            display: flex;
            align-items: center;
            justify-content: flex-end;

            .wp-block-heading {
                margin-right: 10px;

                @media (max-width: 780px) {
                    display: none;
                }
            }

            .o-bttn {
                a {
                    line-height: normal;

                    &:before {
                        font-family: 'FontAwesome';
                        color: #fff;
                        content: '\f095';
                        position: relative;
                        display: block;
                        top: 50%;
                        margin-right: 5px;
                    }
                }
            }
        }
    }
}

.o-headingMain {
    &.o-headingMain--desktop {
        @media (max-width: 782px) {
            display: none !important;
        }
    }
    &.o-headingMain--mobile {
        @media (min-width: 782px) {
            display: none !important;
        }
    }
}
.o-certifiedBox {
    &.o-certifiedBox--desktop {
        @media (max-width: 1199px) {
            gap: 1rem !important;
        }
        @media (max-width: 782px) {
            display: none !important;
        }
    }
    &.o-certifiedBox--mobile {
        @media (min-width: 782px) {
            display: none !important;
        }
        @media (max-width: 782px) {
            gap: 1rem !important;
        }
    }
}

/* --------------------------------------- *
|           R E S P O N S I V E             |
* ----------------------------------------*/

@media (min-width: 781px) {
    .w-100-lg {
        width: 100% !important;
    }
    .d-none-lg {
        display: none !important;
    }
    .d-flex-lg {
        display: flex !important;
    }
    .d-inline-flex-lg {
        display: inline-flex !important;
    }
    .justify-spcbetwn-lg {
        justify-content: space-between !important;
    }
    .justify-start-lg {
        justify-content: flex-start !important;
    }
    .justify-end-lg {
        justify-content: flex-end !important;
    }
    .justify-center-lg {
        justify-content: center !important;
    }
    .flex-column-lg {
        flex-direction: column !important;
    }
    .flex-row-lg {
        flex-direction: row !important;
    }
    .flex-column-reverse-lg {
        flex-direction: column-reverse !important;
    }
    .flex-row-reverse-lg {
        flex-direction: row-reverse !important;
    }
    .align-center-lg {
        align-items: center !important;
    }
    .align-content-center-lg {
        align-content: center !important;
    }
    .align-start-lg {
        align-items: flex-start !important;
    }
    .align-stretch-lg {
        align-items: stretch !important;
    }
    .align-stretch-lg {
        align-items: stretch !important;
    }
    .flex-wrap-lg {
        flex-wrap: wrap !important;
    }
    .order1-lg {
        order: 1 !important;
    }
    .order2-lg {
        order: 2 !important;
    }
    .order3-lg {
        order: 3 !important;
    }
}
@media (max-width: 1199px) {
    .w-100-xl {
        width: 100% !important;
    }
    .d-none-xl {
        display: none !important;
    }
    .d-flex-xl {
        display: flex !important;
    }
    .d-inline-flex-xl {
        display: inline-flex !important;
    }
    .justify-spcbetwn-xl {
        justify-content: space-between !important;
    }
    .justify-start-xl {
        justify-content: flex-start !important;
    }
    .justify-end-xl {
        justify-content: flex-end !important;
    }
    .justify-center-xl {
        justify-content: center !important;
    }
    .align-center-xl {
        align-items: center !important;
    }
    .align-content-center-xl {
        align-content: center !important;
    }
    .align-start-xl {
        align-items: flex-start !important;
    }
    .align-stretch-xl {
        align-items: stretch !important;
    }
    .align-baseline-xl {
        align-items: baseline !important;
    }
    .flex-wrap-xl {
        flex-wrap: wrap !important;
    }
    .flex-column-reverse-xl {
        flex-direction: column-reverse !important;
    }
    .flex-row-reverse-xl {
        flex-direction: row-reverse !important;
    }
    .flex-column-xl {
        flex-direction: column !important;
    }
    .flex-row-xl {
        flex-direction: row !important;
    }
    .order1-xl {
        order: 1 !important;
    }
    .order2-xl {
        order: 2 !important;
    }
    .order3-xl {
        order: 3 !important;
    }
}
@media (max-width: 1024px) {
    .w-100-md {
        width: 100% !important;
    }
    .d-none-md {
        display: none !important;
    }
    .d-flex-md {
        display: flex !important;
    }
    .d-inline-flex-md {
        display: inline-flex !important;
    }
    .justify-spcbetwn-md {
        justify-content: space-between !important;
    }
    .justify-start-md {
        justify-content: flex-start !important;
    }
    .justify-end-md {
        justify-content: flex-end !important;
    }
    .justify-center-md {
        justify-content: center !important;
    }
    .flex-column-md {
        flex-direction: column !important;
    }
    .flex-row-md {
        flex-direction: row !important;
    }
    .align-center-md {
        align-items: center !important;
    }
    .align-content-center-md {
        align-content: center !important;
    }
    .align-start-md {
        align-items: flex-start !important;
    }
    .align-stretch-md {
        align-items: stretch !important;
    }
    .align-baseline-md {
        align-items: baseline !important;
    }
    .flex-wrap-md {
        flex-wrap: wrap !important;
    }
    .flex-column-reverse-md {
        flex-direction: column-reverse !important;
    }
    .flex-row-reverse-md {
        flex-direction: row-reverse !important;
    }
    .order1-md {
        order: 1 !important;
    }
    .order2-md {
        order: 2 !important;
    }
    .order3-md {
        order: 3 !important;
    }
}
@media (max-width: 780px) {
    .w-100-sm {
        width: 100% !important;
    }
    .d-none-sm {
        display: none !important;
    }
    .d-flex-sm {
        display: flex !important;
    }
    .d-inline-flex-sm {
        display: inline-flex !important;
    }
    .justify-spcbetwn-sm {
        justify-content: space-between !important;
    }
    .justify-start-sm {
        justify-content: flex-start !important;
    }
    .justify-end-sm {
        justify-content: flex-end !important;
    }
    .justify-center-sm {
        justify-content: center !important;
    }
    .flex-column-sm {
        flex-direction: column !important;
    }
    .flex-column-reverse-sm {
        flex-direction: column-reverse !important;
    }
    .flex-row-sm {
        flex-direction: row !important;
    }
    .flex-row-reverse-sm {
        flex-direction: row-reverse !important;
    }
    .align-center-sm {
        align-items: center !important;
    }
    .align-content-center-sm {
        align-content: center !important;
    }
    .align-start-sm {
        align-items: flex-start !important;
    }
    .align-stretch-sm {
        align-items: stretch !important;
    }
    .align-stretch-sm {
        align-items: stretch !important;
    }
    .flex-wrap-sm {
        flex-wrap: wrap !important;
    }
    .order1-sm {
        order: 1 !important;
    }
    .order2-sm {
        order: 2 !important;
    }
    .order3-sm {
        order: 3 !important;
    }
}
@media (max-width: 640px) {
    .w-100-xs {
        width: 100% !important;
    }
    .d-none-xs {
        display: none !important;
    }
    .d-flex-xs {
        display: flex !important;
    }
    .d-inline-flex-xs {
        display: inline-flex !important;
    }
    .justify-spcbetwn-xs {
        justify-content: space-between !important;
    }
    .justify-start-xs {
        justify-content: flex-start !important;
    }
    .justify-end-xs {
        justify-content: flex-end !important;
    }
    .justify-center-xs {
        justify-content: center !important;
    }
    .flex-column-xs {
        flex-direction: column !important;
    }
    .flex-column-reverse-xs {
        flex-direction: column-reverse !important;
    }
    .flex-row-xs {
        flex-direction: row !important;
    }
    .flex-row-reverse-xs {
        flex-direction: row-reverse !important;
    }
    .align-center-xs {
        align-items: center !important;
    }
    .align-content-center-xs {
        align-content: center !important;
    }
    .align-start-xs {
        align-items: flex-start !important;
    }
    .align-stretch-xs {
        align-items: stretch !important;
    }
    .align-stretch-xs {
        align-items: stretch !important;
    }
    .flex-wrap-xs {
        flex-wrap: wrap !important;
    }
    .order1-xs {
        order: 1 !important;
    }
    .order2-xs {
        order: 2 !important;
    }
    .order3-xs {
        order: 3 !important;
    }
}