body {
    background-color: rgb(255, 255, 255);
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    color: rgb(33, 37, 41);
}

section {
    padding: 5rem 0;
}

.secondary-background {
    background-color: #f1f1f1;
}

.btn {
    background-color: rgb(15, 160, 206);
    border-color: rgb(15, 160, 206);
    transition: background-color 0.3s ease-in-out;
    box-sizing: border-box;
    color: white;
}

.btn:hover {
    background-color: rgba(15, 160, 206, 60%);
    border-color: rgb(15, 160, 206);
}

.nav-highlight {
    display: inline-block;
    position: relative;
    text-decoration: none;
}

.nav-highlight.active:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

.nav-highlight:after {
    content: '';
    position: absolute;
    width: 80%;
    transform: scaleX(0);
    border-radius: 5px;
    height: 0.10em;
    bottom: 0;
    left: 10%;
    background: rgb(15, 160, 206);
    transform-origin: bottom right;
    transition: transform 0.25s ease-out;
}

.nav-highlight:hover:after {
    transform: scaleX(1);
    transform-origin: bottom left;
}

/*.hero-section {*/
/*    position: relative;*/
/*    height: 100vh;*/
/*    width: 100%;*/
/*}*/

#main-hero {
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#mid-hero {
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: rgb(255, 255, 255);
    opacity: 0;
    transform: translateY(100px);
    animation: moveUp 1s ease-out forwards;
}

.hero-content h1 {
    font-weight: 700;
    font-size: 2em;
}

.hero-content p {
    font-size: 1.25rem;
    max-width: 42rem;
}

@keyframes moveUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.highlight {
    color: rgb(15, 160, 206);
}

.site-link {
    text-decoration: none;
    font-weight: bold;
    color: rgb(15, 160, 206);
    transition: color 0.3s ease-in-out;
}

.text-large {
    font-size: 1.15rem;
}

.m-top {
    margin-top: 20px;
}

.site-link:hover {
    color: rgba(15, 160, 206, 80%);
}

.site-link i {
    transition: transform 0.3s ease-in-out;
}

.t-left i {
    margin-left: 5px;
}

.t-left:hover i {
    transform: translateX(-5px);
}

.t-right:hover i {
    transform: translateX(-5px);
}

.zoom-on-hover {
    transition: transform 0.3s ease-in-out;
}

.zoom-on-hover:hover {
    transform: scale(1.1);
}

.page-break {
    border: none;
    border-top: 2px solid #333;
    margin: 20px 0;
    page-break-after: always;
}

.card {
    transition: box-shadow 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.card-header {
    background-color: rgb(15, 160, 206);
    color: white;
    cursor: pointer;
}

.card-body {
    padding: 2rem;
}

.card-img-top {
    border-radius: 0.5rem 0.5rem 0 0;
}

.card-body h3 {
    color: #35495e;
}

.card-body p {
    color: #6c757d;
}

.article-header p {
    color: #6c757d;
}

.article-thumbnail img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article-content {
    font-size: 1.125rem;
    line-height: 1.6;
    color: rgb(52, 58, 64);
}

.article-footer p {
    color: #6c757d;
    font-size: 0.875rem;
}

.pagination .page-item .page-link {
    color: rgb(15, 160, 206);
}

.pagination .page-item.active .page-link {
    background-color: rgb(15, 160, 206);
    border-color: rgb(15, 160, 206);
    color: white;
}

#hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: -1;
}

#contact-form {
    background-color: #f1f1f1;
    border: 2px solid #e9ecef;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#contact-form .custom-control {
    background-color: #f8f9fa;
    border-color: #ced4da;
    transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

#contact-form .custom-control:focus {
    background-color: #f8f9fa;
    border-color: rgb(15, 160, 206);
    box-shadow: none;
}

#about .card {
    height: 325px;
}

#partners-logo {
    bottom: 1rem;
    left: 1rem;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

#archive-search form,
#archive-filters form {
    display: flex;
    align-items: center;
}

#archive-search .form-control {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#archive-search .btn-link {
    background: none;
    border: none;
    padding: 0;
    color: #ced4da;
}

#archive-search .btn-link:hover {
    color: #35495e;
}

#archive-filters .form-select {
    width: 100%;
    max-width: 300px;
    padding: 10px;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#archive-filters .btn {
    padding: 10px 20px;
    border-radius: 0.25rem;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
}

#archive-filters .btn:hover {
    background-color: #5a6268;
}

#archive-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}

#archive-pagination .page-numbers {
    display: inline-block;
    margin: 0 5px;
    padding: 10px 15px;
    font-weight: bold;
    color: rgb(15, 160, 206);
    text-decoration: none;
    transition: color 0.3s ease;
}

#archive-pagination .page-numbers:hover {
    color: #0056b3;
}

#archive-pagination .page-numbers.current {
    color: #fff;
    background-color: rgb(15, 160, 206);
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#archive-pagination .prev,
#archive-pagination .next {
    margin: 0 10px;
    padding: 10px 15px;
    font-weight: bold;
    color: rgb(15, 160, 206);
    text-decoration: none;
    transition: color 0.3s ease;
}

