:root {
    --brand-blue: #1a4797;
    --brand-blue-hover: #163771;
    --brand-orange: #f04e23;
    --brand-gold: #faa819;
    --border-radius: 10px;
    --border-radius-large: 22px;
    --border-gray: rgba(119, 124, 126, 0.5);
    --bg-light-gray: #f1f2f2;
    --base-text-color: #666;
    --text-med: 18px;
    --text-large: 0px;
}

body,
html {
    padding-right: 0 !important;
    position: relative;
    height: 100%;
    color: var(--base-text-color);
}

a,
a:visited {
    outline: none;
}

body {
    line-height: 26px;
}

    body:before {
        position: fixed;
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0/0);
        top: 0;
        left: 0;
        z-index: 10;
        visibility: hidden;
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

    body.mobile-open:before {
        visibility: visible;
        background: rgb(0 0 0/50%);
    }

@media (min-width: 768px) {
    body:before {
        display: none;
    }
}

body a {
    -webkit-transition: color 0.2s ease;
    transition: color 0.2s ease;
    color: var(--brand-blue);
}

@media (hover: hover) {
    body a:hover {
        text-decoration: none;
        color: var(--brand-orange);
    }
}

.site-container {
    overflow-x: hidden;
}

sup {
    top: -1em;
    font-size: 0.5em;
}

b,
strong {
    font-weight: 600;
}

p strong {
    color: #000;
}

hr {
    margin: 0;
}

svg {
    max-height: 100%;
}

    svg:not(:root) {
        overflow: hidden;
    }

hr {
    border-color: var(--border-gray);
}

body {
    font-size: 16px;
    color: var(--base-gray);
    height: 100%;
}

.text-link,
a,
body {
    font-family: Montserrat, sans-serif;
}

.text-link,
a {
    color: var(--mid-blue);
}

@media (hover: hover) {
    .text-link:hover,
    a:hover {
        color: var(--mid-blue);
        cursor: pointer;
    }
}

ul li {
    line-height: 1.4em;
    margin-bottom: 0.5em;
}

dl,
ol,
ul {
    padding-left: 1.5em;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Oswald, sans-serif;
    color: var(--dark-blue);
    font-weight: 400;
}

.cta-section h2,
.h1,
h1 {
    margin-bottom: 1.2rem;
    font-size: 48px;
    line-height: 1.1em;
    color: var(--brand-blue);
}

.h2,
h2 {
    font-size: 36px;
    line-height: 1.2em;
    margin-bottom: 0.4em;
}

.h2,
.h3,
h2,
h3 {
    color: var(--brand-blue);
}

.h3,
h3 {
    font-size: 30px;
    line-height: 1.3;
    margin-bottom: 1.2rem;
}

.h4,
h4 {
    font-size: 26px;
}

.border-header {
    padding-bottom: 0.4em;
    border-bottom: 1px solid var(--border-gray);
    margin-bottom: 0.8em;
}

h1 a,
h1 a:hover,
h2 a,
h2 a:hover,
h3 a,
h3 a:hover,
h4 a,
h4 a:hover,
h5 a,
h5 a:hover,
h6 a,
h6 a:hover {
    text-decoration: none;
}

h6 {
    font-weight: 600;
    font-size: 18px;
    font-family: Montserrat, sans-serif;
}

    h6,
    h6 a,
    h6 a:hover {
        color: #000;
    }

.text-large {
    font-size: 24px;
    line-height: 1.3em;
}

.icon-header {
    position: relative;
}

    .icon-header img {
        position: static;
        display: block;
        margin-bottom: 0.25em;
        width: 40px;
        height: auto;
    }

@media (min-width: 768px) {
    .icon-header img {
        position: absolute;
        left: -50px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-bottom: 0;
    }
}

.icon-header.icon-header-large img {
    width: 75px;
    left: -85px;
    top: 22px;
}

.icon-header.icon-header-med img {
    width: 60px;
    left: -70px;
    top: 22px;
}

