.site-notification {
    padding: .5rem 0;
    background-image: linear-gradient(90deg, var(--primary-blue) 50%, var(--accent-green) 100%);
}
.site-notification p,
.site-notification a {
    margin: 0;
    display: flex;
    align-items: center;
    gap: .5rem;
    text-decoration: none;
    font-weight: 500;
}
@media (max-width: 575px) {
    .site-notification p {
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }
}
.site-notification .btn {
    padding: 0;
}
.site-notification .badge {
    background-color: #ffffff1a;
    font-size: .75rem;
    line-height: 1rem;
    font-weight: 600;
    padding: .125rem .5rem;
    display: inline-flex;
    gap: .375rem;
    align-items: center;
    color: inherit;
}
.site-notification .badge svg {
    width: .75rem;
    height: .75rem;
}
.site-notification span {
    white-space: nowrap;
}
.site-notification a:focus,
.site-notification a:hover {
    color: var(--bs-secondary) !important;
}



header {
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
    background-color: rgba(255,255,255,0);
}

header .top {
    --bs-bg-opacity: .95;
    padding: .25rem 0;
    margin: 0;
    color: #fff9;
    background-color: rgba(var(--bs-dark-rgb),var(--bs-bg-opacity)) !important;
    font-weight: 500;
    border-bottom: solid 1px #ffffff1a;
    backdrop-filter: blur(4px);
}
header .top a:not(.btn) {
    color: #FFF;
    text-decoration: none;
}
header .top a:not(.btn):focus,
header .top a:not(.btn):hover {
    color: var(--secondary-blue);
}
header .top a.btn:hover {
    transform: none !important;
}
header .top .container-lg {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}
header .top .top-nav {
    display: flex;
    gap: .25rem;
}
header .top .top-nav > span {
    display: inline-block;
    margin-right: .25rem;
}
header .top .menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    /* gap: .25rem; */
}
header .top .menu > li + li::before {
    content: "|";
    display: inline-block;
    margin: 0 .25rem;
    color: #ffffff1a;
}
header .top .menu a {
    padding: .25rem .75rem;
    border-radius: .25rem;
}
header .top .menu a:focus,
header .top .menu a:hover {
    background-color: #ffffff1a;
}

header .top .last {
    display: flex;
    align-items: center;
    gap: 1rem;
}

header .nav-items {
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .5s;
    padding: 1.25rem 0;
}
header[data-theme="solid"] .nav-items,
header.sticky .nav-items,
header:has(.dropdown-toggle.show) .nav-items {
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
    backdrop-filter: blur(16px);
    background-color: #fffffff2;
    padding: .75rem 0;
}

