/* Colors */

:root {
    --light-blue: #51B0D7;
    --blue: #2D4F92;
    --blue-rgb: 45, 79, 146;
    --dark-blue: #243F75;
    --light-green: #1AB05D;
    --green: #00A74B;
    /* --green: #00863C; */
    --dark-green: #00863C;
    --light-pink: #F16696;
    --pink: #EF558A;
    --dark-pink: #D74D7C;
    --light-orange: #FAA73F;
    --orange: #F99D2A;
    --dark-orange: #E08D26;

    --bs-body-color: #000000;
    --bs-border-radius: 0;

    --bs-gray-100: #f8f9fa;
    --bs-gray-150: #f1f3f5;
    --bs-gray-200: #e9ecef;
    --bs-gray-300: #dee2e6;
}

.bg-light-blue {
    background-color: var(--light-blue);
}

.text-light-blue {
    color: var(--light-blue);
}

.border-start-light-blue-2 {
    border-left: 2px solid var(--light-blue);
}

.border-start-light-blue-3 {
    border-left: 3px solid var(--light-blue);
}

.bg-blue {
    background-color: var(--blue);
}

.text-blue {
    color: var(--blue);
}

.border-blue {
    border: var(--bs-border-width) var(--bs-border-style) var(--blue);
}

.border-top-blue {
    border-top: var(--bs-border-width) var(--bs-border-style) var(--blue);
}

.border-start-blue {
    border-left: var(--bs-border-width) var(--bs-border-style) var(--blue);
}

.border-start-blue-2 {
    border-left: 2px solid var(--blue);
}

.border-start-blue-3 {
    border-left: 3px solid var(--blue);
}

.bg-green {
    background-color: var(--green);
}

.text-green {
    color: var(--green) !important;
}

.border-top-green-4 {
    border-top: 4px var(--bs-border-style) var(--green);
}

.border-bot-green-4 {
    border-bottom: 4px var(--bs-border-style) var(--green);
}

.border-start-green-2 {
    border-left: 2px solid var(--green);
}

.border-start-green-3 {
    border-left: 3px solid var(--green);
}

.bg-pink {
    background-color: var(--pink);
}

.text-pink {
    color: var(--pink);
}

.border-start-pink-2 {
    border-left: 2px solid var(--pink);
}

.border-start-pink-3 {
    border-left: 3px solid var(--pink);
}

.bg-orange {
    background-color: var(--orange);
}

.text-orange {
    color: var(--orange);
}

.border-start-orange-2 {
    border-left: 2px solid var(--orange);
}

.border-start-orange-3 {
    border-left: 3px solid var(--orange);
}


/* Fonts */

body {
    font-family: 'Noto Sans', sans-serif;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    color: var(--blue);
    line-height: 1.15;
}

.display-1,
.display-2,
.display-3,
.display-4 {
    color: var(--blue);
}

.display-1 {
    font-size: 4rem;
}

.display-2 {
    font-size: 3.5rem;
}

.display-3 {
    font-size: 3.25rem;
}

.display-4 {
    font-size: 3rem;
}

@media (max-width: 1199.98px) {
    .display-1 {
        font-size: calc(2.3rem + 1.3vw);
    }

    .display-2 {
        font-size: calc(2.2rem + 1.2vw);
    }

    .display-3 {
        font-size: calc(2.1rem + 1.1vw);
    }

    .display-4 {
        font-size: calc(2rem + 1.05vw);
    }
}

h2 .fa-long-arrow-right,
.h2 .fa-long-arrow-right,
h3 .fa-long-arrow-right,
.h3 .fa-long-arrow-right {
    color: var(--green) !important;
}

#main_content a:not(.btn) {
    font-weight: 700;
    color: var(--blue);
    text-decoration: none;
}

#main_content a:not(.btn):hover,
#main_content a:not(.btn):focus,
#main_content a:not(.btn):target,
#main_content a:not(.btn):active {
    color: var(--dark-blue);
    text-decoration: underline;
}

#main_content p > a:not(.btn) {
    display: inline-block;
    word-break: break-word;
}

.eyebrow {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .25rem;
}

.lead {
    font-weight: inherit;
}