@media (min-width: 768px) {
    .icon-header.align-center img {
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

.text-14,
.text-16 {
    font-size: 14px;
}

.text-med,
.text-med li {
    font-size: var(--text-med);
}

.text-18 {
    font-size: 18px;
}

@media (max-width: 767px) {
    .h1,
    h1 {
        font-size: 38px;
    }

    .h2,
    h2 {
        font-size: 30px;
    }

    .h3,
    h3 {
        font-size: 26px;
    }

    .h4,
    h4 {
        font-size: 18px;
    }

    .h5,
    .h6,
    h5,
    h6 {
        font-size: 16px;
    }
}

.text-oswald {
    font-family: Oswald, sans-serif;
}

.text-dark-blue,
.text-dark-blue li {
    color: var(--dark-blue);
}

.text-light-blue {
    color: var(--mid-blue);
}

.text-light-gray {
    color: var(--light-text-gray);
}

.text-dark-green {
    color: var(--dark-green);
}

.flex-1 {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

@media (min-width: 768px) {
    .layout-border > [class^="col-"]:first-child {
        padding-right: 1.5em;
        border-right: 1px solid var(--border-gray);
    }

    .layout-border > [class^="col-"]:last-child {
        padding-left: 1.5em;
    }
}

.inline-child > * {
    display: inline;
}

.absolute {
    position: absolute;
    top: 0;
    left: 0;
}

.container {
    width: 100%;
    max-width: 1110px;
}

.container,
.container-wide {
    padding-left: 25px;
    padding-right: 25px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.pt-6,
.py-6 {
    padding-top: 4rem !important;
}

.pb-6,
.py-6 {
    padding-bottom: 4rem !important;
}

.bg-blue {
    background-color: var(--brand-blue);
}

.bg-white {
    background-color: #fff;
}

.bg-black {
    background-color: #000;
}

.bg-light-gray {
    background: var(--bg-light-gray);
}

.z-1 {
    z-index: 1;
}

.z-1,
.z-3 {
    position: relative;
}

.z-3 {
    z-index: 3;
}

.text-white {
    color: #fff;
}

.text-black {
    color: #000;
}

.text-green {
    color: var(--green);
}

.text-orange {
    color: var(--orange);
}

.border-gray {
    border: 1.5px solid var(--border-gray);
}

.list-unstyled-header {
    color: var(--dark-blue);
    font-size: 22px;
    margin-bottom: 0.25em;
    line-height: 28px;
}

.push-top {
    padding-top: 8.5em !important;
}

.push-top-small {
    padding-top: 71px !important;
}

@media (min-width: 768px) {
    .push-top-small {
        padding-top: 78px !important;
    }
}

.cover-image {
    background-position: 50%;
    background-repeat: no-repeat;
}

.object-fit {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.image-decoration {
    position: relative;
}

    .image-decoration.border:before {
        content: "";
        display: block;
        height: 25px;
        width: 60%;
        background: rgba(250, 168, 25, 0.8);
        position: absolute;
        bottom: 0;
        left: 0;
    }

    .image-decoration.right:before {
        left: auto;
        right: 0;
    }

.banner .image-decoration:before {
    width: 50%;
}

@media (min-width: 400px) {
    .banner .image-decoration:before {
        width: 30%;
    }
}

@media (max-width: 767px) {
    .banner .image-decoration.border:before {
        top: 84px;
        bottom: auto;
    }
}

.image-decoration.border.yellow:before {
    background: rgba(250, 168, 25, 0.8);
}

.image-decoration.border.blue:before {
    background: rgba(22, 160, 219, 0.8);
}

.image-decoration.border.green:before {
    background: rgba(118, 185, 18, 0.8);
}

.js-toggle:hover {
    cursor: pointer;
}

.js-toggle-parent.is-active > * > .js-toggle-target,
.js-toggle-parent.is-active > .js-toggle-target {
    display: block;
}

.js-toggle-target {
    display: none;
}

.btn {
    padding: 0.5em 1.5em;
    color: #fff;
    border-radius: 0;
    border-width: 1px;
}

    .btn:hover {
        cursor: pointer;
    }

    .btn.hollow {
        background: #fff;
        border: 1px solid var(--border-gray);
        color: var(--brand-orange);
    }

        .btn.hollow:hover {
            background: var(--brand-orange);
            color: #fff;
            border-color: var(--brand-orange);
        }

.btn-blue,
.cta-section.gold-cta-color-section .btn {
    background: var(--brand-blue);
    border-color: #fff !important;
    color: #fff !important;
}

    .btn-blue.borderless {
        border-color: var(--brand-blue) !important;
    }

    .btn-blue:hover,
    .cta-section.gold-cta-color-section .btn:hover {
        background: var(--brand-orange);
        border-color: var(--brand-orange) !important;
        color: #fff !important;
    }

        .btn-blue:hover i,
        .cta-section.gold-cta-color-section .btn:hover i {
            color: var(--brand-blue) !important;
        }

.btn-orange,
.cta-section.blue-cta-color-section .btn {
    background: var(--brand-orange);
    border-color: #fff !important;
    color: #fff !important;
}

    .btn-orange:hover,
    .cta-section.blue-cta-color-section .btn:hover {
        background: var(--brand-blue);
        border-color: var(--brand-blue) !important;
        color: #fff !important;
    }

.btn-social i {
    font-size: 26px;
    font-weight: 400;
    padding: 0 0.5em;
    line-height: 0;
}

.social-btn-group .btn-social {
    margin-bottom: 1em;
}

.social-btn-group {
    max-width: 450px;
    margin-bottom: 2em;
}

@media (min-width: 768px) {
    .social-btn-group {
        float: right;
    }
}

.btn-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    border-radius: 3px;
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    margin: 0.4em 0;
    padding: 0.8em;
}

    .btn-social:hover {
        color: #fff;
    }

.btn-facebook {
    background-color: var(--facebook-blue);
}

    .btn-facebook:hover {
        background-color: var(--facebook-blue-hover);
    }

.btn-google {
    background-color: var(--google-blue);
}

    .btn-google:hover {
        background-color: var(--google-blue-hover);
    }

.btn-apple {
    background-color: #000;
}

    .btn-apple i {
        font-size: 50px;
        padding: 0 10px;
    }

.has-light-divider {
    border-bottom: 1px solid #ccc;
}

.cover-image {
    background-size: cover;
    background-position: top;
    position: relative;
}

.chevron-link {
    font-weight: 600;
}

    .chevron-link-back:before,
    .chevron-link-down:after,
    .chevron-link:after {
        display: block;
        content: "\f054";
        font-family: "Font Awesome 5 Pro";
        display: inline;
        padding-left: 0.5em;
        position: relative;
        right: 0;
        font-size: 0.75em;
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

    .chevron-link:hover:after {
        right: -3px;
    }

.table-striped tbody tr:nth-of-type(2n) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fff;
}

@media (max-width: 420px) {
    .table-responsive {
        font-size: 10px !important;
    }

        .table-responsive img {
            width: 50%;
        }
}

@media (max-width: 767px) {
    .table-responsive {
        font-size: 12px;
    }
}

label {
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 1rem;
}

    .form-group hr {
        margin: 2em 0;
    }

input[type="email"],
input[type="password"],
input[type="phone"],
input[type="text"],
select.form-control,
textarea.form-control {
    height: 45px;
    border-radius: 0;
    border: 1px solid #ddd;
}

    .get-started-main input[type="email"],
    .get-started-main input[type="text"],
    .get-started-main select.form-control,
    .get-started-main textarea.form-control,
    input[type="email"].narrow .get-started-main input[type="phone"],
    input[type="phone"].narrow,
    input[type="text"].narrow,
    select.form-control.narrow,
    textarea.form-control.narrow {
        max-width: 500px;
    }

.input-group-append .btn {
    border: 2px solid var(--green);
}

@media (min-width: 768px) {
    .input-group-append {
        position: relative;
    }

        .input-group-append .btn {
            position: absolute;
            left: 15px;
            border-radius: var(--border-radius) !important;
        }
}

select,
select.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url(data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%22-3735%201748%2013%207%22%3E%0A%20%20%3Cdefs%3E%0A%20%20%20%20%3Cstyle%3E%0A%20%20%20%20%20%20.cls-1%20%7B%0A%20%20%20%20%20%20%20%20fill%3A%20%23777C7E%3B%0A%20%20%20%20%20%20%20%20stroke%3A%20%23777C7E%3B%0A%20%20%20%20%20%20%7D%0A%20%20%20%20%3C/style%3E%0A%20%20%3C/defs%3E%0A%20%20%3Cpath%20id%3D%22Path_58%22%20data-name%3D%22Path%2058%22%20class%3D%22cls-1%22%20d%3D%22M12%2C.3a.283.283%2C0%2C0%2C0-.3-.3.272.272%2C0%2C0%2C0-.21.09h0L6%2C5.28.51.09h0A.272.272%2C0%2C0%2C0%2C.3%2C0%2C.283.283%2C0%2C0%2C0%2C0%2C.3.272.272%2C0%2C0%2C0%2C.09.51h0l5.7%2C5.4h0a.29.29%2C0%2C0%2C0%2C.42%2C0h0l5.7-5.4h0A.272.272%2C0%2C0%2C0%2C12%2C.3Z%22%20transform%3D%22translate%28-3734.5%201748.5%29%22/%3E%0A%3C/svg%3E%0A) !important;
    background-size: 10px;
    background-position: calc(100% - 0.7em) 50%;
    background-repeat: no-repeat;
    border-radius: 0 !important;
    font-weight: 600;
    color: var(--brand-blue);
    height: 45px;
    padding-left: 1em;
    padding-right: 1.5em;
    border: 1px solid #ddd;
}

.form-control.check-toggle {
    margin-top: 0.2em;
    margin-bottom: 1em;
    display: none;
}

.has-search {
    position: relative;
}

    .has-search input {
        padding-right: 2em;
    }

    .has-search:before {
        content: "\f002";
        font-family: "Font Awesome 5 Pro";
        display: block;
        color: #777c7e;
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        right: 1em;
    }

.custom-control {
    margin-bottom: 5px;
    padding-left: 1.5rem;
}

.custom-control-label {
    padding-left: 0.2em;
    padding-top: 0.1em;
}

    .custom-control-label:before {
        border: 1px solid #dee2e6;
        background-color: #fff;
    }

.custom-control .custom-control-label:after,
.custom-control .custom-control-label:before {
    border-radius: 0;
    border: 2px solid #ddd;
    background-color: #fff;
    width: 20px;
    height: 20px;
}

.custom-control.custom-radio .custom-control-label:after,
.custom-control.custom-radio .custom-control-label:before {
    border-radius: 50%;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%2388BD48' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E");
    border-color: #88bd48;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label:after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-2 -2 4 4'%3E%3Ccircle r='2' fill='%2388BD48'/%3E%3C/svg%3E");
    border-color: #88bd48;
}

.checkbox-group {
    padding: 0 0 1.5em;
}

.checkbox-image-group {
    margin-right: -25px;
    margin-bottom: 1em;
}

    .checkbox-image-group img {
        margin-left: -25px;
        display: block;
        width: 100%;
        padding-top: 0.5em;
    }

@media (min-width: 768px) {
    .checkbox-image-group {
        margin-right: -25px;
    }

        .checkbox-image-group img {
            margin-left: -25px;
        }
}

.checkbox-image-group:hover {
    cursor: pointer;
}

input[type="checkbox"]:checked ~ .check-toggle {
    display: block;
}

textarea.form-control {
    min-height: 90px;
}

.required-label {
    color: var(--primary-red);
}

.control-label.required:after {
    content: "*";
    color: red;
}

.submit {
    margin-top: 1.5em !important;
}

.field-validation-error {
    font-size: 0.9em;
    padding-top: 0.2em;
    color: red;
}

input[type="file"].form-control {
    display: none;
    display: block;
    border: 1px dashed #d8d5c8;
    background: #f6f5f0;
    padding: 1em;
    height: auto;
    border-radius: 0;
}

.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
    border-color: #ddd;
}

.cta-section {
    position: relative;
}

    .cta-section h2 {
        color: #fff;
    }

.cta-container {
    width: 100%;
    max-width: 1110px;
    padding-left: 25px;
    padding-right: 25px;
    margin-right: auto;
    margin-left: auto;
}

.cta-section.gold-cta-color-section:before {
    background: var(--brand-gold);
}

.subscribe-cta .form-group {
    width: 90%;
}

.subscribe-cta .form-control {
    border: none;
}

.subscribe-cta .btn,
.subscribe-cta .form-control {
    width: 100%;
}

@media (min-width: 600px) {
    .subscribe-cta .form-control {
        width: 70%;
    }

    .subscribe-cta .btn {
        width: 30%;
    }
}

.cta-section .btn-inline {
    display: inline;
    vertical-align: bottom;
    line-height: 2em;
    margin-left: 0.5em;
}

section.has-arrow-decorations .container {
    position: relative;
    z-index: 2;
}

.banner .container,
.cta-section .container {
    position: static;
}

.cta-section .arrow-decoration {
    opacity: 0.6;
    -webkit-transform: translate(110px, -10px);
    transform: translate(110px, -10px);
    width: 100px;
    display: block;
    right: 20px;
}

@media (max-width: 767px) {
    .cta-section .arrow-decoration {
        width: 80px;
        -webkit-transform: translate(26px, -16px);
        transform: translate(26px, -16px);
    }
}

.testimonial-cta-section h2 {
    font-weight: 200;
    line-height: 1.2em;
    vertical-align: bottom;
}

.singleLine-cta-section * {
    font-weight: 200;
}

.singleLine-cta-section h2 {
    line-height: 1.3em;
}

.singleLine-cta-section .btn {
    width: 45px;
    height: 45px;
    display: inline-block;
    position: relative;
    bottom: 5px;
    padding: 0;
}

    .singleLine-cta-section .btn i {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        font-weight: 700;
    }

.pardot form.form {
    color: #666;
    font: 100%/120% Tahoma, Arial, Helvetica, Verdana, sans-serif;
    font-size: 13px;
    margin: 0.5em 0 1em;
    padding: 0.5em;
}

* html .pardot form.form {
    padding-top: 0.1em;
}

    .pardot form.form span.error {
        clear: left;
        display: block;
        font-weight: 700;
        margin-top: 2px;
        padding-left: 166px;
    }

    .pardot form.form span.value {
        display: block;
        margin-left: 153px;
    }

    .pardot form.form .value span {
        display: block;
    }

    .pardot form.form .no-label .description,
    .pardot form.form .no-label .value {
        margin-left: 0;
    }

    .pardot form.form span.unsubscribe-value {
        display: block;
    }

    .pardot form.form sup {
        cursor: pointer;
        font-size: 1em;
        font-weight: 400;
        text-decoration: underline;
    }

    .pardot form.form label.required,
    .pardot form.form p.required,
    .pardot form.form span.required {
        font-weight: 700;
    }

        .pardot form.form p.required label,
        .pardot form.form span.required label {
            background: url(../required.html) no-repeat 100% 0;
        }

    .pardot form.form p span {
        font-weight: 400;
    }

        .pardot form.form p span.description {
            clear: both;
            display: block;
            margin-left: 153px;
        }

    .pardot form.form p.email-pref span.description {
        display: block;
        margin-left: 5px;
        font-size: 0.9em;
    }

    .pardot form.form p {
        clear: left;
        line-height: 1.4em;
        margin: 3px 5px;
        padding: 3px 2px;
    }

    * html .pardot form.form p {
        margin-top: 0;
    }

    .pardot form.form ol,
    .pardot form.form ul {
        line-height: 1.5em;
        margin-bottom: 1em;
    }

    .pardot form.form li {
        line-height: 1.5em;
    }

    .pardot form.form .hidden,
    .pardot form.form p.hidden {
        position: absolute;
        width: 190px;
        left: -999px;
    }

    .pardot form.form p label.inline {
        background: 0 0;
        display: inline;
        float: none;
        font-weight: 400;
        line-height: 2em;
        margin-right: 10px;
        padding: 0;
        text-align: left;
        vertical-align: baseline;
    }

    .pardot form.form p label {
        display: block;
        float: left;
        margin: 0;
        padding: 3px 13px 0 0;
        text-align: right;
        width: 140px;
    }

    * html .pardot form.form p label {
        margin-right: -0.2em;
    }

    .pardot form.form p.email-pref,
    .pardot form.form p.no-label {
        margin: 0.2em 0.5em 0.6em 160px;
        padding: 0;
    }

    .pardot form.form p.submit {
        margin: 1em 0.5em 0.2em 160px;
        padding: 0;
    }

    .pardot form.form p.inline {
        margin: 0 0 5px 160px;
        padding: 0 0 3px;
    }

    .pardot form.form p.full-width {
        clear: none;
        margin: 0;
        padding: 0;
    }

        .pardot form.form p.full-width a,
        .pardot form.form p span.inline a {
            display: inline;
            line-height: 16px;
            margin: 0;
            padding: 0;
        }

    .pardot form.form p.submit input {
        margin: 0 10px 0 0;
        padding: 2px 12px;
    }

    .pardot form.form select {
        font-weight: 400;
    }

        .pardot form.form select option {
            margin: 0;
            padding: 0 0.3em;
        }

    .pardot form.form textarea.standard {
        height: 70px;
        overflow: auto;
        padding: 2px;
        width: 200px;
        float: none;
    }

    .pardot form.form input {
        font-weight: 400;
        padding: 2px;
    }

    * html .pardot form.form input {
        padding-right: 0;
    }

        .pardot form.form input.text {
            width: 200px;
        }

    .pardot form.form div.error {
        padding: 0 0 0.5em 170px;
        color: #8b0000;
    }

    .pardot form.form div.message {
        color: green;
    }

    .pardot form.form input.date {
        background: url(../calendar.html) no-repeat 0;
        padding-left: 20px;
    }

    .pardot form.form div.error,
    .pardot form.form p.error,
    .pardot form.form p.error label,
    .pardot form.form span.error,
    .red-color {
        color: #8b0000;
    }

    .pardot form.form p.errors,
    .red-background {
        background: #8b0000;
        color: #fff;
        padding-left: 0.5em;
        margin-bottom: 1em;
    }

.dependentFieldSlave,
.pardot .dependentField {
    display: none;
}

#header {
    position: fixed;
    background: rgb(255 255 255/85%);
    z-index: 100;
    top: 0;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: 100%;
    color: #fff;
}

body.mobile-open #header {
    background: #fff;
}