header .nav-items .container-lg > .inner {
    /* position: relative; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .inner .logo-area {
    position: relative;
}
header .inner .logo-area > a {
    display: block;
}
header .inner .logo-area > a > img {
    height: var(--logoHeight);
    width: auto;
}
header .logo-light {
    display: inline-block;
}
header .logo-dark {
    display: none;
}
header[data-theme="solid"] .logo-light,
header.sticky .logo-light,
header:has(.dropdown-toggle.show) .logo-light {
    display: none;
}
header[data-theme="solid"] .logo-dark,
header.sticky .logo-dark,
header:has(.dropdown-toggle.show) .logo-dark {
    display: inline-block;
}

header .nav-items .navbar {
    position: static;
}
header #menu-main-menu {
    gap: .25rem;
}
header #menu-main-menu .dropdown {
    position: static;
}
header #menu-main-menu .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: .25rem;
}
header #menu-main-menu .dropdown-toggle::after {
    display: none;
    visibility: hidden;
}
header #menu-main-menu .dropdown-toggle svg {
    width: 1rem;
    height: 1rem;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
}
header #menu-main-menu .dropdown-toggle:focus svg,
header #menu-main-menu .dropdown-toggle:hover svg,
header #menu-main-menu .dropdown-toggle.show svg {
    transform: rotate(180deg);
}
header #menu-main-menu .dropdown-menu {
    --bs-dropdown-link-color: var(--bs-white);
    --bs-dropdown-bg: var(--bs-primary);
}

header #menu-main-menu .dropdown-menu.depth_0 {
    width: 100dvw;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / .1), 0 2px 4px -2px rgb(0 0 0 / .1);
}
header #menu-main-menu .dropdown-menu.depth_0 > .inner {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1rem;
    row-gap: 1rem;
    padding: 0;
}
header #menu-main-menu #menu-item-446 .dropdown-menu.depth_0 > .inner {
    column-gap: 2rem;
    row-gap: 0;
}
@media (min-width: 992px) {
    header #menu-main-menu #menu-item-447 .dropdown-menu.depth_0 > .inner > li.menu-item {
        flex: 0 0 auto;
        width: auto;
        min-width: 18%;
    }
    header #menu-main-menu #menu-item-448 .dropdown-menu.depth_0 > .inner > li.menu-item {
        flex: 0 0 auto;
        width: 18%;
    }
    header #menu-main-menu #menu-item-449 .dropdown-menu.depth_0 > .inner > li.menu-item {
        flex: 1 0 auto;
        width: calc(25% - 2rem);
    }
    header #menu-main-menu .dropdown-menu.depth_0 > .inner > li.menu-item-has-children {
        flex: 1 0 0;
        width: 100%;
    }
}

header #menu-main-menu .dropdown-menu.depth_0 .menu-item.text-secondary {
    --icon-color: var(--bs-secondary);
    --bs-dropdown-link-hover-bg: var(--bs-secondary-bg-subtle-hover);
}
header #menu-main-menu .dropdown-menu.depth_0 .menu-item.text-success {
    --icon-color: var(--bs-success);
    --bs-dropdown-link-hover-bg: var(--bs-success-bg-subtle-hover);
}
header #menu-main-menu .dropdown-menu.depth_0 .menu-item.text-info {
    --icon-color: var(--bs-info);
    --bs-dropdown-link-hover-bg: var(--bs-info-bg-subtle-hover);
}


header #menu-main-menu .dropdown-menu.dropdown,
header #menu-main-menu .dropdown-menu.sub-menu {
    position: static;
    display: block;
}

header #menu-main-menu .dropdown-menu .menu-item {
    border-radius: var(--bs-border-radius);
    border: solid 2px var(--bs-alert-border-color, transparent);
    overflow: clip;
}
header #menu-main-menu #menu-item-446 .dropdown-menu .nav-link {
    white-space: normal;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-weight: 600;
    font-size: .875rem;
    line-height: 1.25;
    padding: 0;
    text-transform: uppercase;
    pointer-events: none;
    color: inherit;
}
header #menu-main-menu .dropdown-menu .dropdown-item {
    white-space: normal;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.5rem;
    padding: .75rem;
    /* border-radius: var(--bs-border-radius); */

    color: var(--bs-alert-color, var(--bs-white));
    background-color: var(--bs-alert-bg);
    border: var(--bs-alert-border);
}
header #menu-main-menu #menu-item-448 .menu-item {
    padding-top: 0;
}
@media (min-width: 992px) {
    header #menu-main-menu #menu-item-448 .dropdown-menu .nav-link {
        white-space: normal;
        display: flex;
        align-items: center;
        gap: 1rem;
        line-height: 1.5rem;
        padding: .75rem;
    }
    header #menu-main-menu #menu-item-448 .dropdown-menu.depth_0 > .inner > .menu-item > .dropdown-item,
    header #menu-main-menu #menu-item-448 .dropdown-menu.depth_0 > .inner > .menu-item > .nav-link {
        padding: 1rem;
        /* min-width: 180px; */
        text-align: center;
        justify-content: center;
        min-height: 85px;
        align-items: flex-start;
        border-bottom: solid 1px rgba(255,255,255,.25);
        margin-bottom: .5rem;
    }
    header #menu-main-menu #menu-item-448 .dropdown-menu.depth_0 > .inner > .menu-item > .dropdown-item p,
    header #menu-main-menu #menu-item-448 .dropdown-menu.depth_0 > .inner > .menu-item > .nav-link p {
        margin: 0;
    }
    header #menu-main-menu #menu-item-448 .dropdown-menu.depth_1 {
        padding-top: 0;
    }
}
header #menu-main-menu .dropdown-menu.depth_1 .dropdown-item {
    font-size: .875rem;
    line-height: 1.25rem;
}
header #menu-main-menu .dropdown-menu .nav-item:not(.alert-success) .dropdown-item:hover,
header #menu-main-menu #menu-item-448 .dropdown-menu .nav-item:not(.alert-success) .nav-link:hover {
    background-color: var(--bs-dropdown-link-hover-bg);
    color: var(--icon-color, var(--secondary-blue));
}
header #menu-main-menu .dropdown-menu .nav-item.alert-success .dropdown-item:hover {
    background-color: var(--bs-success-bg-subtle-hover);

}
@media (min-width: 992px) {
    header #menu-main-menu .dropdown-menu .text-secondary.text-2xl.fw-bold .dropdown-item,
    header #menu-main-menu .dropdown-menu .text-secondary.text-2xl.fw-bold .nav-link {
        color: inherit;
        font-size: inherit;
        font-weight: inherit;
        text-align: center;
    }
    header #menu-main-menu .dropdown-menu .text-secondary.text-2xl.fw-bold .dropdown-item .description,
    header #menu-main-menu .dropdown-menu .text-secondary.text-2xl.fw-bold .nav-link .description {
        display: block;
        color: #ffffffb3;
        font-size: .875rem;
        line-height: 1.25rem;
        font-weight: 400;
        margin-top: .5rem;
    }
}