@media (max-width: 1399.98px) {
    .lead {
        font-size: 1.225rem;
    }
}

@media (max-width: 1199.98px) {
    .lead {
        font-size: 1.2rem;
    }
}

@media (max-width: 991.98px) {
    .lead {
        font-size: 1.175rem;
    }
}

@media (max-width: 767.98px) {
    .lead {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .lead {
        font-size: 1.125rem;
    }
}

.large {
    font-size: 1.35rem;
}

.font-12px {
    font-size: 12px;
}

blockquote {
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 4px solid var(--green);
}


/* Utilities */

:target {
    scroll-margin-top: calc(145px + 3rem);
}

@media (max-width: 1199.98px) {
    :target {
        scroll-margin-top: calc(122px + 3rem);
    }
}

.g-12px {
    --bs-gutter-x: .75rem;
    --bs-gutter-y: .75rem;
}

.mt-12px {
    margin-top: 12px;
}

.no-last-p-margins p:last-child {
    margin-bottom: 0;
}

ul {
    list-style-type: square;
}

ul li::marker {
    color: var(--blue);
}

ul ul {
    list-style-type: circle;
}

.favicon {
    width: 35px;
}

.t-auto {
    top: auto;
}

.nav-white a {
    color: var(--bs-white) !important;
}

.green-stripes {
    opacity: 1;
    border-top: 0;
    height: 5px;
    background: repeating-linear-gradient(-60deg,
    var(--green),
    var(--green) 5px,
    var(--bs-white) 5px,
    var(--bs-white) 7px);
}

.pink-double-stripe {
    opacity: 1;
    border-top: 6px double var(--pink);
}


/* Banners */

.bg-banner {
    position: relative;
    display: flex;
    min-height: 600px;
    height: auto;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    color: var(--bs-white);
}

.bg-banner .container,
.bg-banner .container-fluid {
    position: relative;
    z-index: 2;
    align-self: center;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.bg-banner .bg-banner-overlay {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: linear-gradient(-270deg, rgba(0, 76, 151, 1) 0%, rgba(0, 76, 151, 0) 100%);
}

.bg-banner .bg-banner-overlay.reverse {
    background: linear-gradient(-270deg, rgba(0, 76, 151, 0) 0%, rgba(0, 76, 151, 1) 100%);
}

.bg-banner h2 {
    color: var(--bs-white);
}

@media (max-width: 991.98px) {
    .bg-banner .bg-banner-overlay {
        background: linear-gradient(-270deg, rgba(0, 76, 151, 1) 0%, rgba(0, 76, 151, .5) 100%);
    }

    .bg-banner .bg-banner-overlay.reverse {
        background: linear-gradient(-270deg, rgba(0, 76, 151, .5) 0%, rgba(0, 76, 151, 1) 100%);
    }
}


/* Line Clamping */

.line-clamp {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.clamp-one {
    line-clamp: 1;
    -webkit-line-clamp: 1;
}

.clamp-two {
    line-clamp: 2;
    -webkit-line-clamp: 2;
}

.clamp-three {
    line-clamp: 3;
    -webkit-line-clamp: 3;
}

.clamp-four {
    line-clamp: 4;
    -webkit-line-clamp: 4;
}

.clamp-five {
    line-clamp: 5;
    -webkit-line-clamp: 5;
}

.clamp-six {
    line-clamp: 6;
    -webkit-line-clamp: 6;
}


/* Navigation */

.nav.text-blue a {
    color: var(--blue) !important;
}

.nav.text-white a {
    color: var(--bs-white) !important;
}

#global_top_bar {
    font-size: 14px;
    background-color: var(--blue);
    color: var(--bs-white);
    text-align: center;
}

#global_top_bar a {
    font-weight: 700;
    padding: 5px 10px;
    color: var(--bs-white) !important;
    text-decoration: none !important;
}

#global_top_bar a:hover,
#global_top_bar a:focus,
#global_top_bar a:target,
#global_top_bar a:active {
    text-decoration: underline !important;
}

#top_nav {
    justify-content: center;
}

@media (min-width: 576px) {
    #top_nav {
        justify-content: flex-end;
    }
}