@media (min-width: 768px) {
    #header {
        position: fixed;
    }
}

@media (hover: hover) {
    #header a:hover {
        color: var(--brand-orange);
    }
}

#header ul {
    list-style: none;
    padding-left: 0;
}

#header .navbar-brand {
    max-width: 80px;
}

@media (min-width: 768px) {
    #header .navbar-brand {
        max-width: 85px;
        width: 100%;
        min-width: 50px;
    }
}

@media (min-width: 768px) and (max-width: 900px) {
    #header .navbar-nav li {
        font-size: 0.85em;
    }
}

@media (max-width: 767px) {
    #header .navbar-nav li p {
        white-space: normal;
    }
}

#header .navbar-brand img,
#header .navbar-nav.nav-menu {
    width: 100%;
}

#header.has-mega-nav .navbar-nav ul ul {
    padding-left: 1.4em;
}

    #header.has-mega-nav .navbar-nav ul ul li {
        position: relative;
    }

        #header.has-mega-nav .navbar-nav ul ul li:before {
            content: "";
            display: block;
            left: -20px;
            height: 2px;
            background: #afafaf;
            position: absolute;
            width: 10px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
        }

@media (max-width: 767px) {
    .home.mobile-open {
        overflow: hidden;
    }

    #header {
        background: rgb(255 255 255/85%);
        -webkit-transition: all 0.3s ease;
        transition: all 0.3s ease;
    }

        #header.is-active {
            height: 100%;
            background: #fff;
        }

    .header.is-active > .container {
        height: 100%;
        overflow: auto;
    }
}