header #menu-main-menu #menu-item-448 .dropdown-menu.sub-menu .inner {
    row-gap: .25rem;
}
header #menu-main-menu #menu-item-448 .dropdown-menu.depth_1 .dropdown-item {
    padding: .25rem .75rem;
    color: #FFF;
    font-weight: 500;
}

header #menu-main-menu .dropdown-menu.sub-menu .inner {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    row-gap: .5rem;
}
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item {
    align-items: flex-start;
}
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item > .icon-wrap,
header #menu-main-menu #menu-item-449 .dropdown-menu .dropdown-item > .icon-wrap {
    flex: 1 0 32px;
    max-width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--icon-color);
    background-color: var(--bs-alert-color, #ffffff1a);
    border-radius: var(--bs-border-radius);
}
header #menu-main-menu #menu-item-449 .dropdown-menu .dropdown-item > .icon-wrap {
    flex: 1 0 44px;
    max-width: 44px;
    height: 44px;
    color: var(--bs-secondary);
}
header #menu-main-menu #menu-item-449 .dropdown-menu .nav-item:not(.alert-success) .dropdown-item:hover > .icon-wrap {
    background-color: var(--bs-secondary);
    color: var(--bs-primary);
}
header #menu-main-menu #menu-item-449 .dropdown-menu .alert-success .dropdown-item > .icon-wrap {
    color: #ffffffb3;
}
header #menu-main-menu .dropdown-menu.depth_0 .dropdown-item > .icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}
header #menu-main-menu .dropdown-menu.depth_0 .dropdown-item:not(:hover) > .icon-wrap {
    color: #ffffffb3;
}
header #menu-main-menu .dropdown-menu .dropdown-item > .icon-wrap svg {
    width: 1.25rem;
    height: 1.25rem;
}
header #menu-main-menu #menu-item-446 .icon-wrap svg,
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item > .icon-wrap svg {
    width: 1rem;
    height: 1rem;
}
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item > div {
    align-self: center;
}
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item > div > .description {
    display: block;
    font-weight: 400;
    font-size: .75rem;
    line-height: 1rem;
    margin-top: .25rem;
    color: #FFF9;
}
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item > div > .description > *:last-child {
    margin-bottom: 0;
}
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item > div > .badge {
    color: #ffffffb3;
    padding: .125rem .5rem;
    background-color: #ffffff1a;
    border-radius: .25rem;
    margin-top: .5rem;
    font-weight: 400;
}
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item > div > .badge > p {
    margin: 0;
}
header #menu-main-menu .dropdown-menu.sub-menu .dropdown-item:hover > .icon-wrap {
    background-color: var(--icon-color);
    color: var(--bs-primary);
}