#main_navbar {
    padding-top: .75rem;
    padding-bottom: .75rem;
    background-color: var(--bs-white);
    transition: all .3s ease;
    /* border-bottom: var(--bs-border-width) var(--bs-border-style) var(--blue); */
}

#main_navbar.navbar-scrolled {
    box-shadow: var(--bs-box-shadow) !important;
}

a.navbar-brand {
    padding: 0;
}

#main_navbar .nav-link {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--blue);
    padding: 12px 16px;
}

.dropdown-toggle::after {
    display: inline-block;
    vertical-align: .1em;
    content: "\f078";
    font: var(--fa-font-solid);
    font-size: 12px;
    border: 0;
    transform: rotate(0deg);
    transition: all .3s ease;
}

.dropdown-toggle.show:after {
    transform: rotate(-180deg);
}

.dropdown-toggle.show {
    background-color: var(--blue);
    color: var(--bs-white) !important;
}

#main_navbar .dropdown {
    position: relative;
}

#main_navbar .dropdown-menu {
    border: var(--bs-border-width) var(--bs-border-style) var(--blue);
    padding: 12px;
}

#main_navbar .dropdown-item {
    color: var(--blue);
    font-weight: 700;
    padding: 12px;
    white-space: normal;
    border-radius: var(--bs-border-radius);
}

#main_navbar .dropdown-item span {
    margin-left: 2px;
}

#main_navbar .dropdown-item:hover,
#main_navbar .dropdown-item:focus,
#main_navbar .dropdown-item:target,
#main_navbar .dropdown-item:active {
    background-color: var(--blue);
    color: var(--bs-white);
}

.subdrop-item {
    font-size: 14px;
    font-weight: 500 !important;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

@media (min-width: 1200px) {
    #main_navbar .nav-link {
        padding: 33px 16px;
    }

    a.navbar-brand img {
        width: 101px;
        height: 90px;
    }

    .dropdown-menu {
        width: 350px;
        margin-top: 12px;
    }

    .dropdown:nth-last-child(-n+3) > .dropdown-menu {
        left: auto !important;
        right: 0 !important;
    }
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        max-height: calc(80vh - 122px);
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    a.navbar-brand img {
        width: 75px;
        height: 67px;
    }

    #nav_links {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    #nav_links .nav-item {
        display: block;
        width: 100%;
    }

    .dropdown .dropdown-toggle:after {
        font-size: 1rem;
        position: absolute;
        right: 21px;
        top: 17px;
    }
}

.navbar-toggler {
    border: 0;
}


/* MEGA MENU */

.mega-menu {
    padding-bottom: 0 !important;
}

.mega-menu ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    text-align: left;
}

.mega-menu .col-xl-4 {
    position: relative;
}

.mega-menu div[class*="col"] {
    margin-bottom: 12px;
}

@media (min-width: 1200px) {
    .dropdown.mega {
        position: static !important;
    }

    .mega-menu {
        width: 1116px !important;
        left: 0 !important;
        right: 0 !important;
        top: 100%;
        margin: 0 auto !important;
        transition: all .3s ease;
        max-height: calc(80vh - 145px);
        overflow-y: auto;
    }

    .mega-menu .row {
        justify-content: center;
    }

    .dropdown.show:before {
        height: 12px;
        width: 100%;
        content: "";
        position: absolute;
        bottom: -12px;
        left: 0;
        right: 0;
        margin: 0 auto !important;
        display: block;
        z-index: 1000;
    }

    .dropdown.mega.show:before {
        bottom: 0 !important;
    }
}

@media (min-width: 1400px) {
    .mega-menu {
        width: 1296px !important;
    }

    .dropdown.mega.show:before {
        width: 1296px !important;
    }
}


/* Buttons */

.btn {
    font-family: 'Noto Sans', sans-serif;
    font-weight: 700;
    padding: .75rem 1.5rem;
    border-radius: var(--bs-border-radius);
}

.btn-green {
    background-color: var(--green);
    color: var(--bs-white);
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-white);
    text-shadow: 1px 1px 0px var(--bs-black);
}

.btn-green:hover,
.btn-green:focus,
.btn-green:target,
.btn-green:active,
.btn-green.active {
    background-color: var(--dark-green) !important;
    color: var(--bs-white) !important;
    border: var(--bs-border-width) var(--bs-border-style) var(--dark-green) !important;
}