.header-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

#header .dropdown-toggle:after,
.nav-menu [data-toggle="collapse"][aria-expanded="false"]:after {
    font-size: 0.85em;
    padding-left: 0.2em;
    padding-right: 1em;
    font-family: "Font Awesome 5 Pro";
    border: none;
    content: "\f078";
    vertical-align: top;
}

.nav-menu [data-toggle="collapse"][aria-expanded="true"]:after {
    font-size: 0.85em;
    padding-left: 0.2em;
    padding-right: 1em;
    font-family: "Font Awesome 5 Pro";
    border: none;
    content: "\f077";
    vertical-align: top;
}

@media (hover: hover) {
    #header .nav-item:hover > a,
    #header .nav-item:hover > a:after {
        color: var(--brand-orange) !important;
    }

    .nav-item.dropdown:hover > a {
        color: var(--base-text-color) !important;
    }
}

.navbar-nav > .nav-item .nav-link-top-lvl-text-wrap {
    padding-bottom: 0.2em;
    border-bottom: 3px solid transparent;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

@media (hover: hover) {
    .navbar-nav > .nav-item:hover .nav-link-top-lvl-text-wrap {
        padding-bottom: 0.2em;
        border-bottom: 3px solid var(--brand-orange);
    }
}

@media (max-width: 767px) {
    #header .nav-item.dropdown.show .nav-link-top-lvl-text-wrap {
        padding-bottom: 0.2em;
        border-bottom: 3px solid var(--brand-orange);
    }

    #header .nav-item.dropdown.show > a,
    #header .nav-item.dropdown.show > a:after {
        color: var(--brand-orange) !important;
    }
}

