:root {
    --swiper-theme-color: #007aff;
    --swiper-navigation-size: 44px;
}

:host {
    display: block;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.swiper {
    display: block;
    list-style: none;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 1;
}

.swiper-vertical>.swiper-wrapper {
    flex-direction: column;
}

.swiper-wrapper {
    box-sizing: content-box;
    display: flex;
    height: 100%;
    position: relative;
    transition-property: transform;
    transition-timing-function: var(--swiper-wrapper-transition-timing-function,
            initial);
    width: 100%;
    z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
    transform: translateZ(0);
}

.swiper-horizontal {
    touch-action: pan-y;
}

.swiper-vertical {
    touch-action: pan-x;

    .swiper-button-next,
    ~.swiper-button-next {
        bottom: var(--swiper-navigation-sides-offset, 4px);
        top: auto;
    }
}

.swiper-slide {
    backface-visibility: hidden;
    display: block;
    flex-shrink: 0;
    height: 100%;
    overflow: hidden;
    position: relative;
    transform-origin: center bottom;
    transition-property: transform, opacity, height;
    width: 100%;
}

.swiper-slide-invisible-blank {
    visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
    height: auto;
}

.swiper-autoheight .swiper-wrapper {
    align-items: flex-start;
    transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
    backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
    perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
    transform-style: preserve-3d;
}

.swiper-3d {
    perspective: 1200px;

    .swiper-slide-shadow-bottom {
        background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent);
    }
}

.swiper-css-mode {
    &.swiper-centered.swiper-vertical {
        >.swiper-wrapper:before {
            height: var(--swiper-centered-offset-after);
            min-width: 1px;
            width: 100%;
        }
    }
}

.swiper-lazy-preloader {
    animation: swiper-preloader-spin 1s linear infinite;
    border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
    border-radius: 50%;
    border-top: 4px solid transparent;
    box-sizing: border-box;
    height: 42px;
    left: 50%;
    margin-left: -21px;
    margin-top: -21px;
    position: absolute;
    top: 50%;
    transform-origin: 50%;
    width: 42px;
    z-index: 10;
}

.swiper-lazy-preloader-white {
    --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
    --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
    0% {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(1turn);
    }
}

.swiper-virtual .swiper-slide {
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode {
    .swiper-wrapper:after {
        content: "";
        height: var(--swiper-virtual-size);
        left: 0;
        pointer-events: none;
        position: absolute;
        top: 0;
        width: 1px;
    }
}

.swiper-button-next,
.swiper-button-prev {
    align-items: center;
    color: var(--swiper-navigation-color, var(--swiper-theme-color));
    cursor: pointer;
    display: flex;
    height: var(--swiper-navigation-size);
    justify-content: center;
    margin-top: calc(0px - var(--swiper-navigation-size) / 2);
    position: absolute;
    top: var(--swiper-navigation-top-offset, 50%);
    width: var(--swiper-navigation-size);
    z-index: 10;

    svg {
        fill: currentColor;
        height: 100%;
        object-fit: contain;
        pointer-events: none;
        transform-origin: center;
        width: 100%;
    }
}

.swiper-button-lock {
    display: none;
}

.swiper-button-prev {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;

    .swiper-navigation-icon {
        transform: rotate(90deg);
    }
}

.swiper-button-next {
    left: auto;
    right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-pagination {
    position: absolute;
    text-align: center;
    transform: translateZ(0);
    transition: opacity 0.3s;
    z-index: 10;

    &.swiper-pagination-disabled,
    .swiper-pagination-disabled>& {
        display: none !important;
    }
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: var(--swiper-pagination-bottom, 8px);
    left: 0;
    top: var(--swiper-pagination-top, auto);
    width: 100%;
}

.swiper-pagination-bullets-dynamic {
    font-size: 0;
    overflow: hidden;

    .swiper-pagination-bullet-active-next-next {
        transform: scale(0.33);
    }
}

.swiper-pagination-bullet {
    background: var(--swiper-pagination-bullet-inactive-color, #000);
    border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
    display: inline-block;
    height: var(--swiper-pagination-bullet-height,
            var(--swiper-pagination-bullet-size, 8px));
    opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
    transition: transform 0.2s, left 0.2s;
    width: var(--swiper-pagination-bullet-width,
            var(--swiper-pagination-bullet-size, 8px));

    &:only-child {
        display: none !important;
    }
}

.swiper-pagination-bullet-active {
    background: var(--swiper-pagination-color, var(--swiper-theme-color));
    opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical>.swiper-pagination-bullets {
    left: var(--swiper-pagination-left, auto);
    right: var(--swiper-pagination-right, 8px);
    top: 50%;
    transform: translate3d(0, -50%, 0);

    &.swiper-pagination-bullets-dynamic {
        left: 50%;
        top: 50%;
        transform: translateX(-50%);
        white-space: nowrap;
        width: 8px;
    }
}

.swiper-horizontal.swiper-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
    color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
    background: var(--swiper-pagination-progressbar-bg-color,
            rgba(0, 0, 0, 0.25));
    position: absolute;

    &.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
    &.swiper-pagination-vertical,
    .swiper-horizontal>&.swiper-pagination-progressbar-opposite,
    .swiper-vertical>& {
        height: 100%;
        left: 0;
        top: 0;
        width: var(--swiper-pagination-progressbar-size, 4px);
    }
}

.swiper-pagination-lock {
    display: none;
}

.swiper-scrollbar {
    background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    position: relative;
    touch-action: none;

    &.swiper-scrollbar-vertical,
    .swiper-vertical>& {
        height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
        left: var(--swiper-scrollbar-left, auto);
        position: absolute;
        right: var(--swiper-scrollbar-right, 4px);
        top: var(--swiper-scrollbar-sides-offset, 1%);
        width: var(--swiper-scrollbar-size, 4px);
        z-index: 50;
    }
}

.swiper-scrollbar-drag {
    background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
    border-radius: var(--swiper-scrollbar-border-radius, 10px);
    height: 100%;
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
}

.swiper-scrollbar-cursor-drag {
    cursor: move;
}

.swiper-scrollbar-lock {
    display: none;
}

.swiper-zoom-container {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 100%;

    >canvas,
    >img,
    >svg {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }
}

.swiper-slide-zoomed {
    cursor: move;
    touch-action: none;
}

.swiper .swiper-notification {
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    z-index: -1000;
}

.swiper-free-mode>.swiper-wrapper {
    margin: 0 auto;
    transition-timing-function: ease-out;
}

.swiper-grid>.swiper-wrapper {
    flex-wrap: wrap;
}

.swiper-grid-column>.swiper-wrapper {
    flex-direction: column;
    flex-wrap: wrap;
}

.swiper-fade {
    .swiper-slide-active {
        pointer-events: auto;

        &,
        & .swiper-slide-active {
            pointer-events: auto;
        }
    }
}

.swiper.swiper-cube {
    overflow: visible;
}

.swiper-cube {

    .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
    .swiper-slide-shadow-cube.swiper-slide-shadow-left,
    .swiper-slide-shadow-cube.swiper-slide-shadow-right,
    .swiper-slide-shadow-cube.swiper-slide-shadow-top {
        backface-visibility: hidden;
        z-index: 0;
    }
}

.swiper.swiper-flip {
    overflow: visible;
}

.swiper-flip {

    .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
    .swiper-slide-shadow-flip.swiper-slide-shadow-left,
    .swiper-slide-shadow-flip.swiper-slide-shadow-right,
    .swiper-slide-shadow-flip.swiper-slide-shadow-top {
        backface-visibility: hidden;
        z-index: 0;
    }
}

.swiper.swiper-cards {
    overflow: visible;
}

.fa {
    font-family: var(--fa-style-family, "Font Awesome 6 Pro");
    font-weight: var(--fa-style, 900);
}

.fa,
.fa-brands,
.fa-classic,
.fa-duotone,
.fa-light,
.fa-regular,
.fa-sharp,
.fa-sharp-duotone,
.fa-solid,
.fa-thin,
.fab,
.fad,
.fadl,
.fadr,
.fadt,
.fal,
.far,
.fas,
.fasdl,
.fasdr,
.fasds,
.fasdt,
.fasl,
.fasr,
.fass,
.fast,
.fat {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

.fa-brands:before,
.fa-classic:before,
.fa-duotone:before,
.fa-light:before,
.fa-regular:before,
.fa-sharp-duotone:before,
.fa-sharp:before,
.fa-solid:before,
.fa-thin:before,
.fa:before,
.fab:before,
.fad:before,
.fadl:before,
.fadr:before,
.fadt:before,
.fal:before,
.far:before,
.fas:before,
.fasdl:before,
.fasdr:before,
.fasds:before,
.fasdt:before,
.fasl:before,
.fasr:before,
.fass:before,
.fast:before,
.fat:before {
    content: var(--fa);
}

.fa-duotone.fa-light:after,
.fa-duotone.fa-regular:after,
.fa-duotone.fa-solid:after,
.fa-duotone.fa-thin:after,
.fa-duotone:after,
.fa-sharp-duotone.fa-light:after,
.fa-sharp-duotone.fa-regular:after,
.fa-sharp-duotone.fa-solid:after,
.fa-sharp-duotone.fa-thin:after,
.fa-sharp-duotone:after,
.fad:after,
.fadl:after,
.fadr:after,
.fadt:after,
.fasdl:after,
.fasdr:after,
.fasds:after,
.fasdt:after {
    content: var(--fa--fa);
}

.fa-classic.fa-duotone {
    font-family: Font Awesome\6 Duotone;
}

.fa-duotone,
.fa-sharp,
.fa-sharp-duotone,
.fad,
.fasds,
.fass {
    font-weight: 900;
}

.fa-classic,
.fa-light,
.fa-regular,
.fa-solid,
.fa-thin,
.fal,
.far,
.fas,
.fat {
    font-family: Font Awesome\6 Pro;
}

.fa-duotone,
.fad,
.fadl,
.fadr,
.fadt {
    font-family: Font Awesome\6 Duotone;
}

.fa-brands,
.fab {
    font-family: Font Awesome\6 Brands;
    font-weight: 400;
}

.fa-sharp,
.fasl,
.fasr,
.fass,
.fast {
    font-family: Font Awesome\6 Sharp;
}

.fa-sharp-duotone,
.fasdl,
.fasdr,
.fasds,
.fasdt {
    font-family: Font Awesome\6 Sharp Duotone;
}

.fa-0 {
    --fa: "\30 ";
    --fa--fa: "\30 \30 ";
}

.fa-1 {
    --fa: "\31 ";
    --fa--fa: "\31 \31 ";
}

.fa-2 {
    --fa: "\32 ";
    --fa--fa: "\32 \32 ";
}

.fa-3 {
    --fa: "\33 ";
    --fa--fa: "\33 \33 ";
}

.fa-4 {
    --fa: "\34 ";
    --fa--fa: "\34 \34 ";
}

.fa-5 {
    --fa: "\35 ";
    --fa--fa: "\35 \35 ";
}

.fa-6 {
    --fa: "\36 ";
    --fa--fa: "\36 \36 ";
}

.fa-7 {
    --fa: "\37 ";
    --fa--fa: "\37 \37 ";
}

.fa-8 {
    --fa: "\38 ";
    --fa--fa: "\38 \38 ";
}

.fa-9 {
    --fa: "\39 ";
    --fa--fa: "\39 \39 ";
}

.fa-fill-drip {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-to-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-circle-right,
.fa-circle-chevron-right {
    --fa: "";
    --fa--fa: "";
}

.fa-wagon-covered {
    --fa: "";
    --fa--fa: "";
}

.fa-line-height {
    --fa: "";
    --fa--fa: "";
}

.fa-bagel {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter-7 {
    --fa: "";
    --fa--fa: "";
}

.fa-at {
    --fa: "\@";
    --fa--fa: "\@\@";
}

.fa-rectangles-mixed {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-arrow-up,
.fa-phone-arrow-up-right,
.fa-phone-outgoing {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-alt,
.fa-trash-can {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-l {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-goggles,
.fa-head-vr {
    --fa: "";
    --fa--fa: "";
}

.fa-text-height {
    --fa: "";
    --fa--fa: "";
}

.fa-user-times,
.fa-user-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-face-hand-yawn {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-simple-min,
.fa-tachometer-slowest {
    --fa: "";
    --fa--fa: "";
}

.fa-stethoscope {
    --fa: "";
    --fa--fa: "";
}

.fa-coffin {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt,
.fa-message {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-salad,
.fa-salad {
    --fa: "";
    --fa--fa: "";
}

.fa-info {
    --fa: "";
    --fa--fa: "";
}

.fa-robot-astromech {
    --fa: "";
    --fa--fa: "";
}

.fa-ring-diamond {
    --fa: "";
    --fa--fa: "";
}

.fa-fondue-pot {
    --fa: "";
    --fa--fa: "";
}

.fa-theta {
    --fa: "";
    --fa--fa: "";
}

.fa-face-hand-peeking {
    --fa: "";
    --fa--fa: "";
}

.fa-square-user {
    --fa: "";
    --fa--fa: "";
}

.fa-compress-alt,
.fa-down-left-and-up-right-to-center {
    --fa: "";
    --fa--fa: "";
}

.fa-explosion {
    --fa: "";
    --fa--fa: "";
}

.fa-file-alt,
.fa-file-lines,
.fa-file-text {
    --fa: "";
    --fa--fa: "";
}

.fa-wave-square {
    --fa: "";
    --fa--fa: "";
}

.fa-ring {
    --fa: "";
    --fa--fa: "";
}

.fa-building-un {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-three {
    --fa: "";
    --fa--fa: "";
}

.fa-tire-pressure-warning {
    --fa: "";
    --fa--fa: "";
}

.fa-wifi-2,
.fa-wifi-fair {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-alt,
.fa-calendar-days {
    --fa: "";
    --fa--fa: "";
}

.fa-mp3-player {
    --fa: "";
    --fa--fa: "";
}

.fa-anchor-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-tally-4 {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-history {
    --fa: "";
    --fa--fa: "";
}

.fa-building-circle-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-volleyball,
.fa-volleyball-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-sun-haze {
    --fa: "";
    --fa--fa: "";
}

.fa-text-size {
    --fa: "";
    --fa--fa: "";
}

.fa-ufo {
    --fa: "";
    --fa--fa: "";
}

.fa-fork,
.fa-utensil-fork {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-up-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-mobile-signal {
    --fa: "";
    --fa--fa: "";
}

.fa-barcode-scan {
    --fa: "";
    --fa--fa: "";
}

.fa-sort-desc,
.fa-sort-down {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-arrow-down,
.fa-folder-download {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-minus,
.fa-minus-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-face-icicles {
    --fa: "";
    --fa--fa: "";
}

.fa-shovel {
    --fa: "";
    --fa--fa: "";
}

.fa-door-open {
    --fa: "";
    --fa--fa: "";
}

.fa-films {
    --fa: "";
    --fa--fa: "";
}

.fa-right-from-bracket,
.fa-sign-out-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-face-glasses {
    --fa: "";
    --fa--fa: "";
}

.fa-nfc {
    --fa: "";
    --fa--fa: "";
}

.fa-atom {
    --fa: "";
    --fa--fa: "";
}

.fa-soap {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-music-camera-bolt,
.fa-icons {
    --fa: "";
    --fa--fa: "";
}

.fa-microphone-alt-slash,
.fa-microphone-lines-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-closed-captioning-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-calculator-alt,
.fa-calculator-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-bridge-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-sliders-up,
.fa-sliders-v {
    --fa: "";
    --fa--fa: "";
}

.fa-location-minus,
.fa-map-marker-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-pump-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-fingerprint {
    --fa: "";
    --fa--fa: "";
}

.fa-ski-boot {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-sd,
.fa-standard-definition {
    --fa: "";
    --fa--fa: "";
}

.fa-h1 {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-point-right {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-location,
.fa-search-location {
    --fa: "";
    --fa--fa: "";
}

.fa-message-bot {
    --fa: "";
    --fa--fa: "";
}

.fa-forward-step,
.fa-step-forward {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-beam,
.fa-smile-beam {
    --fa: "";
    --fa--fa: "";
}

.fa-light-ceiling {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-exclamation,
.fa-message-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-scoop,
.fa-bowl-shaved-ice {
    --fa: "";
    --fa--fa: "";
}

.fa-square-x {
    --fa: "";
    --fa--fa: "";
}

.fa-building-memo {
    --fa: "";
    --fa--fa: "";
}

.fa-utility-pole-double {
    --fa: "";
    --fa--fa: "";
}

.fa-flag-checkered {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-double-up,
.fa-chevrons-up {
    --fa: "";
    --fa--fa: "";
}

.fa-football,
.fa-football-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-user-vneck {
    --fa: "";
    --fa--fa: "";
}

.fa-school-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-crop {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-double-down,
.fa-angles-down {
    --fa: "";
    --fa--fa: "";
}

.fa-users-rectangle {
    --fa: "";
    --fa--fa: "";
}

.fa-people-roof {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-square-right,
.fa-square-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-location-plus,
.fa-map-marker-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-exclamation-on {
    --fa: "";
    --fa--fa: "";
}

.fa-people-line {
    --fa: "";
    --fa--fa: "";
}

.fa-beer,
.fa-beer-mug-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-car-people,
.fa-carpool {
    --fa: "";
    --fa--fa: "";
}

.fa-crate-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-predecessor {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-circle-user {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-long,
.fa-long-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-person-carry,
.fa-person-carry-box {
    --fa: "";
    --fa--fa: "";
}

.fa-burn,
.fa-fire-flame-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-male,
.fa-person {
    --fa: "";
    --fa--fa: "";
}

.fa-laptop {
    --fa: "";
    --fa--fa: "";
}

.fa-file-csv {
    --fa: "";
    --fa--fa: "";
}

.fa-menorah {
    --fa: "";
    --fa--fa: "";
}

.fa-union {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-double-left,
.fa-chevrons-left {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-heart,
.fa-heart-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-plane {
    --fa: "";
    --fa--fa: "";
}

.fa-record-vinyl {
    --fa: "";
    --fa--fa: "";
}

.fa-bring-forward {
    --fa: "";
    --fa--fa: "";
}

.fa-square-p {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-stars,
.fa-grin-stars {
    --fa: "";
    --fa--fa: "";
}

.fa-sigma {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-movie {
    --fa: "";
    --fa--fa: "";
}

.fa-bong {
    --fa: "";
    --fa--fa: "";
}

.fa-clarinet {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-flatbed {
    --fa: "";
    --fa--fa: "";
}

.fa-pastafarianism,
.fa-spaghetti-monster-flying {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-up-across-line {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-rotate-reverse {
    --fa: "";
    --fa--fa: "";
}

.fa-leaf-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-house-building {
    --fa: "";
    --fa--fa: "";
}

.fa-cheese-swiss {
    --fa: "";
    --fa--fa: "";
}

.fa-spoon,
.fa-utensil-spoon {
    --fa: "";
    --fa--fa: "";
}

.fa-jar-wheat {
    --fa: "";
    --fa--fa: "";
}

.fa-envelopes-bulk,
.fa-mail-bulk {
    --fa: "";
    --fa--fa: "";
}

.fa-file-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-bow-arrow {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-xmark,
.fa-times-hexagon,
.fa-xmark-hexagon {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-h,
.fa-hospital-symbol {
    --fa: "";
    --fa--fa: "";
}

.fa-merge {
    --fa: "";
    --fa--fa: "";
}

.fa-pager {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-address-book,
.fa-contact-book {
    --fa: "";
    --fa--fa: "";
}

.fa-pan-frying {
    --fa: "";
    --fa--fa: "";
}

.fa-grid,
.fa-grid-3 {
    --fa: "";
    --fa--fa: "";
}

.fa-football-helmet {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-love {
    --fa: "";
    --fa--fa: "";
}

.fa-trees {
    --fa: "";
    --fa--fa: "";
}

.fa-strikethrough {
    --fa: "";
    --fa--fa: "";
}

.fa-page {
    --fa: "";
    --fa--fa: "";
}

.fa-k {
    --fa: "K";
    --fa--fa: "KK";
}

.fa-diagram-previous {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-min,
.fa-tachometer-alt-slowest {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-grid {
    --fa: "";
    --fa--fa: "";
}

.fa-eggplant {
    --fa: "";
    --fa--fa: "";
}

.fa-excavator {
    --fa: "";
    --fa--fa: "";
}

.fa-ram {
    --fa: "";
    --fa--fa: "";
}

.fa-landmark-flag {
    --fa: "";
    --fa--fa: "";
}

.fa-lips {
    --fa: "";
    --fa--fa: "";
}

.fa-pencil,
.fa-pencil-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-backward {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-right {
    --fa: "";
    --fa--fa: "";
}

.fa-comments {
    --fa: "";
    --fa--fa: "";
}

.fa-file-clipboard,
.fa-paste {
    --fa: "";
    --fa--fa: "";
}

.fa-desktop-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-code-pull-request {
    --fa: "";
    --fa--fa: "";
}

.fa-pumpkin {
    --fa: "";
    --fa--fa: "";
}

.fa-clipboard-list {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-field {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-sine {
    --fa: "";
    --fa--fa: "";
}

.fa-blueberries {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-loading,
.fa-truck-ramp-box {
    --fa: "";
    --fa--fa: "";
}

.fa-note {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-to-square {
    --fa: "";
    --fa--fa: "";
}

.fa-user-check {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-vial-virus {
    --fa: "";
    --fa--fa: "";
}

.fa-book-alt,
.fa-book-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-golf-flag-hole {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-arrow-down,
.fa-message-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-face-unamused {
    --fa: "";
    --fa--fa: "";
}

.fa-sheet-plastic {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-9 {
    --fa: "";
    --fa--fa: "";
}

.fa-blog {
    --fa: "";
    --fa--fa: "";
}

.fa-user-ninja {
    --fa: "";
    --fa--fa: "";
}

.fa-pencil-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-bowling-pins {
    --fa: "";
    --fa--fa: "";
}

.fa-person-arrow-up-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-down-right {
    --fa: "";
    --fa--fa: "";
}

.fa-scroll-torah,
.fa-torah {
    --fa: "";
    --fa--fa: "";
}

.fa-webhook {
    --fa: "";
    --fa--fa: "";
}

.fa-blinds-open {
    --fa: "";
    --fa--fa: "";
}

.fa-fence {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-up,
.fa-up {
    --fa: "";
    --fa--fa: "";
}

.fa-broom-ball,
.fa-quidditch,
.fa-quidditch-broom-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-drumstick {
    --fa: "";
    --fa--fa: "";
}

.fa-square-v {
    --fa: "";
    --fa--fa: "";
}

.fa-face-awesome,
.fa-gave-dandy {
    --fa: "";
    --fa--fa: "";
}

.fa-dial-off {
    --fa: "";
    --fa--fa: "";
}

.fa-toggle-off {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-horns {
    --fa: "";
    --fa--fa: "";
}

.fa-archive,
.fa-box-archive {
    --fa: "";
    --fa--fa: "";
}

.fa-grapes {
    --fa: "";
    --fa--fa: "";
}

.fa-person-drowning {
    --fa: "";
    --fa--fa: "";
}

.fa-dial-max {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-m {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-image {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-circle-down,
.fa-circle-caret-down {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-9-1,
.fa-sort-numeric-desc,
.fa-sort-numeric-down-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-tongue-squint,
.fa-grin-tongue-squint {
    --fa: "";
    --fa--fa: "";
}

.fa-shish-kebab {
    --fa: "";
    --fa--fa: "";
}

.fa-spray-can {
    --fa: "";
    --fa--fa: "";
}

.fa-alarm-snooze {
    --fa: "";
    --fa--fa: "";
}

.fa-scarecrow {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-monster {
    --fa: "";
    --fa--fa: "";
}

.fa-gift-card {
    --fa: "";
    --fa--fa: "";
}

.fa-w {
    --fa: "W";
    --fa--fa: "WW";
}

.fa-code-pull-request-draft {
    --fa: "";
    --fa--fa: "";
}

.fa-square-b {
    --fa: "";
    --fa--fa: "";
}

.fa-elephant {
    --fa: "";
    --fa--fa: "";
}

.fa-earth-africa,
.fa-globe-africa {
    --fa: "";
    --fa--fa: "";
}

.fa-rainbow {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-notch {
    --fa: "";
    --fa--fa: "";
}

.fa-tablet-alt,
.fa-tablet-screen-button {
    --fa: "";
    --fa--fa: "";
}

.fa-paw {
    --fa: "";
    --fa--fa: "";
}

.fa-message-question {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud {
    --fa: "";
    --fa--fa: "";
}

.fa-trowel-bricks {
    --fa: "";
    --fa--fa: "";
}

.fa-square-3 {
    --fa: "";
    --fa--fa: "";
}

.fa-face-flushed,
.fa-flushed {
    --fa: "";
    --fa--fa: "";
}

.fa-hospital-user {
    --fa: "";
    --fa--fa: "";
}

.fa-microwave {
    --fa: "";
    --fa--fa: "";
}

.fa-chf-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-tent-arrow-left-right {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-circle-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-clock {
    --fa: "";
    --fa--fa: "";
}

.fa-reflect-both {
    --fa: "";
    --fa--fa: "";
}

.fa-gavel,
.fa-legal {
    --fa: "";
    --fa--fa: "";
}

.fa-sprinkler-ceiling {
    --fa: "";
    --fa--fa: "";
}

.fa-browsers {
    --fa: "";
    --fa--fa: "";
}

.fa-trillium {
    --fa: "";
    --fa--fa: "";
}

.fa-table-cells-unlock {
    --fa: "";
    --fa--fa: "";
}

.fa-music-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-ramp {
    --fa: "";
    --fa--fa: "";
}

.fa-binoculars {
    --fa: "";
    --fa--fa: "";
}

.fa-microphone-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-box-tissue {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-c {
    --fa: "";
    --fa--fa: "";
}

.fa-star-christmas {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-bullet {
    --fa: "";
    --fa--fa: "";
}

.fa-motorcycle {
    --fa: "";
    --fa--fa: "";
}

.fa-tree-christmas {
    --fa: "";
    --fa--fa: "";
}

.fa-tire-flat {
    --fa: "";
    --fa--fa: "";
}

.fa-sunglasses {
    --fa: "";
    --fa--fa: "";
}

.fa-badge {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-edit,
.fa-message-edit,
.fa-message-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-bell-concierge,
.fa-concierge-bell {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-ruler,
.fa-pencil-ruler {
    --fa: "";
    --fa--fa: "";
}

.fa-file-mp3 {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-progress {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-rook-alt,
.fa-chess-rook-piece {
    --fa: "";
    --fa--fa: "";
}

.fa-square-root {
    --fa: "";
    --fa--fa: "";
}

.fa-album-collection-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-people-arrows,
.fa-people-arrows-left-right {
    --fa: "";
    --fa--fa: "";
}

.fa-sign-post {
    --fa: "";
    --fa--fa: "";
}

.fa-face-angry-horns {
    --fa: "";
    --fa--fa: "";
}

.fa-mars-and-venus-burst {
    --fa: "";
    --fa--fa: "";
}

.fa-tombstone {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-square-right,
.fa-square-caret-right {
    --fa: "";
    --fa--fa: "";
}

.fa-cut,
.fa-scissors {
    --fa: "";
    --fa--fa: "";
}

.fa-list-music {
    --fa: "";
    --fa--fa: "";
}

.fa-sun-plant-wilt {
    --fa: "";
    --fa--fa: "";
}

.fa-toilets-portable {
    --fa: "";
    --fa--fa: "";
}

.fa-hockey-puck {
    --fa: "";
    --fa--fa: "";
}

.fa-mustache {
    --fa: "";
    --fa--fa: "";
}

.fa-hyphen {
    --fa: "\-";
    --fa--fa: "\-\-";
}

.fa-table {
    --fa: "";
    --fa--fa: "";
}

.fa-user-chef {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-image,
.fa-message-image {
    --fa: "";
    --fa--fa: "";
}

.fa-users-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-sensor-alert,
.fa-sensor-triangle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-digital-tachograph,
.fa-tachograph-digital {
    --fa: "";
    --fa--fa: "";
}

.fa-face-mask {
    --fa: "";
    --fa--fa: "";
}

.fa-pickleball {
    --fa: "";
    --fa--fa: "";
}

.fa-star-sharp-half {
    --fa: "";
    --fa--fa: "";
}

.fa-users-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-clover {
    --fa: "";
    --fa--fa: "";
}

.fa-meat {
    --fa: "";
    --fa--fa: "";
}

.fa-mail-reply,
.fa-reply {
    --fa: "";
    --fa--fa: "";
}

.fa-star-and-crescent {
    --fa: "";
    --fa--fa: "";
}

.fa-empty-set {
    --fa: "";
    --fa--fa: "";
}

.fa-house-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-minus-square,
.fa-square-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-helicopter {
    --fa: "";
    --fa--fa: "";
}

.fa-bird {
    --fa: "";
    --fa--fa: "";
}

.fa-compass {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-square-down,
.fa-square-caret-down {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-half-alt,
.fa-heart-half-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-file-circle-question {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-utensils {
    --fa: "";
    --fa--fa: "";
}

.fa-laptop-code {
    --fa: "";
    --fa--fa: "";
}

.fa-joystick {
    --fa: "";
    --fa--fa: "";
}

.fa-grill-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-vertical-history {
    --fa: "";
    --fa--fa: "";
}

.fa-swatchbook {
    --fa: "";
    --fa--fa: "";
}

.fa-prescription-bottle {
    --fa: "";
    --fa--fa: "";
}

.fa-bars,
.fa-navicon {
    --fa: "";
    --fa--fa: "";
}

.fa-keyboard-left {
    --fa: "";
    --fa--fa: "";
}

.fa-people-group {
    --fa: "";
    --fa--fa: "";
}

.fa-hourglass-3,
.fa-hourglass-end {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-broken,
.fa-heart-crack {
    --fa: "";
    --fa--fa: "";
}

.fa-face-beam-hand-over-mouth {
    --fa: "";
    --fa--fa: "";
}

.fa-droplet-percent,
.fa-humidity {
    --fa: "";
    --fa--fa: "";
}

.fa-external-link-square-alt,
.fa-square-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-face-kiss-beam,
.fa-kiss-beam {
    --fa: "";
    --fa--fa: "";
}

.fa-corn {
    --fa: "";
    --fa--fa: "";
}

.fa-roller-coaster {
    --fa: "";
    --fa--fa: "";
}

.fa-photo-film-music {
    --fa: "";
    --fa--fa: "";
}

.fa-radar {
    --fa: "";
    --fa--fa: "";
}

.fa-sickle {
    --fa: "";
    --fa--fa: "";
}

.fa-film {
    --fa: "";
    --fa--fa: "";
}

.fa-coconut {
    --fa: "";
    --fa--fa: "";
}

.fa-ruler-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-cross {
    --fa: "";
    --fa--fa: "";
}

.fa-cassette-tape {
    --fa: "";
    --fa--fa: "";
}

.fa-square-terminal {
    --fa: "";
    --fa--fa: "";
}

.fa-people-robbery {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-left {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-middle {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-can-list {
    --fa: "";
    --fa--fa: "";
}

.fa-block {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-exclamation,
.fa-exclamation-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-school-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-from-bracket,
.fa-sign-out {
    --fa: "";
    --fa--fa: "";
}

.fa-face-frown-slight {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-circle-down,
.fa-circle-chevron-down {
    --fa: "";
    --fa--fa: "";
}

.fa-sidebar-flip {
    --fa: "";
    --fa--fa: "";
}

.fa-unlock-alt,
.fa-unlock-keyhole {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-list {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-showers-heavy {
    --fa: "";
    --fa--fa: "";
}

.fa-headphones-alt,
.fa-headphones-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-sitemap {
    --fa: "";
    --fa--fa: "";
}

.fa-pipe-section {
    --fa: "";
    --fa--fa: "";
}

.fa-space-station-moon-alt,
.fa-space-station-moon-construction {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-dollar-to-slot,
.fa-donate {
    --fa: "";
    --fa--fa: "";
}

.fa-memory {
    --fa: "";
    --fa--fa: "";
}

.fa-face-sleeping {
    --fa: "";
    --fa--fa: "";
}

.fa-road-spikes {
    --fa: "";
    --fa--fa: "";
}

.fa-fire-burner {
    --fa: "";
    --fa--fa: "";
}

.fa-squirrel {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-to-top,
.fa-arrow-up-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-flag {
    --fa: "";
    --fa--fa: "";
}

.fa-face-cowboy-hat {
    --fa: "";
    --fa--fa: "";
}

.fa-hanukiah {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-scatter-3d {
    --fa: "";
    --fa--fa: "";
}

.fa-display-chart-up {
    --fa: "";
    --fa--fa: "";
}

.fa-square-code {
    --fa: "";
    --fa--fa: "";
}

.fa-feather {
    --fa: "";
    --fa--fa: "";
}

.fa-volume-down,
.fa-volume-low {
    --fa: "";
    --fa--fa: "";
}

.fa-times-to-slot,
.fa-vote-nay,
.fa-xmark-to-slot {
    --fa: "";
    --fa--fa: "";
}

.fa-box-alt,
.fa-box-taped {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-swords {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-sun-rain {
    --fa: "";
    --fa--fa: "";
}

.fa-album {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-n {
    --fa: "";
    --fa--fa: "";
}

.fa-compress {
    --fa: "";
    --fa--fa: "";
}

.fa-wheat-alt,
.fa-wheat-awn {
    --fa: "";
    --fa--fa: "";
}

.fa-ankh {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-holding-child {
    --fa: "";
    --fa--fa: "";
}

.fa-asterisk {
    --fa: "\*";
    --fa--fa: "\*\*";
}

.fa-key-skeleton-left-right {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-lines {
    --fa: "";
    --fa--fa: "";
}

.fa-luchador,
.fa-luchador-mask,
.fa-mask-luchador {
    --fa: "";
    --fa--fa: "";
}

.fa-check-square,
.fa-square-check {
    --fa: "";
    --fa--fa: "";
}

.fa-shredder {
    --fa: "";
    --fa--fa: "";
}

.fa-book-open-alt,
.fa-book-open-cover {
    --fa: "";
    --fa--fa: "";
}

.fa-sandwich {
    --fa: "";
    --fa--fa: "";
}

.fa-peseta-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-parking-slash,
.fa-square-parking-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-train-tunnel {
    --fa: "";
    --fa--fa: "";
}

.fa-header,
.fa-heading {
    --fa: "";
    --fa--fa: "";
}

.fa-ghost {
    --fa: "";
    --fa--fa: "";
}

.fa-face-anguished {
    --fa: "";
    --fa--fa: "";
}

.fa-hockey-sticks {
    --fa: "";
    --fa--fa: "";
}

.fa-abacus {
    --fa: "";
    --fa--fa: "";
}

.fa-film-alt,
.fa-film-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-list,
.fa-list-squares {
    --fa: "";
    --fa--fa: "";
}

.fa-tree-palm {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-square-alt,
.fa-square-phone-flip {
    --fa: "";
    --fa--fa: "";
}

.fa-user-beard-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-gamepad {
    --fa: "";
    --fa--fa: "";
}

.fa-border-center-v {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-dot,
.fa-dot-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-clipboard-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-dizzy,
.fa-face-dizzy {
    --fa: "";
    --fa--fa: "";
}

.fa-egg {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-to-top,
.fa-up-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-house-medical-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-watch-fitness {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-nine-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-campground {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-jug {
    --fa: "";
    --fa--fa: "";
}

.fa-futbol,
.fa-futbol-ball,
.fa-soccer-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-snow-blowing {
    --fa: "";
    --fa--fa: "";
}

.fa-paint-brush,
.fa-paintbrush {
    --fa: "";
    --fa--fa: "";
}

.fa-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-from-line,
.fa-arrow-from-top {
    --fa: "";
    --fa--fa: "";
}

.fa-gas-pump {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-alt-slash,
.fa-signal-bars-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-monkey {
    --fa: "";
    --fa--fa: "";
}

.fa-pro,
.fa-rectangle-pro {
    --fa: "";
    --fa--fa: "";
}

.fa-house-night {
    --fa: "";
    --fa--fa: "";
}

.fa-hot-tub,
.fa-hot-tub-person {
    --fa: "";
    --fa--fa: "";
}

.fa-globe-pointer {
    --fa: "";
    --fa--fa: "";
}

.fa-blanket {
    --fa: "";
    --fa--fa: "";
}

.fa-map-location,
.fa-map-marked {
    --fa: "";
    --fa--fa: "";
}

.fa-house-flood-water {
    --fa: "";
    --fa--fa: "";
}

.fa-comments-question-check {
    --fa: "";
    --fa--fa: "";
}

.fa-tree {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-cross {
    --fa: "";
    --fa--fa: "";
}

.fa-backpack {
    --fa: "";
    --fa--fa: "";
}

.fa-square-small {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-arrow-up,
.fa-folder-upload {
    --fa: "";
    --fa--fa: "";
}

.fa-bridge-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-crosshairs-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-sack-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-edit,
.fa-pen-to-square {
    --fa: "";
    --fa--fa: "";
}

.fa-sliders-h-square,
.fa-square-sliders {
    --fa: "";
    --fa--fa: "";
}

.fa-car-side {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-middle-top-alt,
.fa-message-middle-top {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-on {
    --fa: "";
    --fa--fa: "";
}

.fa-knife,
.fa-utensil-knife {
    --fa: "";
    --fa--fa: "";
}

.fa-share-alt,
.fa-share-nodes {
    --fa: "";
    --fa--fa: "";
}

.fa-display-chart-up-circle-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-wave-sine {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-circle-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-w {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-circle,
.fa-circle-calendar {
    --fa: "";
    --fa--fa: "";
}

.fa-hourglass-2,
.fa-hourglass-half {
    --fa: "";
    --fa--fa: "";
}

.fa-microscope {
    --fa: "";
    --fa--fa: "";
}

.fa-sunset {
    --fa: "";
    --fa--fa: "";
}

.fa-sink {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-container-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-bag-shopping,
.fa-shopping-bag {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-z-a,
.fa-sort-alpha-desc,
.fa-sort-alpha-down-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-mitten {
    --fa: "";
    --fa--fa: "";
}

.fa-reply-clock,
.fa-reply-time {
    --fa: "";
    --fa--fa: "";
}

.fa-person-rays {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-right,
.fa-right {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-f {
    --fa: "";
    --fa--fa: "";
}

.fa-users {
    --fa: "";
    --fa--fa: "";
}

.fa-face-pleading {
    --fa: "";
    --fa--fa: "";
}

.fa-eye-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-flask-vial {
    --fa: "";
    --fa--fa: "";
}

.fa-police-box {
    --fa: "";
    --fa--fa: "";
}

.fa-cucumber {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-brain {
    --fa: "";
    --fa--fa: "";
}

.fa-hand,
.fa-hand-paper {
    --fa: "";
    --fa--fa: "";
}

.fa-biking-mountain,
.fa-person-biking-mountain {
    --fa: "";
    --fa--fa: "";
}

.fa-utensils-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-print-magnifying-glass,
.fa-print-search {
    --fa: "";
    --fa--fa: "";
}

.fa-turn-right {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-bookmark {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-turn-left-down {
    --fa: "";
    --fa--fa: "";
}

.fa-om {
    --fa: "";
    --fa--fa: "";
}

.fa-pi {
    --fa: "";
    --fa--fa: "";
}

.fa-flask-potion,
.fa-flask-round-potion {
    --fa: "";
    --fa--fa: "";
}

.fa-face-shush {
    --fa: "";
    --fa--fa: "";
}

.fa-worm {
    --fa: "";
    --fa--fa: "";
}

.fa-house-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-plug {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-square-i {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-up {
    --fa: "";
    --fa--fa: "";
}

.fa-face-saluting {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-simple-low,
.fa-tachometer-slow {
    --fa: "";
    --fa--fa: "";
}

.fa-face-persevering {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-circle,
.fa-circle-camera {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-spock {
    --fa: "";
    --fa--fa: "";
}

.fa-spider-web {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-microphone,
.fa-microphone-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-book-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-popsicle {
    --fa: "";
    --fa--fa: "";
}

.fa-command {
    --fa: "";
    --fa--fa: "";
}

.fa-blinds {
    --fa: "";
    --fa--fa: "";
}

.fa-stopwatch {
    --fa: "";
    --fa--fa: "";
}

.fa-saxophone {
    --fa: "";
    --fa--fa: "";
}

.fa-square-2 {
    --fa: "";
    --fa--fa: "";
}

.fa-field-hockey,
.fa-field-hockey-stick-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-square-triangle,
.fa-sort-shapes-up-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-face-scream {
    --fa: "";
    --fa--fa: "";
}

.fa-square-m {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-web,
.fa-webcam {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-cfl {
    --fa: "";
    --fa--fa: "";
}

.fa-window-frame-open {
    --fa: "";
    --fa--fa: "";
}

.fa-face-kiss,
.fa-kiss {
    --fa: "";
    --fa--fa: "";
}

.fa-bridge-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-period {
    --fa: "\.";
    --fa--fa: "\.\.";
}

.fa-face-grin-tongue,
.fa-grin-tongue {
    --fa: "";
    --fa--fa: "";
}

.fa-up-to-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-thought-bubble {
    --fa: "";
    --fa--fa: "";
}

.fa-skeleton-ribs {
    --fa: "";
    --fa--fa: "";
}

.fa-raygun {
    --fa: "";
    --fa--fa: "";
}

.fa-flute {
    --fa: "";
    --fa--fa: "";
}

.fa-acorn {
    --fa: "";
    --fa--fa: "";
}

.fa-video-arrow-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-grate-droplet {
    --fa: "";
    --fa--fa: "";
}

.fa-seal-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-bishop {
    --fa: "";
    --fa--fa: "";
}

.fa-message-sms {
    --fa: "";
    --fa--fa: "";
}

.fa-coffee-beans {
    --fa: "";
    --fa--fa: "";
}

.fa-hat-witch {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-wink,
.fa-grin-wink {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-three-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-deaf,
.fa-deafness,
.fa-ear-deaf,
.fa-hard-of-hearing {
    --fa: "";
    --fa--fa: "";
}

.fa-alarm-clock {
    --fa: "";
    --fa--fa: "";
}

.fa-eclipse {
    --fa: "";
    --fa--fa: "";
}

.fa-face-relieved {
    --fa: "";
    --fa--fa: "";
}

.fa-road-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-five {
    --fa: "";
    --fa--fa: "";
}

.fa-minus-octagon,
.fa-octagon-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-rss-square,
.fa-square-rss {
    --fa: "";
    --fa--fa: "";
}

.fa-face-zany {
    --fa: "";
    --fa--fa: "";
}

.fa-tricycle {
    --fa: "";
    --fa--fa: "";
}

.fa-land-mine-on {
    --fa: "";
    --fa--fa: "";
}

.fa-square-arrow-up-left {
    --fa: "";
    --fa--fa: "";
}

.fa-i-cursor {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-mixed-up-circle-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-salt-shaker {
    --fa: "";
    --fa--fa: "";
}

.fa-stamp {
    --fa: "";
    --fa--fa: "";
}

.fa-file-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-draw-square {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-paper-reverse-slash,
.fa-toilet-paper-under-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-stairs {
    --fa: "";
    --fa--fa: "";
}

.fa-drone-alt,
.fa-drone-front {
    --fa: "";
    --fa--fa: "";
}

.fa-glass-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-dial-high {
    --fa: "";
    --fa--fa: "";
}

.fa-user-construction,
.fa-user-hard-hat,
.fa-user-helmet-safety {
    --fa: "";
    --fa--fa: "";
}

.fa-i {
    --fa: "I";
    --fa--fa: "II";
}

.fa-hryvnia,
.fa-hryvnia-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-left-and-arrow-up-right-to-center {
    --fa: "";
    --fa--fa: "";
}

.fa-pills {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-wide,
.fa-grin-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-tooth {
    --fa: "";
    --fa--fa: "";
}

.fa-basketball-hoop {
    --fa: "";
    --fa--fa: "";
}

.fa-objects-align-bottom {
    --fa: "";
    --fa--fa: "";
}

.fa-v {
    --fa: "V";
    --fa--fa: "VV";
}

.fa-sparkles {
    --fa: "";
    --fa--fa: "";
}

.fa-squid {
    --fa: "";
    --fa--fa: "";
}

.fa-leafy-green {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-arrow-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-calendars {
    --fa: "";
    --fa--fa: "";
}

.fa-bangladeshi-taka-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-bicycle {
    --fa: "";
    --fa--fa: "";
}

.fa-hammer-war {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-d {
    --fa: "";
    --fa--fa: "";
}

.fa-spider-black-widow {
    --fa: "";
    --fa--fa: "";
}

.fa-rod-asclepius,
.fa-rod-snake,
.fa-staff-aesculapius,
.fa-staff-snake {
    --fa: "";
    --fa--fa: "";
}

.fa-pear {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-cough-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-file-mov {
    --fa: "";
    --fa--fa: "";
}

.fa-triangle {
    --fa: "";
    --fa--fa: "";
}

.fa-apartment {
    --fa: "";
    --fa--fa: "";
}

.fa-ambulance,
.fa-truck-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-pepper {
    --fa: "";
    --fa--fa: "";
}

.fa-piano {
    --fa: "";
    --fa--fa: "";
}

.fa-gun-squirt {
    --fa: "";
    --fa--fa: "";
}

.fa-wheat-awn-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-snowman {
    --fa: "";
    --fa--fa: "";
}

.fa-user-alien {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-check {
    --fa: "";
    --fa--fa: "";
}

.fa-mortar-pestle {
    --fa: "";
    --fa--fa: "";
}

.fa-road-barrier {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-candlestick {
    --fa: "";
    --fa--fa: "";
}

.fa-briefcase-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-school {
    --fa: "";
    --fa--fa: "";
}

.fa-igloo {
    --fa: "";
    --fa--fa: "";
}

.fa-bracket-round,
.fa-parenthesis {
    --fa: "\(";
    --fa--fa: "\(\(";
}

.fa-joint {
    --fa: "";
    --fa--fa: "";
}

.fa-horse-saddle {
    --fa: "";
    --fa--fa: "";
}

.fa-mug-marshmallows {
    --fa: "";
    --fa--fa: "";
}

.fa-filters {
    --fa: "";
    --fa--fa: "";
}

.fa-bell-on {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-right {
    --fa: "";
    --fa--fa: "";
}

.fa-dial-med {
    --fa: "";
    --fa--fa: "";
}

.fa-horse {
    --fa: "";
    --fa--fa: "";
}

.fa-q {
    --fa: "Q";
    --fa--fa: "QQ";
}

.fa-monitor-heart-rate,
.fa-monitor-waveform {
    --fa: "";
    --fa--fa: "";
}

.fa-link-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-whistle {
    --fa: "";
    --fa--fa: "";
}

.fa-g {
    --fa: "G";
    --fa--fa: "GG";
}

.fa-fragile,
.fa-wine-glass-crack {
    --fa: "";
    --fa--fa: "";
}

.fa-slot-machine {
    --fa: "";
    --fa--fa: "";
}

.fa-notes-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-car-wash {
    --fa: "";
    --fa--fa: "";
}

.fa-escalator {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-image {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-2,
.fa-temperature-half,
.fa-thermometer-2,
.fa-thermometer-half {
    --fa: "";
    --fa--fa: "";
}

.fa-dong-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-donut,
.fa-doughnut {
    --fa: "";
    --fa--fa: "";
}

.fa-capsules {
    --fa: "";
    --fa--fa: "";
}

.fa-poo-bolt,
.fa-poo-storm {
    --fa: "";
    --fa--fa: "";
}

.fa-tally-1 {
    --fa: "";
    --fa--fa: "";
}

.fa-file-vector {
    --fa: "";
    --fa--fa: "";
}

.fa-face-frown-open,
.fa-frown-open {
    --fa: "";
    --fa--fa: "";
}

.fa-square-dashed {
    --fa: "";
    --fa--fa: "";
}

.fa-bag-shopping-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-square-j {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-point-up {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-big-small,
.fa-sort-size-up {
    --fa: "";
    --fa--fa: "";
}

.fa-barcode-read {
    --fa: "";
    --fa--fa: "";
}

.fa-baguette {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-soft-serve {
    --fa: "";
    --fa--fa: "";
}

.fa-face-holding-back-tears {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-square-up,
.fa-square-up {
    --fa: "";
    --fa--fa: "";
}

.fa-subway-tunnel,
.fa-train-subway-tunnel {
    --fa: "";
    --fa--fa: "";
}

.fa-exclamation-square,
.fa-square-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-semicolon {
    --fa: "\;";
    --fa--fa: "\;\;";
}

.fa-bookmark {
    --fa: "";
    --fa--fa: "";
}

.fa-fan-table {
    --fa: "";
    --fa--fa: "";
}

.fa-align-justify {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-1,
.fa-battery-low {
    --fa: "";
    --fa--fa: "";
}

.fa-credit-card-front {
    --fa: "";
    --fa--fa: "";
}

.fa-brain-arrow-curved-right,
.fa-mind-share {
    --fa: "";
    --fa--fa: "";
}

.fa-umbrella-beach {
    --fa: "";
    --fa--fa: "";
}

.fa-helmet-un {
    --fa: "";
    --fa--fa: "";
}

.fa-location-smile,
.fa-map-marker-smile {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left-to-line,
.fa-arrow-to-left {
    --fa: "";
    --fa--fa: "";
}

.fa-bullseye {
    --fa: "";
    --fa--fa: "";
}

.fa-nigiri,
.fa-sushi {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-captions,
.fa-message-captions {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-list {
    --fa: "";
    --fa--fa: "";
}

.fa-bacon {
    --fa: "";
    --fa--fa: "";
}

.fa-option {
    --fa: "";
    --fa--fa: "";
}

.fa-raccoon {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-point-down {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-from-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-gear {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-file-cad {
    --fa: "";
    --fa--fa: "";
}

.fa-objects-align-top {
    --fa: "";
    --fa--fa: "";
}

.fa-folder,
.fa-folder-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-face-anxious-sweat {
    --fa: "";
    --fa--fa: "";
}

.fa-credit-card-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-file-medical-alt,
.fa-file-waveform {
    --fa: "";
    --fa--fa: "";
}

.fa-microchip-ai {
    --fa: "";
    --fa--fa: "";
}

.fa-mug {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-up-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-radiation {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-bag-seedling {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-crutches {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-parking,
.fa-parking-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-mars-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-leaf-oak {
    --fa: "";
    --fa--fa: "";
}

.fa-square-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-vial {
    --fa: "";
    --fa--fa: "";
}

.fa-dashboard,
.fa-gauge,
.fa-gauge-med,
.fa-tachometer-alt-average {
    --fa: "";
    --fa--fa: "";
}

.fa-magic-wand-sparkles,
.fa-wand-magic-sparkles {
    --fa: "";
    --fa--fa: "";
}

.fa-lambda {
    --fa: "";
    --fa--fa: "";
}

.fa-e {
    --fa: "E";
    --fa--fa: "EE";
}

.fa-pizza {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-chopsticks-noodles {
    --fa: "";
    --fa--fa: "";
}

.fa-h3 {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-alt,
.fa-pen-clip {
    --fa: "";
    --fa--fa: "";
}

.fa-bridge-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-badge-percent {
    --fa: "";
    --fa--fa: "";
}

.fa-rotate-reverse {
    --fa: "";
    --fa--fa: "";
}

.fa-user {
    --fa: "";
    --fa--fa: "";
}

.fa-sensor {
    --fa: "";
    --fa--fa: "";
}

.fa-comma {
    --fa: "\,";
    --fa--fa: "\,\,";
}

.fa-school-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-paper-reverse,
.fa-toilet-paper-under {
    --fa: "";
    --fa--fa: "";
}

.fa-light-emergency {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-to-arc {
    --fa: "";
    --fa--fa: "";
}

.fa-dumpster {
    --fa: "";
    --fa--fa: "";
}

.fa-shuttle-van,
.fa-van-shuttle {
    --fa: "";
    --fa--fa: "";
}

.fa-building-user {
    --fa: "";
    --fa--fa: "";
}

.fa-light-switch {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-square-left,
.fa-square-caret-left {
    --fa: "";
    --fa--fa: "";
}

.fa-highlighter {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-rate,
.fa-wave-pulse {
    --fa: "";
    --fa--fa: "";
}

.fa-key {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left-to-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-hat-santa {
    --fa: "";
    --fa--fa: "";
}

.fa-tamale {
    --fa: "";
    --fa--fa: "";
}

.fa-box-check {
    --fa: "";
    --fa--fa: "";
}

.fa-bullhorn {
    --fa: "";
    --fa--fa: "";
}

.fa-steak {
    --fa: "";
    --fa--fa: "";
}

.fa-location-crosshairs-slash,
.fa-location-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-person-dolly {
    --fa: "";
    --fa--fa: "";
}

.fa-globe {
    --fa: "";
    --fa--fa: "";
}

.fa-synagogue {
    --fa: "";
    --fa--fa: "";
}

.fa-file-chart-column,
.fa-file-chart-line {
    --fa: "";
    --fa--fa: "";
}

.fa-person-half-dress {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-image {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-edit,
.fa-calendar-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-road-bridge {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-tear {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-plus,
.fa-message-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-location-arrow {
    --fa: "";
    --fa--fa: "";
}

.fa-c {
    --fa: "C";
    --fa--fa: "CC";
}

.fa-tablet-button {
    --fa: "";
    --fa--fa: "";
}

.fa-person-dress-fairy {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-history-circle-user {
    --fa: "";
    --fa--fa: "";
}

.fa-building-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-line-up {
    --fa: "";
    --fa--fa: "";
}

.fa-mailbox {
    --fa: "";
    --fa--fa: "";
}

.fa-sign-posts {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-pizza-slice {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill-wave {
    --fa: "";
    --fa--fa: "";
}

.fa-area-chart,
.fa-chart-area {
    --fa: "";
    --fa--fa: "";
}

.fa-house-flag {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-three-quarters-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-person-circle-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-scalpel {
    --fa: "";
    --fa--fa: "";
}

.fa-ban,
.fa-cancel {
    --fa: "";
    --fa--fa: "";
}

.fa-bell-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-bookmark-circle,
.fa-circle-bookmark {
    --fa: "";
    --fa--fa: "";
}

.fa-egg-fried {
    --fa: "";
    --fa--fa: "";
}

.fa-face-weary {
    --fa: "";
    --fa--fa: "";
}

.fa-uniform-martial-arts {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-rotate {
    --fa: "";
    --fa--fa: "";
}

.fa-sun-dust {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-text {
    --fa: "";
    --fa--fa: "";
}

.fa-air-freshener,
.fa-spray-can-sparkles {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-alt,
.fa-signal-alt-4,
.fa-signal-bars,
.fa-signal-bars-strong {
    --fa: "";
    --fa--fa: "";
}

.fa-diamond-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-star {
    --fa: "";
    --fa--fa: "";
}

.fa-dial-min {
    --fa: "";
    --fa--fa: "";
}

.fa-repeat {
    --fa: "";
    --fa--fa: "";
}

.fa-cross {
    --fa: "";
    --fa--fa: "";
}

.fa-file-caret-down,
.fa-page-caret-down {
    --fa: "";
    --fa--fa: "";
}

.fa-box {
    --fa: "";
    --fa--fa: "";
}

.fa-venus-mars {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-seven-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-pointer,
.fa-mouse-pointer {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-four-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-alt-3,
.fa-signal-bars-good {
    --fa: "";
    --fa--fa: "";
}

.fa-cactus {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-gear {
    --fa: "";
    --fa--fa: "";
}

.fa-expand-arrows-alt,
.fa-maximize {
    --fa: "";
    --fa--fa: "";
}

.fa-charging-station {
    --fa: "";
    --fa--fa: "";
}

.fa-shapes,
.fa-triangle-circle-square {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-tail {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-simple-max,
.fa-tachometer-fastest {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-u {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-square-down,
.fa-square-phone-hangup {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-left {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter-1 {
    --fa: "";
    --fa--fa: "";
}

.fa-peanuts {
    --fa: "";
    --fa--fa: "";
}

.fa-random,
.fa-shuffle {
    --fa: "";
    --fa--fa: "";
}

.fa-person-running,
.fa-running {
    --fa: "";
    --fa--fa: "";
}

.fa-mobile-retro {
    --fa: "";
    --fa--fa: "";
}

.fa-grip-lines-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-bin-bottles-recycle {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-from-square {
    --fa: "";
    --fa--fa: "";
}

.fa-file-dashed-line,
.fa-page-break {
    --fa: "";
    --fa--fa: "";
}

.fa-bracket-curly-right {
    --fa: "\}";
    --fa--fa: "\}\}";
}

.fa-spider {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-three {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-bound {
    --fa: "";
    --fa--fa: "";
}

.fa-scalpel-line-dashed,
.fa-scalpel-path {
    --fa: "";
    --fa--fa: "";
}

.fa-file-invoice-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-pipe-smoking {
    --fa: "";
    --fa--fa: "";
}

.fa-face-astonished {
    --fa: "";
    --fa--fa: "";
}

.fa-window {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-ear {
    --fa: "";
    --fa--fa: "";
}

.fa-file-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-venn {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-from-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-x-ray {
    --fa: "";
    --fa--fa: "";
}

.fa-goal-net {
    --fa: "";
    --fa--fa: "";
}

.fa-coffin-cross {
    --fa: "";
    --fa--fa: "";
}

.fa-octopus {
    --fa: "";
    --fa--fa: "";
}

.fa-spell-check {
    --fa: "";
    --fa--fa: "";
}

.fa-location-xmark,
.fa-map-marker-times,
.fa-map-marker-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-quarter-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-lasso {
    --fa: "";
    --fa--fa: "";
}

.fa-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-person-to-portal,
.fa-portal-enter {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-star {
    --fa: "";
    --fa--fa: "";
}

.fa-computer-mouse,
.fa-mouse {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-to-bracket,
.fa-sign-in {
    --fa: "";
    --fa--fa: "";
}

.fa-pegasus {
    --fa: "";
    --fa--fa: "";
}

.fa-files-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-cannon {
    --fa: "";
    --fa--fa: "";
}

.fa-nfc-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-person-ski-lift,
.fa-ski-lift {
    --fa: "";
    --fa--fa: "";
}

.fa-square-6 {
    --fa: "";
    --fa--fa: "";
}

.fa-shop-slash,
.fa-store-alt-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-wind-turbine {
    --fa: "";
    --fa--fa: "";
}

.fa-sliders-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-round {
    --fa: "";
    --fa--fa: "";
}

.fa-badge-sheriff {
    --fa: "";
    --fa--fa: "";
}

.fa-server {
    --fa: "";
    --fa--fa: "";
}

.fa-virus-covid-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-intersection {
    --fa: "";
    --fa--fa: "";
}

.fa-shop-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-family {
    --fa: "";
    --fa--fa: "";
}

.fa-hourglass-1,
.fa-hourglass-start {
    --fa: "";
    --fa--fa: "";
}

.fa-user-hair-buns {
    --fa: "";
    --fa--fa: "";
}

.fa-blender-phone {
    --fa: "";
    --fa--fa: "";
}

.fa-hourglass-clock {
    --fa: "";
    --fa--fa: "";
}

.fa-person-seat-reclined {
    --fa: "";
    --fa--fa: "";
}

.fa-paper-plane-alt,
.fa-paper-plane-top,
.fa-send {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-arrow-up,
.fa-message-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-layer-group-minus,
.fa-layer-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-pie-simple-circle-currency {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-e {
    --fa: "";
    --fa--fa: "";
}

.fa-building-wheat {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-max,
.fa-tachometer-alt-fastest {
    --fa: "";
    --fa--fa: "";
}

.fa-person-breastfeeding {
    --fa: "";
    --fa--fa: "";
}

.fa-apostrophe {
    --fa: "'";
    --fa--fa: "''";
}

.fa-file-png {
    --fa: "";
    --fa--fa: "";
}

.fa-fire-hydrant {
    --fa: "";
    --fa--fa: "";
}

.fa-right-to-bracket,
.fa-sign-in-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-video-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-square-right,
.fa-square-right {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-smile {
    --fa: "";
    --fa--fa: "";
}

.fa-venus {
    --fa: "";
    --fa--fa: "";
}

.fa-passport {
    --fa: "";
    --fa--fa: "";
}

.fa-thumb-tack-slash,
.fa-thumbtack-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-inbox-arrow-down,
.fa-inbox-in {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-pulse,
.fa-heartbeat {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-8 {
    --fa: "";
    --fa--fa: "";
}

.fa-clouds-moon {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-ten-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-people-carry,
.fa-people-carry-box {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-user {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-can-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-high {
    --fa: "";
    --fa--fa: "";
}

.fa-microchip {
    --fa: "";
    --fa--fa: "";
}

.fa-left-long-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-crown {
    --fa: "";
    --fa--fa: "";
}

.fa-weight-hanging {
    --fa: "";
    --fa--fa: "";
}

.fa-xmarks-lines {
    --fa: "";
    --fa--fa: "";
}

.fa-file-prescription {
    --fa: "";
    --fa--fa: "";
}

.fa-table-cells-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-range {
    --fa: "";
    --fa--fa: "";
}

.fa-flower-daffodil {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-back-point-up {
    --fa: "";
    --fa--fa: "";
}

.fa-weight,
.fa-weight-scale {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-to-arc {
    --fa: "";
    --fa--fa: "";
}

.fa-star-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-books {
    --fa: "";
    --fa--fa: "";
}

.fa-user-friends,
.fa-user-group {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-a-z,
.fa-sort-alpha-up {
    --fa: "";
    --fa--fa: "";
}

.fa-layer-group-plus,
.fa-layer-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-play-pause {
    --fa: "";
    --fa--fa: "";
}

.fa-block-question {
    --fa: "";
    --fa--fa: "";
}

.fa-snooze,
.fa-zzz {
    --fa: "";
    --fa--fa: "";
}

.fa-scanner-image {
    --fa: "";
    --fa--fa: "";
}

.fa-tv-retro {
    --fa: "";
    --fa--fa: "";
}

.fa-square-t {
    --fa: "";
    --fa--fa: "";
}

.fa-barn-silo,
.fa-farm {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-knight {
    --fa: "";
    --fa--fa: "";
}

.fa-bars-sort {
    --fa: "";
    --fa--fa: "";
}

.fa-palette-boxes,
.fa-pallet-alt,
.fa-pallet-boxes {
    --fa: "";
    --fa--fa: "";
}

.fa-face-laugh-squint,
.fa-laugh-squint {
    --fa: "";
    --fa--fa: "";
}

.fa-code-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-bolt-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-panel-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-binary-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-burrito {
    --fa: "";
    --fa--fa: "";
}

.fa-violin {
    --fa: "";
    --fa--fa: "";
}

.fa-objects-column {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-square-down,
.fa-square-chevron-down {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-triangle-instrument,
.fa-triangle-music {
    --fa: "";
    --fa--fa: "";
}

.fa-wheelchair {
    --fa: "";
    --fa--fa: "";
}

.fa-user-pilot-tie {
    --fa: "";
    --fa--fa: "";
}

.fa-piano-keyboard {
    --fa: "";
    --fa--fa: "";
}

.fa-bed-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-circle-up,
.fa-circle-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-toggle-on {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-portrait,
.fa-rectangle-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-person-walking,
.fa-walking {
    --fa: "";
    --fa--fa: "";
}

.fa-l {
    --fa: "L";
    --fa--fa: "LL";
}

.fa-signal-stream {
    --fa: "";
    --fa--fa: "";
}

.fa-down-to-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-z {
    --fa: "";
    --fa--fa: "";
}

.fa-stars {
    --fa: "";
    --fa--fa: "";
}

.fa-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-bed-pulse,
.fa-procedures {
    --fa: "";
    --fa--fa: "";
}

.fa-house-day {
    --fa: "";
    --fa--fa: "";
}

.fa-shuttle-space,
.fa-space-shuttle {
    --fa: "";
    --fa--fa: "";
}

.fa-shirt-long-sleeve {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-pie-alt,
.fa-chart-pie-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-face-laugh,
.fa-laugh {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-open {
    --fa: "";
    --fa--fa: "";
}

.fa-album-collection-circle-user {
    --fa: "";
    --fa--fa: "";
}

.fa-candy {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-hot,
.fa-soup {
    --fa: "";
    --fa--fa: "";
}

.fa-flatbread {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-code-fork {
    --fa: "";
    --fa--fa: "";
}

.fa-city {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-alt-1,
.fa-signal-bars-weak {
    --fa: "";
    --fa--fa: "";
}

.fa-microphone-alt,
.fa-microphone-lines {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-twelve {
    --fa: "";
    --fa--fa: "";
}

.fa-pepper-hot {
    --fa: "";
    --fa--fa: "";
}

.fa-citrus-slice {
    --fa: "";
    --fa--fa: "";
}

.fa-sheep {
    --fa: "";
    --fa--fa: "";
}

.fa-unlock {
    --fa: "";
    --fa--fa: "";
}

.fa-colon-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-headset {
    --fa: "";
    --fa--fa: "";
}

.fa-badger-honey {
    --fa: "";
    --fa--fa: "";
}

.fa-h4 {
    --fa: "";
    --fa--fa: "";
}

.fa-store-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-road-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-user-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-mars-stroke-up,
.fa-mars-stroke-v {
    --fa: "";
    --fa--fa: "";
}

.fa-champagne-glasses,
.fa-glass-cheers {
    --fa: "";
    --fa--fa: "";
}

.fa-taco {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-plus,
.fa-plus-hexagon {
    --fa: "";
    --fa--fa: "";
}

.fa-clipboard {
    --fa: "";
    --fa--fa: "";
}

.fa-house-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-file-arrow-up,
.fa-file-upload {
    --fa: "";
    --fa--fa: "";
}

.fa-wifi,
.fa-wifi-3,
.fa-wifi-strong {
    --fa: "";
    --fa--fa: "";
}

.fa-comments-alt,
.fa-messages {
    --fa: "";
    --fa--fa: "";
}

.fa-bath,
.fa-bathtub {
    --fa: "";
    --fa--fa: "";
}

.fa-umbrella-alt,
.fa-umbrella-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-history-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-underline {
    --fa: "";
    --fa--fa: "";
}

.fa-prescription-bottle-pill {
    --fa: "";
    --fa--fa: "";
}

.fa-user-edit,
.fa-user-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-binary-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-square-o {
    --fa: "";
    --fa--fa: "";
}

.fa-caduceus {
    --fa: "";
    --fa--fa: "";
}

.fa-signature {
    --fa: "";
    --fa--fa: "";
}

.fa-stroopwafel {
    --fa: "";
    --fa--fa: "";
}

.fa-bold {
    --fa: "";
    --fa--fa: "";
}

.fa-anchor-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-building-ngo {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter-3 {
    --fa: "";
    --fa--fa: "";
}

.fa-engine-exclamation,
.fa-engine-warning {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-down-right {
    --fa: "";
    --fa--fa: "";
}

.fa-square-k {
    --fa: "";
    --fa--fa: "";
}

.fa-manat-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-money-check-edit,
.fa-money-check-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-not-equal {
    --fa: "";
    --fa--fa: "";
}

.fa-border-style,
.fa-border-top-left {
    --fa: "";
    --fa--fa: "";
}

.fa-map-location-dot,
.fa-map-marked-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-tilde {
    --fa: "\~";
    --fa--fa: "\~\~";
}

.fa-jedi {
    --fa: "";
    --fa--fa: "";
}

.fa-poll,
.fa-square-poll-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-square-triangle,
.fa-sort-shapes-down-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-mug-hot {
    --fa: "";
    --fa--fa: "";
}

.fa-dog-leashed {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-car,
.fa-car-battery {
    --fa: "";
    --fa--fa: "";
}

.fa-face-downcast-sweat {
    --fa: "";
    --fa--fa: "";
}

.fa-mailbox-flag-up {
    --fa: "";
    --fa--fa: "";
}

.fa-memo-circle-info {
    --fa: "";
    --fa--fa: "";
}

.fa-gift {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-two {
    --fa: "";
    --fa--fa: "";
}

.fa-volume,
.fa-volume-medium {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter-5 {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-circle-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-coin-front {
    --fa: "";
    --fa--fa: "";
}

.fa-file-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-message-arrow-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-treasure-chest {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-queen {
    --fa: "";
    --fa--fa: "";
}

.fa-paint-brush-alt,
.fa-paint-brush-fine,
.fa-paintbrush-alt,
.fa-paintbrush-fine {
    --fa: "";
    --fa--fa: "";
}

.fa-glasses {
    --fa: "";
    --fa--fa: "";
}

.fa-hood-cloak {
    --fa: "";
    --fa--fa: "";
}

.fa-square-quote {
    --fa: "";
    --fa--fa: "";
}

.fa-up-left {
    --fa: "";
    --fa--fa: "";
}

.fa-bring-front {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-board {
    --fa: "";
    --fa--fa: "";
}

.fa-burger-cheese,
.fa-cheeseburger {
    --fa: "";
    --fa--fa: "";
}

.fa-building-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-repeat-1 {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-to-line,
.fa-arrow-to-bottom {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-5 {
    --fa: "";
    --fa--fa: "";
}

.fa-swap-arrows {
    --fa: "";
    --fa--fa: "";
}

.fa-right-long-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-person-chalkboard {
    --fa: "";
    --fa--fa: "";
}

.fa-mars-stroke-h,
.fa-mars-stroke-right {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-back-fist,
.fa-hand-rock {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-round-5 {
    --fa: "";
    --fa--fa: "";
}

.fa-tally,
.fa-tally-5 {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-square-up,
.fa-square-caret-up {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-showers-water {
    --fa: "";
    --fa--fa: "";
}

.fa-bar-chart,
.fa-chart-bar {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-bubbles,
.fa-hands-wash {
    --fa: "";
    --fa--fa: "";
}

.fa-less-than-equal {
    --fa: "";
    --fa--fa: "";
}

.fa-train {
    --fa: "";
    --fa--fa: "";
}

.fa-up-from-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-eye-low-vision,
.fa-low-vision {
    --fa: "";
    --fa--fa: "";
}

.fa-traffic-light-go {
    --fa: "";
    --fa--fa: "";
}

.fa-face-exhaling {
    --fa: "";
    --fa--fa: "";
}

.fa-sensor-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-user-unlock {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-divide {
    --fa: "";
    --fa--fa: "";
}

.fa-00 {
    --fa: "";
    --fa--fa: "";
}

.fa-crow {
    --fa: "";
    --fa--fa: "";
}

.fa-betamax,
.fa-cassette-betamax {
    --fa: "";
    --fa--fa: "";
}

.fa-sailboat {
    --fa: "";
    --fa--fa: "";
}

.fa-window-restore {
    --fa: "";
    --fa--fa: "";
}

.fa-nfc-magnifying-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-file-binary {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-v {
    --fa: "";
    --fa--fa: "";
}

.fa-plus-square,
.fa-square-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-scoops {
    --fa: "";
    --fa--fa: "";
}

.fa-mistletoe {
    --fa: "";
    --fa--fa: "";
}

.fa-custard {
    --fa: "";
    --fa--fa: "";
}

.fa-lacrosse-stick {
    --fa: "";
    --fa--fa: "";
}

.fa-hockey-mask {
    --fa: "";
    --fa--fa: "";
}

.fa-sunrise {
    --fa: "";
    --fa--fa: "";
}

.fa-subtitles {
    --fa: "";
    --fa--fa: "";
}

.fa-panel-ews {
    --fa: "";
    --fa--fa: "";
}

.fa-torii-gate {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-lines,
.fa-message-lines {
    --fa: "";
    --fa--fa: "";
}

.fa-frog {
    --fa: "";
    --fa--fa: "";
}

.fa-bucket {
    --fa: "";
    --fa--fa: "";
}

.fa-floppy-disk-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-image {
    --fa: "";
    --fa--fa: "";
}

.fa-window-frame {
    --fa: "";
    --fa--fa: "";
}

.fa-microphone {
    --fa: "";
    --fa--fa: "";
}

.fa-cow {
    --fa: "";
    --fa--fa: "";
}

.fa-file-zip {
    --fa: "";
    --fa--fa: "";
}

.fa-square-ring {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-from-top,
.fa-down-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-up {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-times,
.fa-shield-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-screwdriver {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-sort-down,
.fa-sort-circle-down {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-closed {
    --fa: "";
    --fa--fa: "";
}

.fa-house-tsunami {
    --fa: "";
    --fa--fa: "";
}

.fa-square-nfi {
    --fa: "";
    --fa--fa: "";
}

.fa-forklift {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-from-ground-water {
    --fa: "";
    --fa--fa: "";
}

.fa-bracket-square-right {
    --fa: "\]";
    --fa--fa: "\]\]";
}

.fa-glass-martini-alt,
.fa-martini-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-square-binary {
    --fa: "";
    --fa--fa: "";
}

.fa-rotate-back,
.fa-rotate-backward,
.fa-rotate-left,
.fa-undo-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-columns,
.fa-table-columns {
    --fa: "";
    --fa--fa: "";
}

.fa-square-a {
    --fa: "";
    --fa--fa: "";
}

.fa-tick {
    --fa: "";
    --fa--fa: "";
}

.fa-lemon {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-mask {
    --fa: "";
    --fa--fa: "";
}

.fa-handshake {
    --fa: "";
    --fa--fa: "";
}

.fa-gem {
    --fa: "";
    --fa--fa: "";
}

.fa-dolly,
.fa-dolly-box {
    --fa: "";
    --fa--fa: "";
}

.fa-smoking {
    --fa: "";
    --fa--fa: "";
}

.fa-compress-arrows-alt,
.fa-minimize {
    --fa: "";
    --fa--fa: "";
}

.fa-refrigerator {
    --fa: "";
    --fa--fa: "";
}

.fa-monument {
    --fa: "";
    --fa--fa: "";
}

.fa-octagon-xmark,
.fa-times-octagon,
.fa-xmark-octagon {
    --fa: "";
    --fa--fa: "";
}

.fa-align-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-snowplow {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-double-right,
.fa-angles-right {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-couch,
.fa-truck-ramp-couch {
    --fa: "";
    --fa--fa: "";
}

.fa-cannabis {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-play,
.fa-play-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-right-and-arrow-down-left-from-center {
    --fa: "";
    --fa--fa: "";
}

.fa-location-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-tablets {
    --fa: "";
    --fa--fa: "";
}

.fa-360-degrees {
    --fa: "";
    --fa--fa: "";
}

.fa-ethernet {
    --fa: "";
    --fa--fa: "";
}

.fa-eur,
.fa-euro,
.fa-euro-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-chair {
    --fa: "";
    --fa--fa: "";
}

.fa-check-circle,
.fa-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-square-dashed-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-circle-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-money-simple-from-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-bat {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-stop,
.fa-stop-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-headphones {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-rotary {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-to-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-compass-drafting,
.fa-drafting-compass {
    --fa: "";
    --fa--fa: "";
}

.fa-plate-wheat {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-circle-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-chopsticks {
    --fa: "";
    --fa--fa: "";
}

.fa-car-mechanic,
.fa-car-wrench {
    --fa: "";
    --fa--fa: "";
}

.fa-icicles {
    --fa: "";
    --fa--fa: "";
}

.fa-person-shelter {
    --fa: "";
    --fa--fa: "";
}

.fa-neuter {
    --fa: "";
    --fa--fa: "";
}

.fa-id-badge {
    --fa: "";
    --fa--fa: "";
}

.fa-kazoo {
    --fa: "";
    --fa--fa: "";
}

.fa-marker {
    --fa: "";
    --fa--fa: "";
}

.fa-bin-bottles {
    --fa: "";
    --fa--fa: "";
}

.fa-face-laugh-beam,
.fa-laugh-beam {
    --fa: "";
    --fa--fa: "";
}

.fa-square-arrow-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-tree-large {
    --fa: "";
    --fa--fa: "";
}

.fa-helicopter-symbol {
    --fa: "";
    --fa--fa: "";
}

.fa-aperture {
    --fa: "";
    --fa--fa: "";
}

.fa-universal-access {
    --fa: "";
    --fa--fa: "";
}

.fa-gear-complex {
    --fa: "";
    --fa--fa: "";
}

.fa-file-magnifying-glass,
.fa-file-search {
    --fa: "";
    --fa--fa: "";
}

.fa-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-circle-up,
.fa-circle-chevron-up {
    --fa: "";
    --fa--fa: "";
}

.fa-user-police {
    --fa: "";
    --fa--fa: "";
}

.fa-lari-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-volcano {
    --fa: "";
    --fa--fa: "";
}

.fa-teddy-bear {
    --fa: "";
    --fa--fa: "";
}

.fa-stocking {
    --fa: "";
    --fa--fa: "";
}

.fa-person-walking-dashed-line-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-image-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-mask-snorkel {
    --fa: "";
    --fa--fa: "";
}

.fa-smoke {
    --fa: "";
    --fa--fa: "";
}

.fa-gbp,
.fa-pound-sign,
.fa-sterling-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-viruses {
    --fa: "";
    --fa--fa: "";
}

.fa-square-person-confined {
    --fa: "";
    --fa--fa: "";
}

.fa-user-tie {
    --fa: "";
    --fa--fa: "";
}

.fa-up-to-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-long,
.fa-long-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-tent-arrow-down-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-certificate {
    --fa: "";
    --fa--fa: "";
}

.fa-crystal-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-mail-reply-all,
.fa-reply-all {
    --fa: "";
    --fa--fa: "";
}

.fa-suitcase {
    --fa: "";
    --fa--fa: "";
}

.fa-person-skating,
.fa-skating {
    --fa: "";
    --fa--fa: "";
}

.fa-star-shooting {
    --fa: "";
    --fa--fa: "";
}

.fa-binary-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-filter-circle-dollar,
.fa-funnel-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-retro {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-circle-down,
.fa-circle-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-edit,
.fa-comment-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-to-file,
.fa-file-import {
    --fa: "";
    --fa--fa: "";
}

.fa-banjo {
    --fa: "";
    --fa--fa: "";
}

.fa-external-link-square,
.fa-square-arrow-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-light-emergency-on {
    --fa: "";
    --fa--fa: "";
}

.fa-kerning {
    --fa: "";
    --fa--fa: "";
}

.fa-box-open {
    --fa: "";
    --fa--fa: "";
}

.fa-square-f {
    --fa: "";
    --fa--fa: "";
}

.fa-scroll {
    --fa: "";
    --fa--fa: "";
}

.fa-spa {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-from-right,
.fa-arrow-left-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-strawberry {
    --fa: "";
    --fa--fa: "";
}

.fa-location-pin-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-pause {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-eight-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-alt,
.fa-plane-engines {
    --fa: "";
    --fa--fa: "";
}

.fa-hill-avalanche {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-0,
.fa-temperature-empty,
.fa-thermometer-0,
.fa-thermometer-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-bomb {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-low,
.fa-tachometer-alt-slow {
    --fa: "";
    --fa--fa: "";
}

.fa-registered {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-can-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-address-card,
.fa-contact-card,
.fa-vcard {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-fft {
    --fa: "";
    --fa--fa: "";
}

.fa-balance-scale-right,
.fa-scale-unbalanced-flip {
    --fa: "";
    --fa--fa: "";
}

.fa-globe-snow {
    --fa: "";
    --fa--fa: "";
}

.fa-subscript {
    --fa: "";
    --fa--fa: "";
}

.fa-diamond-turn-right,
.fa-directions {
    --fa: "";
    --fa--fa: "";
}

.fa-integral {
    --fa: "";
    --fa--fa: "";
}

.fa-burst {
    --fa: "";
    --fa--fa: "";
}

.fa-house-laptop,
.fa-laptop-house {
    --fa: "";
    --fa--fa: "";
}

.fa-face-tired,
.fa-tired {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bills {
    --fa: "";
    --fa--fa: "";
}

.fa-blinds-raised {
    --fa: "";
    --fa--fa: "";
}

.fa-smog {
    --fa: "";
    --fa--fa: "";
}

.fa-ufo-beam {
    --fa: "";
    --fa--fa: "";
}

.fa-hydra {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-circle-up,
.fa-circle-caret-up {
    --fa: "";
    --fa--fa: "";
}

.fa-user-vneck-hair-long {
    --fa: "";
    --fa--fa: "";
}

.fa-square-a-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-crutch {
    --fa: "";
    --fa--fa: "";
}

.fa-gas-pump-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-arrow-up,
.fa-cloud-upload,
.fa-cloud-upload-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-palette {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter-4 {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-mixed-up-circle-currency {
    --fa: "";
    --fa--fa: "";
}

.fa-objects-align-right {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-turn-right {
    --fa: "";
    --fa--fa: "";
}

.fa-vest {
    --fa: "";
    --fa--fa: "";
}

.fa-pig {
    --fa: "";
    --fa--fa: "";
}

.fa-inbox-full {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-envelope,
.fa-envelope-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-construction,
.fa-triangle-person-digging {
    --fa: "";
    --fa--fa: "";
}

.fa-ferry {
    --fa: "";
    --fa--fa: "";
}

.fa-bullseye-arrow {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-down-to-people {
    --fa: "";
    --fa--fa: "";
}

.fa-seedling,
.fa-sprout {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-seven {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-alt-h,
.fa-left-right {
    --fa: "";
    --fa--fa: "";
}

.fa-boxes-packing {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-circle-left,
.fa-circle-arrow-left {
    --fa: "";
    --fa--fa: "";
}

.fa-flashlight {
    --fa: "";
    --fa--fa: "";
}

.fa-file-jpg {
    --fa: "";
    --fa--fa: "";
}

.fa-group-arrows-rotate {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-food {
    --fa: "";
    --fa--fa: "";
}

.fa-square-9 {
    --fa: "";
    --fa--fa: "";
}

.fa-candy-cane {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-wide-short,
.fa-sort-amount-asc,
.fa-sort-amount-down {
    --fa: "";
    --fa--fa: "";
}

.fa-dollar-square,
.fa-square-dollar,
.fa-usd-square {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-seedling {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-check,
.fa-message-check {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-bolt,
.fa-thunderstorm {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-line-up-down {
    --fa: "";
    --fa--fa: "";
}

.fa-remove-format,
.fa-text-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-watch {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-text {
    --fa: "";
    --fa--fa: "";
}

.fa-projector {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-wink,
.fa-smile-wink {
    --fa: "";
    --fa--fa: "";
}

.fa-tombstone-alt,
.fa-tombstone-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-king-alt,
.fa-chess-king-piece {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-6 {
    --fa: "";
    --fa--fa: "";
}

.fa-waves-sine {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-left,
.fa-left {
    --fa: "";
    --fa--fa: "";
}

.fa-file-word {
    --fa: "";
    --fa--fa: "";
}

.fa-file-powerpoint {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-square-down,
.fa-square-down {
    --fa: "";
    --fa--fa: "";
}

.fa-objects-align-center-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-h,
.fa-arrows-left-right {
    --fa: "";
    --fa--fa: "";
}

.fa-house-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-arrow-down,
.fa-cloud-download,
.fa-cloud-download-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-wreath {
    --fa: "";
    --fa--fa: "";
}

.fa-children {
    --fa: "";
    --fa--fa: "";
}

.fa-meter-droplet {
    --fa: "";
    --fa--fa: "";
}

.fa-blackboard,
.fa-chalkboard {
    --fa: "";
    --fa--fa: "";
}

.fa-user-alt-slash,
.fa-user-large-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-4,
.fa-signal-strong {
    --fa: "";
    --fa--fa: "";
}

.fa-lollipop,
.fa-lollypop {
    --fa: "";
    --fa--fa: "";
}

.fa-list-tree {
    --fa: "";
    --fa--fa: "";
}

.fa-envelope-open {
    --fa: "";
    --fa--fa: "";
}

.fa-draw-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-cat-space {
    --fa: "";
    --fa--fa: "";
}

.fa-handshake-alt-slash,
.fa-handshake-simple-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-rabbit-fast,
.fa-rabbit-running {
    --fa: "";
    --fa--fa: "";
}

.fa-memo-pad {
    --fa: "";
    --fa--fa: "";
}

.fa-mattress-pillow {
    --fa: "";
    --fa--fa: "";
}

.fa-alarm-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-alicorn {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-question {
    --fa: "";
    --fa--fa: "";
}

.fa-gingerbread-man {
    --fa: "";
    --fa--fa: "";
}

.fa-guarani-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-burger-fries {
    --fa: "";
    --fa--fa: "";
}

.fa-mug-tea {
    --fa: "";
    --fa--fa: "";
}

.fa-border-top {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-rotate,
.fa-refresh,
.fa-sync {
    --fa: "";
    --fa--fa: "";
}

.fa-book-circle,
.fa-circle-book-open {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-to-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-fire-extinguisher {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-arrows-rotate {
    --fa: "";
    --fa--fa: "";
}

.fa-garage-open {
    --fa: "";
    --fa--fa: "";
}

.fa-shelves-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-cruzeiro-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-watch-apple {
    --fa: "";
    --fa--fa: "";
}

.fa-watch-calculator {
    --fa: "";
    --fa--fa: "";
}

.fa-list-dropdown {
    --fa: "";
    --fa--fa: "";
}

.fa-cabinet-filing {
    --fa: "";
    --fa--fa: "";
}

.fa-burger-soda {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-square-up,
.fa-square-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-greater-than-equal {
    --fa: "";
    --fa--fa: "";
}

.fa-pallet-box {
    --fa: "";
    --fa--fa: "";
}

.fa-face-confounded {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-alt,
.fa-shield-halved {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-plow {
    --fa: "";
    --fa--fa: "";
}

.fa-atlas,
.fa-book-atlas {
    --fa: "";
    --fa--fa: "";
}

.fa-virus {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-round-2 {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-middle-top {
    --fa: "";
    --fa--fa: "";
}

.fa-wave {
    --fa: "";
    --fa--fa: "";
}

.fa-envelope-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-layer-group {
    --fa: "";
    --fa--fa: "";
}

.fa-restroom-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-to-dot {
    --fa: "";
    --fa--fa: "";
}

.fa-border-outer {
    --fa: "";
    --fa--fa: "";
}

.fa-hashtag-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-two-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-archway {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-house-chimney-crack,
.fa-house-damage {
    --fa: "";
    --fa--fa: "";
}

.fa-file-archive,
.fa-file-zipper {
    --fa: "";
    --fa--fa: "";
}

.fa-ticket-perforated {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-half {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-check {
    --fa: "";
    --fa--fa: "";
}

.fa-square {
    --fa: "";
    --fa--fa: "";
}

.fa-memo {
    --fa: "";
    --fa--fa: "";
}

.fa-glass-martini,
.fa-martini-glass-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-couch {
    --fa: "";
    --fa--fa: "";
}

.fa-cedi-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-italic {
    --fa: "";
    --fa--fa: "";
}

.fa-glass-citrus {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-lines-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-table-cells-column-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-church {
    --fa: "";
    --fa--fa: "";
}

.fa-person-snowmobiling,
.fa-snowmobile {
    --fa: "";
    --fa--fa: "";
}

.fa-face-hushed {
    --fa: "";
    --fa--fa: "";
}

.fa-comments-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-tickets-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-pickaxe {
    --fa: "";
    --fa--fa: "";
}

.fa-link-simple-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-democrat {
    --fa: "";
    --fa--fa: "";
}

.fa-face-confused {
    --fa: "";
    --fa--fa: "";
}

.fa-pinball {
    --fa: "";
    --fa--fa: "";
}

.fa-z {
    --fa: "Z";
    --fa--fa: "ZZ";
}

.fa-person-skiing,
.fa-skiing {
    --fa: "";
    --fa--fa: "";
}

.fa-deer {
    --fa: "";
    --fa--fa: "";
}

.fa-input-pipe {
    --fa: "";
    --fa--fa: "";
}

.fa-road-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-a {
    --fa: "A";
    --fa--fa: "AA";
}

.fa-bookmark-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-arrow-down,
.fa-temperature-down {
    --fa: "";
    --fa--fa: "";
}

.fa-mace {
    --fa: "";
    --fa--fa: "";
}

.fa-feather-alt,
.fa-feather-pointed {
    --fa: "";
    --fa--fa: "";
}

.fa-sausage {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-can-clock {
    --fa: "";
    --fa--fa: "";
}

.fa-p {
    --fa: "P";
    --fa--fa: "PP";
}

.fa-broom-wide {
    --fa: "";
    --fa--fa: "";
}

.fa-snowflake {
    --fa: "";
    --fa--fa: "";
}

.fa-stomach {
    --fa: "";
    --fa--fa: "";
}

.fa-newspaper {
    --fa: "";
    --fa--fa: "";
}

.fa-ad,
.fa-rectangle-ad {
    --fa: "";
    --fa--fa: "";
}

.fa-guitar-electric {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-turn-down-right {
    --fa: "";
    --fa--fa: "";
}

.fa-moon-cloud {
    --fa: "";
    --fa--fa: "";
}

.fa-bread-slice-butter {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-circle-right,
.fa-circle-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-user-group-crown,
.fa-users-crown {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-i {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-paper-check {
    --fa: "";
    --fa--fa: "";
}

.fa-filter-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-locust {
    --fa: "";
    --fa--fa: "";
}

.fa-sort,
.fa-unsorted {
    --fa: "";
    --fa--fa: "";
}

.fa-list-1-2,
.fa-list-numeric,
.fa-list-ol {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-waterfall {
    --fa: "";
    --fa--fa: "";
}

.fa-sparkle {
    --fa: "";
    --fa--fa: "";
}

.fa-face-party {
    --fa: "";
    --fa--fa: "";
}

.fa-kidneys {
    --fa: "";
    --fa--fa: "";
}

.fa-wifi-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-network {
    --fa: "";
    --fa--fa: "";
}

.fa-person-dress-burst {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-d4 {
    --fa: "";
    --fa--fa: "";
}

.fa-money-check-alt,
.fa-money-check-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-vector-square {
    --fa: "";
    --fa--fa: "";
}

.fa-bread-slice {
    --fa: "";
    --fa--fa: "";
}

.fa-language {
    --fa: "";
    --fa--fa: "";
}

.fa-wheat-awn-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-face-kiss-wink-heart,
.fa-kiss-wink-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-dagger {
    --fa: "";
    --fa--fa: "";
}

.fa-podium {
    --fa: "";
    --fa--fa: "";
}

.fa-diamonds-4 {
    --fa: "";
    --fa--fa: "";
}

.fa-memo-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-route-highway {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-to-bottom,
.fa-down-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-filter {
    --fa: "";
    --fa--fa: "";
}

.fa-square-g {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-phone,
.fa-phone-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-clipboard-prescription {
    --fa: "";
    --fa--fa: "";
}

.fa-user-nurse-hair {
    --fa: "";
    --fa--fa: "";
}

.fa-question {
    --fa: "\?";
    --fa--fa: "\?\?";
}

.fa-file-signature {
    --fa: "";
    --fa--fa: "";
}

.fa-toggle-large-on {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-alt,
.fa-up-down-left-right {
    --fa: "";
    --fa--fa: "";
}

.fa-dryer-alt,
.fa-dryer-heat {
    --fa: "";
    --fa--fa: "";
}

.fa-house-chimney-user {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-small-big,
.fa-sort-size-up-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-train-track {
    --fa: "";
    --fa--fa: "";
}

.fa-puzzle-piece {
    --fa: "";
    --fa--fa: "";
}

.fa-money-check {
    --fa: "";
    --fa--fa: "";
}

.fa-star-half-alt,
.fa-star-half-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-file-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-code {
    --fa: "";
    --fa--fa: "";
}

.fa-glass-whiskey,
.fa-whiskey-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-moon-stars {
    --fa: "";
    --fa--fa: "";
}

.fa-building-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-clothes-hanger {
    --fa: "";
    --fa--fa: "";
}

.fa-mobile-iphone,
.fa-mobile-notch {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-chart {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-right-from-square,
.fa-external-link {
    --fa: "";
    --fa--fa: "";
}

.fa-cubes-stacked {
    --fa: "";
    --fa--fa: "";
}

.fa-images-user {
    --fa: "";
    --fa--fa: "";
}

.fa-krw,
.fa-won,
.fa-won-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-image-polaroid-user {
    --fa: "";
    --fa--fa: "";
}

.fa-virus-covid {
    --fa: "";
    --fa--fa: "";
}

.fa-square-ellipsis {
    --fa: "";
    --fa--fa: "";
}

.fa-pie {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-knight-alt,
.fa-chess-knight-piece {
    --fa: "";
    --fa--fa: "";
}

.fa-austral-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-f {
    --fa: "F";
    --fa--fa: "FF";
}

.fa-leaf {
    --fa: "";
    --fa--fa: "";
}

.fa-bed-bunk {
    --fa: "";
    --fa--fa: "";
}

.fa-road {
    --fa: "";
    --fa--fa: "";
}

.fa-cab,
.fa-taxi {
    --fa: "";
    --fa--fa: "";
}

.fa-person-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-pie,
.fa-pie-chart {
    --fa: "";
    --fa--fa: "";
}

.fa-bolt-lightning {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-eight {
    --fa: "";
    --fa--fa: "";
}

.fa-sack-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-file-xls {
    --fa: "";
    --fa--fa: "";
}

.fa-file-excel {
    --fa: "";
    --fa--fa: "";
}

.fa-file-contract {
    --fa: "";
    --fa--fa: "";
}

.fa-fish-fins {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-q {
    --fa: "";
    --fa--fa: "";
}

.fa-building-flag {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-beam,
.fa-grin-beam {
    --fa: "";
    --fa--fa: "";
}

.fa-object-ungroup {
    --fa: "";
    --fa--fa: "";
}

.fa-face-disguise {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-arrow-down-right {
    --fa: "";
    --fa--fa: "";
}

.fa-alien-8bit,
.fa-alien-monster {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-point-ribbon {
    --fa: "";
    --fa--fa: "";
}

.fa-poop {
    --fa: "";
    --fa--fa: "";
}

.fa-object-exclude {
    --fa: "";
    --fa--fa: "";
}

.fa-telescope {
    --fa: "";
    --fa--fa: "";
}

.fa-location-pin,
.fa-map-marker {
    --fa: "";
    --fa--fa: "";
}

.fa-square-list {
    --fa: "";
    --fa--fa: "";
}

.fa-kaaba {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-paper {
    --fa: "";
    --fa--fa: "";
}

.fa-hard-hat,
.fa-hat-hard,
.fa-helmet-safety {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-code {
    --fa: "";
    --fa--fa: "";
}

.fa-sim-cards {
    --fa: "";
    --fa--fa: "";
}

.fa-starship {
    --fa: "";
    --fa--fa: "";
}

.fa-eject {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-circle-right,
.fa-circle-right {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-seal {
    --fa: "";
    --fa--fa: "";
}

.fa-user-cowboy {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-vertical-nft {
    --fa: "";
    --fa--fa: "";
}

.fa-face-rolling-eyes,
.fa-meh-rolling-eyes {
    --fa: "";
    --fa--fa: "";
}

.fa-bread-loaf {
    --fa: "";
    --fa--fa: "";
}

.fa-rings-wedding {
    --fa: "";
    --fa--fa: "";
}

.fa-object-group {
    --fa: "";
    --fa--fa: "";
}

.fa-french-fries {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-line,
.fa-line-chart {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-arrow-down,
.fa-calendar-download {
    --fa: "";
    --fa--fa: "";
}

.fa-send-back {
    --fa: "";
    --fa--fa: "";
}

.fa-mask-ventilator {
    --fa: "";
    --fa--fa: "";
}

.fa-tickets {
    --fa: "";
    --fa--fa: "";
}

.fa-signature-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-map-signs,
.fa-signs-post {
    --fa: "";
    --fa--fa: "";
}

.fa-octagon-plus,
.fa-plus-octagon {
    --fa: "";
    --fa--fa: "";
}

.fa-cash-register {
    --fa: "";
    --fa--fa: "";
}

.fa-person-circle-question {
    --fa: "";
    --fa--fa: "";
}

.fa-melon-slice {
    --fa: "";
    --fa--fa: "";
}

.fa-space-station-moon {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-smile,
.fa-message-smile {
    --fa: "";
    --fa--fa: "";
}

.fa-cup-straw {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-from-right,
.fa-left-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-h {
    --fa: "H";
    --fa--fa: "HH";
}

.fa-basket-shopping-simple,
.fa-shopping-basket-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-heart,
.fa-hands-holding-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-nine {
    --fa: "";
    --fa--fa: "";
}

.fa-hammer-brush {
    --fa: "";
    --fa--fa: "";
}

.fa-tarp {
    --fa: "";
    --fa--fa: "";
}

.fa-face-sleepy {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-horns {
    --fa: "";
    --fa--fa: "";
}

.fa-screwdriver-wrench,
.fa-tools {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-to-eye {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-three-quarters {
    --fa: "";
    --fa--fa: "";
}

.fa-trophy-alt,
.fa-trophy-star {
    --fa: "";
    --fa--fa: "";
}

.fa-plug-circle-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-face-thermometer {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-round-4 {
    --fa: "";
    --fa--fa: "";
}

.fa-sign-posts-wrench {
    --fa: "";
    --fa--fa: "";
}

.fa-shirt-running {
    --fa: "";
    --fa--fa: "";
}

.fa-book-circle-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-face-nauseated {
    --fa: "";
    --fa--fa: "";
}

.fa-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-file-chart-pie {
    --fa: "";
    --fa--fa: "";
}

.fa-mars-and-venus {
    --fa: "";
    --fa--fa: "";
}

.fa-home-user,
.fa-house-user {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-arrow-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-dumpster-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-minus,
.fa-minus-hexagon {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-to-left,
.fa-left-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-house-crack {
    --fa: "";
    --fa--fa: "";
}

.fa-paw-alt,
.fa-paw-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left-long-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-brackets-round,
.fa-parentheses {
    --fa: "";
    --fa--fa: "";
}

.fa-cocktail,
.fa-martini-glass-citrus {
    --fa: "";
    --fa--fa: "";
}

.fa-user-shakespeare {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-to-arc {
    --fa: "";
    --fa--fa: "";
}

.fa-face-surprise,
.fa-surprise {
    --fa: "";
    --fa--fa: "";
}

.fa-bottle-water {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-pause,
.fa-pause-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-folders {
    --fa: "";
    --fa--fa: "";
}

.fa-angel {
    --fa: "";
    --fa--fa: "";
}

.fa-value-absolute {
    --fa: "";
    --fa--fa: "";
}

.fa-rabbit {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-paper-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-euro {
    --fa: "";
    --fa--fa: "";
}

.fa-apple-alt,
.fa-apple-whole {
    --fa: "";
    --fa--fa: "";
}

.fa-kitchen-set {
    --fa: "";
    --fa--fa: "";
}

.fa-diamond-half {
    --fa: "";
    --fa--fa: "";
}

.fa-lock-alt,
.fa-lock-keyhole {
    --fa: "";
    --fa--fa: "";
}

.fa-r {
    --fa: "R";
    --fa--fa: "RR";
}

.fa-temperature-1,
.fa-temperature-quarter,
.fa-thermometer-1,
.fa-thermometer-quarter {
    --fa: "";
    --fa--fa: "";
}

.fa-info-square,
.fa-square-info {
    --fa: "";
    --fa--fa: "";
}

.fa-wifi-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-paper-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-holding-dollar,
.fa-hands-usd {
    --fa: "";
    --fa--fa: "";
}

.fa-cube {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-triangle-square,
.fa-sort-shapes-down {
    --fa: "";
    --fa--fa: "";
}

.fa-bitcoin-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-shutters {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-dog {
    --fa: "";
    --fa--fa: "";
}

.fa-solar-panel {
    --fa: "";
    --fa--fa: "";
}

.fa-lock-open {
    --fa: "";
    --fa--fa: "";
}

.fa-table-tree {
    --fa: "";
    --fa--fa: "";
}

.fa-house-chimney-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-tally-3 {
    --fa: "";
    --fa--fa: "";
}

.fa-elevator {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill-transfer {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill-trend-up {
    --fa: "";
    --fa--fa: "";
}

.fa-house-flood-water-circle-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-poll-h,
.fa-square-poll-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-left-to-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-sword {
    --fa: "";
    --fa--fa: "";
}

.fa-backward-fast,
.fa-fast-backward {
    --fa: "";
    --fa--fa: "";
}

.fa-recycle {
    --fa: "";
    --fa--fa: "";
}

.fa-user-astronaut {
    --fa: "";
    --fa--fa: "";
}

.fa-interrobang {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-dashed {
    --fa: "";
    --fa--fa: "";
}

.fa-trademark {
    --fa: "";
    --fa--fa: "";
}

.fa-basketball,
.fa-basketball-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-fork-knife,
.fa-utensils-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-satellite-dish {
    --fa: "";
    --fa--fa: "";
}

.fa-badge-check {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-circle-up,
.fa-circle-up {
    --fa: "";
    --fa--fa: "";
}

.fa-slider {
    --fa: "";
    --fa--fa: "";
}

.fa-mobile-alt,
.fa-mobile-screen-button {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-one-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-inbox-arrow-up,
.fa-inbox-out {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-volume-high,
.fa-volume-up {
    --fa: "";
    --fa--fa: "";
}

.fa-users-rays {
    --fa: "";
    --fa--fa: "";
}

.fa-wallet {
    --fa: "";
    --fa--fa: "";
}

.fa-octagon-check {
    --fa: "";
    --fa--fa: "";
}

.fa-flatbread-stuffed {
    --fa: "";
    --fa--fa: "";
}

.fa-clipboard-check {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-shipping-timed,
.fa-truck-clock {
    --fa: "";
    --fa--fa: "";
}

.fa-pool-8-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-file-audio {
    --fa: "";
    --fa--fa: "";
}

.fa-turn-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-lock-hashtag {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-radar {
    --fa: "";
    --fa--fa: "";
}

.fa-staff {
    --fa: "";
    --fa--fa: "";
}

.fa-burger,
.fa-hamburger {
    --fa: "";
    --fa--fa: "";
}

.fa-utility-pole {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter-6 {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-turn-left {
    --fa: "";
    --fa--fa: "";
}

.fa-wrench {
    --fa: "";
    --fa--fa: "";
}

.fa-bugs {
    --fa: "";
    --fa--fa: "";
}

.fa-vector-polygon {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-nested {
    --fa: "";
    --fa--fa: "";
}

.fa-rupee,
.fa-rupee-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-file-image {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-question,
.fa-question-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-tickets-perforated {
    --fa: "";
    --fa--fa: "";
}

.fa-image-user {
    --fa: "";
    --fa--fa: "";
}

.fa-buoy {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-departure {
    --fa: "";
    --fa--fa: "";
}

.fa-handshake-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-book-bookmark {
    --fa: "";
    --fa--fa: "";
}

.fa-border-center-h {
    --fa: "";
    --fa--fa: "";
}

.fa-can-food {
    --fa: "";
    --fa--fa: "";
}

.fa-typewriter {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-from-arc {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-k {
    --fa: "";
    --fa--fa: "";
}

.fa-face-hand-over-mouth {
    --fa: "";
    --fa--fa: "";
}

.fa-popcorn {
    --fa: "";
    --fa--fa: "";
}

.fa-house-flood,
.fa-house-water {
    --fa: "";
    --fa--fa: "";
}

.fa-object-subtract {
    --fa: "";
    --fa--fa: "";
}

.fa-code-branch {
    --fa: "";
    --fa--fa: "";
}

.fa-warehouse-alt,
.fa-warehouse-full {
    --fa: "";
    --fa--fa: "";
}

.fa-hat-cowboy {
    --fa: "";
    --fa--fa: "";
}

.fa-bridge {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-alt,
.fa-phone-flip {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-from-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-file-doc {
    --fa: "";
    --fa--fa: "";
}

.fa-square-quarters {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-front {
    --fa: "";
    --fa--fa: "";
}

.fa-cat {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-circle-left,
.fa-circle-caret-left {
    --fa: "";
    --fa--fa: "";
}

.fa-files {
    --fa: "";
    --fa--fa: "";
}

.fa-anchor-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-face-clouds {
    --fa: "";
    --fa--fa: "";
}

.fa-user-crown {
    --fa: "";
    --fa--fa: "";
}

.fa-basket-shopping-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-field {
    --fa: "";
    --fa--fa: "";
}

.fa-route {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-clipboard-question {
    --fa: "";
    --fa--fa: "";
}

.fa-panorama {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-teeth-open {
    --fa: "";
    --fa--fa: "";
}

.fa-user-tie-hair-long {
    --fa: "";
    --fa--fa: "";
}

.fa-file-circle-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-turn-right {
    --fa: "";
    --fa--fa: "";
}

.fa-tags {
    --fa: "";
    --fa--fa: "";
}

.fa-wine-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-fast-forward,
.fa-forward-fast {
    --fa: "";
    --fa--fa: "";
}

.fa-face-meh-blank,
.fa-meh-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-user-robot {
    --fa: "";
    --fa--fa: "";
}

.fa-parking,
.fa-square-parking {
    --fa: "";
    --fa--fa: "";
}

.fa-card-diamond {
    --fa: "";
    --fa--fa: "";
}

.fa-face-zipper {
    --fa: "";
    --fa--fa: "";
}

.fa-face-raised-eyebrow {
    --fa: "";
    --fa--fa: "";
}

.fa-house-signal {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-square-up,
.fa-square-chevron-up {
    --fa: "";
    --fa--fa: "";
}

.fa-bars-progress,
.fa-tasks-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-faucet-drip {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-dolphin {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-r {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-flatbed,
.fa-dolly-flatbed {
    --fa: "";
    --fa--fa: "";
}

.fa-ban-smoking,
.fa-smoking-ban {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-sort-up,
.fa-sort-circle-up {
    --fa: "";
    --fa--fa: "";
}

.fa-terminal {
    --fa: "";
    --fa--fa: "";
}

.fa-mobile-button {
    --fa: "";
    --fa--fa: "";
}

.fa-house-medical-flag {
    --fa: "";
    --fa--fa: "";
}

.fa-basket-shopping,
.fa-shopping-basket {
    --fa: "";
    --fa--fa: "";
}

.fa-tape {
    --fa: "";
    --fa--fa: "";
}

.fa-chestnut {
    --fa: "";
    --fa--fa: "";
}

.fa-bus-alt,
.fa-bus-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-eye {
    --fa: "";
    --fa--fa: "";
}

.fa-face-sad-cry,
.fa-sad-cry {
    --fa: "";
    --fa--fa: "";
}

.fa-heat {
    --fa: "";
    --fa--fa: "";
}

.fa-ticket-airline,
.fa-ticket-perforated-plane,
.fa-ticket-plane {
    --fa: "";
    --fa--fa: "";
}

.fa-boot-heeled {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-minimize,
.fa-compress-arrows {
    --fa: "";
    --fa--fa: "";
}

.fa-audio-description {
    --fa: "";
    --fa--fa: "";
}

.fa-person-military-to-person {
    --fa: "";
    --fa--fa: "";
}

.fa-file-shield {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon {
    --fa: "";
    --fa--fa: "";
}

.fa-manhole {
    --fa: "";
    --fa--fa: "";
}

.fa-user-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-tower-observation {
    --fa: "";
    --fa--fa: "";
}

.fa-floppy-disks {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-paper-blank-under,
.fa-toilet-paper-reverse-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-file-code {
    --fa: "";
    --fa--fa: "";
}

.fa-signal,
.fa-signal-5,
.fa-signal-perfect {
    --fa: "";
    --fa--fa: "";
}

.fa-pump {
    --fa: "";
    --fa--fa: "";
}

.fa-bus {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-left-from-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-home-lg,
.fa-house-chimney {
    --fa: "";
    --fa--fa: "";
}

.fa-window-maximize {
    --fa: "";
    --fa--fa: "";
}

.fa-dryer {
    --fa: "";
    --fa--fa: "";
}

.fa-face-frown,
.fa-frown {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-bishop-alt,
.fa-chess-bishop-piece {
    --fa: "";
    --fa--fa: "";
}

.fa-shirt-tank-top {
    --fa: "";
    --fa--fa: "";
}

.fa-diploma,
.fa-scroll-ribbon {
    --fa: "";
    --fa--fa: "";
}

.fa-screencast {
    --fa: "";
    --fa--fa: "";
}

.fa-walker {
    --fa: "";
    --fa--fa: "";
}

.fa-prescription {
    --fa: "";
    --fa--fa: "";
}

.fa-shop,
.fa-store-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-floppy-disk,
.fa-save {
    --fa: "";
    --fa--fa: "";
}

.fa-vihara {
    --fa: "";
    --fa--fa: "";
}

.fa-face-kiss-closed-eyes {
    --fa: "";
    --fa--fa: "";
}

.fa-balance-scale-left,
.fa-scale-unbalanced {
    --fa: "";
    --fa--fa: "";
}

.fa-file-user {
    --fa: "";
    --fa--fa: "";
}

.fa-user-police-tie {
    --fa: "";
    --fa--fa: "";
}

.fa-face-tongue-money {
    --fa: "";
    --fa--fa: "";
}

.fa-tennis-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-square-l {
    --fa: "";
    --fa--fa: "";
}

.fa-sort-asc,
.fa-sort-up {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-arrow-up,
.fa-calendar-upload {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-dots,
.fa-commenting {
    --fa: "";
    --fa--fa: "";
}

.fa-plant-wilt {
    --fa: "";
    --fa--fa: "";
}

.fa-scarf {
    --fa: "";
    --fa--fa: "";
}

.fa-album-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-user-nurse-hair-long {
    --fa: "";
    --fa--fa: "";
}

.fa-diamond {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-square-left,
.fa-square-left {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-squint,
.fa-grin-squint {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-ellipsis-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-dollar,
.fa-hand-holding-usd {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-dividers {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-diagram {
    --fa: "";
    --fa--fa: "";
}

.fa-bacterium {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-pointer {
    --fa: "";
    --fa--fa: "";
}

.fa-drum-steelpan {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-scissors {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-praying,
.fa-praying-hands {
    --fa: "";
    --fa--fa: "";
}

.fa-face-pensive {
    --fa: "";
    --fa--fa: "";
}

.fa-user-music {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-rotate,
.fa-arrow-rotate-forward,
.fa-arrow-rotate-right,
.fa-redo {
    --fa: "";
    --fa--fa: "";
}

.fa-comments-alt-dollar,
.fa-messages-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-sensor-on {
    --fa: "";
    --fa--fa: "";
}

.fa-balloon {
    --fa: "";
    --fa--fa: "";
}

.fa-biohazard {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-queen-alt,
.fa-chess-queen-piece {
    --fa: "";
    --fa--fa: "";
}

.fa-location,
.fa-location-crosshairs {
    --fa: "";
    --fa--fa: "";
}

.fa-mars-double {
    --fa: "";
    --fa--fa: "";
}

.fa-left-from-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-house-leave,
.fa-house-person-depart,
.fa-house-person-leave {
    --fa: "";
    --fa--fa: "";
}

.fa-ruler-triangle {
    --fa: "";
    --fa--fa: "";
}

.fa-card-club {
    --fa: "";
    --fa--fa: "";
}

.fa-child-dress {
    --fa: "";
    --fa--fa: "";
}

.fa-users-between-lines {
    --fa: "";
    --fa--fa: "";
}

.fa-lungs-virus {
    --fa: "";
    --fa--fa: "";
}

.fa-spinner-third {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-tears,
.fa-grin-tears {
    --fa: "";
    --fa--fa: "";
}

.fa-phone {
    --fa: "";
    --fa--fa: "";
}

.fa-computer-mouse-scrollwheel,
.fa-mouse-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-times,
.fa-calendar-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-child-reaching {
    --fa: "";
    --fa--fa: "";
}

.fa-table-layout {
    --fa: "";
    --fa--fa: "";
}

.fa-narwhal {
    --fa: "";
    --fa--fa: "";
}

.fa-ramp-loading {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-toothbrush {
    --fa: "";
    --fa--fa: "";
}

.fa-border-inner {
    --fa: "";
    --fa--fa: "";
}

.fa-paw-claws {
    --fa: "";
    --fa--fa: "";
}

.fa-kiwi-fruit {
    --fa: "";
    --fa--fa: "";
}

.fa-traffic-light-slow {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-code {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-virus {
    --fa: "";
    --fa--fa: "";
}

.fa-keyboard-brightness {
    --fa: "";
    --fa--fa: "";
}

.fa-books-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-home-blank,
.fa-house-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-square-5 {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-square,
.fa-square-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-puzzle {
    --fa: "";
    --fa--fa: "";
}

.fa-user-cog,
.fa-user-gear {
    --fa: "";
    --fa--fa: "";
}

.fa-pipe-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-1-9,
.fa-sort-numeric-up {
    --fa: "";
    --fa--fa: "";
}

.fa-octagon-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-dial-low {
    --fa: "";
    --fa--fa: "";
}

.fa-door-closed {
    --fa: "";
    --fa--fa: "";
}

.fa-laptop-mobile,
.fa-phone-laptop {
    --fa: "";
    --fa--fa: "";
}

.fa-conveyor-belt-alt,
.fa-conveyor-belt-boxes {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-virus {
    --fa: "";
    --fa--fa: "";
}

.fa-starfighter-alt-advanced,
.fa-starfighter-twin-ion-engine-advanced {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-six {
    --fa: "";
    --fa--fa: "";
}

.fa-starfighter-alt,
.fa-starfighter-twin-ion-engine {
    --fa: "";
    --fa--fa: "";
}

.fa-rocket-launch {
    --fa: "";
    --fa--fa: "";
}

.fa-mosquito-net {
    --fa: "";
    --fa--fa: "";
}

.fa-file-fragment {
    --fa: "";
    --fa--fa: "";
}

.fa-vent-damper {
    --fa: "";
    --fa--fa: "";
}

.fa-bridge-water {
    --fa: "";
    --fa--fa: "";
}

.fa-ban-bug,
.fa-debug {
    --fa: "";
    --fa--fa: "";
}

.fa-person-booth {
    --fa: "";
    --fa--fa: "";
}

.fa-text-width {
    --fa: "";
    --fa--fa: "";
}

.fa-garage-car {
    --fa: "";
    --fa--fa: "";
}

.fa-square-kanban {
    --fa: "";
    --fa--fa: "";
}

.fa-hat-wizard {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-kanban {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-fancy {
    --fa: "";
    --fa--fa: "";
}

.fa-coffee-pot {
    --fa: "";
    --fa--fa: "";
}

.fa-mouse-field {
    --fa: "";
    --fa--fa: "";
}

.fa-digging,
.fa-person-digging {
    --fa: "";
    --fa--fa: "";
}

.fa-shower-alt,
.fa-shower-down {
    --fa: "";
    --fa--fa: "";
}

.fa-box-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-brightness {
    --fa: "";
    --fa--fa: "";
}

.fa-car-side-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-file-xml {
    --fa: "";
    --fa--fa: "";
}

.fa-ornament {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-arrow-down,
.fa-phone-arrow-down-left,
.fa-phone-incoming {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-word {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-fingers-crossed {
    --fa: "";
    --fa--fa: "";
}

.fa-trash {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-simple,
.fa-gauge-simple-med,
.fa-tachometer-average {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-small-big,
.fa-sort-size-down-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-book-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-face-melting {
    --fa: "";
    --fa--fa: "";
}

.fa-poo {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-alt-slash,
.fa-pen-clip-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-quote-right,
.fa-quote-right-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-scroll-old {
    --fa: "";
    --fa--fa: "";
}

.fa-guitars {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-hose {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-six {
    --fa: "";
    --fa--fa: "";
}

.fa-shirt,
.fa-t-shirt,
.fa-tshirt {
    --fa: "";
    --fa--fa: "";
}

.fa-billboard {
    --fa: "";
    --fa--fa: "";
}

.fa-square-r {
    --fa: "";
    --fa--fa: "";
}

.fa-cubes {
    --fa: "";
    --fa--fa: "";
}

.fa-envelope-open-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-divide {
    --fa: "";
    --fa--fa: "";
}

.fa-sun-cloud {
    --fa: "";
    --fa--fa: "";
}

.fa-lamp-floor {
    --fa: "";
    --fa--fa: "";
}

.fa-square-7 {
    --fa: "";
    --fa--fa: "";
}

.fa-tenge,
.fa-tenge-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-headphones {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-holding {
    --fa: "";
    --fa--fa: "";
}

.fa-campfire {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-ampersand {
    --fa: "";
    --fa--fa: "";
}

.fa-snowflakes {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-clapping {
    --fa: "";
    --fa--fa: "";
}

.fa-republican {
    --fa: "";
    --fa--fa: "";
}

.fa-leaf-maple {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left {
    --fa: "";
    --fa--fa: "";
}

.fa-person-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-ruler {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left-from-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-cup-straw-swoosh {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-hot,
.fa-temperature-sun {
    --fa: "";
    --fa--fa: "";
}

.fa-align-left {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-d6 {
    --fa: "";
    --fa--fa: "";
}

.fa-restroom {
    --fa: "";
    --fa--fa: "";
}

.fa-high-definition,
.fa-rectangle-hd {
    --fa: "";
    --fa--fa: "";
}

.fa-j {
    --fa: "J";
    --fa--fa: "JJ";
}

.fa-galaxy {
    --fa: "";
    --fa--fa: "";
}

.fa-users-viewfinder {
    --fa: "";
    --fa--fa: "";
}

.fa-file-video {
    --fa: "";
    --fa--fa: "";
}

.fa-cherries {
    --fa: "";
    --fa--fa: "";
}

.fa-external-link-alt,
.fa-up-right-from-square {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-sort,
.fa-sort-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-table-cells,
.fa-th {
    --fa: "";
    --fa--fa: "";
}

.fa-bag-shopping-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-file-pdf {
    --fa: "";
    --fa--fa: "";
}

.fa-siren {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-to-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-image-landscape,
.fa-landscape {
    --fa: "";
    --fa--fa: "";
}

.fa-tank-water {
    --fa: "";
    --fa--fa: "";
}

.fa-curling,
.fa-curling-stone {
    --fa: "";
    --fa--fa: "";
}

.fa-gamepad-alt,
.fa-gamepad-modern {
    --fa: "";
    --fa--fa: "";
}

.fa-messages-question {
    --fa: "";
    --fa--fa: "";
}

.fa-bible,
.fa-book-bible {
    --fa: "";
    --fa--fa: "";
}

.fa-o {
    --fa: "O";
    --fa--fa: "OO";
}

.fa-medkit,
.fa-suitcase-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-briefcase-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-expand-wide {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-eleven-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-rv {
    --fa: "";
    --fa--fa: "";
}

.fa-user-secret {
    --fa: "";
    --fa--fa: "";
}

.fa-otter {
    --fa: "";
    --fa--fa: "";
}

.fa-dreidel {
    --fa: "";
    --fa--fa: "";
}

.fa-female,
.fa-person-dress {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-briefcase-clock,
.fa-business-time {
    --fa: "";
    --fa--fa: "";
}

.fa-flower-tulip {
    --fa: "";
    --fa--fa: "";
}

.fa-people-pants-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-drizzle {
    --fa: "";
    --fa--fa: "";
}

.fa-table-cells-large,
.fa-th-large {
    --fa: "";
    --fa--fa: "";
}

.fa-book-tanakh,
.fa-tanakh {
    --fa: "";
    --fa--fa: "";
}

.fa-solar-system {
    --fa: "";
    --fa--fa: "";
}

.fa-seal-question {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-volume,
.fa-volume-control-phone {
    --fa: "";
    --fa--fa: "";
}

.fa-disc-drive {
    --fa: "";
    --fa--fa: "";
}

.fa-hat-cowboy-side {
    --fa: "";
    --fa--fa: "";
}

.fa-rows,
.fa-table-rows {
    --fa: "";
    --fa--fa: "";
}

.fa-location-exclamation,
.fa-map-marker-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-face-fearful {
    --fa: "";
    --fa--fa: "";
}

.fa-clipboard-user {
    --fa: "";
    --fa--fa: "";
}

.fa-bus-school {
    --fa: "";
    --fa--fa: "";
}

.fa-film-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-square-arrow-down-right {
    --fa: "";
    --fa--fa: "";
}

.fa-book-sparkles,
.fa-book-spells {
    --fa: "";
    --fa--fa: "";
}

.fa-washer,
.fa-washing-machine {
    --fa: "";
    --fa--fa: "";
}

.fa-child {
    --fa: "";
    --fa--fa: "";
}

.fa-lira-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-user-visor {
    --fa: "";
    --fa--fa: "";
}

.fa-file-plus-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-clock-alt,
.fa-chess-clock-flip {
    --fa: "";
    --fa--fa: "";
}

.fa-satellite {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-steering-wheel {
    --fa: "";
    --fa--fa: "";
}

.fa-tag {
    --fa: "";
    --fa--fa: "";
}

.fa-stretcher {
    --fa: "";
    --fa--fa: "";
}

.fa-book-law,
.fa-book-section {
    --fa: "";
    --fa--fa: "";
}

.fa-inboxes {
    --fa: "";
    --fa--fa: "";
}

.fa-coffee-bean {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-yen {
    --fa: "";
    --fa--fa: "";
}

.fa-brackets-curly {
    --fa: "";
    --fa--fa: "";
}

.fa-ellipsis-stroke-vertical,
.fa-ellipsis-v-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-comment {
    --fa: "";
    --fa--fa: "";
}

.fa-square-1 {
    --fa: "";
    --fa--fa: "";
}

.fa-birthday-cake,
.fa-cake,
.fa-cake-candles {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-ladder {
    --fa: "";
    --fa--fa: "";
}

.fa-envelope {
    --fa: "";
    --fa--fa: "";
}

.fa-dolly-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-face-tissue {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-double-up,
.fa-angles-up {
    --fa: "";
    --fa--fa: "";
}

.fa-bin-recycle {
    --fa: "";
    --fa--fa: "";
}

.fa-paperclip {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-line-down {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-to-city {
    --fa: "";
    --fa--fa: "";
}

.fa-lock-a {
    --fa: "";
    --fa--fa: "";
}

.fa-ribbon {
    --fa: "";
    --fa--fa: "";
}

.fa-lungs {
    --fa: "";
    --fa--fa: "";
}

.fa-person-pinball {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-9-1,
.fa-sort-numeric-up-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-apple-core {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-y {
    --fa: "";
    --fa--fa: "";
}

.fa-h6 {
    --fa: "";
    --fa--fa: "";
}

.fa-litecoin-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-bottle-baby {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-small {
    --fa: "";
    --fa--fa: "";
}

.fa-border-none {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-turn-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-wifi-circle-wifi,
.fa-circle-wifi-group {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-nodes {
    --fa: "";
    --fa--fa: "";
}

.fa-parachute-box {
    --fa: "";
    --fa--fa: "";
}

.fa-reflect-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-medical,
.fa-message-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-rugby-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-music {
    --fa: "";
    --fa--fa: "";
}

.fa-indent {
    --fa: "";
    --fa--fa: "";
}

.fa-tree-alt,
.fa-tree-deciduous {
    --fa: "";
    --fa--fa: "";
}

.fa-puzzle-piece-alt,
.fa-puzzle-piece-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-field-un {
    --fa: "";
    --fa--fa: "";
}

.fa-nfc-trash {
    --fa: "";
    --fa--fa: "";
}

.fa-hourglass,
.fa-hourglass-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-mountain {
    --fa: "";
    --fa--fa: "";
}

.fa-file-times,
.fa-file-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-home-heart,
.fa-house-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-house-chimney-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-meter-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-user-doctor,
.fa-user-md {
    --fa: "";
    --fa--fa: "";
}

.fa-slash-back {
    --fa: "\\";
    --fa--fa: "\\\\";
}

.fa-circle-info,
.fa-info-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-fishing-rod {
    --fa: "";
    --fa--fa: "";
}

.fa-hammer-crash {
    --fa: "";
    --fa--fa: "";
}

.fa-message-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-meatball {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-polaroid {
    --fa: "";
    --fa--fa: "";
}

.fa-camera,
.fa-camera-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-square-virus {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-meteor {
    --fa: "";
    --fa--fa: "";
}

.fa-car-on {
    --fa: "";
    --fa--fa: "";
}

.fa-sleigh {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-1-9,
.fa-sort-numeric-asc,
.fa-sort-numeric-down {
    --fa: "";
    --fa--fa: "";
}

.fa-buoy-mooring {
    --fa: "";
    --fa--fa: "";
}

.fa-square-4 {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-droplet,
.fa-hand-holding-water {
    --fa: "";
    --fa--fa: "";
}

.fa-file-eps {
    --fa: "";
    --fa--fa: "";
}

.fa-tricycle-adult {
    --fa: "";
    --fa--fa: "";
}

.fa-waveform {
    --fa: "";
    --fa--fa: "";
}

.fa-water {
    --fa: "";
    --fa--fa: "";
}

.fa-star-sharp-half-alt,
.fa-star-sharp-half-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-nfc-signal {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-prop {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-check {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-desk {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-clock,
.fa-calendar-time {
    --fa: "";
    --fa--fa: "";
}

.fa-braille {
    --fa: "";
    --fa--fa: "";
}

.fa-prescription-bottle-alt,
.fa-prescription-bottle-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-plate-utensils {
    --fa: "";
    --fa--fa: "";
}

.fa-family-pants {
    --fa: "";
    --fa--fa: "";
}

.fa-hose-reel {
    --fa: "";
    --fa--fa: "";
}

.fa-house-window {
    --fa: "";
    --fa--fa: "";
}

.fa-landmark {
    --fa: "";
    --fa--fa: "";
}

.fa-truck {
    --fa: "";
    --fa--fa: "";
}

.fa-music-magnifying-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-crosshairs {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-rainbow {
    --fa: "";
    --fa--fa: "";
}

.fa-person-cane {
    --fa: "";
    --fa--fa: "";
}

.fa-alien {
    --fa: "";
    --fa--fa: "";
}

.fa-tent {
    --fa: "";
    --fa--fa: "";
}

.fa-laptop-binary {
    --fa: "";
    --fa--fa: "";
}

.fa-vest-patches {
    --fa: "";
    --fa--fa: "";
}

.fa-people-dress-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-check-double {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-a-z,
.fa-sort-alpha-asc,
.fa-sort-alpha-down {
    --fa: "";
    --fa--fa: "";
}

.fa-bowling-ball-pin {
    --fa: "";
    --fa--fa: "";
}

.fa-bell-school-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-plus-large {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill-wheat {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-viewfinder,
.fa-screenshot {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-music,
.fa-message-music {
    --fa: "";
    --fa--fa: "";
}

.fa-car-building {
    --fa: "";
    --fa--fa: "";
}

.fa-border-bottom-right,
.fa-border-style-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-octagon {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-arrow-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-octagon-divide {
    --fa: "";
    --fa--fa: "";
}

.fa-cookie {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left-rotate,
.fa-arrow-rotate-back,
.fa-arrow-rotate-backward,
.fa-arrow-rotate-left,
.fa-undo {
    --fa: "";
    --fa--fa: "";
}

.fa-tv-music {
    --fa: "";
    --fa--fa: "";
}

.fa-hard-drive,
.fa-hdd {
    --fa: "";
    --fa--fa: "";
}

.fa-reel {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-squint-tears,
.fa-grin-squint-tears {
    --fa: "";
    --fa--fa: "";
}

.fa-dumbbell {
    --fa: "";
    --fa--fa: "";
}

.fa-list-alt,
.fa-rectangle-list {
    --fa: "";
    --fa--fa: "";
}

.fa-tarp-droplet {
    --fa: "";
    --fa--fa: "";
}

.fa-alarm-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-house-medical-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-traffic-cone {
    --fa: "";
    --fa--fa: "";
}

.fa-grate {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-right {
    --fa: "";
    --fa--fa: "";
}

.fa-person-skiing-nordic,
.fa-skiing-nordic {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-person-from-portal,
.fa-portal-exit {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-arrival {
    --fa: "";
    --fa--fa: "";
}

.fa-cowbell-circle-plus,
.fa-cowbell-more {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-circle-left,
.fa-circle-left {
    --fa: "";
    --fa--fa: "";
}

.fa-distribute-spacing-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-alt-2,
.fa-signal-bars-fair {
    --fa: "";
    --fa--fa: "";
}

.fa-sportsball {
    --fa: "";
    --fa--fa: "";
}

.fa-game-console-handheld-crank {
    --fa: "";
    --fa--fa: "";
}

.fa-subway,
.fa-train-subway {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-gantt {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-upside-down {
    --fa: "";
    --fa--fa: "";
}

.fa-ball-pile {
    --fa: "";
    --fa--fa: "";
}

.fa-badge-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bills-alt,
.fa-money-bills-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-list-timeline {
    --fa: "";
    --fa--fa: "";
}

.fa-indian-rupee,
.fa-indian-rupee-sign,
.fa-inr {
    --fa: "";
    --fa--fa: "";
}

.fa-crop-alt,
.fa-crop-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill-1,
.fa-money-bill-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-left-long,
.fa-long-arrow-alt-left {
    --fa: "";
    --fa--fa: "";
}

.fa-keyboard-down {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-up-right {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-bolt-moon,
.fa-thunderstorm-moon {
    --fa: "";
    --fa--fa: "";
}

.fa-turn-left-up {
    --fa: "";
    --fa--fa: "";
}

.fa-dna {
    --fa: "";
    --fa--fa: "";
}

.fa-virus-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-bracket-round-right {
    --fa: "\)";
    --fa--fa: "\)\)";
}

.fa-circle-sterling {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-5 {
    --fa: "";
    --fa--fa: "";
}

.fa-minus,
.fa-subtract {
    --fa: "";
    --fa--fa: "";
}

.fa-fire-flame,
.fa-flame {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-to-right,
.fa-right-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-gif {
    --fa: "";
    --fa--fa: "";
}

.fa-chess {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left-long,
.fa-long-arrow-left {
    --fa: "";
    --fa--fa: "";
}

.fa-plug-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-font-case {
    --fa: "";
    --fa--fa: "";
}

.fa-street-view {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-franc-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-flask-poison,
.fa-flask-round-poison {
    --fa: "";
    --fa--fa: "";
}

.fa-volume-off {
    --fa: "";
    --fa--fa: "";
}

.fa-book-circle-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-user,
.fa-user-chart {
    --fa: "";
    --fa--fa: "";
}

.fa-american-sign-language-interpreting,
.fa-asl-interpreting,
.fa-hands-american-sign-language-interpreting,
.fa-hands-asl-interpreting {
    --fa: "";
    --fa--fa: "";
}

.fa-presentation,
.fa-presentation-screen {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-halo {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-circle-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-house-person-arrive,
.fa-house-person-return,
.fa-house-return {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-times,
.fa-message-times,
.fa-message-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-file-award,
.fa-file-certificate {
    --fa: "";
    --fa--fa: "";
}

.fa-user-doctor-hair-long {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-home,
.fa-camera-security {
    --fa: "";
    --fa--fa: "";
}

.fa-cog,
.fa-gear {
    --fa: "";
    --fa--fa: "";
}

.fa-droplet-slash,
.fa-tint-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-book-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-mosque {
    --fa: "";
    --fa--fa: "";
}

.fa-duck {
    --fa: "";
    --fa--fa: "";
}

.fa-mosquito {
    --fa: "";
    --fa--fa: "";
}

.fa-star-of-david {
    --fa: "";
    --fa--fa: "";
}

.fa-flag-alt,
.fa-flag-swallowtail {
    --fa: "";
    --fa--fa: "";
}

.fa-person-military-rifle {
    --fa: "";
    --fa--fa: "";
}

.fa-car-garage {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-shopping,
.fa-shopping-cart {
    --fa: "";
    --fa--fa: "";
}

.fa-book-font {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-vials {
    --fa: "";
    --fa--fa: "";
}

.fa-eye-dropper-full {
    --fa: "";
    --fa--fa: "";
}

.fa-distribute-spacing-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-tablet-rugged {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-frigid,
.fa-temperature-snow {
    --fa: "";
    --fa--fa: "";
}

.fa-moped {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-plus,
.fa-smile-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-radio-alt,
.fa-radio-tuner {
    --fa: "";
    --fa--fa: "";
}

.fa-face-swear {
    --fa: "";
    --fa--fa: "";
}

.fa-water-arrow-down,
.fa-water-lower {
    --fa: "";
    --fa--fa: "";
}

.fa-scanner-touchscreen {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-7 {
    --fa: "";
    --fa--fa: "";
}

.fa-plug-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-person-ski-jumping,
.fa-ski-jump {
    --fa: "";
    --fa--fa: "";
}

.fa-place-of-worship {
    --fa: "";
    --fa--fa: "";
}

.fa-water-arrow-up,
.fa-water-rise {
    --fa: "";
    --fa--fa: "";
}

.fa-waveform-lines,
.fa-waveform-path {
    --fa: "";
    --fa--fa: "";
}

.fa-split {
    --fa: "";
    --fa--fa: "";
}

.fa-film-canister,
.fa-film-cannister {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-times,
.fa-folder-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-paper-alt,
.fa-toilet-paper-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-tablet-android-alt,
.fa-tablet-screen {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-vertical-nft-slanted {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-music {
    --fa: "";
    --fa--fa: "";
}

.fa-desktop-medical,
.fa-display-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-share-all {
    --fa: "";
    --fa--fa: "";
}

.fa-peapod {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-clock {
    --fa: "";
    --fa--fa: "";
}

.fa-axe {
    --fa: "";
    --fa--fa: "";
}

.fa-square-d {
    --fa: "";
    --fa--fa: "";
}

.fa-grip-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-mobile-signal-out {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-nodes {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-turn-up,
.fa-level-up {
    --fa: "";
    --fa--fa: "";
}

.fa-u {
    --fa: "U";
    --fa--fa: "UU";
}

.fa-arrow-up-from-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-square-root-alt,
.fa-square-root-variable {
    --fa: "";
    --fa--fa: "";
}

.fa-light-switch-on {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-arrow-up,
.fa-sort-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-raindrops {
    --fa: "";
    --fa--fa: "";
}

.fa-dash,
.fa-minus-large {
    --fa: "";
    --fa--fa: "";
}

.fa-clock,
.fa-clock-four {
    --fa: "";
    --fa--fa: "";
}

.fa-input-numeric {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-tow {
    --fa: "";
    --fa--fa: "";
}

.fa-backward-step,
.fa-step-backward {
    --fa: "";
    --fa--fa: "";
}

.fa-pallet {
    --fa: "";
    --fa--fa: "";
}

.fa-car-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-maximize,
.fa-expand-arrows {
    --fa: "";
    --fa--fa: "";
}

.fa-faucet {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-sleet {
    --fa: "";
    --fa--fa: "";
}

.fa-lamp-street {
    --fa: "";
    --fa--fa: "";
}

.fa-list-radio {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-nib-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-baseball-bat-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-square-up-left {
    --fa: "";
    --fa--fa: "";
}

.fa-overline {
    --fa: "";
    --fa--fa: "";
}

.fa-s {
    --fa: "S";
    --fa--fa: "SS";
}

.fa-timeline {
    --fa: "";
    --fa--fa: "";
}

.fa-keyboard {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-from-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-usb-drive {
    --fa: "";
    --fa--fa: "";
}

.fa-ballot {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-down {
    --fa: "";
    --fa--fa: "";
}

.fa-location-dot-slash,
.fa-map-marker-alt-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-cards {
    --fa: "";
    --fa--fa: "";
}

.fa-clinic-medical,
.fa-house-chimney-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-boxing-glove,
.fa-glove-boxing {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-3,
.fa-temperature-three-quarters,
.fa-thermometer-3,
.fa-thermometer-three-quarters {
    --fa: "";
    --fa--fa: "";
}

.fa-bell-school {
    --fa: "";
    --fa--fa: "";
}

.fa-mobile-android-alt,
.fa-mobile-screen {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-up {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-location-arrow,
.fa-location-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-face-head-bandage {
    --fa: "";
    --fa--fa: "";
}

.fa-maki-roll,
.fa-makizushi,
.fa-sushi-roll {
    --fa: "";
    --fa--fa: "";
}

.fa-car-bump {
    --fa: "";
    --fa--fa: "";
}

.fa-piggy-bank {
    --fa: "";
    --fa--fa: "";
}

.fa-racquet {
    --fa: "";
    --fa--fa: "";
}

.fa-car-mirrors {
    --fa: "";
    --fa--fa: "";
}

.fa-industry-alt,
.fa-industry-windows {
    --fa: "";
    --fa--fa: "";
}

.fa-bolt-auto {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-3,
.fa-battery-half {
    --fa: "";
    --fa--fa: "";
}

.fa-flux-capacitor {
    --fa: "";
    --fa--fa: "";
}

.fa-mountain-city {
    --fa: "";
    --fa--fa: "";
}

.fa-coins {
    --fa: "";
    --fa--fa: "";
}

.fa-honey-pot {
    --fa: "";
    --fa--fa: "";
}

.fa-olive {
    --fa: "";
    --fa--fa: "";
}

.fa-khanda {
    --fa: "";
    --fa--fa: "";
}

.fa-filter-list {
    --fa: "";
    --fa--fa: "";
}

.fa-outlet {
    --fa: "";
    --fa--fa: "";
}

.fa-sliders,
.fa-sliders-h {
    --fa: "";
    --fa--fa: "";
}

.fa-cauldron {
    --fa: "";
    --fa--fa: "";
}

.fa-people {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-tree {
    --fa: "";
    --fa--fa: "";
}

.fa-network-wired {
    --fa: "";
    --fa--fa: "";
}

.fa-croissant {
    --fa: "";
    --fa--fa: "";
}

.fa-map-pin {
    --fa: "";
    --fa--fa: "";
}

.fa-hamsa {
    --fa: "";
    --fa--fa: "";
}

.fa-cent-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-swords-laser {
    --fa: "";
    --fa--fa: "";
}

.fa-flask {
    --fa: "";
    --fa--fa: "";
}

.fa-person-pregnant {
    --fa: "";
    --fa--fa: "";
}

.fa-square-u {
    --fa: "";
    --fa--fa: "";
}

.fa-wand-sparkles {
    --fa: "";
    --fa--fa: "";
}

.fa-router {
    --fa: "";
    --fa--fa: "";
}

.fa-ellipsis-v,
.fa-ellipsis-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-sword-laser-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-ticket {
    --fa: "";
    --fa--fa: "";
}

.fa-power-off {
    --fa: "";
    --fa--fa: "";
}

.fa-coin {
    --fa: "";
    --fa--fa: "";
}

.fa-laptop-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-long-arrow-alt-right,
.fa-right-long {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-b {
    --fa: "";
    --fa--fa: "";
}

.fa-person-dress-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-pipe-collar {
    --fa: "";
    --fa--fa: "";
}

.fa-lights-holiday {
    --fa: "";
    --fa--fa: "";
}

.fa-citrus {
    --fa: "";
    --fa--fa: "";
}

.fa-flag-usa {
    --fa: "";
    --fa--fa: "";
}

.fa-laptop-file {
    --fa: "";
    --fa--fa: "";
}

.fa-teletype,
.fa-tty {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-tree-map {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-next {
    --fa: "";
    --fa--fa: "";
}

.fa-person-rifle {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-five-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-pipe-valve {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-message {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-from-arc {
    --fa: "";
    --fa--fa: "";
}

.fa-face-spiral-eyes {
    --fa: "";
    --fa--fa: "";
}

.fa-compress-wide {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-phone-hangup,
.fa-phone-circle-down {
    --fa: "";
    --fa--fa: "";
}

.fa-gear-complex-code {
    --fa: "";
    --fa--fa: "";
}

.fa-house-medical-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-badminton {
    --fa: "";
    --fa--fa: "";
}

.fa-closed-captioning {
    --fa: "";
    --fa--fa: "";
}

.fa-hiking,
.fa-person-hiking {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-from-left,
.fa-right-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-venus-double {
    --fa: "";
    --fa--fa: "";
}

.fa-images {
    --fa: "";
    --fa--fa: "";
}

.fa-calculator {
    --fa: "";
    --fa--fa: "";
}

.fa-shuttlecock {
    --fa: "";
    --fa--fa: "";
}

.fa-user-hair {
    --fa: "";
    --fa--fa: "";
}

.fa-eye-evil {
    --fa: "";
    --fa--fa: "";
}

.fa-people-pulling {
    --fa: "";
    --fa--fa: "";
}

.fa-n {
    --fa: "N";
    --fa--fa: "NN";
}

.fa-swap {
    --fa: "";
    --fa--fa: "";
}

.fa-garage {
    --fa: "";
    --fa--fa: "";
}

.fa-cable-car,
.fa-tram {
    --fa: "";
    --fa--fa: "";
}

.fa-shovel-snow {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-rain {
    --fa: "";
    --fa--fa: "";
}

.fa-face-lying {
    --fa: "";
    --fa--fa: "";
}

.fa-sprinkler {
    --fa: "";
    --fa--fa: "";
}

.fa-building-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-person-sledding,
.fa-sledding {
    --fa: "";
    --fa--fa: "";
}

.fa-game-console-handheld {
    --fa: "";
    --fa--fa: "";
}

.fa-ship {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-six-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-tugrik-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-down-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-download {
    --fa: "";
    --fa--fa: "";
}

.fa-angles-up-down {
    --fa: "";
    --fa--fa: "";
}

.fa-inventory,
.fa-shelves {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-snow {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin,
.fa-grin {
    --fa: "";
    --fa--fa: "";
}

.fa-backspace,
.fa-delete-left {
    --fa: "";
    --fa--fa: "";
}

.fa-oven {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-binary {
    --fa: "";
    --fa--fa: "";
}

.fa-eye-dropper,
.fa-eye-dropper-empty,
.fa-eyedropper {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-captions {
    --fa: "";
    --fa--fa: "";
}

.fa-comments-question {
    --fa: "";
    --fa--fa: "";
}

.fa-scribble {
    --fa: "";
    --fa--fa: "";
}

.fa-rotate-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-file-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-loader {
    --fa: "";
    --fa--fa: "";
}

.fa-forward {
    --fa: "";
    --fa--fa: "";
}

.fa-user-pilot {
    --fa: "";
    --fa--fa: "";
}

.fa-mobile,
.fa-mobile-android,
.fa-mobile-phone {
    --fa: "";
    --fa--fa: "";
}

.fa-code-pull-request-closed {
    --fa: "";
    --fa--fa: "";
}

.fa-face-meh,
.fa-meh {
    --fa: "";
    --fa--fa: "";
}

.fa-align-center {
    --fa: "";
    --fa--fa: "";
}

.fa-book-dead,
.fa-book-skull {
    --fa: "";
    --fa--fa: "";
}

.fa-drivers-license,
.fa-id-card {
    --fa: "";
    --fa--fa: "";
}

.fa-face-dotted {
    --fa: "";
    --fa--fa: "";
}

.fa-face-worried {
    --fa: "";
    --fa--fa: "";
}

.fa-dedent,
.fa-outdent {
    --fa: "";
    --fa--fa: "";
}

.fa-court-sport {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-home,
.fa-home-alt,
.fa-home-lg-alt,
.fa-house {
    --fa: "";
    --fa--fa: "";
}

.fa-vector-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-car-circle-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-week {
    --fa: "";
    --fa--fa: "";
}

.fa-flying-disc {
    --fa: "";
    --fa--fa: "";
}

.fa-laptop-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-square-down-right {
    --fa: "";
    --fa--fa: "";
}

.fa-b {
    --fa: "B";
    --fa--fa: "BB";
}

.fa-seat-airline {
    --fa: "";
    --fa--fa: "";
}

.fa-eclipse-alt,
.fa-moon-over-sun {
    --fa: "";
    --fa--fa: "";
}

.fa-pipe {
    --fa: "\|";
    --fa--fa: "\|\|";
}

.fa-file-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-potato {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-one {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-a {
    --fa: "";
    --fa--fa: "";
}

.fa-helmet-battle {
    --fa: "";
    --fa--fa: "";
}

.fa-butter {
    --fa: "";
    --fa--fa: "";
}

.fa-blanket-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-kiwi-bird {
    --fa: "";
    --fa--fa: "";
}

.fa-castle {
    --fa: "";
    --fa--fa: "";
}

.fa-golf-club {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-arrow-left,
.fa-exchange {
    --fa: "";
    --fa--fa: "";
}

.fa-redo-alt,
.fa-rotate-forward,
.fa-rotate-right {
    --fa: "";
    --fa--fa: "";
}

.fa-cutlery,
.fa-utensils {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-wide-short,
.fa-sort-amount-up {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-pie-simple-circle-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-balloons {
    --fa: "";
    --fa--fa: "";
}

.fa-mill-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-rice {
    --fa: "";
    --fa--fa: "";
}

.fa-timeline-arrow {
    --fa: "";
    --fa--fa: "";
}

.fa-skull {
    --fa: "";
    --fa--fa: "";
}

.fa-game-board-alt,
.fa-game-board-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-video,
.fa-video-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-scatter-bubble {
    --fa: "";
    --fa--fa: "";
}

.fa-house-turret {
    --fa: "";
    --fa--fa: "";
}

.fa-banana {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-skull {
    --fa: "";
    --fa--fa: "";
}

.fa-people-dress {
    --fa: "";
    --fa--fa: "";
}

.fa-couch-small,
.fa-loveseat {
    --fa: "";
    --fa--fa: "";
}

.fa-broadcast-tower,
.fa-tower-broadcast {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-pickup {
    --fa: "";
    --fa--fa: "";
}

.fa-block-quote {
    --fa: "";
    --fa--fa: "";
}

.fa-long-arrow-alt-up,
.fa-up-long {
    --fa: "";
    --fa--fa: "";
}

.fa-stop {
    --fa: "";
    --fa--fa: "";
}

.fa-code-merge {
    --fa: "";
    --fa--fa: "";
}

.fa-money-check-dollar-pen,
.fa-money-check-edit-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-from-bottom,
.fa-up-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-upload {
    --fa: "";
    --fa--fa: "";
}

.fa-hurricane {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-round-2-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-people-pants {
    --fa: "";
    --fa--fa: "";
}

.fa-mound {
    --fa: "";
    --fa--fa: "";
}

.fa-windsock {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-half {
    --fa: "";
    --fa--fa: "";
}

.fa-brake-warning {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet-portable {
    --fa: "";
    --fa--fa: "";
}

.fa-compact-disc {
    --fa: "";
    --fa--fa: "";
}

.fa-file-arrow-down,
.fa-file-download {
    --fa: "";
    --fa--fa: "";
}

.fa-sax-hot,
.fa-saxophone-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-web-slash,
.fa-webcam-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-cog,
.fa-folder-gear {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-wave {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-arrow-down,
.fa-sort-up-down {
    --fa: "";
    --fa--fa: "";
}

.fa-caravan {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-cat {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-slash,
.fa-message-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-bolt,
.fa-zap {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-can-check {
    --fa: "";
    --fa--fa: "";
}

.fa-glass-water {
    --fa: "";
    --fa--fa: "";
}

.fa-oil-well {
    --fa: "";
    --fa--fa: "";
}

.fa-table-cells-column-unlock {
    --fa: "";
    --fa--fa: "";
}

.fa-person-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-turn-left-up {
    --fa: "";
    --fa--fa: "";
}

.fa-vault {
    --fa: "";
    --fa--fa: "";
}

.fa-mars {
    --fa: "";
    --fa--fa: "";
}

.fa-toilet {
    --fa: "";
    --fa--fa: "";
}

.fa-plane-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-cny,
.fa-jpy,
.fa-rmb,
.fa-yen,
.fa-yen-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-gear-code {
    --fa: "";
    --fa--fa: "";
}

.fa-notes {
    --fa: "";
    --fa--fa: "";
}

.fa-rouble,
.fa-rub,
.fa-ruble,
.fa-ruble-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-arrow-turn-left,
.fa-trash-undo {
    --fa: "";
    --fa--fa: "";
}

.fa-champagne-glass,
.fa-glass-champagne {
    --fa: "";
    --fa--fa: "";
}

.fa-objects-align-center-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-sun {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-alt-slash,
.fa-trash-can-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-screen-users,
.fa-users-class {
    --fa: "";
    --fa--fa: "";
}

.fa-guitar {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-square-left,
.fa-square-arrow-left {
    --fa: "";
    --fa--fa: "";
}

.fa-square-8 {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-hearts {
    --fa: "";
    --fa--fa: "";
}

.fa-brackets,
.fa-brackets-square {
    --fa: "";
    --fa--fa: "";
}

.fa-laptop-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-hockey-stick-puck {
    --fa: "";
    --fa--fa: "";
}

.fa-house-tree {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-2,
.fa-signal-fair {
    --fa: "";
    --fa--fa: "";
}

.fa-face-laugh-wink,
.fa-laugh-wink {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-dollar,
.fa-dollar-circle,
.fa-usd-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-horse-head {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-repeat,
.fa-repeat-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-bore-hole {
    --fa: "";
    --fa--fa: "";
}

.fa-industry {
    --fa: "";
    --fa--fa: "";
}

.fa-image-polaroid {
    --fa: "";
    --fa--fa: "";
}

.fa-wave-triangle {
    --fa: "";
    --fa--fa: "";
}

.fa-turn-left-down {
    --fa: "";
    --fa--fa: "";
}

.fa-person-running-fast {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-circle-down,
.fa-circle-down {
    --fa: "";
    --fa--fa: "";
}

.fa-grill {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-turn-to-dots {
    --fa: "";
    --fa--fa: "";
}

.fa-analytics,
.fa-chart-mixed {
    --fa: "";
    --fa--fa: "";
}

.fa-florin-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-short-wide,
.fa-sort-amount-desc,
.fa-sort-amount-down-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-less-than {
    --fa: "\<";
    --fa--fa: "\<\<";
}

.fa-desktop-code,
.fa-display-code {
    --fa: "";
    --fa--fa: "";
}

.fa-face-drooling {
    --fa: "";
    --fa--fa: "";
}

.fa-oil-temp,
.fa-oil-temperature {
    --fa: "";
    --fa--fa: "";
}

.fa-question-square,
.fa-square-question {
    --fa: "";
    --fa--fa: "";
}

.fa-air-conditioner {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-down {
    --fa: "";
    --fa--fa: "";
}

.fa-mountains {
    --fa: "";
    --fa--fa: "";
}

.fa-omega {
    --fa: "";
    --fa--fa: "";
}

.fa-car-tunnel {
    --fa: "";
    --fa--fa: "";
}

.fa-person-dolly-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-pan-food {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-cough {
    --fa: "";
    --fa--fa: "";
}

.fa-grip-lines {
    --fa: "";
    --fa--fa: "";
}

.fa-thumbs-down {
    --fa: "";
    --fa--fa: "";
}

.fa-user-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-long,
.fa-long-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-tickets-airline,
.fa-tickets-perforated-plane,
.fa-tickets-plane {
    --fa: "";
    --fa--fa: "";
}

.fa-tent-double-peak {
    --fa: "";
    --fa--fa: "";
}

.fa-anchor-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-ellipsis,
.fa-ellipsis-h {
    --fa: "";
    --fa--fa: "";
}

.fa-nfc-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-pawn {
    --fa: "";
    --fa--fa: "";
}

.fa-first-aid,
.fa-kit-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-2-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-bells {
    --fa: "";
    --fa--fa: "";
}

.fa-person-through-window {
    --fa: "";
    --fa--fa: "";
}

.fa-toolbox {
    --fa: "";
    --fa--fa: "";
}

.fa-globe-wifi {
    --fa: "";
    --fa--fa: "";
}

.fa-envelope-badge,
.fa-envelope-dot {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-waveform {
    --fa: "";
    --fa--fa: "";
}

.fa-hands-holding-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-bug {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-chopsticks {
    --fa: "";
    --fa--fa: "";
}

.fa-credit-card,
.fa-credit-card-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-s {
    --fa: "";
    --fa--fa: "";
}

.fa-box-ballot {
    --fa: "";
    --fa--fa: "";
}

.fa-automobile,
.fa-car {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-hand {
    --fa: "";
    --fa--fa: "";
}

.fa-user-tie-hair {
    --fa: "";
    --fa--fa: "";
}

.fa-podium-star {
    --fa: "";
    --fa--fa: "";
}

.fa-business-front,
.fa-party-back,
.fa-trian-balbot,
.fa-user-hair-mullet {
    --fa: "";
    --fa--fa: "";
}

.fa-microphone-stand {
    --fa: "";
    --fa--fa: "";
}

.fa-book-open-reader,
.fa-book-reader {
    --fa: "";
    --fa--fa: "";
}

.fa-family-dress {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-x {
    --fa: "";
    --fa--fa: "";
}

.fa-cabin {
    --fa: "";
    --fa--fa: "";
}

.fa-mountain-sun {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-simple-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-left-right-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-back-point-left {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-dots,
.fa-message-dots,
.fa-messaging {
    --fa: "";
    --fa--fa: "";
}

.fa-file-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-beer-foam,
.fa-beer-mug {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-d20 {
    --fa: "";
    --fa--fa: "";
}

.fa-drone {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-droplet {
    --fa: "";
    --fa--fa: "";
}

.fa-file-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-arrow-up,
.fa-temperature-up {
    --fa: "";
    --fa--fa: "";
}

.fa-medal {
    --fa: "";
    --fa--fa: "";
}

.fa-person-fairy {
    --fa: "";
    --fa--fa: "";
}

.fa-bed {
    --fa: "";
    --fa--fa: "";
}

.fa-book-copy {
    --fa: "";
    --fa--fa: "";
}

.fa-h-square,
.fa-square-h {
    --fa: "";
    --fa--fa: "";
}

.fa-square-c {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-two {
    --fa: "";
    --fa--fa: "";
}

.fa-square-ellipsis-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-users {
    --fa: "";
    --fa--fa: "";
}

.fa-podcast {
    --fa: "";
    --fa--fa: "";
}

.fa-bee {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-4,
.fa-temperature-full,
.fa-thermometer-4,
.fa-thermometer-full {
    --fa: "";
    --fa--fa: "";
}

.fa-bell {
    --fa: "";
    --fa--fa: "";
}

.fa-candy-bar,
.fa-chocolate-bar {
    --fa: "";
    --fa--fa: "";
}

.fa-xmark-large {
    --fa: "";
    --fa--fa: "";
}

.fa-pinata {
    --fa: "";
    --fa--fa: "";
}

.fa-file-ppt {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-superscript {
    --fa: "";
    --fa--fa: "";
}

.fa-bowl-spoon {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-check {
    --fa: "";
    --fa--fa: "";
}

.fa-plug-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-star-of-life {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-traffic-light-stop {
    --fa: "";
    --fa--fa: "";
}

.fa-paint-roller {
    --fa: "";
    --fa--fa: "";
}

.fa-accent-grave {
    --fa: "\`";
    --fa--fa: "\`\`";
}

.fa-hands-helping,
.fa-handshake-angle {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-0 {
    --fa: "";
    --fa--fa: "";
}

.fa-dial-med-low {
    --fa: "";
    --fa--fa: "";
}

.fa-location-dot,
.fa-map-marker-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-crab {
    --fa: "";
    --fa--fa: "";
}

.fa-box-full,
.fa-box-open-full {
    --fa: "";
    --fa--fa: "";
}

.fa-file {
    --fa: "";
    --fa--fa: "";
}

.fa-greater-than {
    --fa: "\>";
    --fa--fa: "\>\>";
}

.fa-quotes {
    --fa: "";
    --fa--fa: "";
}

.fa-pretzel {
    --fa: "";
    --fa--fa: "";
}

.fa-t-rex {
    --fa: "";
    --fa--fa: "";
}

.fa-person-swimming,
.fa-swimmer {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-user-robot-xmarks {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-quote,
.fa-message-quote {
    --fa: "";
    --fa--fa: "";
}

.fa-candy-corn {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-magnifying-glass,
.fa-folder-search {
    --fa: "";
    --fa--fa: "";
}

.fa-notebook {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-wifi {
    --fa: "";
    --fa--fa: "";
}

.fa-droplet,
.fa-tint {
    --fa: "";
    --fa--fa: "";
}

.fa-bullseye-pointer {
    --fa: "";
    --fa--fa: "";
}

.fa-eraser {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-image {
    --fa: "";
    --fa--fa: "";
}

.fa-earth,
.fa-earth-america,
.fa-earth-americas,
.fa-globe-americas {
    --fa: "";
    --fa--fa: "";
}

.fa-file-svg {
    --fa: "";
    --fa--fa: "";
}

.fa-crate-apple {
    --fa: "";
    --fa--fa: "";
}

.fa-apple-crate {
    --fa: "";
    --fa--fa: "";
}

.fa-person-burst {
    --fa: "";
    --fa--fa: "";
}

.fa-game-board {
    --fa: "";
    --fa--fa: "";
}

.fa-hat-chef {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-back-point-right {
    --fa: "";
    --fa--fa: "";
}

.fa-dove {
    --fa: "";
    --fa--fa: "";
}

.fa-snowflake-droplets {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-0,
.fa-battery-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-4 {
    --fa: "";
    --fa--fa: "";
}

.fa-socks {
    --fa: "";
    --fa--fa: "";
}

.fa-face-sunglasses {
    --fa: "";
    --fa--fa: "";
}

.fa-inbox {
    --fa: "";
    --fa--fa: "";
}

.fa-square-0 {
    --fa: "";
    --fa--fa: "";
}

.fa-section {
    --fa: "";
    --fa--fa: "";
}

.fa-box-up,
.fa-square-this-way-up {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-high,
.fa-tachometer-alt,
.fa-tachometer-alt-fast {
    --fa: "";
    --fa--fa: "";
}

.fa-square-ampersand {
    --fa: "";
    --fa--fa: "";
}

.fa-envelope-open-text {
    --fa: "";
    --fa--fa: "";
}

.fa-lamp-desk {
    --fa: "";
    --fa--fa: "";
}

.fa-hospital,
.fa-hospital-alt,
.fa-hospital-wide {
    --fa: "";
    --fa--fa: "";
}

.fa-poll-people {
    --fa: "";
    --fa--fa: "";
}

.fa-glass-whiskey-rocks,
.fa-whiskey-glass-ice {
    --fa: "";
    --fa--fa: "";
}

.fa-wine-bottle {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-rook {
    --fa: "";
    --fa--fa: "";
}

.fa-user-bounty-hunter {
    --fa: "";
    --fa--fa: "";
}

.fa-bars-staggered,
.fa-reorder,
.fa-stream {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-sankey {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-hail-mixed {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-up-left {
    --fa: "";
    --fa--fa: "";
}

.fa-dharmachakra {
    --fa: "";
    --fa--fa: "";
}

.fa-objects-align-left {
    --fa: "";
    --fa--fa: "";
}

.fa-oil-can-drip {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smiling-hands {
    --fa: "";
    --fa--fa: "";
}

.fa-broccoli {
    --fa: "";
    --fa--fa: "";
}

.fa-route-interstate {
    --fa: "";
    --fa--fa: "";
}

.fa-ear-muffs {
    --fa: "";
    --fa--fa: "";
}

.fa-hotdog {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-blind,
.fa-person-walking-with-cane {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-90 {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-terminal {
    --fa: "";
    --fa--fa: "";
}

.fa-kite {
    --fa: "";
    --fa--fa: "";
}

.fa-drum {
    --fa: "";
    --fa--fa: "";
}

.fa-scrubber {
    --fa: "";
    --fa--fa: "";
}

.fa-ice-cream {
    --fa: "";
    --fa--fa: "";
}

.fa-heart-circle-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-fish-bones {
    --fa: "";
    --fa--fa: "";
}

.fa-deer-rudolph {
    --fa: "";
    --fa--fa: "";
}

.fa-fax {
    --fa: "";
    --fa--fa: "";
}

.fa-paragraph {
    --fa: "";
    --fa--fa: "";
}

.fa-head-side-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-square-e {
    --fa: "";
    --fa--fa: "";
}

.fa-meter-fire {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-hail {
    --fa: "";
    --fa--fa: "";
}

.fa-check-to-slot,
.fa-vote-yea {
    --fa: "";
    --fa--fa: "";
}

.fa-money-from-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-star-half {
    --fa: "";
    --fa--fa: "";
}

.fa-car-bus {
    --fa: "";
    --fa--fa: "";
}

.fa-speaker {
    --fa: "";
    --fa--fa: "";
}

.fa-timer {
    --fa: "";
    --fa--fa: "";
}

.fa-boxes,
.fa-boxes-alt,
.fa-boxes-stacked {
    --fa: "";
    --fa--fa: "";
}

.fa-landmark-magnifying-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-grill-hot {
    --fa: "";
    --fa--fa: "";
}

.fa-ballot-check {
    --fa: "";
    --fa--fa: "";
}

.fa-chain,
.fa-link {
    --fa: "";
    --fa--fa: "";
}

.fa-assistive-listening-systems,
.fa-ear-listen {
    --fa: "";
    --fa--fa: "";
}

.fa-file-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-tree-city {
    --fa: "";
    --fa--fa: "";
}

.fa-play {
    --fa: "";
    --fa--fa: "";
}

.fa-font {
    --fa: "";
    --fa--fa: "";
}

.fa-coffee-togo,
.fa-cup-togo {
    --fa: "";
    --fa--fa: "";
}

.fa-square-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-burger-lettuce {
    --fa: "";
    --fa--fa: "";
}

.fa-table-cells-row-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-rupiah-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass,
.fa-search {
    --fa: "";
    --fa--fa: "";
}

.fa-ping-pong-paddle-ball,
.fa-table-tennis,
.fa-table-tennis-paddle-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-diagnoses,
.fa-person-dots-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-double-down,
.fa-chevrons-down {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-can-arrow-up,
.fa-trash-restore-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-3,
.fa-signal-good {
    --fa: "";
    --fa--fa: "";
}

.fa-location-question,
.fa-map-marker-question {
    --fa: "";
    --fa--fa: "";
}

.fa-floppy-disk-circle-xmark,
.fa-floppy-disk-times,
.fa-save-circle-xmark,
.fa-save-times {
    --fa: "";
    --fa--fa: "";
}

.fa-naira-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-peach {
    --fa: "";
    --fa--fa: "";
}

.fa-circles-overlap-3,
.fa-pronoun {
    --fa: "";
    --fa--fa: "";
}

.fa-taxi-bus {
    --fa: "";
    --fa--fa: "";
}

.fa-bracket-curly,
.fa-bracket-curly-left {
    --fa: "\{";
    --fa--fa: "\{\{";
}

.fa-lobster {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-flatbed-empty,
.fa-dolly-flatbed-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-colon {
    --fa: "\:";
    --fa--fa: "\:\:";
}

.fa-cart-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-wand {
    --fa: "";
    --fa--fa: "";
}

.fa-walkie-talkie {
    --fa: "";
    --fa--fa: "";
}

.fa-file-edit,
.fa-file-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-receipt {
    --fa: "";
    --fa--fa: "";
}

.fa-table-picnic {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-square,
.fa-pencil-square,
.fa-square-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-microphone-lines,
.fa-microphone-circle-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-desktop-slash,
.fa-display-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-suitcase-rolling {
    --fa: "";
    --fa--fa: "";
}

.fa-person-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-transporter-2 {
    --fa: "";
    --fa--fa: "";
}

.fa-user-hoodie {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-receiving,
.fa-hands-holding-diamond {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill-simple-wave {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-down {
    --fa: "";
    --fa--fa: "";
}

.fa-battery,
.fa-battery-5,
.fa-battery-full {
    --fa: "";
    --fa--fa: "";
}

.fa-bell-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-book-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-hospitals {
    --fa: "";
    --fa--fa: "";
}

.fa-club {
    --fa: "";
    --fa--fa: "";
}

.fa-skull-crossbones {
    --fa: "";
    --fa--fa: "";
}

.fa-dewpoint,
.fa-droplet-degree {
    --fa: "";
    --fa--fa: "";
}

.fa-code-compare {
    --fa: "";
    --fa--fa: "";
}

.fa-list-dots,
.fa-list-ul {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-magic {
    --fa: "";
    --fa--fa: "";
}

.fa-watermelon-slice {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-ellipsis {
    --fa: "";
    --fa--fa: "";
}

.fa-school-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-tower-cell {
    --fa: "";
    --fa--fa: "";
}

.fa-sd-cards {
    --fa: "";
    --fa--fa: "";
}

.fa-jug-bottle {
    --fa: "";
    --fa--fa: "";
}

.fa-down-long,
.fa-long-arrow-alt-down {
    --fa: "";
    --fa--fa: "";
}

.fa-envelopes {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-office {
    --fa: "";
    --fa--fa: "";
}

.fa-ranking-star {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-king {
    --fa: "";
    --fa--fa: "";
}

.fa-nfc-pen {
    --fa: "";
    --fa--fa: "";
}

.fa-person-harassing {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-play {
    --fa: "";
    --fa--fa: "";
}

.fa-hat-winter {
    --fa: "";
    --fa--fa: "";
}

.fa-brazilian-real-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-landmark-alt,
.fa-landmark-dome {
    --fa: "";
    --fa--fa: "";
}

.fa-bone-break {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-down-from-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-television,
.fa-tv,
.fa-tv-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-border-left {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-divide {
    --fa: "";
    --fa--fa: "";
}

.fa-shrimp {
    --fa: "";
    --fa--fa: "";
}

.fa-list-check,
.fa-tasks {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-subtask {
    --fa: "";
    --fa--fa: "";
}

.fa-jug-detergent {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-user,
.fa-user-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-square-y {
    --fa: "";
    --fa--fa: "";
}

.fa-user-doctor-hair {
    --fa: "";
    --fa--fa: "";
}

.fa-planet-ringed {
    --fa: "";
    --fa--fa: "";
}

.fa-mushroom {
    --fa: "";
    --fa--fa: "";
}

.fa-user-shield {
    --fa: "";
    --fa--fa: "";
}

.fa-megaphone {
    --fa: "";
    --fa--fa: "";
}

.fa-wreath-laurel {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-exclamation-check {
    --fa: "";
    --fa--fa: "";
}

.fa-wind {
    --fa: "";
    --fa--fa: "";
}

.fa-box-dollar,
.fa-box-usd {
    --fa: "";
    --fa--fa: "";
}

.fa-car-burst,
.fa-car-crash {
    --fa: "";
    --fa--fa: "";
}

.fa-y {
    --fa: "Y";
    --fa--fa: "YY";
}

.fa-user-headset {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-retweet,
.fa-retweet-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-person-snowboarding,
.fa-snowboarding {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-square-right,
.fa-square-chevron-right {
    --fa: "";
    --fa--fa: "";
}

.fa-lacrosse-stick-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-shipping-fast,
.fa-truck-fast {
    --fa: "";
    --fa--fa: "";
}

.fa-user-magnifying-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-star-sharp {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-1 {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-star,
.fa-star-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-fish {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-fog,
.fa-fog {
    --fa: "";
    --fa--fa: "";
}

.fa-waffle {
    --fa: "";
    --fa--fa: "";
}

.fa-music-alt,
.fa-music-note {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-shopping-fast {
    --fa: "";
    --fa--fa: "";
}

.fa-object-union {
    --fa: "";
    --fa--fa: "";
}

.fa-user-graduate {
    --fa: "";
    --fa--fa: "";
}

.fa-starfighter {
    --fa: "";
    --fa--fa: "";
}

.fa-adjust,
.fa-circle-half-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-long-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-square-down,
.fa-square-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-diamond-half-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-clapperboard {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-square-left,
.fa-square-chevron-left {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-intercom {
    --fa: "";
    --fa--fa: "";
}

.fa-chain-horizontal,
.fa-link-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-mango {
    --fa: "";
    --fa--fa: "";
}

.fa-music-alt-slash,
.fa-music-note-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-radiation,
.fa-radiation-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-face-tongue-sweat {
    --fa: "";
    --fa--fa: "";
}

.fa-globe-stand {
    --fa: "";
    --fa--fa: "";
}

.fa-baseball,
.fa-baseball-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-p {
    --fa: "";
    --fa--fa: "";
}

.fa-award-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-jet-fighter-up {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-project,
.fa-project-diagram {
    --fa: "";
    --fa--fa: "";
}

.fa-pedestal {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-pyramid {
    --fa: "";
    --fa--fa: "";
}

.fa-sidebar {
    --fa: "";
    --fa--fa: "";
}

.fa-frosty-head,
.fa-snowman-head {
    --fa: "";
    --fa--fa: "";
}

.fa-copy {
    --fa: "";
    --fa--fa: "";
}

.fa-burger-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-volume-mute,
.fa-volume-times,
.fa-volume-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-sparkles {
    --fa: "";
    --fa--fa: "";
}

.fa-bars-filter {
    --fa: "";
    --fa--fa: "";
}

.fa-paintbrush-pencil {
    --fa: "";
    --fa--fa: "";
}

.fa-party-bell {
    --fa: "";
    --fa--fa: "";
}

.fa-user-vneck-hair {
    --fa: "";
    --fa--fa: "";
}

.fa-jack-o-lantern {
    --fa: "";
    --fa--fa: "";
}

.fa-grip,
.fa-grip-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-share-from-square,
.fa-share-square {
    --fa: "";
    --fa--fa: "";
}

.fa-keynote {
    --fa: "";
    --fa--fa: "";
}

.fa-child-combatant,
.fa-child-rifle {
    --fa: "";
    --fa--fa: "";
}

.fa-gun {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-square,
.fa-square-phone {
    --fa: "";
    --fa--fa: "";
}

.fa-hat-beach {
    --fa: "";
    --fa--fa: "";
}

.fa-add,
.fa-plus {
    --fa: "\+";
    --fa--fa: "\+\+";
}

.fa-expand {
    --fa: "";
    --fa--fa: "";
}

.fa-computer {
    --fa: "";
    --fa--fa: "";
}

.fa-fort {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-check {
    --fa: "";
    --fa--fa: "";
}

.fa-close,
.fa-multiply,
.fa-remove,
.fa-times,
.fa-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smirking {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows,
.fa-arrows-up-down-left-right {
    --fa: "";
    --fa--fa: "";
}

.fa-chalkboard-teacher,
.fa-chalkboard-user {
    --fa: "";
    --fa--fa: "";
}

.fa-rhombus {
    --fa: "";
    --fa--fa: "";
}

.fa-claw-marks {
    --fa: "";
    --fa--fa: "";
}

.fa-peso-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-tongue {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-circle-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-building-shield {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-phone-flip,
.fa-phone-circle-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-baby {
    --fa: "";
    --fa--fa: "";
}

.fa-users-line {
    --fa: "";
    --fa--fa: "";
}

.fa-quote-left,
.fa-quote-left-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-tractor {
    --fa: "";
    --fa--fa: "";
}

.fa-down-from-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-key-skeleton {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-arrow-up,
.fa-trash-restore {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-up-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-to-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-lines-leaning {
    --fa: "";
    --fa--fa: "";
}

.fa-square-q {
    --fa: "";
    --fa--fa: "";
}

.fa-ruler-combined {
    --fa: "";
    --fa--fa: "";
}

.fa-icons-alt,
.fa-symbols {
    --fa: "";
    --fa--fa: "";
}

.fa-copyright {
    --fa: "";
    --fa--fa: "";
}

.fa-flask-gear {
    --fa: "";
    --fa--fa: "";
}

.fa-highlighter-line {
    --fa: "";
    --fa--fa: "";
}

.fa-bracket,
.fa-bracket-left,
.fa-bracket-square {
    --fa: "\[";
    --fa--fa: "\[\[";
}

.fa-island-tree-palm,
.fa-island-tropical {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-from-left,
.fa-arrow-right-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-h2 {
    --fa: "";
    --fa--fa: "";
}

.fa-equals {
    --fa: "\=";
    --fa--fa: "\=\=";
}

.fa-cake-slice,
.fa-shortcake {
    --fa: "";
    --fa--fa: "";
}

.fa-building-magnifying-glass {
    --fa: "";
    --fa--fa: "";
}

.fa-peanut {
    --fa: "";
    --fa--fa: "";
}

.fa-wrench-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-blender {
    --fa: "";
    --fa--fa: "";
}

.fa-teeth {
    --fa: "";
    --fa--fa: "";
}

.fa-tally-2 {
    --fa: "";
    --fa--fa: "";
}

.fa-ils,
.fa-shekel,
.fa-shekel-sign,
.fa-sheqel,
.fa-sheqel-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-cars {
    --fa: "";
    --fa--fa: "";
}

.fa-axe-battle {
    --fa: "";
    --fa--fa: "";
}

.fa-user-hair-long {
    --fa: "";
    --fa--fa: "";
}

.fa-map {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left-from-arc {
    --fa: "";
    --fa--fa: "";
}

.fa-file-circle-info {
    --fa: "";
    --fa--fa: "";
}

.fa-face-disappointed {
    --fa: "";
    --fa--fa: "";
}

.fa-lasso-sparkles {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-eleven {
    --fa: "";
    --fa--fa: "";
}

.fa-rocket {
    --fa: "";
    --fa--fa: "";
}

.fa-siren-on {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-ten {
    --fa: "";
    --fa--fa: "";
}

.fa-candle-holder {
    --fa: "";
    --fa--fa: "";
}

.fa-video-arrow-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-photo-film,
.fa-photo-video {
    --fa: "";
    --fa--fa: "";
}

.fa-floppy-disk-circle-arrow-right,
.fa-save-circle-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-hexagon-nodes-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-planet-moon {
    --fa: "";
    --fa--fa: "";
}

.fa-face-eyes-xmarks {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-scatter {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-gf {
    --fa: "";
    --fa--fa: "";
}

.fa-display-arrow-down {
    --fa: "";
    --fa--fa: "";
}

.fa-store {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-trend-up {
    --fa: "";
    --fa--fa: "";
}

.fa-plug-circle-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-olive-branch {
    --fa: "";
    --fa--fa: "";
}

.fa-angle {
    --fa: "";
    --fa--fa: "";
}

.fa-vacuum-robot {
    --fa: "";
    --fa--fa: "";
}

.fa-sign,
.fa-sign-hanging {
    --fa: "";
    --fa--fa: "";
}

.fa-square-divide {
    --fa: "";
    --fa--fa: "";
}

.fa-folder-check {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-stream-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-bezier-curve {
    --fa: "";
    --fa--fa: "";
}

.fa-eye-dropper-half {
    --fa: "";
    --fa--fa: "";
}

.fa-store-lock {
    --fa: "";
    --fa--fa: "";
}

.fa-bell-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-bolt-sun,
.fa-thunderstorm-sun {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-quote {
    --fa: "";
    --fa--fa: "";
}

.fa-tablet,
.fa-tablet-android {
    --fa: "";
    --fa--fa: "";
}

.fa-school-flag {
    --fa: "";
    --fa--fa: "";
}

.fa-message-code {
    --fa: "";
    --fa--fa: "";
}

.fa-glass-half,
.fa-glass-half-empty,
.fa-glass-half-full {
    --fa: "";
    --fa--fa: "";
}

.fa-fill {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-minus,
.fa-message-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-up {
    --fa: "";
    --fa--fa: "";
}

.fa-dinosaur {
    --fa: "";
    --fa--fa: "";
}

.fa-drumstick-bite {
    --fa: "";
    --fa--fa: "";
}

.fa-chain-horizontal-slash,
.fa-link-horizontal-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-holly-berry {
    --fa: "";
    --fa--fa: "";
}

.fa-nose {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-left-to-arc {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-left {
    --fa: "";
    --fa--fa: "";
}

.fa-bacteria {
    --fa: "";
    --fa--fa: "";
}

.fa-clouds {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-lizard {
    --fa: "";
    --fa--fa: "";
}

.fa-table-pivot {
    --fa: "";
    --fa--fa: "";
}

.fa-filter-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-can-arrow-turn-left,
.fa-trash-can-undo,
.fa-trash-undo-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-notdef {
    --fa: "";
    --fa--fa: "";
}

.fa-disease {
    --fa: "";
    --fa--fa: "";
}

.fa-person-to-door {
    --fa: "";
    --fa--fa: "";
}

.fa-turntable {
    --fa: "";
    --fa--fa: "";
}

.fa-briefcase-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-genderless {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-right {
    --fa: "";
    --fa--fa: "";
}

.fa-signal-1,
.fa-signal-weak {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-five {
    --fa: "";
    --fa--fa: "";
}

.fa-retweet {
    --fa: "";
    --fa--fa: "";
}

.fa-car-alt,
.fa-car-rear {
    --fa: "";
    --fa--fa: "";
}

.fa-pump-soap {
    --fa: "";
    --fa--fa: "";
}

.fa-computer-classic {
    --fa: "";
    --fa--fa: "";
}

.fa-frame {
    --fa: "";
    --fa--fa: "";
}

.fa-video-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-2,
.fa-battery-quarter {
    --fa: "";
    --fa--fa: "";
}

.fa-ellipsis-h-alt,
.fa-ellipsis-stroke {
    --fa: "";
    --fa--fa: "";
}

.fa-radio {
    --fa: "";
    --fa--fa: "";
}

.fa-baby-carriage,
.fa-carriage-baby {
    --fa: "";
    --fa--fa: "";
}

.fa-face-expressionless {
    --fa: "";
    --fa--fa: "";
}

.fa-down-to-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-music {
    --fa: "";
    --fa--fa: "";
}

.fa-traffic-light {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-thermometer {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-vr-cardboard {
    --fa: "";
    --fa--fa: "";
}

.fa-car-tilt {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-circle-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-brightness-low {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-middle-finger {
    --fa: "";
    --fa--fa: "";
}

.fa-percent,
.fa-percentage {
    --fa: "\%";
    --fa--fa: "\%\%";
}

.fa-truck-moving {
    --fa: "";
    --fa--fa: "";
}

.fa-glass-water-droplet {
    --fa: "";
    --fa--fa: "";
}

.fa-conveyor-belt {
    --fa: "";
    --fa--fa: "";
}

.fa-location-check,
.fa-map-marker-check {
    --fa: "";
    --fa--fa: "";
}

.fa-coin-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-display {
    --fa: "";
    --fa--fa: "";
}

.fa-person-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile,
.fa-smile {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-hangup {
    --fa: "";
    --fa--fa: "";
}

.fa-signature-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-thumb-tack,
.fa-thumbtack {
    --fa: "";
    --fa--fa: "";
}

.fa-wheat-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-trophy {
    --fa: "";
    --fa--fa: "";
}

.fa-clouds-sun {
    --fa: "";
    --fa--fa: "";
}

.fa-person-praying,
.fa-pray {
    --fa: "";
    --fa--fa: "";
}

.fa-hammer {
    --fa: "";
    --fa--fa: "";
}

.fa-face-vomit {
    --fa: "";
    --fa--fa: "";
}

.fa-speakers {
    --fa: "";
    --fa--fa: "";
}

.fa-teletype-answer,
.fa-tty-answer {
    --fa: "";
    --fa--fa: "";
}

.fa-mug-tea-saucer {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-lean-canvas {
    --fa: "";
    --fa--fa: "";
}

.fa-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-dial,
.fa-dial-med-high {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-peace {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-trash,
.fa-trash-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-rotate,
.fa-sync-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-quarters {
    --fa: "";
    --fa--fa: "";
}

.fa-spinner {
    --fa: "";
    --fa--fa: "";
}

.fa-tower-control {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-triangle-square,
.fa-sort-shapes-up {
    --fa: "";
    --fa--fa: "";
}

.fa-whale {
    --fa: "";
    --fa--fa: "";
}

.fa-robot {
    --fa: "";
    --fa--fa: "";
}

.fa-peace {
    --fa: "";
    --fa--fa: "";
}

.fa-party-horn {
    --fa: "";
    --fa--fa: "";
}

.fa-cogs,
.fa-gears {
    --fa: "";
    --fa--fa: "";
}

.fa-sun-alt,
.fa-sun-bright {
    --fa: "";
    --fa--fa: "";
}

.fa-warehouse {
    --fa: "";
    --fa--fa: "";
}

.fa-conveyor-belt-arm {
    --fa: "";
    --fa--fa: "";
}

.fa-lock-keyhole-open,
.fa-lock-open-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-box-fragile,
.fa-square-fragile,
.fa-square-wine-glass-crack {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-right-dots {
    --fa: "";
    --fa--fa: "";
}

.fa-square-n {
    --fa: "";
    --fa--fa: "";
}

.fa-splotch {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-hearts,
.fa-grin-hearts {
    --fa: "";
    --fa--fa: "";
}

.fa-meter {
    --fa: "";
    --fa--fa: "";
}

.fa-mandolin {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-four {
    --fa: "";
    --fa--fa: "";
}

.fa-sim-card {
    --fa: "";
    --fa--fa: "";
}

.fa-transgender,
.fa-transgender-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-mercury {
    --fa: "";
    --fa--fa: "";
}

.fa-up-from-bracket {
    --fa: "";
    --fa--fa: "";
}

.fa-knife-kitchen {
    --fa: "";
    --fa--fa: "";
}

.fa-border-right {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-turn-down,
.fa-level-down {
    --fa: "";
    --fa--fa: "";
}

.fa-spade {
    --fa: "";
    --fa--fa: "";
}

.fa-card-spade {
    --fa: "";
    --fa--fa: "";
}

.fa-line-columns {
    --fa: "";
    --fa--fa: "";
}

.fa-ant {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-to-line,
.fa-arrow-to-right {
    --fa: "";
    --fa--fa: "";
}

.fa-person-falling-burst {
    --fa: "";
    --fa--fa: "";
}

.fa-flag-pennant,
.fa-pennant {
    --fa: "";
    --fa--fa: "";
}

.fa-conveyor-belt-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-user-group-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-award {
    --fa: "";
    --fa--fa: "";
}

.fa-ticket-alt,
.fa-ticket-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-building {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-double-left,
.fa-angles-left {
    --fa: "";
    --fa--fa: "";
}

.fa-camcorder,
.fa-video-handheld {
    --fa: "";
    --fa--fa: "";
}

.fa-pancakes {
    --fa: "";
    --fa--fa: "";
}

.fa-album-circle-user {
    --fa: "";
    --fa--fa: "";
}

.fa-subtitles-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-qrcode {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-d10 {
    --fa: "";
    --fa--fa: "";
}

.fa-fireplace {
    --fa: "";
    --fa--fa: "";
}

.fa-browser {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-paintbrush,
.fa-pencil-paintbrush {
    --fa: "";
    --fa--fa: "";
}

.fa-fish-cooked {
    --fa: "";
    --fa--fa: "";
}

.fa-chair-office {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-music {
    --fa: "";
    --fa--fa: "";
}

.fa-nesting-dolls {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-rotate-left,
.fa-history {
    --fa: "";
    --fa--fa: "";
}

.fa-trumpet {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-beam-sweat,
.fa-grin-beam-sweat {
    --fa: "";
    --fa--fa: "";
}

.fa-fire-smoke {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-missed {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-right-from-file,
.fa-file-export {
    --fa: "";
    --fa--fa: "";
}

.fa-shield,
.fa-shield-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-short-wide,
.fa-sort-amount-up-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-repeat-1,
.fa-repeat-1-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-gun-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-avocado {
    --fa: "";
    --fa--fa: "";
}

.fa-binary {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-nodes {
    --fa: "";
    --fa--fa: "";
}

.fa-glasses-alt,
.fa-glasses-round {
    --fa: "";
    --fa--fa: "";
}

.fa-phone-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-ditto {
    --fa: '"';
    --fa--fa: '""';
}

.fa-person-seat {
    --fa: "";
    --fa--fa: "";
}

.fa-house-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-golf-ball,
.fa-golf-ball-tee {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-circle-left,
.fa-circle-chevron-left {
    --fa: "";
    --fa--fa: "";
}

.fa-house-chimney-window {
    --fa: "";
    --fa--fa: "";
}

.fa-scythe {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-nib {
    --fa: "";
    --fa--fa: "";
}

.fa-ban-parking,
.fa-parking-circle-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-tent-arrow-turn-left {
    --fa: "";
    --fa--fa: "";
}

.fa-face-diagonal-mouth {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-cells {
    --fa: "";
    --fa--fa: "";
}

.fa-cricket,
.fa-cricket-bat-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-tents {
    --fa: "";
    --fa--fa: "";
}

.fa-magic,
.fa-wand-magic {
    --fa: "";
    --fa--fa: "";
}

.fa-dog {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-line {
    --fa: "";
    --fa--fa: "";
}

.fa-atom-alt,
.fa-atom-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-ampersand {
    --fa: "\&";
    --fa--fa: "\&\&";
}

.fa-carrot {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-from-bottom,
.fa-arrow-up-from-line {
    --fa: "";
    --fa--fa: "";
}

.fa-moon {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-wine-glass-alt,
.fa-wine-glass-empty {
    --fa: "";
    --fa--fa: "";
}

.fa-square-star {
    --fa: "";
    --fa--fa: "";
}

.fa-cheese {
    --fa: "";
    --fa--fa: "";
}

.fa-send-backward {
    --fa: "";
    --fa--fa: "";
}

.fa-yin-yang {
    --fa: "";
    --fa--fa: "";
}

.fa-music {
    --fa: "";
    --fa--fa: "";
}

.fa-compass-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-one {
    --fa: "";
    --fa--fa: "";
}

.fa-file-music {
    --fa: "";
    --fa--fa: "";
}

.fa-code-commit {
    --fa: "";
    --fa--fa: "";
}

.fa-temperature-low {
    --fa: "";
    --fa--fa: "";
}

.fa-biking,
.fa-person-biking {
    --fa: "";
    --fa--fa: "";
}

.fa-display-chart-up-circle-currency {
    --fa: "";
    --fa--fa: "";
}

.fa-skeleton {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-g {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-arrow-up-left {
    --fa: "";
    --fa--fa: "";
}

.fa-coin-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-broom {
    --fa: "";
    --fa--fa: "";
}

.fa-vacuum {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-card-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-cfl-on {
    --fa: "";
    --fa--fa: "";
}

.fa-melon {
    --fa: "";
    --fa--fa: "";
}

.fa-gopuram {
    --fa: "";
    --fa--fa: "";
}

.fa-earth-oceania,
.fa-globe-oceania {
    --fa: "";
    --fa--fa: "";
}

.fa-container-storage {
    --fa: "";
    --fa--fa: "";
}

.fa-face-pouting {
    --fa: "";
    --fa--fa: "";
}

.fa-square-xmark,
.fa-times-square,
.fa-xmark-square {
    --fa: "";
    --fa--fa: "";
}

.fa-exploding-head,
.fa-face-explode {
    --fa: "";
    --fa--fa: "";
}

.fa-hashtag {
    --fa: "\#";
    --fa--fa: "\#\#";
}

.fa-expand-alt,
.fa-up-right-and-down-left-from-center {
    --fa: "";
    --fa--fa: "";
}

.fa-oil-can {
    --fa: "";
    --fa--fa: "";
}

.fa-t {
    --fa: "T";
    --fa--fa: "TT";
}

.fa-transformer-bolt {
    --fa: "";
    --fa--fa: "";
}

.fa-hippo {
    --fa: "";
    --fa--fa: "";
}

.fa-chart-column {
    --fa: "";
    --fa--fa: "";
}

.fa-cassette-vhs,
.fa-vhs {
    --fa: "";
    --fa--fa: "";
}

.fa-infinity {
    --fa: "";
    --fa--fa: "";
}

.fa-vial-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-chimney {
    --fa: "";
    --fa--fa: "";
}

.fa-object-intersect {
    --fa: "";
    --fa--fa: "";
}

.fa-person-arrow-down-to-line {
    --fa: "";
    --fa--fa: "";
}

.fa-voicemail {
    --fa: "";
    --fa--fa: "";
}

.fa-block-brick,
.fa-wall-brick {
    --fa: "";
    --fa--fa: "";
}

.fa-fan {
    --fa: "";
    --fa--fa: "";
}

.fa-bags-shopping {
    --fa: "";
    --fa--fa: "";
}

.fa-paragraph-left,
.fa-paragraph-rtl {
    --fa: "";
    --fa--fa: "";
}

.fa-person-walking-luggage {
    --fa: "";
    --fa--fa: "";
}

.fa-caravan-alt,
.fa-caravan-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-turtle {
    --fa: "";
    --fa--fa: "";
}

.fa-pencil-mechanical {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-alt-v,
.fa-up-down {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-moon-rain {
    --fa: "";
    --fa--fa: "";
}

.fa-booth-curtain {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar {
    --fa: "";
    --fa--fa: "";
}

.fa-box-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-trailer {
    --fa: "";
    --fa--fa: "";
}

.fa-user-doctor-message,
.fa-user-md-chat {
    --fa: "";
    --fa--fa: "";
}

.fa-bahai,
.fa-haykal {
    --fa: "";
    --fa--fa: "";
}

.fa-lighthouse {
    --fa: "";
    --fa--fa: "";
}

.fa-amp-guitar {
    --fa: "";
    --fa--fa: "";
}

.fa-sd-card {
    --fa: "";
    --fa--fa: "";
}

.fa-volume-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-border-bottom {
    --fa: "";
    --fa--fa: "";
}

.fa-wifi-1,
.fa-wifi-weak {
    --fa: "";
    --fa--fa: "";
}

.fa-dragon {
    --fa: "";
    --fa--fa: "";
}

.fa-shoe-prints {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-plus,
.fa-plus-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grin-tongue-wink,
.fa-grin-tongue-wink {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding {
    --fa: "";
    --fa--fa: "";
}

.fa-plug-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-chain-broken,
.fa-chain-slash,
.fa-link-slash,
.fa-unlink {
    --fa: "";
    --fa--fa: "";
}

.fa-clone {
    --fa: "";
    --fa--fa: "";
}

.fa-person-walking-arrow-loop-left {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-z-a,
.fa-sort-alpha-up-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-fire-alt,
.fa-fire-flame-curved {
    --fa: "";
    --fa--fa: "";
}

.fa-tornado {
    --fa: "";
    --fa--fa: "";
}

.fa-file-circle-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-delete-right {
    --fa: "";
    --fa--fa: "";
}

.fa-book-quran,
.fa-quran {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-quarter {
    --fa: "";
    --fa--fa: "";
}

.fa-anchor {
    --fa: "";
    --fa--fa: "";
}

.fa-border-all {
    --fa: "";
    --fa--fa: "";
}

.fa-function {
    --fa: "";
    --fa--fa: "";
}

.fa-angry,
.fa-face-angry {
    --fa: "";
    --fa--fa: "";
}

.fa-people-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-cookie-bite {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-trend-down {
    --fa: "";
    --fa--fa: "";
}

.fa-feed,
.fa-rss {
    --fa: "";
    --fa--fa: "";
}

.fa-face-monocle {
    --fa: "";
    --fa--fa: "";
}

.fa-draw-polygon {
    --fa: "";
    --fa--fa: "";
}

.fa-balance-scale,
.fa-scale-balanced {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-lines,
.fa-calendar-note {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-big-small,
.fa-sort-size-down {
    --fa: "";
    --fa--fa: "";
}

.fa-gauge-simple-high,
.fa-tachometer,
.fa-tachometer-fast {
    --fa: "";
    --fa--fa: "";
}

.fa-do-not-enter {
    --fa: "";
    --fa--fa: "";
}

.fa-shower {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-d8 {
    --fa: "";
    --fa--fa: "";
}

.fa-desktop,
.fa-desktop-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-m {
    --fa: "M";
    --fa--fa: "MM";
}

.fa-spinner-scale {
    --fa: "";
    --fa--fa: "";
}

.fa-grip-dots-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-face-viewfinder {
    --fa: "";
    --fa--fa: "";
}

.fa-creemee,
.fa-soft-serve {
    --fa: "";
    --fa--fa: "";
}

.fa-h5 {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-back-point-down {
    --fa: "";
    --fa--fa: "";
}

.fa-table-list,
.fa-th-list {
    --fa: "";
    --fa--fa: "";
}

.fa-basket-shopping-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-sms,
.fa-sms {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle,
.fa-rectangle-landscape {
    --fa: "";
    --fa--fa: "";
}

.fa-clipboard-list-check {
    --fa: "";
    --fa--fa: "";
}

.fa-turkey {
    --fa: "";
    --fa--fa: "";
}

.fa-book {
    --fa: "";
    --fa--fa: "";
}

.fa-user-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-ice-skate {
    --fa: "";
    --fa--fa: "";
}

.fa-check {
    --fa: "";
    --fa--fa: "";
}

.fa-battery-4,
.fa-battery-three-quarters {
    --fa: "";
    --fa--fa: "";
}

.fa-tomato {
    --fa: "";
    --fa--fa: "";
}

.fa-sword-laser {
    --fa: "";
    --fa--fa: "";
}

.fa-house-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-buildings {
    --fa: "";
    --fa--fa: "";
}

.fa-angle-left {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-flatbed-boxes,
.fa-dolly-flatbed-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-diagram-successor {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-square-w {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-split-up-and-left {
    --fa: "";
    --fa--fa: "";
}

.fa-lamp {
    --fa: "";
    --fa--fa: "";
}

.fa-airplay {
    --fa: "";
    --fa--fa: "";
}

.fa-fist-raised,
.fa-hand-fist {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-quartered {
    --fa: "";
    --fa--fa: "";
}

.fa-slash-forward {
    --fa: "\/";
    --fa--fa: "\/\/";
}

.fa-location-pen,
.fa-map-marker-edit {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-moon {
    --fa: "";
    --fa--fa: "";
}

.fa-pot-food {
    --fa: "";
    --fa--fa: "";
}

.fa-briefcase {
    --fa: "";
    --fa--fa: "";
}

.fa-person-falling {
    --fa: "";
    --fa--fa: "";
}

.fa-image-portrait,
.fa-portrait {
    --fa: "";
    --fa--fa: "";
}

.fa-user-tag {
    --fa: "";
    --fa--fa: "";
}

.fa-rug {
    --fa: "";
    --fa--fa: "";
}

.fa-print-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-earth-europe,
.fa-globe-europe {
    --fa: "";
    --fa--fa: "";
}

.fa-cart-flatbed-suitcase,
.fa-luggage-cart {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-back-point-ribbon {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-times,
.fa-rectangle-xmark,
.fa-times-rectangle,
.fa-window-close {
    --fa: "";
    --fa--fa: "";
}

.fa-tire-rugged {
    --fa: "";
    --fa--fa: "";
}

.fa-lightbulb-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-cowbell {
    --fa: "";
    --fa--fa: "";
}

.fa-baht-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-corner {
    --fa: "";
    --fa--fa: "";
}

.fa-chevron-double-right,
.fa-chevrons-right {
    --fa: "";
    --fa--fa: "";
}

.fa-book-open {
    --fa: "";
    --fa--fa: "";
}

.fa-book-journal-whills,
.fa-journal-whills {
    --fa: "";
    --fa--fa: "";
}

.fa-inhaler {
    --fa: "";
    --fa--fa: "";
}

.fa-handcuffs {
    --fa: "";
    --fa--fa: "";
}

.fa-snake {
    --fa: "";
    --fa--fa: "";
}

.fa-exclamation-triangle,
.fa-triangle-exclamation,
.fa-warning {
    --fa: "";
    --fa--fa: "";
}

.fa-note-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-database {
    --fa: "";
    --fa--fa: "";
}

.fa-down-left {
    --fa: "";
    --fa--fa: "";
}

.fa-mail-forward,
.fa-share {
    --fa: "";
    --fa--fa: "";
}

.fa-face-thinking {
    --fa: "";
    --fa--fa: "";
}

.fa-turn-down-right {
    --fa: "";
    --fa--fa: "";
}

.fa-bottle-droplet {
    --fa: "";
    --fa--fa: "";
}

.fa-mask-face {
    --fa: "";
    --fa--fa: "";
}

.fa-hill-rockslide {
    --fa: "";
    --fa--fa: "";
}

.fa-scanner-keyboard {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-o {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-horizontal {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-dollar,
.fa-message-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-exchange-alt,
.fa-right-left {
    --fa: "";
    --fa--fa: "";
}

.fa-columns-3 {
    --fa: "";
    --fa--fa: "";
}

.fa-paper-plane {
    --fa: "";
    --fa--fa: "";
}

.fa-road-circle-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-dungeon {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-box {
    --fa: "";
    --fa--fa: "";
}

.fa-input-text {
    --fa: "";
    --fa--fa: "";
}

.fa-window-alt,
.fa-window-flip {
    --fa: "";
    --fa--fa: "";
}

.fa-align-right {
    --fa: "";
    --fa--fa: "";
}

.fa-scanner,
.fa-scanner-gun {
    --fa: "";
    --fa--fa: "";
}

.fa-tire {
    --fa: "";
    --fa--fa: "";
}

.fa-engine {
    --fa: "";
    --fa--fa: "";
}

.fa-money-bill-1-wave,
.fa-money-bill-wave-alt {
    --fa: "";
    --fa--fa: "";
}

.fa-life-ring {
    --fa: "";
    --fa--fa: "";
}

.fa-hands,
.fa-sign-language,
.fa-signing {
    --fa: "";
    --fa--fa: "";
}

.fa-caret-circle-right,
.fa-circle-caret-right {
    --fa: "";
    --fa--fa: "";
}

.fa-turn-left {
    --fa: "";
    --fa--fa: "";
}

.fa-wheat {
    --fa: "";
    --fa--fa: "";
}

.fa-file-spreadsheet {
    --fa: "";
    --fa--fa: "";
}

.fa-audio-description-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-bell-ring {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-day {
    --fa: "";
    --fa--fa: "";
}

.fa-ladder-water,
.fa-swimming-pool,
.fa-water-ladder {
    --fa: "";
    --fa--fa: "";
}

.fa-arrows-up-down,
.fa-arrows-v {
    --fa: "";
    --fa--fa: "";
}

.fa-chess-pawn-alt,
.fa-chess-pawn-piece {
    --fa: "";
    --fa--fa: "";
}

.fa-face-grimace,
.fa-grimace {
    --fa: "";
    --fa--fa: "";
}

.fa-wheelchair-alt,
.fa-wheelchair-move {
    --fa: "";
    --fa--fa: "";
}

.fa-level-down-alt,
.fa-turn-down {
    --fa: "";
    --fa--fa: "";
}

.fa-square-s {
    --fa: "";
    --fa--fa: "";
}

.fa-barcode-alt,
.fa-rectangle-barcode {
    --fa: "";
    --fa--fa: "";
}

.fa-person-walking-arrow-right {
    --fa: "";
    --fa--fa: "";
}

.fa-envelope-square,
.fa-square-envelope {
    --fa: "";
    --fa--fa: "";
}

.fa-dice {
    --fa: "";
    --fa--fa: "";
}

.fa-unicorn {
    --fa: "";
    --fa--fa: "";
}

.fa-bowling-ball {
    --fa: "";
    --fa--fa: "";
}

.fa-pompebled {
    --fa: "";
    --fa--fa: "";
}

.fa-brain {
    --fa: "";
    --fa--fa: "";
}

.fa-watch-smart {
    --fa: "";
    --fa--fa: "";
}

.fa-book-user {
    --fa: "";
    --fa--fa: "";
}

.fa-sensor-cloud,
.fa-sensor-smoke {
    --fa: "";
    --fa--fa: "";
}

.fa-clapperboard-play {
    --fa: "";
    --fa--fa: "";
}

.fa-band-aid,
.fa-bandage {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-xmark,
.fa-times-circle,
.fa-xmark-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-4 {
    --fa: "";
    --fa--fa: "";
}

.fa-gifts {
    --fa: "";
    --fa--fa: "";
}

.fa-album-collection {
    --fa: "";
    --fa--fa: "";
}

.fa-hotel {
    --fa: "";
    --fa--fa: "";
}

.fa-earth-asia,
.fa-globe-asia {
    --fa: "";
    --fa--fa: "";
}

.fa-id-card-alt,
.fa-id-card-clip {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-plus,
.fa-search-plus {
    --fa: "";
    --fa--fa: "";
}

.fa-thumbs-up {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-showers {
    --fa: "";
    --fa--fa: "";
}

.fa-user-clock {
    --fa: "";
    --fa--fa: "";
}

.fa-onion {
    --fa: "";
    --fa--fa: "";
}

.fa-clock-twelve-thirty {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-to-dotted-line {
    --fa: "";
    --fa--fa: "";
}

.fa-allergies,
.fa-hand-dots {
    --fa: "";
    --fa--fa: "";
}

.fa-file-invoice {
    --fa: "";
    --fa--fa: "";
}

.fa-window-minimize {
    --fa: "";
    --fa--fa: "";
}

.fa-rectangle-wide {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-arrow-up {
    --fa: "";
    --fa--fa: "";
}

.fa-garlic {
    --fa: "";
    --fa--fa: "";
}

.fa-coffee,
.fa-mug-saucer {
    --fa: "";
    --fa--fa: "";
}

.fa-brush {
    --fa: "";
    --fa--fa: "";
}

.fa-file-half-dashed {
    --fa: "";
    --fa--fa: "";
}

.fa-tree-decorated {
    --fa: "";
    --fa--fa: "";
}

.fa-mask {
    --fa: "";
    --fa--fa: "";
}

.fa-calendar-heart {
    --fa: "";
    --fa--fa: "";
}

.fa-magnifying-glass-minus,
.fa-search-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-flower {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-down-from-arc {
    --fa: "";
    --fa--fa: "";
}

.fa-right-left-large {
    --fa: "";
    --fa--fa: "";
}

.fa-ruler-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-circles-overlap {
    --fa: "";
    --fa--fa: "";
}

.fa-user-alt,
.fa-user-large {
    --fa: "";
    --fa--fa: "";
}

.fa-starship-freighter {
    --fa: "";
    --fa--fa: "";
}

.fa-train-tram {
    --fa: "";
    --fa--fa: "";
}

.fa-bridge-suspension {
    --fa: "";
    --fa--fa: "";
}

.fa-trash-check {
    --fa: "";
    --fa--fa: "";
}

.fa-user-nurse {
    --fa: "";
    --fa--fa: "";
}

.fa-boombox {
    --fa: "";
    --fa--fa: "";
}

.fa-syringe {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-sun {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-stopwatch-20 {
    --fa: "";
    --fa--fa: "";
}

.fa-square-full {
    --fa: "";
    --fa--fa: "";
}

.fa-grip-dots {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-exclamation {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-swirl {
    --fa: "";
    --fa--fa: "";
}

.fa-falafel {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-2 {
    --fa: "";
    --fa--fa: "";
}

.fa-magnet {
    --fa: "";
    --fa--fa: "";
}

.fa-jar {
    --fa: "";
    --fa--fa: "";
}

.fa-gramophone {
    --fa: "";
    --fa--fa: "";
}

.fa-dice-d12 {
    --fa: "";
    --fa--fa: "";
}

.fa-note-sticky,
.fa-sticky-note {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-alt-down,
.fa-down {
    --fa: "";
    --fa--fa: "";
}

.fa-100,
.fa-hundred-points {
    --fa: "";
    --fa--fa: "";
}

.fa-paperclip-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-wind-circle-exclamation,
.fa-wind-warning {
    --fa: "";
    --fa--fa: "";
}

.fa-location-pin-slash,
.fa-map-marker-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-face-sad-sweat {
    --fa: "";
    --fa--fa: "";
}

.fa-bug-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-cupcake {
    --fa: "";
    --fa--fa: "";
}

.fa-light-switch-off {
    --fa: "";
    --fa--fa: "";
}

.fa-toggle-large-off {
    --fa: "";
    --fa--fa: "";
}

.fa-pen-fancy-slash {
    --fa: "";
    --fa--fa: "";
}

.fa-truck-container {
    --fa: "";
    --fa--fa: "";
}

.fa-boot {
    --fa: "";
    --fa--fa: "";
}

.fa-arrow-up-from-water-pump {
    --fa: "";
    --fa--fa: "";
}

.fa-file-check {
    --fa: "";
    --fa--fa: "";
}

.fa-bone {
    --fa: "";
    --fa--fa: "";
}

.fa-cards-blank {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-3 {
    --fa: "";
    --fa--fa: "";
}

.fa-bench-tree {
    --fa: "";
    --fa--fa: "";
}

.fa-keyboard-brightness-low {
    --fa: "";
    --fa--fa: "";
}

.fa-ski-boot-ski {
    --fa: "";
    --fa--fa: "";
}

.fa-brain-circuit {
    --fa: "";
    --fa--fa: "";
}

.fa-table-cells-row-unlock {
    --fa: "";
    --fa--fa: "";
}

.fa-user-injured {
    --fa: "";
    --fa--fa: "";
}

.fa-block-brick-fire,
.fa-firewall {
    --fa: "";
    --fa--fa: "";
}

.fa-face-sad-tear,
.fa-sad-tear {
    --fa: "";
    --fa--fa: "";
}

.fa-plane {
    --fa: "";
    --fa--fa: "";
}

.fa-tent-arrows-down {
    --fa: "";
    --fa--fa: "";
}

.fa-exclamation {
    --fa: "\!";
    --fa--fa: "\!\!";
}

.fa-arrows-spin {
    --fa: "";
    --fa--fa: "";
}

.fa-face-smile-relaxed {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-times,
.fa-comment-xmark {
    --fa: "";
    --fa--fa: "";
}

.fa-print {
    --fa: "";
    --fa--fa: "";
}

.fa-try,
.fa-turkish-lira,
.fa-turkish-lira-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-face-nose-steam {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-waveform-lines,
.fa-waveform-circle {
    --fa: "";
    --fa--fa: "";
}

.fa-dollar,
.fa-dollar-sign,
.fa-usd {
    --fa: "\$";
    --fa--fa: "\$\$";
}

.fa-ferris-wheel {
    --fa: "";
    --fa--fa: "";
}

.fa-computer-speaker {
    --fa: "";
    --fa--fa: "";
}

.fa-skull-cow {
    --fa: "";
    --fa--fa: "";
}

.fa-x {
    --fa: "X";
    --fa--fa: "XX";
}

.fa-magnifying-glass-dollar,
.fa-search-dollar {
    --fa: "";
    --fa--fa: "";
}

.fa-users-cog,
.fa-users-gear {
    --fa: "";
    --fa--fa: "";
}

.fa-person-military-pointing {
    --fa: "";
    --fa--fa: "";
}

.fa-bank,
.fa-building-columns,
.fa-institution,
.fa-museum,
.fa-university {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-t {
    --fa: "";
    --fa--fa: "";
}

.fa-sack {
    --fa: "";
    --fa--fa: "";
}

.fa-grid-2 {
    --fa: "";
    --fa--fa: "";
}

.fa-camera-cctv,
.fa-cctv {
    --fa: "";
    --fa--fa: "";
}

.fa-umbrella {
    --fa: "";
    --fa--fa: "";
}

.fa-trowel {
    --fa: "";
    --fa--fa: "";
}

.fa-horizontal-rule {
    --fa: "";
    --fa--fa: "";
}

.fa-bed-alt,
.fa-bed-front {
    --fa: "";
    --fa--fa: "";
}

.fa-d {
    --fa: "D";
    --fa--fa: "DD";
}

.fa-stapler {
    --fa: "";
    --fa--fa: "";
}

.fa-masks-theater,
.fa-theater-masks {
    --fa: "";
    --fa--fa: "";
}

.fa-file-gif {
    --fa: "";
    --fa--fa: "";
}

.fa-kip-sign {
    --fa: "";
    --fa--fa: "";
}

.fa-face-woozy {
    --fa: "";
    --fa--fa: "";
}

.fa-cloud-question {
    --fa: "";
    --fa--fa: "";
}

.fa-pineapple {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-point-left {
    --fa: "";
    --fa--fa: "";
}

.fa-gallery-thumbnails {
    --fa: "";
    --fa--fa: "";
}

.fa-circle-j {
    --fa: "";
    --fa--fa: "";
}

.fa-eyes {
    --fa: "";
    --fa--fa: "";
}

.fa-handshake-alt,
.fa-handshake-simple {
    --fa: "";
    --fa--fa: "";
}

.fa-file-caret-up,
.fa-page-caret-up {
    --fa: "";
    --fa--fa: "";
}

.fa-fighter-jet,
.fa-jet-fighter {
    --fa: "";
    --fa--fa: "";
}

.fa-comet {
    --fa: "";
    --fa--fa: "";
}

.fa-share-alt-square,
.fa-square-share-nodes {
    --fa: "";
    --fa--fa: "";
}

.fa-reflect-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-shield-keyhole {
    --fa: "";
    --fa--fa: "";
}

.fa-file-mp4 {
    --fa: "";
    --fa--fa: "";
}

.fa-barcode {
    --fa: "";
    --fa--fa: "";
}

.fa-bulldozer {
    --fa: "";
    --fa--fa: "";
}

.fa-plus-minus {
    --fa: "";
    --fa--fa: "";
}

.fa-sliders-v-square,
.fa-square-sliders-vertical {
    --fa: "";
    --fa--fa: "";
}

.fa-video,
.fa-video-camera {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-middle-alt,
.fa-message-middle {
    --fa: "";
    --fa--fa: "";
}

.fa-graduation-cap,
.fa-mortar-board {
    --fa: "";
    --fa--fa: "";
}

.fa-hand-holding-medical {
    --fa: "";
    --fa--fa: "";
}

.fa-person-circle-check {
    --fa: "";
    --fa--fa: "";
}

.fa-square-z {
    --fa: "";
    --fa--fa: "";
}

.fa-comment-alt-text,
.fa-message-text {
    --fa: "";
    --fa--fa: "";
}

.fa-level-up-alt,
.fa-turn-up {
    --fa: "";
    --fa--fa: "";
}

:host,
:root {
    --fa-font-solid: normal 900 1em/1 "Font Awesome 6 Pro";
    --fa-style-family-brands: "Font Awesome 6 Brands";
    --fa-font-brands: normal 400 1em/1 "Font Awesome 6 Brands";
    --fa-style-family-classic: "Font Awesome 6 Pro";
    --fa-font-regular: normal 400 1em/1 "Font Awesome 6 Pro";
}

.fa-solid,
.fas {
    font-weight: 900;
}

.fa-monero {
    --fa: "";
}

.fa-hooli {
    --fa: "";
}

.fa-yelp {
    --fa: "";
}

.fa-cc-visa {
    --fa: "";
}

.fa-lastfm {
    --fa: "";
}

.fa-shopware {
    --fa: "";
}

.fa-creative-commons-nc {
    --fa: "";
}

.fa-aws {
    --fa: "";
}

.fa-redhat {
    --fa: "";
}

.fa-yoast {
    --fa: "";
}

.fa-cloudflare {
    --fa: "";
}

.fa-ups {
    --fa: "";
}

.fa-pixiv {
    --fa: "";
}

.fa-wpexplorer {
    --fa: "";
}

.fa-dyalog {
    --fa: "";
}

.fa-bity {
    --fa: "";
}

.fa-stackpath {
    --fa: "";
}

.fa-buysellads {
    --fa: "";
}

.fa-first-order {
    --fa: "";
}

.fa-modx {
    --fa: "";
}

.fa-guilded {
    --fa: "";
}

.fa-vnv {
    --fa: "";
}

.fa-js-square,
.fa-square-js {
    --fa: "";
}

.fa-microsoft {
    --fa: "";
}

.fa-qq {
    --fa: "";
}

.fa-orcid {
    --fa: "";
}

.fa-java {
    --fa: "";
}

.fa-invision {
    --fa: "";
}

.fa-creative-commons-pd-alt {
    --fa: "";
}

.fa-centercode {
    --fa: "";
}

.fa-glide-g {
    --fa: "";
}

.fa-drupal {
    --fa: "";
}

.fa-jxl {
    --fa: "";
}

.fa-dart-lang {
    --fa: "";
}

.fa-hire-a-helper {
    --fa: "";
}

.fa-creative-commons-by {
    --fa: "";
}

.fa-unity {
    --fa: "";
}

.fa-whmcs {
    --fa: "";
}

.fa-rocketchat {
    --fa: "";
}

.fa-vk {
    --fa: "";
}

.fa-untappd {
    --fa: "";
}

.fa-mailchimp {
    --fa: "";
}

.fa-css3-alt {
    --fa: "";
}

.fa-reddit-square,
.fa-square-reddit {
    --fa: "";
}

.fa-vimeo-v {
    --fa: "";
}

.fa-contao {
    --fa: "";
}

.fa-square-font-awesome {
    --fa: "";
}

.fa-deskpro {
    --fa: "";
}

.fa-brave {
    --fa: "";
}

.fa-sistrix {
    --fa: "";
}

.fa-instagram-square,
.fa-square-instagram {
    --fa: "";
}

.fa-battle-net {
    --fa: "";
}

.fa-the-red-yeti {
    --fa: "";
}

.fa-hacker-news-square,
.fa-square-hacker-news {
    --fa: "";
}

.fa-edge {
    --fa: "";
}

.fa-threads {
    --fa: "";
}

.fa-napster {
    --fa: "";
}

.fa-snapchat-square,
.fa-square-snapchat {
    --fa: "";
}

.fa-google-plus-g {
    --fa: "";
}

.fa-artstation {
    --fa: "";
}

.fa-markdown {
    --fa: "";
}

.fa-sourcetree {
    --fa: "";
}

.fa-google-plus {
    --fa: "";
}

.fa-diaspora {
    --fa: "";
}

.fa-foursquare {
    --fa: "";
}

.fa-stack-overflow {
    --fa: "";
}

.fa-github-alt {
    --fa: "";
}

.fa-phoenix-squadron {
    --fa: "";
}

.fa-pagelines {
    --fa: "";
}

.fa-algolia {
    --fa: "";
}

.fa-red-river {
    --fa: "";
}

.fa-creative-commons-sa {
    --fa: "";
}

.fa-safari {
    --fa: "";
}

.fa-google {
    --fa: "";
}

.fa-font-awesome-alt,
.fa-square-font-awesome-stroke {
    --fa: "";
}

.fa-atlassian {
    --fa: "";
}

.fa-linkedin-in {
    --fa: "";
}

.fa-digital-ocean {
    --fa: "";
}

.fa-nimblr {
    --fa: "";
}

.fa-chromecast {
    --fa: "";
}

.fa-evernote {
    --fa: "";
}

.fa-hacker-news {
    --fa: "";
}

.fa-creative-commons-sampling {
    --fa: "";
}

.fa-adversal {
    --fa: "";
}

.fa-creative-commons {
    --fa: "";
}

.fa-watchman-monitoring {
    --fa: "";
}

.fa-fonticons {
    --fa: "";
}

.fa-weixin {
    --fa: "";
}

.fa-shirtsinbulk {
    --fa: "";
}

.fa-codepen {
    --fa: "";
}

.fa-git-alt {
    --fa: "";
}

.fa-lyft {
    --fa: "";
}

.fa-rev {
    --fa: "";
}

.fa-windows {
    --fa: "";
}

.fa-wizards-of-the-coast {
    --fa: "";
}

.fa-square-viadeo,
.fa-viadeo-square {
    --fa: "";
}

.fa-meetup {
    --fa: "";
}

.fa-centos {
    --fa: "";
}

.fa-adn {
    --fa: "";
}

.fa-cloudsmith {
    --fa: "";
}

.fa-opensuse {
    --fa: "";
}

.fa-pied-piper-alt {
    --fa: "";
}

.fa-dribbble-square,
.fa-square-dribbble {
    --fa: "";
}

.fa-codiepie {
    --fa: "";
}

.fa-node {
    --fa: "";
}

.fa-mix {
    --fa: "";
}

.fa-steam {
    --fa: "";
}

.fa-cc-apple-pay {
    --fa: "";
}

.fa-scribd {
    --fa: "";
}

.fa-debian {
    --fa: "";
}

.fa-openid {
    --fa: "";
}

.fa-instalod {
    --fa: "";
}

.fa-files-pinwheel {
    --fa: "";
}

.fa-expeditedssl {
    --fa: "";
}

.fa-sellcast {
    --fa: "";
}

.fa-square-twitter,
.fa-twitter-square {
    --fa: "";
}

.fa-r-project {
    --fa: "";
}

.fa-delicious {
    --fa: "";
}

.fa-freebsd {
    --fa: "";
}

.fa-vuejs {
    --fa: "";
}

.fa-accusoft {
    --fa: "";
}

.fa-ioxhost {
    --fa: "";
}

.fa-fonticons-fi {
    --fa: "";
}

.fa-app-store {
    --fa: "";
}

.fa-cc-mastercard {
    --fa: "";
}

.fa-itunes-note {
    --fa: "";
}

.fa-golang {
    --fa: "";
}

.fa-kickstarter,
.fa-square-kickstarter {
    --fa: "";
}

.fa-grav {
    --fa: "";
}

.fa-weibo {
    --fa: "";
}

.fa-uncharted {
    --fa: "";
}

.fa-firstdraft {
    --fa: "";
}

.fa-square-youtube,
.fa-youtube-square {
    --fa: "";
}

.fa-wikipedia-w {
    --fa: "";
}

.fa-rendact,
.fa-wpressr {
    --fa: "";
}

.fa-angellist {
    --fa: "";
}

.fa-galactic-republic {
    --fa: "";
}

.fa-nfc-directional {
    --fa: "";
}

.fa-skype {
    --fa: "";
}

.fa-joget {
    --fa: "";
}

.fa-fedora {
    --fa: "";
}

.fa-stripe-s {
    --fa: "";
}

.fa-meta {
    --fa: "";
}

.fa-laravel {
    --fa: "";
}

.fa-hotjar {
    --fa: "";
}

.fa-bluetooth-b {
    --fa: "";
}

.fa-square-letterboxd {
    --fa: "";
}

.fa-sticker-mule {
    --fa: "";
}

.fa-creative-commons-zero {
    --fa: "";
}

.fa-hips {
    --fa: "";
}

.fa-css {
    --fa: "";
}

.fa-behance {
    --fa: "";
}

.fa-reddit {
    --fa: "";
}

.fa-discord {
    --fa: "";
}

.fa-chrome {
    --fa: "";
}

.fa-app-store-ios {
    --fa: "";
}

.fa-cc-discover {
    --fa: "";
}

.fa-wpbeginner {
    --fa: "";
}

.fa-confluence {
    --fa: "";
}

.fa-shoelace {
    --fa: "";
}

.fa-mdb {
    --fa: "";
}

.fa-dochub {
    --fa: "";
}

.fa-accessible-icon {
    --fa: "";
}

.fa-ebay {
    --fa: "";
}

.fa-amazon {
    --fa: "";
}

.fa-unsplash {
    --fa: "";
}

.fa-yarn {
    --fa: "";
}

.fa-square-steam,
.fa-steam-square {
    --fa: "";
}

.fa-500px {
    --fa: "";
}

.fa-square-vimeo,
.fa-vimeo-square {
    --fa: "";
}

.fa-asymmetrik {
    --fa: "";
}

.fa-font-awesome,
.fa-font-awesome-flag,
.fa-font-awesome-logo-full {
    --fa: "";
}

.fa-gratipay {
    --fa: "";
}

.fa-apple {
    --fa: "";
}

.fa-hive {
    --fa: "";
}

.fa-gitkraken {
    --fa: "";
}

.fa-keybase {
    --fa: "";
}

.fa-apple-pay {
    --fa: "";
}

.fa-padlet {
    --fa: "";
}

.fa-amazon-pay {
    --fa: "";
}

.fa-github-square,
.fa-square-github {
    --fa: "";
}

.fa-stumbleupon {
    --fa: "";
}

.fa-fedex {
    --fa: "";
}

.fa-phoenix-framework {
    --fa: "";
}

.fa-shopify {
    --fa: "";
}

.fa-neos {
    --fa: "";
}

.fa-square-threads {
    --fa: "";
}

.fa-hackerrank {
    --fa: "";
}

.fa-researchgate {
    --fa: "";
}

.fa-swift {
    --fa: "";
}

.fa-angular {
    --fa: "";
}

.fa-speakap {
    --fa: "";
}

.fa-angrycreative {
    --fa: "";
}

.fa-y-combinator {
    --fa: "";
}

.fa-empire {
    --fa: "";
}

.fa-envira {
    --fa: "";
}

.fa-google-scholar {
    --fa: "";
}

.fa-gitlab-square,
.fa-square-gitlab {
    --fa: "";
}

.fa-studiovinari {
    --fa: "";
}

.fa-pied-piper {
    --fa: "";
}

.fa-wordpress {
    --fa: "";
}

.fa-product-hunt {
    --fa: "";
}

.fa-firefox {
    --fa: "";
}

.fa-linode {
    --fa: "";
}

.fa-goodreads {
    --fa: "";
}

.fa-odnoklassniki-square,
.fa-square-odnoklassniki {
    --fa: "";
}

.fa-jsfiddle {
    --fa: "";
}

.fa-sith {
    --fa: "";
}

.fa-themeisle {
    --fa: "";
}

.fa-page4 {
    --fa: "";
}

.fa-hashnode {
    --fa: "";
}

.fa-react {
    --fa: "";
}

.fa-cc-paypal {
    --fa: "";
}

.fa-squarespace {
    --fa: "";
}

.fa-cc-stripe {
    --fa: "";
}

.fa-creative-commons-share {
    --fa: "";
}

.fa-bitcoin {
    --fa: "";
}

.fa-keycdn {
    --fa: "";
}

.fa-opera {
    --fa: "";
}

.fa-itch-io {
    --fa: "";
}

.fa-umbraco {
    --fa: "";
}

.fa-galactic-senate {
    --fa: "";
}

.fa-ubuntu {
    --fa: "";
}

.fa-draft2digital {
    --fa: "";
}

.fa-stripe {
    --fa: "";
}

.fa-houzz {
    --fa: "";
}

.fa-gg {
    --fa: "";
}

.fa-dhl {
    --fa: "";
}

.fa-pinterest-square,
.fa-square-pinterest {
    --fa: "";
}

.fa-xing {
    --fa: "";
}

.fa-blackberry {
    --fa: "";
}

.fa-creative-commons-pd {
    --fa: "";
}

.fa-playstation {
    --fa: "";
}

.fa-quinscape {
    --fa: "";
}

.fa-less {
    --fa: "";
}

.fa-blogger-b {
    --fa: "";
}

.fa-opencart {
    --fa: "";
}

.fa-vine {
    --fa: "";
}

.fa-signal-messenger {
    --fa: "";
}

.fa-paypal {
    --fa: "";
}

.fa-gitlab {
    --fa: "";
}

.fa-typo3 {
    --fa: "";
}

.fa-reddit-alien {
    --fa: "";
}

.fa-yahoo {
    --fa: "";
}

.fa-dailymotion {
    --fa: "";
}

.fa-affiliatetheme {
    --fa: "";
}

.fa-pied-piper-pp {
    --fa: "";
}

.fa-bootstrap {
    --fa: "";
}

.fa-odnoklassniki {
    --fa: "";
}

.fa-nfc-symbol {
    --fa: "";
}

.fa-mintbit {
    --fa: "";
}

.fa-ethereum {
    --fa: "";
}

.fa-speaker-deck {
    --fa: "";
}

.fa-creative-commons-nc-eu {
    --fa: "";
}

.fa-patreon {
    --fa: "";
}

.fa-avianex {
    --fa: "";
}

.fa-ello {
    --fa: "";
}

.fa-gofore {
    --fa: "";
}

.fa-bimobject {
    --fa: "";
}

.fa-brave-reverse {
    --fa: "";
}

.fa-facebook-f {
    --fa: "";
}

.fa-google-plus-square,
.fa-square-google-plus {
    --fa: "";
}

.fa-web-awesome {
    --fa: "";
}

.fa-mandalorian {
    --fa: "";
}

.fa-first-order-alt {
    --fa: "";
}

.fa-osi {
    --fa: "";
}

.fa-google-wallet {
    --fa: "";
}

.fa-d-and-d-beyond {
    --fa: "";
}

.fa-periscope {
    --fa: "";
}

.fa-fulcrum {
    --fa: "";
}

.fa-cloudscale {
    --fa: "";
}

.fa-forumbee {
    --fa: "";
}

.fa-mizuni {
    --fa: "";
}

.fa-schlix {
    --fa: "";
}

.fa-square-xing,
.fa-xing-square {
    --fa: "";
}

.fa-bandcamp {
    --fa: "";
}

.fa-wpforms {
    --fa: "";
}

.fa-cloudversify {
    --fa: "";
}

.fa-usps {
    --fa: "";
}

.fa-megaport {
    --fa: "";
}

.fa-magento {
    --fa: "";
}

.fa-spotify {
    --fa: "";
}

.fa-optin-monster {
    --fa: "";
}

.fa-fly {
    --fa: "";
}

.fa-square-bluesky {
    --fa: "";
}

.fa-aviato {
    --fa: "";
}

.fa-itunes {
    --fa: "";
}

.fa-cuttlefish {
    --fa: "";
}

.fa-blogger {
    --fa: "";
}

.fa-flickr {
    --fa: "";
}

.fa-viber {
    --fa: "";
}

.fa-soundcloud {
    --fa: "";
}

.fa-digg {
    --fa: "";
}

.fa-tencent-weibo {
    --fa: "";
}

.fa-letterboxd {
    --fa: "";
}

.fa-symfony {
    --fa: "";
}

.fa-maxcdn {
    --fa: "";
}

.fa-etsy {
    --fa: "";
}

.fa-facebook-messenger {
    --fa: "";
}

.fa-audible {
    --fa: "";
}

.fa-think-peaks {
    --fa: "";
}

.fa-bilibili {
    --fa: "";
}

.fa-erlang {
    --fa: "";
}

.fa-x-twitter {
    --fa: "";
}

.fa-cotton-bureau {
    --fa: "";
}

.fa-dashcube {
    --fa: "";
}

.fa-42-group,
.fa-innosoft {
    --fa: "";
}

.fa-stack-exchange {
    --fa: "";
}

.fa-elementor {
    --fa: "";
}

.fa-pied-piper-square,
.fa-square-pied-piper {
    --fa: "";
}

.fa-creative-commons-nd {
    --fa: "";
}

.fa-palfed {
    --fa: "";
}

.fa-superpowers {
    --fa: "";
}

.fa-resolving {
    --fa: "";
}

.fa-xbox {
    --fa: "";
}

.fa-square-web-awesome-stroke {
    --fa: "";
}

.fa-searchengin {
    --fa: "";
}

.fa-tiktok {
    --fa: "";
}

.fa-facebook-square,
.fa-square-facebook {
    --fa: "";
}

.fa-renren {
    --fa: "";
}

.fa-linux {
    --fa: "";
}

.fa-glide {
    --fa: "";
}

.fa-linkedin {
    --fa: "";
}

.fa-hubspot {
    --fa: "";
}

.fa-deploydog {
    --fa: "";
}

.fa-twitch {
    --fa: "";
}

.fa-flutter {
    --fa: "";
}

.fa-ravelry {
    --fa: "";
}

.fa-mixer {
    --fa: "";
}

.fa-lastfm-square,
.fa-square-lastfm {
    --fa: "";
}

.fa-vimeo {
    --fa: "";
}

.fa-mendeley {
    --fa: "";
}

.fa-uniregistry {
    --fa: "";
}

.fa-figma {
    --fa: "";
}

.fa-creative-commons-remix {
    --fa: "";
}

.fa-cc-amazon-pay {
    --fa: "";
}

.fa-dropbox {
    --fa: "";
}

.fa-instagram {
    --fa: "";
}

.fa-cmplid {
    --fa: "";
}

.fa-upwork {
    --fa: "";
}

.fa-facebook {
    --fa: "";
}

.fa-gripfire {
    --fa: "";
}

.fa-jedi-order {
    --fa: "";
}

.fa-uikit {
    --fa: "";
}

.fa-fort-awesome-alt {
    --fa: "";
}

.fa-phabricator {
    --fa: "";
}

.fa-ussunnah {
    --fa: "";
}

.fa-earlybirds {
    --fa: "";
}

.fa-trade-federation {
    --fa: "";
}

.fa-autoprefixer {
    --fa: "";
}

.fa-whatsapp {
    --fa: "";
}

.fa-square-upwork {
    --fa: "";
}

.fa-slideshare {
    --fa: "";
}

.fa-google-play {
    --fa: "";
}

.fa-viadeo {
    --fa: "";
}

.fa-line {
    --fa: "";
}

.fa-google-drive {
    --fa: "";
}

.fa-servicestack {
    --fa: "";
}

.fa-simplybuilt {
    --fa: "";
}

.fa-bitbucket {
    --fa: "";
}

.fa-imdb {
    --fa: "";
}

.fa-deezer {
    --fa: "";
}

.fa-raspberry-pi {
    --fa: "";
}

.fa-jira {
    --fa: "";
}

.fa-docker {
    --fa: "";
}

.fa-screenpal {
    --fa: "";
}

.fa-bluetooth {
    --fa: "";
}

.fa-gitter {
    --fa: "";
}

.fa-d-and-d {
    --fa: "";
}

.fa-microblog {
    --fa: "";
}

.fa-cc-diners-club {
    --fa: "";
}

.fa-gg-circle {
    --fa: "";
}

.fa-pied-piper-hat {
    --fa: "";
}

.fa-kickstarter-k {
    --fa: "";
}

.fa-yandex {
    --fa: "";
}

.fa-readme {
    --fa: "";
}

.fa-html5 {
    --fa: "";
}

.fa-sellsy {
    --fa: "";
}

.fa-square-web-awesome {
    --fa: "";
}

.fa-sass {
    --fa: "";
}

.fa-wirsindhandwerk,
.fa-wsh {
    --fa: "";
}

.fa-buromobelexperte {
    --fa: "";
}

.fa-salesforce {
    --fa: "";
}

.fa-octopus-deploy {
    --fa: "";
}

.fa-medapps {
    --fa: "";
}

.fa-ns8 {
    --fa: "";
}

.fa-pinterest-p {
    --fa: "";
}

.fa-apper {
    --fa: "";
}

.fa-fort-awesome {
    --fa: "";
}

.fa-waze {
    --fa: "";
}

.fa-bluesky {
    --fa: "";
}

.fa-cc-jcb {
    --fa: "";
}

.fa-snapchat,
.fa-snapchat-ghost {
    --fa: "";
}

.fa-fantasy-flight-games {
    --fa: "";
}

.fa-rust {
    --fa: "";
}

.fa-wix {
    --fa: "";
}

.fa-behance-square,
.fa-square-behance {
    --fa: "";
}

.fa-supple {
    --fa: "";
}

.fa-webflow {
    --fa: "";
}

.fa-rebel {
    --fa: "";
}

.fa-css3 {
    --fa: "";
}

.fa-staylinked {
    --fa: "";
}

.fa-kaggle {
    --fa: "";
}

.fa-space-awesome {
    --fa: "";
}

.fa-deviantart {
    --fa: "";
}

.fa-cpanel {
    --fa: "";
}

.fa-goodreads-g {
    --fa: "";
}

.fa-git-square,
.fa-square-git {
    --fa: "";
}

.fa-square-tumblr,
.fa-tumblr-square {
    --fa: "";
}

.fa-trello {
    --fa: "";
}

.fa-creative-commons-nc-jp {
    --fa: "";
}

.fa-get-pocket {
    --fa: "";
}

.fa-perbyte {
    --fa: "";
}

.fa-grunt {
    --fa: "";
}

.fa-weebly {
    --fa: "";
}

.fa-connectdevelop {
    --fa: "";
}

.fa-leanpub {
    --fa: "";
}

.fa-black-tie {
    --fa: "";
}

.fa-themeco {
    --fa: "";
}

.fa-python {
    --fa: "";
}

.fa-android {
    --fa: "";
}

.fa-bots {
    --fa: "";
}

.fa-free-code-camp {
    --fa: "";
}

.fa-hornbill {
    --fa: "";
}

.fa-js {
    --fa: "";
}

.fa-ideal {
    --fa: "";
}

.fa-git {
    --fa: "";
}

.fa-dev {
    --fa: "";
}

.fa-sketch {
    --fa: "";
}

.fa-yandex-international {
    --fa: "";
}

.fa-cc-amex {
    --fa: "";
}

.fa-uber {
    --fa: "";
}

.fa-github {
    --fa: "";
}

.fa-php {
    --fa: "";
}

.fa-alipay {
    --fa: "";
}

.fa-youtube {
    --fa: "";
}

.fa-skyatlas {
    --fa: "";
}

.fa-firefox-browser {
    --fa: "";
}

.fa-replyd {
    --fa: "";
}

.fa-suse {
    --fa: "";
}

.fa-jenkins {
    --fa: "";
}

.fa-twitter {
    --fa: "";
}

.fa-rockrms {
    --fa: "";
}

.fa-pinterest {
    --fa: "";
}

.fa-buffer {
    --fa: "";
}

.fa-npm {
    --fa: "";
}

.fa-yammer {
    --fa: "";
}

.fa-btc {
    --fa: "";
}

.fa-dribbble {
    --fa: "";
}

.fa-stumbleupon-circle {
    --fa: "";
}

.fa-internet-explorer {
    --fa: "";
}

.fa-stubber {
    --fa: "";
}

.fa-telegram,
.fa-telegram-plane {
    --fa: "";
}

.fa-old-republic {
    --fa: "";
}

.fa-odysee {
    --fa: "";
}

.fa-square-whatsapp,
.fa-whatsapp-square {
    --fa: "";
}

.fa-node-js {
    --fa: "";
}

.fa-edge-legacy {
    --fa: "";
}

.fa-slack,
.fa-slack-hash {
    --fa: "";
}

.fa-medrt {
    --fa: "";
}

.fa-usb {
    --fa: "";
}

.fa-tumblr {
    --fa: "";
}

.fa-vaadin {
    --fa: "";
}

.fa-quora {
    --fa: "";
}

.fa-square-x-twitter {
    --fa: "";
}

.fa-reacteurope {
    --fa: "";
}

.fa-medium,
.fa-medium-m {
    --fa: "";
}

.fa-amilia {
    --fa: "";
}

.fa-mixcloud {
    --fa: "";
}

.fa-flipboard {
    --fa: "";
}

.fa-viacoin {
    --fa: "";
}

.fa-critical-role {
    --fa: "";
}

.fa-sitrox {
    --fa: "";
}

.fa-discourse {
    --fa: "";
}

.fa-joomla {
    --fa: "";
}

.fa-mastodon {
    --fa: "";
}

.fa-airbnb {
    --fa: "";
}

.fa-wolf-pack-battalion {
    --fa: "";
}

.fa-buy-n-large {
    --fa: "";
}

.fa-gulp {
    --fa: "";
}

.fa-creative-commons-sampling-plus {
    --fa: "";
}

.fa-strava {
    --fa: "";
}

.fa-ember {
    --fa: "";
}

.fa-canadian-maple-leaf {
    --fa: "";
}

.fa-teamspeak {
    --fa: "";
}

.fa-pushed {
    --fa: "";
}

.fa-wordpress-simple {
    --fa: "";
}

.fa-nutritionix {
    --fa: "";
}

.fa-wodu {
    --fa: "";
}

.fa-google-pay {
    --fa: "";
}

.fa-intercom {
    --fa: "";
}

.fa-zhihu {
    --fa: "";
}

.fa-korvue {
    --fa: "";
}

.fa-pix {
    --fa: "";
}

.fa-steam-symbol {
    --fa: "";
}

.fa-regular,
.far {
    font-weight: 400;
}

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    box-sizing: border-box;
    font-size: 100%;
    scroll-padding-top: 4rem;
}

body {
    background: #fff;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-weight: 400;
    line-height: 1.2;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
    overflow-x: clip;
    text-wrap: pretty;
    width: 100%;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    border: 0;
    border-bottom: 1px solid #252525;
    box-sizing: content-box;
    clear: both;
    height: 0;
    margin: 0 auto;
    max-width: calc(1380px + 3.75rem);
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

a {
    background-color: transparent;
    color: inherit;
    cursor: pointer;
    line-height: inherit;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}

abbr[title] {
    border-bottom: 0;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
}

b,
strong {
    font-weight: 700;
    line-height: inherit;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
    line-height: inherit;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    /* border-style: none;
    display: inline-block;
    height: auto;
    max-width: 100%; COMMENTED OUT BY PENTERA */
    vertical-align: middle;
    /* -ms-interpolation-mode: bicubic;
    margin-left: auto; 
    margin-right: auto; COMMENTED OUT BY PENTERA */
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    /* border: 0;
    overflow: visible; COMMENTED OUT BY PENTERA */
}

button,
select {
    text-transform: none;
}

[type="button"],
[type="reset"],
[type="submit"],
button {
    -webkit-appearance: button;
}

[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner,
button::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring,
button:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    /* box-sizing: border-box;
    color: #252525;
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1;
    margin-bottom: 0.5rem;
    max-width: 100%;
    padding: 0;
    text-transform: none;
    white-space: normal; COMMENTED OUT BY PENTERA */
}

progress {
    vertical-align: baseline;
}

textarea {
    border: 1px solid #252525;
    border-radius: 0;
    color: #252525;
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    height: 225px;
    letter-spacing: normal;
    line-height: 1.2;
    min-height: 50px;
    overflow: auto;
    padding: 14px 1rem;
    resize: none;
    text-transform: none;
    transition: all 0.15s ease-in-out;
    width: 100%;
}

[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline: none;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

[hidden],
template {
    display: none;
}

[data-whatinput="mouse"] *,
[data-whatinput="mouse"] :focus,
[data-whatinput="touch"] *,
[data-whatinput="touch"] :focus,
[data-whatintent="mouse"] *,
[data-whatintent="mouse"] :focus,
[data-whatintent="touch"] *,
[data-whatintent="touch"] :focus {
    outline: none;
}

[draggable="false"] {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}

.foundation-mq {
    font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em&xxxlarge=100em";
}

*,
:after,
:before {
    box-sizing: inherit;
}

select {
    border: 1px solid #252525;
    border-radius: 0;
    box-sizing: border-box;
    color: #252525;
    cursor: pointer;
    /* display: block; COMMENTED OUT BY PENTERA */
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    height: 45px;
    letter-spacing: normal;
    line-height: 1.2;
    padding: 0 0 0 1rem;
    text-transform: none;
    transition: all 0.15s ease-in-out;
    /* width: 100%; COMMENTED OUT BY PENTERA */
}

.map_canvas embed,
.map_canvas img,
.map_canvas object,
.mqa-display embed,
.mqa-display img,
.mqa-display object {
    max-width: none !important;
}

[data-whatinput="mouse"] button {
    outline: 0;
}

button {
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    cursor: auto;
    line-height: 1;
    padding: 0;
}

.is-visible {
    display: block !important;
}

.is-hidden {
    display: none !important;
}

.localist-widget .lwn a,
blockquote,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
td,
th,
ul {
    margin: 0;
    padding: 0;
}

p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    text-rendering: optimizelegibility;
}

em,
i {
    font-style: italic;
    line-height: inherit;
}

.ez-toc-title,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
.localist-widget .lwn a,
h1,
h2,
h3,
h4,
h5,
h6 {
    color: inherit;
    font-family: inter-variable, sans-serif;
    font-style: normal;
    font-weight: 700;
    text-rendering: optimizelegibility;
}

.ez-toc-title small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small,
.localist-widget .lwn a small,
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    color: #e8e8e8;
    line-height: 0;
}

.h1,
h1 {
    font-size: 2rem;
}

.h1,
.h2,
h1,
h2 {
    line-height: 1.2;
    margin-bottom: 0;
    margin-top: 0;
}

.h2,
h2 {
    font-size: 1.75rem;
}

.ez-toc-title,
.h3,
h3 {
    font-size: 1.5rem;
}

.ez-toc-title,
.h3,
.h4,
h3,
h4 {
    line-height: 1.2;
    margin-bottom: 0;
    margin-top: 0;
}

.h4,
h4 {
    font-size: 1.375rem;
}

.h5,
.localist-widget .lwn a,
h5 {
    font-size: 1.25rem;
}

.h5,
.h6,
.localist-widget .lwn a,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 0;
    margin-top: 0;
}

.h6,
h6 {
    font-size: 1.125rem;
}

a:focus,
a:hover {
    color: #0217a8;
}

a img {
    border: 0;
}

dl,
ol,
ul {
    font-size: 1rem;
    line-height: 1.6;
    list-style-position: outside;
    margin-bottom: 0;
}

li {
    font-size: inherit;
}

ul {
    list-style-type: disc;
}

ol,
ul {
    margin-left: 1.25rem;
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0;
    margin-left: 1.25rem;
}

dl,
dl dt {
    margin-bottom: 0;
}

dl dt {
    font-weight: 700;
}

blockquote {
    border-left: 0;
    margin: 0;
    padding: 0;
}

blockquote,
blockquote p {
    color: #001e5f;
    line-height: 1;
}

abbr,
abbr[title] {
    border-bottom: 1px dotted #252525;
    cursor: help;
    text-decoration: none;
}

figure,
kbd {
    margin: 0;
}

kbd {
    background-color: #e8e8e8;
    color: #252525;
    font-family: consolas, Liberation Mono, courier, monospace;
    padding: rem-calc(2 4 0);
}

.subheader {
    color: #252525;
    font-weight: 400;
    line-height: 1.4;
    margin-bottom: 0.5rem;
    margin-top: 0.2rem;
}

.lead {
    font-size: 125%;
    line-height: 1.6;
}

.stat {
    font-size: 2.5rem;
    line-height: 1;
}

p+.stat {
    margin-top: -1rem;
}

ol.no-bullet,
ul.no-bullet {
    list-style: none;
    margin-left: 0;
}

.cite-block,
cite {
    color: #252525;
    display: block;
    font-size: 14;
}

.cite-block:before,
cite:before {
    content: "";
}

.code-inline,
code {
    display: inline;
    max-width: 100%;
    word-wrap: break-word;
    padding: rem-calc(2 5 1);
}

.code-block,
.code-inline,
code {
    background-color: #e8e8e8;
    border: 1px solid #e8e8e8;
    color: #252525;
    font-family: consolas, Liberation Mono, courier, monospace;
    font-weight: 400;
}

.code-block {
    display: block;
    margin-bottom: 1.5rem;
    overflow: auto;
    padding: 1rem;
    white-space: pre;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-center {
    text-align: center !important;
}

.text-justify {
    text-align: justify;
}

.show-for-print {
    display: none !important;
}

.grid-container {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(1380px + 3.75rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.grid-container.fluid {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.grid-container.fluid,
.grid-container.full {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.grid-container.full {
    padding-left: 0;
    padding-right: 0;
}

.grid-x {
    display: flex;
    flex-flow: row wrap;
}

.cell {
    flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
    width: 100%;
}

.cell.auto {
    flex: 1 1 0;
}

.cell.shrink {
    flex: 0 0 auto;
}

.grid-x>.auto,
.grid-x>.shrink {
    width: auto;
}

.grid-x>.small-1,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9,
.grid-x>.small-full,
.grid-x>.small-shrink {
    flex-basis: auto;
}

.grid-x>.small-1,
.grid-x>.small-10,
.grid-x>.small-11,
.grid-x>.small-12,
.grid-x>.small-2,
.grid-x>.small-3,
.grid-x>.small-4,
.grid-x>.small-5,
.grid-x>.small-6,
.grid-x>.small-7,
.grid-x>.small-8,
.grid-x>.small-9 {
    flex: 0 0 auto;
}

.grid-x>.small-1 {
    width: 8.3333333333%;
}

.grid-x>.small-2 {
    width: 16.6666666667%;
}

.grid-x>.small-3 {
    width: 25%;
}

.grid-x>.small-4 {
    width: 33.3333333333%;
}

.grid-x>.small-5 {
    width: 41.6666666667%;
}

.grid-x>.small-6 {
    width: 50%;
}

.grid-x>.small-7 {
    width: 58.3333333333%;
}

.grid-x>.small-8 {
    width: 66.6666666667%;
}

.grid-x>.small-9 {
    width: 75%;
}

.grid-x>.small-10 {
    width: 83.3333333333%;
}

.grid-x>.small-11 {
    width: 91.6666666667%;
}

.grid-x>.small-12 {
    width: 100%;
}

.grid-margin-x:not(.grid-x)>.cell {
    width: auto;
}

.grid-margin-y:not(.grid-y)>.cell {
    height: auto;
}

.grid-margin-x {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.grid-margin-x>.cell {
    margin-left: 0.75rem;
    margin-right: 0.75rem;
    width: calc(100% - 1.5rem);
}

.grid-margin-x>.auto,
.grid-margin-x>.shrink {
    width: auto;
}

.grid-margin-x>.small-1 {
    width: calc(8.33333% - 1.5rem);
}

.grid-margin-x>.small-2 {
    width: calc(16.66667% - 1.5rem);
}

.grid-margin-x>.small-3 {
    width: calc(25% - 1.5rem);
}

.grid-margin-x>.small-4 {
    width: calc(33.33333% - 1.5rem);
}

.grid-margin-x>.small-5 {
    width: calc(41.66667% - 1.5rem);
}

.grid-margin-x>.small-6 {
    width: calc(50% - 1.5rem);
}

.grid-margin-x>.small-7 {
    width: calc(58.33333% - 1.5rem);
}

.grid-margin-x>.small-8 {
    width: calc(66.66667% - 1.5rem);
}

.grid-margin-x>.small-9 {
    width: calc(75% - 1.5rem);
}

.grid-margin-x>.small-10 {
    width: calc(83.33333% - 1.5rem);
}

.grid-margin-x>.small-11 {
    width: calc(91.66667% - 1.5rem);
}

.grid-margin-x>.small-12 {
    width: calc(100% - 1.5rem);
}

.grid-container:not(.full)>.grid-padding-x,
.grid-padding-x .grid-padding-x {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.grid-padding-x>.cell {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.small-up-1>.cell {
    width: 100%;
}

.small-up-2>.cell {
    width: 50%;
}

.small-up-3>.cell {
    width: 33.3333333333%;
}

.small-up-4>.cell {
    width: 25%;
}

.small-up-5>.cell {
    width: 20%;
}

.small-up-6>.cell {
    width: 16.6666666667%;
}

.small-up-7>.cell {
    width: 14.2857142857%;
}

.small-up-8>.cell {
    width: 12.5%;
}

.grid-margin-x.small-up-1>.cell {
    width: calc(100% - 1.5rem);
}

.grid-margin-x.small-up-2>.cell {
    width: calc(50% - 1.5rem);
}

.grid-margin-x.small-up-3>.cell {
    width: calc(33.33333% - 1.5rem);
}

.grid-margin-x.small-up-4>.cell {
    width: calc(25% - 1.5rem);
}

.grid-margin-x.small-up-5>.cell {
    width: calc(20% - 1.5rem);
}

.grid-margin-x.small-up-6>.cell {
    width: calc(16.66667% - 1.5rem);
}

.grid-margin-x.small-up-7>.cell {
    width: calc(14.28571% - 1.5rem);
}

.grid-margin-x.small-up-8>.cell {
    width: calc(12.5% - 1.5rem);
}

.small-margin-collapse,
.small-margin-collapse>.cell {
    margin-left: 0;
    margin-right: 0;
}

.small-margin-collapse>.small-1 {
    width: 8.3333333333%;
}

.small-margin-collapse>.small-2 {
    width: 16.6666666667%;
}

.small-margin-collapse>.small-3 {
    width: 25%;
}

.small-margin-collapse>.small-4 {
    width: 33.3333333333%;
}

.small-margin-collapse>.small-5 {
    width: 41.6666666667%;
}

.small-margin-collapse>.small-6 {
    width: 50%;
}

.small-margin-collapse>.small-7 {
    width: 58.3333333333%;
}

.small-margin-collapse>.small-8 {
    width: 66.6666666667%;
}

.small-margin-collapse>.small-9 {
    width: 75%;
}

.small-margin-collapse>.small-10 {
    width: 83.3333333333%;
}

.small-margin-collapse>.small-11 {
    width: 91.6666666667%;
}

.small-margin-collapse>.small-12 {
    width: 100%;
}

.small-padding-collapse {
    margin-left: 0;
    margin-right: 0;
}

.small-padding-collapse>.cell {
    padding-left: 0;
    padding-right: 0;
}

.small-offset-0 {
    margin-left: 0;
}

.grid-margin-x>.small-offset-0 {
    margin-left: 0.75rem;
}

.small-offset-1 {
    margin-left: 8.3333333333%;
}

.grid-margin-x>.small-offset-1 {
    margin-left: calc(8.33333% + 0.75rem);
}

.small-offset-2 {
    margin-left: 16.6666666667%;
}

.grid-margin-x>.small-offset-2 {
    margin-left: calc(16.66667% + 0.75rem);
}

.small-offset-3 {
    margin-left: 25%;
}

.grid-margin-x>.small-offset-3 {
    margin-left: calc(25% + 0.75rem);
}

.small-offset-4 {
    margin-left: 33.3333333333%;
}

.grid-margin-x>.small-offset-4 {
    margin-left: calc(33.33333% + 0.75rem);
}

.small-offset-5 {
    margin-left: 41.6666666667%;
}

.grid-margin-x>.small-offset-5 {
    margin-left: calc(41.66667% + 0.75rem);
}

.small-offset-6 {
    margin-left: 50%;
}

.grid-margin-x>.small-offset-6 {
    margin-left: calc(50% + 0.75rem);
}

.small-offset-7 {
    margin-left: 58.3333333333%;
}

.grid-margin-x>.small-offset-7 {
    margin-left: calc(58.33333% + 0.75rem);
}

.small-offset-8 {
    margin-left: 66.6666666667%;
}

.grid-margin-x>.small-offset-8 {
    margin-left: calc(66.66667% + 0.75rem);
}

.small-offset-9 {
    margin-left: 75%;
}

.grid-margin-x>.small-offset-9 {
    margin-left: calc(75% + 0.75rem);
}

.small-offset-10 {
    margin-left: 83.3333333333%;
}

.grid-margin-x>.small-offset-10 {
    margin-left: calc(83.33333% + 0.75rem);
}

.small-offset-11 {
    margin-left: 91.6666666667%;
}

.grid-margin-x>.small-offset-11 {
    margin-left: calc(91.66667% + 0.75rem);
}

.grid-y {
    display: flex;
    flex-flow: column nowrap;
}

.grid-y>.cell {
    height: auto;
    max-height: none;
}

.grid-y>.auto,
.grid-y>.shrink {
    height: auto;
}

.grid-y>.small-1,
.grid-y>.small-10,
.grid-y>.small-11,
.grid-y>.small-12,
.grid-y>.small-2,
.grid-y>.small-3,
.grid-y>.small-4,
.grid-y>.small-5,
.grid-y>.small-6,
.grid-y>.small-7,
.grid-y>.small-8,
.grid-y>.small-9,
.grid-y>.small-full,
.grid-y>.small-shrink {
    flex-basis: auto;
}

.grid-y>.small-1,
.grid-y>.small-10,
.grid-y>.small-11,
.grid-y>.small-12,
.grid-y>.small-2,
.grid-y>.small-3,
.grid-y>.small-4,
.grid-y>.small-5,
.grid-y>.small-6,
.grid-y>.small-7,
.grid-y>.small-8,
.grid-y>.small-9 {
    flex: 0 0 auto;
}

.grid-y>.small-1 {
    height: 8.3333333333%;
}

.grid-y>.small-2 {
    height: 16.6666666667%;
}

.grid-y>.small-3 {
    height: 25%;
}

.grid-y>.small-4 {
    height: 33.3333333333%;
}

.grid-y>.small-5 {
    height: 41.6666666667%;
}

.grid-y>.small-6 {
    height: 50%;
}

.grid-y>.small-7 {
    height: 58.3333333333%;
}

.grid-y>.small-8 {
    height: 66.6666666667%;
}

.grid-y>.small-9 {
    height: 75%;
}

.grid-y>.small-10 {
    height: 83.3333333333%;
}

.grid-y>.small-11 {
    height: 91.6666666667%;
}

.grid-y>.small-12 {
    height: 100%;
}

.grid-padding-y .grid-padding-y {
    margin-bottom: -0.75rem;
    margin-top: -0.75rem;
}

.grid-padding-y>.cell {
    padding-bottom: 0.75rem;
    padding-top: 0.75rem;
}

.grid-margin-y {
    margin-bottom: -0.75rem;
    margin-top: -0.75rem;
}

.grid-margin-y>.cell {
    height: calc(100% - 1.5rem);
    margin-bottom: 0.75rem;
    margin-top: 0.75rem;
}

.grid-margin-y>.auto,
.grid-margin-y>.shrink {
    height: auto;
}

.grid-margin-y>.small-1 {
    height: calc(8.33333% - 1.5rem);
}

.grid-margin-y>.small-2 {
    height: calc(16.66667% - 1.5rem);
}

.grid-margin-y>.small-3 {
    height: calc(25% - 1.5rem);
}

.grid-margin-y>.small-4 {
    height: calc(33.33333% - 1.5rem);
}

.grid-margin-y>.small-5 {
    height: calc(41.66667% - 1.5rem);
}

.grid-margin-y>.small-6 {
    height: calc(50% - 1.5rem);
}

.grid-margin-y>.small-7 {
    height: calc(58.33333% - 1.5rem);
}

.grid-margin-y>.small-8 {
    height: calc(66.66667% - 1.5rem);
}

.grid-margin-y>.small-9 {
    height: calc(75% - 1.5rem);
}

.grid-margin-y>.small-10 {
    height: calc(83.33333% - 1.5rem);
}

.grid-margin-y>.small-11 {
    height: calc(91.66667% - 1.5rem);
}

.grid-margin-y>.small-12 {
    height: calc(100% - 1.5rem);
}

.grid-frame {
    align-items: stretch;
    flex-wrap: nowrap;
    overflow: hidden;
    position: relative;
    width: 100vw;
}

.cell .grid-frame {
    width: 100%;
}

.cell-block {
    max-width: 100%;
    overflow-x: auto;
}

.cell-block,
.cell-block-y {
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
    max-height: 100%;
    min-height: 100%;
    overflow-y: auto;
}

.cell-block-container {
    display: flex;
    flex-direction: column;
    max-height: 100%;
}

.cell-block-container>.grid-x {
    flex-wrap: nowrap;
    max-height: 100%;
}

.grid-y.grid-frame {
    align-items: stretch;
    flex-wrap: nowrap;
    height: 100vh;
    overflow: hidden;
    position: relative;
    width: auto;
}

.cell .grid-y.grid-frame {
    height: 100%;
}

.grid-frame.grid-margin-y {
    height: calc(100vh + 1.5rem);
}

.gform_wrapper ul {
    list-style: none;
    max-width: none;
}

.gform_wrapper ul li {
    line-height: 1;
    margin: 0 0 2rem;
    padding: 0;
    position: relative;
    text-indent: 0;
}

.gform_wrapper ul li:before {
    content: none;
}

.gform_wrapper>form {
    position: relative;
}

.gform_wrapper>form ul {
    font-size: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.gform_wrapper .gform_validation_container {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.gform_wrapper .gform_button,
.gform_wrapper .gform_next_button {
    background: transparent;
    border: 2px solid #021bc3;
    color: #021bc3;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

.gform_wrapper .gform_button:visited,
.gform_wrapper .gform_next_button:visited {
    color: #021bc3;
}

.gform_wrapper .gform_button:focus,
.gform_wrapper .gform_button:hover,
.gform_wrapper .gform_next_button:focus,
.gform_wrapper .gform_next_button:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff !important;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.gform_wrapper .gform_button:active,
.gform_wrapper .gform_next_button:active {
    background: #001e5f;
    border-color: #001e5f;
    color: #fff;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.gform_wrapper .gform_button:after,
.gform_wrapper .gform_next_button:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.gform_wrapper .gform_button:active:after,
.gform_wrapper .gform_button:focus:after,
.gform_wrapper .gform_button:hover:after,
.gform_wrapper .gform_next_button:active:after,
.gform_wrapper .gform_next_button:focus:after,
.gform_wrapper .gform_next_button:hover:after {
    color: #fff;
}

.gform_wrapper .gform_previous_button {
    background: transparent;
    border: 2px solid #021bc3;
    color: #021bc3;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    margin-right: 1rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

.gform_wrapper .gform_previous_button:visited {
    color: #021bc3;
}

.gform_wrapper .gform_previous_button:focus,
.gform_wrapper .gform_previous_button:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff !important;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.gform_wrapper .gform_previous_button:active {
    background: #001e5f;
    border-color: #001e5f;
    color: #fff;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.gform_wrapper .gform_previous_button:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 0.75rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-right: 0.5rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.gform_wrapper .gform_previous_button:active:before,
.gform_wrapper .gform_previous_button:focus:before,
.gform_wrapper .gform_previous_button:hover:before {
    color: #fff;
}

.gform_wrapper.gravity-theme .gfield_required {
    color: #aa2609;
}

.gform_heading {
    margin-bottom: 2rem;
}

.gform_description {
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizelegibility;
}

.gfield_description,
.instruction {
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.15;
    margin-bottom: 20px;
    margin-top: 0.5rem;
    max-width: 600px;
    padding: 0;
    text-transform: none;
}

.gform_wrapper.gravity-theme .gfield_description {
    font-size: inherit;
}

.instruction {
    display: none;
}

.gform-field-label.gform-field-label--type-sub {
    color: #252525;
}

.ginput_complex:after,
.ginput_complex:before {
    content: " ";
    display: table;
    flex-basis: 0;
    order: 1;
}

.ginput_complex:after {
    clear: both;
}

.ginput_complex {
    display: flex;
    flex-flow: row wrap;
}

.ginput_complex.gf_name_has_2 p {
    margin-bottom: 1rem;
    width: 100%;
}

.ginput_complex label {
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.15;
    margin-top: 0.5rem;
    padding: 0;
    text-transform: none;
}

.ginput_full {
    display: block;
}

.ginput_left:after,
.ginput_left:before,
.ginput_right:after,
.ginput_right:before,
.name_first:after,
.name_first:before,
.name_last:after,
.name_last:before {
    content: " ";
    display: table;
    flex-basis: 0;
    order: 1;
}

.ginput_left:after,
.ginput_right:after,
.name_first:after,
.name_last:after {
    clear: both;
}

.ginput_left,
.ginput_right,
.name_first,
.name_last {
    display: block;
}

.gfield_date_dropdown_year label,
.gfield_date_year label,
.gfield_time_ampm label {
    margin-bottom: 0;
}

.gchoice,
.ginput_container_consent {
    align-items: flex-start;
    display: flex;
    flex-wrap: nowrap;
    margin-bottom: 1rem;
}

.gchoice input[type="checkbox"],
.gchoice input[type="radio"],
.ginput_container_consent input[type="checkbox"],
.ginput_container_consent input[type="radio"] {
    margin-right: 10px;
    min-height: 13px;
    min-width: 13px;
}

.gf-email p,
.gfield p {
    margin-bottom: 0;
}

.gform_fields .gfield {
    margin-bottom: 2rem !important;
}

.gform_footer {
    padding-top: 0 !important;
    position: relative;
}

.gform_footer,
.gform_footer .button {
    margin-top: 0 !important;
}

.gf_hide_ampm .clear-multi .gfield_time_ampm.ginput_container,
.gf_hide_charleft .charleft {
    display: none;
}

.gf_scroll_text {
    height: 150px;
    overflow: scroll;
}

.gfield.gf_list_inline ul:after,
.gfield.gf_list_inline ul:before {
    content: " ";
    display: table;
    flex-basis: 0;
    order: 1;
}

.gfield.gf_list_inline ul:after {
    clear: both;
}

.gfield.gf_list_inline .gfield_checkbox li,
.gfield.gf_list_inline .gfield_radio li {
    float: left;
    margin: 10px 30px 10px 0;
}

.gfield.gf_list_inline .gfield_checkbox li.gf_other_choice_item,
.gfield.gf_list_inline .gfield_radio li.gf_other_choice_item {
    position: relative;
    top: -11px;
}

.gfield.gf_list_inline .gfield_checkbox li.gf_other_choice_item input[type="text"],
.gfield.gf_list_inline .gfield_radio li.gf_other_choice_item input[type="text"] {
    width: 100%;
}

.gfield.gf_list_inline legend {
    margin-bottom: 10px;
}

.gf_list_height_25 .gfield_checkbox li,
.gf_list_height_25 .gfield_radio li {
    height: 25px;
}

.gf_list_height_50 .gfield_checkbox li,
.gf_list_height_50 .gfield_radio li {
    height: 50px;
}

.gf_list_height_75 .gfield_checkbox li,
.gf_list_height_75 .gfield_radio li {
    height: 75px;
}

.gf_list_height_100 .gfield_checkbox li,
.gf_list_height_100 .gfield_radio li {
    height: 100px;
}

.gf_list_height_125 .gfield_checkbox li,
.gf_list_height_125 .gfield_radio li {
    height: 125px;
}

.gf_list_height_150 .gfield_checkbox li,
.gf_list_height_150 .gfield_radio li {
    height: 150px;
}

.gform_wrapper .spinner {
    bottom: -25px !important;
    left: 50% !important;
    position: absolute !important;
    top: auto !important;
}

[id*="gform_ajax_spinner_"] {
    display: none !important;
}

.gform_wrapper input[type="color"],
.gform_wrapper input[type="date"],
.gform_wrapper input[type="datetime-local"],
.gform_wrapper input[type="datetime"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="month"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="password"],
.gform_wrapper input[type="range"],
.gform_wrapper input[type="search"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="text"],
.gform_wrapper input[type="time"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="week"] {
    border: 1px solid #252525;
    border-radius: 0;
    color: #252525;
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    height: 45px;
    letter-spacing: normal;
    line-height: 1.2;
    padding: 0 1rem;
    text-transform: none;
    transition: all 0.15s ease-in-out;
    width: 100%;
}

.form-control-icon .ginput_container:before,
.form-control-icon-complex .ginput_complex span:not(.address_country):before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #e8e8e8;
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1.125rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    height: 100%;
    line-height: 45px;
    position: absolute;
    right: 0;
    text-align: center;
    text-rendering: auto;
    text-transform: none;
    top: 0;
    width: 45px;
    z-index: 1;
}

.form-control-icon .ginput_container,
.form-control-icon-complex .ginput_complex span:not(.address_country) {
    position: relative;
}

.form-control-icon .ginput_container input,
.form-control-icon-complex .ginput_complex span:not(.address_country) input {
    padding-right: 45px;
}

.gf-phone.form-control-icon .ginput_container:before {
    content: "";
}

.gf-name.form-control-icon .ginput_container:before {
    content: "";
}

.gf-email.form-control-icon .ginput_container:before {
    content: "";
}

.gf-date.form-control-icon .ginput_container:before {
    content: "";
    font-weight: 400;
}

.gf-address.form-control-icon .ginput_container:before {
    content: "";
}

.gf-url.form-control-icon .ginput_container:before {
    content: "";
}

.gf-password.form-control-icon .ginput_container:before {
    content: "";
}

.form-control-icon-complex .ginput_complex span:not(.address_country):before {
    right: 15px;
}

.form-control-icon-complex .ginput_complex span:not(.address_country).ginput_full:before,
.form-control-icon-complex .ginput_complex span:not(.address_country):nth-of-type(2n):before {
    right: 0;
}

.gf-address.form-control-icon-complex .ginput_complex span:not(.address_country):before,
.gf-name.form-control-icon-complex .ginput_complex span:not(.address_country):before {
    content: "";
}

.gf-checkbox ul li,
.gf-radio ul li {
    margin: 0;
    padding-left: 2rem;
}

.gf-checkbox .ginput_container,
.gf-radio .ginput_container {
    display: block;
    padding-bottom: 4px;
    padding-top: 8px;
}

.gf-checkbox .ginput_container input[type="checkbox"],
.gf-checkbox .ginput_container input[type="radio"],
.gf-radio .ginput_container input[type="checkbox"],
.gf-radio .ginput_container input[type="radio"] {
    display: inline-block;
    height: auto;
    line-height: 1.2;
    padding: 0;
    width: auto;
}

.gf-checkbox .ginput_container label,
.gf-radio .ginput_container label {
    color: #252525;
    cursor: pointer;
    display: inline-block;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    margin-bottom: 0;
    text-transform: none;
}

.gfield_checkbox,
.gfield_radio {
    list-style: none;
}

.gfield_checkbox li,
.gfield_radio li {
    padding-left: 34px;
    position: relative;
    transition: all 0.15s ease-in-out;
}

.gfield_checkbox li input[type="checkbox"],
.gfield_checkbox li input[type="radio"],
.gfield_radio li input[type="checkbox"],
.gfield_radio li input[type="radio"] {
    font-size: 12px;
    left: 5px;
    position: absolute;
    top: 2px;
}

.gfield_checkbox li label,
.gfield_radio li label {
    max-width: 600px;
}

.gfield_checkbox li label:after,
.gfield_checkbox li label:before,
.gfield_radio li label:after,
.gfield_radio li label:before {
    content: "";
    position: absolute;
    transition: all 0.15s ease-in-out;
}

.gfield_checkbox li label:before,
.gfield_radio li label:before {
    background-color: #fff;
    border: 1px solid #252525;
    height: 24px;
    left: 0;
    top: -4px;
    width: 24px;
}

.gfield_checkbox li label:after,
.gfield_radio li label:after {
    opacity: 0;
}

.gfield_checkbox li input:focus+label:before,
.gfield_radio li input:focus+label:before {
    border-color: #021bc3;
    box-shadow: 0 0 0 1px #021bc3;
}

.gfield_checkbox li input:checked+label,
.gfield_radio li input:checked+label {
    color: #252525;
}

.gfield_checkbox li input:checked+label:before,
.gfield_radio li input:checked+label:before {
    background-color: #021bc3;
    border-color: #021bc3;
}

.gfield_checkbox li input:checked+label:after,
.gfield_radio li input:checked+label:after {
    opacity: 1;
}

.gfield_checkbox li .gf-radio-checkbox-other-placeholder:before,
.gfield_radio li .gf-radio-checkbox-other-placeholder:before {
    top: 11px;
}

.gfield_checkbox li .gf-radio-checkbox-other-placeholder:after,
.gfield_radio li .gf-radio-checkbox-other-placeholder:after {
    top: 19px;
}

.gfield_checkbox li input:focus~.gf-radio-checkbox-other-placeholder:before,
.gfield_radio li input:focus~.gf-radio-checkbox-other-placeholder:before {
    border-color: #021bc3;
    box-shadow: 0 0 0 1px #021bc3;
}

.gfield_checkbox li input:checked~.gf-radio-checkbox-other-placeholder,
.gfield_radio li input:checked~.gf-radio-checkbox-other-placeholder {
    color: #252525;
}

.gfield_checkbox li input:checked~.gf-radio-checkbox-other-placeholder:after,
.gfield_radio li input:checked~.gf-radio-checkbox-other-placeholder:after {
    opacity: 1;
}

.gfield_checkbox li~li,
.gfield_radio li~li {
    margin-top: 1.5rem;
}

.gfield_checkbox input[value="gf_other_choice"][type="checkbox"],
.gfield_checkbox input[value="gf_other_choice"][type="radio"],
.gfield_radio input[value="gf_other_choice"][type="checkbox"],
.gfield_radio input[value="gf_other_choice"][type="radio"] {
    top: 16px;
}

.gfield_checkbox label:before {
    border-radius: 0;
}

.gfield_checkbox label:after {
    border: 3px solid #fff;
    border-right: none;
    border-top: none;
    height: 7px;
    left: 5px;
    top: 3px;
    transform: rotate(-50deg);
    width: 13px;
}

.gfield_radio label:after,
.gfield_radio label:before {
    border-radius: 50%;
}

.gfield_radio label:after {
    background-color: #fff;
    height: 10px;
    left: 7px;
    top: 3px;
    width: 10px;
}

.gf-textarea .ginput_container {
    position: relative;
}

.gf-textarea textarea {
    padding-bottom: 40px;
}

.ginput_counter {
    background-color: #e8e8e8;
    border-bottom-left-radius: 0;
    bottom: 0;
    color: #252525;
    display: inline-block;
    font-family: inter-variable, sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    left: 0;
    line-height: 32px;
    padding: 0 15px;
    position: relative;
}

.gf-date .clear-multi:after,
.gf-date .clear-multi:before,
.gf-time .clear-multi:after,
.gf-time .clear-multi:before {
    content: " ";
    display: table;
    flex-basis: 0;
    order: 1;
}

.gf-date .clear-multi:after,
.gf-time .clear-multi:after {
    clear: both;
}

.gf-date .clear-multi .ginput_container,
.gf-time .clear-multi .ginput_container {
    display: block;
}

.gf-date .clear-multi .ginput_container label,
.gf-time .clear-multi .ginput_container label {
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.15;
    margin-top: 0.5rem;
    padding: 0;
    text-transform: none;
}

.gfield_date_dropdown_day,
.gfield_date_dropdown_month,
.gfield_date_dropdown_year,
.gfield_time_ampm {
    cursor: pointer;
    max-width: 250px;
    position: relative;
}

.gfield_date_dropdown_day:active:after,
.gfield_date_dropdown_day:focus:after,
.gfield_date_dropdown_day:hover:after,
.gfield_date_dropdown_month:active:after,
.gfield_date_dropdown_month:focus:after,
.gfield_date_dropdown_month:hover:after,
.gfield_date_dropdown_year:active:after,
.gfield_date_dropdown_year:focus:after,
.gfield_date_dropdown_year:hover:after,
.gfield_time_ampm:active:after,
.gfield_time_ampm:focus:after,
.gfield_time_ampm:hover:after {
    background-color: #021bc3;
    color: #fff;
}

.gfield_date_dropdown_day:after,
.gfield_date_dropdown_month:after,
.gfield_date_dropdown_year:after,
.gfield_time_ampm:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #e8e8e8;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    bottom: 1px;
    color: #252525;
    content: "";
    display: block;
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    height: 43px;
    line-height: 45px;
    pointer-events: none;
    position: absolute;
    right: 1px;
    text-align: center;
    text-rendering: auto;
    text-transform: none;
    top: auto;
    transition: all 0.15s ease-in-out;
    width: 45px;
}

.gfield_date_dropdown_day select,
.gfield_date_dropdown_month select,
.gfield_date_dropdown_year select,
.gfield_time_ampm select {
    appearance: none;
    padding-right: calc(45px + 1rem);
}

.gfield_date_dropdown_day select::-ms-expand,
.gfield_date_dropdown_month select::-ms-expand,
.gfield_date_dropdown_year select::-ms-expand,
.gfield_time_ampm select::-ms-expand {
    display: none;
}

.gf-date.gf-date-layout-datepicker {
    max-width: 500px;
}

.gf-date.gf-date-layout-datepicker .ginput_container {
    position: relative;
}

.gf-date .ui-datepicker-trigger {
    margin: -8px 0 0;
    position: absolute;
    right: 13px;
    top: 50%;
}

.gfield_date_dropdown_day~*,
.gfield_date_dropdown_month~*,
.gfield_date_dropdown_year~* {
    margin-top: 20px;
}

.gf-time .gfield_time_hour i {
    display: none;
}

.gf-file .validation_message,
.ginput_preview {
    background-color: #fff;
    border: 1px solid #252525;
    border-top: 0;
    font-size: 1rem;
    height: auto;
    line-height: 1;
    padding: 1.5rem 1rem;
}

.gf-file .validation_message img,
.ginput_preview img {
    display: inline-block;
    margin: 0 2px 0 0;
    vertical-align: middle;
}

.gf-file .validation_message strong,
.ginput_preview strong {
    display: inline-block;
    font-weight: 400;
    vertical-align: middle;
}

.gf-file .validation_message {
    border: 0;
}

.gf-file .validation_message li {
    margin-bottom: 0;
}

.gf-file .validation_message li~li {
    margin-top: 10px;
}

.gform_drop_instructions {
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
}

.gform_fileupload_multifile {
    background-color: #fff;
    border: 1px solid #252525;
    padding: 1.5rem 1rem;
}

.gform_fileupload_multifile input[type="button"],
.gform_fileupload_multifile input[type="file"] {
    background: transparent;
    border: 2px solid #021bc3;
    color: #021bc3;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    margin-top: 1rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

.gform_fileupload_multifile input[type="button"]:visited,
.gform_fileupload_multifile input[type="file"]:visited {
    color: #021bc3;
}

.gform_fileupload_multifile input[type="button"]:focus,
.gform_fileupload_multifile input[type="button"]:hover,
.gform_fileupload_multifile input[type="file"]:focus,
.gform_fileupload_multifile input[type="file"]:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff !important;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.gform_fileupload_multifile input[type="button"]:active,
.gform_fileupload_multifile input[type="file"]:active {
    background: #001e5f;
    border-color: #001e5f;
    color: #fff;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.gform_fileupload_multifile input[type="button"]:after,
.gform_fileupload_multifile input[type="file"]:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.gform_fileupload_multifile input[type="button"]:active:after,
.gform_fileupload_multifile input[type="button"]:focus:after,
.gform_fileupload_multifile input[type="button"]:hover:after,
.gform_fileupload_multifile input[type="file"]:active:after,
.gform_fileupload_multifile input[type="file"]:focus:after,
.gform_fileupload_multifile input[type="file"]:hover:after {
    color: #fff;
}

.gform_hidden {
    display: none;
}

.ginput_list input {
    background-color: #fff;
}

.ginput_list .gfield_list {
    margin-bottom: 0;
    margin-top: 0;
    table-layout: auto;
}

.ginput_list .gfield_list tr {
    background-color: transparent;
}

.ginput_list .gfield_list tr:nth-of-type(2n) {
    background-color: #e8e8e8;
}

.ginput_list .gfield_list_icons {
    padding-left: 0;
    padding-right: 0;
    width: 50px;
}

.ginput_list .gfield_list_icons .add_list_item,
.ginput_list .gfield_list_icons .delete_list_item {
    margin: 0 auto !important;
}

.ginput_list .gfield_list_icons .delete_list_item {
    margin-top: 8px !important;
}

.gform_confirmation_wrapper {
    background-color: #fff;
    border: 1px solid #001e5f;
    border-radius: #252525;
    color: #252525;
    margin: 4rem auto;
    padding: 68px 25px 80px;
    position: relative;
    text-align: center;
}

.gform_confirmation_wrapper:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #001e5f;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 65px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    text-align: center;
    text-rendering: auto;
    text-transform: none;
}

.gform_confirmation_message {
    font-family: inter-variable, sans-serif;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1.25;
    margin: 0 auto;
    max-width: 600px;
    padding-top: 20px;
    text-transform: none;
}

.gform_wrapper #error {
    margin-bottom: 4rem;
}

.gform_wrapper #error .validation_error {
    color: #cc4b37;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.gform_wrapper #error .validation_list {
    margin-bottom: 0;
}

.gfield_error input[type],
.gfield_error select,
.gfield_error textarea {
    border-color: #cc4b37;
    box-shadow: none;
}

.gfield_error .gfield_description~.validation_message {
    margin-top: -12px;
}

.gfield_error .validation_message {
    color: #cc4b37;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: normal;
    line-height: 1.15;
    margin-top: 8px;
    padding: 0;
    text-transform: none;
}

:root {
    --bs-blue: #0d6efd;
    --bs-indigo: #6610f2;
    --bs-purple: #6f42c1;
    --bs-pink: #d63384;
    --bs-red: #dc3545;
    --bs-orange: #fd7e14;
    --bs-yellow: #ffc107;
    --bs-green: #198754;
    --bs-teal: #20c997;
    --bs-cyan: #0dcaf0;
    --bs-white: #fff;
    --bs-gray: #6c757d;
    --bs-gray-dark: #343a40;
    --bs-gray-100: #f8f9fa;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
    --bs-gray-400: #ced4da;
    --bs-gray-500: #adb5bd;
    --bs-gray-600: #6c757d;
    --bs-gray-700: #495057;
    --bs-gray-800: #343a40;
    --bs-gray-900: #212529;
    --bs-primary: #0d6efd;
    --bs-secondary: #6c757d;
    --bs-success: #198754;
    --bs-info: #0dcaf0;
    --bs-warning: #ffc107;
    --bs-danger: #dc3545;
    --bs-light: #f8f9fa;
    --bs-dark: #212529;
    --bs-primary-rgb: 13, 110, 253;
    --bs-secondary-rgb: 108, 117, 125;
    --bs-success-rgb: 25, 135, 84;
    --bs-info-rgb: 13, 202, 240;
    --bs-warning-rgb: 255, 193, 7;
    --bs-danger-rgb: 220, 53, 69;
    --bs-light-rgb: 248, 249, 250;
    --bs-dark-rgb: 33, 37, 41;
    --bs-white-rgb: 255, 255, 255;
    --bs-black-rgb: 37, 37, 37;
    --bs-body-color-rgb: 33, 37, 41;
    --bs-body-bg-rgb: 255, 255, 255;
    --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
        "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --bs-font-monospace: consolas, "Liberation Mono", courier, monospace;
    --bs-gradient: linear-gradient(180deg,
            hsla(0, 0%, 100%, 0.15),
            hsla(0, 0%, 100%, 0));
    --bs-body-font-family: inter-variable, sans-serif;
    --bs-body-font-size: 1.125rem;
    --bs-body-font-weight: 400;
    --bs-body-line-height: 1.2;
    --bs-body-color: #212529;
    --bs-body-bg: #fff;
}

.clearfix:after {
    clear: both;
    content: "";
    display: block;
}

.link-primary {
    color: #0d6efd;
}

.link-primary:focus,
.link-primary:hover {
    color: #0a58ca;
}

.link-secondary {
    color: #6c757d;
}

.link-secondary:focus,
.link-secondary:hover {
    color: #565e64;
}

.link-success {
    color: #198754;
}

.link-success:focus,
.link-success:hover {
    color: #146c43;
}

.link-info {
    color: #0dcaf0;
}

.link-info:focus,
.link-info:hover {
    color: #3dd5f3;
}

.link-warning {
    color: #ffc107;
}

.link-warning:focus,
.link-warning:hover {
    color: #ffcd39;
}

.link-danger {
    color: #dc3545;
}

.link-danger:focus,
.link-danger:hover {
    color: #b02a37;
}

.link-light {
    color: #f8f9fa;
}

.link-light:focus,
.link-light:hover {
    color: #f9fafb;
}

.link-dark {
    color: #212529;
}

.link-dark:focus,
.link-dark:hover {
    color: #1a1e21;
}

.ratio {
    position: relative;
    width: 100%;
}

.ratio:before {
    content: "";
    display: block;
    padding-top: var(--bs-aspect-ratio);
}

.ratio>* {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.ratio-1x1 {
    --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
    --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
    --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
    --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
    top: 0;
}

.fixed-bottom,
.fixed-top {
    left: 0;
    position: fixed;
    right: 0;
    z-index: 1030;
}

.fixed-bottom {
    bottom: 0;
}

.sticky-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
}

.hstack {
    align-items: center;
    flex-direction: row;
}

.hstack,
.vstack {
    align-self: stretch;
    display: flex;
}

.vstack {
    flex: 1 1 auto;
    flex-direction: column;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    clip: rect(0, 0, 0, 0) !important;
    border: 0 !important;
    white-space: nowrap !important;
}

.stretched-link:after {
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vr {
    align-self: stretch;
    background-color: currentColor;
    display: inline-block;
    min-height: 1em;
    opacity: 0.25;
    width: 1px;
}

.fade {
    transition: opacity 0.15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

.collapse:not(.show) {
    display: none;
}

.collapsing {
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

.collapsing.collapse-horizontal {
    height: auto;
    transition: width 0.35s ease;
    width: 0;
}

.dropdown,
.dropend,
.dropstart,
.dropup {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle:after {
    border-bottom: 0;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-top: 0.3em solid;
    content: "";
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
}

.dropdown-toggle:empty:after {
    margin-left: 0;
}

.dropdown-menu {
    background-clip: padding-box;
    background-color: #fff;
    border: 1px solid rgba(37, 37, 37, 0.15);
    border-radius: 0.25rem;
    color: #212529;
    display: none;
    font-size: 1rem;
    list-style: none;
    margin: 0;
    min-width: 10rem;
    padding: 0.5rem 0;
    position: absolute;
    text-align: left;
    z-index: 1000;
}

.dropdown-menu[data-bs-popper] {
    left: 0;
    margin-top: 0.125rem;
    top: 100%;
}

.dropdown-menu-start {
    --bs-position: start;
}

.dropdown-menu-start[data-bs-popper] {
    left: 0;
    right: auto;
}

.dropdown-menu-end {
    --bs-position: end;
}

.dropdown-menu-end[data-bs-popper] {
    left: auto;
    right: 0;
}

.dropup .dropdown-menu[data-bs-popper] {
    bottom: 100%;
    margin-bottom: 0.125rem;
    margin-top: 0;
    top: auto;
}

.dropup .dropdown-toggle:after {
    border-bottom: 0.3em solid;
    border-left: 0.3em solid transparent;
    border-right: 0.3em solid transparent;
    border-top: 0;
    content: "";
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
}

.dropup .dropdown-toggle:empty:after {
    margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
    left: 100%;
    margin-left: 0.125rem;
    margin-top: 0;
    right: auto;
    top: 0;
}

.dropend .dropdown-toggle:after {
    border-bottom: 0.3em solid transparent;
    border-left: 0.3em solid;
    border-right: 0;
    border-top: 0.3em solid transparent;
    content: "";
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0;
}

.dropend .dropdown-toggle:empty:after {
    margin-left: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
    left: auto;
    margin-right: 0.125rem;
    margin-top: 0;
    right: 100%;
    top: 0;
}

.dropstart .dropdown-toggle:after {
    content: "";
    display: none;
    margin-left: 0.255em;
    vertical-align: 0.255em;
}

.dropstart .dropdown-toggle:before {
    border-bottom: 0.3em solid transparent;
    border-right: 0.3em solid;
    border-top: 0.3em solid transparent;
    content: "";
    display: inline-block;
    margin-right: 0.255em;
    vertical-align: 0;
}

.dropstart .dropdown-toggle:empty:after {
    margin-left: 0;
}

.dropdown-divider {
    border-top: 1px solid rgba(37, 37, 37, 0.15);
    height: 0;
    margin: 1rem 0;
    overflow: hidden;
}

.dropdown-item {
    background-color: transparent;
    border: 0;
    clear: both;
    color: #212529;
    display: block;
    font-weight: 400;
    padding: 0.5rem 2rem;
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    width: 100%;
}

.dropdown-item:focus,
.dropdown-item:hover {
    background-color: #e9ecef;
    color: #1e2125;
}

.dropdown-item.active,
.dropdown-item:active {
    background-color: #0d6efd;
    color: #fff;
    text-decoration: none;
}

.dropdown-item.disabled,
.dropdown-item:disabled {
    background-color: transparent;
    color: #adb5bd;
    pointer-events: none;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-header {
    color: #6c757d;
    display: block;
    font-size: 0.984375rem;
    margin-bottom: 0;
    padding: 0.5rem 2rem;
    white-space: nowrap;
}

.dropdown-item-text {
    color: #212529;
    display: block;
    padding: 0.5rem 2rem;
}

.dropdown-menu-dark {
    background-color: #343a40;
    border-color: rgba(37, 37, 37, 0.15);
    color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item {
    color: #dee2e6;
}

.dropdown-menu-dark .dropdown-item:focus,
.dropdown-menu-dark .dropdown-item:hover {
    background-color: hsla(0, 0%, 100%, 0.15);
    color: #fff;
}

.dropdown-menu-dark .dropdown-item.active,
.dropdown-menu-dark .dropdown-item:active {
    background-color: #0d6efd;
    color: #fff;
}

.dropdown-menu-dark .dropdown-item.disabled,
.dropdown-menu-dark .dropdown-item:disabled {
    color: #adb5bd;
}

.dropdown-menu-dark .dropdown-divider {
    border-color: rgba(37, 37, 37, 0.15);
}

.dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6;
}

.dropdown-menu-dark .dropdown-header {
    color: #adb5bd;
}

.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.float-start {
    float: left !important;
}

.float-end {
    float: right !important;
}

.float-none {
    float: none !important;
}

.opacity-0 {
    opacity: 0 !important;
}

.opacity-25 {
    opacity: 0.25 !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.opacity-75 {
    opacity: 0.75 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.overflow-auto {
    overflow: auto !important;
}

.overflow-hidden {
    overflow: hidden !important;
}

.overflow-visible {
    overflow: visible !important;
}

.overflow-scroll {
    overflow: scroll !important;
}

.d-inline {
    display: inline !important;
}

.d-inline-block {
    display: inline-block !important;
}

.d-block {
    display: block !important;
}

.d-grid {
    display: grid !important;
}

.d-table {
    display: table !important;
}

.d-table-row {
    display: table-row !important;
}

.d-table-cell {
    display: table-cell !important;
}

.d-flex {
    display: flex !important;
}

.d-inline-flex {
    display: inline-flex !important;
}

.d-none {
    display: none !important;
}

.shadow {
    box-shadow: 0 0.5rem 1rem rgba(37, 37, 37, 0.15) !important;
}

.shadow-sm {
    box-shadow: 0 0.125rem 0.25rem rgba(37, 37, 37, 0.075) !important;
}

.shadow-lg {
    box-shadow: 0 1rem 3rem rgba(37, 37, 37, 0.175) !important;
}

.shadow-none {
    box-shadow: none !important;
}

.position-static {
    position: static !important;
}

.position-relative {
    position: relative !important;
}

.position-absolute {
    position: absolute !important;
}

.position-fixed {
    position: fixed !important;
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important;
}

.top-0 {
    top: 0 !important;
}

.top-50 {
    top: 50% !important;
}

.top-100 {
    top: 100% !important;
}

.bottom-0 {
    bottom: 0 !important;
}

.bottom-50 {
    bottom: 50% !important;
}

.bottom-100 {
    bottom: 100% !important;
}

.start-0 {
    left: 0 !important;
}

.start-50 {
    left: 50% !important;
}

.start-100 {
    left: 100% !important;
}

.end-0 {
    right: 0 !important;
}

.end-50 {
    right: 50% !important;
}

.end-100 {
    right: 100% !important;
}

.translate-middle {
    transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
    transform: translateX(-50%) !important;
}

.translate-middle-y {
    transform: translateY(-50%) !important;
}

.border {
    border: 1px solid #dee2e6 !important;
}

.border-0 {
    border: 0 !important;
}

.border-top {
    border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
    border-top: 0 !important;
}

.border-end {
    border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
    border-right: 0 !important;
}

.border-bottom {
    border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
    border-bottom: 0 !important;
}

.border-start {
    border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
    border-left: 0 !important;
}

.border-primary {
    border-color: #0d6efd !important;
}

.border-secondary {
    border-color: #6c757d !important;
}

.border-success {
    border-color: #198754 !important;
}

.border-info {
    border-color: #0dcaf0 !important;
}

.border-warning {
    border-color: #ffc107 !important;
}

.border-danger {
    border-color: #dc3545 !important;
}

.border-light {
    border-color: #f8f9fa !important;
}

.border-dark {
    border-color: #212529 !important;
}

.border-white {
    border-color: #fff !important;
}

.border-1 {
    border-width: 1px !important;
}

.border-2 {
    border-width: 2px !important;
}

.border-3 {
    border-width: 3px !important;
}

.border-4 {
    border-width: 4px !important;
}

.border-5 {
    border-width: 5px !important;
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.vw-100 {
    width: 100vw !important;
}

.min-vw-100 {
    min-width: 100vw !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mh-100 {
    max-height: 100% !important;
}

.vh-100 {
    height: 100vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.flex-fill {
    flex: 1 1 auto !important;
}

.flex-row {
    flex-direction: row !important;
}

.flex-column {
    flex-direction: column !important;
}

.flex-row-reverse {
    flex-direction: row-reverse !important;
}

.flex-column-reverse {
    flex-direction: column-reverse !important;
}

.flex-grow-0 {
    flex-grow: 0 !important;
}

.flex-grow-1 {
    flex-grow: 1 !important;
}

.flex-shrink-0 {
    flex-shrink: 0 !important;
}

.flex-shrink-1 {
    flex-shrink: 1 !important;
}

.flex-wrap {
    flex-wrap: wrap !important;
}

.flex-nowrap {
    flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse !important;
}

.gap-0 {
    gap: 0 !important;
}

.gap-1 {
    gap: 0.5rem !important;
}

.gap-2 {
    gap: 1rem !important;
}

.gap-3 {
    gap: 2rem !important;
}

.gap-4 {
    gap: 3rem !important;
}

.gap-5 {
    gap: 6rem !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.justify-content-evenly {
    justify-content: space-evenly !important;
}

.align-items-start {
    align-items: flex-start !important;
}

.align-items-end {
    align-items: flex-end !important;
}

.align-items-center {
    align-items: center !important;
}

.align-items-baseline {
    align-items: baseline !important;
}

.align-items-stretch {
    align-items: stretch !important;
}

.align-content-start {
    align-content: flex-start !important;
}

.align-content-end {
    align-content: flex-end !important;
}

.align-content-center {
    align-content: center !important;
}

.align-content-between {
    align-content: space-between !important;
}

.align-content-around {
    align-content: space-around !important;
}

.align-content-stretch {
    align-content: stretch !important;
}

.align-self-auto {
    align-self: auto !important;
}

.align-self-start {
    align-self: flex-start !important;
}

.align-self-end {
    align-self: flex-end !important;
}

.align-self-center {
    align-self: center !important;
}

.align-self-baseline {
    align-self: baseline !important;
}

.align-self-stretch {
    align-self: stretch !important;
}

.order-first {
    order: -1 !important;
}

.order-0 {
    order: 0 !important;
}

.order-1 {
    order: 1 !important;
}

.order-2 {
    order: 2 !important;
}

.order-3 {
    order: 3 !important;
}

.order-4 {
    order: 4 !important;
}

.order-5 {
    order: 5 !important;
}

.order-last {
    order: 6 !important;
}

.m-0 {
    margin: 0 !important;
}

.m-1 {
    margin: 0.5rem !important;
}

.m-2 {
    margin: 1rem !important;
}

.m-3 {
    margin: 2rem !important;
}

.m-4 {
    margin: 3rem !important;
}

.m-5 {
    margin: 6rem !important;
}

.m-auto {
    margin: auto !important;
}

.mx-0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mx-1 {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
}

.mx-2 {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
}

.mx-3 {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
}

.mx-4 {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
}

.mx-5 {
    margin-left: 6rem !important;
    margin-right: 6rem !important;
}

.mx-auto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.my-0 {
    margin-bottom: 0 !important;
    margin-top: 0 !important;
}

.my-1 {
    margin-bottom: 0.5rem !important;
    margin-top: 0.5rem !important;
}

.my-2 {
    margin-bottom: 1rem !important;
    margin-top: 1rem !important;
}

.my-3 {
    margin-bottom: 2rem !important;
    margin-top: 2rem !important;
}

.my-4 {
    margin-bottom: 3rem !important;
    margin-top: 3rem !important;
}

.my-5 {
    margin-bottom: 6rem !important;
    margin-top: 6rem !important;
}

.my-auto {
    margin-bottom: auto !important;
    margin-top: auto !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.mt-1 {
    margin-top: 0.5rem !important;
}

.mt-2 {
    margin-top: 1rem !important;
}

.mt-3 {
    margin-top: 2rem !important;
}

.mt-4 {
    margin-top: 3rem !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-auto {
    margin-top: auto !important;
}

.me-0 {
    margin-right: 0 !important;
}

.me-1 {
    margin-right: 0.5rem !important;
}

.me-2 {
    margin-right: 1rem !important;
}

.me-3 {
    margin-right: 2rem !important;
}

.me-4 {
    margin-right: 3rem !important;
}

.me-5 {
    margin-right: 6rem !important;
}

.me-auto {
    margin-right: auto !important;
}

.mb-0 {
    margin-bottom: 0 !important;
}

.mb-1 {
    margin-bottom: 0.5rem !important;
}

.mb-2 {
    margin-bottom: 1rem !important;
}

.mb-3 {
    margin-bottom: 2rem !important;
}

.mb-4 {
    margin-bottom: 3rem !important;
}

.mb-5 {
    margin-bottom: 5px !important;
}

.mb-auto {
    margin-bottom: auto !important;
}

.ms-0 {
    margin-left: 0 !important;
}

.ms-1 {
    margin-left: 0.5rem !important;
}

.ms-2 {
    margin-left: 1rem !important;
}

.ms-3 {
    margin-left: 2rem !important;
}

.ms-4 {
    margin-left: 3rem !important;
}

.ms-5 {
    margin-left: 6rem !important;
}

.ms-auto {
    margin-left: auto !important;
}

.p-0 {
    padding: 0 !important;
}

.p-1 {
    padding: 0.5rem !important;
}

.p-2 {
    padding: 1rem !important;
}

.p-3 {
    padding: 2rem !important;
}

.p-4 {
    padding: 3rem !important;
}

.p-5 {
    padding: 6rem !important;
}

.px-0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.px-1 {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
}

.px-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.px-3 {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.px-4 {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
}

.px-5 {
    padding-left: 6rem !important;
    padding-right: 6rem !important;
}

.py-0 {
    padding-bottom: 0 !important;
    padding-top: 0 !important;
}

.py-1 {
    padding-bottom: 0.5rem !important;
    padding-top: 0.5rem !important;
}

.py-2 {
    padding-bottom: 1rem !important;
    padding-top: 1rem !important;
}

.py-3 {
    padding-bottom: 2rem !important;
    padding-top: 2rem !important;
}

.py-4 {
    padding-bottom: 3rem !important;
    padding-top: 3rem !important;
}

.py-5 {
    padding-bottom: 6rem !important;
    padding-top: 6rem !important;
}

.pt-0 {
    padding-top: 0 !important;
}

.pt-1 {
    padding-top: 0.5rem !important;
}

.pt-2 {
    padding-top: 1rem !important;
}

.pt-3 {
    padding-top: 2rem !important;
}

.pt-4 {
    padding-top: 3rem !important;
}

.pt-5 {
    padding-top: 5px !important;
}

.pe-0 {
    padding-right: 0 !important;
}

.pe-1 {
    padding-right: 0.5rem !important;
}

.pe-2 {
    padding-right: 1rem !important;
}

.pe-3 {
    padding-right: 2rem !important;
}

.pe-4 {
    padding-right: 3rem !important;
}

.pe-5 {
    padding-right: 6rem !important;
}

.pb-0 {
    padding-bottom: 0 !important;
}

.pb-1 {
    padding-bottom: 0.5rem !important;
}

.pb-2 {
    padding-bottom: 1rem !important;
}

.pb-3 {
    padding-bottom: 2rem !important;
}

.pb-4 {
    padding-bottom: 3rem !important;
}

.pb-5 {
    padding-bottom: 5px !important;
}

.ps-0 {
    padding-left: 0 !important;
}

.ps-1 {
    padding-left: 0.5rem !important;
}

.ps-2 {
    padding-left: 1rem !important;
}

.ps-3 {
    padding-left: 2rem !important;
}

.ps-4 {
    padding-left: 3rem !important;
}

.ps-5 {
    padding-left: 6rem !important;
}

.font-monospace {
    font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
    font-size: calc(1.40625rem + 1.875vw) !important;
}

.fs-2 {
    font-size: calc(1.35rem + 1.2vw) !important;
}

.fs-3 {
    font-size: calc(1.32188rem + 0.8625vw) !important;
}

.fs-4 {
    font-size: calc(1.29375rem + 0.525vw) !important;
}

.fs-5 {
    font-size: calc(1.26563rem + 0.1875vw) !important;
}

.fs-6 {
    font-size: 1.125rem !important;
}

.fst-italic {
    font-style: italic !important;
}

.fst-normal {
    font-style: normal !important;
}

.fw-light {
    font-weight: 300 !important;
}

.fw-lighter {
    font-weight: lighter !important;
}

.fw-normal {
    font-weight: 400 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.fw-bolder {
    font-weight: bolder !important;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-sm {
    line-height: 1.25 !important;
}

.lh-base {
    line-height: 1.2 !important;
}

.lh-lg {
    line-height: 2 !important;
}

.text-start {
    text-align: left !important;
}

.text-end {
    text-align: right !important;
}

.text-decoration-none {
    text-decoration: none !important;
}

.text-decoration-underline {
    text-decoration: underline !important;
}

.text-decoration-line-through {
    text-decoration: line-through !important;
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.text-wrap {
    white-space: normal !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-break {
    word-wrap: break-word !important;
    word-break: break-word !important;
}

.text-primary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
    --bs-text-opacity: 1;
    color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #6c757d !important;
}

.text-black-50 {
    --bs-text-opacity: 1;
    color: rgba(37, 37, 37, 0.5) !important;
}

.text-white-50 {
    --bs-text-opacity: 1;
    color: hsla(0, 0%, 100%, 0.5) !important;
}

.text-reset {
    --bs-text-opacity: 1;
    color: inherit !important;
}

.text-opacity-25 {
    --bs-text-opacity: 0.25;
}

.text-opacity-50 {
    --bs-text-opacity: 0.5;
}

.text-opacity-75 {
    --bs-text-opacity: 0.75;
}

.text-opacity-100 {
    --bs-text-opacity: 1;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-primary-rgb),
            var(--bs-bg-opacity)) !important;
}

.bg-secondary {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-secondary-rgb),
            var(--bs-bg-opacity)) !important;
}

.bg-success {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-success-rgb),
            var(--bs-bg-opacity)) !important;
}

.bg-info {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-warning-rgb),
            var(--bs-bg-opacity)) !important;
}

.bg-danger {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
    --bs-bg-opacity: 1;
    background-color: rgba(var(--bs-body-bg-rgb),
            var(--bs-bg-opacity)) !important;
}

.bg-transparent {
    --bs-bg-opacity: 1;
    background-color: transparent !important;
}

.bg-opacity-10 {
    --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
    --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
    --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
    --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
    --bs-bg-opacity: 1;
}

.bg-gradient {
    background-image: var(--bs-gradient) !important;
}

.user-select-all {
    -webkit-user-select: all !important;
    user-select: all !important;
}

.user-select-auto {
    -webkit-user-select: auto !important;
    user-select: auto !important;
}

.user-select-none {
    -webkit-user-select: none !important;
    user-select: none !important;
}

.pe-none {
    pointer-events: none !important;
}

.pe-auto {
    pointer-events: auto !important;
}

.rounded {
    border-radius: 0.25rem !important;
}

.rounded-0 {
    border-radius: 0 !important;
}

.rounded-1 {
    border-radius: 0.2rem !important;
}

.rounded-2 {
    border-radius: 0.25rem !important;
}

.rounded-3 {
    border-radius: 0.3rem !important;
}

.rounded-circle {
    border-radius: 50% !important;
}

.rounded-pill {
    border-radius: 50rem !important;
}

.rounded-top {
    border-top-left-radius: 0.25rem !important;
}

.rounded-end,
.rounded-top {
    border-top-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-end {
    border-bottom-right-radius: 0.25rem !important;
}

.rounded-bottom,
.rounded-start {
    border-bottom-left-radius: 0.25rem !important;
}

.rounded-start {
    border-top-left-radius: 0.25rem !important;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}

@font-face {
    font-display: block;
    font-family: Font Awesome\6 Pro;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/fa-solid-900.woff2) format("woff2"),
        url(../fonts/fa-solid-900.ttf) format("truetype");
}

@font-face {
    font-display: block;
    font-family: Font Awesome\6 Brands;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/fa-brands-400.woff2) format("woff2"),
        url(../fonts/fa-brands-400.ttf) format("truetype");
}

@font-face {
    font-display: block;
    font-family: Font Awesome\6 Pro;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/fa-regular-400.woff2) format("woff2"),
        url(../fonts/fa-regular-400.ttf) format("truetype");
}

* {
    min-width: 0;
}

body.no-scroll,
html.no-scroll {
    overflow: hidden;
}

body.has-sitewide-text .masthead__title-row {
    padding-bottom: 40px;
}

body.has-sitewide-text .no_image .header-wrap {
    padding-top: 50px !important;
}

body.has-sitewide-text #site-navigation {
    margin-top: -30px;
}

body .modules {
    background: #fff;
    position: relative;
    z-index: 2;
}

body .breadcrumbs {
    background-color: #fff;
    display: block;
    position: relative;
    z-index: 2;
}

body p {
    color: #252525;
}

.swiper-navigation-icon {
    display: none;
}

.fa,
.fa-fas {
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-variant: normal;
    font-weight: 900;
}

.fa,
.fa-far,
.fa-fas {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-style: normal;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
}

.fa-far {
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-variant: normal;
    font-weight: 400;
}

.fa-fab {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Font Awesome\6 Brands;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 400;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
}

.t-content> :first-child {
    margin-top: 0;
}

.t-content> :last-child {
    margin-bottom: 0;
}

.header__content-inner .module__title p {
    color: #252525;
    font-size: 1.5rem;
}

.single-item__image {
    background-size: cover;
    height: 400px;
    margin-bottom: 50px !important;
    width: 100%;
}

.t-content--light,
.t-content--light * {
    color: #fff;
}

.l-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-bar .l-wrapper {
    min-height: calc(100vh - 46px);
}

.browser-ie main {
    overflow: hidden;
}

.grid-container__stagger-double,
.grid-container__stagger>* {
    margin-left: auto;
    margin-right: auto;
    max-width: 66.375rem;
}

.grid-container__stagger-double>* {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

::placeholder {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: inherit;
    opacity: 1;
    text-transform: none;
    transition: all 0.15s ease-in-out;
}

button:hover,
select:hover {
    cursor: pointer;
}

.t-content form {
    margin: 2rem auto;
}

.form-field-group {
    line-height: 1;
    margin-bottom: 2rem;
}

.form-control-group-radio-checkbox {
    padding-bottom: 4px;
    padding-top: 8px;
}

input:not([type="button"], [type="reset"], [type="submit"]):focus,
select:focus,
textarea:focus {
    border: 1px solid #021bc3;
    box-shadow: none;
}

input:not([type="button"], [type="reset"], [type="submit"]):focus ::placeholder,
select:focus ::placeholder,
textarea:focus ::placeholder {
    color: #252525;
}

.form-fieldset {
    border: 1px solid #252525;
    border-radius: 0;
    margin: 0 0 2rem;
    padding: 1.5rem 1rem;
}

.form-control-label,
.t-content label,
legend.gfield_label {
    /* color: #252525;
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: uppercase; COMMENTED OUT BY PENTERA */
}

.form-control-helper {
    font-weight: 400;
    line-height: 1.15;
    margin-top: 0.5rem;
    padding: 0;
}

.form-control-helper,
.form-legend {
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    letter-spacing: normal;
    text-transform: none;
}

.form-legend {
    color: #252525;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 0.5rem;
    padding: 0 8px;
    text-align: left;
}

.form-control {
    border: 1px solid #252525;
    border-radius: 0;
    color: #252525;
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    height: 45px;
    letter-spacing: normal;
    line-height: 1.2;
    padding: 0 1rem;
    text-transform: none;
    transition: all 0.15s ease-in-out;
    width: 100%;
}

.form-control-icon {
    position: relative;
}

.form-control-icon input {
    padding-right: 45px;
}

.form-control-icon:before {
    color: #e8e8e8;
    font-size: 1.125rem;
    height: 100%;
    line-height: 45px;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 45px;
    z-index: 1;
}

.btn-submit {
    background: transparent;
    border: 2px solid #021bc3;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    margin-top: 2rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: 100%;
}

.btn-submit,
.btn-submit:visited {
    color: #021bc3;
}

.btn-submit:focus,
.btn-submit:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff !important;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.btn-submit:active {
    background: #001e5f;
    border-color: #001e5f;
    color: #fff;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.btn-submit:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-submit:active:after,
.btn-submit:focus:after,
.btn-submit:hover:after {
    color: #fff;
}

input[type="file"] {
    border: 1px solid #252525;
    border-radius: 0;
    color: #252525;
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    height: auto;
    letter-spacing: normal;
    line-height: 1;
    padding: 1.5rem 1rem;
    text-transform: none;
    transition: all 0.15s ease-in-out;
    width: 100%;
}

input[type="password"] {
    border: 1px solid #252525;
    font-family: inter-variable, sans-serif;
}

input[type="checkbox"],
input[type="radio"] {
    appearance: auto;
    margin-bottom: 0;
}

.form-control-checkbox,
.form-control-radio {
    display: block;
}

.form-control-checkbox input[type="checkbox"],
.form-control-checkbox input[type="radio"],
.form-control-radio input[type="checkbox"],
.form-control-radio input[type="radio"] {
    display: inline-block;
    height: auto;
    line-height: 1.2;
    margin-right: 10px;
    padding: 0;
    width: auto;
}

.form-control-checkbox label,
.form-control-radio label {
    color: #252525;
    cursor: pointer;
    display: inline-block;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-height: 1;
    margin-bottom: 0;
    text-transform: none;
}

.form-control-checkbox~.form-control-checkbox,
.form-control-radio~.form-control-radio {
    margin-top: 1.5rem;
}

.form-control-checkbox.form-control-custom-style,
.form-control-radio.form-control-custom-style {
    padding-left: 34px;
    position: relative;
    transition: all 0.15s ease-in-out;
}

.form-control-checkbox.form-control-custom-style input[type="checkbox"],
.form-control-checkbox.form-control-custom-style input[type="radio"],
.form-control-radio.form-control-custom-style input[type="checkbox"],
.form-control-radio.form-control-custom-style input[type="radio"] {
    font-size: 12px;
    left: 5px;
    position: absolute;
    top: 2px;
}

.form-control-checkbox.form-control-custom-style label,
.form-control-radio.form-control-custom-style label {
    max-width: 600px;
}

.form-control-checkbox.form-control-custom-style label:after,
.form-control-checkbox.form-control-custom-style label:before,
.form-control-radio.form-control-custom-style label:after,
.form-control-radio.form-control-custom-style label:before {
    content: "";
    position: absolute;
    transition: all 0.15s ease-in-out;
}

.form-control-checkbox.form-control-custom-style label:before,
.form-control-radio.form-control-custom-style label:before {
    background-color: #fff;
    border: 1px solid #252525;
    height: 24px;
    left: 0;
    top: -4px;
    width: 24px;
}

.form-control-checkbox.form-control-custom-style label:after,
.form-control-radio.form-control-custom-style label:after {
    opacity: 0;
}

.form-control-checkbox.form-control-custom-style input:focus+label:before,
.form-control-radio.form-control-custom-style input:focus+label:before {
    border-color: #021bc3;
    box-shadow: 0 0 0 1px #021bc3;
}

.form-control-checkbox.form-control-custom-style input:checked+label,
.form-control-radio.form-control-custom-style input:checked+label {
    color: #252525;
}

.form-control-checkbox.form-control-custom-style input:checked+label:before,
.form-control-radio.form-control-custom-style input:checked+label:before {
    background-color: #021bc3;
    border-color: #021bc3;
}

.form-control-checkbox.form-control-custom-style input:checked+label:after,
.form-control-radio.form-control-custom-style input:checked+label:after {
    opacity: 1;
}

.form-control-checkbox.form-control-custom-style label:before {
    border-radius: 0;
}

.form-control-checkbox.form-control-custom-style label:after {
    border: 3px solid #fff;
    border-right: none;
    border-top: none;
    height: 7px;
    left: 5px;
    top: 3px;
    transform: rotate(-50deg);
    width: 13px;
}

.form-control-radio.form-control-custom-style label:after,
.form-control-radio.form-control-custom-style label:before {
    border-radius: 50%;
}

.form-control-radio.form-control-custom-style label:after {
    background-color: #fff;
    height: 10px;
    left: 7px;
    top: 3px;
    width: 10px;
}

select[multiple] {
    font-size: 1rem;
    height: 100px;
    padding: 0.5rem 1rem;
}

.form-control-select {
    cursor: pointer;
    position: relative;
}

.form-control-select:active:after,
.form-control-select:focus:after,
.form-control-select:hover:after {
    background-color: #021bc3;
    color: #fff;
}

.form-control-select:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #e8e8e8;
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    color: #252525;
    content: "";
    display: block;
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    height: 43px;
    line-height: 45px;
    pointer-events: none;
    position: absolute;
    right: 1px;
    text-align: center;
    text-rendering: auto;
    text-transform: none;
    top: 1px;
    transition: all 0.15s ease-in-out;
    width: 45px;
}

.form-control-select select {
    appearance: none;
    padding-right: calc(45px + 1rem);
}

.form-control-select select::-ms-expand {
    display: none;
}

.form-control-required label:after {
    color: #cc4b37;
    content: "*";
    padding-left: 4px;
}

a:active,
a:focus,
a:hover {
    color: inherit;
}

.anchor,
.t-content a:not(.button) {
    box-shadow: 0 1px 0 0 #021bc3;
    color: #252525;
    font-weight: 600;
}

.anchor:focus,
.anchor:hover,
.t-content a:not(.button):focus,
.t-content a:not(.button):hover {
    box-shadow: 0 3px 0 0 #021bc3;
    color: #021bc3;
}

.anchor:active,
.t-content a:not(.button):active {
    box-shadow: 0 3px 0 0 #001e5f;
    color: #001e5f;
}

.t-content--light .anchor,
.t-content--light a:not(.button) {
    box-shadow: 0 1px 0 0 #fff;
    color: #fff;
    display: inline-block;
}

.t-content--light .anchor:focus,
.t-content--light .anchor:hover,
.t-content--light a:not(.button):focus,
.t-content--light a:not(.button):hover {
    box-shadow: 0 3px 0 0 #e8e8e8;
    color: #e8e8e8;
}

.t-content--light .anchor:active,
.t-content--light a:not(.button):active {
    box-shadow: 0 3px 0 0 #252525;
    color: #252525;
}

.localist-widget .lwn a,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
}

.t-content h1 {
    margin-bottom: 1.5rem;
}

.t-content .u-text-overline+h1 {
    margin-top: 0.5rem;
}

.t-content h2 {
    margin-bottom: 1.5rem;
}

.t-content .u-text-overline+h2 {
    margin-top: 0.5rem;
}

.t-content h3 {
    margin-bottom: 1.5rem;
}

.t-content .u-text-overline+h3 {
    margin-top: 0.5rem;
}

.h4,
.t-content h4 {
    color: #252525;
    font-weight: 700;
}

.t-content h4 {
    margin-bottom: 1.5rem;
}

.t-content .u-text-overline+h4 {
    margin-top: 0.5rem;
}

.localist-widget .lwn .t-content a,
.t-content .localist-widget .lwn a,
.t-content h5 {
    margin-bottom: 1.5rem;
}

.localist-widget .lwn .t-content .u-text-overline+a,
.t-content .localist-widget .lwn .u-text-overline+a,
.t-content .u-text-overline+h5 {
    margin-top: 0.5rem;
}

.t-content h6 {
    margin-bottom: 1.5rem;
}

.t-content .u-text-overline+h6 {
    margin-top: 0.5rem;
}

.t-content hr {
    margin: 3rem auto;
}

.t-content dl,
.t-content ol,
.t-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5em;
}

.t-content dl ol,
.t-content dl ul,
.t-content ol ol,
.t-content ol ul,
.t-content ul ol,
.t-content ul ul {
    color: #252525;
    margin: 1.5rem 0.5rem 0.5rem;
}

.t-content dl ul,
.t-content ol ul,
.t-content ul ul {
    list-style: circle;
}

.t-content li~li {
    margin-top: 1.5rem;
}

.list-bullet.no-bullets,
.t-content ul.no-bullets {
    list-style: none;
    margin-left: 0;
}

.list-bullet.no-bullets li,
.t-content ul.no-bullets li {
    margin-left: 0;
    text-indent: 0;
}

.list-bullet.no-bullets li:before,
.t-content ul.no-bullets li:before {
    content: none;
}

.list-bullet.list--inline,
.t-content ul.list--inline {
    margin: 0;
    padding: 0;
}

.list-bullet.list--inline li,
.t-content ul.list--inline li {
    display: block;
}

.list-number,
.t-content ol {
    list-style-type: decimal;
}

.list-number ol,
.t-content ol ol {
    list-style-type: lower-alpha;
}

.list-number ol ol,
.t-content ol ol ol {
    list-style-type: lower-roman;
}

.list-number ol ol ol,
.t-content ol ol ol ol {
    list-style-type: decimal;
}

.list-number ol ol ol ol,
.t-content ol ol ol ol ol {
    list-style-type: lower-alpha;
}

.list-number ol ol ol ol ol,
.t-content ol ol ol ol ol ol {
    list-style-type: lower-roman;
}

.dt,
.t-content dt {
    font-weight: 700;
}

.dd,
.t-content dd {
    margin-bottom: 1rem;
}

.ez-toc-list,
.t-content .ez-toc-list {
    border-bottom: 1px solid #e8e8e8;
    list-style: none;
    margin: 0 0 3rem;
    padding: 0 0 3rem;
}

.ez-toc-list li,
.t-content .ez-toc-list li {
    list-style: none;
    margin: 0 0 0.5rem;
    text-indent: 0;
}

.ez-toc-list li:before,
.t-content .ez-toc-list li:before {
    display: none;
}

.ez-toc-list li:last-of-type,
.t-content .ez-toc-list li:last-of-type {
    margin-bottom: 0;
}

.ez-toc-list li a,
.t-content .ez-toc-list li a {
    border-bottom: none;
    box-shadow: 0 0 0 0 #021bc3;
    color: #021bc3;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.020625rem;
    line-height: 1.6;
    text-transform: uppercase;
}

.ez-toc-list li a:focus,
.t-content .ez-toc-list li a:focus {
    box-shadow: 0 1px 0 0 #021bc3;
}

.ez-toc-list ul,
.t-content .ez-toc-list ul {
    margin: 0.75rem 0 0;
}

.ez-toc-list ul li,
.t-content .ez-toc-list ul li {
    margin-left: 2.25rem;
    text-indent: -1rem;
}

.t-content p {
    color: #252525;
    margin-bottom: 1rem;
}

.t-content .blockquote,
.t-content .quote,
.t-content blockquote,
.t-content q {
    margin: 3rem auto;
}

.quote,
.t-content q {
    border-bottom: 2px solid #001e5f;
    border-top: 2px solid #001e5f;
    color: #001e5f;
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
}

.quote>*,
.t-content q>* {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

.blockquote,
.t-content blockquote {
    border-bottom: 2px solid #001e5f;
    border-top: 2px solid #001e5f;
    padding: 2rem;
    position: relative;
}

.blockquote>*,
.t-content blockquote>* {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

.blockquote p,
.t-content blockquote p {
    color: #001e5f;
    font-family: inter-variable, sans-serif;
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 auto;
    text-align: center;
}

.blockquote p~p,
.t-content blockquote p~p {
    margin-top: 2rem;
}

.blockquote:before,
.t-content blockquote:before {
    content: "";
    font: var(--fa-font-solid);
    font-size: 5rem;
    left: -20px;
    opacity: 0.1;
    position: absolute;
    top: 7px;
}

.cite,
.t-content cite {
    display: block;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    margin-top: 1rem;
    text-transform: uppercase;
}

.t-content table,
.table {
    border: 1px solid #252525;
    border-collapse: collapse;
    font-size: 1rem;
    margin: 3rem auto;
    table-layout: fixed;
    text-align: left;
    width: 100%;
}

.t-content th,
.th {
    background-color: #fff;
    font-weight: 600;
    line-height: 1;
    overflow-wrap: break-word;
    padding: 0.5rem;
    word-wrap: break-word;
}

.t-content th~th,
.th~th {
    border-left: 1px solid #252525;
}

.t-content tr:nth-of-type(odd),
.tr:nth-of-type(odd) {
    background-color: #f4f4f4;
}

.t-content td,
.td {
    overflow-wrap: break-word;
    padding: 0.5rem;
    word-wrap: break-word;
}

.t-content td~td,
.td~td {
    border-left: 1px solid #252525;
}

.u-text-overline {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    text-transform: uppercase;
}

.t-content .u-text-overline {
    color: #252525;
    margin-bottom: 0.5rem;
}

.u-text-caption {
    font-size: 0.875rem;
    letter-spacing: 0.009375rem;
    line-height: 1.8571428571;
}

.t-content .u-text-caption {
    color: #252525;
}

.u-text-top-border {
    position: relative;
}

.u-text-top-border:before {
    background-color: #001e5f;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: -16px;
    width: 79px;
}

.u-text-lead {
    color: #252525;
    font-size: 1.25rem;
    margin: 0 auto 35px;
    width: 100%;
}

.u-text-lead:last-child {
    margin-bottom: 45px;
}

.u-card-title {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.u-link-external:after {
    content: "";
}

.u-link-external:after,
.u-link-pdf:after {
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    font-size: 0.875rem;
    font-weight: 900;
    margin-left: 5px;
    position: relative;
    top: -2px;
}

.u-link-pdf:after {
    content: "";
}

.proxima-font {
    font-family: inter-variable, sans-serif !important;
}

.utopia-font {
    font-family: ivypresto-text, serif !important;
}

.inter-font {
    font-family: inter-variable, sans-serif !important;
}

.ivy-font {
    font-family: ivypresto-text, serif !important;
}

.weight-lite {
    font-weight: 300 !important;
}

.weight-normal {
    font-weight: 500 !important;
}

.weight-bold {
    font-weight: 900 !important;
}

.u-sep-dot> :after {
    background-color: #252525;
    border-radius: 50%;
    bottom: 0.1875rem;
    content: "";
    display: none;
    height: 0.3125rem;
    margin-left: 1.25rem;
    margin-right: 0.9375rem;
    position: relative;
    width: 0.3125rem;
}

.u-sep-dot> :last-of-type:after {
    content: none;
}

.u-sep-pipe> :after {
    content: "|";
    display: inline;
    padding: 0 3px;
}

.u-sep-pipe> :last-of-type:after {
    content: none;
}

.u-sep-slash> :after {
    content: "/";
    padding: 0 7px;
}

.u-sep-slash> :last-of-type:after {
    content: none;
}

.u-sep-slash-inline:after {
    content: "/";
    padding: 0 0 0 10px;
}

.u-sep-comma> :after {
    content: ",";
    display: inline;
    padding: 0 4px 0 0;
}

.u-sep-comma> :last-of-type:after {
    content: none;
}

.u-sep-dash> :after {
    content: " - ";
    display: inline;
    padding: 0;
}

.u-sep-dash> :last-of-type:after {
    content: none;
}

.wp-embed {
    break-inside: avoid-column;
    margin: 3rem auto;
    max-width: none;
}

.wp-embed-wrap {
    overflow: hidden;
    position: relative;
}

.wp-embed-wrap:before {
    box-sizing: border-box;
    content: "";
    display: block;
    padding-top: 56.25%;
    position: relative;
}

.wp-embed-wrap embed,
.wp-embed-wrap iframe,
.wp-embed-wrap object {
    box-sizing: border-box;
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.t-content img {
    display: block;
    height: auto;
    line-height: 0;
}

.wp-block-image {
    margin: 0 auto;
    max-width: none;
}

.wp-block-embed figcaption,
.wp-block-image figcaption {
    border-bottom: 1px solid #252525;
    color: #252525;
    font-size: 0.875rem;
    letter-spacing: 0.009375rem;
    line-height: 1.8571428571;
    margin-top: 0.5rem;
    max-width: 100%;
    padding-bottom: 0.5rem;
    text-align: left;
}

figure:not(.alignleft, .alignright) figcaption {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

figure.wp-caption {
    width: 100% !important;
}

.aligncenter,
figure.wp-block-image {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.t-content .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.alignleft,
.alignright {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.post_featured-image {
    margin-bottom: 50px;
}

.post_featured-image .featured_caption {
    font-size: 14px;
    padding: 10px;
}

.a11y-skip-link {
    transition: none;
}

.a11y-skip-link:active,
.a11y-skip-link:focus {
    align-items: center;
    background-color: #021bc3;
    border: 0;
    clip: unset;
    color: #fff;
    display: flex;
    font-size: 1.125rem;
    height: auto;
    justify-content: center;
    left: 0;
    margin: 0.5rem;
    padding: 0.5rem 1.75rem;
    position: absolute;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
    top: 0;
    width: auto;
    z-index: 100;
}

.a11y-hidden {
    display: none !important;
    visibility: hidden;
}

.a11y-visual-hide,
.screen-reader-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.a11y-visual-show {
    clip: auto;
    height: auto;
    margin: 0;
    position: static;
    width: auto;
}

.screen-reader-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.logo__wrap {
    padding: 1rem 0;
}

.logo__wrap.logo__wrap--footer {
    display: block;
    margin-bottom: 1.5rem;
    max-width: 17.5rem;
    width: 100%;
}

header .logo {
    height: 35px;
    width: 149px;
}

.t-content a[class*="button"],
.t-content button[class*="button"] {
    display: inline-block;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.button--blue {
    background: transparent;
    border: 2px solid #021bc3;
    color: #021bc3;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

.button--blue:visited {
    color: #021bc3;
}

.button--blue:focus,
.button--blue:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff !important;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.button--blue:active {
    background: #001e5f;
    border-color: #001e5f;
    color: #fff;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.button--blue:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.button--blue:active:after,
.button--blue:focus:after,
.button--blue:hover:after {
    color: #fff;
}

.button--yellow {
    background: transparent;
    border: 2px solid #ffd82b;
    color: #001e5f;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

.button--yellow:visited {
    color: #001e5f;
}

.button--yellow:focus,
.button--yellow:hover {
    color: #001e5f !important;
}

.button--yellow:active,
.button--yellow:focus,
.button--yellow:hover {
    background: #ffd82b;
    border-color: #ffd82b;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.button--yellow:active {
    color: #252525;
}

.button--yellow:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #001e5f;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.button--yellow:focus:after,
.button--yellow:hover:after {
    color: #001e5f;
}

.button--yellow:active:after {
    color: #252525;
}

.button--black {
    background: transparent;
    border: 2px solid #252525;
    color: #252525;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

.button--black:visited {
    color: #252525;
}

.button--black:focus,
.button--black:hover {
    color: #fff !important;
}

.button--black:active,
.button--black:focus,
.button--black:hover {
    background: #252525;
    border-color: #252525;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.button--black:active {
    color: #fff;
}

.button--black:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #252525;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.button--black:active:after,
.button--black:focus:after,
.button--black:hover:after {
    color: #fff;
}

.button--grey {
    background: transparent;
    border: 2px solid #e8e8e8;
    color: #e8e8e8;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

.button--grey:visited {
    color: #e8e8e8;
}

.button--grey:focus,
.button--grey:hover {
    color: #fff !important;
}

.button--grey:active,
.button--grey:focus,
.button--grey:hover {
    background: #252525;
    border-color: #252525;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.button--grey:active {
    color: #fff;
}

.button--grey:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #e8e8e8;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.button--grey:active:after,
.button--grey:focus:after,
.button--grey:hover:after {
    color: #ffd82b;
}

.button--white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

.button--white:visited {
    color: #fff;
}

.button--white:focus,
.button--white:hover {
    background: #fff;
    border-color: #fff;
    color: #021bc3 !important;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.button--white:active {
    background: #f4f4f4;
    border-color: #f4f4f4;
    color: #021bc3;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.button--white:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.button--white:active:after,
.button--white:focus:after,
.button--white:hover:after {
    color: #021bc3;
}

.ghost-button--blue {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #021bc3;
    color: #021bc3;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.75rem;
    padding: 0.125rem 0 0;
    text-decoration: none;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: auto;
}

.ghost-button--blue:visited {
    color: #021bc3;
}

.ghost-button--blue:focus,
.ghost-button--blue:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff !important;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--blue:active {
    background: #001e5f;
    border-color: #001e5f;
    color: #fff;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--blue:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.ghost-button--blue:active:after,
.ghost-button--blue:focus:after,
.ghost-button--blue:hover:after {
    color: #fff;
    padding-left: 0.75rem;
}

.ghost-button--yellow {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #ffd82b;
    color: #001e5f;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.75rem;
    padding: 0.125rem 0 0;
    text-decoration: none;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: auto;
}

.ghost-button--yellow:visited {
    color: #001e5f;
}

.ghost-button--yellow:focus,
.ghost-button--yellow:hover {
    background: #ffd82b;
    border-color: #ffd82b;
    color: #001e5f !important;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--yellow:active {
    background: #ffd82b;
    border-color: #ffd82b;
    color: #252525;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--yellow:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #001e5f;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.ghost-button--yellow:focus:after,
.ghost-button--yellow:hover:after {
    color: #001e5f;
    padding-left: 0.75rem;
}

.ghost-button--yellow:active:after {
    color: #252525;
    padding-left: 0.75rem;
}

.ghost-button--black {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #252525;
    color: #252525;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.75rem;
    padding: 0.125rem 0 0;
    text-decoration: none;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: auto;
}

.ghost-button--black:visited {
    color: #252525;
}

.ghost-button--black:focus,
.ghost-button--black:hover {
    background: #252525;
    border-color: #252525;
    color: #fff !important;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--black:active {
    background: #252525;
    border-color: #252525;
    color: #fff;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--black:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #252525;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.ghost-button--black:active:after,
.ghost-button--black:focus:after,
.ghost-button--black:hover:after {
    color: #fff;
    padding-left: 0.75rem;
}

.ghost-button--grey {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #e8e8e8;
    color: #e8e8e8;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.75rem;
    padding: 0.125rem 0 0;
    text-decoration: none;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: auto;
}

.ghost-button--grey:visited {
    color: #e8e8e8;
}

.ghost-button--grey:focus,
.ghost-button--grey:hover {
    background: #252525;
    border-color: #252525;
    color: #fff !important;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--grey:active {
    background: #252525;
    border-color: #252525;
    color: #fff;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--grey:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #e8e8e8;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.ghost-button--grey:active:after,
.ghost-button--grey:focus:after,
.ghost-button--grey:hover:after {
    color: #ffd82b;
    padding-left: 0.75rem;
}

.ghost-button--white {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #fff;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.75rem;
    padding: 0.125rem 0 0;
    text-decoration: none;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: auto;
}

.ghost-button--white:visited {
    color: #fff;
}

.ghost-button--white:focus,
.ghost-button--white:hover {
    background: #fff;
    border-color: #fff;
    color: #021bc3 !important;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--white:active {
    background: #f4f4f4;
    border-color: #f4f4f4;
    color: #021bc3;
    padding: 0.125rem 0.5rem 0;
}

.ghost-button--white:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.ghost-button--white:active:after,
.ghost-button--white:focus:after,
.ghost-button--white:hover:after {
    color: #021bc3;
    padding-left: 0.75rem;
}

.search__form {
    position: relative;
}

.search__options-wrap {
    border: 0;
    padding: 0;
    text-align: center;
}

.search__options-wrap .form-control-radio {
    display: inline-block;
    margin-left: 1rem;
    margin-right: 1rem;
    text-align: center;
}

.search__options-wrap .form-control-radio label {
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
}

.search__options-wrap .form-control-radio label:before {
    border-width: 2px;
}

.search__options-wrap .form-control-radio label:after {
    height: 14px;
    left: 5px;
    top: 1px;
    width: 14px;
}

.search__options-wrap .form-control-radio input:focus+label:before {
    box-shadow: none;
}

.search__modal .search__options-wrap .form-control-radio label {
    color: #fff;
}

.search__modal .search__options-wrap .form-control-radio label:before {
    background-color: #252525;
}

.search__modal .search__options-wrap .form-control-radio input:focus+label:before {
    border-color: #fff;
}

.search__modal .search__options-wrap .form-control-radio input:checked+label {
    color: #fff;
}

.search__modal .search__options-wrap .form-control-radio input:checked+label:before {
    background-color: #252525;
    border-color: #fff;
}

.search__label {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.site-footer__search-wrap .search__label {
    color: #fff;
}

.search__input-wrap {
    position: relative;
}

.content-header--search .search__input-wrap,
.search__modal .search__input-wrap {
    align-items: stretch;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
}

#main>header>div>div>div.search__form>form>div.search__input-wrap>button {
    height: calc(100% - 2px) !important;
}

.search-form__query {
    color: #252525;
    font-size: 1rem;
    font-weight: 600;
    padding: 7px 1rem;
}

.search-form__query::placeholder {
    color: #252525;
    font-size: 1.85rem;
    font-weight: 600;
}

.search__modal .search-form__query {
    border-color: #fff !important;
    opacity: 0.8;
}

.search__modal .search-form__query:focus {
    opacity: 1;
}

.search__input {
    border: 1px solid #252525;
    height: 3.5rem;
    margin-bottom: 0;
    padding: 1.25rem 3.5rem 1.25rem 1.25rem;
    width: 100%;
}

.search__input:active::placeholder,
.search__input:focus::placeholder {
    color: #252525;
}

.search__input:active+.search-form__submit .fa,
.search__input:focus+.search-form__submit .fa {
    color: #252525;
}

.search__input:active+.search-form__submit:hover .fa,
.search__input:focus+.search-form__submit:hover .fa {
    color: #fff;
}

.site-footer__search-wrap .search__input {
    background: #252525;
    border-color: #fff;
    color: #fff;
    height: 3rem;
    line-height: 1;
    padding: 1rem 3.5rem 1rem 1.25rem;
    transition: all 0.15s ease-in-out;
}

.site-footer__search-wrap .search__input::placeholder {
    color: #fff;
}

.site-footer__search-wrap .search__input:active,
.site-footer__search-wrap .search__input:focus {
    border-color: #fff !important;
}

.site-footer__search-wrap .search__input:active::placeholder,
.site-footer__search-wrap .search__input:focus::placeholder {
    color: #fff !important;
}

.site-footer__search-wrap .search__input:active+.search-form__submit .fa,
.site-footer__search-wrap .search__input:focus+.search-form__submit .fa {
    color: #fff;
}

.search-form__submit {
    display: block;
    font-size: 1.125rem;
    height: calc(100% - 2px);
    padding: 0 1rem;
    position: absolute;
    right: 1px;
    top: 1px;
    transition: all 0.15s ease-in-out;
    width: 3.375rem;
}

.search-form__submit .fa {
    color: #e8e8e8;
    font-size: 1.5rem;
    transition: all 0.15s ease-in-out;
}

.search-form__submit:focus,
.search-form__submit:hover {
    background: #021bc3;
}

.search-form__submit:focus .fa,
.search-form__submit:hover .fa {
    color: #fff;
}

.search-form__submit .button-text {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.site-footer__search-wrap .search-form__submit .button-text,
.site-footer__search-wrap .search-form__submit .fa,
.site-footer__search-wrap .search-form__submit:focus .fa,
.site-footer__search-wrap .search-form__submit:hover .fa {
    color: #fff;
}

.fourohfour__search .search-form__submit:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
    transition: all 0.15s ease-in-out;
}

.fourohfour__search .search-form__submit:focus:before,
.fourohfour__search .search-form__submit:hover:before {
    color: #fff;
}

.content-header--search .search-form__submit,
.search__modal .search-form__submit {
    background: #252525;
    border: 2px solid #252525;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.375rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    width: auto;
}

.content-header--search .search-form__submit:visited,
.search__modal .search-form__submit:visited {
    color: #021bc3;
}

.content-header--search .search-form__submit:focus,
.content-header--search .search-form__submit:hover,
.search__modal .search-form__submit:focus,
.search__modal .search-form__submit:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff !important;
    padding: 0.5rem 0.8125rem 0.375rem;
}

.content-header--search .search-form__submit:active,
.search__modal .search-form__submit:active {
    background: #001e5f;
    border-color: #001e5f;
    color: #fff;
    padding: 0.5rem 1.3125rem 0.375rem;
}

.content-header--search .search-form__submit:after,
.search__modal .search-form__submit:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #021bc3;
    content: none;
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.content-header--search .search-form__submit:active:after,
.content-header--search .search-form__submit:focus:after,
.content-header--search .search-form__submit:hover:after,
.search__modal .search-form__submit:active:after,
.search__modal .search-form__submit:focus:after,
.search__modal .search-form__submit:hover:after {
    color: #fff;
}

.content-header--search .search-form__submit:before,
.search__modal .search-form__submit:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    margin-right: 0.25rem;
    text-rendering: auto;
    text-transform: none;
}

.content-header--search .search-form__submit span,
.search__modal .search-form__submit span {
    clip: auto;
    height: auto;
    margin: 0;
    position: static;
    width: auto;
}

.search__modal .search-form__submit {
    background: #021bc3;
    border-color: #021bc3;
    flex: 0 0 auto;
    position: relative;
    right: 0;
    top: 0;
}

.search__modal .search-form__submit:focus,
.search__modal .search-form__submit:hover {
    background: #fff;
    border-color: #fff;
    color: #021bc3;
}

body.search .popular {
    display: none;
}

.site-search form {
    margin: 50px auto 10px;
    max-width: 700px;
    position: relative;
    width: 100%;
}

.site-search input,
.site-search input:focus {
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    height: 60px;
    letter-spacing: 0.01563rem;
    margin: 0;
    padding-left: 15px;
    width: 80%;
}

.site-search .popular {
    display: block;
    margin: 35px auto 0;
    max-width: 650px;
    position: relative;
    width: 90%;
}

input[type="submit"].site-search--submit {
    background: #021bc3;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 700;
    height: 100%;
    letter-spacing: 0.01563rem;
    margin: 0;
    padding: 0 15px 0 25px;
    position: absolute;
    right: 0;
    text-indent: 0;
    text-transform: uppercase;
    top: 0;
    width: auto;
}

input[type="submit"].site-search--submit div {
    color: #fff;
    display: inline-block;
    opacity: 1;
    position: relative;
    text-transform: uppercase;
    top: -3px;
}

.popular {
    display: flex;
    flex-direction: column;
    margin: 35px auto 0;
    max-width: 650px;
    position: relative;
    width: 90%;
}

.popular .inner-pop {
    display: block;
    margin: 0 auto;
    width: 90%;
}

.popular .inner-pop:nth-of-type(2) .title {
    margin-top: 30px;
}

.popular .title {
    color: #fff;
    font-family: inter-variable, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.popular ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.popular ul li {
    display: inline-block;
    margin: 0 15px 0 0;
}

.popular ul li a {
    color: #fff;
    font-family: inter-variable, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    opacity: 0.75;
    text-decoration: underline;
    transition: 0.3s;
}

.popular ul li a:hover {
    opacity: 1;
}

.primary-category {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    text-transform: uppercase;
}

.loop-item .primary-category {
    color: #001e5f;
}

.single .content-header .primary-category {
    background-color: #001e5f;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1.2px;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    padding: 0.25rem 0.5rem;
}

.skip-link-top {
    background-color: #fff;
    border: 1px solid #021bc3;
    border-radius: 50%;
    bottom: 2rem;
    color: #021bc3;
    font-size: 1rem;
    height: 2.625rem;
    line-height: 2.625rem;
    opacity: 0;
    position: fixed;
    right: 1.875rem;
    text-align: center;
    visibility: hidden;
    width: 2.625rem;
    z-index: 3;
}

.skip-link-top.skip-link-top--is-active {
    opacity: 1;
    visibility: visible;
}

.skip-link-top:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    text-rendering: auto;
    text-transform: none;
}

.skip-link-top:focus,
.skip-link-top:hover {
    background-color: #021bc3;
    border-color: #fff;
    color: #fff;
}

.r_posts {
    background: #f4f4f4;
}

.related-posts {
    margin-left: auto;
    margin-right: auto;
    max-width: 64em;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
}

.related-posts .loop--posts,
.related-posts .related-cards {
    display: flex;
    flex-direction: column;
}

.related-posts .related-cards {
    border-bottom: 1px solid #e8e8e8;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    width: 100%;
}

.related-posts .related-cards:last-of-type {
    border-bottom: none;
}

.related-posts .related-cards .loop-item__image {
    flex-grow: 1;
    margin-bottom: 10px;
    order: 1;
    width: auto;
}

.related-posts .related-cards .loop-item__image:before {
    display: none;
}

.related-posts .related-cards .loop-item__image img {
    aspect-ratio: 3/2;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.show_image .related-posts .related-cards .loop-item__image {
    display: block;
}

.related-posts .related-cards .loop-item__content {
    display: flex;
    flex-direction: column;
    order: 2;
}

.related-posts .related-cards .loop-item__title {
    color: #252525;
    font-size: 1.25rem;
    line-height: 24px;
}

.related-posts .related-cards .loop-item__title:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #001e5f;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 14px;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 5px;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.related-posts .related-cards .loop-item__title:hover {
    color: #021bc3;
}

.related-posts__title.ez-toc-title,
.related-posts__title.h3 {
    color: #001e5f;
    font-size: 1.125rem;
    letter-spacing: 0.04em;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.related_cta {
    display: inline-block;
    margin-top: 1rem;
}

.module--type-query_text .localist-widget {
    margin-top: -1.5rem;
}

.localist-widget ul {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.localist-widget .lwe {
    border-bottom: 1px solid #252525;
    list-style: none;
    padding: 1.5rem 0;
}

.localist-widget .lwn a {
    box-shadow: none;
    color: #252525;
}

.localist-widget .lwn a:focus,
.localist-widget .lwn a:hover {
    box-shadow: none;
    color: #021bc3;
    text-decoration: underline;
}

.localist-widget .lwn0 {
    color: #001e5f;
    display: block;
}

.localist-widget .lwl a,
.localist-widget .lwn0 {
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    text-transform: uppercase;
}

.localist-widget .lwl a {
    box-shadow: none;
}

.localist-widget .lwl a:focus,
.localist-widget .lwl a:hover {
    box-shadow: none;
    color: #021bc3;
    text-decoration: underline;
}

.localist-widget .lwl0 {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.error404 .content-header .header__wrap {
    padding: 0 0 2rem;
    position: relative;
}

.error404 .content-header .header__wrap:before {
    background-color: #f4f4f4;
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
}

.fourohfour__search {
    margin-top: 3rem;
}

.authorPage .meta-content_wrapper {
    background-color: #f4f4f4;
}

.authorPage .meta-content_wrapper .meta-content {
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
    position: relative;
    width: 100%;
}

.authorPage .meta-content_wrapper .meta-content .author-name h2 {
    color: #001e5f;
    font-family: inter-variable, sans-serif;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.authorPage .meta-content_wrapper .meta-content .author-title p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    padding-right: 9rem;
}

.authorPage .meta-content_wrapper .meta-content .author-email {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.authorPage .meta-content_wrapper .meta-content .author-email:hover {
    box-shadow: 0 1px #252525;
}

.authorPage .meta-content_wrapper .meta-content .author-email p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
}

.authorPage .meta-content_wrapper .meta-content .author-email p:before {
    color: #252525;
    content: "";
    font-family: Font Awesome\6 Pro;
    height: 13px;
    padding-right: 0.5rem;
    width: 18px;
}

.authorPage .meta-content_wrapper .author-pic {
    position: absolute;
    right: 0;
    top: 20px;
}

.authorPage .meta-content_wrapper .author-pic img {
    border-radius: 100px;
    height: 150px;
    width: 150px;
}

.authorPage .author-bio {
    padding-bottom: 30px;
    padding-right: 28vw;
    padding-top: 1.25rem;
}

.authorPage .recent-posts-title {
    display: flex;
    padding-top: 50px;
}

.authorPage .recent-posts-title p {
    font-family: inter-variable, sans-serif;
    font-size: 1.625rem;
    font-weight: 400;
    letter-spacing: 1px;
    padding: 0 1% 30px;
    white-space: nowrap;
}

.authorPage .recent-posts-title:after,
.authorPage .recent-posts-title:before {
    border-bottom: 1px dashed #252525;
    content: "";
    margin-bottom: 50px;
    width: 41.5%;
}

.content-wrap .loop-item:first-of-type {
    border-top: none;
}

@keyframes siteNavMobileIn {
    0% {
        height: 0;
        visibility: hidden;
    }

    1% {
        height: auto;
        visibility: visible;
    }
}

#wpadminbar {
    position: fixed !important;
}

@keyframes siteNavMobileOut {
    0% {
        height: auto;
        visibility: visible;
    }

    99% {
        height: auto;
        visibility: visible;
    }

    to {
        height: 0;
        visibility: hidden;
    }
}

.masthead-top-row {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 10;
}

.masthead-top-row .masthead-right {
    align-items: center;
    display: none;
}

.masthead-top-row .masthead-right .top-nav ul {
    display: flex;
    gap: 1.5rem;
    list-style-type: none;
    margin-left: 0;
}

.masthead-top-row .masthead-right .top-nav ul li:focus a,
.masthead-top-row .masthead-right .top-nav ul li:hover a {
    border-bottom: 2px solid #021bc3;
    color: #021bc3;
    transition: none;
}

.masthead-top-row .masthead-right .top-nav ul li a {
    color: #001e5f;
    font-size: 1rem;
    font-weight: 700;
    line-height: normal;
}

.masthead-top-row .masthead-right .masthead-search {
    margin-left: 2rem;
}

.masthead-top-row .masthead-right .masthead-search .search-form {
    background: #e8e8e8;
    border-bottom: 2px solid #001e5f;
    padding: 0.5rem 0.625rem;
}

.masthead-top-row .masthead-right .masthead-search .search-form input {
    background: #e8e8e8;
}

.masthead-top-row .masthead-right .masthead-search .search-form input::placeholder {
    color: #707070;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
}

.masthead__title-row {
    background-color: #001e5f;
    padding: 1.25rem 0;
    position: relative;
    z-index: 10;
}

.masthead__title-row .grid-container {
    align-items: center;
    display: flex;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
}

.masthead-title {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.masthead-title .business-line {
    color: #fff;
    font-size: 0.75rem;
    letter-spacing: 0.84px;
    text-transform: uppercase;
    transition: none;
}

.masthead-title .business-line:focus,
.masthead-title .business-line:hover {
    box-shadow: 0 2px 0 #fff;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.masthead-title .business-line:after {
    content: "/" /"";
}

.masthead-title .title {
    color: #fff;
    display: block;
    font-size: 1.25rem;
    letter-spacing: 0;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.masthead-title .title:focus,
.masthead-title .title:hover {
    box-shadow: 0 2px 0 #fff;
}

.masthead-title .title a span {
    display: inline-block;
    position: relative;
}

.masthead-title .title a span:before {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: left top;
    transition: transform 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.masthead-title .title a:focus span:before,
.masthead-title .title a:hover span:before {
    transform: scaleX(1);
}

.masthead__secondary {
    background-color: #001e5f;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
}

.masthead__trigger-wrap {
    display: none;
}

.masthead__trigger {
    float: right;
    margin-left: 0.5rem;
    margin-top: 0.5rem;
    padding: 0;
    position: relative;
    text-align: center;
    transition: all 0.15s ease-in-out;
    width: auto;
}

.masthead__trigger .fa {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
}

.masthead__trigger .fa,
.masthead__trigger span:not(.fa) {
    color: #fff;
    position: relative;
    transition: all 0.15s ease-in-out;
}

.masthead__trigger span:not(.fa) {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.0375rem;
}

.masthead__trigger--search {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.42px;
    line-height: normal;
    text-transform: uppercase;
}

.masthead__trigger--search .fa,
.masthead__trigger--search span {
    color: #fff;
}

.masthead__trigger--search:focus .fa,
.masthead__trigger--search:hover .fa {
    color: #021bc3;
}

.masthead__trigger--search:focus:after,
.masthead__trigger--search:hover:after {
    transform: scale(1);
}

.masthead--search-is-active .masthead__trigger--search.masthead__trigger--search-top {
    opacity: 0;
}

.masthead--search-is-active .masthead__trigger--search .fa:before {
    content: "";
}

.masthead--search-is-active .masthead__trigger--search .fa {
    color: #021bc3;
    position: relative;
    width: 16px;
}

.masthead--search-is-active .masthead__trigger--search:after {
    transform: scale(1);
}

body.search-results .masthead__trigger--search {
    display: none;
}

.masthead__trigger--site-nav {
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 12px;
    font-weight: 700;
}

.masthead__nav--is-active .masthead__trigger--site-nav .fa:before {
    content: "";
}

.masthead__nav--is-active .masthead__trigger--site-nav .fa:after {
    border: 2px solid #fff;
    border-radius: 50%;
    content: "";
    height: 24px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
}

.single .content-header {
    position: relative;
}

.header__inner {
    margin-bottom: 1.5rem;
    margin-top: 3rem;
}

.page .header__inner {
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
}

.page-title {
    margin-bottom: 1rem;
    margin-top: 3rem;
}

.single .page-title {
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.page-title small {
    color: #252525;
    display: block;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    text-transform: uppercase;
}

.header__subtitle,
.header__subtitle p {
    color: #252525;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: 0.009375rem;
    line-height: 1.5;
}

.page-template-landing .content-header {
    margin-bottom: 50px;
}

header.content-header {
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    width: 100%;
}

header.content-header.content-header--search .header-wrap {
    margin: 0 auto;
}

header.content-header .header-wrap {
    margin-top: -3rem;
    padding: 0 1rem;
    width: 100%;
    z-index: 1;
}

header.content-header .header-wrap .header-content {
    background: #001e5f;
    color: #fff;
    padding: 1.25rem;
}

header.content-header .header-wrap .header-content h1 {
    font-weight: 700;
    line-height: 1.2;
}

header.content-header .header-wrap .header-content .header-leadin {
    color: #f4f4f4;
    font-weight: 600;
    text-transform: uppercase;
}

header.content-header .header-wrap .header-content .header-subtitle p {
    color: #fff;
    font-weight: 400;
    line-height: 1.5;
}

header.content-header .header-wrap .header-content .header-subtitle:before {
    background-color: #ffd82b;
    content: "";
    display: block;
    height: 0.5rem;
    margin: 0.6rem 0;
    width: 5rem;
}

header.content-header .header-wrap .header-content .header-cta {
    margin-top: 0.6rem;
}

header.content-header .header-media {
    display: flex;
    position: relative;
}

header.content-header .header-media .video-wrapper {
    display: flex;
    flex-grow: 1;
    width: 100%;
}

header.content-header .header-media img,
header.content-header .header-media video {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

header.content-header.no_image {
    background-color: #f4f4f4;
    margin: 0 auto;
    position: relative;
}

header.content-header.no_image:before {
    background-color: #f4f4f4;
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
}

header.content-header.no_image .header-wrap {
    margin: 0 auto;
    padding: 2rem 0;
}

header.content-header.no_image .header-wrap .header-content {
    background: #f4f4f4;
    color: #252525;
    padding: 0;
}

header.content-header.no_image .header-wrap .header-content h1 {
    font-weight: 700;
}

header.content-header.no_image .header-wrap .header-content p {
    color: #252525;
}

header.content-header.no_image .header-wrap .header-content .header-cta {
    margin-top: 1rem;
}

header.content-header.full_image {
    background-color: #f4f4f4;
    max-width: 98rem;
    padding: 0;
}

header.content-header.full_image .header-wrap {
    margin: 0 auto;
    position: relative;
    width: 100%;
    z-index: 1;
}

header.content-header.full_image .header-wrap:before {
    background-color: #001e5f;
    background-size: cover;
    content: "";
    display: block;
    height: 100%;
    left: -50vw;
    position: absolute;
    width: 150vw;
}

header.content-header.full_image .header-wrap .header-content {
    background: #001e5f;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin: 0 auto;
    max-width: 1000px;
    position: relative;
}

header.content-header.full_image .header-wrap .header-content:before {
    background: url(../images/up-arrow.svg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 278.75px;
    left: 50%;
    position: absolute;
    top: -44px;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}

header.content-header.full_image .header-wrap .header-content h1 {
    position: relative;
    text-align: center;
    z-index: 2;
}

header.content-header.full_image .header-wrap .header-content .header-leadin {
    color: #fff;
    font-weight: 600;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    z-index: 2;
}

header.content-header.full_image .header-wrap .header-content .header-subtitle {
    position: relative;
    z-index: 2;
}

header.content-header.full_image .header-wrap .header-content .header-subtitle:before {
    display: none;
}

header.content-header.full_image .header-wrap .header-content .header-subtitle p {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
}

header.content-header.full_image .header-wrap .header-content .header-cta {
    position: relative;
    text-align: center;
    z-index: 2;
}

header.content-header.full_image .header-media:before {
    background-color: #f4f4f4;
    background-repeat: repeat;
    background-size: contain;
    content: "";
    display: block;
    position: absolute;
    width: 100vw;
}

header.content-header.full_image.pattern {
    position: relative;
}

header.content-header.full_image.pattern:before {
    background-repeat: repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 260px;
    position: relative;
    width: 100vw;
}

header.content-header.full_image.pattern.connections:before,
header.content-header.full_image.pattern:before {
    background-image: url(../images/connections.svg);
}

header.content-header.full_image.pattern.colorful:before {
    background-image: url(../images/colorful.svg);
}

header.content-header.full_image.pattern.simple:before {
    background-image: url(../images/simple.svg);
}

header.content-header.right_image {
    background: unset;
}

header.content-header.right_image:before {
    background: #f4f4f4;
    background-repeat: repeat;
    background-size: contain;
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100vw;
}

header.content-header.right_image.pattern:before {
    background: #f4f4f4;
}

header.content-header.right_image.pattern .header-media {
    display: block;
    height: 100%;
    min-height: 450px;
    width: 100%;
}

header.content-header.right_image.pattern .header-media .header-pattern {
    background-repeat: repeat;
    background-size: auto;
    height: 100%;
    width: 100vw;
}

header.content-header.right_image.pattern.simple .header-media .header-pattern {
    background-image: url(../images/simple.svg);
}

header.content-header.right_image.pattern.colorful .header-media .header-pattern {
    background-image: url(../images/colorful.svg);
}

header.content-header.right_image.pattern.connections .header-media .header-pattern {
    background-image: url(../images/connections.svg);
}

header.content-header.right_image svg {
    height: 100%;
    width: 100%;
}

header.content-header.right_image.grid-container {
    position: relative;
}

header.content-header.right_image.grid-container.images:before {
    background-color: #f4f4f4;
    content: "";
    height: 100%;
    left: 50%;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    width: 100vw;
    z-index: -1;
}

header.content-header.right_image .header-wrap .header-leadin {
    text-transform: uppercase;
}

header.content-header.video #play-pause {
    bottom: 1rem;
    cursor: pointer;
    height: 2rem;
    opacity: 1;
    position: absolute;
    right: 1rem;
    transition: opacity 0.3s;
    width: 2rem;
    z-index: 100;
}

header.content-header.video #play-pause span {
    align-items: center;
    background: #fff;
    border: 1px solid #021bc3;
    border-radius: 50%;
    color: #021bc3;
    display: flex;
    font-size: 1rem;
    height: 2rem;
    justify-content: center;
    transition: background 0.3s, color 0.3s;
    width: 2rem;
}

header.content-header.video #play-pause .fa-play {
    display: none;
}

header.content-header.video #play-pause .fa-pause,
header.content-header.video #play-pause.paused .fa-play {
    display: flex;
}

header.content-header.video #play-pause.paused .fa-pause {
    display: none;
}

header.content-header.video #play-pause:hover {
    opacity: 1;
}

header.content-header.video #play-pause:hover span {
    background: #021bc3;
    color: #fff;
}

.category header.content-header,
.single header.content-header,
.tag header.content-header {
    background: #fff;
}

.category header.content-header .header-wrap,
.single header.content-header .header-wrap,
.tag header.content-header .header-wrap {
    margin-top: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    width: 100%;
    z-index: 1;
}

.category header.content-header .header__inner,
.single header.content-header .header__inner,
.tag header.content-header .header__inner {
    margin-bottom: 0;
}

.single header.content-header .header-wrap .header__inner {
    margin: 2rem auto 1rem;
}

.category header.content-header,
.tag header.content-header {
    background-color: #f4f4f4;
}

.category header.content-header .header__inner,
.tag header.content-header .header__inner {
    margin: 1.5rem auto;
}

.category header.content-header .header__inner .page-title,
.tag header.content-header .header__inner .page-title {
    margin: 0 auto;
}

.one-page_breadcrumbs {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

.breadcrumb {
    color: #252525;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.046875rem;
    line-height: 1.3;
    margin: 2.5rem 0;
    text-transform: uppercase;
}

.breadcrumb .fa {
    display: inherit;
    font-size: 0.5rem;
}

.breadcrumb a {
    border-bottom: 1px solid transparent;
    display: block;
}

.breadcrumb a:not([aria-current]) {
    border-bottom-color: #021bc3;
    color: #252525;
}

.breadcrumb a:focus,
.breadcrumb a:hover {
    color: #021bc3;
}

.breadcrumb li {
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.breadcrumb li:before {
    content: "/" /"";
}

.breadcrumb li:first-child:before {
    display: none;
}

.breadcrumb ul {
    align-items: flex-start;
    display: flex;
    flex-wrap: wrap;
    font-size: inherit;
    gap: 0.5rem;
    line-height: inherit;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb-grid {
    padding-left: 2.3rem;
    padding-right: 2.3rem;
}

.breadcrumb-grid .breadcrumb {
    margin-bottom: 0;
}

.single__post-meta {
    color: #252525;
    display: flex;
    flex-direction: column;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
}

.single__post-meta .author {
    display: flex;
    flex-flow: column wrap;
}

.single__post-meta .author a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.single__post-meta .author .profile {
    font-size: 1rem;
}

.single__post-meta .author .profile a {
    color: #021bc3;
}

.single__post-meta .author .separator {
    margin: 0 0.5rem;
}

.single__post-meta img {
    border-radius: 50%;
    display: inline;
    height: 25px;
    margin-right: 3px;
    object-fit: cover;
    width: 25px;
}

.single__post-meta .date {
    color: #252525;
    font-weight: 600;
}

.single__post-meta .meta-box {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    margin-top: 0.5rem;
}

.single__post-meta .meta-box .date {
    margin-right: 1rem;
}

.single__post-meta .sticky-header__list {
    align-items: center;
    display: flex;
    flex-direction: row;
}

.single__post-meta .sticky-header__list .sticky-header__list-link {
    align-items: center;
    box-shadow: none;
    color: #252525;
    display: flex;
    font-size: 0.75rem;
    font-weight: 400;
}

.single__post-meta .sticky-header__list .sticky-header__list-link .fa-brands,
.single__post-meta .sticky-header__list .sticky-header__list-link .fa-fab {
    color: #021bc3;
    font-size: 1.25rem;
    line-height: 1.875;
    margin-right: 5px;
}

.single__post-meta .sticky-header__list .sticky-header__list-link:focus {
    box-shadow: none;
    color: #001e5f;
}

.single__post-meta .sticky-header__list .sticky-header__list-link:hover {
    box-shadow: none;
    color: #252525;
}

.single__post-meta .sticky-header__list .sticky-header__list-link:hover .fa-brands,
.single__post-meta .sticky-header__list .sticky-header__list-link:hover .fa-fab {
    box-shadow: none;
    color: #001e5f;
}

.sticky-header__list-single .single__post-meta .sticky-header__list .sticky-header__list-link {
    box-shadow: none;
    text-decoration: none;
}

.single__post-meta .sticky-header__list .sticky-header__list-link .fa {
    font-size: 1.25rem;
}

.post-meta__list-item {
    color: #252525;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.6;
    text-transform: uppercase;
}

.sitewide-text-desktop {
    display: none;
}

.sitewide-text-mobile {
    display: block;
    position: relative;
    top: 15px;
}

.sitewide-text {
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
    background-color: #fff;
    border-bottom: 4px solid #021bc3;
    display: block !important;
    left: 50%;
    padding: 0.5rem 1rem;
    position: absolute;
    top: 100% !important;
    transform: translateX(-50%);
    width: 95%;
}

.sitewide-text .accordion-item .accordion-header {
    align-items: flex-start;
    border: 0;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    position: relative;
    width: 100%;
}

.sitewide-text .accordion-item .accordion-header[aria-expanded="true"] p {
    white-space: wrap;
}

.sitewide-text .accordion-item .accordion-header[aria-expanded="true"]:focus .accordion-button:after,
.sitewide-text .accordion-item .accordion-header[aria-expanded="true"]:hover .accordion-button:after {
    outline: 5px auto -webkit-focus-ring-color;
}

.sitewide-text .accordion-item .accordion-header[aria-expanded="true"]:after {
    content: "\f307" /"";
    transform: scaleY(-1);
}

.sitewide-text .accordion-item .accordion-header .accordion-button {
    background: none;
    border: none;
    color: #252525;
    cursor: pointer;
    font-style: normal;
    font-weight: 700;
    padding: 0;
    text-align: left;
    width: 100%;
}

.sitewide-text .accordion-item .accordion-header * {
    color: #252525;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sitewide-text .accordion-item .accordion-header:after,
.sitewide-text .accordion-item .accordion-header:before {
    background-image: none;
    color: #252525;
    font-family: Font Awesome\6 Pro;
    font-size: 1.125rem;
    font-weight: 900;
    height: auto;
    margin-top: 0.25rem;
    padding: 0 0.25rem;
    width: auto;
}

.sitewide-text .accordion-item .accordion-header:before {
    content: "\f30f" /"";
}

.sitewide-text .accordion-item .accordion-header:after {
    content: "\f300" /"";
    margin-left: auto;
    transition: var(--bs-accordion-btn-icon-transition);
}

.sitewide-text .accordion-item .accordion-collapse .accordion-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    margin-left: 45px;
    margin-top: 0.5rem;
}

.sitewide-text .accordion-item .accordion-collapse .accordion-body .alert-meta {
    color: #252525;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.44px;
    line-height: normal;
    text-transform: uppercase;
}

.sitewide-text .accordion-item .accordion-collapse .accordion-body p {
    margin-bottom: 0;
}

.sitewide-text .accordion-item .accordion-collapse .accordion-body .alert-cta {
    display: block;
    margin: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.sitewide-text.emergency {
    background-color: #ab1b13;
    border-color: #ab1b13;
}

.sitewide-text.emergency .accordion-header * {
    color: #fff;
}

.sitewide-text.emergency .accordion-header:before {
    content: "\f06a" /"";
}

.sitewide-text.emergency .accordion-header:after,
.sitewide-text.emergency .accordion-header:before {
    color: #e8e8e8;
}

.sitewide-text.emergency .accordion-collapse .accordion-body .alert-meta {
    color: hsla(0, 0%, 100%, 0.7);
}

.sitewide-text.emergency .accordion-collapse .accordion-body p {
    color: #fff;
}

.sitewide-text.warning {
    border-color: #ffd82b;
}

.sitewide-text.warning .accordion-header:before {
    content: "\f071" /"";
}

.sticky-header {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
    height: 5rem;
    left: 0;
    opacity: 0;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
    position: fixed;
    top: 0;
    transition: all 0.3s ease-in-out 0.1s;
    visibility: hidden;
    width: 100%;
    z-index: 1;
}

.sticky-header .grid-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: flex-start;
}

.sticky-header.is-stuck {
    opacity: 1;
    transition: all 0.3s ease;
    visibility: visible;
    z-index: 99;
}

.sticky-header__title {
    font-weight: 700;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sticky-header__title .back-to-top {
    box-shadow: 0 1px 0 0 transparent;
    color: #252525;
    margin-right: 0.5rem;
}

.sticky-header__title .back-to-top .fa {
    border: 1px solid #e8e8e8;
    border-radius: 100%;
    color: #e8e8e8;
    font-size: 0.8125rem;
    height: 1.25rem;
    margin-bottom: 0.1875rem;
    padding-top: 0.1875rem;
    text-align: center;
    vertical-align: middle;
    width: 1.25rem;
}

.sticky-header__title .back-to-top:active .fa,
.sticky-header__title .back-to-top:hover .fa {
    border-color: #252525;
    color: #252525;
}

.sticky-header__title .back-to-top:focus {
    box-shadow: 0 1px 0 0 #252525;
}

.sticky-header__title .back-to-top:focus .fa {
    border-color: #252525;
    color: #252525;
}

.sticky-header__list {
    align-items: center;
    display: flex;
    flex: 0 0 auto;
}

.sticky-header__list-item {
    margin-right: 0.75rem;
}

.sticky-header__list-item:last-of-type {
    margin-right: 0;
}

.list--inline.list-bullet .sticky-header__list-item {
    display: inline-block;
}

.sticky-header__list-item p {
    color: #252525;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 0;
}

.sticky-header__list-single .sticky-header__list-item {
    margin-right: 0.75rem;
}

.sticky-header__list-link {
    box-shadow: none;
    color: #021bc3;
    font-size: 1.25rem;
    line-height: 1.875;
}

.sticky-header__list-link:focus {
    color: #001e5f;
}

.sticky-header__list-link:hover {
    box-shadow: none;
    color: #252525;
}

.sticky-header__list-link:hover .fa-brands,
.sticky-header__list-link:hover .fa-fab {
    box-shadow: none;
    color: #001e5f;
}

.sticky-header__list-single .sticky-header__list-link {
    align-items: center;
    box-shadow: none;
    color: #252525;
    display: flex;
    font-size: 12px;
    font-weight: 400;
    text-decoration: none;
}

.sticky-header__list-link .fa-brands,
.sticky-header__list-link .fa-fab {
    color: #021bc3;
    font-size: 1.25rem;
    line-height: 1.875;
    margin-right: 5px;
}

.sticky-header__link-title {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.progress {
    background: #021bc3;
    background-repeat: no-repeat;
    bottom: -1px;
    height: 0.5rem;
    position: absolute;
    width: 0;
    z-index: 1;
}

.content-header--search {
    background-color: #f4f4f4;
    margin-bottom: 3rem;
    padding: 3rem 0;
}

.search__modal-wrapper {
    flex-direction: column;
    height: 100%;
    max-width: none;
    overflow: auto;
}

.search__modal,
.search__modal-wrapper {
    align-items: center;
    display: flex;
    width: 100%;
}

.search__modal {
    color: #fff;
    flex: 1;
    flex-direction: column;
    margin: 0;
    max-width: 650px;
    padding-bottom: 3rem;
    padding-top: 2rem;
}

.search__modal .search__form {
    flex: 1;
    width: 100%;
}

.search__modal form.search-form {
    margin: 3rem auto 2.5rem;
}

.search__modal form.search-form input.search-form__query {
    appearance: none;
    background-color: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    height: 60px;
    letter-spacing: 0.01563rem;
    margin: 0;
    padding-left: 15px;
}

.search__modal form.search-form input.search-form__query[type="search"]::-webkit-search-cancel-button,
.search__modal form.search-form input.search-form__query[type="search"]::-webkit-search-decoration {
    appearance: none;
}

.search__modal form.search-form button.search-form__submit {
    background: #021bc3;
    border: none;
    border-radius: 0;
    box-shadow: none;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.01563rem;
    margin: 0;
    padding: 0 15px 0 45px;
    text-indent: 0;
    text-transform: uppercase;
    width: auto;
}

.search__modal form.search-form button.search-form__submit:before {
    color: #fff;
    content: "";
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    font-size: 1.15rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    opacity: 1;
    position: absolute;
    right: 15px;
    text-indent: 0;
    text-rendering: auto;
    text-transform: none;
    top: 21px;
}

.search__modal form.search-form button.search-form__submit span {
    display: none;
}

.search__modal form.search-form button.search-form__submit:focus,
.search__modal form.search-form button.search-form__submit:hover {
    background-color: #001e5f;
}

.header-search {
    border-bottom: 2px solid #001e5f;
}

.header-search:hover {
    border-bottom: 2px solid #021bc3;
}

.header-search-form .search__input-wrap {
    display: flex;
    width: 175px;
}

.header-search-form input {
    background: #f4f4f4;
    color: #252525;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 8px 0 8px 10px;
}

.header-search-form input:focus {
    border: 2px solid #021bc3;
}

.header-search-form input::-webkit-search-cancel-button {
    display: none;
}

.header-search-form input::placeholder {
    color: #252525;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.header-search-form button {
    background: #f4f4f4;
    color: #252525;
    padding-left: 8px;
    padding-right: 10px;
}

.header-search-form button .button-text {
    border: 0;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.masthead--search-is-active {
    overflow: hidden;
    position: relative;
}

.module--type-search {
    background-color: #f4f4f4;
    padding-bottom: 0;
    padding-top: 0;
}

.module--type-search.navy {
    background-color: #001e5f;
}

.module--type-search.navy .search-module__content h2 {
    color: #fff;
}

.module--type-search.white {
    background-color: #fff;
}

.module--type-search.yellow {
    background-color: #ffd82b;
}

.module--type-search.grey {
    background-color: #f4f4f4;
}

.module--type-search.charcoal .search-module__content h2 {
    color: #fff;
}

.landing-search {
    padding: 4rem 0;
}

.btn_blue .landing-search form.search-form .search-form__submit {
    background: #021bc3;
}

.btn_blue .landing-search form.search-form .search-form__submit span,
.btn_blue .landing-search form.search-form .search-form__submit:before {
    color: #fff;
}

.btn_white .landing-search form.search-form .search-form__submit {
    background: #fff;
}

.btn_white .landing-search form.search-form .search-form__submit span,
.btn_white .landing-search form.search-form .search-form__submit:before {
    color: #021bc3;
}

.btn_yellow .landing-search form.search-form .search-form__submit {
    background: #ffd82b;
}

.btn_yellow .landing-search form.search-form .search-form__submit span,
.btn_yellow .landing-search form.search-form .search-form__submit:before {
    color: #252525;
}

.btn_grey .landing-search form.search-form .search-form__submit {
    background: #f4f4f4;
}

.btn_grey .landing-search form.search-form .search-form__submit span,
.btn_grey .landing-search form.search-form .search-form__submit:before {
    color: #252525;
}

.btn_charcoal .landing-search form.search-form .search-form__submit {
    background: #252525;
}

.btn_charcoal .landing-search form.search-form .search-form__submit span,
.btn_charcoal .landing-search form.search-form .search-form__submit:before {
    color: #fff;
}

.landing-search .search-module__inner {
    margin: 0 auto;
    width: 90%;
}

.landing-search form.search-form {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

.landing-search form.search-form .search-form__submit {
    background: #021bc3;
    width: auto;
}

.landing-search form.search-form .search-form__submit:before {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    margin-right: 0.25rem;
    text-rendering: auto;
    text-transform: none;
}

.landing-search form.search-form .search-form__submit span {
    color: #fff;
    font-weight: 700;
}

.search-loop .loop-item__inner {
    align-items: flex-start;
    flex-flow: column;
}

.search_more {
    font-size: 1.125rem;
    text-align: center;
}

.search_more a {
    border-bottom: 1px solid #021bc3;
    color: #252525;
    font-weight: 900;
}

.search_more a:hover {
    color: #021bc3;
}

.dynamic_content {
    margin: 35px 0;
}

.dynamic_content .localist-widget .lwn a,
.dynamic_content h1,
.dynamic_content h2,
.dynamic_content h3,
.dynamic_content h4,
.dynamic_content h5,
.dynamic_content ol,
.dynamic_content p,
.dynamic_content ul,
.localist-widget .lwn .dynamic_content a {
    color: #fff;
}

.dynamic_content .widgettitle {
    color: #fff;
    font-family: inter-variable, sans-serif;
    font-size: 1.45rem;
    font-weight: 900;
    margin-bottom: 5px;
}

.dynamic_content .menu-menu-example-container,
.dynamic_content .textwidget {
    margin-bottom: 30px;
}

.dynamic_content .menu {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.dynamic_content .menu li {
    display: inline-block;
    margin: 0 15px 0 0;
}

.dynamic_content .menu li a {
    color: #fff;
    font-family: inter-variable, sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    opacity: 0.75;
    text-decoration: underline;
    transition: 0.3s;
}

.dynamic_content .menu li a:hover {
    opacity: 1;
}

.dynamic_content .menu li .sub-menu {
    display: none;
}

.site-footer {
    background-color: #252525;
    color: #fff;
    margin-top: auto;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
    position: relative;
}

.site-footer .footer-quickLinks {
    align-items: center;
    display: flex;
    font-size: 1.125rem;
    font-weight: 700;
    gap: 1.25rem;
    justify-content: center;
    list-style: none;
}

.site-footer .footer-quickLinks li a {
    transition: 0.3s;
}

.site-footer .footer-quickLinks li a:hover {
    border-bottom: 1px solid #fff;
}

.site-footer .quickLinks-title {
    display: flex;
    font-size: 2.25rem;
    font-weight: 700;
    justify-content: center;
    line-height: 2.375rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
    text-align: center;
}

.site-footer .footer-component {
    position: relative;
    z-index: 2;
}

.site-footer .footer-component .footer-component-inner {
    display: flex;
    flex-direction: column;
    position: relative;
}

.site-footer .footer-component .footer-component-inner ul {
    align-items: center;
    display: flex;
    flex-flow: column wrap;
    list-style-type: none;
    margin-left: 0;
    padding-left: 0;
}

.site-footer .footer-component .footer-component-inner .footer-component-top {
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    border-top: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 2.5rem 0;
    width: 100%;
}

.site-footer .footer-component .footer-component-inner .footer-component-top .site-info .site-info-contact {
    display: flex;
    gap: 1rem;
    padding-top: 0.5rem;
}

.site-footer .footer-component .footer-component-inner .footer-component-top .site-info .site-info-contact .fa-solid {
    padding-right: 0.5rem;
}

.site-footer .footer-component .footer-component-inner .footer-component-top .site-info .site-info-contact span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
}

.site-footer .footer-component .footer-component-inner .footer-component-top .site-info .site-info-contact span a:hover {
    border-bottom: 1px solid #fff;
}

.site-footer .footer-component .footer-component-inner .footer-component-top .site-info .site-info-contact span .fa-solid {
    color: #fff;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-title,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-title {
    display: flex;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-social,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-social {
    flex-direction: row;
    justify-content: space-evenly;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li {
    margin-left: 1rem;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li:first-of-type,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li:first-of-type {
    margin-left: 0;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li a,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li a {
    align-items: center;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    font-weight: 600;
    justify-content: center;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li a p,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li a p {
    color: #fff;
    font-size: 0.75rem;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li a:hover,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li a:hover {
    color: #fff;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li a:hover p,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li a:hover p {
    text-decoration: underline;
}

.site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li a span,
.site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li a span {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 1.25rem;
    height: 2rem;
    justify-content: center;
    width: 2.5rem;
}

.site-footer .footer-component .footer-component-inner .footer-component-bottom {
    background: #444;
    padding: 0.5rem 0.8rem 1.1rem;
}

.site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks .quickLinks-title,
.site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks .quickLinks-title {
    color: #fff;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.045rem;
    margin-bottom: 0.5rem;
    margin-left: 0;
}

.site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks .quickLinks-title:last-of-type,
.site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks .quickLinks-title:last-of-type {
    margin-bottom: 0;
}

.site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks li,
.site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks li {
    margin-bottom: 0.5rem;
    margin-left: 0;
}

.site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks li:last-of-type,
.site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks li:last-of-type {
    margin-bottom: 0;
}

.site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks li a,
.site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks li a {
    align-items: center;
    display: flex;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.0225rem;
    transition: none;
}

.site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks li a:hover,
.site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks li a:hover {
    box-shadow: 0 1px #fff;
}

.site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks li a span,
.site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks li a span {
    margin-right: 0.6rem;
}

.site-footer .site-footer__inner:after {
    clear: both;
    content: "";
    display: block;
}

.site-footer .site-footer__search-wrap {
    margin: 2rem auto;
    max-width: 23.4375rem;
    width: 100%;
}

.site-footer .contact-info {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
}

.site-footer .contact-info__link {
    align-items: center;
    background: #021bc3;
    display: flex;
    font-size: 0.75rem;
    justify-content: center;
    margin: 0 1rem;
    padding: 12px 20px;
    position: relative;
}

.site-footer .contact-info__link:focus:after,
.site-footer .contact-info__link:hover:after {
    height: 4px;
}

.site-footer .contact-info__link:after {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    transition: 0.3s;
    width: 100%;
}

.site-footer .contact-info__link .fa {
    font-size: 2rem;
    text-align: center;
}

.site-footer .information {
    display: flex;
    flex-direction: column;
    margin-left: 0.5rem;
}

.site-footer .information .contact-info__link-label {
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.site-footer .contact-info__details {
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
}

.site-footer .copyright {
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
}

.content-wrap {
    padding-bottom: 6rem;
    padding-top: 2rem;
}

.single .content-wrap {
    padding-bottom: 3rem;
}

.single .featuredCaptionWrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.single .featuredCaptionWrapper .featuredCaption {
    border-bottom: 1px solid #252525;
    color: #252525;
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 0;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.single .pullquote {
    padding-left: 30px;
    position: relative;
}

.single .pullquote span {
    font-size: 4rem !important;
    left: 0;
    position: absolute;
}

.single .featured_image {
    display: block;
    max-width: none;
}

.post_content {
    margin-bottom: 3rem;
}

.post_content .break-container {
    left: 50%;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
    max-width: 100vw !important;
    position: relative;
    right: 50%;
    width: 100vw;
}

.ez-toc-title {
    color: #252525;
    margin-bottom: 1.2rem !important;
}

.hide-mobile {
    display: block;
}

.hide-desktop,
.ie-note {
    display: none;
}

.wp-caption figcaption {
    border-bottom: 1px solid #252525;
    color: #252525;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 10px 0;
    text-align: left;
}

.featured_image {
    background-size: cover;
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
    order: 2;
    width: 100%;
}

.featured_image img {
    display: block;
    height: auto;
    width: 100%;
}

.single-post .header__inner {
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.single-post .t-content h3 {
    margin-top: 20px;
}

.gform_wrapper .gform_body ul li p {
    margin: 0;
}

.gform_wrapper .gform_body .field_sublabel_below .ginput_complex label {
    margin-top: 5px !important;
}

.gform_wrapper .gform_body input[type="checkbox"] {
    margin-top: 1.5px;
}

.gform_wrapper .gform_body br,
.gform_wrapper .gform_body label:after,
.gform_wrapper .gform_body label:before {
    display: none;
}

.gform_wrapper .gform_body .gfield_radio li label {
    margin: 2px 0 0 25px;
}

.gform_wrapper .gform_body .gf_browser_chrome .gfield_radio li input[type="radio"] {
    height: 15px;
    margin-top: 3px;
    width: 15px !important;
}

.gform_wrapper .gform_body .gf-date.gf-date-layout-datepicker {
    max-width: 523px;
}

.gform_wrapper .gform_body input:not([type="radio"],
    [type="checkbox"],
    [type="submit"],
    [type="button"],
    [type="image"],
    [type="file"]) {
    width: 100%;
}

.gform_wrapper .gform_body .gfield .gfield_time_ampm {
    max-width: 10rem !important;
    width: calc(6rem + 20px);
}

.gform_wrapper .gform_body .gfield .gfield_time_ampm select {
    max-width: 100% !important;
    width: 100%;
}

.gform_wrapper .gform_body .gfield .gfield_time_ampm:after {
    right: -30px;
    top: 0;
}

.gform_wrapper .gform_body .gfield_checkbox li label {
    margin: 0 0 0 30px;
    position: relative;
    top: 3px;
}

.gform_wrapper .gform_body .gf-file .validation_message,
.gform_wrapper .gform_body .ginput_preview {
    background-color: transparent !important;
}

.gform_wrapper .gform_footer p {
    height: 0;
    margin-bottom: 0;
}

.charcoal .gform_wrapper .gform_button,
.charcoal .gform_wrapper .gform_next_button,
.dark_grey .gform_wrapper .gform_button,
.dark_grey .gform_wrapper .gform_next_button,
.navy .gform_wrapper .gform_button,
.navy .gform_wrapper .gform_next_button {
    border: 2px solid #fff;
    color: #fff;
}

.charcoal .gform_wrapper .gform_button:after,
.charcoal .gform_wrapper .gform_next_button:after,
.dark_grey .gform_wrapper .gform_button:after,
.dark_grey .gform_wrapper .gform_next_button:after,
.navy .gform_wrapper .gform_button:after,
.navy .gform_wrapper .gform_next_button:after {
    color: #fff;
}

.charcoal .gform_wrapper .gform_button:focus,
.charcoal .gform_wrapper .gform_button:hover,
.charcoal .gform_wrapper .gform_next_button:focus,
.charcoal .gform_wrapper .gform_next_button:hover,
.dark_grey .gform_wrapper .gform_button:focus,
.dark_grey .gform_wrapper .gform_button:hover,
.dark_grey .gform_wrapper .gform_next_button:focus,
.dark_grey .gform_wrapper .gform_next_button:hover,
.navy .gform_wrapper .gform_button:focus,
.navy .gform_wrapper .gform_button:hover,
.navy .gform_wrapper .gform_next_button:focus,
.navy .gform_wrapper .gform_next_button:hover {
    background: #fff;
    border-color: #fff;
    color: #252525;
}

.charcoal .gform_wrapper .gform_button:focus:after,
.charcoal .gform_wrapper .gform_button:hover:after,
.charcoal .gform_wrapper .gform_next_button:focus:after,
.charcoal .gform_wrapper .gform_next_button:hover:after,
.dark_grey .gform_wrapper .gform_button:focus:after,
.dark_grey .gform_wrapper .gform_button:hover:after,
.dark_grey .gform_wrapper .gform_next_button:focus:after,
.dark_grey .gform_wrapper .gform_next_button:hover:after,
.navy .gform_wrapper .gform_button:focus:after,
.navy .gform_wrapper .gform_button:hover:after,
.navy .gform_wrapper .gform_next_button:focus:after,
.navy .gform_wrapper .gform_next_button:hover:after {
    color: #252525;
}

.grey .gform_wrapper .gform_button,
.grey .gform_wrapper .gform_next_button,
.yellow .gform_wrapper .gform_button,
.yellow .gform_wrapper .gform_next_button {
    border: 2px solid #252525;
    color: #252525;
}

.grey .gform_wrapper .gform_button:after,
.grey .gform_wrapper .gform_next_button:after,
.yellow .gform_wrapper .gform_button:after,
.yellow .gform_wrapper .gform_next_button:after {
    color: #252525;
}

.grey .gform_wrapper .gform_button:focus,
.grey .gform_wrapper .gform_button:hover,
.grey .gform_wrapper .gform_next_button:focus,
.grey .gform_wrapper .gform_next_button:hover,
.yellow .gform_wrapper .gform_button:focus,
.yellow .gform_wrapper .gform_button:hover,
.yellow .gform_wrapper .gform_next_button:focus,
.yellow .gform_wrapper .gform_next_button:hover {
    background: #252525;
    border-color: #252525;
    color: #fff;
}

.grey .gform_wrapper .gform_button:focus:after,
.grey .gform_wrapper .gform_button:hover:after,
.grey .gform_wrapper .gform_next_button:focus:after,
.grey .gform_wrapper .gform_next_button:hover:after,
.yellow .gform_wrapper .gform_button:focus:after,
.yellow .gform_wrapper .gform_button:hover:after,
.yellow .gform_wrapper .gform_next_button:focus:after,
.yellow .gform_wrapper .gform_next_button:hover:after {
    color: #fff;
}

#mc_embed_signup_scroll .indicates-required {
    margin-bottom: 20px;
}

#mc_embed_signup_scroll .mc-field-group {
    margin-bottom: 25px;
}

#mc_embed_signup_scroll .mc-field-group label {
    margin-bottom: 0;
}

#mc_embed_signup_scroll .mc-field-group input {
    border: 1px solid #b3b3b3;
    cursor: auto;
    height: 40px;
    width: 100%;
}

#mc_embed_signup_scroll #mc-embedded-subscribe {
    background: transparent;
    border: 2px solid #021bc3;
    color: #021bc3;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.01562rem;
    line-height: 1.625rem;
    padding: 0.5rem 0.8125rem 0.375rem;
    text-decoration: none;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: auto;
}

#mc_embed_signup_scroll #mc-embedded-subscribe:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff;
    padding: 0.5rem 1.3125rem 0.375rem;
}

div.form_container form {
    margin: 0 auto;
}

div.form_container .form_label:after,
div.form_container [data-required="1"] label:first-child:after {
    color: #252525 !important;
}

div.form_container .form_responses {
    display: flex;
    flex-wrap: nowrap;
}

div.form_container input {
    height: 45px;
}

div.form_container label {
    text-transform: capitalize;
}

div.form_container #form_description,
div.form_container .form_label {
    color: #252525;
    display: block;
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-transform: capitalize;
}

div.form_container #form_description {
    font-size: 1.4em;
    margin-bottom: 1rem;
}

div.form_container .form_button_submit {
    background: transparent;
    border: 0;
    border-bottom: 2px solid #021bc3;
    color: #021bc3;
    cursor: pointer;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    height: auto;
    letter-spacing: 0.015625rem;
    line-height: 1.75rem;
    padding: 0.125rem 0 0;
    text-decoration: none;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: auto;
}

div.form_container .form_button_submit:visited {
    color: #021bc3;
}

div.form_container .form_button_submit:focus,
div.form_container .form_button_submit:hover {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff !important;
    padding: 0.125rem 0.5rem 0;
}

div.form_container .form_button_submit:active {
    background: #001e5f;
    border-color: #001e5f;
    color: #fff;
    padding: 0.125rem 0.5rem 0;
}

div.form_container .form_button_submit:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding-left: 0.3125rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -1px;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

div.form_container .form_button_submit:active:after,
div.form_container .form_button_submit:focus:after,
div.form_container .form_button_submit:hover:after {
    color: #fff;
    padding-left: 0.75rem;
}

div.form_container #form_page_3 {
    display: flex;
    flex-wrap: wrap;
}

div.form_container #form_page_3 .form_question {
    width: 100%;
}

div.form_container #form_page_3 .form_question_bdd711a7-2475-4245-be4d-86f38da8451a,
div.form_container #form_page_3 .form_question_d4689752-2390-4749-a51b-514309c41d8d {
    clear: none !important;
    width: auto;
}

div.form_container #form_page_3 .form_question_d4689752-2390-4749-a51b-514309c41d8d {
    margin-right: 5px;
}

.nav__primary {
    width: 100%;
}

.nav-primary__list {
    display: flex;
    flex-flow: column nowrap;
    overflow: visible;
}

.nav-primary__list,
.nav-primary__list ul {
    list-style: none;
    margin-left: 0;
}

.nav-primary__wrap-child--depth-0 {
    display: none;
    height: auto;
    overflow: visible;
    padding: 0;
}

.nav-primary__list-item--depth-0:hover .nav-primary__action--depth-0 {
    color: #fff;
}

.nav-primary__list-item--depth-0:hover .nav-primary__wrap-child--depth-0 {
    display: block;
}

.nav-primary__list-item--depth-0:hover.nav-item--wrapped-row-2 .nav-primary__wrap-child--depth-0 {
    top: 100%;
}

.nav-primary__list-item--depth-0.nav-primary__list-item--is-active .nav-primary__action--depth-0 {
    color: #fff;
}

.nav-primary__list-item--depth-0.nav-primary__list-item--is-active .nav-primary__trigger {
    transform: rotate(180deg);
}

.nav-primary__list-item--depth-0.nav-primary__list-item--is-active .nav-primary__wrap-child--depth-0 {
    display: block;
}

body:not(.js-active) .nav-primary__list-item--depth-0:focus-within .nav-primary__action--depth-0 {
    color: #fff;
}

body:not(.js-active) .nav-primary__list-item--depth-0:focus-within .nav-primary__trigger {
    transform: rotate(180deg);
}

body:not(.js-active) .nav-primary__list-item--depth-0:focus-within .nav-primary__wrap-child--depth-0 {
    display: block;
}

.nav-primary__list-child--depth-1 {
    display: block;
}

.nav-primary__list-item--depth-1:not(.callout) .nav-primary__list-child--depth-1 {
    display: inline-block;
    padding-left: 20px;
    width: 100%;
}

.nav-primary__list-child--depth-1 .nav-primary__action--depth-2 {
    color: #fff;
}

.nav-primary__list-child--depth-1 .nav-primary__list-item--depth-2 {
    border-top: none !important;
}

.nav-primary__list-child--depth-1 .nav-primary__list-item--depth-2:first-child a {
    padding-top: 0 !important;
}

.nav-primary__list-child--depth-1 .nav-primary__list-item--depth-2 a {
    font-size: 1rem;
    padding: 0.5rem 0;
}

.nav-primary__list-item.external>a span:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 0.75em;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    margin-left: 0.5rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -0.1em;
}

.nav-primary__list-item.callout .nav-primary__action {
    color: #252525;
    font-weight: 600;
    padding: 0.5rem 0;
}

.nav-primary__list-item.callout .nav-primary__action:focus,
.nav-primary__list-item.callout .nav-primary__action:hover {
    color: #021bc3;
}

.nav-primary__list-item.callout>.nav-primary__action {
    color: #252525;
    display: none;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    text-transform: uppercase;
}

.nav-primary__list-item.callout>.nav-primary__action:hover {
    color: #021bc3;
}

.nav-primary__trigger {
    display: none;
}

.nav-primary__list-item--depth-0.audience {
    display: flex;
    position: relative;
}

.nav-primary__list-item--depth-0.audience:hover .nav-primary__wrap-child--depth-0 {
    padding: 0;
}

.nav-primary__list-item--depth-0.audience .nav-primary__actions .nav-primary__action {
    transition: none;
}

.nav-primary__list-item--depth-0.audience .nav-primary__wrap-child .nav-primary__list-child {
    flex-direction: column;
    padding: 0 1.25rem 0.5rem 0;
}

.nav-primary__list-item--depth-0.audience .nav-primary__wrap-child .nav-primary__list-child .nav-primary__list-item--depth-1 {
    border-right: none;
    padding: 0;
    width: auto;
}

.nav-primary__list-item--depth-0.audience.nav-primary__list-item--is-active .nav-primary__actions {
    background-color: #fff;
}

.nav-primary__list-item--depth-0 .nav-primary__trigger {
    align-items: center;
    border: 0;
    color: #fff;
    display: flex;
    font-size: 1.25rem;
    justify-content: space-between;
    line-height: 1;
    margin: 0;
    transition: all 0.15s ease-in-out;
}

.nav-primary__list-item--depth-0 button.nav-primary__trigger:focus,
.nav-primary__list-item--depth-0 button.nav-primary__trigger:hover {
    background-color: hsla(0, 0%, 100%, 0.1);
}

.nav-primary__list-item--depth-0:last-child {
    border-bottom: 1px solid #e8e8e8;
}

.nav-primary__action--depth-0 {
    align-items: center;
    color: #fff;
    display: flex;
    flex: 1;
    font-size: 1rem;
    font-weight: 700;
    justify-content: space-between;
    line-height: 1.7;
    padding: 0.875rem 0;
    position: relative;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

.nav-primary__action--depth-0:focus {
    color: #fff;
}

.nav-primary__action--depth-0.nav-primary__action--has-button {
    padding-right: 0.25rem;
}

.nav-primary__list-item--depth-1 {
    border-top: none !important;
    padding-left: 0;
    padding-right: 0;
}

.nav-primary__content-callout .nav-primary__list-item--depth-1 {
    display: none;
    padding-left: 0;
}

.nav-primary__list-item--depth-1:last-child {
    border-right: none;
    padding-bottom: 0;
}

.inactive .nav-primary__action--depth-1 {
    color: #fff;
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.7;
    padding: 0.5rem 0;
    text-align: left;
    width: 100%;
}

.inactive .nav-primary__action--depth-1:focus,
.inactive .nav-primary__action--depth-1:hover {
    color: #fff;
}

.inactive .nav-primary__action--depth-1 span {
    display: flex;
    text-transform: uppercase;
    width: 100%;
}

.inactive .nav-primary__action--depth-1 span:after {
    border-bottom: 1px dashed #fff;
    content: "";
    flex: 1;
    margin-left: 10px;
    position: relative;
    top: -10px;
}

.nav-primary__action--depth-1 {
    color: #fff;
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.5rem 20px;
    text-align: left;
    width: 100%;
}

.nav-primary__action--depth-1:focus,
.nav-primary__action--depth-1:hover {
    color: #fff;
}

.mega-menu .nav-primary__action--depth-1:focus span:before,
.mega-menu .nav-primary__action--depth-1:hover span:before {
    display: none;
}

.nav-primary__action--depth-2 {
    color: #252525;
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
}

.nav-primary__action--depth-2:focus,
.nav-primary__action--depth-2:hover {
    color: #fff;
}

.nav-primary__content-callout {
    display: none;
}

.menu-item__message-wrap {
    background-color: #f4f4f4;
    display: none;
}

.menu-item__message {
    display: flex;
    flex-flow: column nowrap;
    padding-bottom: 3rem;
    padding-top: 3rem;
}

.message__content {
    order: 2;
}

.message__title {
    color: #252525;
    font-family: ivypresto-text, serif !important;
    font-size: 1.7rem !important;
    line-height: 1.2 !important;
    margin-bottom: 1rem;
    padding-top: 10px !important;
}

.message__description p {
    line-height: 1.2;
    margin-bottom: 1rem;
}

.message__cta a,
.message__description p {
    font-family: inter-variable, sans-serif !important;
    font-size: 1rem;
}

.message__image-wrap {
    margin-bottom: 2rem;
}

.message__image-wrap img {
    width: 100%;
}

.nav-primary__actions {
    align-items: center;
    display: flex;
    justify-content: space-between;
}

.masthead .nav-primary__list.drop-down .nav-primary__list-item {
    position: relative;
}

.masthead .nav-primary__list.drop-down .nav-primary__list-item.nav-primary__list-item--has-children:hover .nav-primary__wrap-child {
    height: auto;
    opacity: 1;
    overflow: hidden;
    visibility: visible;
}

.masthead .nav-primary__list.drop-down .nav-primary__wrap-child--depth-0 {
    padding: 0;
}

.masthead .nav-primary__list.drop-down .nav-primary__wrap-child--depth-0 .nav-primary__list-child {
    margin-bottom: 0;
}

.masthead .nav-primary__list.drop-down .nav-primary__wrap-child {
    right: unset;
    top: 100%;
}

.masthead .nav-primary__list.drop-down .nav-primary__wrap-child ul.nav-primary__list-child {
    padding: 0 1rem 0.5rem 0;
}

.masthead .nav-primary__list.drop-down .nav-primary__wrap-child li {
    padding-bottom: 0;
    width: 100%;
}

.masthead .nav-primary__list.drop-down .nav-primary__wrap-child li a {
    padding: 0.25rem 0;
}

.masthead .nav-primary__list.drop-down .nav-primary__wrap-child li a span {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}

.masthead .nav-primary__list.drop-down .nav-primary__wrap-child li a:focus span,
.masthead .nav-primary__list.drop-down .nav-primary__wrap-child li a:hover span {
    color: #fff;
}

#toggle-site-nav {
    align-items: center;
    background-color: #001e5f;
    display: flex;
    margin-left: 0;
    margin-top: 0;
    padding-top: 0.5rem;
}

#site-navigation {
    background: #001e5f;
    border-bottom: none;
    box-shadow: -8px 10px 10px transparent;
    opacity: 0;
    position: fixed;
    right: 100%;
    transition: opacity 0.15s ease-in-out;
    width: 100%;
    z-index: 10001;
}

#site-navigation .grid-container {
    height: 100%;
    padding: 0;
}

#site-navigation .grid-container .site-nav__wrap {
    align-items: center;
    display: flex;
    flex-flow: column nowrap;
    justify-content: unset;
    position: relative;
}

.message__cta a,
.message__description p {
    line-height: 1.4 !important;
}

.nav-primary__wrap-child--depth-1 {
    display: block;
    height: 100%;
}

.nav-primary__wrap-child--depth-1 .nav-primary__list-child--depth-1 {
    display: block;
}

.contact a:before {
    content: "\f0e0" /"";
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    font-weight: 900;
    margin-left: 0;
    margin-right: 10px;
    position: relative;
    top: 0;
}

.information a:before {
    content: "\f30f" /"";
}

.bell a:before,
.information a:before {
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    font-weight: 900;
    margin-left: 0;
    margin-right: 0.5rem;
    position: relative;
    top: 0;
}

.bell a:before {
    content: "";
}

.faq a:before {
    content: "";
}

.calendar a:before,
.faq a:before {
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    font-weight: 900;
    margin-left: 0;
    margin-right: 0.5rem;
    position: relative;
    top: 0;
}

.calendar a:before {
    content: "";
}

.news a:before {
    content: "";
}

.dashboard a:before,
.news a:before {
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    font-weight: 900;
    margin-left: 0;
    margin-right: 0.5rem;
    position: relative;
    top: 0;
}

.dashboard a:before {
    content: "";
}

.users a:before {
    content: "";
}

.support a:before,
.users a:before {
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    font-weight: 900;
    margin-left: 0;
    margin-right: 0.5rem;
    position: relative;
    top: 0;
}

.support a:before {
    content: "";
}

.secondary-mobile {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        #001e5f;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1.5rem;
    position: relative;
    width: 100%;
}

.secondary-mobile-text {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: left;
    text-transform: uppercase;
    width: 100%;
}

.secondary-mobile-text:after {
    border-bottom: 1px dashed #fff;
    content: "";
    margin-left: 10px;
    opacity: 0.25;
    position: relative;
    width: 100%;
}

.secondary-mobile .nav__secondary {
    padding: 0;
}

.secondary-mobile .nav__secondary .nav-secondary__action {
    border-bottom: 2px solid #fff;
    margin-right: 0;
    padding: 0;
}

.secondary-mobile .search__form .search-form__query {
    color: #252525;
    font-size: 0.75rem;
}

.secondary-mobile .search__form .search-form__query::placeholder {
    color: #252525;
    font-size: 0.75rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.36px;
    line-height: normal;
    text-transform: uppercase;
}

.secondary-mobile .search__form button.search-form__submit {
    background: #fff;
    color: #252525;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.01563rem;
    margin: 0;
    text-indent: 0;
    text-transform: uppercase;
    width: auto;
}

.secondary-mobile .search__form button.search-form__submit:before {
    color: #252525;
    content: "";
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    font-size: 1.15rem;
    font-weight: 900;
}

.masthead__secondary-desktop,
.secondary-mobile .search__form .dynamic_content,
.secondary-mobile .search__form button.search-form__submit span {
    display: none;
}

.nav__secondary {
    background-color: transparent;
    bottom: 0;
    margin: 0;
    padding: 0.75rem 0 1.75rem;
    position: relative;
    top: 1px;
    width: 100%;
}

.nav-secondary__list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin-left: 0;
}

.nav-secondary__list-item {
    height: 100%;
}

.nav-secondary__list-item:last-child {
    margin-bottom: 0;
}

.nav-secondary__list-item:hover {
    box-shadow: 0 2px 0 #fff;
}

.nav-secondary__action {
    align-items: center;
    border: none;
    border-radius: 0;
    color: #fff;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    text-align: left;
}

.nav-secondary__action:focus,
.nav-secondary__action:hover {
    color: #fff;
}

.external .nav-secondary__action span:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 0.75em;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    margin-left: 0.5rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -0.1em;
}

.page-nav.page-nav__mobile--hidden {
    display: none;
}

.landing_page .nav-section-menu.auto-sidebar .site-nav__list li.nav-section__list-item--has-children {
    position: relative;
}

.landing_page .nav-section-menu.auto-sidebar .site-nav__list li.nav-section__list-item--has-children a:after {
    color: silver;
    content: "";
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    -ms-flex-pack: center;
    font-family: Font Awesome\6 Pro;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 10px;
    text-align: right;
    text-rendering: auto;
    text-transform: none;
    top: 15px;
    transition: all 0.15s ease-in-out;
    z-index: 10;
}

.landing_page .nav-section-menu.auto-sidebar .site-nav__list li.nav-section__list-item--has-children ul.sub-menu {
    display: none;
}

.landing_page .nav-section-menu.auto-sidebar .site-nav__list li.nav-section__list-item--is-current-parent ul.sub-menu {
    display: block;
}

.landing_page .nav-section-menu.auto-sidebar .site-nav__list li.nav-section__list-item--is-current-parent ul.sub-menu .nav-section__action--depth-0 {
    background: #f4f4f4;
}

.landing_page .nav-section-menu.auto-sidebar .site-nav__list li.nav-section__list-item--is-current-parent.nav_list_child__menu-open ul.sub-menu {
    display: none;
}

.landing_page .nav-section-menu.auto-sidebar .site-nav__list li.nav-section__list-item--is-current-parent.nav_list_child__menu-open li.nav-section__list-item--is-current {
    display: block;
}

.landing_page .nav-section-menu.auto-sidebar .site-nav__list li.nav-section__list-item--is-current-parent.nav_list_child__menu-open .nav-section__action--depth-0 {
    background: #fff;
}

.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item--has-children .nav-section__action--depth-0:after,
.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item.subscribe {
    display: none;
}

.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item .sub-menu li.nav-section__list-item a.nav-section__action {
    color: #252525;
    font-size: 1rem;
    padding: 0.5rem 0 0.5rem 0.9rem;
}

.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item .sub-menu li.nav-section__list-item.nav-section__list-item--is-current a.nav-section__action {
    color: #252525;
}

.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item .sub-menu li.nav-section__list-item.nav-section__list-item--is-current a.nav-section__action span:before {
    display: none;
}

.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item.nav-section__list-item--is-current a span:before {
    transform: scaleX(1);
}

.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item.nav-section__list-item--is-current .sub-menu li a.nav-section__action span:before {
    transform: scaleX(0);
}

.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item .sub-menu li.nav-section__list-item--is-current a.nav-section__action span:before,
.landing_page .nav-section-menu.auto-sidebar .nav-section__list-item.nav-section__list-item--is-current .sub-menu li a.nav-section__action:hover span:before {
    transform: scaleX(1);
}

.landing_page .nav-section-menu.auto-sidebar li.nav-section__list-item--has-children a.nav-section__action--has-children span:before {
    display: none;
}

.grid-container .mega-menu .nav-primary__list ul {
    padding-left: 0;
}

.grid-container .mega-menu .nav-section__action--depth-1 {
    font-size: 1rem;
    line-height: 1.25;
}

.page-nav__mobile-toggle {
    margin-bottom: 2rem;
    width: 100%;
}

.page-nav__mobile-toggle:after {
    content: "";
    display: inline-block;
    font-size: 1em;
    margin-left: 0.5rem;
    padding-left: 0;
    position: relative;
    top: 1px;
    transition: all 0.15s ease-in-out;
}

.page-nav__mobile--visible .page-nav__mobile-toggle:after {
    transform: rotate(180deg);
}

.page-nav__mobile-wrap {
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.page-nav__mobile-wrap .sidebar_title {
    color: #252525;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.04rem;
    line-height: 0.875rem;
    margin-bottom: 10px;
}

.page-nav__mobile-wrap .sub_title {
    margin-top: 20px;
}

.page-nav__mobile-wrap .mobile_menu {
    display: block;
}

.page-nav__mobile-wrap .mobile_menu .title_mobile {
    border-bottom: 2px solid #252525;
    border-top: 2px solid #252525;
    color: #252525;
    margin: 0 auto;
    padding: 15px 0;
    text-align: center;
    width: 100vw;
}

.page-nav__mobile-wrap .mobile_menu .title_mobile.open {
    border-bottom: 1px solid #e8e8e8;
    color: #021bc3;
}

.page-nav__mobile-wrap .mobile_menu .title_mobile.open span:after {
    transform: rotate(180deg);
}

.page-nav__mobile-wrap .mobile_menu .title_mobile span,
.page-nav__mobile-wrap .mobile_menu .title_mobile span:after {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.page-nav__mobile-wrap .mobile_menu .title_mobile span:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #021bc3;
    border-radius: 50%;
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    height: 1.25rem;
    line-height: 1.25rem;
    margin-left: 5px;
    text-rendering: auto;
    text-transform: none;
    transition: all 0.15s ease-in-out;
    width: 1.25rem;
}

.page-nav__mobile-wrap .mobile_menu .title_mobile.sub_title {
    border-top: none;
}

.page-nav__mobile-wrap .mobile_menu .nav-section-menu {
    height: 0;
    margin: 0 auto;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}

.page-nav__mobile-wrap .mobile_menu .nav-section-menu.open {
    border-bottom: 2px solid #252525;
    direction: rtl;
    height: auto;
    margin-top: 0;
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
}

.page-nav__mobile-wrap .desktop_menu {
    display: none;
}

.sidebar {
    padding-top: 0;
}

.breadcrumbs.sidebar {
    padding-bottom: 0;
    padding-top: 0;
}

.nav-section__list,
.nav-section__list ul {
    list-style: none;
    margin-left: 0;
}

.nav-section__wrap-child--depth-0 {
    height: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    visibility: hidden;
}

.nav-section__list-item.nav-section__list-item--is-current a {
    color: #021bc3;
}

.nav-section__list-item.external>a span:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 0.75em;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    margin-left: 0.5rem;
    position: relative;
    text-rendering: auto;
    text-transform: none;
    top: -0.1em;
}

.nav-section__list-item--depth-0 {
    border-bottom: 1px solid #e8e8e8;
}

.nav-section__list-item--depth-0.child_open {
    border-bottom: 2px solid #021bc3;
}

.nav-section__list-item--depth-0.child_open .nav-section__action--depth-0:after {
    transform: rotate(180deg);
}

.nav-section__list-item--depth-0.child_open .nav-section__action--depth-0 span {
    box-shadow: none;
    color: #021bc3;
}

.nav-section__list-item--depth-0.child_open .nav-section__wrap-child--depth-0 {
    direction: rtl;
    height: auto;
    margin-bottom: 10px;
    max-height: 100vh;
    opacity: 1;
    visibility: visible;
}

.nav-section__list-item--depth-0.child_open .nav-section__wrap-child--depth-0::-webkit-scrollbar {
    background: #e8e8e8;
    width: 6px;
}

.nav-section__list-item--depth-0.child_open .nav-section__wrap-child--depth-0::-webkit-scrollbar-thumb {
    background: #021bc3;
}

.nav-section__action--depth-0 {
    color: #021bc3;
    display: block;
    font-weight: 700;
    line-height: 1.5;
    padding: 1.125rem 0;
    position: relative;
    text-align: left;
    white-space: break-spaces;
    width: 100%;
}

.nav-section__action--depth-0 span {
    box-shadow: 0 1px 0 0 #021bc3;
}

.nav-section__action--depth-0:focus,
.nav-section__action--depth-0:hover {
    color: #021bc3;
}

.nav-section__list-item--has-children .nav-section__action--depth-0 {
    padding-right: 2rem;
}

.nav-section__list-item--has-children .nav-section__action--depth-0:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #e8e8e8;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1.2rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0.5rem;
    text-rendering: auto;
    text-transform: none;
    top: 0.8em;
    transition: all 0.15s ease-in-out;
}

.nav-section__list-item--depth-1 {
    border-left: 4px solid #e8e8e8;
    padding-left: 15px;
}

.nav-section__list-item--depth-1:last-child {
    padding-bottom: 0.5rem;
}

.nav-section__list-item--depth-1:hover {
    border-left: 4px solid #021bc3;
}

.nav-section__action--depth-1 {
    color: #252525;
    display: block;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    padding: 0.5rem 0;
    text-align: left;
    width: 100%;
}

.nav-section__action--depth-1:focus,
.nav-section__action--depth-1:hover {
    color: #021bc3;
}

.nav-section__action--depth-1 span {
    box-shadow: 0 1px 0 0 #021bc3;
}

.nav-section-menu,
.nav__page-links {
    margin-bottom: 20px;
}

.sub-menu {
    margin-top: 20px;
}

.nav-section-menu+.nav__page-links {
    margin-top: -1px;
}

.nav-section__list .page_item:first-of-type {
    border-bottom: 1px solid #e8e8e8;
}

.nav-section__list .page_item:first-of-type a {
    font-size: 20px;
    padding: 1.125rem 0;
}

.nav-section__list .page_item a {
    color: #021bc3;
    display: block;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    padding: 1.125rem 0 1.125rem 20px;
    position: relative;
    text-align: left;
    white-space: nowrap;
    width: 100%;
}

.nav-section__list .page_item a:before {
    background-color: #021bc3;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: left top;
    transition: transform 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.parent_sidebar .nav-section-menu .nav-section__list,
.parent_sidebar .nav-section-menu .site-nav__list,
.parent_sidebar .nav__page-links .nav-section__list,
.parent_sidebar .nav__page-links .site-nav__list {
    flex-direction: column;
    list-style: none;
    margin-left: 0;
    width: 100%;
}

.parent_sidebar .nav-section-menu .nav-section__list .nav-section__action--depth-0,
.parent_sidebar .nav-section-menu .site-nav__list .nav-section__action--depth-0,
.parent_sidebar .nav__page-links .nav-section__list .nav-section__action--depth-0,
.parent_sidebar .nav__page-links .site-nav__list .nav-section__action--depth-0 {
    color: #252525;
    font-size: 1.125rem !important;
    padding: 10px 0 !important;
    z-index: 100;
}

.parent_sidebar .nav-section-menu .nav-section__list .nav-section__list-item--is-current-parent .sub-menu li.nav-section__list-item--is-current,
.parent_sidebar .nav-section-menu .site-nav__list .nav-section__list-item--is-current-parent .sub-menu li.nav-section__list-item--is-current,
.parent_sidebar .nav__page-links .nav-section__list .nav-section__list-item--is-current-parent .sub-menu li.nav-section__list-item--is-current,
.parent_sidebar .nav__page-links .site-nav__list .nav-section__list-item--is-current-parent .sub-menu li.nav-section__list-item--is-current {
    display: block;
}

.parent_sidebar .nav-section-menu .nav-section__list-child .nav-section__action--depth-1,
.parent_sidebar .nav__page-links .nav-section__list-child .nav-section__action--depth-1,
.parent_sidebar .text-area__inner p {
    font-size: 1rem;
}

.site-footer__nav ol {
    margin: 3rem 0;
}

.site-footer__nav-item {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.5;
    list-style: none;
    margin: 0.5rem 0;
    text-align: center;
}

.site-footer__nav-item a {
    display: inline-block;
}

.site-footer__nav-item a:focus,
.site-footer__nav-item a:hover {
    box-shadow: 0 1px 0 #fff;
}

.search-wrap {
    margin-top: 2rem;
}

.loop-meta__results {
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.5rem;
}

.loop-meta__results b {
    font-weight: 600;
}

.searchwp-revised-search-notice {
    font-weight: 600;
    margin: 1.5rem 0;
    padding-left: 1.75em;
    position: relative;
}

.searchwp-revised-search-notice:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #ffd82b;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    left: 0;
    line-height: 1;
    position: absolute;
    text-rendering: auto;
    text-transform: none;
    top: 0.3em;
}

.search-item__date {
    color: #252525;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.71429;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.content-header--search .dynamic_content {
    display: none;
}

.loop-item {
    border-bottom: 1px solid #252525;
    padding: 1rem 0;
}

.loop-item:first-of-type {
    border-top: 1px solid #252525;
}

.loop-item__image {
    background-position: top;
    background-size: cover;
    margin-bottom: 1.5rem;
    position: relative;
}

.loop-item__image a {
    display: block;
    inset: 0;
}

.loop-item__meta {
    margin-top: 1rem;
}

.loop-item__date {
    color: #252525;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    text-transform: uppercase;
}

.loop-item--page .loop-item__date {
    display: none;
}

.loop-item__title a {
    color: #252525;
}

.loop-item__title a:active,
.loop-item__title a:focus,
.loop-item__title a:hover {
    color: #021bc3;
    text-decoration: underline;
}

.loop-item__excerpt p {
    margin-bottom: 1.5rem;
}

.loop-item__excerpt p:last-child {
    margin-bottom: 0;
}

.loop--posts .wrapper_one .featured-post__cat,
.loop--posts .wrapper_one .loop-item__category {
    background-color: #001e5f;
    color: #fff;
    display: inline-block;
    font-weight: 900;
    margin-top: 1rem;
    padding: 0.25rem 0.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.loop--posts .wrapper_one .post-excerpt p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.loop--posts .loop-item__cta_link {
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 15px;
}

.loop--posts .loop-item__tags {
    color: #252525;
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.06rem;
    line-height: 1.71429;
    text-transform: uppercase;
}

.category .loop--posts .wrapper_one .featured-post__cat,
.related-posts .loop--posts .wrapper_one .featured-post__cat {
    display: none;
}

.loop--featured {
    border-top: 1px solid #252525;
}

.featured-post__image {
    background-position: top;
    background-size: cover;
    height: 100%;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.featured-post__image:before {
    content: "";
    display: block;
    padding-top: 66.67%;
}

.featured-post__image .item__image {
    left: 0;
    position: absolute;
    top: 0;
}

.featured-post__image a {
    display: block;
    inset: 0;
}

.featured-post__content {
    flex: 1 1 auto;
}

.featured-post__content .primary-category {
    color: #001e5f;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.7142857143;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.featured-post__title {
    color: #252525;
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.featured-post__title a:active,
.featured-post__title a:focus,
.featured-post__title a:hover {
    color: #021bc3;
    text-decoration: underline;
}

.featured-post__date {
    color: #252525;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.featured-post__excerpt {
    margin-bottom: 3rem;
}

.loop-navigation {
    margin-top: 3rem;
}

.pagination__count {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.pagination .page-numbers {
    color: #021bc3;
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 0.4375rem 0.8125rem;
    text-align: center;
}

.pagination .page-numbers:active,
.pagination .page-numbers:focus,
.pagination .page-numbers:hover {
    background: #f4f4f4;
}

.pagination .page-numbers .fa {
    vertical-align: middle;
}

.pagination .page-numbers.current {
    background: #021bc3;
    color: #fff;
}

.module {
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.module:last-of-type {
    margin-bottom: 0;
}

.module:last-of-type.module-media .media-grid-none .media-grid-content:after,
.modules .adjacent-above:first-of-type:before {
    display: none;
}

body .module .module__title {
    color: #252525 !important;
}

body .module .module__title:after,
body .module .module__title:before {
    display: none;
}

.localist-widget .lwn body .module .t-content a,
body .module .t-content .localist-widget .lwn a,
body .module .t-content h1,
body .module .t-content h2,
body .module .t-content h3,
body .module .t-content h4,
body .module .t-content h5,
body .module .t-content h6,
body .module .t-content ol,
body .module .t-content p,
body .module .t-content ul {
    color: #252525;
}

body .module .navy .module__title {
    color: #fff !important;
}

.localist-widget .lwn body .module .navy .t-content a,
body .module .navy .t-content .localist-widget .lwn a,
body .module .navy .t-content h1,
body .module .navy .t-content h2,
body .module .navy .t-content h3,
body .module .navy .t-content h4,
body .module .navy .t-content h5,
body .module .navy .t-content h6,
body .module .navy .t-content ol,
body .module .navy .t-content p,
body .module .navy .t-content ul {
    color: #fff;
}

body .module .navy .t-content a {
    box-shadow: 0 1px 0 0 #fff;
    color: #fff;
}

body .module .charcoal .module__title {
    color: #fff !important;
}

.localist-widget .lwn body .module .charcoal .t-content a,
body .module .charcoal .t-content .localist-widget .lwn a,
body .module .charcoal .t-content h1,
body .module .charcoal .t-content h2,
body .module .charcoal .t-content h3,
body .module .charcoal .t-content h4,
body .module .charcoal .t-content h5,
body .module .charcoal .t-content h6,
body .module .charcoal .t-content ol,
body .module .charcoal .t-content p,
body .module .charcoal .t-content ul {
    color: #fff;
}

body .module .charcoal .t-content a {
    box-shadow: 0 1px 0 0 #fff;
    color: #fff;
}

body .title-line header .module__title:before {
    top: -16px;
}

body .title-line header .module__title:after,
body .title-line header .module__title:before {
    background-color: #001e5f;
    content: "";
    display: inline-block;
    height: 8px;
    left: 0;
    position: absolute;
    width: 79px;
}

body .title-line header .module__title:after {
    bottom: -16px;
}

body .title-line .module header .module__title:after,
body .title-line .module header .module__title:before {
    display: none;
}

body .title-line.t-above header .module__title:after,
body .title-line.t_above header .module__title:after {
    display: none !important;
}

body .title-line.t-below header,
body .title-line.t_below header {
    margin-bottom: 3rem;
}

body .title-line.t-below header .module__title:before,
body .title-line.t_below header .module__title:before {
    display: none !important;
}

body .title-line.t-navy header .module__title:after,
body .title-line.t-navy header .module__title:before,
body .title-line.t_navy header .module__title:after,
body .title-line.t_navy header .module__title:before {
    background-color: #001e5f;
}

body .title-line.t-yellow header .module__title:after,
body .title-line.t-yellow header .module__title:before,
body .title-line.t_yellow header .module__title:after,
body .title-line.t_yellow header .module__title:before {
    background-color: #ffd82b;
}

body .title-line.t-white header .module__title:after,
body .title-line.t-white header .module__title:before,
body .title-line.t_white header .module__title:after,
body .title-line.t_white header .module__title:before {
    background-color: #fff;
}

body .title-line.t-black header .module__title:after,
body .title-line.t-black header .module__title:before,
body .title-line.t_black header .module__title:after,
body .title-line.t_black header .module__title:before {
    background-color: #252525;
}

body .title-line.centered header .module__title:after,
body .title-line.centered header .module__title:before {
    display: block;
    margin: 0 auto;
    position: relative;
}

body .title-line.right header .module__title:after,
body .title-line.right header .module__title:before {
    left: unset;
    right: 0;
}

.center-text .grid-container__stagger-double>* {
    margin: 0 auto !important;
}

.pt-10 {
    padding-top: 10px !important;
}

.pt-15 {
    padding-top: 15px !important;
}

.pt-20 {
    padding-top: 20px !important;
}

.pt-25 {
    padding-top: 25px !important;
}

.pt-30 {
    padding-top: 30px !important;
}

.pt-35 {
    padding-top: 35px !important;
}

.pt-40 {
    padding-top: 40px !important;
}

.pt-45 {
    padding-top: 45px !important;
}

.pt-50 {
    padding-top: 50px !important;
}

.pt-55 {
    padding-top: 55px !important;
}

.pt-60 {
    padding-top: 60px !important;
}

.pt-65 {
    padding-top: 65px !important;
}

.pt-70 {
    padding-top: 70px !important;
}

.pt-75 {
    padding-top: 75px !important;
}

.pt-80 {
    padding-top: 80px !important;
}

.pt-85 {
    padding-top: 85px !important;
}

.pt-90 {
    padding-top: 90px !important;
}

.pt-95 {
    padding-top: 95px !important;
}

.pt-100 {
    padding-top: 100px !important;
}

.pb-10 {
    padding-bottom: 10px !important;
}

.pb-15 {
    padding-bottom: 15px !important;
}

.pb-20 {
    padding-bottom: 20px !important;
}

.pb-25 {
    padding-bottom: 25px !important;
}

.pb-30 {
    padding-bottom: 30px !important;
}

.pb-35 {
    padding-bottom: 35px !important;
}

.pb-40 {
    padding-bottom: 40px !important;
}

.pb-45 {
    padding-bottom: 45px !important;
}

.pb-50 {
    padding-bottom: 50px !important;
}

.pb-55 {
    padding-bottom: 55px !important;
}

.pb-60 {
    padding-bottom: 60px !important;
}

.pb-65 {
    padding-bottom: 65px !important;
}

.pb-70 {
    padding-bottom: 70px !important;
}

.pb-75 {
    padding-bottom: 75px !important;
}

.pb-80 {
    padding-bottom: 80px !important;
}

.pb-85 {
    padding-bottom: 85px !important;
}

.pb-90 {
    padding-bottom: 90px !important;
}

.pb-95 {
    padding-bottom: 95px !important;
}

.pb-100 {
    padding-bottom: 100px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-15 {
    margin-top: 15px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-25 {
    margin-top: 25px !important;
}

.mt-30 {
    margin-top: 30px !important;
}

.mt-35 {
    margin-top: 35px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-45 {
    margin-top: 45px;
}

.mt-50 {
    margin-top: 50px !important;
}

.mt-55 {
    margin-top: 55px !important;
}

.mt-60 {
    margin-top: 60px !important;
}

.mt-65 {
    margin-top: 65px !important;
}

.mt-70 {
    margin-top: 70px !important;
}

.mt-75 {
    margin-top: 75px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mt-85 {
    margin-top: 85px !important;
}

.mt-90 {
    margin-top: 90px !important;
}

.mt-95 {
    margin-top: 95px !important;
}

.mt-100 {
    margin-top: 100px !important;
}

.mb-10 {
    margin-bottom: 10px !important;
}

.mb-15 {
    margin-bottom: 15px !important;
}

.mb-20 {
    margin-bottom: 20px !important;
}

.mb-25 {
    margin-bottom: 25px !important;
}

.mb-30 {
    margin-bottom: 30px !important;
}

.mb-35 {
    margin-bottom: 35px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

.mb-45 {
    margin-bottom: 45px !important;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-55 {
    margin-bottom: 55px !important;
}

.mb-60 {
    margin-bottom: 60px !important;
}

.mb-65 {
    margin-bottom: 65px !important;
}

.mb-70 {
    margin-bottom: 70px !important;
}

.mb-75 {
    margin-bottom: 75px !important;
}

.mb-80 {
    margin-bottom: 80px !important;
}

.mb-85 {
    margin-bottom: 85px !important;
}

.mb-90 {
    margin-bottom: 90px !important;
}

.mb-95 {
    margin-bottom: 95px !important;
}

.mb-100 {
    margin-bottom: 100px !important;
}

.no-gutters .grid-container {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.full-border {
    border: 1px solid #252525;
}

.line-full-above {
    border-top: 1px solid #252525;
}

.line-full-below {
    border-bottom: 1px solid #252525;
}

.full-border-max {
    border: 1px solid #252525;
}

.full-border-max.width-medium {
    margin: 0 auto;
    max-width: 52.6875rem;
}

.full-border-max.width-large {
    margin: 0 auto;
    max-width: 80rem;
}

.line-max-above {
    border-top: 1px solid #252525;
}

.line-max-above.width-medium {
    margin: 0 auto;
    max-width: 52.6875rem;
}

.line-max-above.width-large {
    margin: 0 auto;
    max-width: 80rem;
}

.line-max-below {
    border-bottom: 1px solid #252525;
}

.line-max-below.width-medium {
    margin: 0 auto;
    max-width: 52.6875rem;
}

.line-max-below.width-large {
    margin: 0 auto;
    max-width: 80rem;
}

.l-white {
    border-color: #fff;
}

.l-navy {
    border-color: #001e5f;
}

.l-yellow {
    border-color: #ffd82b;
}

.l-gray,
.l-lt-gray {
    border-color: #e8e8e8;
}

.l-charcoal {
    border-color: #252525;
}

.l-thin {
    border-width: 1px;
}

.l-medium {
    border-width: 3px;
}

.l-thick {
    border-width: 5px;
}

.text-module__header {
    margin-bottom: 2rem;
    position: relative;
}

.width-small .grid-container {
    max-width: 668px;
    padding-right: 1.875rem;
    width: 100%;
}

.width-small .grid-container .text-module__header {
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    width: 100%;
}

.width-small .grid-container .text-module__header .module__title {
    max-width: unset;
}

.width-medium .grid-container {
    max-width: 52.6875rem;
    padding-right: 1.875rem;
    width: 100%;
}

.width-medium .grid-container .text-module__header {
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    width: 100%;
}

.width-medium .grid-container .text-module__header .module__title {
    max-width: unset;
}

.width-large .grid-container {
    max-width: 80rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    width: 100%;
}

.width-large .grid-container .text-module__header {
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    width: 100%;
}

.width-large .grid-container .text-module__header .module__title {
    max-width: unset;
}

.above_fold .grid-container {
    max-width: unset !important;
    padding: 0;
    width: 100% !important;
}

.above_fold .col-flex {
    width: 100% !important;
}

.above_fold .module--type-text .text-module__container {
    padding: 0;
}

.above_fold .grid-container__stagger-double>* {
    max-width: none;
}

.above_fold .module--type-accordion .accordion-module__container {
    padding: 0;
}

.above_fold .charcoal .grid-container,
.above_fold .gray .grid-container,
.above_fold .grey .grid-container,
.above_fold .navy .grid-container,
.above_fold .yellow .grid-container {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
}

.above_fold .featured-post {
    padding: 0 !important;
}

.above_fold .width-medium .query_text-module__container .query_text-module__query-column {
    margin: 0 auto;
    max-width: 100%;
}

.module--type-search .search-module__content {
    margin-bottom: 1.5rem;
}

.y-flag {
    background: #ffd82b;
    border-radius: 50px;
    display: inline-block;
    line-height: 1.2;
    margin-bottom: 15px;
    padding: 5px 15px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.y-flag p {
    font-size: 1rem;
}

.yellow .y-flag {
    background: #fff;
    color: #001e5f;
}

.navy .y-flag {
    background: #fff;
    color: #252525;
}

body .max-text-left .social-module__content,
body .max-text-left header.desc_section {
    margin-left: auto;
    margin-right: auto;
    max-width: 83.75rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
}

body .max-text-left .social-module__content .module__header,
body .max-text-left header.desc_section .module__header {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

body .max-text-left .social-module__content .module__header .module__title,
body .max-text-left header.desc_section .module__header .module__title {
    max-width: 100%;
}

body .max-text-left .social-module__content .module_desc,
body .max-text-left header.desc_section .module_desc {
    margin-left: 0;
    max-width: 52rem !important;
}

body .max-text-center .social-module__content,
body .max-text-center header.desc_section {
    margin-left: auto;
    margin-right: auto;
    max-width: 83.75rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
}

body .max-text-center .social-module__content .module__header,
body .max-text-center header.desc_section .module__header {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

body .max-text-center .social-module__content .module__header .module__title,
body .max-text-center header.desc_section .module__header .module__title {
    max-width: 100%;
}

body .max-text-center .social-module__content .module_desc,
body .max-text-center header.desc_section .module_desc {
    max-width: 52rem !important;
}

body .max-text-right .social-module__content,
body .max-text-right header.desc_section {
    margin-left: auto;
    margin-right: auto;
    max-width: 83.75rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
}

body .max-text-right .social-module__content .module__header,
body .max-text-right header.desc_section .module__header {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

body .max-text-right .social-module__content .module__header .module__title,
body .max-text-right header.desc_section .module__header .module__title {
    max-width: 100%;
}

body .max-text-right .social-module__content .module_desc,
body .max-text-right header.desc_section .module_desc {
    margin-left: 0;
    max-width: 52rem !important;
}

.social-icons .t-content a {
    box-shadow: none;
}

.social-icons .t-content a i {
    font-size: 45px;
}

.social-icons .t-content a:hover {
    box-shadow: none;
    color: #252525;
    opacity: 0.65;
}

.module--type-accordion {
    padding-left: 2rem;
    padding-right: 2rem;
}

.module--type-accordion.fade {
    opacity: 1;
}

.module--type-accordion.width-narrow .accordion-module__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 83.75rem;
}

.module--type-accordion.width-narrow .accordion-module__container .row-styles {
    margin-right: 0;
    width: 100%;
}

.module--type-accordion .accordion-module__container {
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.module--type-accordion .accordion-module__container .text-module__header .module__title {
    max-width: 850px;
}

.module--type-accordion.charcoal .a-row__button span,
.module--type-accordion.charcoal .a-row__button:after,
.module--type-accordion.charcoal .module__title,
.module--type-accordion.charcoal .t-content p,
.module--type-accordion.navy .a-row__button span,
.module--type-accordion.navy .a-row__button:after,
.module--type-accordion.navy .module__title,
.module--type-accordion.navy .t-content p {
    color: #fff !important;
}

.module--type-accordion.charcoal .accordion-module__container,
.module--type-accordion.navy .accordion-module__container {
    padding: 0;
}

.module--type-accordion.charcoal .accordion-module__row a,
.module--type-accordion.charcoal .accordion-module__row h1,
.module--type-accordion.charcoal .accordion-module__row h2,
.module--type-accordion.charcoal .accordion-module__row h3,
.module--type-accordion.charcoal .accordion-module__row h4,
.module--type-accordion.charcoal .accordion-module__row h5,
.module--type-accordion.charcoal .accordion-module__row h6,
.module--type-accordion.charcoal .accordion-module__row ol,
.module--type-accordion.charcoal .accordion-module__row p,
.module--type-accordion.charcoal .accordion-module__row ul,
.module--type-accordion.navy .accordion-module__row a,
.module--type-accordion.navy .accordion-module__row h1,
.module--type-accordion.navy .accordion-module__row h2,
.module--type-accordion.navy .accordion-module__row h3,
.module--type-accordion.navy .accordion-module__row h4,
.module--type-accordion.navy .accordion-module__row h5,
.module--type-accordion.navy .accordion-module__row h6,
.module--type-accordion.navy .accordion-module__row ol,
.module--type-accordion.navy .accordion-module__row p,
.module--type-accordion.navy .accordion-module__row ul {
    color: #fff !important;
}

.module--type-accordion.charcoal .accordion-module__row a,
.module--type-accordion.navy .accordion-module__row a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-accordion.charcoal .accordion-module__row a:hover,
.module--type-accordion.navy .accordion-module__row a:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.module--type-accordion.gray .a-row__button span,
.module--type-accordion.gray .a-row__button:after {
    color: #252525 !important;
}

.module--type-accordion.gray .accordion-module__container {
    padding: 0;
}

.module--type-accordion.yellow .a-row__button span,
.module--type-accordion.yellow .a-row__button:after {
    color: #252525 !important;
}

.module--type-accordion.yellow .a-row__button span:before {
    background-color: #252525;
}

.module--type-accordion.yellow .accordion-module__container {
    padding: 0;
}

.module--type-accordion .module__title {
    font-family: ivypresto-text, serif;
    margin-bottom: 1rem;
    position: relative;
}

.module--type-accordion .module__title:before {
    background-color: #001e5f;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: -16px;
    width: 79px;
}

.localist-widget .lwn .module--type-accordion .module__title a,
.module--type-accordion .module__title .localist-widget .lwn a,
.module--type-accordion .module__title h1,
.module--type-accordion .module__title h2,
.module--type-accordion .module__title h3,
.module--type-accordion .module__title h4,
.module--type-accordion .module__title h5,
.module--type-accordion .module__title h6 {
    margin-top: 0 !important;
}

.accordion-module__description {
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.accordion-module__row {
    border-bottom: 0 solid;
    border-top: 3px solid #e8e8e8;
    box-sizing: border-box;
    width: 100%;
}

.accordion-module__row:last-child {
    border-bottom: 3px solid #e8e8e8;
}

.yellow .accordion-module__row {
    border-color: #252525;
}

.accordion-module__row.no-border {
    border-width: 0;
}

.accordion-module__row.light-border {
    border-top-width: 1px;
}

.accordion-module__row.light-border:last-child {
    border-bottom-width: 1px;
}

.accordion-module__row.normal-border {
    border-top-width: 3px;
}

.accordion-module__row.normal-border:last-child {
    border-bottom-width: 3px;
}

.accordion-module__row.heavy-border {
    border-top-width: 5px;
}

.accordion-module__row.heavy-border:last-child {
    border-bottom-width: 5px;
}

.accordion-module__row.row_border_white {
    border-color: #fff;
}

.accordion-module__row.row_border_interactive_blue {
    border-color: #021bc3;
}

.accordion-module__row.row_border_light_gray {
    border-color: #e8e8e8;
}

.accordion-module__row.row_border_charcoal {
    border-color: #252525;
}

.accordion-module__row.row_border_navy_blue {
    border-color: #001e5f;
}

.accordion-module__row.row_border_yellow {
    border-color: #ffd82b;
}

.accordion-module__row.row_bg_white {
    background-color: #fff;
}

.accordion-module__row.row_bg_interactive_blue {
    background-color: #021bc3;
}

.accordion-module__row.row_bg_light_gray {
    background-color: #e8e8e8;
}

.accordion-module__row.row_bg_charcoal {
    background-color: #252525;
}

.accordion-module__row.row_bg_navy_blue {
    background-color: #001e5f;
}

.accordion-module__row.row_bg_yellow {
    background-color: #ffd82b;
}

.accordion-module__row.row_text_white,
.accordion-module__row.row_text_white p {
    color: #fff;
}

.accordion-module__row.row_text_interactive_blue,
.accordion-module__row.row_text_interactive_blue p {
    color: #021bc3;
}

.accordion-module__row.row_text_light_gray,
.accordion-module__row.row_text_light_gray p {
    color: #e8e8e8;
}

.accordion-module__row.row_text_charcoal,
.accordion-module__row.row_text_charcoal p {
    color: #252525;
}

.accordion-module__row.row_text_navy_blue,
.accordion-module__row.row_text_navy_blue p {
    color: #001e5f;
}

.accordion-module__row.row_text_yellow,
.accordion-module__row.row_text_yellow p {
    color: #ffd82b;
}

.a-row__button span {
    display: block;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.a-row__button span:before {
    background-color: #021bc3;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    transform: scaleX(0);
    transform-origin: left top;
    transition: transform 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.a-row__button:focus span:before,
.a-row__button:hover span:before {
    transform: scaleX(1);
}

.a-row__button {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    min-height: 3.25em;
    position: relative;
    text-align: left;
    width: 100%;
}

.a-row__button.icon_color_white:after {
    color: #fff;
}

.a-row__button.icon_color_yellow:after {
    color: #ffd82b;
}

.a-row__button.icon_color_navy:after {
    color: #001e5f;
}

.a-row__button.icon_color_grey:after {
    color: #f4f4f4;
}

.a-row__button.icon_color_charcoal:after {
    color: #252525;
}

.a-row__button p {
    margin-bottom: 0 !important;
}

.a-row__button:hover span {
    color: #021bc3;
}

.a-row__button:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 1.5rem;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    text-rendering: auto;
    text-transform: none;
    top: 0.9em;
    transition: all 0.15s ease-in-out;
}

.a-row__button.no-icon:after {
    content: "";
}

.a-row__button.plus-icon:after {
    content: "\+" /"";
}

.a-row__button.chevron-icon:after {
    content: "\f078" /"";
}

.a-row__button.triangle-icon:after {
    content: "\f0d7" /"";
}

.a-row__button.left-icon {
    padding: 1.125rem 0.75rem 1.125rem 2.5rem;
}

.a-row__button.left-icon:after {
    left: 0.5rem;
}

.a-row__button.right-icon {
    padding: 1.125rem 3.5rem 1.125rem 0.75rem;
}

.a-row__button.right-icon:after {
    right: 0.5rem;
    transform: rotate(0deg);
}

.a-row__button.row_text_white,
.a-row__button.row_text_white p {
    color: #fff;
}

.a-row__button.row_text_interactive_blue,
.a-row__button.row_text_interactive_blue p {
    color: #021bc3;
}

.a-row__button.row_text_light_gray,
.a-row__button.row_text_light_gray p {
    color: #e8e8e8;
}

.a-row__button.row_text_charcoal,
.a-row__button.row_text_charcoal p {
    color: #252525;
}

.a-row__button.row_text_navy_blue,
.a-row__button.row_text_navy_blue p {
    color: #001e5f;
}

.a-row__button.row_text_yellow,
.a-row__button.row_text_yellow p {
    color: #ffd82b;
}

.a-row__button.row_bg_hover_white:hover {
    background-color: #fff;
}

.a-row__button.row_bg_hover_interactive_blue:hover {
    background-color: #021bc3;
}

.a-row__button.row_bg_hover_interactive_blue:hover span:before {
    background: #fff;
}

.a-row__button.row_bg_hover_interactive_blue:hover p {
    color: #fff;
}

.a-row__button.row_bg_hover_light_gray:hover {
    background-color: #e8e8e8;
}

.a-row__button.row_bg_hover_charcoal:hover {
    background-color: #252525;
}

.a-row__button.row_bg_hover_charcoal:hover span:before {
    background: #fff;
}

.a-row__button.row_bg_hover_charcoal:hover p {
    color: #fff;
}

.a-row__button.row_bg_hover_navy_blue:hover {
    background-color: #001e5f;
}

.a-row__button.row_bg_hover_navy_blue:hover span:before {
    background: #fff;
}

.a-row__button.row_bg_hover_navy_blue:hover p {
    color: #fff;
}

.a-row__button.row_bg_hover_yellow:hover {
    background-color: #ffd82b;
}

.a-row__button.row_text_hover_white:hover,
.a-row__button.row_text_hover_white:hover p {
    color: #fff;
}

.a-row__button.row_text_hover_interactive_blue:hover,
.a-row__button.row_text_hover_interactive_blue:hover p {
    color: #021bc3;
}

.a-row__button.row_text_hover_light_gray:hover,
.a-row__button.row_text_hover_light_gray:hover p {
    color: #e8e8e8;
}

.a-row__button.row_text_hover_charcoal:hover,
.a-row__button.row_text_hover_charcoal:hover p {
    color: #252525;
}

.a-row__button.row_text_hover_navy_blue:hover,
.a-row__button.row_text_hover_navy_blue:hover p {
    color: #001e5f;
}

.a-row__button.row_text_hover_yellow:hover,
.a-row__button.row_text_hover_yellow:hover p {
    color: #ffd82b;
}

.accordion-module__row.acc-active .a-row__button:after,
.accordion-module__row[open] .a-row__button:after {
    transform: rotate(180deg);
}

.a-row__container {
    opacity: 0;
    overflow: hidden;
    transition: opacity 0.3s;
}

.a-row__container.t-content p {
    padding: 0 0.75rem 0 1.5rem;
}

.a-row__container.t-content> :last-child {
    margin-bottom: 2rem;
}

.module--type-accordion.slide .accordion-module__row.acc-enhanced .a-row__container {
    max-height: 0;
}

.accordion-module__row.acc-active .a-row__container,
.accordion-module__row[open] .a-row__container {
    opacity: 1;
    transition: opacity 0.3s;
}

.a-row__container ol,
.a-row__container ul {
    margin-bottom: 30px;
    padding-left: 1.25rem;
}

.row_text_white .a-row__container .t-content p,
.row_text_white .a-row__container .t-content p a {
    color: #fff;
}

.row_text_interactive_blue .a-row__container .t-content p,
.row_text_interactive_blue .a-row__container .t-content p a {
    color: #021bc3;
}

.row_text_light_gray .a-row__container .t-content p {
    color: #e8e8e8;
}

.row_text_light_gray .a-row__container .t-content p a {
    color: #021bc3;
}

.row_text_charcoal .a-row__container .t-content p {
    color: #252525;
}

.row_text_charcoal .a-row__container .t-content p a {
    color: #021bc3;
}

.row_text_navy_blue .a-row__container .t-content p {
    color: #001e5f;
}

.row_text_navy_blue .a-row__container .t-content p a {
    color: #021bc3;
}

.row_text_yellow .a-row__container .t-content p {
    color: #ffd82b;
}

.row_text_yellow .a-row__container .t-content p a {
    color: #021bc3;
}

.a-row__content {
    padding-bottom: 2rem;
}

.accordion {
    --bs-accordion-color: #212529;
    --bs-accordion-bg: #fff;
    --bs-accordion-transition: color 0.15s ease-in-out,
        background-color 0.15s ease-in-out, border-color 0.15s ease-in-out,
        box-shadow 0.15s ease-in-out, border-radius 0.15s ease;
    --bs-accordion-btn-icon: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23212529' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708'/%3E%3C/svg%3E");
    --bs-accordion-btn-icon-width: 1.25rem;
    --bs-accordion-btn-icon-transition: transform 0.2s ease-in-out;
}

.module--type-accordion_new {
    position: relative;
}

.module--type-accordion_new .accordion-button {
    align-items: center;
    background-color: inherit;
    border: 0;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    gap: 1rem;
    overflow-anchor: none;
    position: relative;
    text-align: left;
    transition: var(--bs-accordion-transition);
    width: 100%;
}

.module--type-accordion_new .accordion-button:after {
    background-image: var(--bs-accordion-btn-icon);
    background-repeat: no-repeat;
    background-size: var(--bs-accordion-btn-icon-width);
    content: "";
    flex-shrink: 0;
    height: var(--bs-accordion-btn-icon-width);
    margin-left: auto;
    transition: var(--bs-accordion-btn-icon-transition);
    width: var(--bs-accordion-btn-icon-width);
}

.module--type-accordion_new .accordion-item {
    background-color: var(--bs-accordion-bg);
    box-sizing: border-box;
    color: var(--bs-accordion-color);
    display: block;
    width: 100%;
}

.module--type-accordion_new .accordion-header {
    box-sizing: border-box;
    margin: 0;
    width: 100%;
}

.module--type-accordion_new.bg-gray,
.module--type-accordion_new.bg-gray .accordion-header,
.module--type-accordion_new.bg-gray .row-styles .accordion-group .accordion-item .accordion-collapse .accordion-body {
    background-color: #f4f4f4;
}

.module--type-accordion_new.bg-gray.decorative .accordion-header,
.module--type-accordion_new.bg-gray.decorative .row-styles .accordion-group .accordion-item .accordion-collapse .accordion-body {
    background-color: #fff;
}

.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion {
    align-items: center;
    border: 2px solid #021bc3;
    box-shadow: 0 4px 0 -2px #939fd7, 0 8px 0 -4px #d4d9ef;
    display: flex;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    margin-left: auto;
    margin-top: 10px;
    padding: 7px;
    transition: box-shadow 0.5s;
    visibility: hidden;
    width: 145px;
}

.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion:after {
    background-image: none;
    color: #021bc3;
    content: "+";
    font-family: Font Awesome\6 Pro;
    font-weight: 900;
    height: auto;
    margin-left: auto;
    width: auto;
}

.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion.expanded {
    box-shadow: 0 8px 0 -4px #939fd7, 0 16px 0 -8px #d4d9ef;
}

.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion.expanded:after {
    content: "";
}

.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion:focus,
.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion:hover {
    background-color: #021bc3;
    color: #fff;
}

.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion:focus:after,
.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion:hover:after {
    color: #fff;
}

.module--type-accordion_new .accordion-module__container .row-styles .btn-accordion.acc-active {
    visibility: visible;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group {
    padding: 1.5rem 0 3rem;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item {
    border: none;
    border-radius: 0;
    box-shadow: 0 1px 0 0 #e8e8e8;
    margin-bottom: 5px;
    transition: var(--bs-accordion-transition);
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header:focus .accordion-button,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header:focus .fa-solid:before,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header:hover .accordion-button,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header:hover .fa-solid:before {
    color: #021bc3;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header .fa-solid:before {
    transition: var(--bs-accordion-transition);
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header i {
    align-self: flex-start;
    font-size: 1.125rem;
    margin-right: 15px;
    padding-top: 24px;
    width: 26px;
    z-index: 1;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header .accordion-button {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    padding: 1rem 0;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header .accordion-button:after {
    align-self: flex-start;
    background-image: none;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.5rem;
    font-weight: 900;
    height: auto;
    padding: 0 0.25rem;
    width: auto;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header:focus {
    outline: none;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-body {
    background-color: inherit;
    border: none;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    padding: 0 0 1rem;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-body p:not(:first-of-type) {
    margin-top: 1rem;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item.acc-active .accordion-header:focus .accordion-button:after,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item.acc-active .accordion-header:hover .accordion-button:after,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item[open] .accordion-header:focus .accordion-button:after,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item[open] .accordion-header:hover .accordion-button:after {
    outline: 5px auto -webkit-focus-ring-color;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item.acc-active .accordion-button:after,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item[open] .accordion-button:after {
    content: "\f307" /"";
    transform: scaleY(-1);
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item:not(.acc-active):focus-within,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item:not(.acc-active):hover,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item:not([open]):focus-within,
.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item:not([open]):hover {
    box-shadow: 0 2px 0 0 #021bc3;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-title {
    align-items: center;
    color: #252525;
    display: flex;
    font-size: 1.65rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    width: auto;
}

.module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-title:after {
    border-bottom: 1px dashed #252525;
    content: "";
    flex: 1;
    margin-left: 1rem;
}

.module--type-accordion_new.decorative .accordion-module__container .row-styles {
    background: #fff;
    border: 1px solid #e8e8e8;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    position: relative;
}

.module--type-accordion_new.decorative .accordion-module__container .row-styles:after {
    background-image: url(../images/bottom-right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -60px;
    content: "";
    height: 141px;
    position: absolute;
    right: -60px;
    width: 111px;
    z-index: -1;
}

.module--type-accordion_new.decorative .accordion-module__container .row-styles:before {
    background-image: url(../images/top-left.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 252px;
    left: -80px;
    position: absolute;
    top: -60px;
    width: 224px;
    z-index: -1;
}

.module--type-accordion_new.row_numbered .accordion-module__container .row-styles .accordion-group {
    counter-reset: css-counter 0;
    list-style-type: none;
}

.module--type-accordion_new.row_numbered .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header .accordion-button {
    counter-increment: css-counter 1;
}

.module--type-accordion_new.row_numbered .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header .accordion-button:hover:before {
    background: #021bc3;
}

.module--type-accordion_new.row_numbered .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header .accordion-button:before {
    background-color: #252525;
    color: #fff;
    content: counter(css-counter) / "";
    font-family: inter-variable, sans-serif;
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 700;
    height: 30px;
    line-height: 1.5;
    margin-right: 0.5rem;
    min-width: 30px;
    text-align: center;
    width: 30px;
}

.module--type-accordion_new.row_icons .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-collapse .accordion-body {
    padding-left: 2.5rem;
}

.card-grid-module__header {
    margin-bottom: 3rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
}

.card-grid-module__header .module__title {
    font-family: ivypresto-text, serif;
    position: relative;
}

.card-grid-module__header .module__title:before {
    background-color: #001e5f;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: -16px;
    width: 79px;
}

.card-grid-module__loop {
    position: relative;
}

.card-grid-module__loop .card-item__description ul {
    margin: 0;
}

.card-grid-module__loop .white *,
.card-grid-module__loop .white .localist-widget .lwn a,
.card-grid-module__loop .white h1,
.card-grid-module__loop .white h2,
.card-grid-module__loop .white h3,
.card-grid-module__loop .white h4,
.card-grid-module__loop .white h5,
.card-grid-module__loop .white h6,
.card-grid-module__loop .white p,
.localist-widget .lwn .card-grid-module__loop .white a {
    color: #252525 !important;
}

.card-grid-module__loop .white a {
    color: #021bc3 !important;
}

.card-grid-module__loop .white .card_cta {
    color: #252525;
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

@supports (-ms-ime-align: auto) {
    .card-grid-module__loop .white .card_cta {
        display: table !important;
        width: auto;
    }
}

.card-grid-module__loop .white .card_cta:after {
    background-color: #252525;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.card-grid-module__loop .white .card_cta:before {
    color: #000;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.card-grid-module__loop .yellow *,
.card-grid-module__loop .yellow .localist-widget .lwn a,
.card-grid-module__loop .yellow h1,
.card-grid-module__loop .yellow h2,
.card-grid-module__loop .yellow h3,
.card-grid-module__loop .yellow h4,
.card-grid-module__loop .yellow h5,
.card-grid-module__loop .yellow h6,
.card-grid-module__loop .yellow p,
.localist-widget .lwn .card-grid-module__loop .yellow a {
    color: #252525 !important;
}

.card-grid-module__loop .yellow a {
    box-shadow: 0 1px 0 0 #252525 !important;
    color: #252525 !important;
}

.card-grid-module__loop .yellow .card_cta {
    color: #252525;
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

@supports (-ms-ime-align: auto) {
    .card-grid-module__loop .yellow .card_cta {
        display: table !important;
        width: auto;
    }
}

.card-grid-module__loop .yellow .card_cta:after {
    background-color: #252525;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.card-grid-module__loop .yellow .card_cta:before {
    color: #000;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.card-grid-module__loop .navy *,
.card-grid-module__loop .navy .localist-widget .lwn a,
.card-grid-module__loop .navy a,
.card-grid-module__loop .navy h1,
.card-grid-module__loop .navy h2,
.card-grid-module__loop .navy h3,
.card-grid-module__loop .navy h4,
.card-grid-module__loop .navy h5,
.card-grid-module__loop .navy h6,
.card-grid-module__loop .navy p,
.localist-widget .lwn .card-grid-module__loop .navy a {
    color: #fff !important;
}

.card-grid-module__loop .navy .card_cta {
    color: #fff;
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

@supports (-ms-ime-align: auto) {
    .card-grid-module__loop .navy .card_cta {
        display: table !important;
        width: auto;
    }
}

.card-grid-module__loop .navy .card_cta:after {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.card-grid-module__loop .navy .card_cta:before {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.card-grid-module__loop .grey *,
.card-grid-module__loop .grey .localist-widget .lwn a,
.card-grid-module__loop .grey h1,
.card-grid-module__loop .grey h2,
.card-grid-module__loop .grey h3,
.card-grid-module__loop .grey h4,
.card-grid-module__loop .grey h5,
.card-grid-module__loop .grey h6,
.card-grid-module__loop .grey p,
.localist-widget .lwn .card-grid-module__loop .grey a {
    color: #252525 !important;
}

.card-grid-module__loop .grey a {
    color: #021bc3 !important;
}

.card-grid-module__loop .grey .card_cta {
    color: #252525;
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

@supports (-ms-ime-align: auto) {
    .card-grid-module__loop .grey .card_cta {
        display: table !important;
        width: auto;
    }
}

.card-grid-module__loop .grey .card_cta:after {
    background-color: #021bc3;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.card-grid-module__loop .grey .card_cta:before {
    color: #000;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.card-grid-module__loop .charcoal *,
.card-grid-module__loop .charcoal .localist-widget .lwn a,
.card-grid-module__loop .charcoal a,
.card-grid-module__loop .charcoal h1,
.card-grid-module__loop .charcoal h2,
.card-grid-module__loop .charcoal h3,
.card-grid-module__loop .charcoal h4,
.card-grid-module__loop .charcoal h5,
.card-grid-module__loop .charcoal h6,
.card-grid-module__loop .charcoal p,
.localist-widget .lwn .card-grid-module__loop .charcoal a {
    color: #fff !important;
}

.card-grid-module__loop .charcoal .card_cta {
    box-shadow: none;
    color: #fff;
    display: block;
    font-size: 1.15rem;
    font-weight: 600;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

@supports (-ms-ime-align: auto) {
    .card-grid-module__loop .charcoal .card_cta {
        display: table !important;
        width: auto;
    }
}

.card-grid-module__loop .charcoal .card_cta:after {
    background-color: #ffd82b;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.card-grid-module__loop .charcoal .card_cta:before {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.card-grid-module__loop .hover_white:hover *,
.card-grid-module__loop .hover_white:hover .localist-widget .lwn a,
.card-grid-module__loop .hover_white:hover h1,
.card-grid-module__loop .hover_white:hover h2,
.card-grid-module__loop .hover_white:hover h3,
.card-grid-module__loop .hover_white:hover h4,
.card-grid-module__loop .hover_white:hover h5,
.card-grid-module__loop .hover_white:hover h6,
.card-grid-module__loop .hover_white:hover p,
.localist-widget .lwn .card-grid-module__loop .hover_white:hover a {
    color: #252525 !important;
}

.card-grid-module__loop .hover_white:hover a {
    color: #021bc3;
}

.card-grid-module__loop .hover_yellow:hover {
    background: #ffd82b !important;
}

.card-grid-module__loop .hover_yellow:hover *,
.card-grid-module__loop .hover_yellow:hover .localist-widget .lwn a,
.card-grid-module__loop .hover_yellow:hover h1,
.card-grid-module__loop .hover_yellow:hover h2,
.card-grid-module__loop .hover_yellow:hover h3,
.card-grid-module__loop .hover_yellow:hover h4,
.card-grid-module__loop .hover_yellow:hover h5,
.card-grid-module__loop .hover_yellow:hover h6,
.localist-widget .lwn .card-grid-module__loop .hover_yellow:hover a {
    color: #252525 !important;
}

.card-grid-module__loop .hover_yellow:hover a {
    color: #021bc3;
}

.card-grid-module__loop .hover_yellow:hover .card_cta {
    background: #252525;
    color: #fff !important;
    padding: 5px 35px 5px 20px;
}

.card-grid-module__loop .hover_yellow:hover .card_cta:after {
    background-color: #252525;
}

.card-grid-module__loop .hover_yellow:hover .card_cta:before {
    color: #fff !important;
    right: 10px;
}

.card-grid-module__loop .hover_blue:hover {
    background: #021bc3 !important;
}

.card-grid-module__loop .hover_blue:hover *,
.card-grid-module__loop .hover_blue:hover .localist-widget .lwn a,
.card-grid-module__loop .hover_blue:hover h1,
.card-grid-module__loop .hover_blue:hover h2,
.card-grid-module__loop .hover_blue:hover h3,
.card-grid-module__loop .hover_blue:hover h4,
.card-grid-module__loop .hover_blue:hover h5,
.card-grid-module__loop .hover_blue:hover h6,
.card-grid-module__loop .hover_blue:hover p,
.localist-widget .lwn .card-grid-module__loop .hover_blue:hover a {
    color: #fff !important;
}

.card-grid-module__loop .hover_blue:hover a {
    color: #fff;
}

.card-grid-module__loop .hover_blue:hover .card_cta {
    background: #fff;
    color: #021bc3 !important;
    padding: 5px 35px 5px 20px;
}

.card-grid-module__loop .hover_blue:hover .card_cta:after {
    background-color: #fff;
}

.card-grid-module__loop .hover_blue:hover .card_cta:before {
    color: #021bc3 !important;
    right: 10px;
}

.card-grid-module__loop .hover_grey:hover {
    background: #e8e8e8 !important;
}

.card-grid-module__loop .hover_grey:hover *,
.card-grid-module__loop .hover_grey:hover .localist-widget .lwn a,
.card-grid-module__loop .hover_grey:hover h1,
.card-grid-module__loop .hover_grey:hover h2,
.card-grid-module__loop .hover_grey:hover h3,
.card-grid-module__loop .hover_grey:hover h4,
.card-grid-module__loop .hover_grey:hover h5,
.card-grid-module__loop .hover_grey:hover h6,
.card-grid-module__loop .hover_grey:hover p,
.localist-widget .lwn .card-grid-module__loop .hover_grey:hover a {
    color: #252525 !important;
}

.card-grid-module__loop .hover_grey:hover a {
    color: #021bc3;
}

.card-grid-module__loop .hover_grey:hover .card_cta {
    background: #ffd82b;
    color: #252525 !important;
    padding: 5px 35px 5px 20px;
}

.card-grid-module__loop .hover_grey:hover .card_cta:after {
    background-color: #ffd82b !important;
}

.card-grid-module__loop .hover_grey:hover .card_cta:before {
    color: #252525 !important;
    right: 10px;
}

.card-grid-module__loop .hover_charcoal:hover {
    background: #252525 !important;
}

.card-grid-module__loop .hover_charcoal:hover *,
.card-grid-module__loop .hover_charcoal:hover .localist-widget .lwn a,
.card-grid-module__loop .hover_charcoal:hover h1,
.card-grid-module__loop .hover_charcoal:hover h2,
.card-grid-module__loop .hover_charcoal:hover h3,
.card-grid-module__loop .hover_charcoal:hover h4,
.card-grid-module__loop .hover_charcoal:hover h5,
.card-grid-module__loop .hover_charcoal:hover h6,
.card-grid-module__loop .hover_charcoal:hover p,
.localist-widget .lwn .card-grid-module__loop .hover_charcoal:hover a {
    color: #fff !important;
}

.card-grid-module__loop .hover_charcoal:hover a {
    color: #fff;
}

.card-grid-module__loop .hover_charcoal:hover .card_cta {
    background: #021bc3;
    color: #fff !important;
    padding: 5px 35px 5px 20px;
}

.card-grid-module__loop .hover_charcoal:hover .card_cta:after {
    background-color: #fff !important;
}

.card-grid-module__loop .hover_charcoal:hover .card_cta:before {
    color: #fff !important;
    right: 10px;
}

.card-grid-module__loop .button--blue:hover,
.card-grid-module__loop .button--blue:hover:after {
    color: #fff !important;
}

.card-grid-module__loop .button--yellow {
    box-shadow: none !important;
}

.card-grid-module__loop .button--yellow:after {
    color: #fff !important;
}

.card-grid-module__loop .button--yellow:hover,
.card-grid-module__loop .button--yellow:hover:after {
    color: #252525 !important;
}

.card-grid-module__loop .ghost-button--black:hover,
.card-grid-module__loop .ghost-button--black:hover:after {
    color: #fff !important;
}

.card-grid-module__card {
    margin-bottom: 3rem;
    transition: 0.3s;
}

.card-grid-module__card .card-item__image {
    background-position: top;
    background-size: cover;
    height: 100%;
    margin-bottom: 0;
    object-fit: cover;
    position: relative;
    transition: 0.4s;
}

.card-grid-module__card .card-item__image:before {
    content: "";
    display: block;
    padding-bottom: 100%;
}

.card-grid-module__card .card-item__image a {
    display: block;
    inset: 0;
    position: absolute;
}

.card-grid-module__card .card-item__title {
    color: #252525;
    margin: 0;
}

.card-grid-module__card .card-item__text {
    margin-top: 0.5rem;
}

.card-grid-module__card .card-item__cta {
    margin-top: 1.5rem;
}

.card-grid-module__card.text_top .card-image__overlay {
    justify-content: flex-start;
}

.card-grid-module__card.text_middle .card-image__overlay {
    justify-content: center;
}

.card-grid-module__card.text_bottom .card-image__overlay {
    justify-content: flex-end;
}

.card-grid-module__card.overlay_white .card_image .card-image__overlay {
    background-color: hsla(0, 0%, 100%, 0.45);
}

.card-grid-module__card.overlay_white .card_image .card-image__overlay .localist-widget .lwn a,
.card-grid-module__card.overlay_white .card_image .card-image__overlay h2,
.card-grid-module__card.overlay_white .card_image .card-image__overlay h3,
.card-grid-module__card.overlay_white .card_image .card-image__overlay h4,
.card-grid-module__card.overlay_white .card_image .card-image__overlay h5,
.card-grid-module__card.overlay_white .card_image .card-image__overlay h6,
.card-grid-module__card.overlay_white .card_image .card-image__overlay ol,
.card-grid-module__card.overlay_white .card_image .card-image__overlay p,
.card-grid-module__card.overlay_white .card_image .card-image__overlay ul,
.localist-widget .lwn .card-grid-module__card.overlay_white .card_image .card-image__overlay a {
    color: #252525 !important;
}

.card-grid-module__card.overlay_grey .card_image .card-image__overlay {
    background-color: hsla(0, 0%, 96%, 0.45);
}

.card-grid-module__card.overlay_grey .card_image .card-image__overlay .localist-widget .lwn a,
.card-grid-module__card.overlay_grey .card_image .card-image__overlay h2,
.card-grid-module__card.overlay_grey .card_image .card-image__overlay h3,
.card-grid-module__card.overlay_grey .card_image .card-image__overlay h4,
.card-grid-module__card.overlay_grey .card_image .card-image__overlay h5,
.card-grid-module__card.overlay_grey .card_image .card-image__overlay h6,
.card-grid-module__card.overlay_grey .card_image .card-image__overlay ol,
.card-grid-module__card.overlay_grey .card_image .card-image__overlay p,
.card-grid-module__card.overlay_grey .card_image .card-image__overlay ul,
.localist-widget .lwn .card-grid-module__card.overlay_grey .card_image .card-image__overlay a {
    color: #252525 !important;
}

.card-grid-module__card.overlay_yellow .card_image .card-image__overlay {
    background-color: rgba(255, 199, 10, 0.45);
}

.card-grid-module__card.overlay_yellow .card_image .card-image__overlay .localist-widget .lwn a,
.card-grid-module__card.overlay_yellow .card_image .card-image__overlay h2,
.card-grid-module__card.overlay_yellow .card_image .card-image__overlay h3,
.card-grid-module__card.overlay_yellow .card_image .card-image__overlay h4,
.card-grid-module__card.overlay_yellow .card_image .card-image__overlay h5,
.card-grid-module__card.overlay_yellow .card_image .card-image__overlay h6,
.card-grid-module__card.overlay_yellow .card_image .card-image__overlay ol,
.card-grid-module__card.overlay_yellow .card_image .card-image__overlay p,
.card-grid-module__card.overlay_yellow .card_image .card-image__overlay ul,
.localist-widget .lwn .card-grid-module__card.overlay_yellow .card_image .card-image__overlay a {
    color: #252525 !important;
}

.card-grid-module__card.overlay_blue .card_image .card-image__overlay {
    background-color: rgba(40, 63, 175, 0.45);
}

.card-grid-module__card.overlay_blue .card_image .card-image__overlay .localist-widget .lwn a,
.card-grid-module__card.overlay_blue .card_image .card-image__overlay h2,
.card-grid-module__card.overlay_blue .card_image .card-image__overlay h3,
.card-grid-module__card.overlay_blue .card_image .card-image__overlay h4,
.card-grid-module__card.overlay_blue .card_image .card-image__overlay h5,
.card-grid-module__card.overlay_blue .card_image .card-image__overlay h6,
.card-grid-module__card.overlay_blue .card_image .card-image__overlay ol,
.card-grid-module__card.overlay_blue .card_image .card-image__overlay p,
.card-grid-module__card.overlay_blue .card_image .card-image__overlay ul,
.localist-widget .lwn .card-grid-module__card.overlay_blue .card_image .card-image__overlay a {
    color: #fff !important;
}

.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay {
    background-color: rgba(37, 37, 37, 0.45);
}

.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay .localist-widget .lwn a,
.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay h2,
.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay h3,
.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay h4,
.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay h5,
.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay h6,
.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay ol,
.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay p,
.card-grid-module__card.overlay_charcoal .card_image .card-image__overlay ul,
.localist-widget .lwn .card-grid-module__card.overlay_charcoal .card_image .card-image__overlay a {
    color: #fff !important;
}

.module.module--type-card_grid {
    overflow: hidden;
    position: relative;
}

.module.module--type-card_grid .media-text-module__image-wrap {
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

.module.module--type-card_grid .media-text-module__image-wrap img {
    opacity: 0.45;
    width: 100%;
}

.module.module--type-card_grid.width-large .card-grid-module__description {
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    width: 100%;
}

.module.module--type-card_grid.module--layout-1 .card-grid-module__card {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.module.module--type-card_grid.module--layout-2 .card-grid-module__loop {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, 100%);
    justify-content: space-between;
}

.module.module--type-card_grid.module--layout-2 .card-grid-module__card {
    flex: 0 0 100%;
    margin-bottom: 15px;
    max-width: 100%;
    width: 100%;
}

.module.module--type-card_grid.module--layout-2 .card-grid-module__card:nth-of-type(2n) {
    margin: 0 0 15px;
}

.module.module--type-card_grid.module--layout-3 .card-grid-module__loop {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, 100%);
    justify-content: space-between;
}

.module.module--type-card_grid.module--layout-3 .card-grid-module__card {
    margin-bottom: 15px;
}

.module.module--type-card_grid.module--layout-4 .card-grid-module__loop {
    display: grid;
    flex-wrap: wrap;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, 100%);
    justify-content: space-between;
}

.module.module--type-card_grid.module--layout-4 .card-grid-module__card {
    margin-bottom: 15px;
}

.module.module--type-card_grid .white {
    background: #fff;
}

.localist-widget .lwn .module.module--type-card_grid .white a,
.module.module--type-card_grid .white *,
.module.module--type-card_grid .white .localist-widget .lwn a,
.module.module--type-card_grid .white h1,
.module.module--type-card_grid .white h2,
.module.module--type-card_grid .white h3,
.module.module--type-card_grid .white h4,
.module.module--type-card_grid .white h5,
.module.module--type-card_grid .white h6,
.module.module--type-card_grid .white ol,
.module.module--type-card_grid .white p,
.module.module--type-card_grid .white ul {
    color: #252525;
}

.module.module--type-card_grid .yellow {
    background: #ffd82b;
}

.module.module--type-card_grid .yellow *,
.module.module--type-card_grid .yellow a,
.module.module--type-card_grid .yellow h1,
.module.module--type-card_grid .yellow h2,
.module.module--type-card_grid .yellow h3,
.module.module--type-card_grid .yellow h4,
.module.module--type-card_grid .yellow h5,
.module.module--type-card_grid .yellow h6,
.module.module--type-card_grid .yellow ol,
.module.module--type-card_grid .yellow p,
.module.module--type-card_grid .yellow ul {
    color: #252525;
}

.module.module--type-card_grid .navy {
    background: #001e5f;
}

.localist-widget .lwn .module.module--type-card_grid .navy a,
.module.module--type-card_grid .navy *,
.module.module--type-card_grid .navy .localist-widget .lwn a,
.module.module--type-card_grid .navy h1,
.module.module--type-card_grid .navy h2,
.module.module--type-card_grid .navy h3,
.module.module--type-card_grid .navy h4,
.module.module--type-card_grid .navy h5,
.module.module--type-card_grid .navy h6,
.module.module--type-card_grid .navy ol,
.module.module--type-card_grid .navy p,
.module.module--type-card_grid .navy ul {
    color: #fff;
}

.module.module--type-card_grid .grey {
    background: #f4f4f4;
}

.localist-widget .lwn .module.module--type-card_grid .grey a,
.module.module--type-card_grid .grey *,
.module.module--type-card_grid .grey .localist-widget .lwn a,
.module.module--type-card_grid .grey h1,
.module.module--type-card_grid .grey h2,
.module.module--type-card_grid .grey h3,
.module.module--type-card_grid .grey h4,
.module.module--type-card_grid .grey h5,
.module.module--type-card_grid .grey h6,
.module.module--type-card_grid .grey ol,
.module.module--type-card_grid .grey p,
.module.module--type-card_grid .grey ul {
    color: #252525;
}

.module.module--type-card_grid .charcoal {
    background: #252525;
}

.localist-widget .lwn .module.module--type-card_grid .charcoal a,
.module.module--type-card_grid .charcoal *,
.module.module--type-card_grid .charcoal .localist-widget .lwn a,
.module.module--type-card_grid .charcoal h1,
.module.module--type-card_grid .charcoal h2,
.module.module--type-card_grid .charcoal h3,
.module.module--type-card_grid .charcoal h4,
.module.module--type-card_grid .charcoal h5,
.module.module--type-card_grid .charcoal h6,
.module.module--type-card_grid .charcoal ol,
.module.module--type-card_grid .charcoal p,
.module.module--type-card_grid .charcoal ul {
    color: #fff;
}

.module.module--type-card_grid .module__title {
    color: #252525;
}

.module.module--type-card_grid .dark_grey .module__title,
.module.module--type-card_grid .dark_grey .text-module__content,
.module.module--type-card_grid .navy .module__title,
.module.module--type-card_grid .navy .text-module__content {
    color: #fff;
}

.module.module--type-card_grid .grey .module__title,
.module.module--type-card_grid .grey .text-module__content,
.module.module--type-card_grid .yellow .module__title,
.module.module--type-card_grid .yellow .text-module__content {
    color: #252525;
}

.card_image {
    overflow: hidden;
    position: relative;
}

.card_image picture {
    height: 100%;
}

.card_image .card-image__overlay {
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 15px;
    position: absolute;
    top: 0;
    width: 100%;
}

.img_text_top .card-image__overlay {
    justify-content: flex-start;
}

.img_text_middle .card-image__overlay {
    justify-content: center;
}

.img_text_bottom .card-image__overlay {
    justify-content: flex-end;
}

.card_content__wrapper {
    display: flex;
    flex-direction: column;
    height: auto;
    justify-content: center;
    padding: 30px 50px 30px 30px;
    position: relative;
    width: 100%;
}

.card_content__wrapper .card-item__title .localist-widget .lwn a,
.card_content__wrapper .card-item__title h2,
.card_content__wrapper .card-item__title h3,
.card_content__wrapper .card-item__title h4,
.card_content__wrapper .card-item__title h5,
.card_content__wrapper .card-item__title h6,
.localist-widget .lwn .card_content__wrapper .card-item__title a {
    margin-bottom: 0.5rem;
}

.card-item__description p {
    overflow-wrap: anywhere;
}

.card-item__description p a {
    display: inline;
}

.image_above,
.image_above a {
    display: flex;
    flex-direction: column;
}

.image_above .card_content__wrapper {
    display: inline-flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 30px 20px;
    position: relative;
    width: 100%;
}

.image_above .card_content__wrapper.no-content {
    margin: auto;
}

.image_above .card_image {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.image_above .card_image .card-item__image:before {
    padding-bottom: 66%;
}

.image_above.image_thumbnail .card_image {
    padding: 20px 20px 0;
}

.image_above.image_thumbnail .card_image .card-item__image {
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 115px;
    width: 100%;
}

.image_above.image_thumbnail .card_image .card-item__image:before {
    padding-bottom: 35%;
}

.image_above .card-item__description a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@supports (-ms-ime-align: auto) {
    .image_above .card-item__description a {
        display: table !important;
        width: auto;
    }
}

.image_below,
.image_below a {
    display: flex;
    flex-direction: column-reverse;
}

.image_below .card_content__wrapper {
    padding: 30px 20px;
}

.image_below .card_content__wrapper,
.image_below .card_image {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.image_below .card_image .card-item__image:before {
    padding-bottom: 66%;
}

.image_below.image_thumbnail .card_image {
    padding: 0 20px 20px;
}

.image_below.image_thumbnail .card_image .card-item__image {
    background-position: 0;
    background-repeat: no-repeat;
    background-size: 115px;
    width: 100%;
}

.image_below.image_thumbnail .card_image .card-item__image:before {
    padding-bottom: 35%;
}

.image_below .card-item__description a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@supports (-ms-ime-align: auto) {
    .image_below .card-item__description a {
        display: table !important;
        width: auto;
    }
}

.image_left,
.image_left a {
    display: flex;
    flex-direction: column;
}

.image_left .card_content__wrapper {
    height: auto;
    padding: 30px 20px;
}

.image_left .card_content__wrapper,
.image_left .card_image {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.image_left.image_thumbnail .card_content__wrapper,
.image_left.image_thumbnail .card_image {
    width: 100%;
}

.image_left.image_thumbnail .card_image .card-item__image {
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.image_left.image_icon .card_content__wrapper {
    width: 100%;
}

.image_left.image_icon .card_image {
    padding: 30px 15px;
    width: 100%;
}

.image_left.image_icon .card_image .card-item__image {
    background-repeat: no-repeat;
    background-size: contain;
}

.image_left .card-item__description a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@supports (-ms-ime-align: auto) {
    .image_left .card-item__description a {
        display: table !important;
        width: auto;
    }
}

.image_right,
.image_right a {
    display: flex;
    flex-direction: column-reverse;
}

.image_right .card_content__wrapper {
    display: inline-flex;
    flex-direction: column;
    height: auto;
    padding: 30px 20px;
    width: 100%;
}

.image_right .card_content__wrapper .localist-widget .lwn a,
.image_right .card_content__wrapper h2,
.image_right .card_content__wrapper h3,
.image_right .card_content__wrapper h4,
.image_right .card_content__wrapper h5,
.image_right .card_content__wrapper h6,
.localist-widget .lwn .image_right .card_content__wrapper a {
    margin-bottom: 0.5rem !important;
}

.image_right .card_image {
    display: inline-flex;
    flex-direction: column;
    width: 100%;
}

.image_right.image_thumbnail .card_content__wrapper,
.image_right.image_thumbnail .card_image {
    width: 100%;
}

.image_right.image_thumbnail .card_image .card-item__image {
    background-repeat: no-repeat;
    background-size: cover;
    object-fit: cover;
}

.image_right.image_icon .card_content__wrapper {
    width: 70%;
}

.image_right.image_icon .card_image {
    padding: 30px 15px;
    width: 100%;
}

.image_right.image_icon .card_image .card-item__image {
    background-repeat: no-repeat;
    background-size: contain;
}

.image_right .card-item__description .localist-widget .lwn a,
.image_right .card-item__description h2,
.image_right .card-item__description h3,
.image_right .card-item__description h4,
.image_right .card-item__description h5,
.image_right .card-item__description h6,
.localist-widget .lwn .image_right .card-item__description a {
    margin-bottom: 1rem !important;
}

.image_right .card-item__description a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@supports (-ms-ime-align: auto) {
    .image_right .card-item__description a {
        display: table !important;
        width: auto;
    }
}

.card-grid-module__card .card-grid-module__wrapping_link {
    border-bottom: 2px solid #021bc3;
    box-shadow: none !important;
    display: flex;
    height: 100%;
    position: relative;
    width: 100%;
}

.hover_arrow .card_content__wrapper {
    padding-right: 60px;
}

.hover_arrow .card-grid-module__wrapping_link:hover .card_content__wrapper:after {
    background-color: #fff;
    color: #021bc3;
}

.hover_arrow .card-grid-module__wrapping_link .card_content__wrapper:after,
.hover_arrow.image_full .card_content__wrapper:after {
    background-color: #021bc3;
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    padding: 12px 15px;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.hover_arrow.image_full .card_content__wrapper:hover:after {
    background-color: #fff;
    color: #021bc3;
}

.hover_arrow.image_full .card-grid-module__wrapping_link:after {
    display: none;
}

.hover .hover_fade:hover .card_image .card-item__image {
    transform: scale(1.1);
}

.module--type-card_grid_new.bg-white {
    background-color: #fff;
}

.module--type-card_grid_new.bg-gray {
    background-color: #f4f4f4;
}

.module--type-card_grid_new.bg-navy {
    background-color: #001e5f;
}

.module--type-card_grid_new.bg-navy .desc_section * {
    color: #fff;
}

.module--type-card_grid_new.bg-yellow {
    background-color: #ffd82b;
}

.module--type-card_grid_new.bg-charcoal {
    background-color: #252525;
}

.module--type-card_grid_new.bg-charcoal .desc_section * {
    color: #fff;
}

.module--type-card_grid_new .module_desc,
.module--type-card_grid_new .text-module__header {
    margin-bottom: 1.25rem;
}

.module--type-card_grid_new .module_desc.bg-charcoal *,
.module--type-card_grid_new .module_desc.bg-navy * {
    color: #fff;
}

.module--type-card_grid_new.content-width {
    margin-left: auto;
    margin-right: auto;
}

.module--type-card_grid_new.content-width .card-grid,
.module--type-card_grid_new.content-width header {
    max-width: 66.375rem;
}

.module--type-card_grid_new .card-grid {
    display: grid;
    gap: 1.25rem;
    grid-auto-rows: auto;
    grid-template-columns: repeat(12, 1fr);
}

.module--type-card_grid_new .card-grid a.card-grid-item {
    border-bottom: 2px solid #021bc3;
    height: 100%;
    position: relative;
}

.module--type-card_grid_new .card-grid a.card-grid-item:hover .ghost-button--blue {
    background: #021bc3;
    border-color: #021bc3;
    color: #fff;
    padding: 0.125rem 0.5rem 0;
}

.module--type-card_grid_new .card-grid a.card-grid-item:hover .ghost-button--blue:after {
    color: #fff;
}

.module--type-card_grid_new .card-grid a.card-grid-item:hover .ghost-button--white {
    background: #fff;
    border-color: #fff;
    color: #021bc3;
    padding: 0.125rem 0.5rem 0;
}

.module--type-card_grid_new .card-grid a.card-grid-item:hover .ghost-button--white:after {
    color: #021bc3;
}

.module--type-card_grid_new .card-grid .card-grid-item {
    display: flex;
    flex-direction: column;
    grid-column: span 12;
    height: 100%;
    justify-content: center;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-white {
    background-color: #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-gray {
    background-color: #f4f4f4;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-navy {
    background-color: #001e5f;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-yellow {
    background-color: #ffd82b;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-charcoal {
    background-color: #252525;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-charcoal *,
.module--type-card_grid_new .card-grid .card-grid-item.bg-navy * {
    color: #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-charcoal * .card-grid-content a,
.module--type-card_grid_new .card-grid .card-grid-item.bg-navy * .card-grid-content a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-charcoal * .card-grid-content a:hover,
.module--type-card_grid_new .card-grid .card-grid-item.bg-navy * .card-grid-content a:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-charcoal .card-grid-item-cta,
.module--type-card_grid_new .card-grid .card-grid-item.bg-navy .card-grid-item-cta {
    border-bottom: 2px solid #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item.bg-charcoal .card-grid-item-cta:after,
.module--type-card_grid_new .card-grid .card-grid-item.bg-navy .card-grid-item-cta:after {
    color: #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-white {
    background-color: #fff !important;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-gray {
    background-color: #f4f4f4 !important;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-navy {
    background-color: #021bc3 !important;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-yellow {
    background-color: #ffd82b !important;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-charcoal {
    background-color: #252525 !important;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-charcoal *,
.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-navy * {
    color: #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-charcoal .card-grid-item-arrow,
.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-navy .card-grid-item-arrow {
    color: #fff !important;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-charcoal .ghost-button--blue,
.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-navy .ghost-button--blue {
    background-color: #fff;
    color: #021bc3 !important;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-charcoal .ghost-button--blue:after,
.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-navy .ghost-button--blue:after {
    color: #021bc3;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-gray *,
.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-white *,
.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-yellow * {
    color: #252525;
}

.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-gray .card-grid-item-arrow,
.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-white .card-grid-item-arrow,
.module--type-card_grid_new .card-grid .card-grid-item:hover.hover-yellow .card-grid-item-arrow {
    color: #021bc3 !important;
}

.module--type-card_grid_new .card-grid .card-grid-item.icon-white i {
    color: #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item.icon-gray i {
    color: #252525;
}

.module--type-card_grid_new .card-grid .card-grid-item.icon-yellow i {
    color: #ffd82b;
}

.module--type-card_grid_new .card-grid .card-grid-item.icon-navy i {
    color: #001e5f;
}

.module--type-card_grid_new .card-grid .card-grid-item.icon .card-grid-image {
    aspect-ratio: auto;
    padding-top: 1.5rem;
}

.module--type-card_grid_new .card-grid .card-grid-item.icon .card-grid-image i {
    font-size: 7.5rem;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-image {
    align-items: center;
    display: flex;
    justify-content: center;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: auto;
    padding: 1.5rem;
    position: relative;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content .card-overline {
    font-size: 1.125rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1.44px;
    line-height: normal;
    margin: 0;
    text-transform: uppercase;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content h2,
.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content h3 {
    font-style: normal;
    font-weight: 700;
    margin: 0;
}

.localist-widget .lwn .module--type-card_grid_new .card-grid .card-grid-item .card-grid-content a,
.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content .localist-widget .lwn a,
.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content h1,
.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content h4,
.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content h5,
.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content h6 {
    margin: 0;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content p {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content ul {
    margin-bottom: 1rem;
    margin-left: 0;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content .card-grid-item-cta {
    align-items: center;
    display: flex;
    margin-bottom: 0;
    margin-top: auto;
    text-transform: capitalize;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content .card-grid-item-cta:after {
    font-size: 1rem;
    padding-left: 0.625rem;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-content:has(> [style*="text-align: center"]) .card-grid-item-cta {
    margin: auto auto 0;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-item-arrow {
    bottom: 1.5rem;
    color: #021bc3;
    display: block;
    font-size: 1rem;
    margin-left: auto;
    margin-top: auto;
    position: absolute;
    right: 1.5rem;
}

.module--type-card_grid_new .card-grid .card-grid-item .card-grid-item-arrow.white {
    color: #fff;
}

.module--type-card_grid_new .card-grid .card-grid-item.full {
    flex-direction: column;
    grid-column: 1/-1;
}

.module--type-card_grid_new .card-grid .card-grid-item.full .card-grid-content {
    margin: 0 auto;
    width: 100%;
}

.module--type-card_grid_new .card-grid .card-grid-item.full.image .card-grid-content,
.module--type-card_grid_new .card-grid .card-grid-item.full.image .card-grid-image {
    width: 100%;
}

.module--type-card_grid_new .card-grid .card-grid-item.full.image .card-grid-image,
.module--type-card_grid_new .card-grid .card-grid-item.full.image .card-grid-image img {
    height: 100%;
}

.module--type-card_grid_new .card-grid .card-grid-item.full.image .card-grid-content {
    padding: 1.5rem;
}

.module--type-card_grid_new .card-grid-cta {
    display: block;
    margin: 1.5rem auto 0;
}

.module--type-image_gallery.bg-white {
    background-color: #fff;
}

.module--type-image_gallery.bg-gray {
    background-color: #f4f4f4;
}

.module--type-image_gallery.bg-charcoal {
    background-color: #252525;
}

.module--type-image_gallery.bg-charcoal .desc_section .module__title *,
.module--type-image_gallery.bg-charcoal .desc_section .module_desc p,
.module--type-image_gallery.bg-charcoal .desc_section .overline,
.module--type-image_gallery.bg-charcoal .image-gallery .swiper-wrapper .swiper-slide figure .image-gallery-wrapper-slide-info figcaption {
    color: #fff;
}

.module--type-image_gallery.bg-charcoal .image-gallery .swiper-wrapper .swiper-slide figure .image-gallery-wrapper-slide-info cite {
    border-bottom: 1px solid #fff;
    color: #fff;
}

.module--type-image_gallery.bg-charcoal .image-gallery .swiper-nav .swiper-fraction {
    color: #fff;
}

.module--type-image_gallery.bg-charcoal .image-gallery-modal {
    background: linear-gradient(180deg, #252525 73.5%, #252525 90.5%);
}

.module--type-image_gallery.bg-charcoal .image-gallery-modal-caption,
.module--type-image_gallery.bg-charcoal .image-gallery-modal-close,
.module--type-image_gallery.bg-charcoal .image-gallery-modal-close:before {
    color: #fff;
}

.module--type-image_gallery.bg-charcoal .image-gallery-modal-credit {
    border-bottom: 1px solid #f4f4f4;
    color: #fff;
}

.module--type-image_gallery.bg-charcoal .image-gallery-modal .modal-swiper-fraction {
    color: #fff;
}

.module--type-image_gallery .desc_section .module_desc {
    margin-bottom: 22px;
}

.module--type-image_gallery .desc_section .module_desc p {
    font-family: inter-variable, sans-serif;
    font-weight: 400;
}

.module--type-image_gallery .desc_section .overline {
    color: #252525;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    line-height: 2rem;
    text-transform: uppercase;
}

.module--type-image_gallery .image-gallery-wrapper-slide {
    display: flex;
    flex-grow: 1;
    height: auto;
    width: auto;
}

.module--type-image_gallery .image-gallery-wrapper-slide figure {
    display: flex;
    flex-direction: column;
}

.module--type-image_gallery .image-gallery-wrapper-slide .image-gallery-img {
    height: 560px;
    object-fit: cover;
    width: auto;
}

.module--type-image_gallery .image-gallery-wrapper-slide .image-gallery-img:hover {
    cursor: pointer;
}

.module--type-image_gallery .image-gallery-wrapper-slide-info {
    box-sizing: border-box;
    margin-top: auto;
    min-width: 100%;
    padding-top: 5px;
    width: 0;
}

.module--type-image_gallery .image-gallery-wrapper-slide-info-caption {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.module--type-image_gallery .image-gallery-wrapper-slide-info-credit {
    border-bottom: 1px solid #252525;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.015rem;
    overflow: hidden;
    padding: 5px 0;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.module--type-image_gallery .image-gallery-modal {
    backdrop-filter: blur(3px);
    background: linear-gradient(180deg,
            hsla(0, 0%, 100%, 0.75) 73.5%,
            #fff 90.5%);
    display: none;
    flex-flow: column wrap;
    height: 100%;
    left: 0;
    padding: 1.25rem;
    place-content: center center;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999;
}

.module--type-image_gallery .image-gallery-modal-img {
    display: block;
    max-height: 80vh;
}

.module--type-image_gallery .image-gallery-modal-close {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-family: inter-variable, sans-serif;
    font-weight: 700;
    height: 40px;
    position: absolute;
    right: 3%;
    top: 6%;
    width: 40px;
}

.module--type-image_gallery .image-gallery-modal-close:before {
    color: #252525;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 40px;
    margin-bottom: 5px;
}

.module--type-image_gallery .image-gallery-modal-caption {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin: 1rem 0 0 !important;
}

.module--type-image_gallery .image-gallery-modal-credit {
    border-bottom: 1px solid #252525;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    letter-spacing: 0.015rem;
    padding: 10px 0 5px;
    text-transform: uppercase;
}

.module--type-image_gallery .image-gallery-modal .modal-swiper-fraction {
    bottom: 54px;
    color: #252525;
    display: flex;
    flex-flow: row nowrap;
    font-family: inter-variable, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.625rem;
    position: absolute;
    right: 100px;
    text-transform: uppercase;
    width: 85px;
}

.module--type-image_gallery .image-gallery-modal .modal-arrow-next,
.module--type-image_gallery .image-gallery-modal .modal-arrow-prev {
    background: #fff;
    border: 2px solid #021bc3;
    bottom: 0;
    height: 33px;
    position: absolute;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: 33px;
    z-index: 2;
}

.module--type-image_gallery .image-gallery-modal .modal-arrow-next:after,
.module--type-image_gallery .image-gallery-modal .modal-arrow-prev:after {
    color: #021bc3;
    font-family: Font Awesome\6 Pro;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.module--type-image_gallery .image-gallery-modal .modal-arrow-next:hover,
.module--type-image_gallery .image-gallery-modal .modal-arrow-prev:hover {
    background-color: #021bc3;
}

.module--type-image_gallery .image-gallery-modal .modal-arrow-next:hover:after,
.module--type-image_gallery .image-gallery-modal .modal-arrow-prev:hover:after {
    color: #fff;
}

.module--type-image_gallery .image-gallery-modal .modal-arrow-prev {
    bottom: 50px;
    right: 70px;
}

.module--type-image_gallery .image-gallery-modal .modal-arrow-prev:after {
    content: "";
}

.module--type-image_gallery .image-gallery-modal .modal-arrow-next {
    bottom: 50px;
    right: 34px;
}

.module--type-image_gallery .image-gallery-modal .modal-arrow-next:after {
    content: "";
}

.module--type-image_gallery .swiper-nav {
    align-items: center;
    display: flex;
    margin-bottom: 2rem;
    margin-top: 2rem;
    position: relative;
}

.module--type-image_gallery .swiper-nav .swiper-fraction {
    color: #252525;
    display: flex;
    flex-flow: row nowrap;
    font-family: inter-variable, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.625rem;
    position: absolute;
    right: 92px;
    text-transform: uppercase;
    width: 85px;
}

.module--type-image_gallery .swiper-nav .swiper-button-next,
.module--type-image_gallery .swiper-nav .swiper-button-prev {
    background: #fff;
    border: 2px solid #021bc3;
    bottom: 0;
    height: 33px;
    top: 6px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: 33px;
    z-index: 2;
}

.module--type-image_gallery .swiper-nav .swiper-button-next.swiper-button-disabled,
.module--type-image_gallery .swiper-nav .swiper-button-prev.swiper-button-disabled {
    background-color: #252525;
    border: none;
    opacity: 1;
}

.module--type-image_gallery .swiper-nav .swiper-button-next.swiper-button-disabled:after,
.module--type-image_gallery .swiper-nav .swiper-button-prev.swiper-button-disabled:after {
    color: #fff;
}

.module--type-image_gallery .swiper-nav .swiper-button-next:hover,
.module--type-image_gallery .swiper-nav .swiper-button-prev:hover {
    background-color: #021bc3;
}

.module--type-image_gallery .swiper-nav .swiper-button-next:hover:after,
.module--type-image_gallery .swiper-nav .swiper-button-prev:hover:after {
    color: #fff;
}

.module--type-image_gallery .swiper-nav .swiper-button-next:after,
.module--type-image_gallery .swiper-nav .swiper-button-prev:after {
    color: #021bc3;
    font-family: Font Awesome\6 Pro;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
}

.module--type-image_gallery .swiper-nav .swiper-button-prev {
    left: auto;
    right: 62px;
}

.module--type-image_gallery .swiper-nav .swiper-button-prev:after {
    content: "";
}

.module--type-image_gallery .swiper-nav .swiper-button-next {
    left: auto;
    right: 25px;
}

.module--type-image_gallery .swiper-nav .swiper-button-next:after {
    content: "";
}

.module--type-interstitial.module--layout_stacked {
    padding-bottom: 5rem;
    padding-top: 5rem;
}

.module--type-interstitial.white {
    background-color: #fff;
}

.module--type-interstitial.white .interstitial-module__leadin span {
    background-color: #001e5f;
    box-shadow: -0.25em 0 #001e5f, 0.25em 0 #001e5f;
    color: #fff !important;
}

.localist-widget .lwn .module--type-interstitial.white a,
.module--type-interstitial.white .localist-widget .lwn a,
.module--type-interstitial.white h1,
.module--type-interstitial.white h2,
.module--type-interstitial.white h3,
.module--type-interstitial.white h4,
.module--type-interstitial.white h5,
.module--type-interstitial.white h6,
.module--type-interstitial.white p {
    color: #252525 !important;
}

.module--type-interstitial.yellow {
    background-color: #ffd82b;
}

.module--type-interstitial.yellow .interstitial-module__leadin span {
    background-color: #252525;
    box-shadow: -0.25em 0 #252525, 0.25em 0 #252525;
    color: #fff !important;
}

.module--type-interstitial.yellow p {
    color: #252525 !important;
}

.module--type-interstitial.yellow p a {
    box-shadow: 0 1px 0 0 #252525;
    color: #252525 !important;
}

.module--type-interstitial.yellow p a:hover {
    box-shadow: 0 3px 0 0 #252525;
}

.localist-widget .lwn .module--type-interstitial.yellow a,
.module--type-interstitial.yellow .localist-widget .lwn a,
.module--type-interstitial.yellow h1,
.module--type-interstitial.yellow h2,
.module--type-interstitial.yellow h3,
.module--type-interstitial.yellow h4,
.module--type-interstitial.yellow h5,
.module--type-interstitial.yellow h6 {
    color: #252525 !important;
}

.module--type-interstitial.navy {
    background-color: #001e5f;
}

.module--type-interstitial.navy p {
    color: #fff !important;
}

.module--type-interstitial.navy p a {
    box-shadow: 0 1px 0 0 #fff;
    color: #fff !important;
}

.module--type-interstitial.navy p a:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.module--type-interstitial.navy .interstitial-module__leadin span {
    background-color: #fff;
    box-shadow: -0.25em 0 #fff, 0.25em 0 #fff;
    color: #001e5f !important;
}

.localist-widget .lwn .module--type-interstitial.navy a,
.module--type-interstitial.navy .localist-widget .lwn a,
.module--type-interstitial.navy h1,
.module--type-interstitial.navy h2,
.module--type-interstitial.navy h3,
.module--type-interstitial.navy h4,
.module--type-interstitial.navy h5,
.module--type-interstitial.navy h6 {
    color: #fff !important;
}

.module--type-interstitial.grey {
    background-color: #f4f4f4;
}

.module--type-interstitial.grey p {
    color: #252525 !important;
}

.module--type-interstitial.grey p a {
    color: #021bc3 !important;
}

.module--type-interstitial.grey p.interstitial-module__cta .button:hover {
    color: #fff !important;
}

.module--type-interstitial.grey .interstitial-module__leadin span {
    background-color: #001e5f;
    box-shadow: -0.25em 0 #001e5f, 0.25em 0 #001e5f;
    color: #fff !important;
}

.localist-widget .lwn .module--type-interstitial.grey a,
.module--type-interstitial.grey .localist-widget .lwn a,
.module--type-interstitial.grey h1,
.module--type-interstitial.grey h2,
.module--type-interstitial.grey h3,
.module--type-interstitial.grey h4,
.module--type-interstitial.grey h5,
.module--type-interstitial.grey h6 {
    color: #252525 !important;
}

.module--type-interstitial.charcoal {
    background-color: #252525;
}

.module--type-interstitial.charcoal .interstitial-module__leadin {
    background: #fff;
}

.module--type-interstitial.charcoal .interstitial-module__leadin span {
    background: transparent;
    box-shadow: none;
    color: #252525;
}

.module--type-interstitial.charcoal p {
    color: #fff !important;
}

.module--type-interstitial.charcoal p a {
    box-shadow: 0 1px 0 0 #fff;
    color: #fff !important;
}

.module--type-interstitial.charcoal p a:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.localist-widget .lwn .module--type-interstitial.charcoal a,
.module--type-interstitial.charcoal .localist-widget .lwn a,
.module--type-interstitial.charcoal h1,
.module--type-interstitial.charcoal h2,
.module--type-interstitial.charcoal h3,
.module--type-interstitial.charcoal h4,
.module--type-interstitial.charcoal h5,
.module--type-interstitial.charcoal h6 {
    color: #fff !important;
}

.module--type-interstitial.charcoal .button--white:focus,
.module--type-interstitial.charcoal .button--white:hover {
    background: #ffd82b !important;
    border: 2px solid #252525;
    color: #252525 !important;
}

.module--type-interstitial.charcoal .button--white:focus:after,
.module--type-interstitial.charcoal .button--white:hover:after {
    color: #252525 !important;
}

.module--layout_stacked .interstitial-module__header {
    margin: 0 auto;
    max-width: 52.6875rem;
    text-align: center;
}

.interstitial-module__leadin {
    display: inline-block;
    margin-bottom: 1.5rem;
    padding: 0.25rem 0.5rem;
}

.interstitial-module__leadin span {
    background-color: #fff;
    box-shadow: -0.25em 0 #fff, 0.25em 0 #fff;
    color: #001e5f;
    padding: 0.25rem 0;
}

.module--layout_inline .interstitial-module__leadin span {
    background-color: #252525;
    box-shadow: -0.25em 0 #252525, 0.25em 0 #252525;
    color: #fff;
}

.module--layout_stacked .interstitial-module__title {
    color: #fff;
    font-family: ivypresto-text, serif;
}

.t-content--light .interstitial-module__title {
    color: #fff !important;
}

.interstitial-module__title .ez-toc-title p,
.interstitial-module__title .h3 p {
    font-size: 2.25rem;
    line-height: 1.22222;
    margin-bottom: 0;
    margin-top: 0;
}

.interstitial-module__content {
    margin-top: 1.5rem;
}

.module--layout_stacked .interstitial-module__content {
    text-align: center;
}

.t-content--light .interstitial-module__content p {
    color: #fff !important;
}

.module--layout_stacked .interstitial-module__cta {
    margin: 2rem auto 0;
    max-width: 52.6875rem;
    text-align: center;
}

.module--layout_inline .interstitial-module__cta {
    margin-top: 2rem;
}

.interstitial-module__cta .button {
    box-shadow: none !important;
}

.interstitial-module__cta .button--white:focus,
.interstitial-module__cta .button--white:hover {
    color: #021bc3 !important;
}

.interstitial-module__cta .button--black {
    color: #252525 !important;
}

.interstitial-module__cta .button--black:focus,
.interstitial-module__cta .button--black:hover {
    color: #fff !important;
}

.module--type-media_text {
    background-color: #f4f4f4;
    margin: 0 auto;
    padding-bottom: 0;
    padding-top: 0;
}

.module--type-media_text.module--bg-color-navy {
    background-color: #001e5f;
    color: #fff;
}

.module--type-media_text.module--bg-color-navy a,
.module--type-media_text.module--bg-color-navy h1,
.module--type-media_text.module--bg-color-navy h2,
.module--type-media_text.module--bg-color-navy h3,
.module--type-media_text.module--bg-color-navy h4,
.module--type-media_text.module--bg-color-navy h5,
.module--type-media_text.module--bg-color-navy h6,
.module--type-media_text.module--bg-color-navy ol,
.module--type-media_text.module--bg-color-navy p,
.module--type-media_text.module--bg-color-navy ul {
    color: #fff;
}

.module--type-media_text.module--bg-color-yellow {
    background-color: #ffd82b;
    color: #252525;
}

.module--type-media_text.module--bg-color-yellow a,
.module--type-media_text.module--bg-color-yellow h1,
.module--type-media_text.module--bg-color-yellow h2,
.module--type-media_text.module--bg-color-yellow h3,
.module--type-media_text.module--bg-color-yellow h4,
.module--type-media_text.module--bg-color-yellow h5,
.module--type-media_text.module--bg-color-yellow h6,
.module--type-media_text.module--bg-color-yellow ol,
.module--type-media_text.module--bg-color-yellow p,
.module--type-media_text.module--bg-color-yellow ul {
    color: #252525;
}

.module--type-media_text.module--bg-color-white {
    background-color: #fff;
    color: #252525;
}

.module--type-media_text.module--bg-color-charcoal {
    background-color: #252525;
    color: #fff;
}

.module--type-media_text.module--bg-color-charcoal a,
.module--type-media_text.module--bg-color-charcoal h1,
.module--type-media_text.module--bg-color-charcoal h2,
.module--type-media_text.module--bg-color-charcoal h3,
.module--type-media_text.module--bg-color-charcoal h4,
.module--type-media_text.module--bg-color-charcoal h5,
.module--type-media_text.module--bg-color-charcoal h6,
.module--type-media_text.module--bg-color-charcoal ol,
.module--type-media_text.module--bg-color-charcoal p,
.module--type-media_text.module--bg-color-charcoal ul {
    color: #fff;
}

.media-text-module__media {
    align-items: center;
    display: flex;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
    position: relative;
    z-index: 1;
}

.media-text-module__video-wrap {
    height: auto;
    max-width: 100%;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    width: 100%;
}

.media-text-module__video-wrap .rll-youtube-player {
    padding-bottom: 0 !important;
}

.media-text-module__video-wrap embed,
.media-text-module__video-wrap iframe,
.media-text-module__video-wrap object {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.media-text-module__text {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.media-text-module__text-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    position: relative;
}

.localist-widget .lwn .media-text-module__text-inner a,
.media-text-module__text-inner .localist-widget .lwn a,
.media-text-module__text-inner h1,
.media-text-module__text-inner h2,
.media-text-module__text-inner h3,
.media-text-module__text-inner h4,
.media-text-module__text-inner h5,
.media-text-module__text-inner h6 {
    margin-bottom: 0;
    margin-top: 0;
}

.media-text-module__text-inner .media-text-module__title {
    margin-top: 1rem;
}

.media-text-module__text-inner .u-text-overline {
    margin: 0;
}

.media-text-module__text-inner .media-text-module__description {
    margin-top: 0;
}

.media-text-module__text-inner .media-text-module__cta {
    margin-bottom: 0;
}

.media-text-module__text-inner:after,
.media-text-module__text-inner:before {
    background-color: #f4f4f4;
    bottom: 0;
    content: "";
    position: absolute;
    top: 0;
    width: 100vw;
}

.media-text-module__text-inner:before {
    left: -100vw;
}

.media-text-module__text-inner:after {
    right: -100vw;
}

.module--bg-color-navy .media-text-module__text-inner {
    background-color: #001e5f;
    color: #fff;
}

.module--bg-color-navy .media-text-module__text-inner:after,
.module--bg-color-navy .media-text-module__text-inner:before {
    background-color: #001e5f;
}

.localist-widget .lwn .module--bg-color-navy .media-text-module__text-inner a,
.module--bg-color-navy .media-text-module__text-inner .localist-widget .lwn a,
.module--bg-color-navy .media-text-module__text-inner .media-text-module__description.t-content ol,
.module--bg-color-navy .media-text-module__text-inner .media-text-module__description.t-content p,
.module--bg-color-navy .media-text-module__text-inner .media-text-module__description.t-content ul,
.module--bg-color-navy .media-text-module__text-inner .media-text-module__subtitle,
.module--bg-color-navy .media-text-module__text-inner .module__title.media-text-module__title,
.module--bg-color-navy .media-text-module__text-inner h1,
.module--bg-color-navy .media-text-module__text-inner h2,
.module--bg-color-navy .media-text-module__text-inner h3,
.module--bg-color-navy .media-text-module__text-inner h4,
.module--bg-color-navy .media-text-module__text-inner h5,
.module--bg-color-navy .media-text-module__text-inner h6 {
    color: #fff !important;
}

.module--bg-color-yellow .media-text-module__text-inner {
    background-color: #ffd82b;
    color: #252525;
}

.module--bg-color-yellow .media-text-module__text-inner:after,
.module--bg-color-yellow .media-text-module__text-inner:before {
    background-color: #ffd82b;
}

.module--bg-color-yellow .media-text-module__text-inner .media-text-module__description.t-content ol,
.module--bg-color-yellow .media-text-module__text-inner .media-text-module__description.t-content p,
.module--bg-color-yellow .media-text-module__text-inner .media-text-module__description.t-content ul,
.module--bg-color-yellow .media-text-module__text-inner .media-text-module__subtitle {
    color: #252525 !important;
}

.module--bg-color-white .media-text-module__text-inner {
    background-color: #fff !important;
    color: #252525;
}

.module--bg-color-white .media-text-module__text-inner:after,
.module--bg-color-white .media-text-module__text-inner:before {
    background-color: #fff;
}

.localist-widget .lwn .module--bg-color-white .media-text-module__text-inner a,
.module--bg-color-white .media-text-module__text-inner .localist-widget .lwn a,
.module--bg-color-white .media-text-module__text-inner .media-text-module__description.t-content ol,
.module--bg-color-white .media-text-module__text-inner .media-text-module__description.t-content p,
.module--bg-color-white .media-text-module__text-inner .media-text-module__description.t-content ul,
.module--bg-color-white .media-text-module__text-inner .media-text-module__subtitle,
.module--bg-color-white .media-text-module__text-inner .module__title.media-text-module__title,
.module--bg-color-white .media-text-module__text-inner h1,
.module--bg-color-white .media-text-module__text-inner h2,
.module--bg-color-white .media-text-module__text-inner h3,
.module--bg-color-white .media-text-module__text-inner h4,
.module--bg-color-white .media-text-module__text-inner h5,
.module--bg-color-white .media-text-module__text-inner h6 {
    color: #252525 !important;
}

.module--bg-color-charcoal .media-text-module__text-inner {
    background-color: #252525;
    color: #fff;
}

.module--bg-color-charcoal .media-text-module__text-inner:after,
.module--bg-color-charcoal .media-text-module__text-inner:before {
    background-color: #252525;
}

.localist-widget .lwn .module--bg-color-charcoal .media-text-module__text-inner a,
.module--bg-color-charcoal .media-text-module__text-inner .localist-widget .lwn a,
.module--bg-color-charcoal .media-text-module__text-inner .media-text-module__description.t-content ol,
.module--bg-color-charcoal .media-text-module__text-inner .media-text-module__description.t-content p,
.module--bg-color-charcoal .media-text-module__text-inner .media-text-module__description.t-content ul,
.module--bg-color-charcoal .media-text-module__text-inner .media-text-module__subtitle,
.module--bg-color-charcoal .media-text-module__text-inner .module__title.media-text-module__title,
.module--bg-color-charcoal .media-text-module__text-inner h1,
.module--bg-color-charcoal .media-text-module__text-inner h2,
.module--bg-color-charcoal .media-text-module__text-inner h3,
.module--bg-color-charcoal .media-text-module__text-inner h4,
.module--bg-color-charcoal .media-text-module__text-inner h5,
.module--bg-color-charcoal .media-text-module__text-inner h6 {
    color: #fff !important;
}

.media-text-module__leadin {
    margin-bottom: 1.5rem;
    position: relative;
}

.media-text-module__leadin span {
    padding: 0.25rem 0;
}

.module--bg-color-grey .media-text-module__leadin span,
.module--bg-color-white .media-text-module__leadin span {
    background-color: #001e5f;
    box-shadow: -0.25em 0 #001e5f, 0.25em 0 #001e5f;
    color: #fff;
}

.module--bg-color-yellow .media-text-module__leadin span {
    background-color: #252525;
    box-shadow: -0.25em 0 #252525, 0.25em 0 #252525;
    color: #fff;
}

.module--bg-color-navy .media-text-module__leadin span {
    background-color: #fff;
    box-shadow: -0.25em 0 #fff, 0.25em 0 #fff;
    color: #001e5f;
}

.module--bg-color-charcoal .media-text-module__leadin span {
    background-color: #fff;
    box-shadow: -0.25em 0 #fff, 0.25em 0 #fff;
    color: #252525;
}

h2.media-text-module__title {
    font-family: ivypresto-text, serif;
    margin-bottom: 0;
    margin-top: 0;
}

h2.media-text-module__title p {
    color: inherit !important;
    font-size: inherit !important;
    line-height: 1 !important;
    margin-bottom: 0 !important;
}

.module--bg-color-navy h2.media-text-module__title {
    color: #fff;
}

body .module--type-media_text .media-text-module__description {
    margin-top: 0;
}

.media-text-module__cta {
    margin-top: 2rem;
}

.module-media {
    padding: 2rem 0 0;
}

.module-media .grid-container {
    padding: 0;
}

.module-media .media-grid {
    display: flex;
    flex-direction: column;
}

.module-media .media-grid-embed,
.module-media .media-grid-image,
.module-media .media-grid-video {
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.module-media .media-grid-embed:after,
.module-media .media-grid-image:after,
.module-media .media-grid-video:after {
    bottom: 0;
    content: "";
    height: 50%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.module-media .media-grid-embed.bg-white:after,
.module-media .media-grid-image.bg-white:after,
.module-media .media-grid-video.bg-white:after {
    background-color: #fff;
}

.module-media .media-grid-embed.bg-gray:after,
.module-media .media-grid-image.bg-gray:after,
.module-media .media-grid-video.bg-gray:after {
    background-color: #f4f4f4;
}

.module-media .media-grid-embed.bg-navy:after,
.module-media .media-grid-image.bg-navy:after,
.module-media .media-grid-video.bg-navy:after {
    background-color: #001e5f;
}

.module-media .media-grid-embed.bg-yellow:after,
.module-media .media-grid-image.bg-yellow:after,
.module-media .media-grid-video.bg-yellow:after {
    background-color: #ffd82b;
}

.module-media .media-grid-embed.bg-charcoal:after,
.module-media .media-grid-image.bg-charcoal:after,
.module-media .media-grid-video.bg-charcoal:after {
    background-color: #252525;
}

.module-media .media-grid-embed,
.module-media .media-grid-video {
    display: flex;
    padding: 0 1.5rem;
    position: relative;
    z-index: 2;
}

.module-media .media-grid-embed .media-grid-embed-container,
.module-media .media-grid-embed .media-grid-video-container,
.module-media .media-grid-video .media-grid-embed-container,
.module-media .media-grid-video .media-grid-video-container {
    overflow: hidden;
    padding-top: 75%;
    position: relative;
    width: 100%;
}

.module-media .media-grid-embed .media-grid-embed-container .play,
.module-media .media-grid-embed .media-grid-video-container .play,
.module-media .media-grid-video .media-grid-embed-container .play,
.module-media .media-grid-video .media-grid-video-container .play {
    bottom: 1rem;
    left: auto;
    position: absolute;
    right: 1rem;
}

.module-media .media-grid-embed .media-grid-embed-container .play .fa-circle-pause,
.module-media .media-grid-embed .media-grid-video-container .play .fa-circle-pause,
.module-media .media-grid-video .media-grid-embed-container .play .fa-circle-pause,
.module-media .media-grid-video .media-grid-video-container .play .fa-circle-pause {
    display: block;
}

.module-media .media-grid-embed .media-grid-embed-container .play .fa-circle-play,
.module-media .media-grid-embed .media-grid-embed-container .play.pause .fa-circle-pause,
.module-media .media-grid-embed .media-grid-video-container .play .fa-circle-play,
.module-media .media-grid-embed .media-grid-video-container .play.pause .fa-circle-pause,
.module-media .media-grid-video .media-grid-embed-container .play .fa-circle-play,
.module-media .media-grid-video .media-grid-embed-container .play.pause .fa-circle-pause,
.module-media .media-grid-video .media-grid-video-container .play .fa-circle-play,
.module-media .media-grid-video .media-grid-video-container .play.pause .fa-circle-pause {
    display: none;
}

.module-media .media-grid-embed .media-grid-embed-container .play.pause .fa-circle-play,
.module-media .media-grid-embed .media-grid-video-container .play.pause .fa-circle-play,
.module-media .media-grid-video .media-grid-embed-container .play.pause .fa-circle-play,
.module-media .media-grid-video .media-grid-video-container .play.pause .fa-circle-play {
    display: block;
}

.module-media .media-grid-embed .media-grid-embed-container i,
.module-media .media-grid-embed .media-grid-video-container i,
.module-media .media-grid-video .media-grid-embed-container i,
.module-media .media-grid-video .media-grid-video-container i {
    color: #fff;
    font-size: 2.25rem;
    transition: 0.2s ease-in-out;
}

.module-media .media-grid-embed .media-grid-embed-container,
.module-media .media-grid-video .media-grid-embed-container {
    padding-top: 56%;
}

.module-media .media-grid-embed iframe,
.module-media .media-grid-embed video,
.module-media .media-grid-video iframe,
.module-media .media-grid-video video {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.module-media .media-grid-content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 0.94rem;
    grid-column: 1/-1;
    grid-row: 2/6;
    justify-content: center;
    padding: 3rem 1.5rem;
}

.module-media .media-grid-content.bg-white {
    background-color: #fff;
}

.module-media .media-grid-content.bg-white * {
    color: #252525;
}

.module-media .media-grid-content.bg-white .media-grid-content-overline span {
    background-color: #252525;
    color: #fff;
}

.module-media .media-grid-content.bg-white .media-grid-content-cta {
    box-shadow: 0 2px 0 0 #252525;
}

.module-media .media-grid-content.bg-white .media-grid-content-cta:hover {
    box-shadow: 0 4px 0 0 #252525;
}

.module-media .media-grid-content.bg-gray {
    background-color: #f4f4f4;
}

.module-media .media-grid-content.bg-gray .media-grid-content-cta {
    box-shadow: 0 2px 0 0 #021bc3;
    color: #021bc3;
}

.module-media .media-grid-content.bg-gray .media-grid-content-cta:hover {
    box-shadow: 0 4px 0 0 #021bc3;
}

.module-media .media-grid-content.bg-navy {
    background-color: #001e5f;
}

.module-media .media-grid-content.bg-navy * {
    color: #fff;
}

.module-media .media-grid-content.bg-navy .media-grid-content-overline span {
    background-color: #fff;
    color: #252525;
}

.module-media .media-grid-content.bg-yellow {
    background-color: #ffd82b;
}

.module-media .media-grid-content.bg-yellow * {
    color: #252525;
}

.module-media .media-grid-content.bg-yellow .media-grid-content-overline span {
    background-color: #252525;
    color: #fff;
}

.module-media .media-grid-content.bg-yellow .media-grid-content-cta {
    box-shadow: 0 2px 0 0 #252525;
}

.module-media .media-grid-content.bg-yellow .media-grid-content-cta:hover {
    box-shadow: 0 4px 0 0 #252525;
}

.module-media .media-grid-content.bg-charcoal {
    background-color: #252525;
}

.module-media .media-grid-content.bg-charcoal * {
    color: #fff;
}

.module-media .media-grid-content.bg-charcoal .media-grid-content-overline span {
    background-color: #fff;
    color: #252525;
}

.module-media .media-grid-content-overline span {
    align-items: center;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    gap: 0.625rem;
    justify-content: center;
    padding: 0.5rem 0.75rem;
}

.module-media .media-grid-content-cta {
    box-shadow: 0 2px 0 0 #fff;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.125rem;
    margin-top: 0.5rem;
    padding-bottom: 0.6rem;
}

.module-media .media-grid-content-cta:hover {
    box-shadow: 0 4px 0 0 #fff;
}

.module-media .media-grid-content-cta i {
    margin-left: 10px;
}

.module-media .media-grid-above {
    display: flex !important;
    flex-direction: column;
}

.module-media .media-grid-above .media-grid-embed,
.module-media .media-grid-above .media-grid-image,
.module-media .media-grid-above .media-grid-video {
    margin: 0 auto;
    min-width: 100%;
    position: relative;
}

.module-media .media-grid-above .media-grid-embed,
.module-media .media-grid-above .media-grid-video {
    padding: 0 1.5rem;
}

.module-media .media-grid-above .media-grid-embed-container,
.module-media .media-grid-above .media-grid-video-container {
    padding-top: 56.25%;
}

.module-media .media-grid-none .media-grid-content {
    grid-column: 1/-1;
    padding: 0 1.5rem;
    position: relative;
}

.module-media .media-grid-none .media-grid-content:after,
.module-media .media-grid-none .media-grid-content:before {
    bottom: -100%;
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: -1;
}

.module-media .media-grid-none .media-grid-content:before {
    bottom: 0;
    top: -100%;
}

.module-media .media-grid-none .media-grid-content.bg-white:after,
.module-media .media-grid-none .media-grid-content.bg-white:before {
    background-color: #fff;
}

.module-media .media-grid-none .media-grid-content.bg-gray:after,
.module-media .media-grid-none .media-grid-content.bg-gray:before {
    background-color: #f4f4f4;
}

.module-media .media-grid-none .media-grid-content.bg-navy:after,
.module-media .media-grid-none .media-grid-content.bg-navy:before {
    background-color: #001e5f;
}

.module-media .media-grid-none .media-grid-content.bg-yellow:after,
.module-media .media-grid-none .media-grid-content.bg-yellow:before {
    background-color: #ffd82b;
}

.module-media .media-grid-none .media-grid-content.bg-charcoal:after,
.module-media .media-grid-none .media-grid-content.bg-charcoal:before {
    background-color: #252525;
}

.module-media.animation-false .media-grid-content.animated,
.module-media.animation-false .media-grid-embed-container.animated,
.module-media.animation-false .media-grid-image.animated,
.module-media.animation-false .media-grid-video.animated {
    animation: none;
}

@keyframes slide-in-right {
    0% {
        transform: translateX(100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

@keyframes fade-in {
    0% {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.module-media.animation-true .media-grid-above.animated,
.module-media.animation-true .media-grid.animated {
    animation: fade-in 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
}

.module--type-navigation {
    padding-bottom: 5rem;
    padding-top: 5rem;
}

.module--type-navigation .nav_module__header {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.module--type-navigation.background_white {
    background-color: #fff;
    padding-left: 0;
    padding-right: 0;
}

.module--type-navigation.background_white .module__description p,
.module--type-navigation.background_white .module__title {
    color: #252525;
}

.module--type-navigation.background_grey {
    background-color: #f4f4f4;
    padding-left: 0;
    padding-right: 0;
}

.module--type-navigation.background_grey .menu-item__action-description,
.module--type-navigation.background_grey .module__description p,
.module--type-navigation.background_grey .module__title {
    color: #252525;
}

.module--type-navigation.background_grey .nav-module__list-item a {
    background: #fff;
}

.module--type-navigation.background_charcoal {
    background-color: #252525;
    padding-left: 0;
    padding-right: 0;
}

.module--type-navigation.background_charcoal .module__title {
    color: #fff !important;
}

.module--type-navigation.background_charcoal .menu-item__action-description,
.module--type-navigation.background_charcoal .module__description p,
.module--type-navigation.background_charcoal p.nav-module__action .menu-item__action-text {
    color: #fff;
}

.module--type-navigation.background_charcoal .nav-module__list-item a {
    background: #fff;
}

.module--type-navigation.background_yellow {
    background-color: #ffd82b;
    padding-left: 0;
    padding-right: 0;
}

.module--type-navigation.background_yellow .menu-item__action-description,
.module--type-navigation.background_yellow .module__description p,
.module--type-navigation.background_yellow .module__title {
    color: #252525;
}

.module--type-navigation.background_yellow .nav-module__list-item a {
    background: #fff;
}

.module--type-navigation.background_blue {
    background-color: #001e5f;
    padding-left: 0;
    padding-right: 0;
}

.module--type-navigation.background_blue .module__title {
    color: #fff !important;
}

.module--type-navigation.background_blue .menu-item__action-description,
.module--type-navigation.background_blue .module__description p,
.module--type-navigation.background_blue p.nav-module__action .menu-item__action-text {
    color: #fff;
}

.module--type-navigation.background_blue .nav-module__list-item a {
    background: #fff;
}

.module--type-navigation .module__title {
    margin-bottom: 1rem;
}

.nav-module__list,
.nav-module__list ul {
    list-style: none;
    margin: 0;
}

.nav-module__list .nav-module__list-item .nav-module__action .menu-item__action-text {
    color: #252525;
}

.nav-module__list .nav-module__list-item .nav-module__action .menu-item__action-text .icon-external-link-alt {
    font-size: 0.75em;
    margin-left: 0.5em;
}

.nav-module__action,
.nav-module__container.show_desc .nav-module__list .nav-module__list-item .nav-module__action .menu-item__action-description {
    display: block;
}

.nav-module__container.hide_desc .nav-module__list .nav-module__list-item .nav-module__action .menu-item__action-description {
    display: none;
}

.nav-module__container {
    margin-top: 2rem;
}

.nav-module__container.columns-1 .nav-module__list li,
.nav-module__container.columns-2 .nav-module__list li,
.nav-module__container.columns-3 .nav-module__list li {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.above_fold .module--type-navigation .grid-container {
    padding-left: 0;
    padding-right: 0;
}

.above_fold .nav-module--layout_cards .nav-module__list-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.nav-module--layout_cards .nav-module__list {
    margin-bottom: -1.5rem;
}

.nav-module--layout_cards .nav-module__list-item {
    display: inline-flex;
    flex: 0 0 100%;
    flex-direction: column;
    margin-bottom: 1.5rem;
    max-width: 100%;
    width: 100%;
}

.nav-module--layout_cards .nav-module__action {
    background: #f4f4f4;
    height: 100%;
    padding: 1.5rem 1.5rem 3rem;
    position: relative;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-module--layout_cards .nav-module__action:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    bottom: 1.5rem;
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    position: absolute;
    right: 1.5rem;
    text-rendering: auto;
    text-transform: none;
    transform: translateX(-100%);
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-module--layout_cards .nav-module__action .menu-item__action-text {
    color: #021bc3;
    display: block;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-module--layout_cards .nav-module__action .menu-item__action-description {
    margin-top: 0.5rem;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-module--layout_cards .hover_white .nav-module__action:focus,
.nav-module--layout_cards .hover_white .nav-module__action:hover {
    background: #fff;
    color: #252525;
}

.nav-module--layout_cards .hover_white .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_cards .hover_white .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_cards .hover_white .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_cards .hover_white .nav-module__action:hover .menu-item__action-text {
    color: #252525;
}

.nav-module--layout_cards .hover_white .nav-module__action:focus:after,
.nav-module--layout_cards .hover_white .nav-module__action:hover:after {
    color: #252525;
    opacity: 1;
}

.nav-module--layout_cards .hover_yellow .nav-module__action:focus,
.nav-module--layout_cards .hover_yellow .nav-module__action:hover {
    background: #ffd82b;
    color: #252525;
}

.nav-module--layout_cards .hover_yellow .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_cards .hover_yellow .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_cards .hover_yellow .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_cards .hover_yellow .nav-module__action:hover .menu-item__action-text {
    color: #252525;
}

.nav-module--layout_cards .hover_yellow .nav-module__action:focus:after,
.nav-module--layout_cards .hover_yellow .nav-module__action:hover:after {
    color: #252525;
    opacity: 1;
}

.nav-module--layout_cards .hover_blue .nav-module__action:focus,
.nav-module--layout_cards .hover_blue .nav-module__action:hover {
    background: #021bc3;
    color: #fff;
}

.nav-module--layout_cards .hover_blue .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_cards .hover_blue .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_cards .hover_blue .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_cards .hover_blue .nav-module__action:hover .menu-item__action-text {
    color: #fff;
}

.nav-module--layout_cards .hover_blue .nav-module__action:focus:after,
.nav-module--layout_cards .hover_blue .nav-module__action:hover:after {
    color: #fff;
    opacity: 1;
}

.nav-module--layout_cards .hover_grey .nav-module__action:focus,
.nav-module--layout_cards .hover_grey .nav-module__action:hover {
    background: #e8e8e8;
    color: #252525;
}

.nav-module--layout_cards .hover_grey .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_cards .hover_grey .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_cards .hover_grey .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_cards .hover_grey .nav-module__action:hover .menu-item__action-text {
    color: #252525;
}

.nav-module--layout_cards .hover_grey .nav-module__action:focus:after,
.nav-module--layout_cards .hover_grey .nav-module__action:hover:after {
    color: #252525;
    opacity: 1;
}

.nav-module--layout_cards .hover_charcoal .nav-module__action:focus,
.nav-module--layout_cards .hover_charcoal .nav-module__action:hover {
    background: #252525;
    color: #fff;
}

.nav-module--layout_cards .hover_charcoal .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_cards .hover_charcoal .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_cards .hover_charcoal .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_cards .hover_charcoal .nav-module__action:hover .menu-item__action-text {
    color: #fff;
}

.nav-module--layout_cards .hover_charcoal .nav-module__action:focus:after,
.nav-module--layout_cards .hover_charcoal .nav-module__action:hover:after {
    color: #fff;
    opacity: 1;
}

.nav-module--layout_cards.module--bg-color-grey .nav-module__action {
    background-color: #fff;
    padding: 1.5rem 1.5rem 3rem;
}

.nav-module--layout_cards.module--bg-color-grey .nav-module__action:focus,
.nav-module--layout_cards.module--bg-color-grey .nav-module__action:hover {
    background: #021bc3;
}

.nav-module--layout_cards.module--bg-color-white .nav-module__action {
    padding: 1.5rem 1.5rem 3rem;
}

.nav-module--layout_list .nav-module__list {
    list-style: none;
    margin-bottom: -4rem;
}

.nav-module--layout_list .nav-module__list-item--depth-0 {
    display: inline-flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.nav-module--layout_list .nav-module__list-item--depth-0>a.nav-module__action {
    border-top: 1px solid #e8e8e8;
}

.nav-module--layout_list .nav-module__action {
    border-bottom: 1px solid #e8e8e8;
    display: block;
    padding: 1rem 2rem 1rem 1rem;
}

.nav-module--layout_list a.nav-module__action .menu-item__action-text {
    color: #021bc3;
    transform: translateX(0);
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-module--layout_list a.nav-module__action .menu-item__action-text:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-feature-settings: normal;
    font-size: 0.75em;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    opacity: 0;
    padding-left: 1em;
    text-rendering: auto;
    text-transform: none;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-module--layout_list .hover_white a:focus,
.nav-module--layout_list .hover_white a:hover {
    background: #fff !important;
    color: #252525 !important;
}

.nav-module--layout_list .hover_white a:focus .menu-item__action-description,
.nav-module--layout_list .hover_white a:focus .menu-item__action-text,
.nav-module--layout_list .hover_white a:hover .menu-item__action-description,
.nav-module--layout_list .hover_white a:hover .menu-item__action-text {
    color: #252525;
}

.nav-module--layout_list .hover_white a:focus .menu-item__action-description:after,
.nav-module--layout_list .hover_white a:focus .menu-item__action-text:after,
.nav-module--layout_list .hover_white a:hover .menu-item__action-description:after,
.nav-module--layout_list .hover_white a:hover .menu-item__action-text:after {
    color: #252525 !important;
    opacity: 1;
}

.nav-module--layout_list .hover_yellow a:focus,
.nav-module--layout_list .hover_yellow a:hover {
    background: #ffd82b !important;
    color: #252525 !important;
}

.nav-module--layout_list .hover_yellow a:focus .menu-item__action-description,
.nav-module--layout_list .hover_yellow a:focus .menu-item__action-text,
.nav-module--layout_list .hover_yellow a:hover .menu-item__action-description,
.nav-module--layout_list .hover_yellow a:hover .menu-item__action-text {
    color: #252525;
}

.nav-module--layout_list .hover_yellow a:focus .menu-item__action-description:after,
.nav-module--layout_list .hover_yellow a:focus .menu-item__action-text:after,
.nav-module--layout_list .hover_yellow a:hover .menu-item__action-description:after,
.nav-module--layout_list .hover_yellow a:hover .menu-item__action-text:after {
    color: #252525 !important;
    opacity: 1;
}

.nav-module--layout_list .hover_blue a:focus,
.nav-module--layout_list .hover_blue a:hover {
    background: #021bc3;
    color: #fff !important;
}

.nav-module--layout_list .hover_blue a:focus .menu-item__action-description,
.nav-module--layout_list .hover_blue a:focus .menu-item__action-text,
.nav-module--layout_list .hover_blue a:hover .menu-item__action-description,
.nav-module--layout_list .hover_blue a:hover .menu-item__action-text {
    color: #fff !important;
}

.nav-module--layout_list .hover_blue a:focus .menu-item__action-description:after,
.nav-module--layout_list .hover_blue a:focus .menu-item__action-text:after,
.nav-module--layout_list .hover_blue a:hover .menu-item__action-description:after,
.nav-module--layout_list .hover_blue a:hover .menu-item__action-text:after {
    color: #fff !important;
    opacity: 1;
}

.nav-module--layout_list .hover_grey a:focus,
.nav-module--layout_list .hover_grey a:hover {
    background: #e8e8e8;
    color: #252525 !important;
}

.nav-module--layout_list .hover_grey a:focus .menu-item__action-description,
.nav-module--layout_list .hover_grey a:focus .menu-item__action-text,
.nav-module--layout_list .hover_grey a:hover .menu-item__action-description,
.nav-module--layout_list .hover_grey a:hover .menu-item__action-text {
    color: #252525 !important;
}

.nav-module--layout_list .hover_grey a:focus .menu-item__action-description:after,
.nav-module--layout_list .hover_grey a:focus .menu-item__action-text:after,
.nav-module--layout_list .hover_grey a:hover .menu-item__action-description:after,
.nav-module--layout_list .hover_grey a:hover .menu-item__action-text:after {
    color: #252525 !important;
    opacity: 1;
}

.nav-module--layout_list .hover_charcoal a:focus,
.nav-module--layout_list .hover_charcoal a:hover {
    background: #252525;
    color: #fff !important;
}

.nav-module--layout_list .hover_charcoal a:focus .menu-item__action-description,
.nav-module--layout_list .hover_charcoal a:focus .menu-item__action-text,
.nav-module--layout_list .hover_charcoal a:hover .menu-item__action-description,
.nav-module--layout_list .hover_charcoal a:hover .menu-item__action-text {
    color: #fff !important;
}

.nav-module--layout_list .hover_charcoal a:focus .menu-item__action-description:after,
.nav-module--layout_list .hover_charcoal a:focus .menu-item__action-text:after,
.nav-module--layout_list .hover_charcoal a:hover .menu-item__action-description:after,
.nav-module--layout_list .hover_charcoal a:hover .menu-item__action-text:after {
    color: #fff !important;
    opacity: 1;
}

.nav-module--layout_list p.nav-module__action .menu-item__action-text {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    line-height: 2;
    text-transform: uppercase;
}

.nav-module--layout_list.module--bg-color-grey .nav-module__list-item--depth-0>a.nav-module__action {
    border-top: 1px solid #e8e8e8;
}

.nav-module--layout_list.module--bg-color-grey .nav-module__action {
    border-bottom-color: #e8e8e8;
}

.nav-module__container .nav-module__list li .nav-module__list-child {
    list-style: none;
}

.nav-module__container .nav-module__list li .nav-module__list-child li.nav-module__list-item {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.nav-module--layout_micronav {
    padding-bottom: 0;
    position: relative;
}

.nav-module--layout_micronav .module__title {
    margin-bottom: 1.5rem;
}

.nav-module--layout_micronav .nav-module__container {
    overflow: hidden;
    position: relative;
}

.nav-module--layout_micronav .nav-module__container:after {
    background-color: #e8e8e8;
    bottom: 0;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    width: 100%;
}

.nav-module--layout_micronav .nav-module__menu {
    margin-left: auto;
    margin-right: auto;
    max-width: calc(1380px + 3.75rem);
    overflow: visible;
    position: relative;
    z-index: 1;
}

.nav-module--layout_micronav .nav-module__list {
    display: flex;
    flex-flow: row wrap;
    margin: 0 1.5rem;
    position: relative;
    transition-property: transform;
    transition-timing-function: ease-out;
    z-index: 1;
}

.nav-module--layout_micronav .nav-module__list-item {
    flex: 0 0 100%;
    margin-bottom: 1.875rem;
    padding-left: 0;
    padding-right: 0.9375rem;
    width: 100%;
}

.nav-module--layout_micronav .nav-module__action {
    height: 100%;
    padding-bottom: 1.5rem;
    position: relative;
}

.nav-module--layout_micronav .nav-module__action:after {
    bottom: 0;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left center;
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    z-index: 2;
}

.nav-module--layout_micronav .nav-module__action .menu-item__action-text {
    transition: all 0.15s ease-in-out;
}

.nav-module--layout_micronav .nav-module__action .menu-item__action-description {
    font-size: 1rem;
    transition: all 0.15s ease-in-out;
}

.nav-module--layout_micronav .nav-module__action:focus:after,
.nav-module--layout_micronav .nav-module__action:hover:after {
    transform: scaleX(1);
}

.nav-module--layout_micronav .hover_white .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_micronav .hover_white .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_micronav .hover_white .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_micronav .hover_white .nav-module__action:hover .menu-item__action-text {
    color: #fff;
}

.nav-module--layout_micronav .hover_white .nav-module__action:focus:after,
.nav-module--layout_micronav .hover_white .nav-module__action:hover:after {
    background-color: #fff;
}

.nav-module--layout_micronav .hover_yellow .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_micronav .hover_yellow .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_micronav .hover_yellow .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_micronav .hover_yellow .nav-module__action:hover .menu-item__action-text {
    color: #ffd82b;
}

.nav-module--layout_micronav .hover_yellow .nav-module__action:focus:after,
.nav-module--layout_micronav .hover_yellow .nav-module__action:hover:after {
    background-color: #ffd82b;
}

.nav-module--layout_micronav .hover_blue .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_micronav .hover_blue .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_micronav .hover_blue .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_micronav .hover_blue .nav-module__action:hover .menu-item__action-text {
    color: #021bc3;
}

.nav-module--layout_micronav .hover_blue .nav-module__action:focus:after,
.nav-module--layout_micronav .hover_blue .nav-module__action:hover:after {
    background-color: #021bc3;
}

.nav-module--layout_micronav .hover_grey .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_micronav .hover_grey .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_micronav .hover_grey .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_micronav .hover_grey .nav-module__action:hover .menu-item__action-text {
    color: #f4f4f4;
}

.nav-module--layout_micronav .hover_grey .nav-module__action:focus:after,
.nav-module--layout_micronav .hover_grey .nav-module__action:hover:after {
    background-color: #f4f4f4;
}

.nav-module--layout_micronav .hover_charcoal .nav-module__action:focus .menu-item__action-description,
.nav-module--layout_micronav .hover_charcoal .nav-module__action:focus .menu-item__action-text,
.nav-module--layout_micronav .hover_charcoal .nav-module__action:hover .menu-item__action-description,
.nav-module--layout_micronav .hover_charcoal .nav-module__action:hover .menu-item__action-text {
    color: #252525;
}

.nav-module--layout_micronav .hover_charcoal .nav-module__action:focus:after,
.nav-module--layout_micronav .hover_charcoal .nav-module__action:hover:after {
    background-color: #252525;
}

.module--type-navigation_new .grid-container {
    padding-right: 0;
}

.module--type-navigation_new.bg-gray {
    background-color: #f4f4f4;
}

.module--type-navigation_new.bg-gray .swiper .nav-card {
    background-color: #fff;
}

.module--type-navigation_new .nav-header {
    align-items: center;
    display: flex;
    margin-bottom: 1.25rem;
    padding-right: 1.5rem;
}

.module--type-navigation_new .nav-header-title {
    align-items: center;
    display: flex;
    flex-grow: 1;
    width: -webkit-min-content;
    width: -moz-min-content;
    width: min-content;
}

.module--type-navigation_new .nav-header-title * {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.24px;
}

.module--type-navigation_new .nav-header .swiper-nav {
    display: flex;
    margin-left: 1.5rem;
}

.module--type-navigation_new .nav-header .swiper-nav .swiper-button-next,
.module--type-navigation_new .nav-header .swiper-nav .swiper-button-prev {
    background: #021bc3;
    height: 33px;
    inset: 0 0 0 auto;
    margin-top: 0;
    position: relative;
    width: 33px;
}

.module--type-navigation_new .nav-header .swiper-nav .swiper-button-next.swiper-button-disabled,
.module--type-navigation_new .nav-header .swiper-nav .swiper-button-prev.swiper-button-disabled {
    background-color: #252525;
    opacity: 1;
}

.module--type-navigation_new .nav-header .swiper-nav .swiper-button-next:after,
.module--type-navigation_new .nav-header .swiper-nav .swiper-button-prev:after {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 900;
    position: absolute;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-navigation_new .nav-header .swiper-nav .swiper-button-prev:after {
    content: "";
}

.module--type-navigation_new .nav-header .swiper-nav .swiper-button-next {
    margin-left: 5px;
}

.module--type-navigation_new .swiper {
    display: block;
    height: auto;
    margin-top: 2.5rem;
}

.module--type-navigation_new .swiper .nav-card {
    background-color: #f4f4f4;
    transition: all 0.15s ease-in-out;
}

.module--type-navigation_new .swiper .nav-card-container {
    align-items: stretch;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.875rem 1.875rem 3.5rem;
}

.module--type-navigation_new .swiper .nav-card-container[data-bs-toggle="collapse"] {
    cursor: pointer;
}

.module--type-navigation_new .swiper .nav-card:after {
    background-color: #021bc3;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.module--type-navigation_new .swiper .nav-card:hover,
.module--type-navigation_new .swiper .nav-card[aria-expanded="true"] {
    background-color: #021bc3;
}

.module--type-navigation_new .swiper .nav-card:hover:after,
.module--type-navigation_new .swiper .nav-card[aria-expanded="true"]:after {
    background-color: transparent;
}

.module--type-navigation_new .swiper .nav-card:hover .nav-card-icon i,
.module--type-navigation_new .swiper .nav-card[aria-expanded="true"] .nav-card-icon i {
    color: #ffd82b;
}

.module--type-navigation_new .swiper .nav-card:hover .nav-card-children li,
.module--type-navigation_new .swiper .nav-card:hover .nav-card-description,
.module--type-navigation_new .swiper .nav-card:hover .nav-card-title,
.module--type-navigation_new .swiper .nav-card[aria-expanded="true"] .nav-card-children li,
.module--type-navigation_new .swiper .nav-card[aria-expanded="true"] .nav-card-description,
.module--type-navigation_new .swiper .nav-card[aria-expanded="true"] .nav-card-title {
    color: #fff;
}

.module--type-navigation_new .swiper .nav-card:hover .collapse-button,
.module--type-navigation_new .swiper .nav-card[aria-expanded="true"] .collapse-button {
    background: #fff;
}

.module--type-navigation_new .swiper .nav-card:hover .collapse-button span,
.module--type-navigation_new .swiper .nav-card[aria-expanded="true"] .collapse-button span {
    color: #021bc3;
}

.module--type-navigation_new .swiper .nav-card[aria-expanded="true"] .collapse-button span {
    transform: rotate(180deg);
}

.module--type-navigation_new .swiper .nav-card-icon i {
    color: #021bc3;
    font-size: 3rem;
}

.module--type-navigation_new .swiper .nav-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03rem;
    line-height: 1;
}

.module--type-navigation_new .swiper .nav-card-description {
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.625rem;
}

.module--type-navigation_new .swiper .nav-card-children {
    list-style: none;
    margin: 0;
}

.module--type-navigation_new .swiper .nav-card-children li {
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.0225rem;
    line-height: normal;
    padding: 0.5rem 0;
}

.module--type-navigation_new .swiper .nav-card-children li:after {
    background-color: hsla(0, 0%, 100%, 0.25);
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transition: all 0.15s ease-in-out;
    width: 100%;
}

.module--type-navigation_new .swiper .nav-card-children li:hover:after {
    background-color: #fff;
    height: 3px;
}

.module--type-navigation_new .swiper .nav-card-children .nav-card-child {
    align-items: center;
    display: flex;
    position: relative;
}

.module--type-navigation_new .swiper .nav-card-children .nav-card-child .nav-card-child-icon {
    margin-right: 10px;
}

.module--type-navigation_new .swiper .nav-card .collapse-button {
    align-items: center;
    background: #021bc3;
    bottom: 0;
    display: flex;
    height: 2.5rem;
    justify-content: center;
    position: absolute;
    right: 0;
    width: 2.8125rem;
}

.module--type-navigation_new .swiper .nav-card .collapse-button span {
    color: #fff;
    transition: transform 0.3s ease-in-out;
}

.module--type-query.bg-white {
    background-color: #fff;
}

.module--type-query.bg-white .module__title *,
.module--type-query.bg-white .module_desc * {
    color: #252525;
}

.module--type-query.bg-white .query-header-cta {
    border-bottom: #021bc3 !important;
    color: #252525 !important;
}

.module--type-query.bg-white .featured-post-content,
.module--type-query.bg-white .query-card-content,
.module--type-query.bg-white .query-list-content {
    background-color: #f4f4f4;
}

.module--type-query.bg-white .featured-post-content:hover,
.module--type-query.bg-white .query-card-content:hover,
.module--type-query.bg-white .query-list-content:hover {
    background: #021bc3;
    transition: 0.2s ease-in-out;
}

.module--type-query.bg-white .featured-post-content:hover *,
.module--type-query.bg-white .featured-post-content:hover:after,
.module--type-query.bg-white .query-card-content:hover *,
.module--type-query.bg-white .query-card-content:hover:after,
.module--type-query.bg-white .query-list-content:hover *,
.module--type-query.bg-white .query-list-content:hover:after {
    color: #fff;
}

.module--type-query.bg-white .query-header-content *,
.module--type-query.bg-white .query-header-title * {
    color: #252525;
}

.module--type-query.bg-gray {
    background-color: #f4f4f4;
}

.module--type-query.bg-gray .module__title *,
.module--type-query.bg-gray .module_desc * {
    color: #252525;
}

.module--type-query.bg-gray .query-header-cta {
    border-bottom: #021bc3 !important;
    color: #252525 !important;
}

.module--type-query.bg-gray .featured-post-content,
.module--type-query.bg-gray .query-card-content,
.module--type-query.bg-gray .query-list-content {
    background-color: #fff;
}

.module--type-query.bg-gray .featured-post-content:hover,
.module--type-query.bg-gray .query-card-content:hover,
.module--type-query.bg-gray .query-list-content:hover {
    background: #021bc3;
    transition: 0.2s ease-in-out;
}

.module--type-query.bg-gray .featured-post-content:hover *,
.module--type-query.bg-gray .featured-post-content:hover:after,
.module--type-query.bg-gray .query-card-content:hover *,
.module--type-query.bg-gray .query-card-content:hover:after,
.module--type-query.bg-gray .query-list-content:hover *,
.module--type-query.bg-gray .query-list-content:hover:after {
    color: #fff;
}

.module--type-query.bg-gray .query-header-content *,
.module--type-query.bg-gray .query-header-title * {
    color: #252525;
}

.module--type-query.bg-navy {
    background-color: #001e5f;
}

.module--type-query.bg-navy .module__title *,
.module--type-query.bg-navy .module_desc * {
    color: #fff;
}

.module--type-query.bg-navy .query-header-cta {
    border-bottom: #fff !important;
    color: #fff !important;
}

.module--type-query.bg-navy .featured-post-content,
.module--type-query.bg-navy .query-card-content,
.module--type-query.bg-navy .query-list-content {
    background-color: #fff;
}

.module--type-query.bg-navy .featured-post-content:hover,
.module--type-query.bg-navy .query-card-content:hover,
.module--type-query.bg-navy .query-list-content:hover {
    background: #021bc3;
    transition: 0.2s ease-in-out;
}

.module--type-query.bg-navy .featured-post-content:hover *,
.module--type-query.bg-navy .featured-post-content:hover:after,
.module--type-query.bg-navy .query-card-content:hover *,
.module--type-query.bg-navy .query-card-content:hover:after,
.module--type-query.bg-navy .query-header-content *,
.module--type-query.bg-navy .query-header-title *,
.module--type-query.bg-navy .query-list-content:hover *,
.module--type-query.bg-navy .query-list-content:hover:after {
    color: #fff;
}

.module--type-query.bg-yellow {
    background-color: #ffd82b;
}

.module--type-query.bg-yellow .module__title *,
.module--type-query.bg-yellow .module_desc * {
    color: #252525;
}

.module--type-query.bg-yellow .query-header-cta {
    border-bottom: #021bc3 !important;
    color: #252525 !important;
}

.module--type-query.bg-yellow .featured-post-content,
.module--type-query.bg-yellow .query-card-content,
.module--type-query.bg-yellow .query-list-content {
    background-color: #fff;
}

.module--type-query.bg-yellow .featured-post-content:hover,
.module--type-query.bg-yellow .query-card-content:hover,
.module--type-query.bg-yellow .query-list-content:hover {
    background: #021bc3;
    transition: 0.2s ease-in-out;
}

.module--type-query.bg-yellow .featured-post-content:hover *,
.module--type-query.bg-yellow .featured-post-content:hover:after,
.module--type-query.bg-yellow .query-card-content:hover *,
.module--type-query.bg-yellow .query-card-content:hover:after,
.module--type-query.bg-yellow .query-list-content:hover *,
.module--type-query.bg-yellow .query-list-content:hover:after {
    color: #fff;
}

.module--type-query.bg-yellow .query-header-content *,
.module--type-query.bg-yellow .query-header-title * {
    color: #252525;
}

.module--type-query .query-cta {
    display: block;
    margin: 1.5rem auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-query.cards .grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    margin: 2rem auto 0;
}

.module--type-query.list .grid {
    align-items: center;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    max-width: 70rem;
}

.module--type-query.scroll .grid .featured-post {
    margin-bottom: 2.5rem;
}

.module--type-query.scroll .scroll-container .scroll-wrapper {
    display: block;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .query-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .query-header-title * {
    font-size: 3rem;
    font-weight: 900;
    line-height: 3.125rem;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .query-header-title:after {
    background-color: #ffd82b;
    content: "";
    display: block;
    height: 8px;
    margin-top: 0.75rem;
    width: 60px;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .query-header-content {
    margin-top: 1rem;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .query-header-content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .query-header-cta {
    border-bottom: 2px solid #021bc3;
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1rem;
    padding-bottom: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .swiper {
    display: block;
    height: auto;
    margin-top: 2.5rem;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .swiper-slide {
    height: auto;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav {
    display: flex;
    margin-left: auto;
    margin-right: 2.5rem;
    margin-top: 3rem;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-next,
.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-prev {
    background: #021bc3;
    height: 33px;
    inset: auto 0 0 auto;
    position: relative;
    width: 33px;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-next.swiper-button-disabled,
.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-prev.swiper-button-disabled {
    background-color: #252525;
    opacity: 1;
}

.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-next:after,
.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-prev:after {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-prev:after {
    content: "";
}

.module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-next {
    margin-left: 5px;
}

.module--type-query.scroll.bg-yellow .scroll-container .scroll-wrapper .query-header-title:after {
    background-color: #252525;
}

.module--type-query .featured-post {
    display: flex;
    flex-direction: column;
    grid-column: 1/-1;
    margin-bottom: 1.25rem;
}

.module--type-query .featured-post-image img {
    aspect-ratio: 3/2;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.module--type-query .featured-post-content {
    border-bottom: 2px solid #021bc3;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
    margin: -10px 10px 0;
    padding: 1rem 3.5rem 1rem 1rem;
    position: relative;
}

.module--type-query .featured-post-content:after {
    bottom: 1.5rem;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 1.5rem;
    text-rendering: auto;
    transform: translateY(-50%);
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.module--type-query .featured-post-content-category {
    color: #252525;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.09rem;
    text-transform: uppercase;
}

.module--type-query .featured-post-content-title {
    color: #252525;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.025rem;
    line-height: 2.75rem;
    margin-bottom: 0.5rem;
}

.module--type-query .featured-post-content-excerpt {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.module--type-query .query-card,
.module--type-query .query-list {
    align-items: stretch;
    border-bottom: 2px solid #021bc3;
    display: flex;
    flex-direction: column;
}

.module--type-query .query-card-image img,
.module--type-query .query-list-image img {
    aspect-ratio: 5/3;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.module--type-query .query-card a,
.module--type-query .query-list a {
    display: flex;
    flex-grow: 1;
}

.module--type-query .query-card-content,
.module--type-query .query-list-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 0.62rem;
    height: auto;
    padding: 2rem 2rem 3rem;
    position: relative;
}

.module--type-query .query-card-content:after,
.module--type-query .query-list-content:after {
    bottom: 1.5rem;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 1.5rem;
    text-rendering: auto;
    transform: translateY(-50%);
    transition: 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.module--type-query .query-card-content-category,
.module--type-query .query-list-content-category {
    color: #252525;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.09rem;
    text-transform: uppercase;
}

.module--type-query .query-card-content-date,
.module--type-query .query-list-content-date {
    color: #252525;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04375rem;
    text-transform: uppercase;
}

.module--type-query .query-card-content-title,
.module--type-query .query-list-content-title {
    color: #252525;
    display: block;
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.module--type-query .query-card-content-excerpt,
.module--type-query .query-list-content-excerpt {
    color: #252525;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.6875rem;
}

.module--type-query .query-list {
    border-bottom: none;
    display: flex;
    flex-direction: column;
    margin-top: 2rem;
    width: 100%;
}

.module--type-query .query-list:last-of-type {
    border-bottom: none;
}

.query_text-module__container .query_text-module__loop .col-flex {
    flex-direction: row;
    padding-top: 0;
}

.query_text-module__query-column .loop-item {
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.query_text-module__query-column .loop-item .loop-item__image {
    order: 1;
}

.query_text-module__query-column .loop-item .loop-item__inner {
    display: inline-flex;
    flex-flow: column nowrap;
    flex-direction: column;
    justify-content: center;
    order: 2;
}

.query_text-module__cta {
    margin-top: 2rem;
    text-align: center;
}

.query_text-module__text-column {
    margin-top: 6rem;
}

.query_text-module__text {
    border-top: 1px solid #e8e8e8;
    padding-top: 1.5rem;
}

.page .module--type-query_text .text-module__header {
    padding: 0 20px;
}

.page .module--type-query_text .featured-post__cat,
.page .module--type-query_text .loop-item__category,
.page .module--type-query_text .loop-item__cta_link,
.page .module--type-query_text .loop-item__full-content,
.page .module--type-query_text .loop-item__image,
.page .module--type-query_text .loop-item__meta,
.page .module--type-query_text .loop-item__tags,
.page .module--type-query_text .loop-item__title,
.page .module--type-query_text .wrapper_two .post__content {
    display: none;
}

.page .module--type-query_text .featured-post__cat {
    background-color: #001e5f;
    color: #fff;
    font-weight: 900;
    margin-top: 1rem;
    padding: 0.25rem 0.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.page .module--type-query_text .loop-item__image {
    margin: 0 auto;
    max-width: unset;
    width: 100%;
}

.page .module--type-query_text .loop-item__category {
    margin-top: 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.page .module--type-query_text .loop-item__excerpt p {
    font-size: 1.1rem;
}

.page .module--type-query_text .loop-item__title {
    margin: 10px 0 20px;
}

.localist-widget .lwn .page .module--type-query_text .loop-item__full-content a,
.page .module--type-query_text .loop-item__full-content .localist-widget .lwn a,
.page .module--type-query_text .loop-item__full-content h1,
.page .module--type-query_text .loop-item__full-content h2,
.page .module--type-query_text .loop-item__full-content h3,
.page .module--type-query_text .loop-item__full-content h4,
.page .module--type-query_text .loop-item__full-content h5,
.page .module--type-query_text .loop-item__full-content h6,
.page .module--type-query_text .loop-item__full-content ol,
.page .module--type-query_text .loop-item__full-content p,
.page .module--type-query_text .loop-item__full-content ul {
    margin-bottom: 25px;
}

.page .module--type-query_text .loop-item__cta_link a {
    display: block;
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 15px;
}

.page .module--type-query_text .loop-item__cta_link a .fa-arrow-right {
    font-size: 10px;
    position: relative;
    right: -2px;
    top: -1px;
}

.page .module--type-query_text .loop-item__meta .loop-item__date {
    font-size: 0.9rem;
    line-height: 1.625;
}

.page .module--type-query_text .loop-item__tags {
    color: #252525;
    font-size: 0.65rem;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0.06rem;
    line-height: 1.71429;
    text-transform: uppercase;
}

.page .module--type-query_text .show_category .loop-item__category {
    display: inline-block;
}

.page .module--type-query_text .show_content .wrapper_two .post__content,
.page .module--type-query_text .show_cta .loop-item__cta_link,
.page .module--type-query_text .show_date .loop-item__meta,
.page .module--type-query_text .show_image .loop-item__image,
.page .module--type-query_text .show_tags .loop-item__tags,
.page .module--type-query_text .show_title .loop-item__title {
    display: block;
}

.page .module--type-query_text .loop-item {
    border-bottom: none;
    border-top: none;
    padding: 0;
}

.page .module--type-query_text .loop-item .loop-item__inner {
    border-bottom: 1px solid silver;
    max-width: unset;
    width: 100%;
}

.has_image .page .module--type-query_text .loop-item .loop-item__inner {
    max-width: 52.6875rem;
    width: 66%;
}

.page .module--type-query_text .recent-post .featured-post {
    display: none;
}

.above_fold .module--type-query_text .text-module__header {
    padding: 0;
}

.width-medium .query_text-module__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding: 0;
    width: 100%;
}

.width-medium .query_text-module__container .query_text-module__query-column {
    margin: 0 auto;
    max-width: 52.6875rem;
}

.width-large .query_text-module__container {
    padding-left: 0;
    padding-right: 0;
}

.width-large .query_text-module__query-column {
    max-width: unset;
}

.col-flex {
    display: flex;
    flex-flow: column wrap;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.recent-post .col-flex.column-1 .loop-item:first-of-type {
    margin-bottom: 10px;
    padding: 20px 0;
}

.col-flex.column-1 article.loop-item {
    align-items: flex-start;
    border-bottom: 1px solid #e8e8e8;
    display: inline-flex;
    flex-basis: 100%;
    flex-flow: column;
    justify-content: flex-start;
    padding: 20px 0;
    width: 100%;
}

.col-flex.column-1 article.loop-item:first-of-type {
    padding-top: 0;
}

.col-flex.column-1 article.loop-item .loop-item__image {
    width: 100%;
}

.col-flex.column-1 article.loop-item .loop-item__inner {
    border-bottom: none;
    max-width: unset;
    padding-right: 0;
    width: 100%;
}

.white-cards .col-flex.column-1 article.loop-item.show_image.has_image {
    padding-bottom: 0;
    padding-top: 0;
}

.col-flex.column-1 article.loop-item.show_image.has_image .loop-item__inner {
    border-bottom: none;
    margin-left: 3%;
    max-width: unset;
    padding-right: 0;
    width: 100%;
}

.col-flex.column-1 article.loop-item.show_image.has_image .loop-item__image {
    background-size: cover;
    height: 100%;
}

.col-flex.column-2:after {
    content: "";
    width: 50%;
}

.recent-post .col-flex.column-2 .loop-item:first-of-type {
    align-items: flex-start;
    flex-basis: 100%;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin-bottom: 10px;
    margin-top: 0;
    max-width: unset;
    width: 100%;
}

.recent-post .col-flex.column-2 .loop-item:first-of-type .loop-item__inner {
    border-bottom: none;
    border-right: none !important;
    margin: 0;
    max-width: unset;
    padding-right: 0;
    width: 100%;
}

.recent-post .col-flex.column-2 .loop-item:first-of-type.has_image .loop-item__inner {
    border-bottom: none;
    border-left: 1px solid #e8e8e8;
    margin-left: 3%;
    max-width: unset;
    padding-right: 0;
    width: 82%;
}

.col-flex.column-2 article.loop-item {
    align-items: flex-start;
    border-bottom: 1px solid #e8e8e8;
    display: inline-flex;
    flex-basis: 100%;
    flex-flow: column nowrap;
    justify-content: flex-start;
    margin-top: 25px;
    width: 100%;
}

.white-cards .col-flex.column-2 article.loop-item.show_image.has_image .loop-item__image {
    background-size: cover;
    width: 100%;
}

.col-flex.column-2 article.loop-item .loop-item__inner {
    border-bottom: none;
    max-width: unset;
    padding: 20px;
    width: 100%;
}

.col-flex.column-2 article.loop-item .loop-item__inner .loop-item__title {
    font-size: 1.35rem;
    line-height: 1.25;
}

.col-flex.column-3:after {
    content: "";
    width: 33%;
}

.white-cards .col-flex.column-3:after {
    content: "";
    width: 32%;
}

.recent-post .col-flex.column-3 .loop-item:first-of-type {
    align-items: flex-start;
    flex-basis: 100%;
    flex-flow: row nowrap;
    justify-content: flex-start;
    margin-bottom: 10px;
    margin-top: 0;
    max-width: unset;
    width: 100%;
}

.recent-post .col-flex.column-3 .loop-item:first-of-type .loop-item__inner {
    border-bottom: none;
    margin: 0;
    max-width: unset;
    padding-right: 0;
    width: 100%;
}

.recent-post .col-flex.column-3 .loop-item:first-of-type.has_image .loop-item__inner {
    border-bottom: none;
    border-left: 1px solid #e8e8e8;
    margin-left: 3%;
    max-width: unset;
    padding-right: 0;
    width: 82%;
}

.col-flex.column-3 article.loop-item {
    align-items: flex-start;
    border-bottom: 1px solid #e8e8e8;
    display: inline-flex;
    flex-basis: 100%;
    flex-flow: column nowrap;
    justify-content: flex-start;
    margin-top: 25px;
    width: 100%;
}

.white-cards .col-flex.column-3 article.loop-item.show_image.has_image .loop-item__image {
    background-size: cover;
    width: 100%;
}

.col-flex.column-3 article.loop-item .loop-item__inner {
    border-bottom: none;
    border-left: none;
    border-right: none;
    max-width: unset;
    padding: 20px 0;
    width: 100%;
}

.col-flex.column-3 article.loop-item .loop-item__inner .loop-item__title {
    font-size: 1.35rem;
    line-height: 1.25;
}

.module--type-query_text.no-background {
    padding-left: 1em;
    padding-right: 1em;
}

.module--type-query_text .loop-item__excerpt p {
    margin-bottom: 15px;
}

.module--type-query_text .loop-item__category {
    background-color: #001e5f;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.09375rem;
    margin-top: 1rem;
    padding: 0.25rem 0.5rem;
    text-transform: uppercase;
}

.module--type-query_text .large-6:last-of-type {
    border-left: 1px solid #e8e8e8;
    margin-left: 0;
    margin-right: 0;
    padding-left: 1rem;
    padding-right: 1rem;
}

.module--type-query_text .module__title {
    font-family: ivypresto-text, serif;
    margin-bottom: 0 !important;
    position: relative;
}

.module--type-query_text .module__title:before {
    background-color: #001e5f;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: -16px;
    width: 79px;
}

.module--type-query_text.module--two-column .loop-item {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    padding-top: 1.5rem;
}

.module--type-query_text.module--two-column .loop-item__inner {
    max-width: 100%;
}

.module--type-query_text.module--two-column .loop-item__title {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.module--type-query_text.module--two-column .loop-item__meta {
    margin-top: 0;
}

.module--type-query_text.module--two-column .loop-item__category,
.module--type-query_text.module--two-column .loop-item__excerpt {
    display: none;
}

.module--type-query_text.module--two-column .loop-item__image {
    margin-bottom: 0;
    order: 2;
    width: 124px;
}

.module--type-query_text.white-cards {
    background: #f4f4f4;
    padding-left: 1rem;
    padding-right: 1rem;
}

.module--type-query_text.white-cards .text-module__header {
    padding: 0;
}

.module--type-query_text.white-cards .recent-post .loop-item:first-of-type {
    background: #fff;
}

.module--type-query_text.white-cards .recent-post .loop-item:first-of-type .featured-post__cat {
    display: block;
}

.module--type-query_text.white-cards .featured-post {
    background: #fff;
    margin: 0 !important;
    max-width: unset;
    width: 100%;
}

.module--type-query_text.white-cards .featured-post .loop-item__inner {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
}

.module--type-query_text.white-cards .featured-post .loop-item__inner .featured-post__cat {
    background-color: #001e5f;
    color: #fff;
    display: block;
    font-weight: 900;
    margin-top: 1rem;
    padding: 0.25rem 0.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@supports (-ms-ime-align: auto) {
    .module--type-query_text.white-cards .featured-post .loop-item__inner .featured-post__cat {
        display: table !important;
        width: auto;
    }
}

.module--type-query_text.white-cards .column-1 .loop-item {
    background: #fff;
    flex-basis: 100%;
    margin-top: 20px;
    width: 100%;
}

.module--type-query_text.white-cards .column-1 .loop-item .loop-item__inner {
    background: #fff !important;
    padding: 20px;
}

.recent-post .module--type-query_text.white-cards .column-1 .loop-item:first-of-type {
    margin-bottom: 0;
}

.recent-post .module--type-query_text.white-cards .column-1 .loop-item:first-of-type.has_image .loop-item__inner {
    border-left: 1px solid #e8e8e8;
}

.module--type-query_text.white-cards .column-2 {
    justify-content: space-between;
}

.module--type-query_text.white-cards .column-2 .loop-item {
    background: #fff !important;
    flex-basis: 100%;
    margin: 30px 0 0;
    width: 100%;
}

.module--type-query_text.white-cards .column-2 .loop-item .loop-item__inner {
    background: #fff !important;
}

.recent-post .module--type-query_text.white-cards .column-2 .loop-item:first-of-type {
    margin-bottom: 0;
}

.recent-post .module--type-query_text.white-cards .column-2 .loop-item:first-of-type.has_image .loop-item__inner {
    border-left: 1px solid #e8e8e8;
}

.module--type-query_text.white-cards .column-3 {
    justify-content: space-between;
}

.module--type-query_text.white-cards .column-3 .loop-item {
    background: #fff !important;
    flex-basis: 100%;
    margin: 30px 0 0;
    width: 100%;
}

.module--type-query_text.white-cards .column-3 .loop-item .loop-item__inner {
    background: #fff !important;
}

.recent-post .module--type-query_text.white-cards .column-3 .loop-item:first-of-type {
    margin-bottom: 0;
}

.recent-post .module--type-query_text.white-cards .column-3 .loop-item:first-of-type.has_image .loop-item__inner {
    border-left: 1px solid #e8e8e8;
}

.page .above_fold .module--type-query_text .recent-post .big_text .loop-item:first-of-type {
    flex-flow: column;
}

.page .above_fold .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__inner,
.page .above_fold .module--type-query_text .recent-post .big_text .loop-item:first-of-type.has_image .loop-item__image,
.page .above_fold .module--type-query_text .recent-post .big_text .loop-item:first-of-type.has_image .loop-item__inner {
    flex-basis: 100%;
    width: 100%;
}

.page .above_fold .module--type-query_text .recent-post .big_text .featured-post {
    flex-flow: column;
}

.page .above_fold .module--type-query_text .recent-post .big_text .featured-post .has_image .loop-item__image,
.page .above_fold .module--type-query_text .recent-post .big_text .featured-post .has_image .loop-item__inner,
.page .above_fold .module--type-query_text .recent-post .big_text .featured-post .loop-item__inner {
    flex-basis: 100%;
    width: 100%;
}

.page .module--type-query_text .basic_style {
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    width: 100%;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type {
    background: #f4f4f4;
    display: flex;
    flex-direction: row;
    padding: 20px !important;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type .loop-item__image {
    display: none;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type .loop-item__inner {
    border-left: none !important;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: unset;
    order: 2;
    padding: 0 !important;
    width: 100% !important;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type .featured-post__cat {
    display: block;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type .loop-item__category {
    display: none;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type .loop-item__meta {
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type .loop-item__tags {
    display: none;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type .loop-item__title {
    display: block;
}

.page .module--type-query_text .basic_style .loop-item:first-of-type .loop-item__excerpt {
    display: block;
    margin: 0;
}

.page .module--type-query_text .basic_style .featured-post {
    background: #f4f4f4;
    display: flex;
    flex-direction: row;
    padding: 20px !important;
}

.page .module--type-query_text .basic_style .featured-post .loop-item__image {
    display: none;
}

.page .module--type-query_text .basic_style .featured-post .loop-item__inner {
    border-left: none !important;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0 !important;
    margin-right: 0 !important;
    max-width: unset;
    order: 2;
    padding: 0 !important;
    width: 100% !important;
}

.page .module--type-query_text .basic_style .featured-post .featured-post__cat {
    display: block;
}

.page .module--type-query_text .basic_style .featured-post .loop-item__category {
    display: none;
}

.page .module--type-query_text .basic_style .featured-post .loop-item__excerpt,
.page .module--type-query_text .basic_style .featured-post .loop-item__title {
    display: block;
}

.page .module--type-query_text .basic_style .featured-post .loop-item__meta {
    display: block;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.page .module--type-query_text .basic_style .featured-post .loop-item__tags {
    display: none;
}

.page .module--type-query_text .basic_style .featured-post .loop-item__title {
    display: block;
}

.page .module--type-query_text .basic_style .featured-post .loop-item__excerpt {
    margin: 0;
}

.page .module--type-query_text .long_text .loop-item:first-of-type {
    background: #f4f4f4;
    flex-direction: column;
}

.page .module--type-query_text .long_text .loop-item:first-of-type.has_image {
    flex-direction: column;
}

.page .module--type-query_text .long_text .loop-item:first-of-type.has_image .loop-item__image {
    display: flex;
    width: 100%;
}

.page .module--type-query_text .long_text .loop-item:first-of-type .loop-item__inner {
    border-bottom: none !important;
    border-left: none !important;
    margin-left: 0 !important;
    max-width: unset !important;
    padding: 20px !important;
    width: 100% !important;
}

.page .module--type-query_text .long_text .loop-item:first-of-type .loop-item__category {
    display: none;
}

.page .module--type-query_text .long_text .loop-item:first-of-type .featured-post__cat {
    display: block;
}

.page .module--type-query_text .long_text .loop-item:first-of-type .loop-item__tags {
    display: none;
}

.page .module--type-query_text .long_text .loop-item:first-of-type .loop-item__full-content,
.page .module--type-query_text .long_text .loop-item:first-of-type .loop-item__meta,
.page .module--type-query_text .long_text .loop-item:first-of-type .loop-item__title {
    display: block;
}

.page .module--type-query_text .long_text .loop-item:first-of-type .loop-item__excerpt {
    display: none;
}

.page .module--type-query_text .long_text .featured-post {
    background: #f4f4f4;
    flex-direction: column;
}

.page .module--type-query_text .long_text .featured-post.has_image {
    flex-direction: column;
}

.page .module--type-query_text .long_text .featured-post.has_image .loop-item__image {
    display: flex;
    width: 100%;
}

.page .module--type-query_text .long_text .featured-post .loop-item__inner {
    border-bottom: none !important;
    border-left: none !important;
    margin-left: 0 !important;
    max-width: unset !important;
    padding: 20px !important;
    width: 100% !important;
}

.page .module--type-query_text .long_text .featured-post .loop-item__category {
    display: none;
}

.page .module--type-query_text .long_text .featured-post .featured-post__cat {
    display: block;
}

.page .module--type-query_text .long_text .featured-post .loop-item__tags {
    display: none;
}

.page .module--type-query_text .long_text .featured-post .loop-item__full-content,
.page .module--type-query_text .long_text .featured-post .loop-item__meta,
.page .module--type-query_text .long_text .featured-post .loop-item__title {
    display: block;
}

.page .module--type-query_text .long_text .featured-post .loop-item__excerpt {
    display: none;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type {
    display: flex;
    flex-flow: column;
    padding: 0;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__image {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    height: 100%;
    margin-bottom: 0;
    max-width: unset;
    width: 100%;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type.has_image .loop-item__image {
    display: inline-flex;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type.has_image .loop-item__inner {
    display: inline-flex;
    flex-basis: 100%;
    margin-left: 0;
    max-width: unset;
    padding: 20px !important;
    width: 100%;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type.has_image .loop-item__inner .loop-item__excerpt p,
.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type.has_image .loop-item__inner .loop-item__title {
    width: 100% !important;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__inner {
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin-left: 0;
    max-width: unset;
    padding: 30px !important;
    width: 100%;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__inner .loop-item__category,
.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__inner .loop-item__meta {
    display: none;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__inner .featured-post__cat {
    display: block;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__inner .loop-item__title {
    display: block;
    margin-top: 20px;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__inner .loop-item__excerpt p {
    color: #252525;
    margin-bottom: 10px;
}

.page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__inner .loop-item__tags {
    display: none;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post {
    display: flex;
    flex-flow: row-reverse;
    margin-bottom: 25px;
    padding: 0;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__image {
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    height: auto;
    margin-bottom: 0;
    max-width: unset;
    width: 100%;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post.has_image .loop-item__image {
    display: inline-flex;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post.has_image .loop-item__inner {
    display: inline-flex;
    flex-basis: 100%;
    margin-left: 0;
    max-width: unset;
    padding: 20px !important;
    width: 100%;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post.has_image .loop-item__inner .loop-item__excerpt p,
.page .module--type-query_text .big_text .featured-post.loop-item--post.has_image .loop-item__inner .loop-item__title {
    width: 100% !important;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__inner {
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    max-width: unset;
    padding: 30px !important;
    width: 100%;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__inner .loop-item__category,
.page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__inner .loop-item__meta {
    display: none;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__inner .featured-post__cat {
    display: block;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__inner .loop-item__title {
    display: block;
    font-size: 1.35rem;
    line-height: 1.25;
    margin-top: 20px;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__inner .loop-item__excerpt p {
    color: #252525;
    margin-bottom: 10px;
}

.page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__inner .loop-item__tags {
    display: none;
}

.module--type-query_text.width-large .big_text .featured-post .loop-item__excerpt p,
.module--type-query_text.width-large .big_text .featured-post .loop-item__title,
.module--type-query_text.width-large .big_text .loop-item:first-of-type .loop-item__excerpt p,
.module--type-query_text.width-large .big_text .loop-item:first-of-type .loop-item__title {
    width: 100% !important;
}

.module--type-rss_feed .desc_section {
    margin-bottom: 2.5rem;
}

.module--type-rss_feed.bg-white {
    background-color: #fff;
}

.module--type-rss_feed.bg-gray,
.module--type-rss_feed.bg-white .grid .rss-card-link-wrapper-content,
.module--type-rss_feed.bg-white .grid .rss-card-scroll-link-wrapper-content {
    background-color: #f4f4f4;
}

.module--type-rss_feed.bg-gray .grid .rss-card-link-wrapper-content,
.module--type-rss_feed.bg-gray .grid .rss-card-scroll-link-wrapper-content {
    background-color: #fff;
}

.module--type-rss_feed.Cards .grid .rss-card,
.module--type-rss_feed.cards .grid .rss-card {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.module--type-rss_feed.Cards .grid .rss-card-link-wrapper,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper {
    display: flex;
    height: 100%;
}

.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content {
    border-bottom: 2px solid #021bc3;
    display: flex;
    flex-direction: column;
    padding: 1.25rem 3.125rem 1.25rem 1.25rem;
    position: relative;
    transition: 0.4s ease-in-out;
    width: 100%;
}

.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content:after,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content:after {
    bottom: 0;
    color: #021bc3;
    content: "";
    display: flex;
    flex-wrap: wrap;
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    height: 40px;
    place-content: center center;
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    transition: 0.4s ease-in-out;
    width: 45px;
}

.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content-title,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content-title {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
}

.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content-pubdate,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content-pubdate {
    color: #252525;
    font-size: 0.875rem;
    font-weight: 400;
    letter-spacing: 0.04375rem;
    text-transform: uppercase;
}

.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content-description,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content-description {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
}

.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content:hover,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content:hover {
    background-color: #021bc3;
}

.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content:hover .rss-card-link-wrapper-content-description,
.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content:hover .rss-card-link-wrapper-content-pubdate,
.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content:hover .rss-card-link-wrapper-content-title,
.module--type-rss_feed.Cards .grid .rss-card-link-wrapper-content:hover:after,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content:hover .rss-card-link-wrapper-content-description,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content:hover .rss-card-link-wrapper-content-pubdate,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content:hover .rss-card-link-wrapper-content-title,
.module--type-rss_feed.cards .grid .rss-card-link-wrapper-content:hover:after {
    color: #fff;
}

.module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-image,
.module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-image {
    display: flex;
    height: 100%;
}

.module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-link-wrapper-content,
.module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-link-wrapper-content {
    padding: 1.25rem 2.8125rem 1.25rem 1.25rem;
}

.module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-link-wrapper-content-title,
.module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-link-wrapper-content-title {
    line-height: 1.3;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid,
.module--type-rss_feed.cards.rss-card-columns-two .grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid .rss-card,
.module--type-rss_feed.cards.rss-card-columns-two .grid .rss-card {
    max-width: none;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid .rss-card-link,
.module--type-rss_feed.Cards.rss-card-columns-two .grid .rss-card-link-wrapper,
.module--type-rss_feed.cards.rss-card-columns-two .grid .rss-card-link,
.module--type-rss_feed.cards.rss-card-columns-two .grid .rss-card-link-wrapper {
    height: 100%;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid .rss-card-link-wrapper-content-title,
.module--type-rss_feed.cards.rss-card-columns-two .grid .rss-card-link-wrapper-content-title {
    letter-spacing: -0.01375rem;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero,
.module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero {
    align-items: center;
    display: grid;
    grid-template-columns: repeat(24, 1fr);
    grid-template-rows: 1fr;
    max-width: none;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-image,
.module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-image {
    display: flex;
    grid-column: 1/18;
    grid-row: 1;
    height: 100%;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-image img,
.module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-image img {
    object-fit: cover;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link,
.module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link {
    grid-column: 16/-1;
    grid-row: 1;
    height: auto;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content .rss-card-link-wrapper-content-title,
.module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content .rss-card-link-wrapper-content-title {
    font-size: 2.5rem;
    line-height: 2.75rem;
}

.module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-one,
.module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-one {
    align-self: center;
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid,
.module--type-rss_feed.cards.rss-card-columns-three .grid {
    display: grid;
    gap: 1.3rem;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid .rss-card-link,
.module--type-rss_feed.Cards.rss-card-columns-three .grid .rss-card-link-wrapper,
.module--type-rss_feed.cards.rss-card-columns-three .grid .rss-card-link,
.module--type-rss_feed.cards.rss-card-columns-three .grid .rss-card-link-wrapper {
    height: 100%;
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid .rss-card-link-wrapper-content-title,
.module--type-rss_feed.cards.rss-card-columns-three .grid .rss-card-link-wrapper-content-title {
    letter-spacing: -0.01375rem;
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card,
.module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card {
    display: flex;
    flex-direction: column;
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card .rss-card-link,
.module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card .rss-card-link {
    flex-grow: 1;
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero,
.module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero {
    align-items: center;
    display: grid;
    grid-column: 1/-1;
    grid-template-columns: repeat(24, 1fr);
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-image,
.module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-image {
    display: flex;
    grid-column: 1/13;
    grid-row: 1;
    height: 100%;
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-image img,
.module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-image img {
    object-fit: cover;
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link,
.module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link {
    grid-column: 13/-1;
    grid-row: 1;
}

.module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content .rss-card-link-wrapper-content-title,
.module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content .rss-card-link-wrapper-content-title {
    font-size: 2.5rem;
    line-height: 2.75rem;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper {
    align-items: center;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide {
    align-items: stretch;
    display: flex;
    width: 90%;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide:first-of-type,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide:first-of-type {
    width: 260px;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide.grid-container,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide.grid-container {
    padding-left: 0;
    padding-right: 0;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header {
    align-content: center;
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-title h2,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-title h2 {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 2.375rem;
    font-weight: 900;
    line-height: 2.5rem;
    padding-bottom: 10px;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-title:after,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-title:after {
    background-color: #ffd82b;
    content: "";
    display: block;
    height: 8px;
    width: 60px;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-content p,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-content p {
    color: #252525;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.625rem;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-cta,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-cta {
    border-bottom: 2px solid #021bc3;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 1.25rem;
    padding: 0.3125rem;
    transition: 0.4s ease-in-out;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-cta:after,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-cta:after {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    margin-left: 0.3125rem;
    position: relative;
    top: 1px;
    transition: 0.4s ease-in-out;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-cta:hover,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-cta:hover {
    background-color: #021bc3;
    color: #fff;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-cta:hover:after,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-cta:hover:after {
    color: #fff;
    padding-left: 0.3125rem;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll {
    display: flex;
    flex-direction: column;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-image,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-image {
    max-height: 226px;
    object-fit: cover;
    width: 100%;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link {
    flex-grow: 1;
    height: 100%;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper {
    display: flex;
    height: 100%;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content {
    border-bottom: 2px solid #021bc3;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 1.25rem 3.5rem 1.25rem 1.25rem;
    position: relative;
    transition: 0.4s ease-in-out;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:after,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:after {
    bottom: 0;
    color: #021bc3;
    content: "";
    display: flex;
    flex-wrap: wrap;
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    height: 40px;
    place-content: center center;
    position: absolute;
    right: 10px;
    transform: translateY(-50%);
    transition: 0.4s ease-in-out;
    width: 45px;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover {
    background-color: #021bc3;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-link-wrapper-content-description,
.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-link-wrapper-content-pubdate,
.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-link-wrapper-content-title,
.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-scroll-link-wrapper-content-description,
.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-scroll-link-wrapper-content-pubdate,
.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-scroll-link-wrapper-content-title,
.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover:after,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-link-wrapper-content-description,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-link-wrapper-content-pubdate,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-link-wrapper-content-title,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-scroll-link-wrapper-content-description,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-scroll-link-wrapper-content-pubdate,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover .rss-card-scroll-link-wrapper-content-title,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content:hover:after {
    color: #fff;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content-title,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content-title {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    line-height: 1.2;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content-pubdate,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content-pubdate {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.035rem;
    text-transform: uppercase;
}

.module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content-description,
.module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-card-scroll-link-wrapper-content-description {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6875rem;
}

.module--type-rss_feed.Scroll .scroll-container .swiper-nav,
.module--type-rss_feed.scroll .scroll-container .swiper-nav {
    display: flex;
    margin-left: auto;
    margin-right: 2.5rem;
    margin-top: 3.5rem;
}

.module--type-rss_feed.Scroll .scroll-container .swiper-nav .swiper-button-prev,
.module--type-rss_feed.scroll .scroll-container .swiper-nav .swiper-button-prev {
    background: #021bc3;
    height: 33px;
    inset: auto 80px 0 auto;
    width: 33px;
}

.module--type-rss_feed.Scroll .scroll-container .swiper-nav .swiper-button-prev.swiper-button-disabled,
.module--type-rss_feed.scroll .scroll-container .swiper-nav .swiper-button-prev.swiper-button-disabled {
    background-color: #252525;
    opacity: 1;
}

.module--type-rss_feed.Scroll .scroll-container .swiper-nav .swiper-button-prev:after,
.module--type-rss_feed.scroll .scroll-container .swiper-nav .swiper-button-prev:after {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-rss_feed.Scroll .scroll-container .swiper-nav .swiper-button-next,
.module--type-rss_feed.scroll .scroll-container .swiper-nav .swiper-button-next {
    background: #021bc3;
    height: 33px;
    inset: auto 40px 0 auto;
    width: 33px;
}

.module--type-rss_feed.Scroll .scroll-container .swiper-nav .swiper-button-next.swiper-button-disabled,
.module--type-rss_feed.scroll .scroll-container .swiper-nav .swiper-button-next.swiper-button-disabled {
    background-color: #252525;
    opacity: 1;
}

.module--type-rss_feed.Scroll .scroll-container .swiper-nav .swiper-button-next:after,
.module--type-rss_feed.scroll .scroll-container .swiper-nav .swiper-button-next:after {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-social {
    padding-bottom: 0;
    padding-top: 0;
}

.module--type-social .landing-social {
    background-color: #f4f4f4;
    padding: 2rem 20px 3rem;
}

.module--type-social .landing-social ul li a {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.module--type-social .landing-social .social-module__content p {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 10px;
}

.module--type-social .landing-social .social-module__content * {
    margin-bottom: 2rem;
}

.module--type-social .landing-social .social-module__content h4 {
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.module--type-social .landing-social .social-container {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.module--type-social .landing-social .social-container .sticky-header__list [class^="fa-"] {
    font-size: 1.5rem;
    margin-right: 0;
}

.module--type-social .landing-social .social-container .sticky-header__list .social-label {
    bottom: -25px;
    font-family: inter-variable, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2;
    position: absolute;
}

.module--type-social .landing-social .social-container .social-header {
    color: #fff;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 1px;
    line-height: 1.2;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.module--type-social .landing-social .social-container .social-header:after,
.module--type-social .landing-social .social-container .social-header:before {
    border-top: 1px dashed #252525;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}

.module--type-social .landing-social .social-container .social-header:before {
    left: 100%;
    margin-left: 10px;
}

.module--type-social .landing-social .social-container .social-header:after {
    margin-right: 10px;
    right: 100%;
}

.module--type-social .landing-social .social-container ul {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 1.25rem;
    text-align: center;
}

.module--type-social .landing-social .social-container ul li {
    margin: 0;
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}

.module--type-social .landing-social .social-container ul li a {
    border: 3px solid #f4f4f4;
    border-radius: 50%;
    color: #f4f4f4;
    display: inline-flex;
    flex-direction: column;
    -ms-flex-pack: center;
    font-size: 1.5rem;
    height: 45px;
    justify-content: center;
    width: 45px;
}

.module--type-social.navy,
.module--type-social.navy .landing-social {
    background-color: #001e5f;
}

.module--type-social.navy .landing-social .social-module__content * {
    color: #fff;
}

.module--type-social.navy .landing-social .sticky-header__list * {
    border-color: #fff;
    color: #fff;
    fill: #fff;
}

.module--type-social.navy .landing-social .social-container .social-header,
.module--type-social.navy .landing-social .social-container .sticky-header__list .social-label {
    color: #fff;
}

.module--type-social.navy .landing-social .social-container .social-header:after,
.module--type-social.navy .landing-social .social-container .social-header:before,
.module--type-social.navy .landing-social .social-container .sticky-header__list .social-label:after,
.module--type-social.navy .landing-social .social-container .sticky-header__list .social-label:before {
    border-color: #fff;
}

.module--type-social.white,
.module--type-social.white .landing-social {
    background-color: #fff;
}

.module--type-social.white .landing-social .social-module__content * {
    color: #252525;
}

.module--type-social.white .landing-social .sticky-header__list * {
    border-color: #252525;
    color: #252525;
    fill: #252525;
}

.module--type-social.white .landing-social .social-container .social-header,
.module--type-social.white .landing-social .social-container .sticky-header__list .social-label {
    color: #252525;
}

.module--type-social.white .landing-social .social-container .social-header:after,
.module--type-social.white .landing-social .social-container .social-header:before,
.module--type-social.white .landing-social .social-container .sticky-header__list .social-label:after,
.module--type-social.white .landing-social .social-container .sticky-header__list .social-label:before {
    border-color: #252525;
}

.module--type-social.yellow,
.module--type-social.yellow .landing-social {
    background-color: #ffd82b;
}

.module--type-social.yellow .landing-social .social-module__content * {
    color: #252525;
}

.module--type-social.yellow .landing-social .sticky-header__list * {
    border-color: #252525;
    color: #252525;
    fill: #252525;
}

.module--type-social.yellow .landing-social .social-container .social-header,
.module--type-social.yellow .landing-social .social-container .sticky-header__list .social-label {
    color: #252525;
}

.module--type-social.yellow .landing-social .social-container .social-header:after,
.module--type-social.yellow .landing-social .social-container .social-header:before,
.module--type-social.yellow .landing-social .social-container .sticky-header__list .social-label:after,
.module--type-social.yellow .landing-social .social-container .sticky-header__list .social-label:before {
    border-color: #252525;
}

.module--type-social.yellow .sticky-header__list * {
    color: #252525;
}

.module--type-social.grey,
.module--type-social.grey .landing-social {
    background-color: #f4f4f4;
}

.module--type-social.grey .landing-social .social-module__content * {
    color: #252525;
}

.module--type-social.grey .landing-social .sticky-header__list * {
    border-color: #252525;
    color: #252525;
    fill: #252525;
}

.module--type-social.grey .landing-social .social-container .social-header,
.module--type-social.grey .landing-social .social-container .sticky-header__list .social-label {
    color: #252525;
}

.module--type-social.grey .landing-social .social-container .social-header:after,
.module--type-social.grey .landing-social .social-container .social-header:before,
.module--type-social.grey .landing-social .social-container .sticky-header__list .social-label:after,
.module--type-social.grey .landing-social .social-container .sticky-header__list .social-label:before {
    border-color: #252525;
}

.module--type-social.grey .sticky-header__list * {
    color: #252525;
}

.module--type-social.charcoal,
.module--type-social.charcoal .landing-social {
    background-color: #252525;
}

.module--type-social.charcoal .landing-social .social-module__content * {
    color: #fff;
}

.module--type-social.charcoal .landing-social .sticky-header__list * {
    border-color: #fff;
    color: #fff;
    fill: #fff;
}

.module--type-social.charcoal .landing-social .social-container .social-header,
.module--type-social.charcoal .landing-social .social-container .social-module__content *,
.module--type-social.charcoal .landing-social .social-container .sticky-header__list *,
.module--type-social.charcoal .landing-social .social-container .sticky-header__list .social-label {
    color: #fff;
}

.module--type-social.charcoal .landing-social .social-container .social-header:after,
.module--type-social.charcoal .landing-social .social-container .social-header:before,
.module--type-social.charcoal .landing-social .social-container .sticky-header__list .social-label:after,
.module--type-social.charcoal .landing-social .social-container .sticky-header__list .social-label:before {
    border-color: #fff;
}

.module--type-social.charcoal .sticky-header__list * {
    color: #252525;
}

.module--type-social.social_blue .landing-social ul li a {
    border: 3px solid #021bc3 !important;
    color: #021bc3 !important;
}

.module--type-social.social_blue .landing-social ul li a path,
.module--type-social.social_blue .landing-social ul li a span,
.module--type-social.social_blue .landing-social ul li a svg {
    color: #021bc3 !important;
    fill: #021bc3 !important;
}

.module--type-social.social_white .landing-social ul li a {
    border: 3px solid #fff !important;
    color: #fff !important;
}

.module--type-social.social_white .landing-social ul li a path,
.module--type-social.social_white .landing-social ul li a span,
.module--type-social.social_white .landing-social ul li a svg {
    color: #fff !important;
    fill: #fff !important;
}

.module--type-social.social_yellow .landing-social ul li a {
    border: 3px solid #ffd82b !important;
    color: #ffd82b !important;
}

.module--type-social.social_yellow .landing-social ul li a path,
.module--type-social.social_yellow .landing-social ul li a span,
.module--type-social.social_yellow .landing-social ul li a svg {
    color: #ffd82b !important;
    fill: #ffd82b !important;
}

.module--type-social.social_grey .landing-social ul li a {
    border: 3px solid #f4f4f4 !important;
    color: #f4f4f4 !important;
}

.module--type-social.social_grey .landing-social ul li a path,
.module--type-social.social_grey .landing-social ul li a span,
.module--type-social.social_grey .landing-social ul li a svg {
    color: #f4f4f4 !important;
    fill: #f4f4f4 !important;
}

.module--type-social.social_charcoal .landing-social ul li a {
    border: 3px solid #252525 !important;
    color: #252525 !important;
}

.module--type-social.social_charcoal .landing-social ul li a path,
.module--type-social.social_charcoal .landing-social ul li a span,
.module--type-social.social_charcoal .landing-social ul li a svg {
    color: #252525 !important;
    fill: #252525 !important;
}

.module--type-social.hover_blue .landing-social ul li a:hover {
    border: 3px solid #021bc3 !important;
    color: #021bc3 !important;
}

.module--type-social.hover_blue .landing-social ul li a:hover path,
.module--type-social.hover_blue .landing-social ul li a:hover span,
.module--type-social.hover_blue .landing-social ul li a:hover svg {
    color: #021bc3 !important;
    fill: #021bc3 !important;
}

.module--type-social.hover_white .landing-social ul li a:hover {
    border: 3px solid #fff !important;
    color: #fff !important;
}

.module--type-social.hover_white .landing-social ul li a:hover path,
.module--type-social.hover_white .landing-social ul li a:hover span,
.module--type-social.hover_white .landing-social ul li a:hover svg {
    color: #fff !important;
    fill: #fff !important;
}

.module--type-social.hover_yellow .landing-social ul li a:hover {
    border: 3px solid #ffd82b !important;
    color: #ffd82b !important;
}

.module--type-social.hover_yellow .landing-social ul li a:hover path,
.module--type-social.hover_yellow .landing-social ul li a:hover span,
.module--type-social.hover_yellow .landing-social ul li a:hover svg {
    color: #ffd82b !important;
    fill: #ffd82b !important;
}

.module--type-social.hover_grey .landing-social ul li a:hover {
    border: 3px solid #f4f4f4 !important;
    color: #f4f4f4 !important;
}

.module--type-social.hover_grey .landing-social ul li a:hover path,
.module--type-social.hover_grey .landing-social ul li a:hover span,
.module--type-social.hover_grey .landing-social ul li a:hover svg {
    color: #f4f4f4 !important;
    fill: #f4f4f4 !important;
}

.module--type-social.hover_charcoal .landing-social ul li a:hover {
    border: 3px solid #252525 !important;
    color: #252525 !important;
}

.module--type-social.hover_charcoal .landing-social ul li a:hover path,
.module--type-social.hover_charcoal .landing-social ul li a:hover span,
.module--type-social.hover_charcoal .landing-social ul li a:hover svg {
    color: #252525 !important;
    fill: #252525 !important;
}

.module--type-table_of_contents.bg-white {
    background-color: #fff;
}

.module--type-table_of_contents.bg-gray {
    background-color: #f4f4f4;
}

.module--type-table_of_contents.bg-charcoal {
    background-color: #252525;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .desc_section *,
.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-list *,
.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper p {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-list li {
    border-bottom: 1px solid #252525;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-list li:before {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-list li a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-list li a:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-cta {
    border: 2px solid #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-cta:after {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-cta:hover {
    background-color: #fff;
    color: #252525;
}

.module--type-table_of_contents.bg-charcoal.cover_photo .toc .toc-wrapper .toc-wrapper-cta:hover:after {
    color: #252525;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .desc_section * {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .desc_section .toc-wrapper-cta {
    border: 2px solid #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .desc_section .toc-wrapper-cta:after {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .desc_section .toc-wrapper-cta:hover {
    background-color: #fff;
    color: #252525;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .desc_section .toc-wrapper-cta:hover:after {
    color: #252525;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .toc-wrapper .toc-wrapper-list *,
.module--type-table_of_contents.bg-charcoal.standard_width .toc .toc-wrapper p {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .toc-wrapper .toc-wrapper-list li {
    border-bottom: 1px solid #252525;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .toc-wrapper .toc-wrapper-list li:before {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .toc-wrapper .toc-wrapper-list li a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-table_of_contents.bg-charcoal.standard_width .toc .toc-wrapper .toc-wrapper-list li a:hover {
    box-shadow: 0 3px 0 0 #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .desc_section * {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .desc_section .toc-wrapper-cta {
    border: 2px solid #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .desc_section .toc-wrapper-cta:after {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .desc_section .toc-wrapper-cta:hover {
    background-color: #fff;
    color: #252525;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .desc_section .toc-wrapper-cta:hover:after {
    color: #252525;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .toc-wrapper .toc-wrapper-list *,
.module--type-table_of_contents.bg-charcoal.full_width .toc .toc-wrapper p {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .toc-wrapper .toc-wrapper-list li {
    border-bottom: 1px solid #252525;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .toc-wrapper .toc-wrapper-list li:before {
    color: #fff;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .toc-wrapper .toc-wrapper-list li a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-table_of_contents.bg-charcoal.full_width .toc .toc-wrapper .toc-wrapper-list li a:hover {
    box-shadow: 0 3px 0 0 #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-navy {
    background-color: #001e5f;
}

.module--type-table_of_contents.bg-navy.cover_photo .desc_section *,
.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-list *,
.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper p {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-list li {
    border-bottom: 1px solid #252525;
}

.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-list li:before {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-list li a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-list li a:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-cta {
    border: 2px solid #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-cta:after {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-cta:hover {
    background-color: #fff;
    color: #252525;
}

.module--type-table_of_contents.bg-navy.cover_photo .toc .toc-wrapper .toc-wrapper-cta:hover:after {
    color: #252525;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .desc_section * {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .desc_section .toc-wrapper-cta {
    border: 2px solid #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .desc_section .toc-wrapper-cta:after {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .desc_section .toc-wrapper-cta:hover {
    background-color: #fff;
    color: #252525;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .desc_section .toc-wrapper-cta:hover:after {
    color: #252525;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .toc-wrapper .toc-wrapper-list *,
.module--type-table_of_contents.bg-navy.standard_width .toc .toc-wrapper p {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .toc-wrapper .toc-wrapper-list li {
    border-bottom: 1px solid #252525;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .toc-wrapper .toc-wrapper-list li:before {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .toc-wrapper .toc-wrapper-list li a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-table_of_contents.bg-navy.standard_width .toc .toc-wrapper .toc-wrapper-list li a:hover {
    box-shadow: 0 3px 0 0 #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-navy.full_width .toc .desc_section * {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.full_width .toc .desc_section .toc-wrapper-cta {
    border: 2px solid #fff;
    color: #fff;
}

.module--type-table_of_contents.bg-navy.full_width .toc .desc_section .toc-wrapper-cta:after {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.full_width .toc .desc_section .toc-wrapper-cta:hover {
    background-color: #fff;
    color: #252525;
}

.module--type-table_of_contents.bg-navy.full_width .toc .desc_section .toc-wrapper-cta:hover:after {
    color: #252525;
}

.module--type-table_of_contents.bg-navy.full_width .toc .toc-wrapper .toc-wrapper-list *,
.module--type-table_of_contents.bg-navy.full_width .toc .toc-wrapper p {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.full_width .toc .toc-wrapper .toc-wrapper-list li {
    border-bottom: 1px solid #252525;
}

.module--type-table_of_contents.bg-navy.full_width .toc .toc-wrapper .toc-wrapper-list li:before {
    color: #fff;
}

.module--type-table_of_contents.bg-navy.full_width .toc .toc-wrapper .toc-wrapper-list li a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-table_of_contents.bg-navy.full_width .toc .toc-wrapper .toc-wrapper-list li a:hover {
    box-shadow: 0 3px 0 0 #fff;
    color: #fff;
}

.module--type-table_of_contents .desc_section {
    margin-bottom: 4rem;
    text-align: center;
}

.module--type-table_of_contents .desc_section .module__title * {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.05rem;
}

.module--type-table_of_contents .desc_section .module__title :after {
    background-color: #ffd82b;
    content: "";
    display: flex;
    height: 8px;
    justify-self: center;
    margin-top: 5px;
    width: 80px;
}

.module--type-table_of_contents .desc_section .module_desc p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.module--type-table_of_contents.full_width .toc {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
}

.module--type-table_of_contents.full_width .toc .desc_section {
    text-align: left;
}

.module--type-table_of_contents.full_width .toc .desc_section .module__title :after {
    justify-self: normal;
    margin: 10px 0 16px;
}

.module--type-table_of_contents.full_width .toc .desc_section .toc-wrapper-cta {
    align-items: center;
    border: 2px solid #021bc3;
    color: #021bc3;
    display: inline-flex;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 0.625rem;
    margin-top: 1.5rem;
    padding: 0.625rem 1rem;
    transition: 0.15s ease-in-out;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-table_of_contents.full_width .toc .desc_section .toc-wrapper-cta:after {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    margin-left: 0.3125rem;
    position: relative;
    top: 2px;
    transition: 0.15s ease-in-out;
}

.module--type-table_of_contents.full_width .toc .desc_section .toc-wrapper-cta:hover {
    background-color: #021bc3;
    color: #fff;
}

.module--type-table_of_contents.full_width .toc .desc_section .toc-wrapper-cta:hover:after {
    color: #fff;
}

.module--type-table_of_contents.full_width .toc .toc-wrapper p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.module--type-table_of_contents.full_width .toc .toc-wrapper .toc-wrapper-list ul {
    margin-left: 0;
}

.module--type-table_of_contents.full_width .toc .toc-wrapper .toc-wrapper-list ul li {
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    display: flex;
    gap: 0.9375rem;
    padding: 0.625rem 0;
}

.module--type-table_of_contents.full_width .toc .toc-wrapper .toc-wrapper-list ul li:before {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 800;
}

.module--type-table_of_contents.full_width .toc .toc-wrapper .toc-wrapper-list ul li::marker {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 800;
}

.module--type-table_of_contents.full_width .toc .toc-wrapper .toc-wrapper-list ul li a {
    box-shadow: 0 1px 0 0 #021bc3;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2.25rem;
    transition: 0.15s ease-in-out;
}

.module--type-table_of_contents.full_width .toc .toc-wrapper .toc-wrapper-list ul li a:hover {
    box-shadow: 0 3px 0 0 #021bc3;
    color: #021bc3;
}

.module--type-table_of_contents.standard_width .toc {
    display: flex;
    flex-direction: column;
}

.module--type-table_of_contents.standard_width .toc .desc_section {
    margin-bottom: 2rem;
    text-align: left;
}

.module--type-table_of_contents.standard_width .toc .desc_section .module__title :after {
    justify-self: normal;
    margin-bottom: 16px;
}

.module--type-table_of_contents.standard_width .toc .desc_section .toc-wrapper-cta {
    align-items: center;
    border: 2px solid #021bc3;
    color: #021bc3;
    display: inline-flex;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 0.625rem;
    margin-top: 1.5rem;
    padding: 0.625rem 1rem;
    transition: 0.15s ease-in-out;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-table_of_contents.standard_width .toc .desc_section .toc-wrapper-cta:after {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    margin-left: 0.3125rem;
    position: relative;
    top: 2px;
    transition: 0.15s ease-in-out;
}

.module--type-table_of_contents.standard_width .toc .desc_section .toc-wrapper-cta:hover {
    background-color: #021bc3;
    color: #fff;
}

.module--type-table_of_contents.standard_width .toc .desc_section .toc-wrapper-cta:hover:after {
    color: #fff;
}

.module--type-table_of_contents.standard_width .toc .toc-wrapper {
    width: 100%;
}

.module--type-table_of_contents.standard_width .toc .toc-wrapper p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.module--type-table_of_contents.standard_width .toc .toc-wrapper .toc-wrapper-list ul {
    margin-left: 0;
}

.module--type-table_of_contents.standard_width .toc .toc-wrapper .toc-wrapper-list ul li {
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    display: flex;
    gap: 0.9375rem;
    padding: 0.625rem 0;
}

.module--type-table_of_contents.standard_width .toc .toc-wrapper .toc-wrapper-list ul li:before {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 800;
}

.module--type-table_of_contents.standard_width .toc .toc-wrapper .toc-wrapper-list ul li::marker {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 800;
}

.module--type-table_of_contents.standard_width .toc .toc-wrapper .toc-wrapper-list ul li a {
    box-shadow: 0 1px 0 0 #021bc3;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2.25rem;
    transition: 0.15s ease-in-out;
}

.module--type-table_of_contents.standard_width .toc .toc-wrapper .toc-wrapper-list ul li a:hover {
    box-shadow: 0 3px 0 0 #021bc3;
    color: #021bc3;
}

.module--type-table_of_contents.cover_photo .toc {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
}

.module--type-table_of_contents.cover_photo .toc-img {
    margin-left: 0;
}

.module--type-table_of_contents.cover_photo .toc-wrapper {
    display: flex;
    flex-direction: column;
}

.module--type-table_of_contents.cover_photo .toc-wrapper p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1rem;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-list ul {
    margin-left: 0;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-list ul li {
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    display: flex;
    gap: 0.9375rem;
    padding: 0.625rem 0;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-list ul li:before {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 800;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-list ul li::marker {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 800;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-list ul li a {
    box-shadow: 0 1px 0 0 #021bc3;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 2.25rem;
    transition: 0.15s ease-in-out;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-list ul li:hover a {
    box-shadow: 0 3px 0 0 #021bc3;
    color: #021bc3;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-cta {
    align-items: center;
    border: 2px solid #021bc3;
    color: #021bc3;
    display: inline-flex;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    gap: 0.625rem;
    margin-top: 2.5rem;
    padding: 0.625rem 1rem;
    transition: 0.15s ease-in-out;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-cta:after {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    margin-left: 0.3125rem;
    position: relative;
    top: 2px;
    transition: 0.15s ease-in-out;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-cta:hover {
    background-color: #021bc3;
    color: #fff;
}

.module--type-table_of_contents.cover_photo .toc-wrapper-cta:hover:after {
    color: #fff;
}

#toc-sticky {
    background: #fff;
    display: flex;
    left: 50%;
    max-width: 1440px;
    opacity: 0;
    position: fixed;
    top: 1rem;
    transform: translateX(-50%);
    transition: opacity 0.3s ease, visibility 0.3s;
    visibility: hidden;
    width: 90%;
    z-index: 10;
}

#toc-sticky .title {
    display: none;
}

#toc-sticky .dropdown {
    margin-left: 0;
    width: 100%;
}

#toc-sticky .dropdown-toggle {
    align-items: center;
    border: 1px solid #e8e8e8;
    color: #252525;
    display: flex;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    height: 100%;
    letter-spacing: 1.6px;
    padding: 0.5rem 0.75rem;
    width: 100%;
}

#toc-sticky .dropdown-toggle:after {
    border: 0;
    color: #021bc3;
    content: "";
    display: inline-flex;
    font-family: Font Awesome\6 Pro;
    font-size: 2rem;
    margin-left: auto;
    position: relative;
    transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
}

#toc-sticky .dropdown-toggle.show {
    border-bottom: none;
}

#toc-sticky .dropdown-toggle.show:after {
    content: "";
}

#toc-sticky .dropdown-menu {
    border: none;
    border-radius: 0;
    padding: 0 1.25rem;
    width: 100%;
}

#toc-sticky .dropdown-menu.show {
    border: 1px solid #e8e8e8;
    border-top: none;
    margin-top: -3px !important;
}

#toc-sticky .dropdown li {
    align-items: center;
    border-bottom: 1px solid #e8e8e8;
    cursor: pointer;
    display: flex;
    gap: 0.9375rem;
    padding: 0;
}

#toc-sticky .dropdown li:last-of-type {
    border-bottom: 0;
}

#toc-sticky .dropdown li:before {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 800;
}

#toc-sticky .dropdown li::marker {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.25rem;
    font-weight: 800;
}

#toc-sticky .dropdown li a {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.4;
    padding: 0.65rem 0;
    transition: 0.4s ease-in-out;
    white-space: normal;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

#toc-sticky .dropdown li a:hover {
    background-color: #fff;
}

#toc-sticky .dropdown li a:after {
    background-color: #021bc3;
    content: "";
    display: flex;
    height: 1px;
    transition: 0.4s ease-in-out;
    width: auto;
}

#toc-sticky .dropdown li:hover a {
    color: #021bc3;
}

#toc-sticky.visible {
    opacity: 1;
    visibility: visible;
}

.single #toc-sticky {
    top: 6rem;
}

body .module--type-text.width-narrow .module__title {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

body .module--type-text.width-narrow .text-module__content {
    margin-right: 0;
}

body .module--type-text.width-narrow .t-content {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

body .module--type-text.width-medium .text-module__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
    padding: 0;
    width: 88%;
}

body .module--type-text.width-large .text-module__container {
    margin-left: auto;
    margin-right: auto;
    max-width: 80rem;
    padding: 0;
    width: 90%;
}

body .module--type-text.width-large .grid-container__stagger-double>*,
body .module--type-text.width-large .text-module__inner .text-module__content .grid-container__stagger-double {
    max-width: unset;
}

body .module--type-text .text-module__header,
body .module--type-text .text-module__inner {
    max-width: 100%;
}

.module--type-text {
    overflow: hidden;
    position: relative;
}

.module--type-text.image_overlay .media-text-module__image-wrap {
    opacity: 0.35;
}

.module--type-text .media-text-module__image-wrap {
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}

.module--type-text .module__title {
    color: #252525;
}

.localist-widget .lwn .module--type-text .module__title a,
.module--type-text .module__title .localist-widget .lwn a,
.module--type-text .module__title h1,
.module--type-text .module__title h2,
.module--type-text .module__title h3,
.module--type-text .module__title h4,
.module--type-text .module__title h5,
.module--type-text .module__title h6 {
    margin-top: 0 !important;
}

.module--type-text .charcoal .module__title,
.module--type-text .dark_grey .module__title,
.module--type-text .navy .module__title {
    color: #fff !important;
}

.module--type-text .charcoal .text-module__content,
.module--type-text .dark_grey .text-module__content,
.module--type-text .navy .text-module__content {
    color: #fff;
}

.module--type-text .grey .module__title,
.module--type-text .grey .text-module__content,
.module--type-text .yellow .module__title,
.module--type-text .yellow .text-module__content {
    color: #252525;
}

.module--type-text .su-row ul {
    margin-bottom: 0;
}

.text-module__container {
    position: relative;
}

.line_below_blue .module__title h2:after {
    background-color: #001e5f;
    content: "";
    display: block;
    height: 0.188rem;
    margin: 30px 0;
    width: 7.813rem;
}

.line_below_yellow .module__title h2:after {
    background-color: #ffd82b;
    content: "";
    display: block;
    height: 0.188rem;
    margin: 30px 0;
    width: 7.813rem;
}

.line_below_white .module__title h2:after {
    background-color: #fff;
    content: "";
    display: block;
    height: 0.188rem;
    margin: 30px 0;
    width: 7.813rem;
}

.line_above_blue .module__title h2:before {
    background-color: #001e5f;
    content: "";
    display: block;
    height: 0.188rem;
    margin: 0 0 30px;
    width: 7.813rem;
}

.line_above_yellow .module__title h2:before {
    background-color: #ffd82b;
    content: "";
    display: block;
    height: 0.188rem;
    margin: 0 0 30px;
    width: 7.813rem;
}

.line_above_white .module__title h2:before {
    background-color: #fff;
    content: "";
    display: block;
    height: 0.188rem;
    margin: 0 0 30px;
    width: 7.813rem;
}

.text-module__inner {
    display: flex;
    flex-flow: column wrap;
    justify-content: flex-start;
    margin-left: auto;
    margin-right: auto;
    max-width: 52.6875rem;
}

.text-module__inner .text-module__content {
    display: inline-flex;
    flex: 1 0 21%;
    margin: 0 auto;
}

.text-module__inner .text-module__content .t-content {
    flex: auto;
}

.text-module__inner .text-module__content.has_columns {
    padding: 0 20px;
}

#clock {
    color: inherit;
    display: flex;
    font-family: inter-variable, sans-serif;
    font-style: normal;
    justify-content: center;
    text-align: center;
    text-rendering: optimizelegibility;
}

#clock .clock-wrapper {
    font-size: 4rem;
    font-weight: 700;
    width: 125px;
}

#clock .clock-wrapper .info-break {
    font-size: 1.35rem;
    font-weight: 300;
}

.module--type-testimonial .desc_section {
    margin-bottom: 2.5rem;
}

.module--type-testimonial.bg-white {
    background-color: #fff;
}

.module--type-testimonial.bg-gray {
    background-color: #f4f4f4;
}

.module--type-testimonial.bg-gray .testimonial-content {
    background: #fff;
}

.module--type-testimonial.bg-navy {
    background-color: #001e5f;
}

.module--type-testimonial.bg-navy .desc_section * {
    color: #fff;
}

.module--type-testimonial.bg-navy .testimonial .testimonial-content {
    background-color: #fff;
}

.module--type-testimonial.bg-navy .testimonial .quote-before {
    color: #ffd82b;
}

.module--type-testimonial.bg-navy .testimonial .quote-before svg,
.module--type-testimonial.bg-navy .testimonial .quote-before svg path {
    fill: #ffd82b;
}

.module--type-testimonial.bg-navy .testimonial-header-content *,
.module--type-testimonial.bg-navy .testimonial-header-cta *,
.module--type-testimonial.bg-navy .testimonial-header-title * {
    color: #fff;
}

.module--type-testimonial.bg-yellow {
    background-color: #ffd82b;
}

.module--type-testimonial.bg-yellow .testimonial-content {
    background: #fff;
}

.module--type-testimonial.bg-charcoal {
    background-color: #252525;
}

.module--type-testimonial.bg-charcoal .desc_section * {
    color: #fff;
}

.module--type-testimonial.bg-charcoal .testimonial .testimonial-content {
    background-color: #fff;
}

.module--type-testimonial.bg-charcoal .testimonial .quote-before {
    color: #ffd82b;
}

.module--type-testimonial.bg-charcoal .testimonial .quote-before svg,
.module--type-testimonial.bg-charcoal .testimonial .quote-before svg path {
    fill: #ffd82b;
}

.module--type-testimonial.bg-charcoal .testimonial-header-content *,
.module--type-testimonial.bg-charcoal .testimonial-header-cta *,
.module--type-testimonial.bg-charcoal .testimonial-header-title * {
    color: #fff;
}

.module--type-testimonial .testimonial.link .testimonial-content {
    border-bottom: 2px solid #021bc3;
}

.module--type-testimonial .testimonial.link .testimonial-content .attribution {
    margin-bottom: 1.5rem;
    margin-left: 0;
}

.module--type-testimonial .testimonial.link:hover .testimonial-content {
    background: #021bc3;
}

.module--type-testimonial .testimonial.link:hover .testimonial-content * {
    color: #fff;
}

.module--type-testimonial .testimonial.link:hover .testimonial-content .testimonial-link {
    background: #fff;
    border: 1px solid #021bc3;
    color: #021bc3;
    transition: background-color 0.1s ease-in-out;
}

.module--type-testimonial .testimonial.link:hover .testimonial-content .testimonial-link i {
    color: #021bc3;
}

.module--type-testimonial .testimonial-content {
    background: #f4f4f4;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    padding: 3.125rem 2.5rem;
    position: relative;
    transition: background-color 0.1s ease-in-out;
    z-index: 2;
}

.module--type-testimonial .testimonial-content .quote-before {
    left: -20px;
    position: absolute;
    top: 30px;
    width: 55px;
}

.module--type-testimonial .testimonial-content .quote-before svg path {
    fill: #252525;
}

.module--type-testimonial .testimonial-content .testimonial-link {
    align-items: center;
    background-color: #021bc3;
    bottom: -1.5rem;
    color: #fff;
    display: flex;
    font-size: 1.25rem;
    font-weight: 700;
    left: 0;
    padding: 0.75rem;
    position: absolute;
}

.module--type-testimonial .testimonial-content .testimonial-link i {
    margin-left: 0.5rem;
}

.module--type-testimonial .testimonial-content .pull-quote p {
    font-size: 1.125rem;
    line-height: 1.5rem;
}

.module--type-testimonial .testimonial-content .pull-quote p:after {
    /* background-image: url(../images/close-quote.svg);
    background-repeat: no-repeat;
    content: "";
    display: inline-block;
    height: 16.808px;
    margin-left: 0.5rem;
    width: 23px; COMMENTED OUT BY PENTERA */
}

.module--type-testimonial .testimonial-content .attribution {
    display: block;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.015rem;
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.module--type-testimonial .testimonial-image img {
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.module--type-testimonial.cards.one .testimonial {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.module--type-testimonial.cards.one .testimonial-content {
    margin: -1.25rem 1.25rem 0;
    order: 2;
    padding: 2rem 1.5rem 2.625rem 2.625rem;
}

.module--type-testimonial.cards.one .testimonial-image {
    order: 1;
}

.module--type-testimonial.cards.three .grid,
.module--type-testimonial.cards.two .grid {
    display: grid;
    gap: 2rem;
}

.module--type-testimonial.cards.three .grid .testimonial,
.module--type-testimonial.cards.two .grid .testimonial {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.module--type-testimonial.cards.three .grid .testimonial-image,
.module--type-testimonial.cards.two .grid .testimonial-image {
    order: 1;
}

.module--type-testimonial.cards.three .grid .testimonial-content,
.module--type-testimonial.cards.two .grid .testimonial-content {
    align-items: center;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: center;
    margin: -1.25rem 1.25rem 0;
    order: 2;
    padding: 2rem 1.5rem 2.625rem 2.625rem;
}

.module--type-testimonial.cards.three .grid .testimonial-content .quote-before,
.module--type-testimonial.cards.two .grid .testimonial-content .quote-before {
    height: 42px;
    top: 30px;
    width: 55px;
}

.module--type-testimonial.cards.three .grid .testimonial-content .pull-quote p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
}

.module--type-testimonial.cards.three .grid .testimonial-link {
    left: 0;
}

.module--type-testimonial.scroll .scroll-container .testimonial {
    display: flex;
    flex-direction: column;
}

.module--type-testimonial.scroll .scroll-container .testimonial-content {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    margin: -1.25rem 1.25rem 0;
    order: 2;
    padding: 1.5rem 1.5rem 2rem 2rem;
}

.module--type-testimonial.scroll .scroll-container .testimonial-content .quote-before {
    height: 42px;
    top: -20px;
    width: 55px;
}

.module--type-testimonial.scroll .scroll-container .testimonial-content .pull-quote p {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.625rem;
}

.module--type-testimonial.scroll .scroll-container .testimonial-content .testimonial-link {
    left: 0;
}

.module--type-testimonial.scroll .scroll-container .testimonial-content .attribution {
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    margin-bottom: 1rem;
    margin-left: 0;
}

.module--type-testimonial.scroll .scroll-container .testimonial-image {
    max-height: 250px;
    order: 1;
    width: 100%;
}

.module--type-testimonial.scroll .scroll-container .testimonial-image img {
    max-height: 250px;
    object-fit: cover;
}

.module--type-testimonial.scroll .scroll-container .testimonial-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.module--type-testimonial.scroll .scroll-container .testimonial-header-title * {
    font-size: 3rem;
    font-weight: 900;
    line-height: 3.125rem;
}

.module--type-testimonial.scroll .scroll-container .testimonial-header-title:after {
    background-color: #ffd82b;
    content: "";
    display: block;
    height: 8px;
    margin-top: 0.75rem;
    width: 60px;
}

.module--type-testimonial.scroll .scroll-container .testimonial-header-content {
    margin-top: 1rem;
}

.module--type-testimonial.scroll .scroll-container .testimonial-header-content p {
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.module--type-testimonial.scroll .scroll-container .testimonial-header-cta {
    font-size: 1.125rem;
    font-weight: 700;
    margin-top: 1rem;
    padding-bottom: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-testimonial.scroll .scroll-container .swiper {
    display: flex;
    flex-direction: column;
}

.module--type-testimonial.scroll .scroll-container .swiper-slide {
    align-items: stretch;
    display: flex;
    width: 340px;
}

.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav {
    display: flex;
    margin-left: auto;
    margin-right: 2.5rem;
    margin-top: 3.5rem;
}

.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-next,
.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-prev {
    background: #021bc3;
    height: 33px;
    inset: auto 0 0 auto;
    position: relative;
    width: 33px;
}

.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-next.swiper-button-disabled,
.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-prev.swiper-button-disabled {
    background-color: #252525;
    opacity: 1;
}

.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-next:after,
.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-prev:after {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-prev:after {
    content: "";
}

.module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-next {
    margin-left: 5px;
}

.module--type-testimonial.scroll.bg-yellow .scroll-container .testimonial-header-title:after {
    background-color: #252525;
}

.module--type-testimonial.scroll.bg-yellow .scroll-container .testimonial-header-cta {
    border-color: #252525;
    color: #252525;
}

.module--type-testimonial.scroll.bg-yellow .scroll-container .testimonial-header-cta:after {
    color: #252525;
}

.module--type-testimonial.scroll.bg-yellow .scroll-container .testimonial-header-cta:hover:after {
    color: #fff;
}

body .max-text-left .module--type-directory .directory-grid-module__description {
    margin-left: 0 !important;
    max-width: 843px !important;
}

body .max-text-center .module--type-directory .directory-grid-module__description {
    max-width: 843px !important;
}

body .max-text-right .module--type-directory .directory-grid-module__description {
    margin-right: 0 !important;
    max-width: 843px !important;
}

.module--type-directory {
    position: relative;
}

.module--type-directory.width-large .directory-module__description {
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    width: 100%;
}

.module--type-directory.width-large .grid-container__stagger-double>* {
    margin-left: 0;
}

.module--type-directory.module--layout-1 .card-grid-module__card {
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
}

.module--type-directory.module--layout-2 .card-grid-module__loop {
    justify-content: flex-start;
}

.module--type-directory.module--layout-2 .directory-grid-module__card {
    flex: 0 0 100%;
    margin-bottom: 35px;
    max-width: 100%;
    width: 100%;
}

.module--type-directory.module--layout-3 .directory-module__loop {
    justify-content: flex-start;
}

.module--type-directory.module--layout-3 .directory-grid-module__card {
    flex: 0 0 100%;
    margin-bottom: 35px;
    max-width: 100%;
    width: 100%;
}

.module--type-directory.module--layout-4 .directory-module__loop {
    justify-content: flex-start;
}

.module--type-directory.module--layout-4 .directory-grid-module__card {
    flex: 0 0 100%;
    margin-bottom: 35px;
    max-width: 100%;
    width: 100%;
}

.module--type-directory .white .directory_info--wrapper {
    background: #fff;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px;
}

.localist-widget .lwn .module--type-directory .white a,
.module--type-directory .white *,
.module--type-directory .white .localist-widget .lwn a,
.module--type-directory .white h1,
.module--type-directory .white h2,
.module--type-directory .white h3,
.module--type-directory .white h4,
.module--type-directory .white h5,
.module--type-directory .white h6,
.module--type-directory .white ol,
.module--type-directory .white p,
.module--type-directory .white ul {
    color: #252525;
}

.module--type-directory .yellow .directory_info--wrapper {
    background: #ffd82b;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px;
}

.localist-widget .lwn .module--type-directory .yellow a,
.module--type-directory .yellow *,
.module--type-directory .yellow .localist-widget .lwn a,
.module--type-directory .yellow h1,
.module--type-directory .yellow h2,
.module--type-directory .yellow h3,
.module--type-directory .yellow h4,
.module--type-directory .yellow h5,
.module--type-directory .yellow h6,
.module--type-directory .yellow ol,
.module--type-directory .yellow p,
.module--type-directory .yellow ul {
    color: #252525;
}

.module--type-directory .navy .directory_info--wrapper {
    background: #001e5f;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px;
}

.localist-widget .lwn .module--type-directory .navy a,
.module--type-directory .navy *,
.module--type-directory .navy .localist-widget .lwn a,
.module--type-directory .navy h1,
.module--type-directory .navy h2,
.module--type-directory .navy h3,
.module--type-directory .navy h4,
.module--type-directory .navy h5,
.module--type-directory .navy h6,
.module--type-directory .navy ol,
.module--type-directory .navy p,
.module--type-directory .navy ul {
    color: #fff;
}

.module--type-directory .grey .directory_info--wrapper {
    background: #f4f4f4;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px;
}

.localist-widget .lwn .module--type-directory .grey a,
.module--type-directory .grey *,
.module--type-directory .grey .localist-widget .lwn a,
.module--type-directory .grey h1,
.module--type-directory .grey h2,
.module--type-directory .grey h3,
.module--type-directory .grey h4,
.module--type-directory .grey h5,
.module--type-directory .grey h6,
.module--type-directory .grey ol,
.module--type-directory .grey p,
.module--type-directory .grey ul {
    color: #252525;
}

.module--type-directory .charcoal .directory_info--wrapper {
    background: #252525;
    display: flex;
    flex-direction: column;
    height: auto;
    padding: 20px;
}

.localist-widget .lwn .module--type-directory .charcoal a,
.module--type-directory .charcoal *,
.module--type-directory .charcoal .localist-widget .lwn a,
.module--type-directory .charcoal h1,
.module--type-directory .charcoal h2,
.module--type-directory .charcoal h3,
.module--type-directory .charcoal h4,
.module--type-directory .charcoal h5,
.module--type-directory .charcoal h6,
.module--type-directory .charcoal ol,
.module--type-directory .charcoal p,
.module--type-directory .charcoal ul {
    color: #fff;
}

.module--type-directory .module__title {
    color: #252525;
}

.module--type-directory .dark_grey .module__title,
.module--type-directory .dark_grey .text-module__content,
.module--type-directory .navy .module__title,
.module--type-directory .navy .text-module__content {
    color: #fff;
}

.module--type-directory .grey .module__title,
.module--type-directory .grey .text-module__content,
.module--type-directory .yellow .module__title,
.module--type-directory .yellow .text-module__content {
    color: #252525;
}

.module--type-directory .directory-grid-module__header {
    margin-bottom: 3rem;
    margin-left: 0;
    margin-right: 0;
}

.module--type-directory .directory-grid-module__header .module__title {
    font-family: ivypresto-text, serif;
    position: relative;
}

.module--type-directory .directory-grid-module__header .module__title:before {
    background-color: #001e5f;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: -16px;
    width: 79px;
}

.bg-charcoal .module--type-directory .directory-grid-module__header .directory-grid-module__description p,
.bg-charcoal .module--type-directory .directory-grid-module__header .module__title,
.bg-navy .module--type-directory .directory-grid-module__header .directory-grid-module__description p,
.bg-navy .module--type-directory .directory-grid-module__header .module__title {
    color: #fff !important;
}

.bg-charcoal .module--type-directory .directory-grid-module__header .directory-grid-module__description p p,
.bg-navy .module--type-directory .directory-grid-module__header .directory-grid-module__description p p {
    margin: 0 auto !important;
}

.bg-gray .module--type-directory .directory-grid-module__header .directory-grid-module__description p,
.bg-gray .module--type-directory .directory-grid-module__header .module__title,
.bg-white .module--type-directory .directory-grid-module__header .directory-grid-module__description p,
.bg-white .module--type-directory .directory-grid-module__header .module__title,
.bg-yellow .module--type-directory .directory-grid-module__header .directory-grid-module__description p,
.bg-yellow .module--type-directory .directory-grid-module__header .module__title {
    color: #252525 !important;
}

.bg-gray .module--type-directory .directory-grid-module__header .directory-grid-module__description p p,
.bg-white .module--type-directory .directory-grid-module__header .directory-grid-module__description p p,
.bg-yellow .module--type-directory .directory-grid-module__header .directory-grid-module__description p p {
    margin: 0 auto !important;
}

.module--type-directory .directory-grid-module__loop {
    display: flex;
    flex-flow: row wrap;
}

.module--type-directory .directory-grid-module__loop .white .directory_info--wrapper {
    background-color: #fff;
}

.localist-widget .lwn .module--type-directory .directory-grid-module__loop .white a,
.module--type-directory .directory-grid-module__loop .white .localist-widget .lwn a,
.module--type-directory .directory-grid-module__loop .white h1,
.module--type-directory .directory-grid-module__loop .white h2,
.module--type-directory .directory-grid-module__loop .white h3,
.module--type-directory .directory-grid-module__loop .white h4,
.module--type-directory .directory-grid-module__loop .white h5,
.module--type-directory .directory-grid-module__loop .white h6,
.module--type-directory .directory-grid-module__loop .white p {
    color: #252525;
}

.module--type-directory .directory-grid-module__loop .white a {
    color: #021bc3;
}

.module--type-directory .directory-grid-module__loop .white .card_cta a {
    box-shadow: none;
    color: #021bc3;
    display: block;
    font-size: 1rem;
    font-weight: 900;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

.module--type-directory .directory-grid-module__loop .white .card_cta a:hover {
    background: #021bc3;
    color: #fff;
    padding: 5px 35px 5px 15px;
}

.module--type-directory .directory-grid-module__loop .white .card_cta a:hover:after {
    color: #fff;
}

.module--type-directory .directory-grid-module__loop .white .card_cta a:hover:before {
    color: #fff;
    right: 10px;
}

.module--type-directory .directory-grid-module__loop .white .card_cta a:after {
    background-color: #021bc3;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.module--type-directory .directory-grid-module__loop .white .card_cta a:before {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-directory .directory-grid-module__loop .yellow .directory_info--wrapper {
    background-color: #ffd82b;
}

.localist-widget .lwn .module--type-directory .directory-grid-module__loop .yellow a,
.module--type-directory .directory-grid-module__loop .yellow .localist-widget .lwn a,
.module--type-directory .directory-grid-module__loop .yellow h1,
.module--type-directory .directory-grid-module__loop .yellow h2,
.module--type-directory .directory-grid-module__loop .yellow h3,
.module--type-directory .directory-grid-module__loop .yellow h4,
.module--type-directory .directory-grid-module__loop .yellow h5,
.module--type-directory .directory-grid-module__loop .yellow h6,
.module--type-directory .directory-grid-module__loop .yellow p {
    color: #252525;
}

.module--type-directory .directory-grid-module__loop .yellow a {
    color: #021bc3;
}

.module--type-directory .directory-grid-module__loop .yellow .card_cta a {
    box-shadow: none;
    color: #252525;
    display: block;
    font-size: 1rem;
    font-weight: 900;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

.module--type-directory .directory-grid-module__loop .yellow .card_cta a:hover {
    background: #252525;
    color: #fff;
    padding: 5px 35px 5px 15px;
}

.module--type-directory .directory-grid-module__loop .yellow .card_cta a:hover:after {
    color: #fff;
}

.module--type-directory .directory-grid-module__loop .yellow .card_cta a:hover:before {
    color: #fff;
    right: 10px;
}

.module--type-directory .directory-grid-module__loop .yellow .card_cta a:after {
    background-color: #252525;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.module--type-directory .directory-grid-module__loop .yellow .card_cta a:before {
    color: #000;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-directory .directory-grid-module__loop .navy .directory_info--wrapper {
    background-color: #001e5f;
}

.localist-widget .lwn .module--type-directory .directory-grid-module__loop .navy a,
.module--type-directory .directory-grid-module__loop .navy .localist-widget .lwn a,
.module--type-directory .directory-grid-module__loop .navy a,
.module--type-directory .directory-grid-module__loop .navy h1,
.module--type-directory .directory-grid-module__loop .navy h2,
.module--type-directory .directory-grid-module__loop .navy h3,
.module--type-directory .directory-grid-module__loop .navy h4,
.module--type-directory .directory-grid-module__loop .navy h5,
.module--type-directory .directory-grid-module__loop .navy h6,
.module--type-directory .directory-grid-module__loop .navy p {
    color: #fff;
}

.module--type-directory .directory-grid-module__loop .navy .card_cta a {
    box-shadow: none;
    color: #fff;
    display: block;
    font-size: 1rem;
    font-weight: 900;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

.module--type-directory .directory-grid-module__loop .navy .card_cta a:hover {
    background: #fff;
    color: #001e5f;
    padding: 5px 35px 5px 15px;
}

.module--type-directory .directory-grid-module__loop .navy .card_cta a:hover:after {
    color: #001e5f;
}

.module--type-directory .directory-grid-module__loop .navy .card_cta a:hover:before {
    color: #001e5f;
    right: 10px;
}

.module--type-directory .directory-grid-module__loop .navy .card_cta a:after {
    background-color: #fff;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.module--type-directory .directory-grid-module__loop .navy .card_cta a:before {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-directory .directory-grid-module__loop .grey .directory_info--wrapper {
    background-color: #f4f4f4;
}

.localist-widget .lwn .module--type-directory .directory-grid-module__loop .grey a,
.module--type-directory .directory-grid-module__loop .grey .localist-widget .lwn a,
.module--type-directory .directory-grid-module__loop .grey h1,
.module--type-directory .directory-grid-module__loop .grey h2,
.module--type-directory .directory-grid-module__loop .grey h3,
.module--type-directory .directory-grid-module__loop .grey h4,
.module--type-directory .directory-grid-module__loop .grey h5,
.module--type-directory .directory-grid-module__loop .grey h6,
.module--type-directory .directory-grid-module__loop .grey p {
    color: #252525;
}

.module--type-directory .directory-grid-module__loop .grey a {
    color: #021bc3;
}

.module--type-directory .directory-grid-module__loop .grey .card_cta a {
    box-shadow: none;
    color: #021bc3;
    display: block;
    font-size: 1rem;
    font-weight: 900;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

.module--type-directory .directory-grid-module__loop .grey .card_cta a:hover {
    background: #021bc3;
    color: #fff;
    padding: 5px 35px 5px 15px;
}

.module--type-directory .directory-grid-module__loop .grey .card_cta a:hover:after {
    color: #fff;
}

.module--type-directory .directory-grid-module__loop .grey .card_cta a:hover:before {
    color: #fff;
    right: 10px;
}

.module--type-directory .directory-grid-module__loop .grey .card_cta a:after {
    background-color: #021bc3;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.module--type-directory .directory-grid-module__loop .grey .card_cta a:before {
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-directory .directory-grid-module__loop .charcoal .directory_info--wrapper {
    background-color: #252525;
}

.localist-widget .lwn .module--type-directory .directory-grid-module__loop .charcoal a,
.module--type-directory .directory-grid-module__loop .charcoal .localist-widget .lwn a,
.module--type-directory .directory-grid-module__loop .charcoal a,
.module--type-directory .directory-grid-module__loop .charcoal h1,
.module--type-directory .directory-grid-module__loop .charcoal h2,
.module--type-directory .directory-grid-module__loop .charcoal h3,
.module--type-directory .directory-grid-module__loop .charcoal h4,
.module--type-directory .directory-grid-module__loop .charcoal h5,
.module--type-directory .directory-grid-module__loop .charcoal h6,
.module--type-directory .directory-grid-module__loop .charcoal p {
    color: #fff;
}

.module--type-directory .directory-grid-module__loop .charcoal .card_cta a {
    box-shadow: none;
    color: #fff;
    display: block;
    font-size: 1rem;
    font-weight: 900;
    padding: 5px 25px 5px 0;
    position: relative;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    z-index: 1;
}

.module--type-directory .directory-grid-module__loop .charcoal .card_cta a:hover {
    background: #ffd82b;
    color: #252525;
    padding: 5px 35px 5px 15px;
}

.module--type-directory .directory-grid-module__loop .charcoal .card_cta a:hover:after {
    color: #252525;
}

.module--type-directory .directory-grid-module__loop .charcoal .card_cta a:hover:before {
    color: #252525;
    right: 10px;
}

.module--type-directory .directory-grid-module__loop .charcoal .card_cta a:after {
    background-color: #ffd82b;
    bottom: 0;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    width: 100%;
}

.module--type-directory .directory-grid-module__loop .charcoal .card_cta a:before {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 0.9rem;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    right: 0;
    text-rendering: auto;
    text-transform: none;
    top: 13px;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-directory .directory-grid-module__loop .button--blue:hover,
.module--type-directory .directory-grid-module__loop .button--blue:hover:after {
    color: #fff !important;
}

.module--type-directory .directory-grid-module__loop .button--yellow {
    box-shadow: none !important;
}

.module--type-directory .directory-grid-module__loop .button--yellow:after {
    color: #fff !important;
}

.module--type-directory .directory-grid-module__loop .button--yellow:hover,
.module--type-directory .directory-grid-module__loop .button--yellow:hover:after {
    color: #252525 !important;
}

.module--type-directory .directory-grid-module__loop .ghost-button--black:hover,
.module--type-directory .directory-grid-module__loop .ghost-button--black:hover:after {
    color: #fff !important;
}

.module--type-directory .directory-grid-module__card {
    margin-bottom: 3rem;
    padding: 10px;
    position: relative;
    transition: 0.3s;
}

.module--type-directory .directory-grid-module__card:hover .hover_image {
    opacity: 1;
}

.module--type-directory .directory-grid-module__card .direct_image .card-item__image {
    background-position: top;
    background-size: cover;
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    transition: 0.4s;
}

.module--type-directory .directory-grid-module__card .direct_image .card-item__image img {
    width: 100%;
}

.module--type-directory .directory-grid-module__card .direct_image .card-item__image a {
    display: block;
    inset: 0;
    position: absolute;
}

.module--type-directory .directory-grid-module__card .hover_image {
    display: block;
    opacity: 0;
    position: absolute;
    transition: 0.25s;
    width: calc(100% - 20px);
}

.text_left .module--type-directory .direct_wrapper__one {
    text-align: left;
}

.text_center .module--type-directory .direct_wrapper__one {
    text-align: center;
}

.text_right .module--type-directory .direct_wrapper__one {
    text-align: right;
}

.module--type-directory .direct_wrapper__one .direct-item__name * {
    font-family: inter-variable, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.charcoal .module--type-directory .direct_wrapper__one .direct-item__name *,
.navy .module--type-directory .direct_wrapper__one .direct-item__name * {
    color: #fff !important;
}

.yellow .module--type-directory .direct_wrapper__one .direct-item__name * {
    color: #252525;
}

.module--type-directory .direct_wrapper__one .direct-item__title * {
    font-family: inter-variable, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 0;
}

.module--type-directory .direct_wrapper__one .direct-item__department * {
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 5px;
}

.module--type-directory .direct_wrapper__two {
    margin-top: 15px;
    overflow: hidden;
}

.text_left .module--type-directory .direct_wrapper__two {
    text-align: left;
}

.text_center .module--type-directory .direct_wrapper__two {
    text-align: center;
}

.text_right .module--type-directory .direct_wrapper__two {
    text-align: right;
}

.module--type-directory .direct_wrapper__two .direct-item__email {
    box-shadow: none !important;
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 5px;
    margin-left: 25px;
    position: relative;
    width: 100%;
}

.text_left .module--type-directory .direct_wrapper__two .direct-item__email {
    float: left;
    text-align: left;
}

.text_center .module--type-directory .direct_wrapper__two .direct-item__email {
    margin: 0 auto;
}

.text_right .module--type-directory .direct_wrapper__two .direct-item__email {
    float: right;
    text-align: right;
}

@supports (-ms-ime-align: auto) {
    .module--type-directory .direct_wrapper__two .direct-item__email {
        display: table !important;
        width: auto;
    }
}

.module--type-directory .direct_wrapper__two .direct-item__email:before {
    content: "";
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    left: -25px;
    position: absolute;
    text-rendering: auto;
    top: 2px;
}

.text_center .module--type-directory .direct_wrapper__two .direct-item__email:before {
    left: -5px;
}

.text_right .module--type-directory .direct_wrapper__two .direct-item__email:before {
    left: -10px;
}

.module--type-directory .direct_wrapper__two .direct-item__email span {
    box-shadow: 0 1px 0 0 #021bc3;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text_center .module--type-directory .direct_wrapper__two .direct-item__email span {
    margin-left: 10px;
}

.module--type-directory .direct_wrapper__two .direct-item__email:hover span {
    box-shadow: 0 3px 0 0 #021bc3;
    color: #021bc3;
}

.navy .module--type-directory .direct_wrapper__two .direct-item__email span {
    box-shadow: 0 1px 0 0 #fff;
}

.navy .module--type-directory .direct_wrapper__two .direct-item__email:hover span {
    box-shadow: 0 3px 0 0 #fff;
    color: #fff;
}

.charcoal .module--type-directory .direct_wrapper__two .direct-item__email span {
    box-shadow: 0 1px 0 0 #fff;
}

.charcoal .module--type-directory .direct_wrapper__two .direct-item__email:hover span {
    box-shadow: 0 3px 0 0 #fff;
    color: #fff;
}

.module--type-directory .direct_wrapper__two .direct-item__phone {
    display: block;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-left: 25px;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.text_left .module--type-directory .direct_wrapper__two .direct-item__phone {
    float: left;
}

.text_center .module--type-directory .direct_wrapper__two .direct-item__phone {
    margin: 0 auto;
}

.text_right .module--type-directory .direct_wrapper__two .direct-item__phone {
    float: right;
}

@supports (-ms-ime-align: auto) {
    .module--type-directory .direct_wrapper__two .direct-item__phone {
        display: table !important;
        width: auto;
    }
}

.module--type-directory .direct_wrapper__two .direct-item__phone:before {
    content: "";
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    left: -25px;
    position: absolute;
    text-rendering: auto;
    top: 2px;
}

.charcoal .module--type-directory .direct_wrapper__two .direct-item__phone:hover,
.navy .module--type-directory .direct_wrapper__two .direct-item__phone:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.module--type-directory .direct_wrapper__three {
    margin-top: 15px;
}

.text_left .module--type-directory .direct_wrapper__three {
    text-align: left;
}

.text_center .module--type-directory .direct_wrapper__three {
    text-align: center;
}

.text_right .module--type-directory .direct_wrapper__three {
    text-align: right;
}

.module--type-directory .direct_wrapper__three .direct-item__bio * {
    font-size: 0.875rem;
    width: 90%;
}

.module--type-directory .direct_wrapper__three .direct-item__bio p {
    margin-bottom: 10px;
}

.module--type-directory .direct_wrapper__three .direct-item__bio a {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

@supports (-ms-ime-align: auto) {
    .module--type-directory .direct_wrapper__three .direct-item__bio a {
        display: table !important;
        width: auto;
    }
}

.sidebar .module--type-directory_new.bg-gray {
    padding-top: 0;
}

.sidebar .module--type-directory_new.bg-gray .directory-grid-module__container {
    padding-top: 4rem;
}

.sidebar .module--type-directory_new.bg-gray:before {
    background-color: #e8e8e8;
    content: "";
    display: block;
    height: 100%;
    left: -9999px;
    position: absolute;
    width: 99999px;
    z-index: -1;
}

.module--type-directory_new .directory-grid-module__header {
    margin-bottom: 3rem;
    margin-left: 0;
    margin-right: 0;
}

.module--type-directory_new .directory-grid-module__header .module__title {
    color: #001e5f;
    font-family: ivypresto-text, serif;
    margin-bottom: 1rem;
    position: relative;
}

.module--type-directory_new .directory-grid-module__header .module__title:before {
    background-color: #001e5f;
    content: "";
    height: 8px;
    left: 0;
    position: absolute;
    top: -16px;
    width: 79px;
}

.bg-charcoal .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p,
.bg-charcoal .module--type-directory_new .directory-grid-module__header .module__title,
.bg-navy .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p,
.bg-navy .module--type-directory_new .directory-grid-module__header .module__title {
    color: #fff !important;
}

.bg-charcoal .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p p,
.bg-navy .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p p {
    margin: 0 auto !important;
}

.bg-gray .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p,
.bg-gray .module--type-directory_new .directory-grid-module__header .module__title,
.bg-white .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p,
.bg-white .module--type-directory_new .directory-grid-module__header .module__title,
.bg-yellow .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p,
.bg-yellow .module--type-directory_new .directory-grid-module__header .module__title {
    color: #252525 !important;
}

.bg-gray .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p p,
.bg-white .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p p,
.bg-yellow .module--type-directory_new .directory-grid-module__header .directory-grid-module__description p p {
    margin: 0 auto !important;
}

.module--type-directory_new .directory-grid-module__loop {
    overflow-x: clip;
}

.module--type-directory_new .directory-grid-module__loop .directory-group {
    align-items: stretch;
    display: grid;
    gap: 1.25rem;
    justify-content: center;
    margin: 0 auto;
    padding-bottom: 4rem;
    width: 100%;
}

.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label {
    display: flex;
    grid-column: -1/1;
    justify-content: center;
    margin: 0 auto;
    overflow: hidden;
    text-align: center;
    width: 100%;
}

.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h2 {
    color: #001e5f;
    font-family: ivypresto-text, serif;
    margin-bottom: 1rem;
}

.localist-widget .lwn .module--type-directory_new .directory-grid-module__loop .directory-group .directory-label a,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label .localist-widget .lwn a,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h3,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h4,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h5 {
    align-items: center;
    display: flex;
    font-size: 1.65rem;
    font-weight: 400;
    justify-content: center;
    position: relative;
}

.localist-widget .lwn .module--type-directory_new .directory-grid-module__loop .directory-group .directory-label a:after,
.localist-widget .lwn .module--type-directory_new .directory-grid-module__loop .directory-group .directory-label a:before,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label .localist-widget .lwn a:after,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label .localist-widget .lwn a:before,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h3:after,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h3:before,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h4:after,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h4:before,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h5:after,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h5:before {
    border-top: 1px dashed #252525;
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 9999px;
}

.localist-widget .lwn .module--type-directory_new .directory-grid-module__loop .directory-group .directory-label a:before,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label .localist-widget .lwn a:before,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h3:before,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h4:before,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h5:before {
    left: 100%;
    margin-left: 10px;
}

.localist-widget .lwn .module--type-directory_new .directory-grid-module__loop .directory-group .directory-label a:after,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label .localist-widget .lwn a:after,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h3:after,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h4:after,
.module--type-directory_new .directory-grid-module__loop .directory-group .directory-label h5:after {
    margin-right: 10px;
    right: 100%;
}

.module--type-directory_new .directory-grid-module__loop .white .directory_info--wrapper {
    background-color: #fff;
}

.localist-widget .lwn .module--type-directory_new .directory-grid-module__loop .white a,
.module--type-directory_new .directory-grid-module__loop .white .localist-widget .lwn a,
.module--type-directory_new .directory-grid-module__loop .white h1,
.module--type-directory_new .directory-grid-module__loop .white h2,
.module--type-directory_new .directory-grid-module__loop .white h3,
.module--type-directory_new .directory-grid-module__loop .white h4,
.module--type-directory_new .directory-grid-module__loop .white h5,
.module--type-directory_new .directory-grid-module__loop .white h6,
.module--type-directory_new .directory-grid-module__loop .white p {
    color: #252525;
}

.module--type-directory_new .directory-grid-module__loop .white a {
    color: #021bc3;
}

.module--type-directory_new .directory-grid-module__loop .grey .directory_info--wrapper {
    background-color: #f4f4f4;
}

.localist-widget .lwn .module--type-directory_new .directory-grid-module__loop .grey a,
.module--type-directory_new .directory-grid-module__loop .grey .localist-widget .lwn a,
.module--type-directory_new .directory-grid-module__loop .grey h1,
.module--type-directory_new .directory-grid-module__loop .grey h2,
.module--type-directory_new .directory-grid-module__loop .grey h3,
.module--type-directory_new .directory-grid-module__loop .grey h4,
.module--type-directory_new .directory-grid-module__loop .grey h5,
.module--type-directory_new .directory-grid-module__loop .grey h6,
.module--type-directory_new .directory-grid-module__loop .grey p {
    color: #252525;
}

.module--type-directory_new .directory-grid-module__loop .grey a {
    color: #021bc3;
}

.module--type-directory_new .directory-grid-module__loop .button--blue:hover,
.module--type-directory_new .directory-grid-module__loop .button--blue:hover:after {
    color: #fff !important;
}

.module--type-directory_new .directory-grid-module__loop .button--yellow {
    box-shadow: none !important;
}

.module--type-directory_new .directory-grid-module__loop .button--yellow:after {
    color: #fff !important;
}

.module--type-directory_new .directory-grid-module__loop .button--yellow:hover,
.module--type-directory_new .directory-grid-module__loop .button--yellow:hover:after {
    color: #252525 !important;
}

.module--type-directory_new .directory-grid-module__loop .ghost-button--black:hover,
.module--type-directory_new .directory-grid-module__loop .ghost-button--black:hover:after {
    color: #fff !important;
}

.module--type-directory_new .directory-grid-module__card {
    display: flex;
    flex-direction: column;
    margin-bottom: 0;
    position: relative;
    width: 100%;
}

.module--type-directory_new .directory-grid-module__card .direct_image .card-item__image {
    height: 100%;
    margin-bottom: 0;
    overflow: hidden;
    position: relative;
    width: auto;
}

.module--type-directory_new .directory-grid-module__card .direct_image .card-item__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.module--type-directory_new .directory-grid-module__card .direct_image .card-item__image a {
    display: block;
    inset: 0;
    position: absolute;
}

.module--type-directory_new .directory-grid-module__card.feature {
    flex-direction: column;
    padding: 0;
}

.module--type-directory_new .directory-grid-module__card.feature .direct_image .card-item__image {
    height: auto;
    width: 100%;
}

.module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper {
    justify-content: flex-start;
}

.module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper .direct_wrapper__one .direct-item__name {
    font-family: inter-variable, sans-serif;
    font-size: 1.375rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 5px;
}

.module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper .direct_wrapper__one .direct-item__title {
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.5;
}

.module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper .direct_wrapper__one .direct-item__pronouns {
    color: #001e5f;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

.module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper .direct_wrapper__one .direct-item__department {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 0.875rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 5px;
}

.module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper .direct_wrapper__one .direct_wrapper__two .direct-item__phone {
    color: #252525;
    font-weight: 600;
}

.module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper .direct_wrapper__one .direct_wrapper__three .direct-item__bio {
    margin-top: 7px;
}

.module--type-directory_new .directory-grid-module__card.lead {
    flex-direction: row;
    grid-column: -1/1;
    justify-content: center;
    width: 100%;
}

.module--type-directory_new .directory-grid-module__card.lead .direct_image .card-item__image {
    width: 200px;
}

.module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper {
    flex: 1;
}

.module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one .direct-item__title {
    color: #252525;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.5;
}

.module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one .direct-item__pronouns {
    color: #252525;
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

.module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one .direct-item__department {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
}

.module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one .direct_wrapper__two .direct-item__email {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one .direct_wrapper__two .direct-item__phone {
    color: #252525;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
}

.module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper {
    flex: 1;
    padding: 2rem;
}

.module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__one .direct-item__title {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2rem;
}

.module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__one .direct-item__pronouns {
    color: #252525;
    font-size: 1rem;
    font-style: italic;
    font-weight: 400;
    line-height: 1.5;
}

.module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__one .direct-item__department {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.2rem;
}

.module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__two .direct-item__email {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2rem;
}

.module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__two .direct-item__phone {
    color: #252525;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2rem;
}

.module.module--type-directory_new {
    padding-bottom: 0;
    padding-top: 2rem;
    position: relative;
}

.module.module--type-directory_new.bg-gray {
    background-color: #f4f4f4;
}

.module.module--type-directory_new.bg-gray .directory_info--wrapper {
    background-color: #fff;
}

.module.module--type-directory_new.bg-navy {
    background-color: #001e5f;
}

.module.module--type-directory_new.bg-navy .directory_info--wrapper {
    background-color: #fff;
}

.module.module--type-directory_new.bg-navy .directory-label h2,
.module.module--type-directory_new.bg-navy .directory-label h3,
.module.module--type-directory_new.bg-navy .directory-label h4 {
    color: #fff;
}

.module.module--type-directory_new.bg-navy .directory-label h2:after,
.module.module--type-directory_new.bg-navy .directory-label h2:before,
.module.module--type-directory_new.bg-navy .directory-label h3:after,
.module.module--type-directory_new.bg-navy .directory-label h3:before,
.module.module--type-directory_new.bg-navy .directory-label h4:after,
.module.module--type-directory_new.bg-navy .directory-label h4:before {
    border-color: #fff;
}

.module.module--type-directory_new.module--layout-3 .directory-group {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    width: 80%;
}

.module.module--type-directory_new.module--layout-3 .directory-group .feature,
.module.module--type-directory_new.module--layout-3 .directory-group .staff {
    min-height: 170px;
    width: 100%;
}

.module.module--type-directory_new.module--layout-4 .directory-group {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    width: 80%;
}

.module.module--type-directory_new.module--layout-4 .directory-group .directory-label {
    grid-column: 1/-1;
    margin: 0 auto;
    overflow: hidden;
    width: 100%;
}

.module.module--type-directory_new.module--layout-4 .directory-group .feature {
    margin: 0 auto;
    max-width: none;
    width: 100%;
}

.module.module--type-directory_new.module--layout-2 .directory-group {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    width: 50%;
}

.module.module--type-directory_new.module--layout-2 .directory-group .feature,
.module.module--type-directory_new.module--layout-2 .directory-group .staff {
    min-height: 170px;
    width: 100%;
}

.module.module--type-directory_new.width-large .directory-module__description {
    margin-left: auto;
    margin-right: auto;
    max-width: unset;
    text-align: center;
    width: 100%;
}

.module.module--type-directory_new.width-large .grid-container__stagger-double>* {
    margin-left: 0;
}

.module.module--type-directory_new .directory_info--wrapper {
    background: #fff;
    display: flex;
    flex: 1;
    flex-direction: column;
    height: auto;
    justify-content: flex-start;
    padding: 2rem;
}

.module.module--type-directory_new .directory_info--wrapper .direct-item__name {
    color: #252525;
}

.module.module--type-directory_new .white.feature .directory_info--wrapper {
    padding: 20px;
}

.module.module--type-directory_new .white .directory_info--wrapper {
    background: #fff;
}

.module.module--type-directory_new .grey .directory_info--wrapper {
    background: #f4f4f4;
}

.module.module--type-directory_new .grey .module__title,
.module.module--type-directory_new .grey .text-module__content {
    color: #252525;
}

.module.module--type-directory_new .navy .directory_info--wrapper {
    background: #001e5f;
}

.module.module--type-directory_new .navy .directory_info--wrapper *,
.module.module--type-directory_new .navy .directory_info--wrapper :after,
.module.module--type-directory_new .navy .directory_info--wrapper :before {
    color: #fff !important;
}

.module.module--type-directory_new .navy .directory_info--wrapper .direct-item__bio a:hover {
    background-color: #fff !important;
    color: #001e5f !important;
}

.module.module--type-directory_new .navy .directory_info--wrapper .direct-item__bio a:hover:after {
    color: #001e5f !important;
}

.module.module--type-directory_new .navy .module__title,
.module.module--type-directory_new .navy .text-module__content {
    color: #fff;
}

.module.module--type-directory_new .module__title {
    color: #252525;
}

.module.module--type-directory_new .direct_wrapper__one {
    text-align: left;
}

.module.module--type-directory_new .direct_wrapper__one .direct-item__name * {
    color: #001e5f;
    font-family: inter-variable, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.25px;
    line-height: 1.5;
    margin-bottom: 5px;
}

.charcoal .module.module--type-directory_new .direct_wrapper__one .direct-item__name *,
.navy .module.module--type-directory_new .direct_wrapper__one .direct-item__name * {
    color: #fff !important;
}

.yellow .module.module--type-directory_new .direct_wrapper__one .direct-item__name * {
    color: #252525;
}

.module.module--type-directory_new .direct_wrapper__one .direct-item__title * {
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.module.module--type-directory_new .direct_wrapper__one .direct-item__department * {
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    margin-top: 5px;
}

.module.module--type-directory_new .direct_wrapper__two {
    margin-top: 5px;
    overflow: hidden;
    text-align: left;
}

.module.module--type-directory_new .direct_wrapper__two .direct-item__email {
    box-shadow: none !important;
    display: block;
    float: left;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    margin-left: 25px;
    position: relative;
    text-align: left;
    width: 100%;
}

.module.module--type-directory_new .direct_wrapper__two .direct-item__email:before {
    color: #252525;
    content: "";
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    left: -25px;
    position: absolute;
    text-rendering: auto;
    top: 0;
}

.module.module--type-directory_new .direct_wrapper__two .direct-item__email:before:hover {
    color: #252525;
}

.module.module--type-directory_new .direct_wrapper__two .direct-item__email span {
    color: #252525;
    display: inline-block;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.module.module--type-directory_new .direct_wrapper__two .direct-item__phone {
    color: #252525;
    display: block;
    float: left;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-left: 25px;
    position: relative;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module.module--type-directory_new .direct_wrapper__two .direct-item__phone:before {
    color: #252525;
    content: "";
    display: inline-block;
    font-family: Font Awesome\6 Pro;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: normal;
    font-style: normal;
    font-variant: normal;
    font-weight: 900;
    left: -25px;
    position: absolute;
    text-rendering: auto;
    top: 0;
}

.charcoal .module.module--type-directory_new .direct_wrapper__two .direct-item__phone:hover,
.navy .module.module--type-directory_new .direct_wrapper__two .direct-item__phone:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.text_left .module.module--type-directory_new .direct_wrapper__three {
    text-align: left;
}

.text_center .module.module--type-directory_new .direct_wrapper__three {
    text-align: center;
}

.text_right .module.module--type-directory_new .direct_wrapper__three {
    text-align: right;
}

.module.module--type-directory_new .direct_wrapper__three .direct-item__bio * {
    font-size: 14px;
    width: 90%;
}

.module.module--type-directory_new .direct_wrapper__three .direct-item__bio {
    margin-top: 5px;
}

.module.module--type-directory_new .direct_wrapper__three .direct-item__bio p {
    margin-bottom: 10px;
}

.calendar-grid-module__container .calendar-grid-module__header {
    margin-bottom: 50px;
}

.module--type-calendar {
    display: flex;
}

.module--type-calendar .desc_section .text-module__header {
    max-width: 66.375rem;
}

.module--type-calendar .desc_section .text-module__header .module__title {
    max-width: 52.6875rem;
}

.module--type-calendar .navy .desc_section .text-module__header .module__title h2 {
    color: #fff;
}

.module--type-calendar .navy h2.event-title {
    color: #252525 !important;
}

.module--type-calendar .charcoal .desc_section .text-module__header .module__title h2 {
    color: #fff;
}

.module--type-calendar .charcoal h2.event-title {
    color: #252525 !important;
}

.module--type-calendar .charcoal #lclst_widget_footer {
    display: none;
}

.module--type-calendar.width-medium .event-list {
    display: inline-block;
}

.module--type-calendar.width-medium .event-list .event {
    margin-right: 0;
    width: 100%;
}

.module--type-calendar.width-medium .event-list li:nth-child(5n + 1) {
    clear: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list .event {
    margin-top: 0;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list .event article.event-card {
    margin-bottom: 0;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card {
    border: none !important;
    height: auto;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .event-details .event-detail-title {
    font-family: inter-variable, sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .event-details dd:before,
.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .event-details dt {
    display: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .event-details dd {
    display: inline-block;
    width: 100%;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .event-details dd time {
    font-family: inter-variable, sans-serif;
    font-size: 14px;
    font-weight: 700;
    width: -fit-content;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .event-details .event-location {
    font-family: inter-variable, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card header {
    height: auto;
    overflow: visible;
    padding-bottom: 30px;
    position: relative;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card header .event-title {
    background: #f4f4f4;
    color: #252525;
    display: inline-block;
    font-family: inter-variable, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    overflow: visible;
    padding: 15px 20px;
    white-space: pre-wrap;
    width: 100%;
    word-break: break-word;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card header .event-short-date {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 10px;
    width: 3em;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card header .event-short-date abbr {
    font-size: 1.125rem;
    font-weight: 800;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .content {
    border: none;
    display: none;
    padding: 15px 20px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .content:before {
    display: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article.event-card .content p {
    font-family: inter-variable, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article .start-time {
    display: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article:focus .event-img,
.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article:hover .event-img {
    left: 0;
    transform: none !important;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article:focus .content:before,
.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article:focus header .event-title,
.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article:hover .content:before,
.module--type-calendar .calendar-grid-module__loop .localist-widget .event-list article:hover header .event-title {
    opacity: 1 !important;
    visibility: visible !important;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container {
    background-color: transparent;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item {
    border: none;
    font-family: inter-variable, sans-serif;
    margin-bottom: 20px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container a.lw_event_item_image {
    box-shadow: none;
    height: auto;
    outline-offset: 1px;
    overflow: visible;
    padding-bottom: 40px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container a.lw_event_item_image:focus,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container a.lw_event_item_image:hover {
    box-shadow: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item_title a {
    display: inline;
    font-family: inter-variable, sans-serif;
    font-size: 20px;
    line-height: 20px !important;
    text-decoration: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item_title a:focus,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item_title a:hover {
    text-decoration: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item_description {
    font-size: 0.9rem;
    line-height: 1.3rem;
    margin-bottom: 0;
    margin-top: 5px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container:not(.lw_list_access) .lw_event_list .lw_event_item_date {
    background-color: transparent;
    bottom: 0;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item_time,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_meta_list_item_label {
    font-family: inter-variable, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 5px 0 -10px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item_location a,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_meta_list_item_label a {
    font-family: inter-variable, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-left: 10px;
    text-decoration: none;
    text-transform: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item_location a:focus,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_item_location a:hover,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_meta_list_item_label a:focus,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_meta_list_item_label a:hover {
    text-decoration: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--pin,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .pin {
    height: 15px;
    width: 15px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--pin:after,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .pin:after {
    height: 5px;
    left: 2px;
    top: 2px;
    width: 5px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--calendar {
    height: 15px;
    width: 15px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .clock,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--clock {
    height: 15px;
    margin-right: 7px;
    top: 4px;
    width: 15px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .clock:before,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--clock:before {
    height: 5px;
    left: 7px;
    top: 4px;
    width: 2px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .clock:after,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--clock:after {
    height: 6px;
    left: 4px;
    top: 1px;
    width: 2px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .action_button a {
    background: transparent;
    box-shadow: none;
    color: #021bc3;
    font-family: inter-variable, sans-serif;
    line-height: 30px;
    margin: 0 0 10px;
    padding: 0 15px;
    text-decoration: underline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .action_button a:focus,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .action_button a:hover {
    background: #021bc3;
    box-shadow: none;
    color: #fff;
    text-decoration: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container .lw_event_meta {
    float: left;
    overflow: visible;
    width: 100%;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list {
    gap: 20px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_item {
    margin: 0;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_item_image a {
    box-shadow: none;
    outline-offset: 1px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_meta {
    float: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .clock,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_icon.lw_icon--clock {
    margin: 0;
    top: auto;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_meta_list_item_label,
.module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_meta_list_item_label a {
    margin: 0;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe {
    border-bottom: 1px solid #f4f4f4 !important;
    position: relative;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 30px;
    overflow: visible;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn a {
    color: #252525;
    display: inline-block;
    font-family: inter-variable, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 0 15px;
    text-decoration: none;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn a:focus,
.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn a:hover {
    color: #021bc3;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn span {
    background: #001e5f;
    color: #fff;
    font-size: 0.9rem;
    padding: 0 10px;
    text-align: center;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwd {
    font-size: 0.9rem;
    line-height: 1.3rem;
    margin-bottom: 20px;
    margin-top: 5px;
    padding: 0 15px 0 0;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwd .lwi0 {
    padding: 0 20px 0 0;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwd .lwi0 a {
    display: inline-block;
    width: 125px;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwd .lwi0 a img {
    border: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwl {
    bottom: 0;
    display: inline-block;
    position: relative;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwl a {
    color: #252525;
    letter-spacing: 0.25px;
    text-transform: capitalize;
}

.module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwl a:before {
    content: "";
    font-family: Font Awesome\6 Pro;
    font-weight: 400;
    margin-right: 5px;
}

.calendar-grid-module__container.white .localist-widget .event-list article.event-card header .event-short-date,
.calendar-grid-module__container.white .localist-widget .event-list article.event-card header .event-title {
    background: #f4f4f4;
    color: #252525;
}

.calendar-grid-module__container.grey .localist-widget .event-list article.event-card header .event-title {
    background: #fff;
    color: #252525;
}

.lw_view_all_cta {
    margin-top: 20px;
}

.lw_view_all_cta a {
    font-family: inter-variable, sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0 auto;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-calendar.charcoal .desc_section .text-module__header .module__title h2,
.module--type-calendar.navy .desc_section .text-module__header .module__title h2 {
    color: #fff;
}

.module--type-calendar.charcoal h2.event-title,
.module--type-calendar.navy h2.event-title {
    color: #252525 !important;
}

.module--type-calendar.charcoal #lclst_widget_footer {
    display: none;
}

.module--type-calendar.cards.four .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list,
.module--type-calendar.cards.three .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list,
.module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
    display: grid;
}

.module--type-calendar.cards.four .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link,
.module--type-calendar.cards.three .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link,
.module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.module--type-calendar.cards.four .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content,
.module--type-calendar.cards.three .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content,
.module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
    height: 100%;
    padding: 3.125rem 1.875rem 4.6875rem;
}

.module--type-calendar.cards.four .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date,
.module--type-calendar.cards.three .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date,
.module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date {
    top: -25px;
}

.module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item:nth-of-type(2n) .lw_event_item_link .lw_event_item_image {
    grid-column: 2/-1;
}

.module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item:nth-of-type(2n) .lw_event_item_link .lw_event_content {
    grid-column: 1/2;
}

.module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item:nth-of-type(2n) .lw_event_item_link .lw_event_content .event-short-date {
    left: auto;
    right: -29px;
}

.module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link {
    display: grid;
    grid-template-columns: repeat(2, 50%);
}

.module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
    grid-column: 1/2;
    grid-row: 1/-1;
}

.module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
    grid-column: 2/-1;
    grid-row: 1/-1;
    padding: 2.5rem 2.5rem 4.6875rem 3.125rem;
    width: 100%;
}

.module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date {
    left: -29px;
    top: 55px;
}

.module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
    gap: 4rem;
    grid-template-columns: repeat(2, 1fr);
}

.module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
    height: 390px;
}

.module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
    padding: 3.125rem 2.5rem 4.6875rem;
}

.module--type-calendar.cards.three .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
}

.module--type-calendar.cards.three .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
    height: 265px;
}

.module--type-calendar.cards.four .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
    gap: 1.5rem;
    grid-template-columns: repeat(4, 1fr);
}

.module--type-calendar.cards.four .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
    height: 190px;
}

.module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link {
    display: flex;
    flex-direction: row;
}

.module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
    max-width: 180px;
    min-width: 180px;
}

.module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
    padding: 1.875rem 3.75rem;
}

.module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date {
    left: -27px;
    top: 44px;
}

.module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta {
    flex-direction: row;
}

.module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_time {
    margin: 0;
}

.module--type-calendar .calendar-grid-module__container.white .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content,
.module--type-calendar .calendar-grid-module__container.white .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
    background-color: #f4f4f4;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__header {
    text-align: center;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item {
    margin: 0;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link {
    box-shadow: none;
    justify-items: center;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content {
    background-color: #021bc3;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_item_date,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_item_description p,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_item_title p,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_meta .lw_event_item_location_antenna p,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_meta .lw_event_item_location_antenna:before,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_meta .lw_event_item_location_pin p,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_meta .lw_event_item_location_pin:before,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_meta .lw_event_item_time p,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content .lw_event_meta .lw_event_item_time:before,
.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link:hover .lw_event_content:after {
    color: #fff;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
    background-color: #fff;
    width: 100%;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image .event-image {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
    background-color: #fff;
    border-bottom: 2px solid #021bc3;
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
    position: relative;
    transition: 0.3s ease-in-out;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content:after {
    bottom: 1rem;
    color: #021bc3;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1.5rem;
    position: absolute;
    right: 30px;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date {
    background-color: #001e5f;
    color: #fff;
    display: flex;
    flex-direction: column;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1rem;
    padding: 0.3125rem 0.625rem;
    position: absolute;
    text-transform: uppercase;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date abbr {
    align-items: center;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 1rem;
    line-height: 1rem;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date abbr span {
    font-size: 1.875rem;
    line-height: 1.875rem;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_item_date {
    color: #001e5f;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.09rem;
    line-height: normal;
    text-transform: uppercase;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_item_title p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5rem;
    margin-bottom: 0;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta {
    display: flex;
    flex-direction: column;
    gap: 0.62rem;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_time {
    padding-left: 25px;
    position: relative;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_time p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    margin: 0;
    text-transform: uppercase;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_time:before {
    color: #252525;
    content: "";
    font-family: Font Awesome\6 Pro;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 12px;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_location_pin {
    padding-left: 25px;
    position: relative;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_location_pin p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_location_pin:before {
    color: #252525;
    content: "";
    font-family: Font Awesome\6 Pro;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 12px;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_location_antenna {
    padding-left: 25px;
    position: relative;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_location_antenna p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    line-height: normal;
    margin: 0;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta .lw_event_item_location_antenna:before {
    color: #252525;
    content: "";
    font-family: Font Awesome\6 Pro;
    height: 12px;
    left: 0;
    position: absolute;
    top: 0;
    width: 12px;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_item_description p {
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 1.625rem;
    margin: 0;
}

.module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_view_all_cta {
    display: flex;
    justify-self: center;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list .event {
    margin-top: 0;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list .event article.event-card {
    margin-bottom: 0;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card {
    border: none !important;
    height: auto;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .event-details .event-detail-title {
    font-family: inter-variable, sans-serif;
    font-size: 17px;
    font-weight: 700;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .event-details dd:before,
.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .event-details dt {
    display: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .event-details dd {
    display: inline-block;
    width: 100%;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .event-details dd time {
    font-family: inter-variable, sans-serif;
    font-size: 14px;
    font-weight: 700;
    width: -fit-content;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .event-details .event-location {
    font-family: inter-variable, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card header {
    height: auto;
    overflow: visible;
    padding-bottom: 30px;
    position: relative;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card header .event-title {
    background: #f4f4f4;
    color: #252525;
    display: inline-block;
    font-family: inter-variable, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
    overflow: visible;
    padding: 15px 20px;
    white-space: pre-wrap;
    width: 100%;
    word-break: break-all;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card header .event-short-date {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    padding-bottom: 10px;
    width: 3em;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card header .event-short-date abbr {
    font-size: 1.125rem;
    font-weight: 800;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .content {
    border: none;
    display: none;
    padding: 15px 20px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .content:before {
    display: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article.event-card .content p {
    font-family: inter-variable, sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 22px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article .start-time {
    display: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article:focus .event-img,
.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article:hover .event-img {
    left: 0;
    transform: none !important;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article:focus .content:before,
.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article:focus header .event-title,
.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article:hover .content:before,
.module--type-calendar .calendar-grid_module__loop .localist-widget .event-list article:hover header .event-title {
    opacity: 1 !important;
    visibility: visible !important;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container {
    background-color: transparent;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item {
    border: none;
    font-family: inter-variable, sans-serif;
    margin-bottom: 20px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container a.lw_event_item_image {
    box-shadow: none;
    height: auto;
    outline-offset: 1px;
    overflow: visible;
    padding-bottom: 40px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container a.lw_event_item_image:focus,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container a.lw_event_item_image:hover {
    box-shadow: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item_title a {
    display: inline;
    font-family: inter-variable, sans-serif;
    font-size: 20px;
    line-height: 20px !important;
    text-decoration: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item_title a:focus,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item_title a:hover {
    text-decoration: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item_description {
    font-size: 0.9rem;
    line-height: 1.3rem;
    margin-bottom: 0;
    margin-top: 5px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container:not(.lw_list_access) .lw_event_list .lw_event_item_date {
    background-color: transparent;
    bottom: 0;
    color: #252525;
    font-family: inter-variable, sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 10px 0;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item_time,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_meta_list_item_label {
    font-family: inter-variable, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 5px 0 -10px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item_location a,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_meta_list_item_label a {
    font-family: inter-variable, sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin-left: 10px;
    text-decoration: none;
    text-transform: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item_location a:focus,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_item_location a:hover,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_meta_list_item_label a:focus,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_meta_list_item_label a:hover {
    text-decoration: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--pin,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .pin {
    height: 15px;
    width: 15px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--pin:after,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .pin:after {
    height: 5px;
    left: 2px;
    top: 2px;
    width: 5px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--calendar {
    height: 15px;
    width: 15px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .clock,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--clock {
    height: 15px;
    margin-right: 7px;
    top: 4px;
    width: 15px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .clock:before,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--clock:before {
    height: 5px;
    left: 7px;
    top: 4px;
    width: 2px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .clock:after,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_icon.lw_icon--clock:after {
    height: 6px;
    left: 4px;
    top: 1px;
    width: 2px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .action_button a {
    background: transparent;
    box-shadow: none;
    color: #021bc3;
    font-family: inter-variable, sans-serif;
    line-height: 30px;
    margin: 0 0 10px;
    padding: 0 15px;
    text-decoration: underline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .action_button a:focus,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .action_button a:hover {
    background: #021bc3;
    box-shadow: none;
    color: #fff;
    text-decoration: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container .lw_event_meta {
    float: left;
    overflow: visible;
    width: 100%;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list {
    gap: 20px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_item {
    margin: 0;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_item_image a {
    box-shadow: none;
    outline-offset: 1px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_meta {
    float: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .clock,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_icon.lw_icon--clock {
    margin: 0;
    top: auto;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_meta_list_item_label,
.module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container.lw_list_access .lw_event_list .lw_event_meta_list_item_label a {
    margin: 0;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe {
    border-bottom: 1px solid #f4f4f4 !important;
    position: relative;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 30px;
    overflow: visible;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn a {
    color: #252525;
    display: inline-block;
    font-family: inter-variable, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 22px;
    margin: 0 0 15px;
    text-decoration: none;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn a:focus,
.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn a:hover {
    color: #021bc3;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn span {
    background: #001e5f;
    color: #fff;
    font-size: 0.9rem;
    padding: 0 10px;
    text-align: center;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwd {
    font-size: 0.9rem;
    line-height: 1.3rem;
    margin-bottom: 20px;
    margin-top: 5px;
    padding: 0 15px 0 0;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwd .lwi0 {
    padding: 0 20px 0 0;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwd .lwi0 a {
    display: inline-block;
    width: 125px;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwd .lwi0 a img {
    border: none;
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwl {
    bottom: 0;
    display: inline-block;
    position: relative;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwl a {
    color: #252525;
    letter-spacing: 0.25px;
    text-transform: capitalize;
}

.module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwl a:before {
    content: "";
    font-family: Font Awesome\6 Pro;
    font-weight: 400;
    margin-right: 5px;
}

.module--type-tabs {
    margin: 0;
    padding: 0;
}

.module--type-tabs .vertical-mobile {
    display: block;
}

.module--type-tabs .vertical-desktop {
    display: none;
}

.module--type-tabs .notch {
    position: relative;
}

.module--type-tabs .notch:before {
    background-color: #fff;
    content: "";
    height: 40px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: 2;
}

.module--type-tabs.bg-gray,
.module--type-tabs.bg-gray .notch:before {
    background-color: #f4f4f4;
}

.module--type-tabs.bg-gray .swiper-wrapper .swiper-slide .tabs-module-content *,
.module--type-tabs.bg-gray .tabs-module-sidebar .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header,
.module--type-tabs.bg-gray.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header,
.module--type-tabs.bg-gray.tabs-horizontal .tabs-module-content * {
    color: #252525;
}

.module--type-tabs.bg-gray .swiper-slide .tabs-module-content .tabs-module-tab-text a {
    box-shadow: 0 1px 0 0 #021bc3;
}

.module--type-tabs.bg-gray .swiper-slide .tabs-module-content .tabs-module-tab-text a:hover {
    box-shadow: 0 3px 0 0 #021bc3;
    color: #021bc3;
}

.module--type-tabs.bg-gray .swiper-slide .tabs-module-content .tabs-module-overline {
    color: #252525;
}

.module--type-tabs.bg-gray.tabs-vertical {
    padding: 0;
}

.module--type-tabs.bg-gray.tabs-vertical .tabs-module-sidebar,
.module--type-tabs.bg-gray.tabs-vertical .tabs-module-sidebar .tabs-module-title-area {
    background-color: #e8e8e8;
}

.module--type-tabs.bg-gray.tabs-vertical .swiper-wrapper .swiper-slide {
    background-color: #f4f4f4;
}

.module--type-tabs.bg-gray.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper {
    background-color: #e8e8e8;
    position: relative;
}

.module--type-tabs.bg-gray.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper:after {
    background-color: #e8e8e8;
    bottom: 0;
    content: "";
    left: -100vw;
    position: absolute;
    top: 0;
    width: 200vw;
}

.module--type-tabs.bg-navy,
.module--type-tabs.bg-navy .notch:before {
    background-color: #001e5f;
}

.module--type-tabs.bg-navy .swiper-wrapper .swiper-slide .tabs-module-content *,
.module--type-tabs.bg-navy .tabs-module-sidebar .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header,
.module--type-tabs.bg-navy.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header,
.module--type-tabs.bg-navy.tabs-horizontal .tabs-module-content * {
    color: #fff;
}

.module--type-tabs.bg-navy .swiper-slide .tabs-module-content .tabs-module-tab-text a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-tabs.bg-navy .swiper-slide .tabs-module-content .tabs-module-tab-text a:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.module--type-tabs.bg-navy .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link {
    background: linear-gradient(0deg,
            hsla(0, 0%, 100%, 0.1),
            hsla(0, 0%, 100%, 0.1)),
        #001e5f;
    border-color: #fff !important;
    color: #fff;
}

.module--type-tabs.bg-navy .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link.swiper-pagination-bullet-active {
    background-color: #fff;
    color: #252525;
}

.module--type-tabs.bg-navy .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link:after {
    color: #fff !important;
}

.module--type-tabs.bg-navy .swiper-nav .swiper-button-next,
.module--type-tabs.bg-navy .swiper-nav .swiper-button-prev {
    background: #fff;
}

.module--type-tabs.bg-navy .swiper-nav .swiper-button-next:after,
.module--type-tabs.bg-navy .swiper-nav .swiper-button-prev:after {
    color: #021bc3;
}

.module--type-tabs.bg-navy .swiper-nav .swiper-button-next.swiper-button-disabled,
.module--type-tabs.bg-navy .swiper-nav .swiper-button-prev.swiper-button-disabled {
    background-color: #1a315b;
}

.module--type-tabs.bg-navy .swiper-nav .swiper-button-next.swiper-button-disabled:after,
.module--type-tabs.bg-navy .swiper-nav .swiper-button-prev.swiper-button-disabled:after {
    color: #fff;
}

.module--type-tabs.bg-navy.tabs-vertical {
    padding: 0;
}

.module--type-tabs.bg-navy.tabs-vertical .tabs-module-sidebar,
.module--type-tabs.bg-navy.tabs-vertical .tabs-module-sidebar .tabs-module-title-area {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        #001e5f;
}

.module--type-tabs.bg-navy.tabs-vertical .swiper-wrapper .swiper-slide {
    background-color: #001e5f;
}

.module--type-tabs.bg-navy.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        #001e5f;
    position: relative;
}

.module--type-tabs.bg-navy.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        #001e5f;
    bottom: 0;
    content: "";
    left: -100vw;
    position: absolute;
    top: 0;
    width: 200vw;
}

.module--type-tabs.bg-white,
.module--type-tabs.bg-white .notch:before {
    background-color: #fff;
}

.module--type-tabs.bg-white.tabs-vertical {
    padding: 0;
}

.module--type-tabs.bg-white.tabs-vertical .swiper-wrapper .swiper-slide {
    background-color: #fff;
}

.module--type-tabs.bg-white.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper {
    position: relative;
}

.module--type-tabs.bg-white.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper:after {
    bottom: 0;
    content: "";
    left: -100vw;
    position: absolute;
    top: 0;
    width: 200vw;
}

.module--type-tabs.bg-charcoal,
.module--type-tabs.bg-charcoal .notch:before {
    background-color: #252525;
}

.module--type-tabs.bg-charcoal .swiper-wrapper .swiper-slide .tabs-module-content *,
.module--type-tabs.bg-charcoal .tabs-module-sidebar .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header,
.module--type-tabs.bg-charcoal.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header,
.module--type-tabs.bg-charcoal.tabs-horizontal .tabs-module-content * {
    color: #fff;
}

.module--type-tabs.bg-charcoal .swiper-slide .tabs-module-content .tabs-module-tab-text a {
    box-shadow: 0 1px 0 0 #fff;
}

.module--type-tabs.bg-charcoal .swiper-slide .tabs-module-content .tabs-module-tab-text a:hover {
    box-shadow: 0 3px 0 0 #fff;
}

.module--type-tabs.bg-charcoal .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link {
    background: linear-gradient(0deg,
            hsla(0, 0%, 100%, 0.1),
            hsla(0, 0%, 100%, 0.1)),
        #252525;
    border-color: #fff !important;
    color: #fff;
}

.module--type-tabs.bg-charcoal .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link.swiper-pagination-bullet-active {
    background-color: #fff;
    color: #252525;
}

.module--type-tabs.bg-charcoal .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link:after {
    color: #fff !important;
}

.module--type-tabs.bg-charcoal .swiper-nav .swiper-button-next,
.module--type-tabs.bg-charcoal .swiper-nav .swiper-button-prev {
    background: #fff;
}

.module--type-tabs.bg-charcoal .swiper-nav .swiper-button-next:after,
.module--type-tabs.bg-charcoal .swiper-nav .swiper-button-prev:after {
    color: #021bc3;
}

.module--type-tabs.bg-charcoal .swiper-nav .swiper-button-next.swiper-button-disabled,
.module--type-tabs.bg-charcoal .swiper-nav .swiper-button-prev.swiper-button-disabled {
    background-color: #353535;
}

.module--type-tabs.bg-charcoal .swiper-nav .swiper-button-next.swiper-button-disabled:after,
.module--type-tabs.bg-charcoal .swiper-nav .swiper-button-prev.swiper-button-disabled:after {
    color: #fff;
}

.module--type-tabs.bg-charcoal.tabs-vertical {
    padding: 0;
}

.module--type-tabs.bg-charcoal.tabs-vertical .tabs-module-sidebar,
.module--type-tabs.bg-charcoal.tabs-vertical .tabs-module-sidebar .tabs-module-title-area {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        #252525;
}

.module--type-tabs.bg-charcoal.tabs-vertical .swiper-wrapper .swiper-slide {
    background-color: #252525;
}

.module--type-tabs.bg-charcoal.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        #252525;
    position: relative;
}

.module--type-tabs.bg-charcoal.tabs-horizontal .tabs-module-container .tabs-module-title-wrapper:after {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        #252525;
    bottom: 0;
    content: "";
    left: -100vw;
    position: absolute;
    top: 0;
    width: 200vw;
}

.module--type-tabs .tabs-module-container .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header *,
.module--type-tabs .tabs-module-sidebar .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header * {
    font-family: inter-variable, sans-serif;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.64px;
}

.module--type-tabs .tabs-module-container .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header:after,
.module--type-tabs .tabs-module-sidebar .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header:after {
    background-color: #ffd82b;
    content: "";
    display: block;
    height: 8px;
    width: 60px;
}

.module--type-tabs .swiper-nav {
    bottom: 20px;
    max-width: calc(1380px + 3.75rem);
    position: relative;
}

.module--type-tabs .swiper-nav .swiper-button-next,
.module--type-tabs .swiper-nav .swiper-button-prev {
    background: #021bc3;
    height: 33px;
    inset: auto 0 0 auto;
    position: absolute;
    width: 33px;
}

.module--type-tabs .swiper-nav .swiper-button-next.swiper-button-disabled,
.module--type-tabs .swiper-nav .swiper-button-prev.swiper-button-disabled {
    background-color: #252525;
    opacity: 1;
}

.module--type-tabs .swiper-nav .swiper-button-next:after,
.module--type-tabs .swiper-nav .swiper-button-prev:after {
    color: #fff;
    content: "";
    font-family: Font Awesome\6 Pro;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1;
    position: absolute;
    transition: 0.25s cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.module--type-tabs .swiper-nav .swiper-button-prev {
    right: 40px;
}

.module--type-tabs .swiper-nav .swiper-button-prev:after {
    content: "";
}

.module--type-tabs .swiper-nav .swiper-button-next {
    margin-left: 5px;
}

.module--type-tabs .swiper-header .swiper-custom-pagination {
    display: flex;
    position: relative;
}

.module--type-tabs .swiper-header .swiper-custom-pagination .tabs-module-link {
    background-color: #fff;
    border-radius: 0;
    display: flex;
    flex-wrap: wrap;
    height: auto;
    margin: 0;
    opacity: 1;
    position: relative;
}

.module--type-tabs .swiper-header .swiper-custom-pagination .tabs-module-link.swiper-pagination-bullet-active {
    background-color: #021bc3;
    color: #fff;
}

.module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content,
.module--type-tabs.tabs-horizontal .tabs-module-content {
    position: relative;
    z-index: 1;
}

.module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-overline,
.module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-overline {
    font-family: inter-variable, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.09rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-tab-title,
.module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-tab-title {
    padding-bottom: 1rem;
}

.module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-tab-title *,
.module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-tab-title * {
    font-family: inter-variable, sans-serif;
    font-size: 1.5625rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.5rem;
}

.module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-tab-text p,
.module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-tab-text p {
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    line-height: 2rem;
}

.module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-tab-text p a,
.module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-tab-text p a {
    font-weight: 700;
}

.module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-content-tab-image,
.module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-content-tab-image {
    align-items: flex-start;
    display: flex;
    height: auto;
    margin: auto;
    width: 100%;
}

.module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-content-tab-image img,
.module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-content-tab-image img {
    max-height: 100%;
    object-fit: cover;
    width: 100%;
}

.module--type-tabs .tabs-module-content-tab {
    display: flex;
    flex-flow: column;
    gap: 1.25rem;
    padding-bottom: 2rem;
}

.module--type-tabs .tabs-module-content-tab .tabs-module-tab-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    order: 2;
}

.module--type-tabs .tabs-module-content-tab .tabs-module-tab-text a {
    font-weight: 700;
}

.module--type-tabs .tabs-module-content-tab .tabs-module-content-tab-image {
    order: 1;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper {
    display: flex;
    flex-direction: row;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .tabs-module-sidebar {
    display: flex;
    flex-direction: column;
    padding: 7rem 0 2rem;
    position: relative;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .tabs-module-sidebar:before {
    background: inherit;
    content: "";
    height: 100%;
    position: absolute;
    right: 100%;
    top: 0;
    width: 100vw;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .tabs-module-sidebar .tabs-module-title-wrapper .tabs-module-title-area {
    padding-bottom: 3rem;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .tabs-module-sidebar .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .tabs-module-sidebar .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link {
    border-bottom: none;
    border-right: 2px solid #021bc3;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.04rem;
    line-height: 1.375rem;
    padding: 0.875rem;
    position: relative;
    text-align: left;
    width: 100%;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .tabs-module-sidebar .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link.swiper-pagination-bullet-active:after {
    color: #021bc3;
    content: "";
    display: block;
    font-family: Font Awesome\6 Pro;
    font-weight: 700;
    height: auto;
    position: absolute;
    right: -13px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: auto;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .tabs-module-sidebar .tabs-module-title-wrapper .swiper-header .swiper-nav {
    display: none;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .swiper {
    flex: 1;
    overflow: hidden;
    width: 100%;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .swiper .swiper-wrapper {
    height: auto;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .swiper .swiper-slide {
    align-content: center;
    height: auto;
    width: 100%;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .swiper .swiper-slide.no-image .tabs-module-tab-text {
    padding-top: 0;
    width: 100%;
}

.module--type-tabs.tabs-vertical .tabs-module-wrapper .swiper .swiper-slide .tabs-module-content {
    padding: 6rem 0 4rem 2.5rem;
}

.module--type-tabs.tabs-horizontal {
    overflow-x: visible;
    padding: 0;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper {
    display: flex;
    flex-direction: column;
    margin-bottom: 0.75rem;
    min-width: 100%;
    overflow-x: visible;
    position: relative;
    white-space: nowrap;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper:after {
    bottom: 0;
    content: "";
    left: -100vw;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: 0;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper:before {
    background-color: #fff;
    content: "";
    height: 40px;
    left: 30vw;
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: 1;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper .tabs-module-title-area {
    padding-top: 4rem;
    position: relative;
    width: 100%;
    z-index: 1;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header {
    padding-bottom: 1rem;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper .swiper-header {
    margin-top: 1.25rem;
    overflow: visible;
    position: relative;
    transition: transform 0.3s ease-in-out;
    will-change: transform;
    z-index: 1;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination {
    bottom: 0;
    flex-wrap: nowrap;
    gap: 0.75rem;
    overflow-x: visible;
    white-space: nowrap;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link {
    border-bottom: 2px solid #021bc3;
    font-family: inter-variable, sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.04rem;
    line-height: 1.375rem;
    padding: 0.875rem;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.module--type-tabs.tabs-horizontal .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link.swiper-pagination-bullet-active:after {
    bottom: -12px;
    color: #021bc3;
    content: "";
    display: block;
    font-family: Font Awesome\6 Pro;
    font-weight: 700;
    height: auto;
    left: 50%;
    position: absolute;
    transform: translateX(-50%) rotate(180deg);
    width: auto;
    z-index: 2;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper {
    align-items: center;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide.no-image .tabs-module-content {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 960px;
    width: 100%;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide.no-image .tabs-module-content .tabs-module-content-tab .tabs-module-tab-text {
    width: 100%;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide.swiper-slide-visible {
    z-index: 1;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide .tabs-module-content {
    padding: 1rem 0;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-text-wrapper {
    width: 100%;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide .tabs-module-content.image-right {
    flex-direction: row;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide .tabs-module-content.image-left {
    flex-direction: row-reverse;
}

.module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-tab-text {
    align-content: center;
}

@media screen and (min-width: 64em) {

    .h1,
    h1 {
        font-size: 2.875rem;
    }

    .h1,
    .h2,
    h1,
    h2 {
        line-height: 1.2;
        margin-bottom: 0;
        margin-top: 0;
    }

    .h2,
    h2 {
        font-size: 2.375rem;
    }

    .ez-toc-title,
    .h3,
    h3 {
        font-size: 1.875rem;
    }

    .ez-toc-title,
    .h3,
    .h4,
    h3,
    h4 {
        line-height: 1.2;
        margin-bottom: 0;
        margin-top: 0;
    }

    .h4,
    h4 {
        font-size: 1.625rem;
    }

    .h5,
    .localist-widget .lwn a,
    h5 {
        font-size: 1.5rem;
    }

    .h5,
    .h6,
    .localist-widget .lwn a,
    h5,
    h6 {
        line-height: 1.2;
        margin-bottom: 0;
        margin-top: 0;
    }

    .h6,
    h6 {
        font-size: 1.375rem;
    }

    .large-text-left {
        text-align: left;
    }

    .large-text-right {
        text-align: right;
    }

    .large-text-center {
        text-align: center;
    }

    .large-text-justify {
        text-align: justify;
    }

    .grid-container,
    .grid-container.fluid {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }

    .grid-x>.large-1,
    .grid-x>.large-10,
    .grid-x>.large-11,
    .grid-x>.large-12,
    .grid-x>.large-2,
    .grid-x>.large-3,
    .grid-x>.large-4,
    .grid-x>.large-5,
    .grid-x>.large-6,
    .grid-x>.large-7,
    .grid-x>.large-8,
    .grid-x>.large-9,
    .grid-x>.large-full,
    .grid-x>.large-shrink {
        flex-basis: auto;
    }

    .grid-x>.large-auto {
        flex: 1 1 0;
        width: auto;
    }

    .grid-x>.large-1,
    .grid-x>.large-10,
    .grid-x>.large-11,
    .grid-x>.large-12,
    .grid-x>.large-2,
    .grid-x>.large-3,
    .grid-x>.large-4,
    .grid-x>.large-5,
    .grid-x>.large-6,
    .grid-x>.large-7,
    .grid-x>.large-8,
    .grid-x>.large-9,
    .grid-x>.large-shrink {
        flex: 0 0 auto;
    }

    .grid-x>.large-shrink {
        width: auto;
    }

    .grid-x>.large-1 {
        width: 8.3333333333%;
    }

    .grid-x>.large-2 {
        width: 16.6666666667%;
    }

    .grid-x>.large-3 {
        width: 25%;
    }

    .grid-x>.large-4 {
        width: 33.3333333333%;
    }

    .grid-x>.large-5 {
        width: 41.6666666667%;
    }

    .grid-x>.large-6 {
        width: 50%;
    }

    .grid-x>.large-7 {
        width: 58.3333333333%;
    }

    .grid-x>.large-8 {
        width: 66.6666666667%;
    }

    .grid-x>.large-9 {
        width: 75%;
    }

    .grid-x>.large-10 {
        width: 83.3333333333%;
    }

    .grid-x>.large-11 {
        width: 91.6666666667%;
    }

    .grid-x>.large-12 {
        width: 100%;
    }

    .grid-margin-x {
        margin-left: -0.9375rem;
        margin-right: -0.9375rem;
    }

    .grid-margin-x>.cell {
        margin-left: 0.9375rem;
        margin-right: 0.9375rem;
        width: calc(100% - 1.875rem);
    }

    .grid-margin-x>.auto,
    .grid-margin-x>.shrink {
        width: auto;
    }

    .grid-margin-x>.small-1 {
        width: calc(8.33333% - 1.875rem);
    }

    .grid-margin-x>.small-2 {
        width: calc(16.66667% - 1.875rem);
    }

    .grid-margin-x>.small-3 {
        width: calc(25% - 1.875rem);
    }

    .grid-margin-x>.small-4 {
        width: calc(33.33333% - 1.875rem);
    }

    .grid-margin-x>.small-5 {
        width: calc(41.66667% - 1.875rem);
    }

    .grid-margin-x>.small-6 {
        width: calc(50% - 1.875rem);
    }

    .grid-margin-x>.small-7 {
        width: calc(58.33333% - 1.875rem);
    }

    .grid-margin-x>.small-8 {
        width: calc(66.66667% - 1.875rem);
    }

    .grid-margin-x>.small-9 {
        width: calc(75% - 1.875rem);
    }

    .grid-margin-x>.small-10 {
        width: calc(83.33333% - 1.875rem);
    }

    .grid-margin-x>.small-11 {
        width: calc(91.66667% - 1.875rem);
    }

    .grid-margin-x>.small-12 {
        width: calc(100% - 1.875rem);
    }

    .grid-margin-x>.medium-auto,
    .grid-margin-x>.medium-shrink {
        width: auto;
    }

    .grid-margin-x>.medium-1 {
        width: calc(8.33333% - 1.875rem);
    }

    .grid-margin-x>.medium-2 {
        width: calc(16.66667% - 1.875rem);
    }

    .grid-margin-x>.medium-3 {
        width: calc(25% - 1.875rem);
    }

    .grid-margin-x>.medium-4 {
        width: calc(33.33333% - 1.875rem);
    }

    .grid-margin-x>.medium-5 {
        width: calc(41.66667% - 1.875rem);
    }

    .grid-margin-x>.medium-6 {
        width: calc(50% - 1.875rem);
    }

    .grid-margin-x>.medium-7 {
        width: calc(58.33333% - 1.875rem);
    }

    .grid-margin-x>.medium-8 {
        width: calc(66.66667% - 1.875rem);
    }

    .grid-margin-x>.medium-9 {
        width: calc(75% - 1.875rem);
    }

    .grid-margin-x>.medium-10 {
        width: calc(83.33333% - 1.875rem);
    }

    .grid-margin-x>.medium-11 {
        width: calc(91.66667% - 1.875rem);
    }

    .grid-margin-x>.medium-12 {
        width: calc(100% - 1.875rem);
    }

    .grid-margin-x>.large-auto,
    .grid-margin-x>.large-shrink {
        width: auto;
    }

    .grid-margin-x>.large-1 {
        width: calc(8.33333% - 1.875rem);
    }

    .grid-margin-x>.large-2 {
        width: calc(16.66667% - 1.875rem);
    }

    .grid-margin-x>.large-3 {
        width: calc(25% - 1.875rem);
    }

    .grid-margin-x>.large-4 {
        width: calc(33.33333% - 1.875rem);
    }

    .grid-margin-x>.large-5 {
        width: calc(41.66667% - 1.875rem);
    }

    .grid-margin-x>.large-6 {
        width: calc(50% - 1.875rem);
    }

    .grid-margin-x>.large-7 {
        width: calc(58.33333% - 1.875rem);
    }

    .grid-margin-x>.large-8 {
        width: calc(66.66667% - 1.875rem);
    }

    .grid-margin-x>.large-9 {
        width: calc(75% - 1.875rem);
    }

    .grid-margin-x>.large-10 {
        width: calc(83.33333% - 1.875rem);
    }

    .grid-margin-x>.large-11 {
        width: calc(91.66667% - 1.875rem);
    }

    .grid-margin-x>.large-12 {
        width: calc(100% - 1.875rem);
    }

    .grid-container:not(.full)>.grid-padding-x,
    .grid-padding-x .grid-padding-x {
        margin-left: -0.9375rem;
        margin-right: -0.9375rem;
    }

    .grid-padding-x>.cell {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
    }

    .large-up-1>.cell {
        width: 100%;
    }

    .large-up-2>.cell {
        width: 50%;
    }

    .large-up-3>.cell {
        width: 33.3333333333%;
    }

    .large-up-4>.cell {
        width: 25%;
    }

    .large-up-5>.cell {
        width: 20%;
    }

    .large-up-6>.cell {
        width: 16.6666666667%;
    }

    .large-up-7>.cell {
        width: 14.2857142857%;
    }

    .large-up-8>.cell {
        width: 12.5%;
    }

    .grid-margin-x.small-up-1>.cell {
        width: calc(100% - 1.875rem);
    }

    .grid-margin-x.small-up-2>.cell {
        width: calc(50% - 1.875rem);
    }

    .grid-margin-x.small-up-3>.cell {
        width: calc(33.33333% - 1.875rem);
    }

    .grid-margin-x.small-up-4>.cell {
        width: calc(25% - 1.875rem);
    }

    .grid-margin-x.small-up-5>.cell {
        width: calc(20% - 1.875rem);
    }

    .grid-margin-x.small-up-6>.cell {
        width: calc(16.66667% - 1.875rem);
    }

    .grid-margin-x.small-up-7>.cell {
        width: calc(14.28571% - 1.875rem);
    }

    .grid-margin-x.small-up-8>.cell {
        width: calc(12.5% - 1.875rem);
    }

    .grid-margin-x.large-up-1>.cell {
        width: calc(100% - 1.875rem);
    }

    .grid-margin-x.large-up-2>.cell {
        width: calc(50% - 1.875rem);
    }

    .grid-margin-x.large-up-3>.cell {
        width: calc(33.33333% - 1.875rem);
    }

    .grid-margin-x.large-up-4>.cell {
        width: calc(25% - 1.875rem);
    }

    .grid-margin-x.large-up-5>.cell {
        width: calc(20% - 1.875rem);
    }

    .grid-margin-x.large-up-6>.cell {
        width: calc(16.66667% - 1.875rem);
    }

    .grid-margin-x.large-up-7>.cell {
        width: calc(14.28571% - 1.875rem);
    }

    .grid-margin-x.large-up-8>.cell {
        width: calc(12.5% - 1.875rem);
    }

    .small-margin-collapse>.large-1 {
        width: 8.3333333333%;
    }

    .small-margin-collapse>.large-2 {
        width: 16.6666666667%;
    }

    .small-margin-collapse>.large-3 {
        width: 25%;
    }

    .small-margin-collapse>.large-4 {
        width: 33.3333333333%;
    }

    .small-margin-collapse>.large-5 {
        width: 41.6666666667%;
    }

    .small-margin-collapse>.large-6 {
        width: 50%;
    }

    .small-margin-collapse>.large-7 {
        width: 58.3333333333%;
    }

    .small-margin-collapse>.large-8 {
        width: 66.6666666667%;
    }

    .small-margin-collapse>.large-9 {
        width: 75%;
    }

    .small-margin-collapse>.large-10 {
        width: 83.3333333333%;
    }

    .small-margin-collapse>.large-11 {
        width: 91.6666666667%;
    }

    .small-margin-collapse>.large-12 {
        width: 100%;
    }

    .medium-margin-collapse>.large-1 {
        width: 8.3333333333%;
    }

    .medium-margin-collapse>.large-2 {
        width: 16.6666666667%;
    }

    .medium-margin-collapse>.large-3 {
        width: 25%;
    }

    .medium-margin-collapse>.large-4 {
        width: 33.3333333333%;
    }

    .medium-margin-collapse>.large-5 {
        width: 41.6666666667%;
    }

    .medium-margin-collapse>.large-6 {
        width: 50%;
    }

    .medium-margin-collapse>.large-7 {
        width: 58.3333333333%;
    }

    .medium-margin-collapse>.large-8 {
        width: 66.6666666667%;
    }

    .medium-margin-collapse>.large-9 {
        width: 75%;
    }

    .medium-margin-collapse>.large-10 {
        width: 83.3333333333%;
    }

    .medium-margin-collapse>.large-11 {
        width: 91.6666666667%;
    }

    .medium-margin-collapse>.large-12 {
        width: 100%;
    }

    .large-margin-collapse,
    .large-margin-collapse>.cell {
        margin-left: 0;
        margin-right: 0;
    }

    .large-margin-collapse>.small-1 {
        width: 8.3333333333%;
    }

    .large-margin-collapse>.small-2 {
        width: 16.6666666667%;
    }

    .large-margin-collapse>.small-3 {
        width: 25%;
    }

    .large-margin-collapse>.small-4 {
        width: 33.3333333333%;
    }

    .large-margin-collapse>.small-5 {
        width: 41.6666666667%;
    }

    .large-margin-collapse>.small-6 {
        width: 50%;
    }

    .large-margin-collapse>.small-7 {
        width: 58.3333333333%;
    }

    .large-margin-collapse>.small-8 {
        width: 66.6666666667%;
    }

    .large-margin-collapse>.small-9 {
        width: 75%;
    }

    .large-margin-collapse>.small-10 {
        width: 83.3333333333%;
    }

    .large-margin-collapse>.small-11 {
        width: 91.6666666667%;
    }

    .large-margin-collapse>.small-12 {
        width: 100%;
    }

    .large-margin-collapse>.medium-1 {
        width: 8.3333333333%;
    }

    .large-margin-collapse>.medium-2 {
        width: 16.6666666667%;
    }

    .large-margin-collapse>.medium-3 {
        width: 25%;
    }

    .large-margin-collapse>.medium-4 {
        width: 33.3333333333%;
    }

    .large-margin-collapse>.medium-5 {
        width: 41.6666666667%;
    }

    .large-margin-collapse>.medium-6 {
        width: 50%;
    }

    .large-margin-collapse>.medium-7 {
        width: 58.3333333333%;
    }

    .large-margin-collapse>.medium-8 {
        width: 66.6666666667%;
    }

    .large-margin-collapse>.medium-9 {
        width: 75%;
    }

    .large-margin-collapse>.medium-10 {
        width: 83.3333333333%;
    }

    .large-margin-collapse>.medium-11 {
        width: 91.6666666667%;
    }

    .large-margin-collapse>.medium-12 {
        width: 100%;
    }

    .large-margin-collapse>.large-1 {
        width: 8.3333333333%;
    }

    .large-margin-collapse>.large-2 {
        width: 16.6666666667%;
    }

    .large-margin-collapse>.large-3 {
        width: 25%;
    }

    .large-margin-collapse>.large-4 {
        width: 33.3333333333%;
    }

    .large-margin-collapse>.large-5 {
        width: 41.6666666667%;
    }

    .large-margin-collapse>.large-6 {
        width: 50%;
    }

    .large-margin-collapse>.large-7 {
        width: 58.3333333333%;
    }

    .large-margin-collapse>.large-8 {
        width: 66.6666666667%;
    }

    .large-margin-collapse>.large-9 {
        width: 75%;
    }

    .large-margin-collapse>.large-10 {
        width: 83.3333333333%;
    }

    .large-margin-collapse>.large-11 {
        width: 91.6666666667%;
    }

    .large-margin-collapse>.large-12 {
        width: 100%;
    }

    .large-padding-collapse {
        margin-left: 0;
        margin-right: 0;
    }

    .large-padding-collapse>.cell {
        padding-left: 0;
        padding-right: 0;
    }

    .large-offset-0 {
        margin-left: 0;
    }

    .grid-margin-x>.large-offset-0 {
        margin-left: 0.9375rem;
    }

    .large-offset-1 {
        margin-left: 8.3333333333%;
    }

    .grid-margin-x>.large-offset-1 {
        margin-left: calc(8.33333% + 0.9375rem);
    }

    .large-offset-2 {
        margin-left: 16.6666666667%;
    }

    .grid-margin-x>.large-offset-2 {
        margin-left: calc(16.66667% + 0.9375rem);
    }

    .large-offset-3 {
        margin-left: 25%;
    }

    .grid-margin-x>.large-offset-3 {
        margin-left: calc(25% + 0.9375rem);
    }

    .large-offset-4 {
        margin-left: 33.3333333333%;
    }

    .grid-margin-x>.large-offset-4 {
        margin-left: calc(33.33333% + 0.9375rem);
    }

    .large-offset-5 {
        margin-left: 41.6666666667%;
    }

    .grid-margin-x>.large-offset-5 {
        margin-left: calc(41.66667% + 0.9375rem);
    }

    .large-offset-6 {
        margin-left: 50%;
    }

    .grid-margin-x>.large-offset-6 {
        margin-left: calc(50% + 0.9375rem);
    }

    .large-offset-7 {
        margin-left: 58.3333333333%;
    }

    .grid-margin-x>.large-offset-7 {
        margin-left: calc(58.33333% + 0.9375rem);
    }

    .large-offset-8 {
        margin-left: 66.6666666667%;
    }

    .grid-margin-x>.large-offset-8 {
        margin-left: calc(66.66667% + 0.9375rem);
    }

    .large-offset-9 {
        margin-left: 75%;
    }

    .grid-margin-x>.large-offset-9 {
        margin-left: calc(75% + 0.9375rem);
    }

    .large-offset-10 {
        margin-left: 83.3333333333%;
    }

    .grid-margin-x>.large-offset-10 {
        margin-left: calc(83.33333% + 0.9375rem);
    }

    .large-offset-11 {
        margin-left: 91.6666666667%;
    }

    .grid-margin-x>.large-offset-11 {
        margin-left: calc(91.66667% + 0.9375rem);
    }

    .grid-y>.large-1,
    .grid-y>.large-10,
    .grid-y>.large-11,
    .grid-y>.large-12,
    .grid-y>.large-2,
    .grid-y>.large-3,
    .grid-y>.large-4,
    .grid-y>.large-5,
    .grid-y>.large-6,
    .grid-y>.large-7,
    .grid-y>.large-8,
    .grid-y>.large-9,
    .grid-y>.large-full,
    .grid-y>.large-shrink {
        flex-basis: auto;
    }

    .grid-y>.large-auto {
        flex: 1 1 0;
        height: auto;
    }

    .grid-y>.large-1,
    .grid-y>.large-10,
    .grid-y>.large-11,
    .grid-y>.large-12,
    .grid-y>.large-2,
    .grid-y>.large-3,
    .grid-y>.large-4,
    .grid-y>.large-5,
    .grid-y>.large-6,
    .grid-y>.large-7,
    .grid-y>.large-8,
    .grid-y>.large-9,
    .grid-y>.large-shrink {
        flex: 0 0 auto;
    }

    .grid-y>.large-shrink {
        height: auto;
    }

    .grid-y>.large-1 {
        height: 8.3333333333%;
    }

    .grid-y>.large-2 {
        height: 16.6666666667%;
    }

    .grid-y>.large-3 {
        height: 25%;
    }

    .grid-y>.large-4 {
        height: 33.3333333333%;
    }

    .grid-y>.large-5 {
        height: 41.6666666667%;
    }

    .grid-y>.large-6 {
        height: 50%;
    }

    .grid-y>.large-7 {
        height: 58.3333333333%;
    }

    .grid-y>.large-8 {
        height: 66.6666666667%;
    }

    .grid-y>.large-9 {
        height: 75%;
    }

    .grid-y>.large-10 {
        height: 83.3333333333%;
    }

    .grid-y>.large-11 {
        height: 91.6666666667%;
    }

    .grid-y>.large-12 {
        height: 100%;
    }

    .grid-padding-y .grid-padding-y {
        margin-bottom: -0.9375rem;
        margin-top: -0.9375rem;
    }

    .grid-padding-y>.cell {
        padding-bottom: 0.9375rem;
        padding-top: 0.9375rem;
    }

    .grid-margin-y {
        margin-bottom: -0.9375rem;
        margin-top: -0.9375rem;
    }

    .grid-margin-y>.cell {
        height: calc(100% - 1.875rem);
        margin-bottom: 0.9375rem;
        margin-top: 0.9375rem;
    }

    .grid-margin-y>.auto,
    .grid-margin-y>.shrink {
        height: auto;
    }

    .grid-margin-y>.small-1 {
        height: calc(8.33333% - 1.875rem);
    }

    .grid-margin-y>.small-2 {
        height: calc(16.66667% - 1.875rem);
    }

    .grid-margin-y>.small-3 {
        height: calc(25% - 1.875rem);
    }

    .grid-margin-y>.small-4 {
        height: calc(33.33333% - 1.875rem);
    }

    .grid-margin-y>.small-5 {
        height: calc(41.66667% - 1.875rem);
    }

    .grid-margin-y>.small-6 {
        height: calc(50% - 1.875rem);
    }

    .grid-margin-y>.small-7 {
        height: calc(58.33333% - 1.875rem);
    }

    .grid-margin-y>.small-8 {
        height: calc(66.66667% - 1.875rem);
    }

    .grid-margin-y>.small-9 {
        height: calc(75% - 1.875rem);
    }

    .grid-margin-y>.small-10 {
        height: calc(83.33333% - 1.875rem);
    }

    .grid-margin-y>.small-11 {
        height: calc(91.66667% - 1.875rem);
    }

    .grid-margin-y>.small-12 {
        height: calc(100% - 1.875rem);
    }

    .grid-margin-y>.medium-auto,
    .grid-margin-y>.medium-shrink {
        height: auto;
    }

    .grid-margin-y>.medium-1 {
        height: calc(8.33333% - 1.875rem);
    }

    .grid-margin-y>.medium-2 {
        height: calc(16.66667% - 1.875rem);
    }

    .grid-margin-y>.medium-3 {
        height: calc(25% - 1.875rem);
    }

    .grid-margin-y>.medium-4 {
        height: calc(33.33333% - 1.875rem);
    }

    .grid-margin-y>.medium-5 {
        height: calc(41.66667% - 1.875rem);
    }

    .grid-margin-y>.medium-6 {
        height: calc(50% - 1.875rem);
    }

    .grid-margin-y>.medium-7 {
        height: calc(58.33333% - 1.875rem);
    }

    .grid-margin-y>.medium-8 {
        height: calc(66.66667% - 1.875rem);
    }

    .grid-margin-y>.medium-9 {
        height: calc(75% - 1.875rem);
    }

    .grid-margin-y>.medium-10 {
        height: calc(83.33333% - 1.875rem);
    }

    .grid-margin-y>.medium-11 {
        height: calc(91.66667% - 1.875rem);
    }

    .grid-margin-y>.medium-12 {
        height: calc(100% - 1.875rem);
    }

    .grid-margin-y>.large-auto,
    .grid-margin-y>.large-shrink {
        height: auto;
    }

    .grid-margin-y>.large-1 {
        height: calc(8.33333% - 1.875rem);
    }

    .grid-margin-y>.large-2 {
        height: calc(16.66667% - 1.875rem);
    }

    .grid-margin-y>.large-3 {
        height: calc(25% - 1.875rem);
    }

    .grid-margin-y>.large-4 {
        height: calc(33.33333% - 1.875rem);
    }

    .grid-margin-y>.large-5 {
        height: calc(41.66667% - 1.875rem);
    }

    .grid-margin-y>.large-6 {
        height: calc(50% - 1.875rem);
    }

    .grid-margin-y>.large-7 {
        height: calc(58.33333% - 1.875rem);
    }

    .grid-margin-y>.large-8 {
        height: calc(66.66667% - 1.875rem);
    }

    .grid-margin-y>.large-9 {
        height: calc(75% - 1.875rem);
    }

    .grid-margin-y>.large-10 {
        height: calc(83.33333% - 1.875rem);
    }

    .grid-margin-y>.large-11 {
        height: calc(91.66667% - 1.875rem);
    }

    .grid-margin-y>.large-12 {
        height: calc(100% - 1.875rem);
    }

    .large-grid-frame {
        align-items: stretch;
        flex-wrap: nowrap;
        overflow: hidden;
        position: relative;
        width: 100vw;
    }

    .cell .large-grid-frame {
        width: 100%;
    }

    .large-cell-block {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .large-cell-block-container {
        display: flex;
        flex-direction: column;
        max-height: 100%;
    }

    .large-cell-block-container>.grid-x {
        flex-wrap: nowrap;
        max-height: 100%;
    }

    .large-cell-block-y {
        max-height: 100%;
        min-height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .grid-y.large-grid-frame {
        align-items: stretch;
        flex-wrap: nowrap;
        height: 100vh;
        overflow: hidden;
        position: relative;
        width: auto;
    }

    .cell .grid-y.large-grid-frame {
        height: 100%;
    }

    .grid-frame.grid-margin-y,
    .grid-margin-y.large-grid-frame {
        height: calc(100vh + 1.875rem);
    }

    .ginput_complex.gf_name_has_2 p {
        margin-bottom: 0;
        width: 50%;
    }

    .ginput_left,
    .name_first {
        float: left;
        padding-right: 8px;
        width: 100% !important;
    }

    .ginput_right,
    .name_last {
        float: right;
        width: 100% !important;
    }

    .gfield_date_dropdown_month,
    .gfield_date_month,
    .gfield_time_hour {
        padding-right: 8px;
    }

    .gfield_date_day,
    .gfield_date_dropdown_day,
    .gfield_time_minute {
        padding-left: 8px;
        padding-right: 8px;
    }

    .gfield_date_dropdown_year,
    .gfield_date_year,
    .gfield_time_ampm {
        padding-left: 8px;
    }

    .gfield_date_dropdown_year label,
    .gfield_date_year label,
    .gfield_time_ampm label {
        margin-bottom: 8px;
    }

    body.has-sitewide-text .no_image .header-wrap {
        padding-top: 70px !important;
    }

    body.has-sitewide-text main .content-header.right_image {
        padding-top: 2rem;
    }

    body.has-sitewide-text main .content-header.right_image.pattern {
        padding-top: 0;
    }

    body.has-sitewide-text main .content-header.right_image.pattern .header-wrap {
        padding-top: 4.5rem;
    }

    body.has-sitewide-text #site-navigation {
        padding-bottom: 30px;
    }

    .localist-widget .lwn .t-content .u-text-overline+a,
    .t-content .localist-widget .lwn .u-text-overline+a,
    .t-content .u-text-overline+h1,
    .t-content .u-text-overline+h2,
    .t-content .u-text-overline+h3,
    .t-content .u-text-overline+h4,
    .t-content .u-text-overline+h5,
    .t-content .u-text-overline+h6 {
        margin-top: 1rem;
    }

    .u-text-lead {
        font-size: 1.375rem;
    }

    .logo__wrap {
        padding: 1.25rem 0;
    }

    .single .content-header .primary-category {
        font-size: 14px;
        letter-spacing: 1.4px;
    }

    .related-posts .loop--posts {
        --gap: 50px;
        --line-offset: calc(var(--gap) / 2);
        --line-thickness: 1px;
        --line-color: $color-medium-gray;
        display: grid;
        gap: var(--gap);
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .related-posts .related-cards {
        border-bottom: none;
        margin-bottom: auto;
        margin-top: 0;
        padding-bottom: 0;
        width: 100%;
    }

    .masthead-top-row {
        justify-content: space-between;
    }

    .masthead-top-row .masthead-right {
        display: flex;
    }

    .masthead__title-row {
        background-color: #001e5f;
    }

    .masthead__title-row .grid-container {
        align-items: flex-end;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .masthead-title .business-line {
        font-size: 1rem;
        letter-spacing: 0.07rem;
    }

    .masthead-title .title {
        font-size: 2rem;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .masthead__secondary {
        margin-bottom: auto;
    }

    .masthead__trigger-wrap {
        display: flex;
        flex-flow: row nowrap;
        margin-right: 0;
    }

    .masthead__trigger .fa {
        font-size: 1.5rem;
        margin-bottom: 0;
    }

    .masthead__trigger--search .fa {
        font-size: 1rem;
        margin-right: 0.5rem;
    }

    .masthead__trigger--search {
        background-color: #001e5f;
        box-shadow: 0 2px 0 0 #e8e8e8;
        color: #fff;
        flex-direction: row;
        margin-bottom: 2px;
        padding: 0.5rem;
    }

    .masthead__trigger--search span {
        display: none;
    }

    .masthead__trigger--search:focus,
    .masthead__trigger--search:hover {
        box-shadow: 0 2px 0 0 #fff;
        color: #fff;
    }

    .masthead--search-is-active .masthead__trigger--search:focus .fa,
    .masthead--search-is-active .masthead__trigger--search:hover .fa,
    .masthead__trigger--search:focus .fa,
    .masthead__trigger--search:hover .fa {
        color: #fff;
    }

    header.content-header .header-wrap {
        margin: -2rem 1rem 0;
        padding: 0;
    }

    header.content-header .header-wrap .header-content {
        padding: 3rem;
    }

    header.content-header .header-media img,
    header.content-header .header-media video {
        max-height: 35rem;
    }

    header.content-header.no_image .header-wrap {
        padding: 3rem 0;
    }

    header.content-header.full_image .header-wrap .header-content:before {
        height: 288.75px;
        top: -50px;
        width: 704.945px;
    }

    header.content-header.full_image {
        background-color: transparent;
        position: relative;
    }

    header.content-header.full_image .header-media:before {
        background-size: auto;
        height: 100%;
        left: -50vw;
        width: 150vw;
        z-index: -1;
    }

    header.content-header.full_image.pattern {
        background-color: transparent;
        margin-bottom: 8rem;
        max-height: 600px;
    }

    header.content-header.full_image.pattern .header-wrap {
        bottom: -8rem;
        margin-top: 0;
        position: absolute;
    }

    header.content-header.full_image.pattern:before {
        height: 500px;
    }

    header.content-header.full_image.pattern:before,
    header.content-header.right_image:before {
        background-size: auto;
        left: -50vw;
        width: 150vw;
        z-index: -1;
    }

    header.content-header.right_image.pattern .header-media img {
        max-height: 25rem;
        max-width: none;
    }

    header.content-header.right_image {
        display: grid;
        grid-template-columns: repeat(24, 1fr);
        grid-template-rows: 1fr;
    }

    header.content-header.right_image.grid-container {
        padding-bottom: 0;
    }

    header.content-header.right_image .header-wrap {
        align-self: center;
        grid-column: 1/13;
        grid-row: 1;
        margin: 0;
        padding: 2.5rem 0 1.5rem 2.5rem;
    }

    header.content-header.right_image .header-wrap h1 {
        font-weight: 700;
    }

    header.content-header.right_image .header-media {
        align-self: stretch;
        grid-column: 12/-1;
        grid-row: 1;
        height: 100%;
    }

    .category header.content-header .header-wrap,
    .single header.content-header .header-wrap,
    .tag header.content-header .header-wrap {
        margin: 0 auto;
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .category header.content-header .header__inner,
    .tag header.content-header .header__inner {
        margin: 2.5rem auto;
    }

    .sitewide-text-desktop {
        display: block;
        position: relative;
    }

    .sitewide-text-mobile {
        display: none;
    }

    .sitewide-text.grid-container {
        padding: 0.75rem 1.5rem !important;
    }

    .sitewide-text .accordion-item .accordion-header *,
    .sitewide-text .accordion-item .accordion-header:after,
    .sitewide-text .accordion-item .accordion-header:before {
        font-size: 1.5rem;
    }

    .sitewide-text .accordion-item .accordion-collapse .accordion-body {
        gap: 0.625rem;
    }

    .sitewide-text .accordion-item .accordion-collapse .accordion-body .alert-meta {
        font-size: 1rem;
    }

    .content-header--search {
        margin-bottom: 4rem;
        padding: 4rem 0;
    }

    .search__modal form.search-form button.search-form__submit {
        padding: 0 35px 0 55px;
    }

    .search__modal form.search-form button.search-form__submit:before {
        right: 110px;
    }

    .search__modal form.search-form button.search-form__submit span {
        display: block;
    }

    .site-footer .quickLinks-title {
        font-size: 2.5rem;
        letter-spacing: -0.05rem;
        margin-top: 3.5rem;
    }

    .site-footer .footer-component .footer-component-inner ul {
        align-items: center;
        flex-direction: row;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top {
        flex-direction: row;
        padding: 1.25rem 0;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top #footer-title,
    .site-footer .footer-component .footer-component-inner .footer-component-top .footer-title {
        margin-bottom: 0;
        text-align: left;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top #footer-social,
    .site-footer .footer-component .footer-component-inner .footer-component-top .footer-social {
        justify-content: flex-start;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li,
    .site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li {
        margin-left: 0.8rem;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-bottom {
        padding: 1.2rem 1.8rem;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks .quickLinks-title,
    .site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks .quickLinks-title {
        margin-bottom: 0;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-bottom #footer-quickLinks li,
    .site-footer .footer-component .footer-component-inner .footer-component-bottom .footer-quickLinks li {
        margin-bottom: 0;
        margin-right: 1.25rem;
    }

    .single .featuredCaptionWrapper {
        margin-bottom: 40px;
    }

    .post_content .break-container {
        margin-left: -30vw !important;
        margin-right: -30vw !important;
        max-width: 60vw !important;
    }

    .single-post .header__inner {
        margin-bottom: 1.5rem;
        margin-top: 2.5rem;
    }

    .nav__primary {
        padding: 0;
    }

    .nav-primary__list {
        flex-flow: row wrap;
    }

    .nav-primary__wrap-child--depth-0 {
        background: #fff;
        left: 0;
        min-width: 100%;
        position: absolute;
        right: 0;
        top: 100%;
    }

    .nav-primary__list-item--is-active_1 .nav-primary__wrap-child--depth-0 {
        border-bottom: 1px solid #e8e8e8;
        border-top: 1px solid #e8e8e8;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.2);
        padding: 2rem 0 0;
    }

    .nav-primary__list-item--depth-0:hover .nav-primary__action--depth-0 {
        background: #fff;
        color: #021bc3;
    }

    .nav-primary__list-item--depth-0:hover .nav-primary__wrap-child--depth-0 {
        background: #fff;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
        padding: 2rem 0 0;
        z-index: 1;
    }

    .nav-primary__list-item--depth-0:hover .nav-primary__wrap-child--depth-0 .nav-primary__list-child {
        margin-bottom: 2rem;
    }

    .nav-primary__list-item--depth-0:hover {
        background: #fff;
    }

    .nav-primary__list-item--depth-0:hover .nav-primary__trigger {
        color: #252525;
        transform: rotate(180deg);
    }

    .nav-primary__list-item--depth-0:hover .nav-primary__action--depth-0 .nav-primary__text {
        box-shadow: 0 2px 0 #021bc3;
    }

    .nav-primary__list-item--depth-0.nav-primary__list-item--is-active .nav-primary__action--depth-0 {
        background: #fff;
        color: #021bc3;
    }

    .nav-primary__list-item--depth-0.nav-primary__list-item--is-active .nav-primary__wrap-child--depth-0 {
        background: #fff;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
        padding: 2rem 0 0;
        z-index: 1;
    }

    .nav-primary__list-item--depth-0.nav-primary__list-item--is-active .nav-primary__wrap-child--depth-0 .nav-primary__list-child {
        margin-bottom: 2rem;
    }

    .nav-primary__list-item--depth-0.nav-primary__list-item--is-active {
        background: #fff;
    }

    body:not(.js-active) .nav-primary__list-item--depth-0:focus-within .nav-primary__action--depth-0 {
        background: #fff;
        color: #021bc3;
    }

    body:not(.js-active) .nav-primary__list-item--depth-0:focus-within .nav-primary__wrap-child--depth-0 {
        background: #fff;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        margin-bottom: 2rem;
        padding: 2rem 0 0;
        z-index: 1;
    }

    body:not(.js-active) .nav-primary__list-item--depth-0:focus-within .nav-primary__wrap-child--depth-0 .nav-primary__list-child {
        margin-bottom: 2rem;
    }

    body:not(.js-active) .nav-primary__list-item--depth-0:focus-within {
        background: #fff;
    }

    .nav-primary__list-child--depth-0 {
        display: flex;
        flex-flow: row wrap;
        margin: 0 auto;
        max-width: calc(1380px + 3.75rem);
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .nav-primary__list-child--depth-0:after {
        content: "";
        flex: auto;
    }

    .nav-primary__list-item--is-active_1 .nav-primary__list-child--depth-0 {
        margin-bottom: 2rem;
    }

    .nav-primary__list-child--depth-1 .nav-primary__action--depth-2 {
        color: #252525;
    }

    .nav-primary__list-child--depth-1 .nav-primary__list-item--depth-2 a {
        padding: 0;
    }

    .nav-primary__list-item.callout {
        margin-top: 0.25rem;
    }

    .nav-primary__list-item.callout .nav-primary__action {
        font-weight: 700;
    }

    .nav-primary__list-item.callout>.nav-primary__action {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
    }

    .nav-primary__list-item--depth-0.audience {
        background-color: #021bc3;
        margin-left: auto;
    }

    .nav-primary__list-item--depth-0.audience:hover .nav-primary__actions {
        background-color: #fff;
    }

    .nav-primary__list-item--depth-0.audience:hover .nav-primary__actions .nav-primary__action .nav-primary__text {
        box-shadow: 0 2px 0 #021bc3;
    }

    .nav-primary__list-item--depth-0.audience .nav-primary__wrap-child .nav-primary__list-child {
        padding: 0.5rem 1.25rem !important;
    }

    .nav-primary__list-item--depth-0.audience .nav-primary__wrap-child .nav-primary__list-child .nav-primary__list-item--depth-1:focus .nav-primary__text,
    .nav-primary__list-item--depth-0.audience .nav-primary__wrap-child .nav-primary__list-child .nav-primary__list-item--depth-1:hover .nav-primary__text {
        box-shadow: 0 2px 0 #021bc3;
        color: #021bc3;
    }

    .nav-primary__list-item--depth-0 .nav-primary__trigger {
        font-size: 1rem;
        margin-right: 0;
        padding: 0 0.625rem;
    }

    .nav-primary__list-item--depth-0 button.nav-primary__trigger {
        margin-right: 0.375rem;
    }

    .nav-primary__list-item--depth-0 {
        border-top: 0;
    }

    .nav-primary__list-item--depth-0:last-child {
        border-bottom: 0;
        margin-bottom: 0;
    }

    .nav-primary__action--depth-0 {
        padding: 0.5rem 1rem 0.75rem;
        width: auto;
    }

    button.nav-primary__action--depth-0 {
        cursor: auto;
        padding-right: 0.375rem;
    }

    .nav-primary__list-item--depth-1 {
        padding-bottom: 20px;
        padding-left: 1rem;
        padding-right: 1.875rem;
        width: 25%;
        z-index: 1;
    }

    .nav-primary__content-callout .nav-primary__list-item--depth-1 {
        display: inline-block;
        padding-left: 0;
    }

    .nav-primary__list-item--depth-1:last-child {
        border-right: none;
        padding-bottom: 0;
    }

    .inactive .nav-primary__action--depth-1 {
        color: #252525;
        display: inline-block;
        font-weight: 700;
        opacity: 1;
        padding: 0.5rem 0;
        width: auto;
    }

    .inactive .nav-primary__action--depth-1:focus,
    .inactive .nav-primary__action--depth-1:hover {
        color: #021bc3;
    }

    .mega-menu .nav-primary__action--depth-1:focus,
    .mega-menu .nav-primary__action--depth-1:hover,
    .nav-primary__action--depth-1,
    .nav-primary__action--depth-1:focus,
    .nav-primary__action--depth-1:hover {
        color: inherit;
    }

    .nav-primary__action--depth-2:focus,
    .nav-primary__action--depth-2:hover {
        box-shadow: 0 2px 0 #021bc3;
        color: #021bc3;
    }

    .nav-primary__action--depth-2 {
        padding: 0.25rem 0;
    }

    .nav-primary__content-callout {
        display: block;
    }

    .menu-item__message-wrap {
        border-right: 1px solid #f4f4f4;
        display: block;
        float: left;
        margin-left: 283px;
        max-width: 300px;
    }

    .menu-item__message {
        align-items: center;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    .message__content {
        max-width: 52.6875rem;
        order: 0;
    }

    .message__image-wrap {
        margin-bottom: 0;
        margin-left: 1.875rem;
        max-width: 20.625rem;
    }

    .masthead .nav-primary__list.drop-down .nav-primary__wrap-child li a span {
        color: #252525;
        display: inline-block;
        position: relative;
    }

    .masthead .nav-primary__list.drop-down .nav-primary__wrap-child li a:focus span,
    .masthead .nav-primary__list.drop-down .nav-primary__wrap-child li a:hover span {
        box-shadow: 0 2px 0 #021bc3;
        color: #021bc3;
    }

    #toggle-site-nav {
        display: none;
    }

    #site-navigation {
        bottom: auto;
        box-shadow: none;
        display: block;
        height: auto;
        opacity: 1;
        position: relative;
        right: auto;
        top: auto;
        transition: none;
    }

    #site-navigation .grid-container {
        height: auto;
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    #site-navigation .grid-container .site-nav__wrap {
        flex-flow: row nowrap;
        justify-content: space-between;
        margin: 0 -0.5rem 0 -1rem;
        overflow: visible;
        padding: 0;
    }

    .secondary-mobile {
        background-color: #001e5f;
        display: none;
    }

    .secondary-mobile .nav__secondary .nav-secondary__action {
        margin-right: 0.75rem;
    }

    .masthead__secondary-desktop,
    .secondary-mobile .search__form button.search-form__submit span {
        display: block;
    }

    .nav__secondary {
        display: block;
        height: 100%;
        margin: 0 -1.875rem;
        padding: 0 1.875rem;
        width: auto;
    }

    .nav-secondary__list {
        display: flex;
        flex-flow: row nowrap;
        gap: 1rem;
        height: 100%;
        overflow-x: clip;
    }

    .nav-secondary__list-item {
        display: inline-block;
        margin: 0;
        white-space: nowrap;
    }

    .page-nav.page-nav__mobile--hidden {
        display: block;
    }

    .page-nav {
        align-self: flex-start;
        margin-bottom: 60px;
        padding-right: 1.875rem;
        position: -webkit-sticky;
        position: sticky;
        top: 50px;
    }

    .page-nav__mobile-toggle,
    .page-nav__mobile-wrap .mobile_menu {
        display: none;
    }

    .page-nav__mobile-wrap .desktop_menu {
        display: block;
    }

    .sidebar {
        padding-top: 4rem;
    }

    .nav-section__list-item--depth-0 {
        padding: 0;
    }

    .parent_sidebar .nav-section-menu .nav-section__list .nav-section__action--depth-0:hover,
    .parent_sidebar .nav-section-menu .site-nav__list .nav-section__action--depth-0:hover,
    .parent_sidebar .nav__page-links .nav-section__list .nav-section__action--depth-0:hover,
    .parent_sidebar .nav__page-links .site-nav__list .nav-section__action--depth-0:hover {
        color: #021bc3;
    }

    .module--type-accordion .module__title {
        margin-bottom: 2rem;
    }

    .module--layout-left .accordion-module__inner,
    .module--layout-right .accordion-module__inner {
        display: flex;
        flex-flow: row nowrap;
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .module--layout-left .accordion-module__description,
    .module--layout-right .accordion-module__description {
        flex: 0 0 50%;
        margin-bottom: 0;
        padding: 0 1.5rem;
        width: 50%;
    }

    .module--layout-right .accordion-module__description {
        order: 2;
    }

    .module--layout-left .accordion-module__loop,
    .module--layout-right .accordion-module__loop {
        flex: 0 0 50%;
        padding: 0 1.5rem;
        width: 50%;
    }

    .module--layout-layout_three .card-grid-module__header {
        display: flex;
        flex-flow: row nowrap;
    }

    .module--layout-layout_three .card-grid-module__header .module__title {
        flex: 1 1 50%;
        margin-right: 2rem;
        max-width: 50%;
        width: 50%;
    }

    .module--layout-layout_four .card-grid-module__description,
    .module--layout-layout_three .card-grid-module__description {
        flex: 1 1 50%;
        max-width: 50%;
        width: 50%;
    }

    .card-grid-module__loop {
        display: flex;
        flex-flow: row wrap;
        justify-content: space-between;
    }

    .card-grid-module__card {
        margin-bottom: 1rem;
    }

    .card-grid-module__card,
    .module--layout-layout_three .card-grid-module__card {
        display: inline-flex;
        flex-direction: column;
    }

    .module.module--type-card_grid.module--layout-2 .card-grid-module__loop {
        grid-template-columns: repeat(auto-fill, 48%);
    }

    .module.module--type-card_grid.module--layout-2 .card-grid-module__card:nth-of-type(2n) {
        margin: 0 0 1rem 0.5rem;
    }

    .image_left,
    .image_left a {
        flex-direction: row;
    }

    .image_left .card_content__wrapper {
        height: 100%;
        padding: 30px 50px;
        width: 50%;
    }

    .image_left .card_image {
        width: 50%;
    }

    .image_left.image_thumbnail .card_content__wrapper {
        width: 70%;
    }

    .image_left.image_thumbnail .card_image {
        width: 30%;
    }

    .image_left.image_icon .card_content__wrapper {
        width: 70%;
    }

    .image_left.image_icon .card_image {
        width: 30%;
    }

    .image_right,
    .image_right a {
        flex-direction: row-reverse;
    }

    .image_right .card_content__wrapper {
        height: 100%;
        padding: 30px 50px;
        width: 50%;
    }

    .image_right .card_image {
        width: 50%;
    }

    .image_right.image_thumbnail .card_content__wrapper {
        width: 70%;
    }

    .image_right.image_thumbnail .card_image {
        width: 30%;
    }

    .image_right.image_icon .card_content__wrapper {
        width: 100%;
    }

    .image_right.image_icon .card_image {
        width: 30%;
    }

    .module--type-card_grid .card-grid-module__container {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.icon .card-grid-image {
        aspect-ratio: 3/2;
    }

    .module--type-card_grid_new .card-grid .card-grid-item .card-grid-image {
        min-height: 220px;
    }

    .module--type-card_grid_new .card-grid .card-grid-item .card-grid-content {
        padding: 2rem 2rem 3rem;
    }

    .module--type-card_grid_new .card-grid .card-grid-item .card-grid-item-arrow {
        font-size: 1.125rem;
        right: 2rem;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.full {
        flex-direction: row;
        margin-bottom: 1rem;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.full.image.small .card-grid-image {
        width: 20%;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.full.image.small .card-grid-content {
        width: 80%;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.full.image .card-grid-content,
    .module--type-card_grid_new .card-grid .card-grid-item.full.image .card-grid-image {
        width: 50%;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.full.image .card-grid-content {
        padding: 3rem;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.half {
        grid-column: span 6;
        margin-bottom: 1rem;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.quarter,
    .module--type-card_grid_new .card-grid .card-grid-item.third {
        grid-column: span 6;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.image-above .card-grid-image,
    .module--type-card_grid_new .card-grid .card-grid-item.image-left .card-grid-image {
        order: 1;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.image-above .card-grid-content,
    .module--type-card_grid_new .card-grid .card-grid-item.image-below .card-grid-image,
    .module--type-card_grid_new .card-grid .card-grid-item.image-left .card-grid-content,
    .module--type-card_grid_new .card-grid .card-grid-item.image-right .card-grid-image {
        order: 2;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.image-below .card-grid-content,
    .module--type-card_grid_new .card-grid .card-grid-item.image-right .card-grid-content {
        order: 1;
    }

    .module--layout_inline .interstitial-module__container {
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
    }

    .module--layout_inline .interstitial-module__header {
        flex: 1 1 25.375rem;
        margin-right: 1.875rem;
        width: 25.375rem;
    }

    .module--layout_inline .interstitial-module__content {
        flex: 1 1 39rem;
        margin-top: 0;
        width: 39rem;
    }

    .module--layout_stacked .interstitial-module__cta {
        margin-top: 1rem;
    }

    .module--layout_inline .interstitial-module__cta {
        flex: 0 0 11.75rem;
        margin-left: 1.875rem;
        margin-top: 0;
        width: 11.75rem;
    }

    .module--type-media_text {
        padding: 0;
    }

    .media-text-module__media {
        padding-bottom: 5rem;
        padding-right: 1rem;
        padding-top: 5rem;
    }

    .module--layout_right .media-text-module__media {
        order: 2;
        padding-left: 1rem;
        padding-right: 0;
    }

    .media-text-module__text {
        padding-bottom: 0;
        padding-left: 1rem;
        padding-top: 0;
    }

    .module--layout_right .media-text-module__text {
        padding-left: 0;
        padding-right: 1rem;
    }

    .media-text-module__text-inner {
        background-color: #f4f4f4;
        min-height: 470px;
        padding-bottom: 5rem;
        padding-top: 5rem;
    }

    .module-media {
        padding: 0;
    }

    .module-media .media-grid {
        display: grid;
        grid-template-columns: repeat(24, 1fr);
        grid-template-rows: 1fr;
    }

    .module-media .media-grid-embed,
    .module-media .media-grid-image,
    .module-media .media-grid-video {
        align-self: center;
        grid-column: 1/13;
        grid-row: 1;
        padding: 0;
    }

    .module-media .media-grid-embed img,
    .module-media .media-grid-image img,
    .module-media .media-grid-video img {
        margin: 3rem 0;
        min-height: 540px;
        object-fit: cover;
    }

    .module-media .media-grid-embed,
    .module-media .media-grid-video {
        align-self: center;
        grid-column: 1/13;
        grid-row: 1;
        padding: 0;
    }

    .module-media .media-grid-embed {
        margin: 3rem 0;
    }

    .module-media .media-grid-content {
        grid-column: 12/-1;
        grid-row: 1;
        margin-top: 0;
        padding: 3rem 4rem;
    }

    .module-media .media-grid-content-overline span {
        font-size: 1.25rem;
    }

    .module-media .media-grid-left .media-grid-embed:after,
    .module-media .media-grid-left .media-grid-image:after,
    .module-media .media-grid-left .media-grid-video:after {
        display: none;
    }

    .module-media .media-grid-right .media-grid-image {
        grid-column: 13/-1;
    }

    .module-media .media-grid-right .media-grid-image:after {
        display: none;
    }

    .module-media .media-grid-right .media-grid-embed,
    .module-media .media-grid-right .media-grid-video {
        grid-column: 13/-1;
    }

    .module-media .media-grid-right .media-grid-embed:after,
    .module-media .media-grid-right .media-grid-video:after {
        display: none;
    }

    .module-media .media-grid-right .media-grid-content {
        grid-column: 1/14;
    }

    .module-media .media-grid-above .media-grid-embed,
    .module-media .media-grid-above .media-grid-image,
    .module-media .media-grid-above .media-grid-video {
        min-width: 100%;
        padding: 0 7rem;
    }

    .module-media .media-grid-above .media-grid-embed:after,
    .module-media .media-grid-above .media-grid-image:after,
    .module-media .media-grid-above .media-grid-video:after {
        bottom: 0;
        content: "";
        height: 50%;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: -1;
    }

    .module-media .media-grid-above .media-grid-embed img,
    .module-media .media-grid-above .media-grid-image img,
    .module-media .media-grid-above .media-grid-video img {
        max-height: 600px;
        width: 100%;
    }

    .module-media .media-grid-above .media-grid-embed,
    .module-media .media-grid-above .media-grid-video {
        padding: 0 7rem;
    }

    .module-media .media-grid-above .media-grid-content {
        margin-top: 0;
        padding: 2.5rem 7rem;
    }

    .module-media .media-grid-none .media-grid-content {
        padding: 6rem 6.25rem;
    }

    .module-media.animation-true .media-grid.animated {
        animation: none;
    }

    .module-media.animation-true .media-grid-left .media-grid-embed-container,
    .module-media.animation-true .media-grid-left .media-grid-image,
    .module-media.animation-true .media-grid-left .media-grid-video {
        transform: translateX(0);
    }

    .module-media.animation-true .media-grid-left .media-grid-embed-container.animated,
    .module-media.animation-true .media-grid-left .media-grid-image.animated,
    .module-media.animation-true .media-grid-left .media-grid-video.animated {
        animation: slide-in-left 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    .module-media.animation-true .media-grid-left .media-grid-content {
        transform: translateX(100%);
    }

    .module-media.animation-true .media-grid-left .media-grid-content.animated {
        animation: slide-in-right 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    .module-media.animation-true .media-grid-right .media-grid-embed-container,
    .module-media.animation-true .media-grid-right .media-grid-image,
    .module-media.animation-true .media-grid-right .media-grid-video {
        transform: translateX(100%);
    }

    .module-media.animation-true .media-grid-right .media-grid-embed-container.animated,
    .module-media.animation-true .media-grid-right .media-grid-image.animated,
    .module-media.animation-true .media-grid-right .media-grid-video.animated {
        animation: slide-in-right 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    .module-media.animation-true .media-grid-right .media-grid-content {
        transform: translateX(0);
    }

    .module-media.animation-true .media-grid-right .media-grid-content.animated {
        animation: slide-in-left 1.2s cubic-bezier(0.39, 0.575, 0.565, 1) forwards;
    }

    .adjacent-above,
    .adjacent-below {
        overflow: visible !important;
        position: relative;
    }

    .adjacent-above:after,
    .adjacent-below:after {
        bottom: -3rem;
        content: "";
        height: 3rem;
        left: 0;
        position: absolute;
        width: 100%;
        z-index: -1;
    }

    .adjacent-above:before,
    .adjacent-below:before {
        content: "";
        height: 3rem;
        left: 0;
        position: absolute;
        top: -3rem;
        width: 100%;
        z-index: -1;
    }

    .adjacent-above.white:after,
    .adjacent-above.white:before,
    .adjacent-below.white:after,
    .adjacent-below.white:before {
        background-color: #fff;
    }

    .adjacent-above.grey:after,
    .adjacent-above.grey:before,
    .adjacent-below.grey:after,
    .adjacent-below.grey:before {
        background-color: #f4f4f4;
    }

    .adjacent-above.navy:after,
    .adjacent-above.navy:before,
    .adjacent-below.navy:after,
    .adjacent-below.navy:before {
        background-color: #001e5f;
    }

    .adjacent-above.yellow:after,
    .adjacent-above.yellow:before,
    .adjacent-below.yellow:after,
    .adjacent-below.yellow:before {
        background-color: #ffd82b;
    }

    .adjacent-above.charcoal:after,
    .adjacent-above.charcoal:before,
    .adjacent-below.charcoal:after,
    .adjacent-below.charcoal:before {
        background-color: #252525;
    }

    .adjacent-above.bg-white:after,
    .adjacent-above.bg-white:before,
    .adjacent-below.bg-white:after,
    .adjacent-below.bg-white:before {
        background-color: #fff;
    }

    .adjacent-above.bg-gray:after,
    .adjacent-above.bg-gray:before,
    .adjacent-below.bg-gray:after,
    .adjacent-below.bg-gray:before {
        background-color: #f4f4f4;
    }

    .adjacent-above.bg-navy:after,
    .adjacent-above.bg-navy:before,
    .adjacent-below.bg-navy:after,
    .adjacent-below.bg-navy:before {
        background-color: #001e5f;
    }

    .adjacent-above.bg-yellow:after,
    .adjacent-above.bg-yellow:before,
    .adjacent-below.bg-yellow:after,
    .adjacent-below.bg-yellow:before {
        background-color: #ffd82b;
    }

    .adjacent-above.bg-charcoal:after,
    .adjacent-above.bg-charcoal:before,
    .adjacent-below.bg-charcoal:after,
    .adjacent-below.bg-charcoal:before {
        background-color: #252525;
    }

    .adjacent-above.nothing-above:before,
    .adjacent-below.nothing-below:after {
        display: none;
    }

    .nav-module--layout_cards .nav-module__list-item,
    .nav-module--layout_list .nav-module__list-item--depth-0 {
        flex: 0 0 33%;
        max-width: 33%;
        width: 33%;
    }

    .nav-module--layout_micronav .nav-module__list {
        flex-flow: row nowrap;
        margin: 0 1.875rem;
    }

    .nav-module--layout_micronav .nav-module__list-item {
        flex: auto;
        margin-bottom: 0;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 100%;
    }

    .nav-module--layout_micronav .nav-module__list-item:first-child {
        padding-left: 0;
    }

    .nav-module--layout_micronav .nav-module__action {
        padding-bottom: 3rem;
    }

    .module--type-navigation_new .grid-container {
        padding-right: 1.5rem;
    }

    .module--type-navigation_new .nav-header {
        padding-right: 0;
    }

    .module--type-navigation_new .nav-header-title:after {
        border-bottom: 1px dashed #252525;
        content: "";
        flex: 1;
        margin-left: 1rem;
    }

    .module--type-navigation_new .nav-header-title * {
        font-size: 2rem;
        letter-spacing: -0.64px;
    }

    .module--type-navigation_new .nav-header .swiper-nav .swiper-button-prev {
        right: 5px;
    }

    .module--type-navigation_new .nav-header .swiper-nav .swiper-button-next {
        margin-left: 0;
    }

    .module--type-navigation_new .swiper {
        display: flex;
        flex: 1;
        flex-direction: column;
        margin-left: 0;
        margin-top: 0;
    }

    .module--type-query.cards.one .grid {
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }

    .module--type-query.cards.two .grid {
        grid-template-columns: repeat(auto-fill, minmax(49%, 1fr));
    }

    .module--type-query.cards.three .grid {
        grid-template-columns: repeat(auto-fill, minmax(32%, 1fr));
    }

    .module--type-query.cards.four .grid {
        grid-template-columns: repeat(auto-fill, minmax(23%, 1fr));
    }

    .module--type-query.scroll .scroll-container .scroll-wrapper {
        display: flex;
        flex-direction: row;
        position: relative;
    }

    .module--type-query.scroll .scroll-container .scroll-wrapper .query-header {
        margin-right: 2.5rem;
        width: 20.5%;
    }

    .module--type-query.scroll .scroll-container .scroll-wrapper .swiper {
        display: flex;
        flex: 1;
        flex-direction: column;
        margin-left: 0;
        margin-top: 0;
    }

    .module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav {
        margin-top: 2.5rem;
    }

    .module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-prev {
        right: 5px;
    }

    .module--type-query.scroll .scroll-container .scroll-wrapper .swiper .swiper-nav .swiper-button-next {
        margin-left: 0;
    }

    .module--type-query .featured-post {
        display: grid;
        grid-template-columns: repeat(24, 1fr);
    }

    .module--type-query .featured-post-content,
    .module--type-query .featured-post-image {
        grid-row: 1/2;
    }

    .module--type-query .featured-post-image {
        grid-column: 1/18;
        min-height: 580px;
    }

    .module--type-query .featured-post-content {
        align-self: center;
        grid-column: 16/-1;
        margin: 0 auto;
        padding: 1.875rem 4rem 1.875rem 1.875rem;
    }

    .module--type-query .featured-post-content:after,
    .module--type-query .query-card-content:after,
    .module--type-query .query-list-content:after {
        font-size: 1.125rem;
        right: 2rem;
    }

    .module--type-query .query-list {
        flex-direction: row;
        width: 85%;
    }

    .module--type-query .query-list-image {
        height: 240px;
        min-width: 255px;
    }

    .module--two-column .query_text-module__query-column {
        margin-right: 1.5rem;
    }

    .query_text-module__text-column {
        margin-left: 1.5rem;
        margin-top: 0;
    }

    .page .module--type-query_text .text-module__header {
        padding: 0;
    }

    .module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card,
    .module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card {
        align-items: center;
        display: grid;
        grid-template-columns: repeat(24, 1fr);
        grid-template-rows: 1fr;
    }

    .module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-image,
    .module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-image {
        grid-column: 1/13;
        grid-row: 1;
    }

    .module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-image img,
    .module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-image img {
        object-fit: cover;
    }

    .module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-link,
    .module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-link {
        grid-column: 13/-1;
        grid-row: 1;
        height: 100%;
    }

    .module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-link-wrapper-content,
    .module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-link-wrapper-content {
        padding: 1.875rem 3.75rem 1.875rem 1.875rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-link-wrapper-content-title,
    .module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-link-wrapper-content-title {
        font-size: 2.5rem;
        letter-spacing: -0.025rem;
        line-height: 2.75rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-one .grid .rss-card-link-wrapper-content-description,
    .module--type-rss_feed.cards.rss-card-columns-one .grid .rss-card-link-wrapper-content-description {
        font-size: 1.125rem;
        line-height: 2rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid .rss-card,
    .module--type-rss_feed.cards.rss-card-columns-two .grid .rss-card {
        max-width: 45%;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid .rss-card-link-wrapper-content-title,
    .module--type-rss_feed.cards.rss-card-columns-two .grid .rss-card-link-wrapper-content-title {
        font-size: 1.75rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid .rss-card-link-wrapper-content-description,
    .module--type-rss_feed.cards.rss-card-columns-two .grid .rss-card-link-wrapper-content-description {
        font-size: 1.125rem;
        line-height: 2rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link,
    .module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content,
    .module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content {
        padding: 1.875rem 3.75rem 1.875rem 1.875rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-one,
    .module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-one {
        max-width: 630px;
    }

    .module--type-rss_feed.Cards.rss-card-columns-three .grid,
    .module--type-rss_feed.cards.rss-card-columns-three .grid {
        grid-template-columns: repeat(auto-fill, minmax(31%, 1fr));
    }

    .module--type-rss_feed.Cards.rss-card-columns-three .grid .rss-card-link-wrapper-content-title,
    .module--type-rss_feed.cards.rss-card-columns-three .grid .rss-card-link-wrapper-content-title {
        line-height: 1.3;
    }

    .module--type-rss_feed.Cards.rss-card-columns-three .grid .rss-card-link-wrapper-content-description,
    .module--type-rss_feed.cards.rss-card-columns-three .grid .rss-card-link-wrapper-content-description {
        font-size: 1.125rem;
        line-height: 2rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link,
    .module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link {
        margin-bottom: 2rem;
        margin-top: 2rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content,
    .module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content {
        padding: 1.875rem 3.75rem 1.875rem 1.875rem;
    }

    .module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide,
    .module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide:first-of-type,
    .module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide,
    .module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide:first-of-type {
        width: 340px;
    }

    .module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-title h2,
    .module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-title h2 {
        font-size: 3rem;
        line-height: 3.125rem;
    }

    .module--type-rss_feed.Scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-content p,
    .module--type-rss_feed.scroll .scroll-container .swiper .swiper-wrapper .swiper-slide .rss-header-content p {
        font-size: 1.125rem;
        line-height: 2rem;
    }

    .module--type-social .landing-social {
        padding: 4rem 0 5rem;
    }

    .module--type-social .landing-social .social-module__content p {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .module--type-social .landing-social .social-module__content h4 {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .module--type-social .landing-social .social-container .sticky-header__list .social-label {
        bottom: -30px;
        font-size: 16px;
    }

    .module--type-social .landing-social .social-container .social-header {
        font-size: 1.5rem;
    }

    .module--type-social .landing-social .social-container .social-header:after,
    .module--type-social .landing-social .social-container .social-header:before {
        width: 330px;
    }

    #toc-sticky .title {
        align-items: center;
        border: 1px solid #e8e8e8;
        color: #252525;
        display: flex;
        font-family: inter-variable, sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        padding: 0.7rem 1rem;
        width: 50%;
    }

    #toc-sticky .dropdown {
        flex-grow: 1;
        height: auto;
        width: 50%;
    }

    #toc-sticky .dropdown-toggle {
        border-left: none;
        margin-bottom: 0;
        padding: 1rem 1.25rem;
    }

    #toc-sticky .dropdown-menu.show {
        border-top: none;
        margin-left: -1px !important;
        margin-top: -3px !important;
    }

    #toc-sticky .dropdown-menu {
        border: 1px solid #e8e8e8;
        border-radius: 0;
        border-top: 0;
        padding: 0 4rem 0 1.25rem;
        width: calc(100% + 1px);
    }

    #toc-sticky .dropdown li a {
        font-size: 1.25rem;
        line-height: 1.5;
        padding: 0.75rem 0;
    }

    .module--type-testimonial .testimonial.link .testimonial-content .attribution {
        margin-bottom: 0;
    }

    .module--type-testimonial .testimonial-content .quote-before {
        top: -40px;
        width: 91px;
    }

    .module--type-testimonial .testimonial-content .testimonial-link {
        left: 2.625rem;
    }

    .module--type-testimonial .testimonial-content .pull-quote p {
        font-size: 1.3rem;
        line-height: 1.9rem;
    }

    .module--type-testimonial .testimonial-image img {
        max-height: 440px;
    }

    .module--type-testimonial.cards.one .testimonial {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-template-rows: 1fr;
        margin-bottom: 0;
    }

    .module--type-testimonial.cards.one .testimonial.right .testimonial-content {
        grid-column: 6/-1;
    }

    .module--type-testimonial.cards.one .testimonial.right .testimonial-content .quote-before {
        left: 4.5rem;
        top: -3.5rem;
    }

    .module--type-testimonial.cards.one .testimonial.right .testimonial-image {
        grid-column: 1/7;
    }

    .module--type-testimonial.cards.one .testimonial-content {
        grid-column: 1/8;
        grid-row: 1;
        margin: 0 1.25rem 0 3rem;
        padding: 2.5rem;
    }

    .module--type-testimonial.cards.one .testimonial-content .testimonial-link {
        left: 2.5rem;
    }

    .module--type-testimonial.cards.one .testimonial-image {
        grid-column: 7/-1;
        grid-row: 1;
    }

    .module--type-testimonial.cards.three .grid,
    .module--type-testimonial.cards.two .grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .module--type-testimonial.cards.three .grid .testimonial,
    .module--type-testimonial.cards.two .grid .testimonial {
        height: 100%;
        margin-bottom: 0;
    }

    .module--type-testimonial.cards.three .grid .testimonial-content .testimonial-link,
    .module--type-testimonial.cards.two .grid .testimonial-content .testimonial-link {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
    }

    .module--type-testimonial.cards.three .grid {
        grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
    }

    .module--type-testimonial.cards.three .grid .testimonial-content {
        left: 0;
    }

    .module--type-testimonial.scroll .scroll-container .testimonial-content {
        padding: 2rem 1.5rem 3.625rem 2.625rem;
    }

    .module--type-testimonial.scroll .scroll-container .testimonial-content .quote-before {
        top: 30px;
    }

    .module--type-testimonial.scroll .scroll-container .testimonial-header {
        margin-right: 1rem;
    }

    .module--type-testimonial.scroll .scroll-container .swiper {
        display: flex;
        flex: 1;
        flex-direction: column;
        margin-left: 0;
        margin-top: 0;
    }

    .module--type-testimonial.scroll .scroll-container .swiper-slide {
        width: 360px;
    }

    .module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-prev {
        right: 5px;
    }

    .module--type-testimonial.scroll .scroll-container .swiper .swiper-nav .swiper-button-next {
        margin-left: 0;
    }

    .module--type-directory .directory-grid-module__loop {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .module--type-directory .directory-grid-module__card {
        display: inline-flex;
        flex: 0 0 50%;
        flex-direction: column;
        margin-bottom: 1rem;
        max-width: 50%;
        width: 50%;
    }

    .module--type-directory_new .directory-grid-module__loop {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .module--type-directory_new .directory-grid-module__card.lead~.lead {
        margin-top: 2rem;
    }

    .module.module--type-directory_new.module--layout-4 .directory-group .feature {
        max-width: 400px;
    }

    .module--type-tabs .vertical-mobile {
        display: none;
    }

    .module--type-tabs .vertical-desktop {
        display: flex;
    }

    .module--type-tabs .notch {
        width: 73%;
    }

    .module--type-tabs .tabs-module-container .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header *,
    .module--type-tabs .tabs-module-sidebar .tabs-module-title-wrapper .tabs-module-title-area .tabs-module-header * {
        font-size: 2.75rem;
        letter-spacing: -0.05rem;
    }

    .module--type-tabs .swiper-nav .swiper-button-next {
        margin-left: 0;
    }

    .module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-tab-title *,
    .module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-tab-title * {
        font-size: 2rem;
    }

    .module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-tab-text,
    .module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-tab-text {
        padding: 2rem 0;
        width: 50%;
    }

    .module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-tab-text p,
    .module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-tab-text p {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-content-tab-image,
    .module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-content-tab-image {
        width: 50%;
    }

    .module--type-tabs .tabs-module-content-tab {
        flex-flow: row;
        padding-bottom: 0;
    }

    .module--type-tabs .tabs-module-content-tab.image-left {
        flex-direction: row-reverse;
    }

    .module--type-tabs .tabs-module-content-tab .tabs-module-tab-text {
        order: 1;
    }

    .module--type-tabs .tabs-module-content-tab .tabs-module-content-tab-image {
        order: 2;
    }

    .module--type-tabs.tabs-vertical .tabs-module-wrapper .tabs-module-sidebar {
        width: 27%;
    }

    .module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper {
        margin-top: 1rem;
    }

    .module--type-tabs.tabs-horizontal .tabs-module-container .swiper .swiper-wrapper .swiper-slide .tabs-module-content {
        padding: 2.5rem 0;
    }
}

@media screen and (min-width: 40em) {
    .medium-text-left {
        text-align: left;
    }

    .medium-text-right {
        text-align: right;
    }

    .medium-text-center {
        text-align: center;
    }

    .medium-text-justify {
        text-align: justify;
    }

    .grid-x>.medium-1,
    .grid-x>.medium-10,
    .grid-x>.medium-11,
    .grid-x>.medium-12,
    .grid-x>.medium-2,
    .grid-x>.medium-3,
    .grid-x>.medium-4,
    .grid-x>.medium-5,
    .grid-x>.medium-6,
    .grid-x>.medium-7,
    .grid-x>.medium-8,
    .grid-x>.medium-9,
    .grid-x>.medium-full,
    .grid-x>.medium-shrink {
        flex-basis: auto;
    }

    .grid-x>.medium-auto {
        flex: 1 1 0;
        width: auto;
    }

    .grid-x>.medium-1,
    .grid-x>.medium-10,
    .grid-x>.medium-11,
    .grid-x>.medium-12,
    .grid-x>.medium-2,
    .grid-x>.medium-3,
    .grid-x>.medium-4,
    .grid-x>.medium-5,
    .grid-x>.medium-6,
    .grid-x>.medium-7,
    .grid-x>.medium-8,
    .grid-x>.medium-9,
    .grid-x>.medium-shrink {
        flex: 0 0 auto;
    }

    .grid-x>.medium-shrink {
        width: auto;
    }

    .grid-x>.medium-1 {
        width: 8.3333333333%;
    }

    .grid-x>.medium-2 {
        width: 16.6666666667%;
    }

    .grid-x>.medium-3 {
        width: 25%;
    }

    .grid-x>.medium-4 {
        width: 33.3333333333%;
    }

    .grid-x>.medium-5 {
        width: 41.6666666667%;
    }

    .grid-x>.medium-6 {
        width: 50%;
    }

    .grid-x>.medium-7 {
        width: 58.3333333333%;
    }

    .grid-x>.medium-8 {
        width: 66.6666666667%;
    }

    .grid-x>.medium-9 {
        width: 75%;
    }

    .grid-x>.medium-10 {
        width: 83.3333333333%;
    }

    .grid-x>.medium-11 {
        width: 91.6666666667%;
    }

    .grid-x>.medium-12 {
        width: 100%;
    }

    .grid-margin-x>.medium-auto,
    .grid-margin-x>.medium-shrink {
        width: auto;
    }

    .grid-margin-x>.medium-1 {
        width: calc(8.33333% - 1.5rem);
    }

    .grid-margin-x>.medium-2 {
        width: calc(16.66667% - 1.5rem);
    }

    .grid-margin-x>.medium-3 {
        width: calc(25% - 1.5rem);
    }

    .grid-margin-x>.medium-4 {
        width: calc(33.33333% - 1.5rem);
    }

    .grid-margin-x>.medium-5 {
        width: calc(41.66667% - 1.5rem);
    }

    .grid-margin-x>.medium-6 {
        width: calc(50% - 1.5rem);
    }

    .grid-margin-x>.medium-7 {
        width: calc(58.33333% - 1.5rem);
    }

    .grid-margin-x>.medium-8 {
        width: calc(66.66667% - 1.5rem);
    }

    .grid-margin-x>.medium-9 {
        width: calc(75% - 1.5rem);
    }

    .grid-margin-x>.medium-10 {
        width: calc(83.33333% - 1.5rem);
    }

    .grid-margin-x>.medium-11 {
        width: calc(91.66667% - 1.5rem);
    }

    .grid-margin-x>.medium-12 {
        width: calc(100% - 1.5rem);
    }

    .medium-up-1>.cell {
        width: 100%;
    }

    .medium-up-2>.cell {
        width: 50%;
    }

    .medium-up-3>.cell {
        width: 33.3333333333%;
    }

    .medium-up-4>.cell {
        width: 25%;
    }

    .medium-up-5>.cell {
        width: 20%;
    }

    .medium-up-6>.cell {
        width: 16.6666666667%;
    }

    .medium-up-7>.cell {
        width: 14.2857142857%;
    }

    .medium-up-8>.cell {
        width: 12.5%;
    }

    .grid-margin-x.medium-up-1>.cell {
        width: calc(100% - 1.5rem);
    }

    .grid-margin-x.medium-up-2>.cell {
        width: calc(50% - 1.5rem);
    }

    .grid-margin-x.medium-up-3>.cell {
        width: calc(33.33333% - 1.5rem);
    }

    .grid-margin-x.medium-up-4>.cell {
        width: calc(25% - 1.5rem);
    }

    .grid-margin-x.medium-up-5>.cell {
        width: calc(20% - 1.5rem);
    }

    .grid-margin-x.medium-up-6>.cell {
        width: calc(16.66667% - 1.5rem);
    }

    .grid-margin-x.medium-up-7>.cell {
        width: calc(14.28571% - 1.5rem);
    }

    .grid-margin-x.medium-up-8>.cell {
        width: calc(12.5% - 1.5rem);
    }

    .small-margin-collapse>.medium-1 {
        width: 8.3333333333%;
    }

    .small-margin-collapse>.medium-2 {
        width: 16.6666666667%;
    }

    .small-margin-collapse>.medium-3 {
        width: 25%;
    }

    .small-margin-collapse>.medium-4 {
        width: 33.3333333333%;
    }

    .small-margin-collapse>.medium-5 {
        width: 41.6666666667%;
    }

    .small-margin-collapse>.medium-6 {
        width: 50%;
    }

    .small-margin-collapse>.medium-7 {
        width: 58.3333333333%;
    }

    .small-margin-collapse>.medium-8 {
        width: 66.6666666667%;
    }

    .small-margin-collapse>.medium-9 {
        width: 75%;
    }

    .small-margin-collapse>.medium-10 {
        width: 83.3333333333%;
    }

    .small-margin-collapse>.medium-11 {
        width: 91.6666666667%;
    }

    .small-margin-collapse>.medium-12 {
        width: 100%;
    }

    .medium-margin-collapse,
    .medium-margin-collapse>.cell {
        margin-left: 0;
        margin-right: 0;
    }

    .medium-margin-collapse>.small-1 {
        width: 8.3333333333%;
    }

    .medium-margin-collapse>.small-2 {
        width: 16.6666666667%;
    }

    .medium-margin-collapse>.small-3 {
        width: 25%;
    }

    .medium-margin-collapse>.small-4 {
        width: 33.3333333333%;
    }

    .medium-margin-collapse>.small-5 {
        width: 41.6666666667%;
    }

    .medium-margin-collapse>.small-6 {
        width: 50%;
    }

    .medium-margin-collapse>.small-7 {
        width: 58.3333333333%;
    }

    .medium-margin-collapse>.small-8 {
        width: 66.6666666667%;
    }

    .medium-margin-collapse>.small-9 {
        width: 75%;
    }

    .medium-margin-collapse>.small-10 {
        width: 83.3333333333%;
    }

    .medium-margin-collapse>.small-11 {
        width: 91.6666666667%;
    }

    .medium-margin-collapse>.small-12 {
        width: 100%;
    }

    .medium-margin-collapse>.medium-1 {
        width: 8.3333333333%;
    }

    .medium-margin-collapse>.medium-2 {
        width: 16.6666666667%;
    }

    .medium-margin-collapse>.medium-3 {
        width: 25%;
    }

    .medium-margin-collapse>.medium-4 {
        width: 33.3333333333%;
    }

    .medium-margin-collapse>.medium-5 {
        width: 41.6666666667%;
    }

    .medium-margin-collapse>.medium-6 {
        width: 50%;
    }

    .medium-margin-collapse>.medium-7 {
        width: 58.3333333333%;
    }

    .medium-margin-collapse>.medium-8 {
        width: 66.6666666667%;
    }

    .medium-margin-collapse>.medium-9 {
        width: 75%;
    }

    .medium-margin-collapse>.medium-10 {
        width: 83.3333333333%;
    }

    .medium-margin-collapse>.medium-11 {
        width: 91.6666666667%;
    }

    .medium-margin-collapse>.medium-12 {
        width: 100%;
    }

    .medium-padding-collapse {
        margin-left: 0;
        margin-right: 0;
    }

    .medium-padding-collapse>.cell {
        padding-left: 0;
        padding-right: 0;
    }

    .medium-offset-0 {
        margin-left: 0;
    }

    .grid-margin-x>.medium-offset-0 {
        margin-left: 0.75rem;
    }

    .medium-offset-1 {
        margin-left: 8.3333333333%;
    }

    .grid-margin-x>.medium-offset-1 {
        margin-left: calc(8.33333% + 0.75rem);
    }

    .medium-offset-2 {
        margin-left: 16.6666666667%;
    }

    .grid-margin-x>.medium-offset-2 {
        margin-left: calc(16.66667% + 0.75rem);
    }

    .medium-offset-3 {
        margin-left: 25%;
    }

    .grid-margin-x>.medium-offset-3 {
        margin-left: calc(25% + 0.75rem);
    }

    .medium-offset-4 {
        margin-left: 33.3333333333%;
    }

    .grid-margin-x>.medium-offset-4 {
        margin-left: calc(33.33333% + 0.75rem);
    }

    .medium-offset-5 {
        margin-left: 41.6666666667%;
    }

    .grid-margin-x>.medium-offset-5 {
        margin-left: calc(41.66667% + 0.75rem);
    }

    .medium-offset-6 {
        margin-left: 50%;
    }

    .grid-margin-x>.medium-offset-6 {
        margin-left: calc(50% + 0.75rem);
    }

    .medium-offset-7 {
        margin-left: 58.3333333333%;
    }

    .grid-margin-x>.medium-offset-7 {
        margin-left: calc(58.33333% + 0.75rem);
    }

    .medium-offset-8 {
        margin-left: 66.6666666667%;
    }

    .grid-margin-x>.medium-offset-8 {
        margin-left: calc(66.66667% + 0.75rem);
    }

    .medium-offset-9 {
        margin-left: 75%;
    }

    .grid-margin-x>.medium-offset-9 {
        margin-left: calc(75% + 0.75rem);
    }

    .medium-offset-10 {
        margin-left: 83.3333333333%;
    }

    .grid-margin-x>.medium-offset-10 {
        margin-left: calc(83.33333% + 0.75rem);
    }

    .medium-offset-11 {
        margin-left: 91.6666666667%;
    }

    .grid-margin-x>.medium-offset-11 {
        margin-left: calc(91.66667% + 0.75rem);
    }

    .grid-y>.medium-1,
    .grid-y>.medium-10,
    .grid-y>.medium-11,
    .grid-y>.medium-12,
    .grid-y>.medium-2,
    .grid-y>.medium-3,
    .grid-y>.medium-4,
    .grid-y>.medium-5,
    .grid-y>.medium-6,
    .grid-y>.medium-7,
    .grid-y>.medium-8,
    .grid-y>.medium-9,
    .grid-y>.medium-full,
    .grid-y>.medium-shrink {
        flex-basis: auto;
    }

    .grid-y>.medium-auto {
        flex: 1 1 0;
        height: auto;
    }

    .grid-y>.medium-1,
    .grid-y>.medium-10,
    .grid-y>.medium-11,
    .grid-y>.medium-12,
    .grid-y>.medium-2,
    .grid-y>.medium-3,
    .grid-y>.medium-4,
    .grid-y>.medium-5,
    .grid-y>.medium-6,
    .grid-y>.medium-7,
    .grid-y>.medium-8,
    .grid-y>.medium-9,
    .grid-y>.medium-shrink {
        flex: 0 0 auto;
    }

    .grid-y>.medium-shrink {
        height: auto;
    }

    .grid-y>.medium-1 {
        height: 8.3333333333%;
    }

    .grid-y>.medium-2 {
        height: 16.6666666667%;
    }

    .grid-y>.medium-3 {
        height: 25%;
    }

    .grid-y>.medium-4 {
        height: 33.3333333333%;
    }

    .grid-y>.medium-5 {
        height: 41.6666666667%;
    }

    .grid-y>.medium-6 {
        height: 50%;
    }

    .grid-y>.medium-7 {
        height: 58.3333333333%;
    }

    .grid-y>.medium-8 {
        height: 66.6666666667%;
    }

    .grid-y>.medium-9 {
        height: 75%;
    }

    .grid-y>.medium-10 {
        height: 83.3333333333%;
    }

    .grid-y>.medium-11 {
        height: 91.6666666667%;
    }

    .grid-y>.medium-12 {
        height: 100%;
    }

    .grid-margin-y>.medium-auto,
    .grid-margin-y>.medium-shrink {
        height: auto;
    }

    .grid-margin-y>.medium-1 {
        height: calc(8.33333% - 1.5rem);
    }

    .grid-margin-y>.medium-2 {
        height: calc(16.66667% - 1.5rem);
    }

    .grid-margin-y>.medium-3 {
        height: calc(25% - 1.5rem);
    }

    .grid-margin-y>.medium-4 {
        height: calc(33.33333% - 1.5rem);
    }

    .grid-margin-y>.medium-5 {
        height: calc(41.66667% - 1.5rem);
    }

    .grid-margin-y>.medium-6 {
        height: calc(50% - 1.5rem);
    }

    .grid-margin-y>.medium-7 {
        height: calc(58.33333% - 1.5rem);
    }

    .grid-margin-y>.medium-8 {
        height: calc(66.66667% - 1.5rem);
    }

    .grid-margin-y>.medium-9 {
        height: calc(75% - 1.5rem);
    }

    .grid-margin-y>.medium-10 {
        height: calc(83.33333% - 1.5rem);
    }

    .grid-margin-y>.medium-11 {
        height: calc(91.66667% - 1.5rem);
    }

    .grid-margin-y>.medium-12 {
        height: calc(100% - 1.5rem);
    }

    .medium-grid-frame {
        align-items: stretch;
        flex-wrap: nowrap;
        overflow: hidden;
        position: relative;
        width: 100vw;
    }

    .cell .medium-grid-frame {
        width: 100%;
    }

    .medium-cell-block {
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .medium-cell-block-container {
        display: flex;
        flex-direction: column;
        max-height: 100%;
    }

    .medium-cell-block-container>.grid-x {
        flex-wrap: nowrap;
        max-height: 100%;
    }

    .medium-cell-block-y {
        max-height: 100%;
        min-height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }

    .grid-y.medium-grid-frame {
        align-items: stretch;
        flex-wrap: nowrap;
        height: 100vh;
        overflow: hidden;
        position: relative;
        width: auto;
    }

    .cell .grid-y.medium-grid-frame {
        height: 100%;
    }

    .grid-frame.grid-margin-y,
    .grid-margin-y.medium-grid-frame {
        height: calc(100vh + 1.5rem);
    }

    .gform_description {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .gform_wrapper ul li.gf_left_third,
    .gform_wrapper ul li.gf_middle_third {
        float: left;
        padding-right: 8px;
        width: 33.33%;
    }

    .gform_wrapper ul li.gf_middle_third {
        padding-left: 8px;
    }

    .gform_wrapper ul li.gf_right_third {
        float: right;
        padding-left: 8px;
        width: 33.33%;
    }

    .gform_wrapper ul li.gf_right_third+li.gfield {
        clear: both;
        display: block;
    }

    .gform_wrapper ul li.gf_left_half {
        float: left;
        padding-right: 8px;
        width: 50%;
    }

    .gform_wrapper ul li.gf_right_half {
        float: right;
        padding-left: 8px;
        width: 50%;
    }

    .gform_wrapper ul li.gf_right_half+li.gfield {
        clear: both;
        display: block;
    }

    .gf_hide_ampm .clear-multi .gfield_time_hour.ginput_container,
    .gf_hide_ampm .clear-multi .gfield_time_minute.ginput_container {
        width: 50%;
    }

    .gf_hide_ampm .clear-multi .gfield_time_minute.ginput_container {
        padding-right: 0;
    }

    .gf_scroll_text {
        height: 250px;
    }

    .gf_list_2col:after,
    .gf_list_2col:before,
    .gf_list_3col:after,
    .gf_list_3col:before,
    .gf_list_4col:after,
    .gf_list_4col:before,
    .gf_list_5col:after,
    .gf_list_5col:before {
        content: " ";
        display: table;
        flex-basis: 0;
        order: 1;
    }

    .gf_list_2col:after,
    .gf_list_3col:after,
    .gf_list_4col:after,
    .gf_list_5col:after {
        clear: both;
    }

    .gf_list_2col .gfield_checkbox li:after,
    .gf_list_2col .gfield_checkbox li:before,
    .gf_list_2col .gfield_radio li:after,
    .gf_list_2col .gfield_radio li:before,
    .gf_list_3col .gfield_checkbox li:after,
    .gf_list_3col .gfield_checkbox li:before,
    .gf_list_3col .gfield_radio li:after,
    .gf_list_3col .gfield_radio li:before,
    .gf_list_4col .gfield_checkbox li:after,
    .gf_list_4col .gfield_checkbox li:before,
    .gf_list_4col .gfield_radio li:after,
    .gf_list_4col .gfield_radio li:before,
    .gf_list_5col .gfield_checkbox li:after,
    .gf_list_5col .gfield_checkbox li:before,
    .gf_list_5col .gfield_radio li:after,
    .gf_list_5col .gfield_radio li:before {
        content: " ";
        display: table;
        flex-basis: 0;
        order: 1;
    }

    .gf_list_2col .gfield_checkbox li:after,
    .gf_list_2col .gfield_radio li:after,
    .gf_list_3col .gfield_checkbox li:after,
    .gf_list_3col .gfield_radio li:after,
    .gf_list_4col .gfield_checkbox li:after,
    .gf_list_4col .gfield_radio li:after,
    .gf_list_5col .gfield_checkbox li:after,
    .gf_list_5col .gfield_radio li:after {
        clear: both;
    }

    .gf_list_2col .gfield_checkbox li,
    .gf_list_2col .gfield_radio li,
    .gf_list_3col .gfield_checkbox li,
    .gf_list_3col .gfield_radio li,
    .gf_list_4col .gfield_checkbox li,
    .gf_list_4col .gfield_radio li,
    .gf_list_5col .gfield_checkbox li,
    .gf_list_5col .gfield_radio li {
        display: block;
        float: left;
        margin-bottom: 10px;
        margin-top: 0;
    }

    .gf_list_2col .gfield_checkbox li.gf_other_choice_item,
    .gf_list_2col .gfield_radio li.gf_other_choice_item,
    .gf_list_3col .gfield_checkbox li.gf_other_choice_item,
    .gf_list_3col .gfield_radio li.gf_other_choice_item,
    .gf_list_4col .gfield_checkbox li.gf_other_choice_item,
    .gf_list_4col .gfield_radio li.gf_other_choice_item,
    .gf_list_5col .gfield_checkbox li.gf_other_choice_item,
    .gf_list_5col .gfield_radio li.gf_other_choice_item {
        position: relative;
        top: -11px;
    }

    .gf_list_2col .gfield_checkbox li.gf_other_choice_item input[type="text"],
    .gf_list_2col .gfield_radio li.gf_other_choice_item input[type="text"],
    .gf_list_3col .gfield_checkbox li.gf_other_choice_item input[type="text"],
    .gf_list_3col .gfield_radio li.gf_other_choice_item input[type="text"],
    .gf_list_4col .gfield_checkbox li.gf_other_choice_item input[type="text"],
    .gf_list_4col .gfield_radio li.gf_other_choice_item input[type="text"],
    .gf_list_5col .gfield_checkbox li.gf_other_choice_item input[type="text"],
    .gf_list_5col .gfield_radio li.gf_other_choice_item input[type="text"] {
        width: 100%;
    }

    .gf_list_2col .gfield_checkbox li,
    .gf_list_2col .gfield_radio li {
        width: 50%;
    }

    .gf_list_3col .gfield_checkbox li,
    .gf_list_3col .gfield_radio li {
        width: 33.33%;
    }

    .gf_list_4col .gfield_checkbox li,
    .gf_list_4col .gfield_radio li {
        width: 25%;
    }

    .gf_list_5col .gfield_checkbox li,
    .gf_list_5col .gfield_radio li {
        width: 20%;
    }

    .gform_wrapper .spinner {
        inset: 50% 23px auto auto !important;
    }

    .gform_footer {
        padding-right: 50px;
    }

    .gfield_checkbox input[value="gf_other_choice"]+input,
    .gfield_radio input[value="gf_other_choice"]+input {
        width: 50%;
    }

    .gf-date-layout-datefield.field_sublabel_above .clear-multi,
    .gf-time.field_sublabel_above .clear-multi {
        margin-top: -11px;
    }

    .gf-date-layout-datefield.field_sublabel_below .clear-multi,
    .gf-time.field_sublabel_below .clear-multi {
        margin-bottom: -11px;
    }

    .gf-date .clear-multi .ginput_container,
    .gf-time .clear-multi .ginput_container {
        float: left;
        width: 33.33%;
    }

    .gfield_date_dropdown_day,
    .gfield_date_dropdown_month,
    .gfield_date_dropdown_year,
    .gfield_time_ampm {
        max-width: none;
    }

    .gfield_date_dropdown_day~*,
    .gfield_date_dropdown_month~*,
    .gfield_date_dropdown_year~* {
        margin-top: 0;
    }

    .gfield_date_dropdown_day:after,
    .gfield_date_dropdown_month:after {
        right: 9px;
    }

    .gform_drop_instructions {
        margin-right: 10px;
    }

    .gform_fileupload_multifile input[type="button"],
    .gform_fileupload_multifile input[type="file"] {
        margin-top: 0;
    }

    .gform_wrapper #error .validation_error {
        font-size: 1rem;
        line-height: 1.625;
    }

    .admin-bar .l-wrapper {
        min-height: calc(100vh - 32px);
    }

    .grid-container {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .btn-submit {
        width: auto;
    }

    dl,
    ol,
    ul {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .list-bullet.list--inline li,
    .t-content ul.list--inline li {
        display: inline-block;
        margin-top: 0;
    }

    .ez-toc-list,
    .t-content .ez-toc-list {
        margin: 0 0 4rem;
        padding: 0 0 4rem;
    }

    p {
        font-size: 1.125rem;
        line-height: 1.5;
    }

    .cite,
    .t-content cite {
        font-size: 1rem;
        line-height: 1.625;
    }

    .t-content table,
    .table {
        font-size: 1rem;
    }

    .t-content td,
    .t-content th,
    .td,
    .th {
        padding: 1.5rem 2rem;
    }

    .u-text-overline {
        font-size: 1rem;
        line-height: 1.625;
    }

    .t-content .u-text-overline {
        margin-bottom: 1rem;
    }

    .u-text-caption {
        font-size: 1rem;
        line-height: 1.75;
    }

    .u-sep-dot> :after {
        display: inline-block;
    }

    .wp-block-embed figcaption,
    .wp-block-image figcaption {
        font-size: 1rem;
        line-height: 1.75;
    }

    .aligncenter,
    figure.wp-block-image {
        margin-bottom: 3rem;
        margin-top: 3rem;
    }

    .alignleft,
    .alignright {
        margin-top: 0.3125rem;
        max-width: 25.375rem;
    }

    .alignleft {
        float: left;
        margin-right: 1.875rem;
    }

    .alignright {
        float: right;
        margin-left: 1.875rem;
    }

    .admin-bar .a11y-skip-link:active,
    .admin-bar .a11y-skip-link:focus {
        top: 32px;
    }

    .logo__wrap.logo__wrap--footer {
        margin: 0 0 1.5rem;
    }

    header .logo {
        height: 50px;
        width: 212px;
    }

    .primary-category {
        font-size: 1rem;
        line-height: 1.625;
    }

    .skip-link-top {
        font-size: 1.5rem;
        height: 3.75rem;
        line-height: 3.75rem;
        width: 3.75rem;
    }

    .related-posts {
        flex-direction: row;
    }

    .localist-widget .lwl a,
    .localist-widget .lwn0 {
        font-size: 1rem;
        line-height: 1.625;
    }

    .masthead__trigger {
        margin-top: 0;
    }

    .page-title small {
        font-size: 1rem;
        line-height: 1.625;
    }

    .header__subtitle,
    .header__subtitle p {
        font-size: 1.5rem;
    }

    .single__post-meta {
        margin-bottom: 2rem;
    }

    .single__post-meta .author,
    .single__post-meta .meta-box {
        align-items: center;
        flex-direction: row;
    }

    .single__post-meta .sticky-header__list .sticky-header__list-link .fa {
        font-size: 1rem;
    }

    .admin-bar .sticky-header {
        top: 32px;
    }

    .sticky-header .grid-container {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .sticky-header__title {
        font-size: 1.5rem;
        margin-right: 1rem;
        max-width: none;
    }

    .sticky-header__list-item {
        margin-right: 1.5625rem;
    }

    .sticky-header__list-link .fa-brands,
    .sticky-header__list-link .fa-fab {
        font-size: 1rem;
    }

    .sticky-header__link-title {
        clip: auto;
        height: auto;
        margin: 0;
        position: static;
        width: auto;
    }

    .search__modal {
        padding-bottom: 6rem;
        padding-top: 3rem;
    }

    .site-footer .site-footer__block {
        float: left;
        width: auto;
    }

    .site-footer .site-footer__block--nav {
        float: right;
    }

    .site-footer .site-footer__search-wrap {
        float: right;
        margin: 0.5rem 0 2rem;
    }

    .site-footer .contact-info {
        flex-flow: row nowrap;
        justify-content: left;
    }

    .site-footer .contact-info__link {
        margin: 0 1.5rem 0 0;
    }

    .site-footer .contact-info__link:last-child {
        margin-right: 0;
    }

    .site-footer .copyright {
        margin-top: 4rem;
    }

    .ez-toc-title {
        font-size: 2.25rem;
    }

    .hide-mobile {
        display: none;
    }

    .hide-desktop {
        display: block;
    }

    .nav-primary__list-item.callout>.nav-primary__action {
        font-size: 1rem;
        line-height: 1.625;
    }

    .nav-secondary__list {
        overflow-x: visible;
    }

    .loop-item {
        align-items: center;
        display: flex;
        flex-flow: row nowrap;
        justify-content: space-between;
        padding: 2rem 0;
    }

    .loop-item__image {
        margin-bottom: 0;
        max-width: 320px;
        order: 2;
        width: 33%;
    }

    .loop-item__inner {
        max-width: 52.6875rem;
        padding-right: 1.875rem;
        width: 66%;
    }

    .loop-item__meta {
        display: flex;
        flex-flow: row nowrap;
    }

    .loop-item__category .primary-category {
        margin-right: 2rem;
    }

    .loop-item__date {
        font-size: 1rem;
        line-height: 1.625;
    }

    .featured-post__item {
        align-items: center;
        display: flex;
        justify-content: space-between;
        padding: 3rem 0;
    }

    .featured-post__image {
        flex: 0 0 48%;
        margin-bottom: 0;
        margin-right: 4rem;
        width: 48%;
    }

    .featured-post__content .primary-category {
        background-color: #001e5f;
        color: #fff;
        display: inline-block;
        font-size: 1rem;
        line-height: 1.625;
        padding: 0.25rem 0.5rem;
    }

    .featured-post__title {
        font-size: 3rem;
    }

    .featured-post__date {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .featured-post__excerpt {
        margin-bottom: 0;
    }

    .pagination__count {
        font-size: 1.125rem;
    }

    .module {
        padding-bottom: 4rem;
        padding-top: 4rem;
    }

    body .max-text-left .social-module__content,
    body .max-text-left header.desc_section,
    body .max-text-right .social-module__content,
    body .max-text-right header.desc_section {
        padding-left: 0;
        padding-right: 0;
    }

    .a-row__button {
        font-size: 1.125rem;
    }

    .module.module--type-card_grid.module--layout-2 .card-grid-module__card {
        margin: 0 0 1rem;
    }

    .module.module--type-card_grid.module--layout-3 .card-grid-module__loop {
        grid-template-columns: repeat(auto-fill, 48%);
    }

    .module.module--type-card_grid.module--layout-3 .card-grid-module__card {
        margin: 0 0 1rem;
    }

    .module.module--type-card_grid.module--layout-4 .card-grid-module__loop {
        grid-template-columns: repeat(auto-fill, 48%);
    }

    .module.module--type-card_grid.module--layout-4 .card-grid-module__card:nth-of-type(2n) {
        margin: 0 0 1rem;
    }

    .module--type-interstitial.module--layout_inline {
        padding-bottom: 4rem;
        padding-top: 4rem;
    }

    .module--type-navigation.background_blue,
    .module--type-navigation.background_charcoal,
    .module--type-navigation.background_grey,
    .module--type-navigation.background_white,
    .module--type-navigation.background_yellow {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .nav-module__list {
        display: flex;
        flex-flow: row wrap;
        margin-left: -0.9375rem;
        margin-right: -0.9375rem;
    }

    .nav-module__container.columns-2 .nav-module__list li {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }

    .nav-module__container.columns-3 .nav-module__list li {
        flex: 0 0 33%;
        max-width: 33%;
        width: 33%;
    }

    .above_fold .nav-module--layout_cards .nav-module__list-item {
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }

    .nav-module--layout_cards .nav-module__list-item,
    .nav-module--layout_list .nav-module__list-item--depth-0 {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        width: 50%;
    }

    .nav-module--layout_list p.nav-module__action .menu-item__action-text {
        font-size: 1rem;
        line-height: 2;
    }

    .nav-module--layout_micronav .nav-module__list-item {
        flex: 0 0 50%;
        margin-bottom: 1.875rem/2;
        width: 50%;
    }

    .page .module--type-query_text .loop-item__image {
        width: 90%;
    }

    .recent-post .col-flex.column-2 .loop-item:nth-of-type(2n) {
        border-left: none !important;
        border-right: 1px solid #e8e8e8;
    }

    .col-flex.column-2 article.loop-item {
        border-bottom: none;
        flex-basis: 50%;
        width: 50%;
    }

    .col-flex.column-2 article.loop-item:nth-of-type(2n) {
        border-left: 1px solid #e8e8e8;
    }

    .recent-post .col-flex.column-3 .loop-item:nth-of-type(1n) {
        border-right: none;
    }

    .recent-post .col-flex.column-3 .loop-item:nth-of-type(3n) {
        border-left: 1px solid #e8e8e8;
        border-right: 1px solid #e8e8e8;
    }

    .col-flex.column-3 article.loop-item .loop-item__inner {
        padding: 20px;
    }

    .module--type-query_text.white-cards .column-3 .loop-item {
        flex-basis: 32%;
        margin: 30px 0 1%;
        width: 32%;
    }

    .module--type-query_text.width-large .big_text .featured-post .loop-item__excerpt p,
    .module--type-query_text.width-large .big_text .featured-post .loop-item__title,
    .module--type-query_text.width-large .big_text .loop-item:first-of-type .loop-item__excerpt p,
    .module--type-query_text.width-large .big_text .loop-item:first-of-type .loop-item__title {
        width: 75% !important;
    }

    .module--type-social .landing-social .social-container .social-header:after,
    .module--type-social .landing-social .social-container .social-header:before {
        width: 280px;
    }

    .module--type-social .landing-social .social-container ul li a {
        height: 55px;
        width: 55px;
    }

    .module--type-directory.module--layout-2 .directory-grid-module__card {
        margin-bottom: 2rem;
    }

    .module--type-directory.module--layout-2 .directory-grid-module__card,
    .module--type-directory.module--layout-3 .directory-grid-module__card,
    .module--type-directory.module--layout-4 .directory-grid-module__card {
        display: inline-flex;
        flex: 0 0 50%;
        flex-direction: column;
        max-width: 50%;
        width: 50%;
    }

    .module.module--type-directory_new.module--layout-4 .directory-group .feature {
        margin: 0;
        max-width: 300px;
    }

    .module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn a {
        box-shadow: 0 1px 0 0 #021bc3;
        margin-bottom: 0;
    }

    .module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn a:focus,
    .module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn a:hover {
        box-shadow: 0 3px 0 0 #021bc3;
    }

    .module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwn span {
        text-align: left;
    }

    .module--type-calendar .calendar-grid-module__loop .localist-widget .lwe .lwl {
        bottom: 65px;
        padding-left: 145px;
        position: absolute;
    }

    .module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn {
        flex-direction: row-reverse;
        justify-content: space-between;
    }

    .module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn a {
        box-shadow: 0 1px 0 0 #021bc3;
        margin-bottom: 0;
    }

    .module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn a:focus,
    .module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn a:hover {
        box-shadow: 0 3px 0 0 #021bc3;
    }

    .module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwn span {
        text-align: left;
    }

    .module--type-calendar .calendar-grid_module__loop .localist-widget .lwe .lwl {
        bottom: 65px;
        padding-left: 145px;
        position: absolute;
    }
}

@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        -webkit-print-color-adjust: economy;
        print-color-adjust: economy;
        text-shadow: none !important;
    }

    .show-for-print {
        display: block !important;
    }

    .hide-for-print {
        display: none !important;
    }

    table.show-for-print {
        display: table !important;
    }

    thead.show-for-print {
        display: table-header-group !important;
    }

    tbody.show-for-print {
        display: table-row-group !important;
    }

    tr.show-for-print {
        display: table-row !important;
    }

    td.show-for-print,
    th.show-for-print {
        display: table-cell !important;
    }

    a,
    a:visited {
        border: 0 !important;
        text-decoration: underline;
    }

    .ir a:after,
    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    blockquote,
    pre {
        page-break-inside: avoid;
        border: 1px solid #999;
        break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    img,
    tr {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .print-break-inside {
        page-break-inside: auto;
    }

    .d-print-inline {
        display: inline !important;
    }

    .d-print-inline-block {
        display: inline-block !important;
    }

    .d-print-block {
        display: block !important;
    }

    .d-print-grid {
        display: grid !important;
    }

    .d-print-table {
        display: table !important;
    }

    .d-print-table-row {
        display: table-row !important;
    }

    .d-print-table-cell {
        display: table-cell !important;
    }

    .d-print-flex {
        display: flex !important;
    }

    .d-print-inline-flex {
        display: inline-flex !important;
    }

    .d-print-none {
        display: none !important;
    }

    @page {
        margin: 0.75in;
        orphans: 4;
        size: 8.5in 11in;
        widows: 2;
    }

    *,
    :after,
    :before {
        background: transparent !important;
        box-shadow: none !important;
        color: #000 !important;
        filter: none !important;
        text-shadow: none !important;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    .wp-block-embed,
    embed,
    figure,
    iframe,
    img,
    tr {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    html {
        font-size: 12pt;
    }

    .l-wrapper,
    body {
        display: block;
        min-height: 0;
    }

    h1,
    h2,
    h3,
    p {
        orphans: 3;
        widows: 3;
    }

    .localist-widget .lwn a,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
        break-after: avoid;
    }

    #ez-toc-container,
    #wpadminbar,
    .breadcrumb,
    .content-header--page,
    .masthead,
    .page__hero,
    .post-category,
    .site-footer,
    .sticky-header,
    .sticky-header__list {
        display: none !important;
    }

    .cell,
    .grid-container,
    .grid-margin-x,
    .grid-margin-y,
    .grid-x,
    .grid-x>.cell,
    .grid-y,
    .grid-y>.cell {
        display: block;
        flex: none;
        margin: 0;
        max-width: none;
        padding: 0;
        width: 100%;
    }

    .grid-container__stagger-double,
    .grid-container__stagger-double>* {
        max-width: none;
        width: 100%;
    }

    .blockquote>*,
    .t-content blockquote>* {
        max-width: none;
    }

    .anchor,
    .t-content a:not(.button) {
        font-weight: 400;
    }

    .t-content td,
    .t-content th,
    .td,
    .th {
        border-top: 1px solid silver;
    }

    .single .content-header {
        border-bottom: 0;
        margin-bottom: 0;
    }

    .page .header__inner {
        border-bottom: 0;
    }
}

@media (min-width: 576px) {
    .sticky-sm-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .dropdown-menu-sm-start {
        --bs-position: start;
    }

    .dropdown-menu-sm-start[data-bs-popper] {
        left: 0;
        right: auto;
    }

    .dropdown-menu-sm-end {
        --bs-position: end;
    }

    .dropdown-menu-sm-end[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .float-sm-start {
        float: left !important;
    }

    .float-sm-end {
        float: right !important;
    }

    .float-sm-none {
        float: none !important;
    }

    .d-sm-inline {
        display: inline !important;
    }

    .d-sm-inline-block {
        display: inline-block !important;
    }

    .d-sm-block {
        display: block !important;
    }

    .d-sm-grid {
        display: grid !important;
    }

    .d-sm-table {
        display: table !important;
    }

    .d-sm-table-row {
        display: table-row !important;
    }

    .d-sm-table-cell {
        display: table-cell !important;
    }

    .d-sm-flex {
        display: flex !important;
    }

    .d-sm-inline-flex {
        display: inline-flex !important;
    }

    .d-sm-none {
        display: none !important;
    }

    .flex-sm-fill {
        flex: 1 1 auto !important;
    }

    .flex-sm-row {
        flex-direction: row !important;
    }

    .flex-sm-column {
        flex-direction: column !important;
    }

    .flex-sm-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-sm-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-sm-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-sm-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-sm-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-sm-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-sm-wrap {
        flex-wrap: wrap !important;
    }

    .flex-sm-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .gap-sm-0 {
        gap: 0 !important;
    }

    .gap-sm-1 {
        gap: 0.5rem !important;
    }

    .gap-sm-2 {
        gap: 1rem !important;
    }

    .gap-sm-3 {
        gap: 2rem !important;
    }

    .gap-sm-4 {
        gap: 3rem !important;
    }

    .gap-sm-5 {
        gap: 6rem !important;
    }

    .justify-content-sm-start {
        justify-content: flex-start !important;
    }

    .justify-content-sm-end {
        justify-content: flex-end !important;
    }

    .justify-content-sm-center {
        justify-content: center !important;
    }

    .justify-content-sm-between {
        justify-content: space-between !important;
    }

    .justify-content-sm-around {
        justify-content: space-around !important;
    }

    .justify-content-sm-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-sm-start {
        align-items: flex-start !important;
    }

    .align-items-sm-end {
        align-items: flex-end !important;
    }

    .align-items-sm-center {
        align-items: center !important;
    }

    .align-items-sm-baseline {
        align-items: baseline !important;
    }

    .align-items-sm-stretch {
        align-items: stretch !important;
    }

    .align-content-sm-start {
        align-content: flex-start !important;
    }

    .align-content-sm-end {
        align-content: flex-end !important;
    }

    .align-content-sm-center {
        align-content: center !important;
    }

    .align-content-sm-between {
        align-content: space-between !important;
    }

    .align-content-sm-around {
        align-content: space-around !important;
    }

    .align-content-sm-stretch {
        align-content: stretch !important;
    }

    .align-self-sm-auto {
        align-self: auto !important;
    }

    .align-self-sm-start {
        align-self: flex-start !important;
    }

    .align-self-sm-end {
        align-self: flex-end !important;
    }

    .align-self-sm-center {
        align-self: center !important;
    }

    .align-self-sm-baseline {
        align-self: baseline !important;
    }

    .align-self-sm-stretch {
        align-self: stretch !important;
    }

    .order-sm-first {
        order: -1 !important;
    }

    .order-sm-0 {
        order: 0 !important;
    }

    .order-sm-1 {
        order: 1 !important;
    }

    .order-sm-2 {
        order: 2 !important;
    }

    .order-sm-3 {
        order: 3 !important;
    }

    .order-sm-4 {
        order: 4 !important;
    }

    .order-sm-5 {
        order: 5 !important;
    }

    .order-sm-last {
        order: 6 !important;
    }

    .m-sm-0 {
        margin: 0 !important;
    }

    .m-sm-1 {
        margin: 0.5rem !important;
    }

    .m-sm-2 {
        margin: 1rem !important;
    }

    .m-sm-3 {
        margin: 2rem !important;
    }

    .m-sm-4 {
        margin: 3rem !important;
    }

    .m-sm-5 {
        margin: 6rem !important;
    }

    .m-sm-auto {
        margin: auto !important;
    }

    .mx-sm-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-sm-1 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-sm-2 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-sm-3 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .mx-sm-4 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-sm-5 {
        margin-left: 6rem !important;
        margin-right: 6rem !important;
    }

    .mx-sm-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-sm-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .my-sm-1 {
        margin-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
    }

    .my-sm-2 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

    .my-sm-3 {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
    }

    .my-sm-4 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }

    .my-sm-5 {
        margin-bottom: 6rem !important;
        margin-top: 6rem !important;
    }

    .my-sm-auto {
        margin-bottom: auto !important;
        margin-top: auto !important;
    }

    .mt-sm-0 {
        margin-top: 0 !important;
    }

    .mt-sm-1 {
        margin-top: 0.5rem !important;
    }

    .mt-sm-2 {
        margin-top: 1rem !important;
    }

    .mt-sm-3 {
        margin-top: 2rem !important;
    }

    .mt-sm-4 {
        margin-top: 3rem !important;
    }

    .mt-sm-5 {
        margin-top: 6rem !important;
    }

    .mt-sm-auto {
        margin-top: auto !important;
    }

    .me-sm-0 {
        margin-right: 0 !important;
    }

    .me-sm-1 {
        margin-right: 0.5rem !important;
    }

    .me-sm-2 {
        margin-right: 1rem !important;
    }

    .me-sm-3 {
        margin-right: 2rem !important;
    }

    .me-sm-4 {
        margin-right: 3rem !important;
    }

    .me-sm-5 {
        margin-right: 6rem !important;
    }

    .me-sm-auto {
        margin-right: auto !important;
    }

    .mb-sm-0 {
        margin-bottom: 0 !important;
    }

    .mb-sm-1 {
        margin-bottom: 0.5rem !important;
    }

    .mb-sm-2 {
        margin-bottom: 1rem !important;
    }

    .mb-sm-3 {
        margin-bottom: 2rem !important;
    }

    .mb-sm-4 {
        margin-bottom: 3rem !important;
    }

    .mb-sm-5 {
        margin-bottom: 6rem !important;
    }

    .mb-sm-auto {
        margin-bottom: auto !important;
    }

    .ms-sm-0 {
        margin-left: 0 !important;
    }

    .ms-sm-1 {
        margin-left: 0.5rem !important;
    }

    .ms-sm-2 {
        margin-left: 1rem !important;
    }

    .ms-sm-3 {
        margin-left: 2rem !important;
    }

    .ms-sm-4 {
        margin-left: 3rem !important;
    }

    .ms-sm-5 {
        margin-left: 6rem !important;
    }

    .ms-sm-auto {
        margin-left: auto !important;
    }

    .p-sm-0 {
        padding: 0 !important;
    }

    .p-sm-1 {
        padding: 0.5rem !important;
    }

    .p-sm-2 {
        padding: 1rem !important;
    }

    .p-sm-3 {
        padding: 2rem !important;
    }

    .p-sm-4 {
        padding: 3rem !important;
    }

    .p-sm-5 {
        padding: 6rem !important;
    }

    .px-sm-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-sm-1 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-sm-2 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-sm-3 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .px-sm-4 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .px-sm-5 {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }

    .py-sm-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
    }

    .py-sm-1 {
        padding-bottom: 0.5rem !important;
        padding-top: 0.5rem !important;
    }

    .py-sm-2 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important;
    }

    .py-sm-3 {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }

    .py-sm-4 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important;
    }

    .py-sm-5 {
        padding-bottom: 6rem !important;
        padding-top: 6rem !important;
    }

    .pt-sm-0 {
        padding-top: 0 !important;
    }

    .pt-sm-1 {
        padding-top: 0.5rem !important;
    }

    .pt-sm-2 {
        padding-top: 1rem !important;
    }

    .pt-sm-3 {
        padding-top: 2rem !important;
    }

    .pt-sm-4 {
        padding-top: 3rem !important;
    }

    .pt-sm-5 {
        padding-top: 6rem !important;
    }

    .pe-sm-0 {
        padding-right: 0 !important;
    }

    .pe-sm-1 {
        padding-right: 0.5rem !important;
    }

    .pe-sm-2 {
        padding-right: 1rem !important;
    }

    .pe-sm-3 {
        padding-right: 2rem !important;
    }

    .pe-sm-4 {
        padding-right: 3rem !important;
    }

    .pe-sm-5 {
        padding-right: 6rem !important;
    }

    .pb-sm-0 {
        padding-bottom: 0 !important;
    }

    .pb-sm-1 {
        padding-bottom: 0.5rem !important;
    }

    .pb-sm-2 {
        padding-bottom: 1rem !important;
    }

    .pb-sm-3 {
        padding-bottom: 2rem !important;
    }

    .pb-sm-4 {
        padding-bottom: 3rem !important;
    }

    .pb-sm-5 {
        padding-bottom: 6rem !important;
    }

    .ps-sm-0 {
        padding-left: 0 !important;
    }

    .ps-sm-1 {
        padding-left: 0.5rem !important;
    }

    .ps-sm-2 {
        padding-left: 1rem !important;
    }

    .ps-sm-3 {
        padding-left: 2rem !important;
    }

    .ps-sm-4 {
        padding-left: 3rem !important;
    }

    .ps-sm-5 {
        padding-left: 6rem !important;
    }

    .text-sm-start {
        text-align: left !important;
    }

    .text-sm-end {
        text-align: right !important;
    }

    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .sticky-md-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .dropdown-menu-md-start {
        --bs-position: start;
    }

    .dropdown-menu-md-start[data-bs-popper] {
        left: 0;
        right: auto;
    }

    .dropdown-menu-md-end {
        --bs-position: end;
    }

    .dropdown-menu-md-end[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .float-md-start {
        float: left !important;
    }

    .float-md-end {
        float: right !important;
    }

    .float-md-none {
        float: none !important;
    }

    .d-md-inline {
        display: inline !important;
    }

    .d-md-inline-block {
        display: inline-block !important;
    }

    .d-md-block {
        display: block !important;
    }

    .d-md-grid {
        display: grid !important;
    }

    .d-md-table {
        display: table !important;
    }

    .d-md-table-row {
        display: table-row !important;
    }

    .d-md-table-cell {
        display: table-cell !important;
    }

    .d-md-flex {
        display: flex !important;
    }

    .d-md-inline-flex {
        display: inline-flex !important;
    }

    .d-md-none {
        display: none !important;
    }

    .flex-md-fill {
        flex: 1 1 auto !important;
    }

    .flex-md-row {
        flex-direction: row !important;
    }

    .flex-md-column {
        flex-direction: column !important;
    }

    .flex-md-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-md-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-md-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-md-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-md-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-md-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-md-wrap {
        flex-wrap: wrap !important;
    }

    .flex-md-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .gap-md-0 {
        gap: 0 !important;
    }

    .gap-md-1 {
        gap: 0.5rem !important;
    }

    .gap-md-2 {
        gap: 1rem !important;
    }

    .gap-md-3 {
        gap: 2rem !important;
    }

    .gap-md-4 {
        gap: 3rem !important;
    }

    .gap-md-5 {
        gap: 6rem !important;
    }

    .justify-content-md-start {
        justify-content: flex-start !important;
    }

    .justify-content-md-end {
        justify-content: flex-end !important;
    }

    .justify-content-md-center {
        justify-content: center !important;
    }

    .justify-content-md-between {
        justify-content: space-between !important;
    }

    .justify-content-md-around {
        justify-content: space-around !important;
    }

    .justify-content-md-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-md-start {
        align-items: flex-start !important;
    }

    .align-items-md-end {
        align-items: flex-end !important;
    }

    .align-items-md-center {
        align-items: center !important;
    }

    .align-items-md-baseline {
        align-items: baseline !important;
    }

    .align-items-md-stretch {
        align-items: stretch !important;
    }

    .align-content-md-start {
        align-content: flex-start !important;
    }

    .align-content-md-end {
        align-content: flex-end !important;
    }

    .align-content-md-center {
        align-content: center !important;
    }

    .align-content-md-between {
        align-content: space-between !important;
    }

    .align-content-md-around {
        align-content: space-around !important;
    }

    .align-content-md-stretch {
        align-content: stretch !important;
    }

    .align-self-md-auto {
        align-self: auto !important;
    }

    .align-self-md-start {
        align-self: flex-start !important;
    }

    .align-self-md-end {
        align-self: flex-end !important;
    }

    .align-self-md-center {
        align-self: center !important;
    }

    .align-self-md-baseline {
        align-self: baseline !important;
    }

    .align-self-md-stretch {
        align-self: stretch !important;
    }

    .order-md-first {
        order: -1 !important;
    }

    .order-md-0 {
        order: 0 !important;
    }

    .order-md-1 {
        order: 1 !important;
    }

    .order-md-2 {
        order: 2 !important;
    }

    .order-md-3 {
        order: 3 !important;
    }

    .order-md-4 {
        order: 4 !important;
    }

    .order-md-5 {
        order: 5 !important;
    }

    .order-md-last {
        order: 6 !important;
    }

    .m-md-0 {
        margin: 0 !important;
    }

    .m-md-1 {
        margin: 0.5rem !important;
    }

    .m-md-2 {
        margin: 1rem !important;
    }

    .m-md-3 {
        margin: 2rem !important;
    }

    .m-md-4 {
        margin: 3rem !important;
    }

    .m-md-5 {
        margin: 6rem !important;
    }

    .m-md-auto {
        margin: auto !important;
    }

    .mx-md-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-md-1 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-md-2 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-md-3 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .mx-md-4 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-md-5 {
        margin-left: 6rem !important;
        margin-right: 6rem !important;
    }

    .mx-md-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-md-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .my-md-1 {
        margin-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
    }

    .my-md-2 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

    .my-md-3 {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
    }

    .my-md-4 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }

    .my-md-5 {
        margin-bottom: 6rem !important;
        margin-top: 6rem !important;
    }

    .my-md-auto {
        margin-bottom: auto !important;
        margin-top: auto !important;
    }

    .mt-md-0 {
        margin-top: 0 !important;
    }

    .mt-md-1 {
        margin-top: 0.5rem !important;
    }

    .mt-md-2 {
        margin-top: 1rem !important;
    }

    .mt-md-3 {
        margin-top: 2rem !important;
    }

    .mt-md-4 {
        margin-top: 3rem !important;
    }

    .mt-md-5 {
        margin-top: 6rem !important;
    }

    .mt-md-auto {
        margin-top: auto !important;
    }

    .me-md-0 {
        margin-right: 0 !important;
    }

    .me-md-1 {
        margin-right: 0.5rem !important;
    }

    .me-md-2 {
        margin-right: 1rem !important;
    }

    .me-md-3 {
        margin-right: 2rem !important;
    }

    .me-md-4 {
        margin-right: 3rem !important;
    }

    .me-md-5 {
        margin-right: 6rem !important;
    }

    .me-md-auto {
        margin-right: auto !important;
    }

    .mb-md-0 {
        margin-bottom: 0 !important;
    }

    .mb-md-1 {
        margin-bottom: 0.5rem !important;
    }

    .mb-md-2 {
        margin-bottom: 1rem !important;
    }

    .mb-md-3 {
        margin-bottom: 2rem !important;
    }

    .mb-md-4 {
        margin-bottom: 3rem !important;
    }

    .mb-md-5 {
        margin-bottom: 6rem !important;
    }

    .mb-md-auto {
        margin-bottom: auto !important;
    }

    .ms-md-0 {
        margin-left: 0 !important;
    }

    .ms-md-1 {
        margin-left: 0.5rem !important;
    }

    .ms-md-2 {
        margin-left: 1rem !important;
    }

    .ms-md-3 {
        margin-left: 2rem !important;
    }

    .ms-md-4 {
        margin-left: 3rem !important;
    }

    .ms-md-5 {
        margin-left: 6rem !important;
    }

    .ms-md-auto {
        margin-left: auto !important;
    }

    .p-md-0 {
        padding: 0 !important;
    }

    .p-md-1 {
        padding: 0.5rem !important;
    }

    .p-md-2 {
        padding: 1rem !important;
    }

    .p-md-3 {
        padding: 2rem !important;
    }

    .p-md-4 {
        padding: 3rem !important;
    }

    .p-md-5 {
        padding: 6rem !important;
    }

    .px-md-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-md-1 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-md-2 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-md-3 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .px-md-4 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .px-md-5 {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }

    .py-md-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
    }

    .py-md-1 {
        padding-bottom: 0.5rem !important;
        padding-top: 0.5rem !important;
    }

    .py-md-2 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important;
    }

    .py-md-3 {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }

    .py-md-4 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important;
    }

    .py-md-5 {
        padding-bottom: 6rem !important;
        padding-top: 6rem !important;
    }

    .pt-md-0 {
        padding-top: 0 !important;
    }

    .pt-md-1 {
        padding-top: 0.5rem !important;
    }

    .pt-md-2 {
        padding-top: 1rem !important;
    }

    .pt-md-3 {
        padding-top: 2rem !important;
    }

    .pt-md-4 {
        padding-top: 3rem !important;
    }

    .pt-md-5 {
        padding-top: 6rem !important;
    }

    .pe-md-0 {
        padding-right: 0 !important;
    }

    .pe-md-1 {
        padding-right: 0.5rem !important;
    }

    .pe-md-2 {
        padding-right: 1rem !important;
    }

    .pe-md-3 {
        padding-right: 2rem !important;
    }

    .pe-md-4 {
        padding-right: 3rem !important;
    }

    .pe-md-5 {
        padding-right: 6rem !important;
    }

    .pb-md-0 {
        padding-bottom: 0 !important;
    }

    .pb-md-1 {
        padding-bottom: 0.5rem !important;
    }

    .pb-md-2 {
        padding-bottom: 1rem !important;
    }

    .pb-md-3 {
        padding-bottom: 2rem !important;
    }

    .pb-md-4 {
        padding-bottom: 3rem !important;
    }

    .pb-md-5 {
        padding-bottom: 6rem !important;
    }

    .ps-md-0 {
        padding-left: 0 !important;
    }

    .ps-md-1 {
        padding-left: 0.5rem !important;
    }

    .ps-md-2 {
        padding-left: 1rem !important;
    }

    .ps-md-3 {
        padding-left: 2rem !important;
    }

    .ps-md-4 {
        padding-left: 3rem !important;
    }

    .ps-md-5 {
        padding-left: 6rem !important;
    }

    .text-md-start {
        text-align: left !important;
    }

    .text-md-end {
        text-align: right !important;
    }

    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .sticky-lg-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .dropdown-menu-lg-start {
        --bs-position: start;
    }

    .dropdown-menu-lg-start[data-bs-popper] {
        left: 0;
        right: auto;
    }

    .dropdown-menu-lg-end {
        --bs-position: end;
    }

    .dropdown-menu-lg-end[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .float-lg-start {
        float: left !important;
    }

    .float-lg-end {
        float: right !important;
    }

    .float-lg-none {
        float: none !important;
    }

    .d-lg-inline {
        display: inline !important;
    }

    .d-lg-inline-block {
        display: inline-block !important;
    }

    .d-lg-block {
        display: block !important;
    }

    .d-lg-grid {
        display: grid !important;
    }

    .d-lg-table {
        display: table !important;
    }

    .d-lg-table-row {
        display: table-row !important;
    }

    .d-lg-table-cell {
        display: table-cell !important;
    }

    .d-lg-flex {
        display: flex !important;
    }

    .d-lg-inline-flex {
        display: inline-flex !important;
    }

    .d-lg-none {
        display: none !important;
    }

    .flex-lg-fill {
        flex: 1 1 auto !important;
    }

    .flex-lg-row {
        flex-direction: row !important;
    }

    .flex-lg-column {
        flex-direction: column !important;
    }

    .flex-lg-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-lg-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-lg-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-lg-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-lg-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-lg-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-lg-wrap {
        flex-wrap: wrap !important;
    }

    .flex-lg-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .gap-lg-0 {
        gap: 0 !important;
    }

    .gap-lg-1 {
        gap: 0.5rem !important;
    }

    .gap-lg-2 {
        gap: 1rem !important;
    }

    .gap-lg-3 {
        gap: 2rem !important;
    }

    .gap-lg-4 {
        gap: 3rem !important;
    }

    .gap-lg-5 {
        gap: 6rem !important;
    }

    .justify-content-lg-start {
        justify-content: flex-start !important;
    }

    .justify-content-lg-end {
        justify-content: flex-end !important;
    }

    .justify-content-lg-center {
        justify-content: center !important;
    }

    .justify-content-lg-between {
        justify-content: space-between !important;
    }

    .justify-content-lg-around {
        justify-content: space-around !important;
    }

    .justify-content-lg-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-lg-start {
        align-items: flex-start !important;
    }

    .align-items-lg-end {
        align-items: flex-end !important;
    }

    .align-items-lg-center {
        align-items: center !important;
    }

    .align-items-lg-baseline {
        align-items: baseline !important;
    }

    .align-items-lg-stretch {
        align-items: stretch !important;
    }

    .align-content-lg-start {
        align-content: flex-start !important;
    }

    .align-content-lg-end {
        align-content: flex-end !important;
    }

    .align-content-lg-center {
        align-content: center !important;
    }

    .align-content-lg-between {
        align-content: space-between !important;
    }

    .align-content-lg-around {
        align-content: space-around !important;
    }

    .align-content-lg-stretch {
        align-content: stretch !important;
    }

    .align-self-lg-auto {
        align-self: auto !important;
    }

    .align-self-lg-start {
        align-self: flex-start !important;
    }

    .align-self-lg-end {
        align-self: flex-end !important;
    }

    .align-self-lg-center {
        align-self: center !important;
    }

    .align-self-lg-baseline {
        align-self: baseline !important;
    }

    .align-self-lg-stretch {
        align-self: stretch !important;
    }

    .order-lg-first {
        order: -1 !important;
    }

    .order-lg-0 {
        order: 0 !important;
    }

    .order-lg-1 {
        order: 1 !important;
    }

    .order-lg-2 {
        order: 2 !important;
    }

    .order-lg-3 {
        order: 3 !important;
    }

    .order-lg-4 {
        order: 4 !important;
    }

    .order-lg-5 {
        order: 5 !important;
    }

    .order-lg-last {
        order: 6 !important;
    }

    .m-lg-0 {
        margin: 0 !important;
    }

    .m-lg-1 {
        margin: 0.5rem !important;
    }

    .m-lg-2 {
        margin: 1rem !important;
    }

    .m-lg-3 {
        margin: 2rem !important;
    }

    .m-lg-4 {
        margin: 3rem !important;
    }

    .m-lg-5 {
        margin: 6rem !important;
    }

    .m-lg-auto {
        margin: auto !important;
    }

    .mx-lg-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-lg-1 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-lg-2 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-lg-3 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .mx-lg-4 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-lg-5 {
        margin-left: 6rem !important;
        margin-right: 6rem !important;
    }

    .mx-lg-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-lg-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .my-lg-1 {
        margin-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
    }

    .my-lg-2 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

    .my-lg-3 {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
    }

    .my-lg-4 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }

    .my-lg-5 {
        margin-bottom: 6rem !important;
        margin-top: 6rem !important;
    }

    .my-lg-auto {
        margin-bottom: auto !important;
        margin-top: auto !important;
    }

    .mt-lg-0 {
        margin-top: 0 !important;
    }

    .mt-lg-1 {
        margin-top: 0.5rem !important;
    }

    .mt-lg-2 {
        margin-top: 1rem !important;
    }

    .mt-lg-3 {
        margin-top: 2rem !important;
    }

    .mt-lg-4 {
        margin-top: 3rem !important;
    }

    .mt-lg-5 {
        margin-top: 6rem !important;
    }

    .mt-lg-auto {
        margin-top: auto !important;
    }

    .me-lg-0 {
        margin-right: 0 !important;
    }

    .me-lg-1 {
        margin-right: 0.5rem !important;
    }

    .me-lg-2 {
        margin-right: 1rem !important;
    }

    .me-lg-3 {
        margin-right: 2rem !important;
    }

    .me-lg-4 {
        margin-right: 3rem !important;
    }

    .me-lg-5 {
        margin-right: 6rem !important;
    }

    .me-lg-auto {
        margin-right: auto !important;
    }

    .mb-lg-0 {
        margin-bottom: 0 !important;
    }

    .mb-lg-1 {
        margin-bottom: 0.5rem !important;
    }

    .mb-lg-2 {
        margin-bottom: 1rem !important;
    }

    .mb-lg-3 {
        margin-bottom: 2rem !important;
    }

    .mb-lg-4 {
        margin-bottom: 3rem !important;
    }

    .mb-lg-5 {
        margin-bottom: 6rem !important;
    }

    .mb-lg-auto {
        margin-bottom: auto !important;
    }

    .ms-lg-0 {
        margin-left: 0 !important;
    }

    .ms-lg-1 {
        margin-left: 0.5rem !important;
    }

    .ms-lg-2 {
        margin-left: 1rem !important;
    }

    .ms-lg-3 {
        margin-left: 2rem !important;
    }

    .ms-lg-4 {
        margin-left: 3rem !important;
    }

    .ms-lg-5 {
        margin-left: 6rem !important;
    }

    .ms-lg-auto {
        margin-left: auto !important;
    }

    .p-lg-0 {
        padding: 0 !important;
    }

    .p-lg-1 {
        padding: 0.5rem !important;
    }

    .p-lg-2 {
        padding: 1rem !important;
    }

    .p-lg-3 {
        padding: 2rem !important;
    }

    .p-lg-4 {
        padding: 3rem !important;
    }

    .p-lg-5 {
        padding: 6rem !important;
    }

    .px-lg-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-lg-1 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-lg-2 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-lg-3 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .px-lg-4 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .px-lg-5 {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }

    .py-lg-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
    }

    .py-lg-1 {
        padding-bottom: 0.5rem !important;
        padding-top: 0.5rem !important;
    }

    .py-lg-2 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important;
    }

    .py-lg-3 {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }

    .py-lg-4 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important;
    }

    .py-lg-5 {
        padding-bottom: 6rem !important;
        padding-top: 6rem !important;
    }

    .pt-lg-0 {
        padding-top: 0 !important;
    }

    .pt-lg-1 {
        padding-top: 0.5rem !important;
    }

    .pt-lg-2 {
        padding-top: 1rem !important;
    }

    .pt-lg-3 {
        padding-top: 2rem !important;
    }

    .pt-lg-4 {
        padding-top: 3rem !important;
    }

    .pt-lg-5 {
        padding-top: 6rem !important;
    }

    .pe-lg-0 {
        padding-right: 0 !important;
    }

    .pe-lg-1 {
        padding-right: 0.5rem !important;
    }

    .pe-lg-2 {
        padding-right: 1rem !important;
    }

    .pe-lg-3 {
        padding-right: 2rem !important;
    }

    .pe-lg-4 {
        padding-right: 3rem !important;
    }

    .pe-lg-5 {
        padding-right: 6rem !important;
    }

    .pb-lg-0 {
        padding-bottom: 0 !important;
    }

    .pb-lg-1 {
        padding-bottom: 0.5rem !important;
    }

    .pb-lg-2 {
        padding-bottom: 1rem !important;
    }

    .pb-lg-3 {
        padding-bottom: 2rem !important;
    }

    .pb-lg-4 {
        padding-bottom: 3rem !important;
    }

    .pb-lg-5 {
        padding-bottom: 6rem !important;
    }

    .ps-lg-0 {
        padding-left: 0 !important;
    }

    .ps-lg-1 {
        padding-left: 0.5rem !important;
    }

    .ps-lg-2 {
        padding-left: 1rem !important;
    }

    .ps-lg-3 {
        padding-left: 2rem !important;
    }

    .ps-lg-4 {
        padding-left: 3rem !important;
    }

    .ps-lg-5 {
        padding-left: 6rem !important;
    }

    .text-lg-start {
        text-align: left !important;
    }

    .text-lg-end {
        text-align: right !important;
    }

    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .sticky-xl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .dropdown-menu-xl-start {
        --bs-position: start;
    }

    .dropdown-menu-xl-start[data-bs-popper] {
        left: 0;
        right: auto;
    }

    .dropdown-menu-xl-end {
        --bs-position: end;
    }

    .dropdown-menu-xl-end[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .float-xl-start {
        float: left !important;
    }

    .float-xl-end {
        float: right !important;
    }

    .float-xl-none {
        float: none !important;
    }

    .d-xl-inline {
        display: inline !important;
    }

    .d-xl-inline-block {
        display: inline-block !important;
    }

    .d-xl-block {
        display: block !important;
    }

    .d-xl-grid {
        display: grid !important;
    }

    .d-xl-table {
        display: table !important;
    }

    .d-xl-table-row {
        display: table-row !important;
    }

    .d-xl-table-cell {
        display: table-cell !important;
    }

    .d-xl-flex {
        display: flex !important;
    }

    .d-xl-inline-flex {
        display: inline-flex !important;
    }

    .d-xl-none {
        display: none !important;
    }

    .flex-xl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xl-row {
        flex-direction: row !important;
    }

    .flex-xl-column {
        flex-direction: column !important;
    }

    .flex-xl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .gap-xl-0 {
        gap: 0 !important;
    }

    .gap-xl-1 {
        gap: 0.5rem !important;
    }

    .gap-xl-2 {
        gap: 1rem !important;
    }

    .gap-xl-3 {
        gap: 2rem !important;
    }

    .gap-xl-4 {
        gap: 3rem !important;
    }

    .gap-xl-5 {
        gap: 6rem !important;
    }

    .justify-content-xl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xl-center {
        justify-content: center !important;
    }

    .justify-content-xl-between {
        justify-content: space-between !important;
    }

    .justify-content-xl-around {
        justify-content: space-around !important;
    }

    .justify-content-xl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xl-start {
        align-items: flex-start !important;
    }

    .align-items-xl-end {
        align-items: flex-end !important;
    }

    .align-items-xl-center {
        align-items: center !important;
    }

    .align-items-xl-baseline {
        align-items: baseline !important;
    }

    .align-items-xl-stretch {
        align-items: stretch !important;
    }

    .align-content-xl-start {
        align-content: flex-start !important;
    }

    .align-content-xl-end {
        align-content: flex-end !important;
    }

    .align-content-xl-center {
        align-content: center !important;
    }

    .align-content-xl-between {
        align-content: space-between !important;
    }

    .align-content-xl-around {
        align-content: space-around !important;
    }

    .align-content-xl-stretch {
        align-content: stretch !important;
    }

    .align-self-xl-auto {
        align-self: auto !important;
    }

    .align-self-xl-start {
        align-self: flex-start !important;
    }

    .align-self-xl-end {
        align-self: flex-end !important;
    }

    .align-self-xl-center {
        align-self: center !important;
    }

    .align-self-xl-baseline {
        align-self: baseline !important;
    }

    .align-self-xl-stretch {
        align-self: stretch !important;
    }

    .order-xl-first {
        order: -1 !important;
    }

    .order-xl-0 {
        order: 0 !important;
    }

    .order-xl-1 {
        order: 1 !important;
    }

    .order-xl-2 {
        order: 2 !important;
    }

    .order-xl-3 {
        order: 3 !important;
    }

    .order-xl-4 {
        order: 4 !important;
    }

    .order-xl-5 {
        order: 5 !important;
    }

    .order-xl-last {
        order: 6 !important;
    }

    .m-xl-0 {
        margin: 0 !important;
    }

    .m-xl-1 {
        margin: 0.5rem !important;
    }

    .m-xl-2 {
        margin: 1rem !important;
    }

    .m-xl-3 {
        margin: 2rem !important;
    }

    .m-xl-4 {
        margin: 3rem !important;
    }

    .m-xl-5 {
        margin: 6rem !important;
    }

    .m-xl-auto {
        margin: auto !important;
    }

    .mx-xl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-xl-1 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-xl-2 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-xl-3 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .mx-xl-4 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-xl-5 {
        margin-left: 6rem !important;
        margin-right: 6rem !important;
    }

    .mx-xl-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-xl-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .my-xl-1 {
        margin-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
    }

    .my-xl-2 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

    .my-xl-3 {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
    }

    .my-xl-4 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }

    .my-xl-5 {
        margin-bottom: 6rem !important;
        margin-top: 6rem !important;
    }

    .my-xl-auto {
        margin-bottom: auto !important;
        margin-top: auto !important;
    }

    .mt-xl-0 {
        margin-top: 0 !important;
    }

    .mt-xl-1 {
        margin-top: 0.5rem !important;
    }

    .mt-xl-2 {
        margin-top: 1rem !important;
    }

    .mt-xl-3 {
        margin-top: 2rem !important;
    }

    .mt-xl-4 {
        margin-top: 3rem !important;
    }

    .mt-xl-5 {
        margin-top: 6rem !important;
    }

    .mt-xl-auto {
        margin-top: auto !important;
    }

    .me-xl-0 {
        margin-right: 0 !important;
    }

    .me-xl-1 {
        margin-right: 0.5rem !important;
    }

    .me-xl-2 {
        margin-right: 1rem !important;
    }

    .me-xl-3 {
        margin-right: 2rem !important;
    }

    .me-xl-4 {
        margin-right: 3rem !important;
    }

    .me-xl-5 {
        margin-right: 6rem !important;
    }

    .me-xl-auto {
        margin-right: auto !important;
    }

    .mb-xl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xl-1 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xl-2 {
        margin-bottom: 1rem !important;
    }

    .mb-xl-3 {
        margin-bottom: 2rem !important;
    }

    .mb-xl-4 {
        margin-bottom: 3rem !important;
    }

    .mb-xl-5 {
        margin-bottom: 6rem !important;
    }

    .mb-xl-auto {
        margin-bottom: auto !important;
    }

    .ms-xl-0 {
        margin-left: 0 !important;
    }

    .ms-xl-1 {
        margin-left: 0.5rem !important;
    }

    .ms-xl-2 {
        margin-left: 1rem !important;
    }

    .ms-xl-3 {
        margin-left: 2rem !important;
    }

    .ms-xl-4 {
        margin-left: 3rem !important;
    }

    .ms-xl-5 {
        margin-left: 6rem !important;
    }

    .ms-xl-auto {
        margin-left: auto !important;
    }

    .p-xl-0 {
        padding: 0 !important;
    }

    .p-xl-1 {
        padding: 0.5rem !important;
    }

    .p-xl-2 {
        padding: 1rem !important;
    }

    .p-xl-3 {
        padding: 2rem !important;
    }

    .p-xl-4 {
        padding: 3rem !important;
    }

    .p-xl-5 {
        padding: 6rem !important;
    }

    .px-xl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-xl-1 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-xl-2 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-xl-3 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .px-xl-4 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .px-xl-5 {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }

    .py-xl-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
    }

    .py-xl-1 {
        padding-bottom: 0.5rem !important;
        padding-top: 0.5rem !important;
    }

    .py-xl-2 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important;
    }

    .py-xl-3 {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }

    .py-xl-4 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important;
    }

    .py-xl-5 {
        padding-bottom: 6rem !important;
        padding-top: 6rem !important;
    }

    .pt-xl-0 {
        padding-top: 0 !important;
    }

    .pt-xl-1 {
        padding-top: 0.5rem !important;
    }

    .pt-xl-2 {
        padding-top: 1rem !important;
    }

    .pt-xl-3 {
        padding-top: 2rem !important;
    }

    .pt-xl-4 {
        padding-top: 3rem !important;
    }

    .pt-xl-5 {
        padding-top: 6rem !important;
    }

    .pe-xl-0 {
        padding-right: 0 !important;
    }

    .pe-xl-1 {
        padding-right: 0.5rem !important;
    }

    .pe-xl-2 {
        padding-right: 1rem !important;
    }

    .pe-xl-3 {
        padding-right: 2rem !important;
    }

    .pe-xl-4 {
        padding-right: 3rem !important;
    }

    .pe-xl-5 {
        padding-right: 6rem !important;
    }

    .pb-xl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xl-1 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xl-2 {
        padding-bottom: 1rem !important;
    }

    .pb-xl-3 {
        padding-bottom: 2rem !important;
    }

    .pb-xl-4 {
        padding-bottom: 3rem !important;
    }

    .pb-xl-5 {
        padding-bottom: 6rem !important;
    }

    .ps-xl-0 {
        padding-left: 0 !important;
    }

    .ps-xl-1 {
        padding-left: 0.5rem !important;
    }

    .ps-xl-2 {
        padding-left: 1rem !important;
    }

    .ps-xl-3 {
        padding-left: 2rem !important;
    }

    .ps-xl-4 {
        padding-left: 3rem !important;
    }

    .ps-xl-5 {
        padding-left: 6rem !important;
    }

    .text-xl-start {
        text-align: left !important;
    }

    .text-xl-end {
        text-align: right !important;
    }

    .text-xl-center {
        text-align: center !important;
    }

    .fs-1 {
        font-size: 2.8125rem !important;
    }

    .fs-2 {
        font-size: 2.25rem !important;
    }

    .fs-3 {
        font-size: 1.96875rem !important;
    }

    .fs-4 {
        font-size: 1.6875rem !important;
    }

    .fs-5 {
        font-size: 1.40625rem !important;
    }
}

@media (min-width: 1400px) {
    .sticky-xxl-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020;
    }

    .dropdown-menu-xxl-start {
        --bs-position: start;
    }

    .dropdown-menu-xxl-start[data-bs-popper] {
        left: 0;
        right: auto;
    }

    .dropdown-menu-xxl-end {
        --bs-position: end;
    }

    .dropdown-menu-xxl-end[data-bs-popper] {
        left: auto;
        right: 0;
    }

    .float-xxl-start {
        float: left !important;
    }

    .float-xxl-end {
        float: right !important;
    }

    .float-xxl-none {
        float: none !important;
    }

    .d-xxl-inline {
        display: inline !important;
    }

    .d-xxl-inline-block {
        display: inline-block !important;
    }

    .d-xxl-block {
        display: block !important;
    }

    .d-xxl-grid {
        display: grid !important;
    }

    .d-xxl-table {
        display: table !important;
    }

    .d-xxl-table-row {
        display: table-row !important;
    }

    .d-xxl-table-cell {
        display: table-cell !important;
    }

    .d-xxl-flex {
        display: flex !important;
    }

    .d-xxl-inline-flex {
        display: inline-flex !important;
    }

    .d-xxl-none {
        display: none !important;
    }

    .flex-xxl-fill {
        flex: 1 1 auto !important;
    }

    .flex-xxl-row {
        flex-direction: row !important;
    }

    .flex-xxl-column {
        flex-direction: column !important;
    }

    .flex-xxl-row-reverse {
        flex-direction: row-reverse !important;
    }

    .flex-xxl-column-reverse {
        flex-direction: column-reverse !important;
    }

    .flex-xxl-grow-0 {
        flex-grow: 0 !important;
    }

    .flex-xxl-grow-1 {
        flex-grow: 1 !important;
    }

    .flex-xxl-shrink-0 {
        flex-shrink: 0 !important;
    }

    .flex-xxl-shrink-1 {
        flex-shrink: 1 !important;
    }

    .flex-xxl-wrap {
        flex-wrap: wrap !important;
    }

    .flex-xxl-nowrap {
        flex-wrap: nowrap !important;
    }

    .flex-xxl-wrap-reverse {
        flex-wrap: wrap-reverse !important;
    }

    .gap-xxl-0 {
        gap: 0 !important;
    }

    .gap-xxl-1 {
        gap: 0.5rem !important;
    }

    .gap-xxl-2 {
        gap: 1rem !important;
    }

    .gap-xxl-3 {
        gap: 2rem !important;
    }

    .gap-xxl-4 {
        gap: 3rem !important;
    }

    .gap-xxl-5 {
        gap: 6rem !important;
    }

    .justify-content-xxl-start {
        justify-content: flex-start !important;
    }

    .justify-content-xxl-end {
        justify-content: flex-end !important;
    }

    .justify-content-xxl-center {
        justify-content: center !important;
    }

    .justify-content-xxl-between {
        justify-content: space-between !important;
    }

    .justify-content-xxl-around {
        justify-content: space-around !important;
    }

    .justify-content-xxl-evenly {
        justify-content: space-evenly !important;
    }

    .align-items-xxl-start {
        align-items: flex-start !important;
    }

    .align-items-xxl-end {
        align-items: flex-end !important;
    }

    .align-items-xxl-center {
        align-items: center !important;
    }

    .align-items-xxl-baseline {
        align-items: baseline !important;
    }

    .align-items-xxl-stretch {
        align-items: stretch !important;
    }

    .align-content-xxl-start {
        align-content: flex-start !important;
    }

    .align-content-xxl-end {
        align-content: flex-end !important;
    }

    .align-content-xxl-center {
        align-content: center !important;
    }

    .align-content-xxl-between {
        align-content: space-between !important;
    }

    .align-content-xxl-around {
        align-content: space-around !important;
    }

    .align-content-xxl-stretch {
        align-content: stretch !important;
    }

    .align-self-xxl-auto {
        align-self: auto !important;
    }

    .align-self-xxl-start {
        align-self: flex-start !important;
    }

    .align-self-xxl-end {
        align-self: flex-end !important;
    }

    .align-self-xxl-center {
        align-self: center !important;
    }

    .align-self-xxl-baseline {
        align-self: baseline !important;
    }

    .align-self-xxl-stretch {
        align-self: stretch !important;
    }

    .order-xxl-first {
        order: -1 !important;
    }

    .order-xxl-0 {
        order: 0 !important;
    }

    .order-xxl-1 {
        order: 1 !important;
    }

    .order-xxl-2 {
        order: 2 !important;
    }

    .order-xxl-3 {
        order: 3 !important;
    }

    .order-xxl-4 {
        order: 4 !important;
    }

    .order-xxl-5 {
        order: 5 !important;
    }

    .order-xxl-last {
        order: 6 !important;
    }

    .m-xxl-0 {
        margin: 0 !important;
    }

    .m-xxl-1 {
        margin: 0.5rem !important;
    }

    .m-xxl-2 {
        margin: 1rem !important;
    }

    .m-xxl-3 {
        margin: 2rem !important;
    }

    .m-xxl-4 {
        margin: 3rem !important;
    }

    .m-xxl-5 {
        margin: 6rem !important;
    }

    .m-xxl-auto {
        margin: auto !important;
    }

    .mx-xxl-0 {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .mx-xxl-1 {
        margin-left: 0.5rem !important;
        margin-right: 0.5rem !important;
    }

    .mx-xxl-2 {
        margin-left: 1rem !important;
        margin-right: 1rem !important;
    }

    .mx-xxl-3 {
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    .mx-xxl-4 {
        margin-left: 3rem !important;
        margin-right: 3rem !important;
    }

    .mx-xxl-5 {
        margin-left: 6rem !important;
        margin-right: 6rem !important;
    }

    .mx-xxl-auto {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .my-xxl-0 {
        margin-bottom: 0 !important;
        margin-top: 0 !important;
    }

    .my-xxl-1 {
        margin-bottom: 0.5rem !important;
        margin-top: 0.5rem !important;
    }

    .my-xxl-2 {
        margin-bottom: 1rem !important;
        margin-top: 1rem !important;
    }

    .my-xxl-3 {
        margin-bottom: 2rem !important;
        margin-top: 2rem !important;
    }

    .my-xxl-4 {
        margin-bottom: 3rem !important;
        margin-top: 3rem !important;
    }

    .my-xxl-5 {
        margin-bottom: 6rem !important;
        margin-top: 6rem !important;
    }

    .my-xxl-auto {
        margin-bottom: auto !important;
        margin-top: auto !important;
    }

    .mt-xxl-0 {
        margin-top: 0 !important;
    }

    .mt-xxl-1 {
        margin-top: 0.5rem !important;
    }

    .mt-xxl-2 {
        margin-top: 1rem !important;
    }

    .mt-xxl-3 {
        margin-top: 2rem !important;
    }

    .mt-xxl-4 {
        margin-top: 3rem !important;
    }

    .mt-xxl-5 {
        margin-top: 6rem !important;
    }

    .mt-xxl-auto {
        margin-top: auto !important;
    }

    .me-xxl-0 {
        margin-right: 0 !important;
    }

    .me-xxl-1 {
        margin-right: 0.5rem !important;
    }

    .me-xxl-2 {
        margin-right: 1rem !important;
    }

    .me-xxl-3 {
        margin-right: 2rem !important;
    }

    .me-xxl-4 {
        margin-right: 3rem !important;
    }

    .me-xxl-5 {
        margin-right: 6rem !important;
    }

    .me-xxl-auto {
        margin-right: auto !important;
    }

    .mb-xxl-0 {
        margin-bottom: 0 !important;
    }

    .mb-xxl-1 {
        margin-bottom: 0.5rem !important;
    }

    .mb-xxl-2 {
        margin-bottom: 1rem !important;
    }

    .mb-xxl-3 {
        margin-bottom: 2rem !important;
    }

    .mb-xxl-4 {
        margin-bottom: 3rem !important;
    }

    .mb-xxl-5 {
        margin-bottom: 6rem !important;
    }

    .mb-xxl-auto {
        margin-bottom: auto !important;
    }

    .ms-xxl-0 {
        margin-left: 0 !important;
    }

    .ms-xxl-1 {
        margin-left: 0.5rem !important;
    }

    .ms-xxl-2 {
        margin-left: 1rem !important;
    }

    .ms-xxl-3 {
        margin-left: 2rem !important;
    }

    .ms-xxl-4 {
        margin-left: 3rem !important;
    }

    .ms-xxl-5 {
        margin-left: 6rem !important;
    }

    .ms-xxl-auto {
        margin-left: auto !important;
    }

    .p-xxl-0 {
        padding: 0 !important;
    }

    .p-xxl-1 {
        padding: 0.5rem !important;
    }

    .p-xxl-2 {
        padding: 1rem !important;
    }

    .p-xxl-3 {
        padding: 2rem !important;
    }

    .p-xxl-4 {
        padding: 3rem !important;
    }

    .p-xxl-5 {
        padding: 6rem !important;
    }

    .px-xxl-0 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .px-xxl-1 {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }

    .px-xxl-2 {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .px-xxl-3 {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }

    .px-xxl-4 {
        padding-left: 3rem !important;
        padding-right: 3rem !important;
    }

    .px-xxl-5 {
        padding-left: 6rem !important;
        padding-right: 6rem !important;
    }

    .py-xxl-0 {
        padding-bottom: 0 !important;
        padding-top: 0 !important;
    }

    .py-xxl-1 {
        padding-bottom: 0.5rem !important;
        padding-top: 0.5rem !important;
    }

    .py-xxl-2 {
        padding-bottom: 1rem !important;
        padding-top: 1rem !important;
    }

    .py-xxl-3 {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }

    .py-xxl-4 {
        padding-bottom: 3rem !important;
        padding-top: 3rem !important;
    }

    .py-xxl-5 {
        padding-bottom: 6rem !important;
        padding-top: 6rem !important;
    }

    .pt-xxl-0 {
        padding-top: 0 !important;
    }

    .pt-xxl-1 {
        padding-top: 0.5rem !important;
    }

    .pt-xxl-2 {
        padding-top: 1rem !important;
    }

    .pt-xxl-3 {
        padding-top: 2rem !important;
    }

    .pt-xxl-4 {
        padding-top: 3rem !important;
    }

    .pt-xxl-5 {
        padding-top: 6rem !important;
    }

    .pe-xxl-0 {
        padding-right: 0 !important;
    }

    .pe-xxl-1 {
        padding-right: 0.5rem !important;
    }

    .pe-xxl-2 {
        padding-right: 1rem !important;
    }

    .pe-xxl-3 {
        padding-right: 2rem !important;
    }

    .pe-xxl-4 {
        padding-right: 3rem !important;
    }

    .pe-xxl-5 {
        padding-right: 6rem !important;
    }

    .pb-xxl-0 {
        padding-bottom: 0 !important;
    }

    .pb-xxl-1 {
        padding-bottom: 0.5rem !important;
    }

    .pb-xxl-2 {
        padding-bottom: 1rem !important;
    }

    .pb-xxl-3 {
        padding-bottom: 2rem !important;
    }

    .pb-xxl-4 {
        padding-bottom: 3rem !important;
    }

    .pb-xxl-5 {
        padding-bottom: 6rem !important;
    }

    .ps-xxl-0 {
        padding-left: 0 !important;
    }

    .ps-xxl-1 {
        padding-left: 0.5rem !important;
    }

    .ps-xxl-2 {
        padding-left: 1rem !important;
    }

    .ps-xxl-3 {
        padding-left: 2rem !important;
    }

    .ps-xxl-4 {
        padding-left: 3rem !important;
    }

    .ps-xxl-5 {
        padding-left: 6rem !important;
    }

    .text-xxl-start {
        text-align: left !important;
    }

    .text-xxl-end {
        text-align: right !important;
    }

    .text-xxl-center {
        text-align: center !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    .collapsing,
    .collapsing.collapse-horizontal,
    .fade,
    .module--type-accordion_new .accordion-button,
    .module--type-accordion_new .accordion-button:after,
    .sitewide-text .accordion-item .accordion-header:after {
        transition: none;
    }
}

@media print,
screen and (max-width: 63.99875em) {
    .search-form__query {
        font-size: 1rem;
        font-weight: 700;
    }

    .search-form__query::placeholder {
        font-size: 1rem;
        font-weight: 700;
    }

    .search__input::placeholder {
        font-size: 0.8rem;
    }

    .authorPage .meta-content_wrapper {
        display: flex;
    }

    .authorPage .meta-content_wrapper .meta-content {
        margin-left: 0;
        margin-right: 0;
        padding-top: 20px;
    }

    .authorPage .meta-content_wrapper .meta-content .author-name h2 {
        font-size: 28px;
        line-height: 30px;
    }

    .authorPage .meta-content_wrapper .meta-content .author-title p {
        font-size: 16px;
        line-height: 20px;
    }

    .authorPage .meta-content_wrapper .meta-content .author-email p {
        font-size: 14px;
        line-height: 20px;
    }

    .authorPage .meta-content_wrapper .author-pic img {
        border-radius: 37.5px;
        height: 75px;
        width: 75px;
    }

    .authorPage .author-bio {
        padding-right: 1.875rem;
    }

    .authorPage .recent-posts-title p {
        font-size: 1rem;
    }

    .authorPage .recent-posts-title:after,
    .authorPage .recent-posts-title:before {
        margin-bottom: 43px;
    }

    .masthead__title-row.business__line-margin {
        padding-top: 2.25rem;
    }

    .breadcrumb {
        margin: 2rem 0;
    }

    .site-footer .footer-quickLinks {
        flex-flow: column wrap;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top {
        gap: 2rem;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top .site-info {
        justify-items: center;
        padding-top: 1rem;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top .site-info .site-info-contact {
        align-items: center;
        flex-direction: column;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top #footer-social,
    .site-footer .footer-component .footer-component-inner .footer-component-top .footer-social {
        padding-bottom: 1rem;
    }

    .nav-primary__list-item--depth-0 .nav-primary__trigger {
        background-color: #021bc3;
        color: #fff;
        padding: 0;
    }

    .nav-primary__list-item--depth-0 .nav-primary__trigger span {
        align-items: center;
        display: flex;
        height: 30px;
        justify-content: center;
        width: 30px;
    }

    .nav-primary__list-item--depth-0 .nav-primary__trigger span:before {
        position: relative;
    }

    .nav-primary__action--depth-0:focus,
    .nav-primary__action--depth-0:hover {
        color: #fff;
    }

    a.nav-primary__action--depth-0 {
        text-decoration: underline;
    }

    .nav-primary__actions {
        gap: 1rem;
    }

    #site-navigation .grid-container .site-nav__wrap li.nav-primary__list-item--has-children {
        position: relative;
    }

    #site-navigation .grid-container .site-nav__wrap li.nav-primary__list-item--depth-0 {
        border-bottom: 1px solid hsla(0, 0%, 100%, 0.25);
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    #site-navigation .grid-container .site-nav__wrap li.nav-primary__list-item--depth-0:focus,
    #site-navigation .grid-container .site-nav__wrap li.nav-primary__list-item--depth-0:hover {
        background-color: hsla(0, 0%, 100%, 0.1);
    }

    #site-navigation .grid-container .site-nav__wrap li.nav-primary__list-item--has-children:after {
        color: #fff;
        content: "";
        cursor: pointer;
        display: none;
        flex-direction: column;
        -ms-flex-pack: center;
        font-family: Font Awesome\6 Pro;
        font-size: 1rem;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        font-feature-settings: normal;
        font-style: normal;
        font-variant: normal;
        font-weight: 900;
        height: 70px;
        justify-content: center;
        line-height: 1;
        position: absolute;
        right: 20px;
        text-align: right;
        text-rendering: auto;
        text-transform: none;
        top: 0;
        transition: all 0.15s ease-in-out;
        width: 10px;
        z-index: 100;
    }

    #site-navigation .grid-container .site-nav__wrap li.nav-primary__list-item--has-children.nav-primary__list-item--is-active .nav-primary__wrap-child {
        display: block;
        height: auto;
        opacity: 1;
        overflow: visible;
        position: relative;
        visibility: visible;
    }

    #site-navigation .grid-container .site-nav__wrap li .nav-primary__wrap-child {
        display: none;
        padding: 0;
    }

    #site-navigation .grid-container .site-nav__wrap li .nav-primary__wrap-child a {
        font-size: 1rem;
        text-decoration: underline;
    }

    #site-navigation .grid-container .site-nav__wrap li .nav-primary__wrap-child a:first-of-type {
        padding-top: 0.25rem;
    }

    .masthead__nav--is-active #site-navigation {
        box-shadow: -8px 10px 10px rgba(0, 0, 0, 0.2);
        display: block;
        height: auto;
        opacity: 1;
        position: absolute;
        right: 0;
        visibility: visible;
    }

    .sidebar .large-4 {
        background: #fff;
        margin: 0 -1rem 1rem;
        position: -webkit-sticky;
        position: sticky;
        top: -2px;
        width: 100vw;
        z-index: 1;
    }

    .sidebar .large-8 {
        margin: 0;
        width: 100%;
    }

    .nav-section__list {
        padding: 0 26px;
    }

    .module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header {
        align-items: baseline;
    }

    .module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header i {
        margin-right: 0.5rem;
    }

    .module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-header .accordion-button {
        align-items: flex-start;
    }

    .module--type-accordion_new.row_icons .accordion-module__container .row-styles .accordion-group .accordion-item .accordion-collapse .accordion-body {
        padding-left: 2rem;
    }

    .module--type-card_grid .card-grid-module__container .card-grid-module__header {
        margin-left: 0;
        margin-right: 0;
    }

    .module--type-image_gallery .image-gallery-wrapper-slide .image-gallery-img {
        height: 300px;
        max-width: 90vw;
        object-fit: cover;
    }

    .module--type-image_gallery .image-gallery-wrapper-slide-info-caption {
        font-size: 0.875rem;
    }

    .module--type-image_gallery .image-gallery-wrapper-slide-info-credit {
        font-size: 0.75rem;
    }

    .module--type-image_gallery .image-gallery-modal-caption {
        font-size: 0.875rem;
    }

    .module--type-image_gallery .image-gallery-modal-credit {
        font-size: 0.75rem;
    }

    .module--type-image_gallery .swiper-nav .swiper-fraction {
        font-size: 0.875rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero,
    .module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero {
        display: flex;
        flex-direction: column;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link,
    .module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: -1rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content .rss-card-link-wrapper-content-title,
    .module--type-rss_feed.cards.rss-card-columns-two .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content .rss-card-link-wrapper-content-title {
        font-size: 1.375rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero,
    .module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero {
        display: flex;
        flex-direction: column;
    }

    .module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link,
    .module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link {
        margin-left: 1rem;
        margin-right: 1rem;
        margin-top: -1rem;
    }

    .module--type-rss_feed.Cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content .rss-card-link-wrapper-content-title,
    .module--type-rss_feed.cards.rss-card-columns-three .grid.feature-post-grid .rss-card.feature-post-zero .rss-card-link .rss-card-link-wrapper .rss-card-link-wrapper-content .rss-card-link-wrapper-content-title {
        font-size: 1.375rem;
        font-weight: 700;
        line-height: 1.3;
    }

    .module--type-table_of_contents .desc_section {
        margin-bottom: 1.5rem;
    }

    .module--type-table_of_contents .desc_section .module__title * {
        font-size: 1.75rem;
    }

    .module--type-table_of_contents .desc_section .module_desc p {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .module--type-table_of_contents.full_width .toc {
        display: flex;
        flex-direction: column;
    }

    .module--type-table_of_contents.full_width .toc .desc_section .toc-wrapper-cta {
        font-size: 1.125rem;
    }

    .module--type-table_of_contents.full_width .toc .toc-wrapper p {
        font-size: 0.875rem;
    }

    .module--type-table_of_contents.full_width .toc .toc-wrapper .toc-wrapper-list ul li a {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .module--type-table_of_contents.standard_width .toc .desc_section .toc-wrapper-cta {
        font-size: 1.125rem;
    }

    .module--type-table_of_contents.standard_width .toc .toc-wrapper p {
        font-size: 0.875rem;
    }

    .module--type-table_of_contents.standard_width .toc .toc-wrapper .toc-wrapper-list ul li a {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .module--type-table_of_contents.cover_photo .toc {
        align-content: center;
        display: flex;
        flex-flow: column wrap;
    }

    .module--type-table_of_contents.cover_photo .toc-wrapper p {
        font-size: 0.875rem;
    }

    .module--type-table_of_contents.cover_photo .toc-wrapper-list ul li a {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

    .module--type-table_of_contents.cover_photo .toc-wrapper-cta,
    .module--type-table_of_contents.cover_photo .toc-wrapper-cta:after {
        font-size: 1.125rem;
    }

    .module--type-directory_new .directory-grid-module__card.feature {
        width: 100%;
    }

    .module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper .direct_wrapper__one .direct-item__department {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-top: 5px;
    }

    .module--type-directory_new .directory-grid-module__card.feature .directory_info--wrapper .direct_wrapper__one .direct-item__title {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-top: 5px;
    }

    .module--type-directory_new .directory-grid-module__card.lead {
        align-items: center;
        flex-direction: column;
        justify-content: flex-start;
        margin-top: 5rem;
    }

    .module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one .direct-item__pronouns {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .module--type-directory_new .directory-grid-module__card.lead.no_image .directory_info--wrapper .direct_wrapper__one {
        padding-top: 0;
    }

    .module--type-directory_new .directory-grid-module__card.lead .direct_image {
        margin: -80px auto 0;
        position: absolute;
    }

    .module--type-directory_new .directory-grid-module__card.lead .direct_image .card-item__image {
        max-width: 180px;
    }

    .module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper {
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }

    .module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one {
        padding-top: 100px;
        text-align: center;
    }

    .module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one .direct-item__title {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-top: 5px;
    }

    .module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__one .direct-item__department {
        font-size: 0.75rem;
        line-height: 1.5;
        margin-top: 5px;
    }

    .module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__two {
        align-items: center;
        display: flex;
        flex-flow: column;
        justify-content: center;
    }

    .module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__two .direct-item__email {
        font-size: 0.875rem;
        line-height: 1.5;
        width: -webkit-fit-content;
        width: -moz-fit-content;
        width: fit-content;
    }

    .module--type-directory_new .directory-grid-module__card.lead .directory_info--wrapper .direct_wrapper__two .direct-item__phone {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper {
        padding: 1.5rem !important;
        width: 100%;
    }

    .module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__one {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__one .direct-item__name {
        line-height: 1.2;
    }

    .module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__one .direct-item__title {
        font-size: 0.9375rem;
        line-height: 1.2;
        padding-right: 20px;
    }

    .module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__one .direct-item__department,
    .module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__one .direct-item__pronouns,
    .module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__two .direct-item__email,
    .module--type-directory_new .directory-grid-module__card.staff .directory_info--wrapper .direct_wrapper__two .direct-item__phone {
        font-size: 0.875rem;
        line-height: 1.2;
    }

    .module.module--type-directory_new.module--layout-3 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .module.module--type-directory_new.module--layout-3 .directory-group .feature,
    .module.module--type-directory_new.module--layout-3 .directory-group .staff {
        flex-direction: column;
        max-width: 300px;
        min-height: 150px;
        width: 100%;
    }

    .module.module--type-directory_new.module--layout-4 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
        width: 100%;
    }

    .module.module--type-directory_new.module--layout-4 .directory-group .staff {
        max-width: none;
        width: 100%;
    }

    .module.module--type-directory_new.module--layout-2 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    }

    .module.module--type-directory_new.module--layout-2 .directory-group .feature,
    .module.module--type-directory_new.module--layout-2 .directory-group .staff {
        max-width: 300px;
        min-height: 150px;
        width: 100%;
    }

    .module.module--type-directory_new .directory_info--wrapper {
        max-width: none;
    }

    .module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container a.lw_event_item_image {
        max-width: 100%;
        width: 100%;
    }

    .module--type-calendar .calendar-grid-module__loop .localist-widget .localist_widget_container a.lw_event_item_image img {
        display: block;
        width: 100%;
    }

    .module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container a.lw_event_item_image {
        max-width: 100%;
        width: 100%;
    }

    .module--type-calendar .calendar-grid_module__loop .localist-widget .localist_widget_container a.lw_event_item_image img {
        display: block;
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .site-search form {
        margin: 0 auto 40px;
    }

    .site-search input,
    .site-search input:focus {
        font-size: 1.85rem;
    }

    .site-search .popular {
        width: 100%;
    }

    input[type="submit"].site-search--submit {
        font-size: 1rem;
        padding: 0 35px 0 55px;
    }

    .popular,
    .popular .inner-pop {
        width: 100%;
    }

    .related-posts {
        padding-left: 0;
        padding-right: 0;
    }

    header.content-header.right_image .header-wrap {
        padding: 2.5rem 0;
    }

    .width-small .grid-container {
        width: 45%;
    }

    .width-medium .grid-container {
        width: 66%;
    }

    .module--type-accordion {
        padding-left: 0;
        padding-right: 0;
    }

    .module--type-accordion.width-narrow .accordion-module__container .row-styles {
        max-width: calc(66.66667% - 1rem);
    }

    .module--type-accordion.width-large {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .card-grid-module__loop {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .module.module--type-card_grid.module--layout-3 .card-grid-module__loop {
        grid-template-columns: repeat(auto-fill, 31%);
    }

    .module.module--type-card_grid.module--layout-3 .card-grid-module__card:nth-of-type(3n) {
        margin: 0 0 1rem;
    }

    .module.module--type-card_grid.module--layout-4 .card-grid-module__loop {
        grid-template-columns: repeat(auto-fill, 31%);
    }

    .module.module--type-card_grid.module--layout-4 .card-grid-module__card:nth-of-type(4n) {
        margin: 0 0 1rem;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.half .card-grid-image {
        min-height: 400px;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.third,
    .module--type-card_grid_new .card-grid .card-grid-item.third:nth-child(3n):last-child {
        grid-column: span 4;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.quarter {
        grid-column: span 3;
    }

    .module--type-card_grid_new .card-grid .card-grid-item.quarter .card-grid-image {
        min-height: 220px;
    }

    .module-media .media-grid-content {
        padding: 8.3rem 6.25rem;
    }

    .query_text-module__container {
        padding: 0 !important;
    }

    .query_text-module__cta {
        text-align: left;
    }

    .width-large .query_text-module__container {
        padding-left: 1.875rem;
        padding-right: 1.875rem;
    }

    .col-flex {
        flex-direction: row;
    }

    .col-flex.column-1 article.loop-item {
        flex-flow: row nowrap;
    }

    .col-flex.column-1 article.loop-item .loop-item__image {
        width: 30%;
    }

    .col-flex.column-1 article.loop-item.show_image.has_image .loop-item__inner {
        width: 82%;
    }

    .col-flex.column-3 article.loop-item {
        border-bottom: none;
        flex-basis: 33%;
        width: 33%;
    }

    .col-flex.column-3 article.loop-item:nth-of-type(1n) {
        border-right: 1px solid #e8e8e8;
    }

    .col-flex.column-3 article.loop-item:nth-of-type(3n) {
        border-right: none;
    }

    .module--type-query_text.no-background {
        padding-left: 0;
        padding-right: 0;
    }

    .module--type-query_text.white-cards .column-2 .loop-item {
        flex-basis: 49%;
        margin: 30px 0 1%;
        width: 49%;
    }

    .page .module--type-query_text .recent-post .big_text .loop-item:first-of-type {
        flex-flow: row;
    }

    .page .module--type-query_text .recent-post .big_text .loop-item:first-of-type .loop-item__image {
        flex-basis: 65%;
        width: 65%;
    }

    .page .module--type-query_text .recent-post .big_text .loop-item:first-of-type.has_image .loop-item__inner {
        flex-basis: 45%;
        width: 45%;
    }

    .page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__image {
        flex-basis: 65%;
        width: 65%;
    }

    .page .module--type-query_text .big_text .featured-post.loop-item--post.has_image .loop-item__inner {
        flex-basis: 45%;
        width: 45%;
    }

    .page .module--type-query_text .big_text .featured-post.loop-item--post .loop-item__inner .loop-item__title {
        font-size: 2rem;
        line-height: 1.1;
    }

    body .module--type-text.width-narrow .module__title,
    body .module--type-text.width-narrow .t-content {
        margin-right: 0;
    }

    body .module--type-text.width-medium .text-module__container {
        width: 66%;
    }

    .module--type-text .charcoal,
    .module--type-text .dark_grey,
    .module--type-text .grey,
    .module--type-text .navy,
    .module--type-text .yellow {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .text-module__inner {
        flex-direction: row;
    }

    .module--type-directory.module--layout-3 .directory-grid-module__card {
        display: inline-flex;
        flex: 0 0 33%;
        flex-direction: column;
        max-width: 33%;
        width: 33%;
    }

    .module--type-directory.module--layout-4 .directory-grid-module__card {
        flex: 0 0 25%;
        max-width: 25%;
        width: 25%;
    }

    .module--type-directory .charcoal .directory_info--wrapper,
    .module--type-directory .grey .directory_info--wrapper,
    .module--type-directory .navy .directory_info--wrapper,
    .module--type-directory .white .directory_info--wrapper,
    .module--type-directory .yellow .directory_info--wrapper {
        height: 100%;
    }

    .module--type-directory .directory-grid-module__header {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .module--type-directory .direct_wrapper__two .direct-item__email span {
        width: 80%;
    }

    .module--type-directory_new .directory-grid-module__header {
        margin-left: -1.5rem;
        margin-right: -1.5rem;
    }

    .module.module--type-directory_new .direct_wrapper__two .direct-item__email span {
        width: 80%;
    }

    .module--type-calendar.width-medium .event-list .event {
        margin-right: 1.66667%;
        width: 31%;
    }
}

@media print,
screen and (max-width: 74.99875em) {
    .related-posts .related-cards .loop-item__image {
        max-width: none;
    }

    .related_cta {
        margin-top: 0;
    }

    header.content-header.right_image.grid-container {
        padding: 0 0 1rem;
    }

    .nav-primary__list-item--depth-0.audience {
        flex-direction: column;
    }

    .nav-primary__list-item--depth-0.audience .nav-primary__actions {
        background-color: #021bc3;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        width: 100%;
    }

    .nav-primary__list-item--depth-0.audience .nav-primary__actions .nav-primary__trigger {
        border: 1px solid #fff;
    }

    .masthead .nav-primary__list.drop-down .nav-primary__wrap-child ul.nav-primary__list-child {
        padding: 0 1.25rem 1rem;
    }

    .module--type-directory_new .directory-grid-module__loop .directory-group {
        padding-bottom: 2rem;
    }

    .module.module--type-directory_new.module--layout-3 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        width: 100%;
    }

    .module.module--type-directory_new.module--layout-4 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .module.module--type-directory_new.module--layout-2 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }

    .module--type-tabs .swiper-wrapper .swiper-slide .tabs-module-content .tabs-module-content-tab-image img,
    .module--type-tabs.tabs-horizontal .tabs-module-content .tabs-module-content-tab-image img {
        object-fit: contain;
    }

    .module--type-tabs.tabs-horizontal .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link {
        border-bottom: 2px solid transparent;
        border-right: none;
        font-size: 1.125rem;
        line-height: 1.625rem;
        padding: 0.625rem 0.875rem;
        width: auto;
    }

    .module--type-tabs.tabs-horizontal .tabs-module-title-wrapper .swiper-header .swiper-custom-pagination .tabs-module-link.swiper-pagination-bullet-active:after {
        inset: auto auto -18px 50%;
    }
}

@media print,
screen and (max-width: 39.99875em) {
    .authorPage .author-bio {
        padding-right: 1.5rem;
    }

    .single__post-meta .author .profile {
        margin-bottom: 0.5rem;
    }

    .single__post-meta .author .separator {
        display: none;
    }

    .single__post-meta .sticky-header__list .sticky-header__list-item {
        margin-right: 0.75rem;
        margin-top: 0;
    }

    .site-footer .site-footer__block--contact {
        align-items: center;
        display: flex;
        flex-flow: column;
    }

    .module--type-accordion_new .accordion-module__container .row-styles .accordion-group .accordion-title {
        font-size: 1.4rem;
    }

    .module.module--type-directory_new.module--layout-3 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    }

    .module.module--type-directory_new.module--layout-3 .directory-group .feature,
    .module.module--type-directory_new.module--layout-3 .directory-group .staff {
        max-width: none;
    }

    .module.module--type-directory_new.module--layout-4 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
        max-width: none;
    }

    .module.module--type-directory_new.module--layout-2 .directory-group {
        grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
        width: 100%;
    }

    .module.module--type-directory_new.module--layout-2 .directory-group .feature,
    .module.module--type-directory_new.module--layout-2 .directory-group .staff {
        max-width: none;
    }
}

@media screen and (min-width: 100em) {
    .authorPage .author-bio {
        padding-right: 20rem;
    }

    header.content-header.full_image .header-media img,
    header.content-header.full_image .header-media video {
        max-height: 45rem;
    }
}

@media screen and (width >=1025px) {
    header.content-header.video #play-pause {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}

@media screen and (width <=320px) {

    .site-footer .footer-component .footer-component-inner .footer-component-top #footer-title,
    .site-footer .footer-component .footer-component-inner .footer-component-top .footer-title {
        font-size: 2rem;
    }

    .site-footer .footer-component .footer-component-inner .footer-component-top #footer-social li,
    .site-footer .footer-component .footer-component-inner .footer-component-top .footer-social li {
        margin-left: 0.5rem;
    }
}

@media (-ms-high-contrast: none),
screen and (-ms-high-contrast: active) {
    .ie-note {
        display: block;
    }
}

@media screen and (min-width: 60em) {
    .site-footer__nav {
        clear: right;
    }

    .site-footer__nav ol,
    .site-footer__nav-item {
        margin: 0;
        text-align: right;
    }

    .site-footer__nav-item {
        display: inline-block;
    }

    .site-footer__nav-item:after {
        content: "|";
        margin: 0.5rem 0.25rem;
    }

    .site-footer__nav-item:last-child:after {
        content: none;
    }
}

@media (-ms-high-contrast: none) {

    .card-grid-module__loop .charcoal .card_cta,
    .card-grid-module__loop .grey .card_cta,
    .card-grid-module__loop .navy .card_cta,
    .card-grid-module__loop .white .card_cta,
    .card-grid-module__loop .yellow .card_cta,
    .image_above .card-item__description a,
    .image_below .card-item__description a,
    .image_left .card-item__description a,
    .image_right .card-item__description a,
    .module--type-query_text.white-cards .featured-post .loop-item__inner .featured-post__cat {
        display: table !important;
        width: auto;
    }

    .module--type-directory .directory-grid-module__card {
        display: inline-block;
    }

    .module--type-directory .direct_wrapper__two .direct-item__email,
    .module--type-directory .direct_wrapper__two .direct-item__phone {
        display: table;
        width: auto;
    }

    .module--type-directory .direct_wrapper__three .direct-item__bio a {
        display: table !important;
        width: auto;
    }
}

@media screen and (min-width: 90em) {
    .module.module--type-card_grid.module--layout-4 .card-grid-module__loop {
        grid-template-columns: repeat(auto-fill, 23%);
    }

    .nav-module--layout_micronav .nav-module__list-item {
        flex: 0 0 215px;
        width: 215px;
    }
}

@media (prefers-reduced-motion) {
    .module-media.animation-true .animated {
        animation: none !important;
    }
}

@media only screen and (width <=767px) {
    .module--type-text .su-row .su-row .su-column+.su-column {
        margin: 0;
    }
}

@media screen and (max-width: 64em) {
    .module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
        gap: 1.5rem;
    }

    .module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
        padding: 1.875rem 1.875rem 4.6875rem 2.875rem;
    }

    .module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
        gap: 1.25rem;
    }

    .module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
        height: 220px;
    }

    .module--type-calendar.cards.four .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list,
    .module--type-calendar.cards.three .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
        gap: 1.25rem;
        grid-template-columns: repeat(2, 1fr);
    }

    .module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .lw_event_item_description p {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 46.5625em) {
    .module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
        align-content: center;
        flex-wrap: wrap;
    }

    .module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item:nth-of-type(2n) .lw_event_item_link .lw_event_item_image {
        height: 220px;
    }

    .module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item:nth-of-type(2n) .lw_event_item_link .lw_event_content .event-short-date {
        left: 30px;
        right: auto;
        top: -30px;
    }

    .module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link {
        display: flex;
        flex-direction: column;
    }

    .module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
        padding: 1.875rem 1.875rem 4.6875rem;
    }

    .module--type-calendar.cards.one .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date {
        left: 30px;
        top: -30px;
    }

    .module--type-calendar.cards.four .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list,
    .module--type-calendar.cards.three .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list,
    .module--type-calendar.cards.two .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list {
        grid-template-columns: 1fr;
    }

    .module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item {
        max-width: none;
    }

    .module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_item_image {
        display: none;
    }

    .module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
        padding: 1.25rem 1.25rem 3.4375rem 3.75rem;
    }

    .module--type-calendar.list .calendar-grid-module__container .list-style .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content .event-short-date {
        left: -10px;
        top: 35px;
    }

    .module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item {
        justify-self: center;
    }

    .module--type-calendar .calendar-grid-module__container .calendar-grid-module__loop .localist-widget .event_feed_new .localist_widget_container .lw_event_list .lw_event_item .lw_event_item_link .lw_event_content {
        padding: 3.125rem 1.5rem 4.6875rem;
    }

    .lw_view_all_cta a {
        font-size: 1rem;
    }
}