.btn-blue {
    background-color: var(--blue);
    color: var(--bs-white);
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-white);
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:target,
.btn-blue:active,
.btn-blue.active {
    background-color: var(--dark-blue) !important;
    color: var(--bs-white) !important;
    border: var(--bs-border-width) var(--bs-border-style) var(--blue) !important;
}

.btn-outline-blue {
    background-color: var(--transparent);
    color: var(--blue);
    border: var(--bs-border-width) var(--bs-border-style) var(--blue);
}

.btn-outline-blue:hover,
.btn-outline-blue:focus,
.btn-outline-blue:target,
.btn-outline-blue:active,
.btn-outline-blue.active {
    background-color: var(--blue) !important;
    color: var(--bs-white) !important;
    border: var(--bs-border-width) var(--bs-border-style) var(--blue) !important;
}

.btn.border-0 {
    border: 0 !important;
}

.link-blue {
    font-weight: 700;
    color: RGBA(var(--blue-rgb), var(--bs-link-opacity, 1)) !important;
    -webkit-text-decoration-color: RGBA(var(--blue-rgb), var(--bs-link-underline-opacity, 1)) !important;
    text-decoration-color: RGBA(var(--blue-rgb), var(--bs-link-underline-opacity, 1)) !important;
}

ul.list-columns {
    columns: 1;
    -webkit-columns: 1;
    -moz-columns: 1;
    column-gap: 30px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
}

ul.list-columns li {
    break-inside: avoid;
    margin: 0 !important;
}

@media (min-width: 576px) {
    ul.list-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }

    ul.list-columns.big {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

@media (min-width: 992px) {
    ul.list-columns {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }

    ul.list-columns.big {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (min-width: 1200px) {
    ul.list-columns {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }

    ul.list-columns.big {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
}


/* Hero */

#hero {
    position: relative;
    overflow: hidden;
    /* border-bottom: 4px solid var(--green); */
}

.diagonal-overlay-bottom-left::before {
    content: '';
    position: absolute;
    z-index: -1;
    top: auto;
    right: auto;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 75px;
    background-color: var(--blue);
    transform-origin: top left;
    transform: skewY(15deg);
    border-top: 4px solid var(--green);
    box-sizing: border-box;
}


/* Hero Video */

.hero-video {
    overflow: hidden;
}

.hero-video .hero-video_iframe {
    position: absolute;
    z-index: -2;
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    overflow: hidden;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    background-color: var(--bs-transparent);
    background-repeat: no-repeat;
    background-position: 0% 50%;
}

.hero-video video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}

.hero-video iframe {
    width: 100vw;
    height: 56.25vw;
    /* Given a 16:9 aspect ratio, 9/16*100 = 56.25 */
    min-height: 100vh;
    min-width: 177.77vh;
    /* Given a 16:9 aspect ratio, 16/9*100 = 177.77 */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.video-paused-cover {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 76, 151, .95), rgba(0, 76, 151, .95));
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.1s ease;
}

.video-paused .video-paused-cover {
    opacity: 1;
}

#video_container {
    user-select: none !important;
    pointer-events: none !important;
}

#video_container iframe {
    user-select: none !important;
    pointer-events: none !important;
}

.video-pp-btn {
    background-color: var(--bs-transparent);
    color: var(--bs-white) !important;
    border: 0;
    align-self: center;
    bottom: 3px;
    position: absolute;
    text-align: center;
    left: auto;
    right: 0;
    padding: 15px;
    z-index: 100;
    line-height: 1;
}


/* Swipers */

.swiper {
    padding: 0 12px;
    margin: 0 -12px;
    overflow: hidden !important;
}

.swiper-button-prev,
.swiper-button-next {
    font-weight: 700;
    margin-top: -18px;
    width: 36px;
    height: 36px;
    color: var(--blue);
    background-color: var(--bs-white);
    border: var(--bs-border-width) var(--bs-border-style) var(--blue);
    border-radius: var(--bs-border-radius);
    padding: 15px;
    transition: all .3s ease;
}

.swiper-button-prev {
    left: 12px;
}

.swiper-button-next {
    right: 12px;
}

.swiper-button-prev.flush {
    left: 0;
}