header .menu-descriptions {
    flex: 1 0 100% !important;
    max-width: 100% !important;
    border-top: solid 1px #FFF3;
    padding: 1.5rem 0 .5rem;
    margin-top: 0;
    list-style-type: none;
}
header .menu-description {
    display: flex;
    align-items: center;
    justify-content: center;
}
header .menu-description:has(:nth-child(2)) {
    justify-content: space-between;
}
header .menu-description > p {
    margin: 0;
    color: #FFFFFFb3;
}
header .menu-description a {
    color: var(--secondary-blue);
    text-decoration: none;
    font-weight: 700;
    padding: 0;
}
header .menu-description a:focus,
header .menu-description a:hover {
    color: var(--secondary-blue);
}



.custom-toggler {
    border: none;
    background: transparent;
    width: 1.5rem;
    height: 1.5rem;
    position: relative;
}
.custom-toggler .toggler-icon {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #FFF;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}
header[data-theme="solid"] .nav-items .custom-toggler .toggler-icon,
header.sticky .nav-items .custom-toggler .toggler-icon,
header:has(.dropdown-toggle.show) .nav-items .custom-toggler .toggler-icon {
    background-color: var(--bs-primary);
}
/* Animate to X when open */
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(2) {
    opacity: 0;
}
.custom-toggler[aria-expanded="true"] .toggler-icon:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}







footer {
    color: #fff9;
}

footer .inner {
    display: flex;
    padding: 4rem 0 2rem;
}

footer .inner .h1,
footer .inner .h2,
footer .inner .h3,
footer .inner .h4,
footer .inner .h5,
footer .inner .h6,
footer .inner h1,
footer .inner h2,
footer .inner h3,
footer .inner h4,
footer .inner h5,
footer .inner h6 {
    color: inherit;
}

footer .inner .footer-col {
    display: flex;
    flex-direction: column;
    /* gap: 20px; */
}

footer .inner .footer-logo {
    display: block;
    margin: 0 0 1.5rem;
}
footer .inner .footer-logo img {
    height: 3rem;
    width: auto;
}

footer .inner .footer-col .lead {
    margin-bottom: 1.5rem;
}

footer .inner .footer-col h4 {
    color: #fff;
    margin-bottom: 1rem;
}

footer .inner .footer-col h5 {
    color: #fffc;
}

footer .inner .footer-col a {
    color: inherit;
    text-decoration: none;
    display: flex;
    gap: .75rem;
}
footer .inner .footer-col a:focus,
footer .inner .footer-col a:hover {
    color: #FFF;
}

footer .inner .footer-col .address {
    display: flex;
    gap: .5rem;
    margin-top: .25rem;
}
footer .inner .footer-col .address > svg {
    flex-shrink: 0;
    width: .875rem;
    height: .875rem;
    margin-top: .125rem;
}

footer .inner .footer-col .menu {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
footer .inner .footer-col .menu.social-links {
    display: flex;
    align-items: center;
    gap: .75rem;
    margin-top: .5rem;
}
footer .inner .footer-col .menu:not(.social-links) > li + li {
    margin-top: .75em;
}
footer .inner .footer-col .menu.social-links > li > a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #FFF;
    background-color: #ffffff1a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .3s;
}
footer .inner .footer-col .menu.social-links > li > a:focus,
footer .inner .footer-col .menu.social-links > li > a:hover {
    color: var(--primary-blue);
    background-color: var(--secondary-blue);
}


footer .bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid #ffffff1a;
}

footer .bottom .navbar-nav {
    --bs-nav-link-font-weight: 400;
    --bs-nav-link-font-size: .875rem;
}
footer .bottom .nav-area > nav > ul {
    display: flex;
    flex-direction: row;
    margin: 0 0 -10px;
}
footer .bottom .nav-area > nav > ul > li {
    padding: 0 10px;
}
footer .bottom .nav-area > nav > ul > li > a {
    padding: 0;
}



/* template customizations */
.page-template-contact nav:has(.breadcrumb) {
    display: none;
    visibility: hidden;
}
.page-template-contact h2.main-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
}
.page-template-contact .flex-content.column-links:has(.col-md-6) .container {
    max-width: 65rem;
}
.page-template-contact .flex-content.column-links .ctas a {
    width: 100%;
    justify-content: center;
}
.page-template-contact .flex-content.cta-bar h2.main-title {
    font-size: 2.25rem;
    line-height: 2.5rem;
}
.page-template-contact .flex-content.cta-bar:not(.boxed)::after {
    display: none;
}