#header .nav-item.dropdown.show > a:after {
    content: "\f077";
}

@media (min-width: 768px) {
    .nav-link-top-lvl-text-wrap {
        display: table-caption;
    }

    #header .nav-item.dropdown.show > a:after {
        content: "\f078";
    }
}

#header .nav-link.dropdown-toggle {
    white-space: normal;
}

.header-topbar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
}

#header .navbar-nav .nav-item {
    margin-bottom: 0 !important;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.25em 0;
}

#header .dropdown-menu {
    border: none;
    border-bottom: 1px solid #afafaf;
    margin-bottom: 0.5em;
    background: none;
    border-radius: 0;
}

.nav-item.dropdown:last-of-type .dropdown-menu {
    border: none !important;
}

@media (min-width: 768px) {
    #header .dropdown-menu {
        margin-bottom: 0;
        border: 1px solid #dddfdf;
        -webkit-box-shadow: 1px 1px 4px 0 rgb(0 0 0/20%);
        box-shadow: 1px 1px 4px 0 rgb(0 0 0/20%);
        background: #fff;
        border-radius: 5px;
    }

    #header .nav-menu {
        padding-left: 1.5em;
    }

    .has-mega-nav .dropdown-menu {
        min-width: 200px;
    }

    .header-nav .nav-item.dropdown:hover .dropdown-toggle + .dropdown-menu {
        display: block;
    }

    .header-nav .navbar-nav .dropdown-menu {
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-top: 0;
        max-height: 90vh;
        overflow-y: auto;
    }

    #header .navbar-nav > .nav-item {
        width: 30%;
    }

    #header .nav-item {
        max-width: 150px;
    }

    #header .dropdown.show:not(:hover) .dropdown-menu {
        display: none;
    }

    #header .dropdown-toggle {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    #header .dropdown-arrow {
        background: url(../svg/menu-triangle.svg) 50% no-repeat;
        background-size: 30px;
        background-color: rgba(204, 54, 54, 0);
        width: 30px;
        height: 30px;
        position: absolute;
        bottom: -9px;
        z-index: 99999;
        top: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        display: none;
    }

    #header .nav-item.dropdown:hover .dropdown-arrow {
        display: block;
    }

    #header .dropdown-toggle:after {
        padding: 0 0 0 0.25em;
    }
}

.dropdown-item {
    color: var(--base-text-color);
}

.dropdown-item__title {
    color: var(--brand-blue);
}

@media (max-width: 767px) {
    .dropdown-item__title + .border-bottom,
    .dropdown-item__title > * {
        padding-bottom: 0 !important;
        border-bottom: none !important;
    }
}

.dropdown-item:focus,
.dropdown-item:hover {
    background: none;
    color: var(--base-text-color);
}

.dropdown.js-toggle-parent.is-active i {
    -webkit-transform: rotate(-180deg);
    transform: rotate(-180deg);
}

#header .navbar {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.header-nav-item__label {
    margin-bottom: 1em;
    font-size: 15px;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .header-nav-item__col {
        border-bottom: none;
    }
}

.header-nav-item__col:last-child {
    border: none;
    margin-bottom: 0;
}

.header-nav-item__col li a {
    display: block;
    font-size: 15px;
    margin-bottom: 1em;
}

.header-search-form {
    right: 0;
    z-index: 2210;
}

    .header-search-form.show {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .header-search-form #search {
        border: 2px solid var(--brand-blue) !important;
        padding-right: 35px;
    }

    .header-search-form .btn {
        background: var(--brand-blue) !important;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        padding: 0.5em 1em !important;
        color: #fff;
    }

.header-search-btn i {
    font-size: 1.2em;
}

.header-search-btn:hover {
    color: var(--brand-blue);
}

.header-search-form .btn:hover {
    background: var(--brand-blue-hover) !important;
}

.header-search-action {
    position: absolute;
    border: none;
    background: none;
    right: 48px;
    top: 50%;
    line-height: 0;
    color: #040404;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 100%;
    width: 40px;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    font-size: 1.2em;
}

    .header-search-action:hover {
        color: var(--brand-orange);
        cursor: pointer;
    }

.navbar-toggler {
    padding: 0;
}

    .navbar-toggler .fa-bars {
        -webkit-transition: all 0.2s ease;
        transition: all 0.2s ease;
    }

#header.is-active .navbar-toggler .fa-bars:before {
    content: "\f00d";
}

.navbar-toggler-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 1em;
    color: var(--base-text-color);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

#header.is-active .navbar-toggler-icon {
    background: var(--brand-blue);
    color: #fff;
}

.navbar-toggler:focus {
    outline: none;
}

.navbar-toggler.collapsed .navbar-toggler-icon {
    color: var(--base-text-color);
}

.nav-link > span.item-narrow {
    width: 82px;
}