.swiper-button-next.flush {
    right: 0;
}

.swiper-button-prev.inset {
    left: 24px;
}

.swiper-button-next.inset {
    right: 24px;
}

.swiper-button-prev.bottom {
    top: auto;
    bottom: 12px;
}

.swiper-button-next.bottom {
    top: auto;
    bottom: 12px;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
}

.swiper-sponsors .swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-pagination-fraction {
    font-family: monospace;
    font-weight: 600;
    color: var(--blue);
    bottom: 16px;
}

.swiper-pagination.white.swiper-pagination-fraction {
    color: var(--bs-white);
}


/* Cards */

.card-outline {
    background-color: var(--bs-white);
    padding: .25rem;
}

.card-outline.border-blue {
    border: 1px solid var(--blue);
}

.card-outline.border-blue .card {
    border: 1px solid var(--blue);
}


/* Accordions */

.accordion-button {
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background-color: var(--bs-gray-100);
}


/* Tables */

table {
    font-size: 14px;
}

table ul {
    padding-left: 1rem;
}

table ul:last-child {
    margin-bottom: 0;
}

table thead th {
    background-color: var(--blue) !important;
    color: var(--bs-white) !important;
}

table td {
    min-width: 150px;
    vertical-align: middle;
}

.table-staying-home {
    vertical-align: middle;
    margin-bottom: 0;
}

.table-staying-home p:last-of-type,
.table-staying-home ul:last-of-type {
    margin-bottom: 0;
}

.table-staying-home th,
.table-staying-home td {
    padding: .75rem;
    min-width: 150px;
}


/* Breadcrumbs */

#breadcrumbs {
    background-color: var(--bs-white);
}

.breadcrumb {
    font-size: 12px;
    background-color: var(--bs-transparent);
    margin-bottom: 0;
    border-radius: 0;
    padding: 0 0 12px 0;
    /* border-bottom: 1px solid var(--bs-gray-300); */
}

.breadcrumb li {
    color: var(--black);
}

.breadcrumb li.active {
    color: var(--black);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--bs-gray-300);
}

.breadcrumb li a {
    font-weight: 500 !important;
    color: var(--blue) !important;
    text-decoration: none;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li.active {
    font-style: italic;
}


/* Subpage Banner */

.subpage-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--bs-white);
    border: 1px solid var(--blue);
    padding: .25rem;
}

.subpage-banner.light-blue {
    background-color: var(--light-blue);
    border: 1px solid var(--light-blue);
}

.subpage-banner.green {
    background-color: var(--green);
    border: 1px solid var(--green);
}

.subpage-banner.pink {
    background-color: var(--pink);
    border: 1px solid var(--pink);
}

.subpage-banner.orange {
    background-color: var(--orange);
    border: 1px solid var(--orange);
}

.subpage-banner-inner {
    background-color: var(--blue);
    color: var(--bs-white);
}

.subpage-banner .container {
    position: relative;
    z-index: 3;
    /* padding-top: 3rem;
    padding-bottom: 3rem; */
}

.subpage-banner .row {
    justify-content: center;
}

.subpage-banner h1 {
    color: var(--bs-white);
    margin: 0;
}

.subpage-banner p {
    margin: .5rem 0 0 0;
}

.subpage-banner a:not(.btn) {
    display: inline-block;
    color: var(--bs-gray-100) !important;
}

.subpage-banner .row.g-12px {
    justify-content: start;
    margin-top: 0px;
}

.subpage-banner .col-subpage-text {
    padding: 3rem;
    align-self: center;
}

.subpage-banner .col-subpage-img {
    text-align: center;
}

.subpage-banner .col-subpage-img img {
    width: 100%;
    height: 100%;
}

@media (max-width: 991.98px) {
    .subpage-banner .col-subpage-text {
        padding: 1.5rem;
    }

    .subpage-banner .col-subpage-img {
        display: none;
        /* padding-left: 0;
        padding-right: 0; */
    }
}


/* Sidebar */

@media (min-width: 1200px) {
    #sidebar {
        width: 394px;
        padding-left: 2rem;
    }
}

#sidebar {
    top: calc(145px + 3rem);
    z-index: 1019;
}