#archive-pagination .prev:hover,
#archive-pagination .next:hover {
    color: #0056b3;
}

@media only screen and (max-width: 991px) {
    #engage-navbar.fixed-top {
        position: relative;
    }

    #engage-navbar .nav-item.text-end {
        text-align: left !important;
    }

    #engage-navbar .nav-item.hide-on-full {
        display: block;
    }

    #engage-navbar .hide-on-mobile {
        display: none;
    }

    #engage-navbar .nav-item.nav-btn.btn {
        background: none !important;
        border: none !important;
        color: inherit !important;
        padding: 0 !important;
        font: inherit !important;
        line-height: inherit !important;
        display: inline-block !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        text-align: inherit;
    }

    #engage-navbar .nav-highlight:after {
        transform: scaleX(0) !important;
        transform-origin: bottom left;
    }

    #engage-navbar .nav-highlight:hover:after {
        transform: scaleX(0) !important;
        transform-origin: bottom left;
    }

    #engage-navbar .nav-item .nav-link:hover {
        color: rgba(15, 160, 206, 100%);
        transition: color 0.3s ease-in-out;
    }
}

@media only screen and (min-width: 992px) {
    #engage-navbar .nav-item.hide-on-full {
        display: none;
    }

    #engage-navbar .hide-on-mobile {
        display: block;
    }

    #engage-navbar .nav-item.nav-btn {
        background-color: rgb(15, 160, 206);
        border-color: rgb(15, 160, 206);
        transition: background-color 0.3s ease-in-out;
        border-radius: .375rem;
        border-style: solid;
        box-sizing: border-box;
        padding: 0;
    }

    #engage-navbar .nav-item.nav-btn:hover {
        background-color: rgba(15, 160, 206, 60%);
        border-color: rgb(15, 160, 206);
    }

    #engage-navbar .nav-item.nav-btn:active {
        background-color: rgba(15, 160, 206, 60%);
    }

    #engage-navbar .nav-item.nav-btn a {
        color: rgb(255, 255, 255);
    }

    #engage-navbar.front-page {
        padding-top: 20px;
        padding-bottom: 20px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    #engage-navbar .dropdown-menu.show {
        left: auto;
        right: -20px;
    }
}

#engage-navbar {
    background-color: rgba(255, 255, 255, 0.8);
    border-bottom-color: rgb(226, 232, 240);
    border-bottom-style: solid;
    border-width: 0;
    transition: 0.6s;
}

#engage-navbar .navbar-brand {
    font-weight: 600;
    background: linear-gradient(to right, #1d3774, rgb(15, 160, 206));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

#engage-navbar .navbar-brand .logo {
    height: 42px;
    width: auto;
}

#engage-navbar .ml-1 {
    margin-left: 10px;
}

#engage-navbar .dropdown-menu {
    border-radius: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border: none;
}

#engage-navbar .dropdown-item {
    padding: 10px 20px;
    color: #333;
}

#engage-navbar .dropdown-item:hover {
    background-color: #f8f9fa;
    color: #007bff;
}

#engage-navbar .dropdown-toggle::after {
    margin-left: .255em;
}

#site-footer {
    background-color: #343a40;
    color: #ffffff;
    padding: 3rem 0;
}

#site-footer h5 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

#site-footer p, #site-footer address, #site-footer ul {
    font-size: 0.875rem;
}

#site-footer .list-unstyled {
    padding-left: 0;
    list-style: none;
}

#site-footer .list-inline {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

#site-footer .list-inline-item {
    margin-left: 1rem;
}

#site-footer .text-decoration-none:hover {
    text-decoration: underline;
}

#site-footer .fab {
    font-size: 1.5rem;
}

#site-footer a {
    color: #ffffff;
    transition: background-color 0.3s ease-in-out;
}

#site-footer a:hover {
    color: rgb(15, 160, 206);
}

#site-footer .footer-logo {
    max-width: 275px;
}

#manager-broker-select-div {
    min-width: 350px;
}

#broker-group-management,
#manager-view .card {
    border: none;
}

@media only screen and (max-width: 991px) {
    #manager-view .nav-item {
        margin-top: 15px;
    }
}

@media only screen and (min-width: 992px) {
    #manager-view .nav-item {
        margin-right: 10px;
    }
}

#files-table tr {
    cursor: pointer;
}

#wp-payables {
    min-height: calc(100vh - 500px);
}

#sign-in-container {
    max-width: 350px;
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
}

#sign-in-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

#sign-in-container .btn {
    width: 100%;
    background-color: #0073aa;
    color: #fff;
    border: none;
}

#site-logo {
    margin-bottom: 20px;
}

#site-logo img {
    max-width: 84px;
    height: auto;
}

#reset-password {
    max-width: 350px;
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
}

#reset-password h2 {
    text-align: center;
    margin-bottom: 20px;
}

#reset-password .btn {
    width: 100%;
    background-color: #0073aa;
    color: #fff;
    border: none;
}

#password-change-container {
    max-width: 350px;
    margin: 100px auto;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
}

#password-change-container h2 {
    text-align: center;
    margin-bottom: 20px;
}

#password-change-container .btn {
    width: 100%;
    background-color: #0073aa;
    color: #fff;
    border: none;
}