.menu-border-special {
    display: block;
    background: #ccc;
    height: 1px;
    width: 100%;
    left: 0;
    margin-left: 16px;
    margin-right: 20px;
    position: relative;
    margin-bottom: 1em;
}

    .menu-border-special:last-child {
        display: none;
    }

#footer h3,
#footer h4,
#footer p {
    color: #000;
}

#footer li {
    line-height: 1.8em;
}

#footer strong {
    font-weight: 600;
}

.footer-contact p,
.footer-quicklinks a {
    font-size: 14px;
}

.social-list ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: -0.25em;
}

.social-list {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

@media (min-width: 768px) {
    .social-list {
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
    }
}

.social-list li a {
    font-size: 2em;
    padding: 0.25em;
}

#footer .footer-bottom {
    font-size: 14px;
}

    #footer .footer-bottom p {
        color: var(--base-text-color);
    }

.breadcrumb {
    background: none;
    margin-bottom: 0;
    font-size: 14px;
    padding-left: 0;
    padding-right: 0;
    display: inline-block;
}

    .breadcrumb .breadcrumb-item {
        line-height: 1.7em;
        display: inline-block;
    }

.breadcrumb-item + .breadcrumb-item:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f054";
    font-size: 0.8em;
}

.breadcrumb-item + .breadcrumb-item,
.breadcrumb-item:first-child {
    padding-right: 0.5rem;
    padding-left: 0;
}

    .breadcrumb-item + .breadcrumb-item:before {
        display: inline-block;
        display: none;
    }

    .breadcrumb-item + .breadcrumb-item:after,
    .breadcrumb-item:first-child:after {
        font-family: "Font Awesome 5 Pro";
        content: "\f054";
        font-size: 0.8em;
        display: inline-block;
        padding-left: 0.5rem;
        color: #6c757d;
    }

    .breadcrumb-item + .breadcrumb-item:last-child:after {
        display: none;
    }

.page-link {
    color: var(--brand-blue);
    border-radius: 0 !important;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

    .page-link i {
        color: var(--brand-orange);
    }

    .page-link,
    .page-link:hover {
        border-color: transparent;
    }

        .page-link:hover {
            background: none;
        }

        .page-link:not([aria-label]):hover {
            background: var(--brand-orange);
            color: #fff;
        }

.page-item {
    margin-left: 0.1em;
    margin-right: 0.1em;
}

@media (min-width: 480px) {
    .page-item {
        margin-left: 0.5em;
        margin-right: 0.5em;
    }
}

.page-item .page-link {
    padding: 0.6em 1em;
}

.page-item.active {
    font-weight: 700;
}

    .page-item.active .page-link {
        color: #000;
        background: none;
        border: 1px solid #ccc;
    }

.hero {
    margin-top: 71px;
    padding: 180px 0;
    text-align: center;
    color: #fff;
}

@media (min-width: 576px) {
    .hero {
        padding: 180px 0;
    }
}

.card {
    -webkit-box-shadow: 1px 1px 3px 0 rgb(0 0 0/15%);
    box-shadow: 1px 1px 3px 0 rgb(0 0 0/15%);
}

.card-img-top {
    margin-bottom: 0.5em;
}

.card-grid > [class*="col-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.card-grid .card {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 0%;
    flex: 1 0 0%;
    margin-bottom: 2em;
}

.card-title {
    font-weight: 700;
    font-size: 18px;
}

.banner {
    min-height: 300px;
    height: 30vw;
    max-height: 550px;
}

    .banner.is-short {
        min-height: 0;
        height: 105px;
    }

@media (min-width: 768px) {
    .banner.is-short {
        min-height: 0;
        height: 125px;
    }
}

.banner h1 {
    position: absolute;
    padding-left: 0;
    margin-bottom: 0;
    top: 50%;
    max-width: 500px;
}

@media (min-width: 768px) and (max-width: 1350px) {
    .banner h1 {
        padding-left: 2.5em;
    }
}

.banner:not(.is-short):before {
    content: "";
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(232 232 232/1)), color-stop(75%, rgb(255 255 255/0)));
    background: linear-gradient(90deg, rgb(232 232 232/1), rgb(255 255 255/0) 75%);
    z-index: 1;
}

@media (min-width: 768px) {
    .banner:not(.is-short):before {
        display: block;
    }
}

.banner .angle-bracket {
    position: absolute;
    bottom: 1px;
    right: 20px;
    width: 90px;
}

    .banner .angle-bracket img {
        width: 100%;
    }

@media (min-width: 768px) {
    .banner .angle-bracket {
        width: 100px;
        bottom: 20px;
        left: 20px;
    }
}

.banner-gray-text-section {
    background: rgb(232 232 232/0.75);
    padding: 1em 0;
    position: relative;
}

    .banner-gray-text-section h1 {
        margin-bottom: 0.35em;
    }

[class*="media-content-"] .container {
    position: relative;
}

@media (min-width: 1360px) {
    .media-content-right.media-extended .media-content__media .media-content__container {
        margin-right: -20% !important;
    }

    .media-content-left.media-extended .media-content__media .media-content__container {
        margin-left: -20% !important;
    }
}

.media-content-right.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.media-content__content ul {
    font-weight: 600;
}

.has-arrow-decorations {
    position: relative;
}

.arrow-decoration {
    position: absolute;
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
    .arrow-decoration {
        display: block;
    }
}

.arrow-decoration__1 {
    right: 280px;
    top: -50px;
    width: 220px;
}

.arrow-decoration__2 {
    top: 50px;
    right: auto;
    left: 570px;
    width: 105px;
}

.arrow-decoration__3 {
    top: -130px;
    right: 160px;
    width: 105px;
}

.arrow-decoration__4 {
    top: -20px;
    right: 320px;
    width: 220px;
}

.cta-section * {
    color: #fff;
}

.slick-arrow {
    z-index: 1;
    height: auto;
}

.slick-next,
.slick-prev {
    -webkit-transition: 1s;
    transition: 1s;
}

@media (max-width: 1199px) {
    .slick-next {
        right: 0;
    }

    .slick-prev {
        left: 0;
    }
}