#sidebar .card-header {
    background-color: var(--blue);
    border: 0;
    padding: 1rem;
}

#sidebar .card-header h2 {
    font-size: 1.25rem;
    color: var(--bs-white);
    text-align: center;
    margin-bottom: 0;
}

.card-outer {
    border: 1px solid var(--blue);
    padding: .25rem;
}

.card-outer .card {
    border: 1px solid var(--blue);
}

.card-outer.light-blue {
    background-color: var(--light-blue);
    border: 1px solid var(--light-blue);
}

.card-outer.light-blue .card {
    border: 1px solid var(--light-blue);
}

.card-outer.green {
    background-color: var(--green);
    border: 1px solid var(--green);
}

.card-outer.green .card {
    border: 1px solid var(--green);
}

.card-outer.pink {
    background-color: var(--pink);
    border: 1px solid var(--pink);
}

.card-outer.pink .card {
    border: 1px solid var(--pink);
}

.card-outer.orange {
    background-color: var(--orange);
    border: 1px solid var(--orange);
}

.card-outer.orange .card {
    border: 1px solid var(--orange);
}

#sidebar .nav {
    flex-direction: column;
    padding: .75rem;
}

#sidebar .nav a {
    font-weight: 700;
    color: var(--blue);
    padding: .5rem;
}

#sidebar .nav a:hover,
#sidebar .nav a:focus,
#sidebar .nav a:target,
#sidebar .nav a:active {
    background-color: var(--blue);
    color: var(--bs-white);
    text-decoration: none;
}

#sidebar .nav a.active {
    font-style: italic;
    text-decoration: underline;
}

#sidebar .nav ul {
    margin: 0;
    padding: 0 0 0 1rem;
    list-style-type: none;
    font-size: 14px;
}

#sidebar .nav ul li a {
    font-weight: 500 !important;
}

/* =========================================================
   Forms: default label spacing (NOT radio/checkbox labels)
   ========================================================= */
label:not(.custom-control-label) {
    font-weight: bold;
    margin-bottom: 5px;
}

/* Bootstrap custom radios/checkboxes: no top margin, normal weight */
.custom-control-label {
    margin: 0;
    font-weight: normal;
}

/* Keep custom radios aligned when label wraps */
.custom-control.custom-radio {
    display: flex;
    align-items: flex-start;
}

.custom-control.custom-radio .custom-control-input {
    flex: 0 0 auto;
    margin-top: 0.25rem;
    margin-right: 0.5rem;
}

.custom-control.custom-radio .custom-control-label {
    flex: 1 1 auto;
    white-space: normal;
}

.form-check-label {
	margin-top:0px !important;
	font-weight:normal !important;
}

/* News */

.date-text {
    font-family: monospace;
    font-weight: 700;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--bs-black);
    margin-bottom: 0;
    border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
}

.date-text span.day-month {
    background-color: var(--bs-gray-100);
    /* background-color: var(--blue);
    color: var(--bs-white); */
    display: block;
    padding: .25rem .5rem;
}

.date-text span.year {
    display: block;
    padding: .5rem;
}


/* Forms */

.form-control:focus {
    box-shadow: none;
    outline: -webkit-focus-ring-color auto 1px !important;
}


/* Footer */

#global_bot_bar {
    font-size: 14px;
    background-color: var(--blue);
    color: var(--bs-white);
    text-align: center;
}

#global_bot_bar a {
    font-weight: 700;
    padding: 5px 10px;
    color: var(--bs-white) !important;
    text-decoration: none !important;
}

#global_bot_bar a:hover,
#global_bot_bar a:focus,
#global_bot_bar a:target,
#global_bot_bar a:active {
    text-decoration: underline !important;
}


/* Scroll Top Button */

.scroll-top {
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    position: fixed;
    z-index: 10;
    top: auto;
    right: 12px;
    bottom: 12px;
    left: auto;
    text-align: center;
    background-color: var(--bs-white);
    color: var(--blue);
    width: 36px;
    height: 36px;
    line-height: 36px;
    border: 1px solid var(--blue);
    border-radius: var(--bs-border-radius);
    transition: all .3s ease;
}

.scroll-top.show {
    visibility: visible;
    opacity: 1;
}