.slick-dots {
    bottom: 20px;
}

    .slick-dots li button {
        padding: 0;
        opacity: 1;
    }

.slick-next:before,
.slick-prev:before {
    content: "\f054";
    font-family: "Font Awesome 5 Pro";
    font-size: 30px;
    font-weight: 700;
    color: var(--brand-orange);
    opacity: 1;
}

.slick-prev:before {
    content: "\f053";
}

.slick-dots li {
    padding: 5px;
    width: auto;
    height: auto;
}

    .slick-dots li button {
        border-radius: 0;
        content: "";
        width: 10px;
        height: 10px;
        background: var(--brand-blue);
        border: 1px solid hsla(0, 0%, 100%, 0.8);
        margin: 0;
    }

        .slick-dots li button:before {
            display: none;
        }

    .slick-dots li.slick-active button {
        background: var(--brand-orange);
    }

.carousel-hero-slide__content {
    padding: 5em 0;
    position: relative;
    z-index: 9;
}

@media (max-width: 767px) {
    .carousel-hero-slide__content {
        padding-top: 1em !important;
    }
}

.carousel-hero-slide__content p {
    color: #000;
}

.carousel-hero-slide__content_below-arrow .btn {
    margin-top: 0.5em;
}

.carousel-hero-slide:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(232 232 232/1)), color-stop(75%, rgb(255 255 255/0)));
    background: linear-gradient(90deg, rgb(232 232 232/1), rgb(255 255 255/0) 75%);
    z-index: 1;
}

@media (max-width: 767px) {
    .carousel-hero-slide:before {
        content: "";
        display: none;
    }
}

.carousel-hero-slide {
    min-height: 600px;
    position: relative;
    height: 100%;
    min-height: 635px;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 100px;
}

@media (max-width: 767px) {
    .carousel-hero-slide {
        padding-top: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

.carousel-hero .slick-slide .carousel-hero-slide__content {
    opacity: 0;
    -webkit-transform: translate(15px, 50px);
    transform: translate(15px, 50px);
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition-delay: 0.7s;
    transition-delay: 0.7s;
}

@media (max-width: 767px) {
    .carousel-hero .slick-slide .carousel-hero-slide__content {
        opacity: 0;
        -webkit-transform: none !important;
        transform: none !important;
    }

        .banner-gray-text-section:after,
        .carousel-hero .slick-slide .carousel-hero-slide__content:after {
            content: "";
            display: block;
            position: absolute;
            top: -25px;
            left: 0;
            width: 100%;
            height: 25px;
            background: rgb(232 232 232/0.75);
            z-index: 1;
        }

        .carousel-hero .slick-slide .carousel-hero-slide__content,
        .carousel-hero .slick-slide .carousel-hero-slide__content .btn {
            font-weight: 600;
        }

            .carousel-hero .slick-slide .carousel-hero-slide__content h1 {
                font-weight: 500;
            }

    .slick-dots {
        position: relative;
        margin-bottom: 1em;
    }

    .carousel-hero {
        background: rgb(232 232 232/0.75);
    }
}

.carousel-hero .slick-slide .carousel-hero-slide__content .arrow-decoration {
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-transition-delay: 1s;
    transition-delay: 1s;
    right: 20px;
    opacity: 0;
    width: 150px;
    top: 0;
}

.carousel-hero .slick-slide.slick-active .carousel-hero-slide__content .arrow-decoration {
    opacity: 1;
    -webkit-transform: translate(60px, -50px);
    transform: translate(60px, -50px);
    width: 150px;
    display: block;
}

@media (max-width: 767px) {
    .carousel-hero .slick-slide.slick-active .carousel-hero-slide__content .arrow-decoration {
        width: 120px;
        -webkit-transform: translateY(-136px) !important;
        transform: translateY(-136px) !important;
    }
}

.carousel-hero .slick-slide.slick-active .carousel-hero-slide__content {
    opacity: 1;
    -webkit-transform: translate(15px);
    transform: translate(15px);
}

.carousel-hero-slide__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

    .carousel-hero-slide__image,
    .carousel-hero-slide__image img {
        position: absolute;
        left: 0;
        top: 0;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }

@media (max-width: 767px) {
    .carousel-hero-slide__image,
    .carousel-hero-slide__image img {
        position: relative;
        min-width: 33em;
    }
}

.carousel-hero .slick-next {
    right: 20px;
}

.carousel-hero .slick-prev {
    left: 20px;
    right: auto;
}

@media (max-width: 767px) {
    .carousel-hero .slick-next {
        right: 0;
    }

    .carousel-hero .slick-prev {
        left: 0;
        right: auto;
    }
}

.carousel-two {
    margin-left: -48px;
    margin-right: -48px;
}

    .carousel-two .slick-slide {
        padding: 1.5em;
    }

.carousel-two-slide img {
    display: inline-block;
}

.carousel-two .slick-dots {
    margin-bottom: -2em;
}

.carousel-listing {
    margin-left: -15px;
    margin-right: -15px;
}

    .carousel-listing .modal-expand {
        position: relative;
        width: 100%;
        display: block;
    }

        .carousel-listing .modal-expand i {
            position: absolute;
            top: 0;
            right: 0;
            background: rgb(0 0 0/50%);
            padding: 0.25em;
            font-size: 1.3em;
            font-weight: 400;
            -webkit-transition: all 0.3s ease;
            transition: all 0.3s ease;
        }

            .carousel-listing .modal-expand i:hover {
                cursor: pointer;
                background: rgb(0 0 0/100%);
            }

            .carousel-listing .modal-expand i:before {
                color: #fff;
            }

.cookie-bar {
    background: rgba(119, 124, 126, 95%);
}

.cookie-bar__text,
.cookie-bar__text a {
    color: #fff;
    font-size: 0.9em;
}

    .cookie-bar__text a {
        font-weight: 500;
    }

        .cookie-bar__text a:hover {
            color: #fff;
            text-decoration: underline;
        }

.modal-content,
.modal-dialog {
    background: none;
    border: none;
}

.modal-header {
    border: none;
}

.modal-dialog {
    margin-top: 100px;
    max-width: 1000px;
}

@media (max-width: 767px) {
    .home-events-list__item {
        padding-bottom: 0.5em;
        border-bottom: 1px solid #ccc;
        margin-bottom: 1.5em;
    }

    .home-events-list:last-child .home-events-list__item {
        padding-bottom: 0;
        border-bottom: none;
        margin-bottom: 0;
    }
}

lite-youtube {
    max-width: none;
}

.id-card-number {
    border: 2px solid var(--brand-blue);
    color: var(--brand-blue);
    border-radius: 100%;
    position: absolute;
    top: -22px;
    width: 45px;
    height: 45px;
    left: 50%;
    background: #fff;
    font-size: 25px;
    font-weight: 700;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-family: Oswald;
}

    .id-card-number span {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.form-btn-group .col {
    padding: 0 13px;
}

.form-btn-group .btn {
    margin: 0 2px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.form-btn-group .col .btn {
    margin-right: 6px;
}

    .form-btn-group .col .btn:last-child {
        margin-right: 0;
    }

@media (max-width: 768px) {
    .blog-post-content img {
        width: 100% !important;
        float: none !important;
        margin: 0 !important;
    }
}

body.post .banner-gray-text-section {
    display: none !important;
}

.fr-view table th {
    background: var(--brand-blue) !important;
}

.fr-view table td,
.fr-view table th {
    border: none !important;
    padding: 0.75em !important;
}

.fr-view ol,
.fr-view ul {
    list-style-position: outside !important;
}

.page-navigator {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    background: #2e2e2e;
    opacity: 0.5;
    border-radius: 10px;
    font-size: 14px;
}

.pane-navigator-title {
    border-bottom: 1px solid #898989;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em !important;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-navigator:hover {
    opacity: 1;
}

.page-navigator a {
    color: #d5d5d5;
}

    .page-navigator a:hover {
        color: #fff;
    }

.page-navigator-toggle {
    text-align: center;
    border: none;
    display: block;
    padding: 0.2em 0.4em;
    font-size: 1.8em;
}

@media (min-width: 400px) {
    .page-navigator-toggle {
        font-size: 2em;
    }
}

.page-navigator-pane {
    display: none;
    position: absolute;
    bottom: 100%;
    margin-bottom: 5px;
    min-width: 300px;
    background: #2e2e2e;
    padding: 1em;
    border-radius: 10px;
}

    .page-navigator-pane p {
        margin-bottom: 0;
        color: #fff;
    }

    .page-navigator-pane li .chevron-link-down:after {
        content: "\f078";
    }

    .page-navigator-pane li.is-active .chevron-link-down:after {
        content: "\f077";
    }

    .page-navigator-pane ul {
        padding-left: 0;
        width: 100%;
        list-style: none;
        margin-bottom: 0;
    }

        .page-navigator-pane ul li {
            margin-bottom: 0.25em;
        }

        .page-navigator-pane ul ul {
            padding-left: 0.5em;
            border-left: 1px solid #666;
        }

.page-navigator.is-active .page-navigator-pane {
    display: block;
}

.page-navigator.is-active {
    opacity: 1;
}

    .page-navigator.is-active .fa-compass:before {
        font-weight: 800;
    }

.toggle-content {
    display: none;
}

.js-toggle-parent.is-active .toggle-content {
    display: block;
}

@media (min-width: 992px) {
    .row-5ths .col-md-2,
    .row-5ths .col-md-3 {
        width: 20% !important;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
        flex: 0 0 20%;
        max-width: 20%;
    }
}

@media (max-width: 767px) {
    .col-md-3,
    .col-md-4,
    .col-md-6,
    .col-sm-6 {
        margin-bottom: 1.5em;
    }

        .col-md-3:last-child,
        .col-md-4:last-child,
        .col-md-6:last-child {
            margin: 0;
        }
}

@media (max-width: 767px) {
    .sitewatch_3col_remove-mobile-pad {
        padding-bottom: 1.5em !important;
    }
}

@media (max-width: 767px) {
    .sitewatch_2col_remove-mobile-col-margin .col-12 {
        margin-bottom: 0 !important;
    }
}


.site-container section .container .row h2 {
    text-align: center;
    margin-bottom:46px
}

/* 2025.01.07 scf: New Per Blake Genth */
.mobile-display {
    display: block;
}

.tablet-display {
    display: none;
}

.desktop-display {
    display: none;
}

.block-25 {
    width: 100%;
    float: none;
}

.block-33 {
    width: 100%;
    float: none;
}

.block-50 {
    width: 100%;
    float: none;
}

.block-75 {
    width: 100%;
    float: none;
}

.block-100 {
    width: 100%;
    float: none;
}



@media (min-width: 768px) {

    .mobile-display {
        display: none;
    }

    .tablet-display {
        display: block;
    }

    .desktop-display {
        display: none;
    }

    .block-25 {
        width: 25%;
        float: left;
    }

    .block-33 {
        width: 33.3%;
        float: left;
    }

    .block-50 {
        width: 50%;
        float: left;
    }

    .block-75 {
        width: 75%;
        float: left;
    }

    .block-100 {
        width: 100%;
        float: left;
    }
}



@media (min-width: 1200px) {

    .mobile-display {
        display: none;
    }

    .tablet-display {
        display: none;
    }

    .desktop-display {
        display: block;
    }
}

/* 2025.03.26 Pagination bug reported by Julie */
@media screen and (max-width: 767px) {
    .pagination li {
        display: none;
    }

        .pagination li:first-child,
        .pagination li:nth-child(2),
        .pagination li.active,
        .pagination li.active + li,
        .pagination li.active + li + li,
        .pagination li.active + li + li + li,
        .pagination li:nth-last-child(2),
        .pagination li:nth-last-child(1) {
            display: inline-block;
        }
}

/* 2025.10.07 scf: New logo for PBV branding */
.drb-footer-logo {
    width:70px;
}

/* 2025.10.07 scf: Required "banner" across the top of all pages */
#vontier_header {
    position: fixed;
    z-index: 101;
    background-color: var(--brand-blue);
    width: 100%;
    text-align: center;
}
#vontier_header a {
    color: white;
}
#vontier_header a:hover {
    color: white;
}