/* GENERAL */

.text-shadow-0 {
    text-shadow: none !important;
}

.text-shadow {
    text-shadow: 0px 0px 10px rgba(0,0,0,.25);
}

.text-shadow-dark {
    text-shadow: 0px 0px 10px rgba(0,0,0,1);
}

.box-shadow {
	box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.box-shadow-dark {
	box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}

.box-shadow-0 {
    box-shadow: none !important;
}

/* Custom CSS to style the <hr> tag */
    hr.light {
      border-color: #f0f0f0; /* Replace with your desired light color */
    }

.svg-shadow {
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
}

.image-overlay-25 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.25);
}

.image-overlay-50 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}

.image-overlay-75 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.75);
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    padding: 1rem 1.5rem;
    color: #FFF;
}

.lazyload {
	opacity: 0;
}

.lazyloading {
	opacity: 1;
	transition: opacity 300ms;
}

img.lazyload:not([src]) {
	visibility: hidden;
}

.no-hover {
	color: inherit;
}

.no-hover:hover {
	text-decoration: none;
	color: inherit;
}

.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.bg-arches {
    background: url('/assets/img/logos/arches.svg') center center no-repeat;
}

.bg-arches-faded {
    background: linear-gradient(rgba(255,255,255,.85),rgba(255,255,255,.85)), url('/assets/img/logos/arches.svg') center center no-repeat;
}

.bg-favicon-white {
    background: linear-gradient(rgba(247,249,250,0),rgba(247,249,250,0)), url('/assets/img/logos/favicon.svg') center center no-repeat;
}

.bg-dot-waves {
    background: linear-gradient(rgba(255,255,255,.75),rgba(255,255,255,.75)), url('/assets/img/content/dot-waves.jpg') center center no-repeat;
}

.bg-blue-gradient {
    background: linear-gradient(0deg, rgba(33,40,108,1),rgba(0,60,120,1));
}

.bg-blue-gradient-rev {
    background: linear-gradient(-180deg, rgba(33,40,108,1),rgba(0,60,120,1));
}

.arch-icon {
    max-width: 100%;
    display: inline-block;
    margin-bottom: .75rem;
    width: 225px;
}

.bg-column {
    min-height: 540px;
}

@media (max-width: 991.98px) {
    .bg-column {
        min-height: 540px;
    }
}

@media (max-width: 767.98px) {
    .bg-column {
        min-height: 405px;
    }
}

@media (max-width: 575.98px) {
    .bg-column {
        min-height: 270px;
    }
}

.bg-banner {
    padding: 7rem 0;
}

@media (max-width: 1199.98px) {
    .bg-banner {
        padding: 6rem 0;
    }
}

@media (max-width: 991.98px) {
    .bg-banner {
        padding: 5rem 0;
    }
}

@media (max-width: 767.98px) {
    .bg-banner {
        padding: 4rem 0;
    }
}

@media (max-width: 575.98px) {
    .bg-banner {
        padding: 3rem 0;
    }
}

.hero-arrow {
    width: 200px;
    position: absolute;
    z-index: 2;
    margin: auto;
    top: -4.2rem;
    left: 0;
    right: 0;
}

.badge {
    border-radius: 0;
    text-transform: uppercase;
}

.badge-trans {
    color: #21286C;
    background: rgba(255,255,255,.75);
}

.rounded-xl {
    border-radius: 30px !important;
}

blockquote {
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: .5rem solid #003C78;
}

@media (max-width: 1199.98px) {
    .tooltip {
        display: none;
    }
}

.divided-text {
    overflow: hidden;
    text-align: center;
}

.divided-text:before,
.divided-text:after {
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.divided-text:before {
    right: 7.5px;
    margin-left: -50%;
}

.divided-text:after {
    left: 7.5px;
    margin-right: -50%;
}

.divided-text.faded:before,
.divided-text.faded:after {
    background-color: rgba(255,255,255,.125);
}

.divided-text.white:before,
.divided-text.white:after {
    background-color: rgba(255,255,255,1);
}

.divided-text.lgrey:before,
.divided-text.lgrey:after {
    background-color: #DEE2E6;
}

.divided-text.blue:before,
.divided-text.blue:after {
    background-color: #003C78;
}

.divided-text.orange:before,
.divided-text.orange:after {
    background-color: #EA9016;
}

.divided-text.muted:before,
.divided-text.muted:after {
    background-color: #6C757D;
}

.divided-text:before,
.divided-text:after {
    background-color: rgba(0,0,0,1);
}


/* PADDING/MARGIN */

.px-5px {
    padding-left: 5px;
    padding-right: 5px;
}

.px-75 {
    padding-left: .75rem;
    padding-right: .75rem;
}

.px-7-5px {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.mt-n375 {
    margin-top: -.375rem;
}

.mt-n4 {
    margin-top: -1.5rem;
}

.mt-n5 {
    margin-top: -3rem;
}

.mt-n10 {
    margin-top: -6rem;
}

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

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

.mx-7-5 {
    margin-left: 7.5px;
    margin-right: 7.5px;
}

.mb-7-5 {
    margin-bottom: 7.5px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-18 {
    margin-bottom: 18px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-33 {
    margin-bottom: 33px;
}

.mb-38 {
    margin-bottom: 38px;
}

.my-75 {
    margin-top: .75rem;
    margin-bottom: .75rem;
}

.px-5pixels {
    padding-left: 5px;
    padding-right: 5px;
}

.px-7-5 {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.px-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.py-7-5 {
    padding-top: 7.5px;
    padding-bottom: 7.5px;
}

.py-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.p-15 {
    padding: 15px;
}

.pt-10 {
    padding-top: 10px;
}

.pt-15 {
    padding-top: 15px;
}

.pb-15 {
    padding-bottom: 15px;
}

.pb-18 {
    padding-bottom: 18px;
}

.pb-33 {
    padding-bottom: 33px;
}

.pb-38 {
    padding-bottom: 38px;
}

.row-15 {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}

.row-15 [class*=col-],
.row-15 [class*=col] {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}

.row-small {
    justify-content: center;
    text-align: center;
}

.row-small > .col-12 {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
}

@media (min-width: 576px) {
    .row-small > .col-12 {
        -ms-flex: 0 0 91.666667% !important;
        flex: 0 0 91.666667% !important;
        max-width: 91.666667% !important;
    }
}

@media (min-width: 768px) {
    .row-small > .col-12 {
        -ms-flex: 0 0 83.333333% !important;
        flex: 0 0 83.333333% !important;
        max-width: 83.333333% !important;
    }
}

@media (min-width: 992px) {
    .row-small > .col-12 {
        -ms-flex: 0 0 75% !important;
        flex: 0 0 75% !important;
        max-width: 75% !important;
    }
}

@media (min-width: 1200px) {
    .row-small > .col-12 {
        -ms-flex: 0 0 66.666667% !important;
        flex: 0 0 66.666667% !important;
        max-width: 66.666667% !important;
    }
}

.col-12 p:last-child,
.col-12 ol:last-child,
.col-12 ul:last-child {
    margin-bottom: 0;
}


/* TYPOGRAPHY

font-family: 'Poppins', sans-serif;
font-family: 'Playfair Display SC', serif;

*/

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

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

.font-weight-600 {
    font-weight: 600;
}

@media (max-width: 1199.98px) {
    h1, .h1 {
        font-size: calc(1.5rem + 1vw);
    }

    h2, .h2 {
        font-size: calc(1.4rem + 0.75vw);
    }

    h3, .h3 {
        font-size: calc(1.3rem + 0.6vw);
    }

    h4, .h4 {
        font-size: calc(1.2rem + 0.5vw);
    }

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

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

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

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

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    color: #000;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

a {
    font-weight: 600;
    color: #003C78;
    transition: all .3s ease;
}

a i {
    color: #EA9016;
}

a i {
    color: #EA9016;
}

a:hover,
a:focus,
a:target,
a:active {
    color: #21286C;
}

.medium {
    font-size: 14px;
}

.large {
    font-size: 17px;
}

.huge {
    font-size: 22px;
}

.lead {
    font-size: 1.2rem;
}

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

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

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

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

.eyebrow {
    color: #6C757D;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: .5rem;
}

hr.dblue {
    border-top: 1px solid #21286C;
}

hr.lgrey {
    border-top: 1px solid #DEE2E6;
}

hr.white {
    border-top: 1px solid #FFF;
}

hr.faded {
    border-top: 1px solid rgba(255,255,255,.1);
}

.spaced-list li {
    line-height: 1.25;
    padding: .5rem 0;
}

@media (min-width: 992px) {
    .border-lg-right {
        border-right: 1px solid #DEE2E6;
    }
}

ul.small-list-columns {
    width: 100%;
    font-size: 13px;
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
    line-height: 1.25;
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 30px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-fill: balance;
    -webkit-column-fill: balance;
    -moz-column-fill: balance;
}

ul.small-list-columns li {
    margin-bottom: 10px;
}

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

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

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

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


/* COLORS

Blue: #003C78;
Dark Blue: #21286C;
Light Blue: #1EA7DE;
Orange: #EA9016;
Dark Orange: #CC6600;
Light Orange: #F1BF84;
Light Grey: #AAA;

*/

.bg-blue {
    background-color: #003C78;
}

.text-blue {
    color: #003C78;
}

.bg-blue hr,
.bg-dblue hr,
.bg-blue-gradient hr {
    border-top: 1px solid rgba(255,255,255,.1);
}

.bg-dblue {
    background-color: #21286C;
}

.text-dblue {
    color: #21286C;
}

.bg-lblue {
    background-color: #1EA7DE;
}

.text-lblue {
    color: #1EA7DE;
}

.bg-orange {
    background-color: #EA9016;
}

.text-orange {
    color: #EA9016;
}

.border-bottom-orange-3px {
    border-bottom: 3px solid #EA9016;
}

.border-orange-tb {
    border-bottom: 5px solid #EA9016; border-top: 5px solid #EA9016;
}

.bg-dorange {
    background-color: #CC6600;
}

.text-dorange {
    color: #CC6600;
}

.bg-lorange {
    background-color: #F1BF84;
}

.text-lorange {
    color: #F1BF84;
}

.bg-lgrey {
    background-color: #AAA;
}

.text-lgrey {
    color: #AAA;
}

.bg-dgrey {
    background-color: #555;
}

.text-dgrey {
    color: #555;
}

.bg-trans {
    background-color: transparent;
}

.bg-black {
    background-color: #000;
}

.text-black {
    color: #000 !important;
}


/* BUTTONS */

.btn {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.btn .fa-external-link-alt {
    font-size: 12px;
    margin-bottom: 2px;
}

.btn-rounded {
    border-radius: 30px;
}

.btn-reg {
    padding: .75rem 1.5rem;
    border-radius: 30px;
}

.btn-blue {
    background-color: #003C78;
    color: #FFF;
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:target,
.btn-blue:active {
    background-color: #21286C;
    color: #FFF;
}

.btn-blue:focus,
.btn-blue:target,
.btn-blue:active {
    box-shadow: 0 0 0 0.2rem rgba(33,40,108,.25);
}

.btn-outline-blue {
    color: #003C78;
    border: 1px solid #003C78;
    background-color: transparent;
}

.btn-outline-blue:hover {
    background-color: #003C78;
    color: #FFF !important;
    border: 1px solid #003C78;
}

.btn-outline-blue.focus,
.btn-outline-blue:focus,
.btn-outline-blue:target,
.btn-outline-blue:active {
    background-color: #003C78;
    color: #FFF !important;
    border: 1px solid #003C78;
    box-shadow: 0 0 0 .2rem rgba(0,60,120,.5);
}

.btn-orange {
    background-color: #EA9016;
    color: #FFF;
}

.btn-orange:hover,
.btn-orange:focus,
.btn-orange:target,
.btn-orange:active {
    background-color: #CC6600;
    color: #FFF;
}

.btn-orange:focus,
.btn-orange:target,
.btn-orange:active {
    box-shadow: 0 0 0 0.2rem rgba(204,102,0,.25);
}

.btn-orange i {
    color: #003C78;
}

.btn-blue i,
.btn-light i,
.btn-outline-light i {
    color: #EA9016;
}

.btn-light {
    color: #003C78;
}

.btn-light:hover,
.btn-light:focus,
.btn-light:target,
.btn-light:active {
    color: #21286C;
}

.btn-outline-light:hover,
.btn-outline-light:focus,
.btn-outline-light:target,
.btn-outline-light:active {
    color: #21286C;
    background-color: #F8F9FA;
    border-color: #F8F9FA;
}

.btn-warning {
    color: #000 !important;
}


/* SITE BAR */

#siteBar {
    background: #F8F9FA;
    /* border-bottom: 1px solid #DEE2E6; */
}

.nav-scroller {
    position: relative;
    z-index: 2;
}

.nav-scroller .nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    text-align: center;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* .nav-scroller .nav::-webkit-scrollbar {
    display: none;
} */

.nav-scroller::after {
    content: '';
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(247,249,250,1) 100%);
}

#siteBar .fa-external-link-alt {
    font-size: 8px;
    margin-bottom: 1px;
    margin-left: 3px;
}

#siteBar a {
    font-size: 13px;
    padding: .375rem 1rem;
    display: inline-block;
    font-weight: 400;
    position: relative;
}

#siteBar a.active {
    font-weight: 500;
    /* border-left: 1px solid #DEE2E6;
    border-right: 1px solid #DEE2E6; */
    background: #FFF;
    color: #003C78;
    text-decoration: none !important;
}

#siteBar a.active::after {
    content: '';
    width: 100%;
    height: 1px;
    background: #FFF;
    position: absolute;
    top: 100%;
    right: 0;
    bottom: 0;
    left: 0;
}

@media (max-width: 1199.98px) {
    #siteBar a {
        padding: .5rem 1rem;
    }
}

@media (max-width: 575.98px) {
    #siteBar .container {
        padding: 0;
    }

    #siteBar .row {
        margin: 0;
    }

    #siteBar .col-12 {
        padding: 0;
    }
}


/* HEADER BAR */

@media (min-width: 1200px) {
    .headerBar {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 1199.98px) {
    .headerBar {
        display: none;
    }
}

.headerBar {
    line-height: 1.35;
    background: #FFF;
    position: relative;
    z-index: 1000;
    font-weight: 400;
    font-size: 13px;
}

.headerBar p {
    margin-bottom: 0;
}

.headerBar .fa-2x {
    color: #AAA;
}

.headerBar a i {
    font-size: 8px;
    margin-bottom: 1px;
    margin-left: 3px;
}

.mobile-icon-nav {
    background: #003C78;
    color: #FFF !important;
    position: relative;
    z-index: 1000;
    font-weight: 400;
    font-size: 13px;
    border: 1px solid #FFF;
    margin-left: 15px;
    margin-right: 15px;
}

.mobile-icon-nav p {
    margin-bottom: 0;
}

.mobile-icon-nav .fa-2x {
    color: #EEE;
}

.mobile-icon-nav a {
    color: #FFF !important;
}

.mobile-icon-nav a i {
    font-size: 8px;
    margin-bottom: 1px;
    margin-left: 3px;
}


/* NAVIGATION */

.navbar {
    padding: 0;
    background: #003C78;
    border-bottom: 1px solid #21286C;
    transition: all .3s ease;
}

a.navbar-brand {
    padding: 0;
    margin: 0;
}

a.navbar-brand:hover,
a.navbar-brand:focus {
    opacity: .85;
}

.navbar-nav .nav-item .nav-link {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: #FFF;
    position: relative;
    opacity: 1;
    transition: all .3s ease;
}

.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:focus {
    color: #EA9016;
}

.dropdown-menu {
    border-radius: 0;
    background-color: #003C78;
    border: 0;
    border-top: 3px solid #EA9016;
    padding: 10px;
}

.dropdown-item {
    font-weight: 400;
    padding: .5rem .75rem;
    font-size: 14px;
    color: #FFF;
    line-height: 1.35;
    border-radius: 30px;
    white-space: normal;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:target,
.dropdown-item:active {
    background: #21286C;
    color: #FFF;
}

.dropdown-item span {
    float: right;
    margin-left: .5rem;
    font-size: 12px;
}

.dropdown-toggle::after {
    color: #FFF;
}

.nav-link .fa-external-link-alt {
    font-size: 8px;
    margin-left: 4px;
    margin-bottom: 3px;
}

.nav-link span {
    margin-left: .25rem;
}

#mainNavMenu .nav-link i {
    color: #FFF;
    transition: all .3s ease;
}

#mainNavMenu .nav-link:hover i,
#mainNavMenu .nav-link:focus i,
#mainNavMenu .nav-link:target i,
#mainNavMenu .nav-link:active i {
    color: #EA9016;
}

.dropdown-menu.centered {
    left: 50%;
    transform: translateX(-50%);
}

@media (min-width: 1200px) {
    .navbar.navbar-scrolled {
        box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    }

    /* #mainNavMenu {
        margin-left: -.75rem;
        margin-right: -.75rem;
    } */

    #centerNavBar {
        justify-content: space-between;
        width: 100%;
    }

    .navbar-brand img {
        width: 215px;
        height: 57px;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        text-align: center;
    	padding: .75rem;
        position: relative;
        transition: all .3s ease;
    }

    .nav-link span {
        display: none;
    }

    .dropdown-toggle::after {
        font-size: 10px;
    }

    .dropdown:hover .dropdown-toggle {
        color: #EA9016;
    }

    .dropdown:hover ::after,
    .dropdown.show ::after {
        color: #EA9016;
    	transform: rotate(-180deg);
    	transition: all .1s ease;
    }

    .dropdown>.dropdown-toggle:active {
        pointer-events: none;
    }

    .dropdown-menu {
        margin: 0;
        width: 300px;
        box-shadow: 0px 10px 20px rgba(0,0,0,.2);
    }

    #mainNavMenu .dropdown:last-of-type > .dropdown-menu {
	    left: auto;
	    right: 0;
	}

    .dropdown.show a.nav-link:before {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        bottom: 0;
        width: 0;
        height: 0;
        content: '';
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 10px solid #EA9016;
        z-index: -1;
        transition: all .3s ease;
    }

    /* .dropdown-item {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    } */

    #searchbar {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        width: 1110px;
        transition: all .3s ease;
        top: 49%;
        transform: translateY(-49%);
    }

    #searchbar button {
        padding-left: .75rem;
        padding-right: .75rem;
    }
}

@media (max-width: 1199.98px) {
    .navbar {
        padding: 0;
        background: #003C78;
        border-bottom: 0;
    }

    .navbar-scrolled.navbar {
        box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    }

    a.navbar-brand {
        margin: 7.5px;
        padding: 0;
    }

    .navbar-brand img {
        width: 188px;
        height: 50px;
        transition: all .3s ease;
    }

    .navbar-nav .nav-item .nav-link {
        font-size: 14px;
    	padding: .5rem .75rem;
    }

    .navbar-collapse {
        max-height: calc(85vh - 65px);
        overflow-y: auto;
    }

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    .navbar-collapse {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .navbar-nav {
        padding: 15px;
    }

    .dropdown:hover ::after {
        color: #EA9016;
    }

    .dropdown.show ::after {
        color: #EA9016;
    	transform: rotate(-180deg);
    	transition: all .1s ease;
    }

    .dropdown.show .nav-link {
    	color: #EA9016;
        outline: none;
    }

    .dropdown.show .dropdown-toggle::before {
        position: absolute;
        left: .75rem;
        bottom: 0;
        width: 0;
        height: 0;
        content: '';
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 10px solid #EA9016;
        z-index: -1;
        transition: all .3s ease;
    }

    .dropdown-menu {
        margin: 0 0 .75rem 0;
        border-bottom: 1px solid #FFF;
        border-left: 1px solid #FFF;
        border-right: 1px solid #FFF;
    }
}

.navbar-nav .nav-item.nav-link-active a.nav-link {
    opacity: .85;
    text-decoration: underline !important;
}

.navbar-nav .nav-item.nav-link-active a.nav-link:hover,
.navbar-nav .nav-item.nav-link-active a.nav-link:focus,
.dropdown:hover .dropdown-toggle {
    opacity: 1 !important;
}


/* MEGA MENU */

.mega-dropdown-container {
    background-color: #003C78;
}

.mega-dropdown-container .row {
    width: 100% !important;
}

.mega-dropdown-container .form-row {
    width: 100% !important;
}

@media (min-width: 1200px) {
    .mega-dropdown-container {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    /* .mega-dropdown-container .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .mega-dropdown-container .form-row {
        margin-left: -10px;
        margin-right: -10px;
    } */

    .mega-dropdown-closer {
        color: #FFF !important;
        font-size: 1rem;
        padding: 15px !important;
        display: block;
        position: absolute;
        top: 0;
        right: 0;
        opacity: 1;
    }

    .mega-dropdown-closer:hover,
    .mega-dropdown-closer:focus {
        color: #FFF !important;
        opacity: .85;
    }

    .navbar .dropdown.mega {
        position: static;
    }

    .navbar .dropdown-menu.mega-drop {
        z-index: 1021;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0;
        padding: 0;
        transition: all .3s ease;
    }

    .nav-item.dropdown:hover:before {
		content: "";
	    position: absolute;
	    bottom: 0px;
	    height: 18px;
	    width: 100%;
	    left: 0;
        right: 0;
	    display: block;
        z-index: 2;
	}
}

@media (max-width: 1199.98px) {
    .navbar .dropdown-menu {
        box-shadow: none;
    }

    .mega-dropdown-closer {
        display: none;
    }

    .mega-dropdown-container {
        margin: 0;
    }

    .navbar .dropdown-menu .container {
        padding: 0;
    }

    .navbar .dropdown-menu .container {
        padding: 0;
    }

    .mega-dropdown-container {
        max-width: 100% !important;
        padding: 0 !important;
    }

    .mega-dropdown-container .row {
        margin: 0 0 !important;
    }

    .mega-dropdown-container .form-row {
        margin: 0 0 !important;
    }
}

@media (max-width: 575.98px) {
    .mega-dropdown-container {
        padding: 0 !important;
    }

    .mega-dropdown-container .col-12 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

/* .navbar .dropdown-menu div[class*="col-xl"] {
    margin-bottom: 15px;
}

.navbar .dropdown-menu div[class*="col-xl-2"] {
    margin-bottom: 15px;
}

.navbar .dropdown-menu div[class*="col-xl-3"] {
    margin-bottom: 15px;
}

.navbar .dropdown-menu div[class*="col-xl-4"] {
    margin-bottom: 15px;
}

.navbar .dropdown-menu div[class*="col-12"] {
    margin-bottom: 15px;
} */


/* MOBILE MENU */

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-toggler {
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 100%;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: #003C78;
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 4px;
}

.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:hover>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
    width: 22px;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    background: #DC3545;
    transform: rotate(45deg) translate(5px, 4px);
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(2) {
    opacity: 0;
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    background: #DC3545;
    transform: rotate(-45deg) translate(4px, -4px);
    transition: ease all .2s;
}


/* HERO */

#hero {
    position: relative;
}

#hero .carousel-item {
    overflow: hidden;
    border-bottom: 5px solid #EA9016;
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
}

.hero-text,
.video-text {
    color: #FFF;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
    transform: translateY(-40%);
    z-index: 5;
}

.hero-text p.eyebrow,
.video-text p.eyebrow {
    color: #F8F9FA;
    text-shadow: 0px 0px 10px rgba(0,60,120,.5);
}

.hero-text h1,
.video-text h1 {
    line-height: 1;
    color: #FFF;
    margin-bottom: 25px;
    text-shadow: 0px 0px 10px rgba(0,60,120,.5);
}

.hero-text h1 span,
.video-text h1 span {
    font-size: 80%;
}

.hero-text p.desc,
.video-text p.desc {
    color: #FFF;
    font-size: 1.3rem;
    margin-bottom: 15px;
    text-shadow: 0px 0px 10px rgba(0,60,120,.75);
}

.bg-hero {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    height: calc(100vh - 133px);
    max-height: 1080px;
    min-height: 600px;
}

@media (max-width: 1199.98px) {
    .bg-hero {
        height: calc(95vh - 65px);
        max-height: 810px;
        /* min-height: 405px; */
    }

    .hero-text p.desc {
        font-size: 1.25rem;
    }
}

@media (max-width: 991.98px) {
    .bg-hero {
        height: calc(90vh - 65px);
    }

    .hero-text h2,
    .video-text h2 {
        margin-bottom: .75rem;
    }

    .hero-text p.desc,
    .video-text p.desc {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 767.98px) {
    .bg-hero {
        height: calc(85vh - 65px);
    }

    .hero-text p.desc,
    .video-text p.desc {
        font-size: 1.15rem;
    }
}

@media (max-width: 575.98px) {
    .bg-hero {
        height: calc(80vh - 65px);
    }

    .hero-text p.desc,
    .video-text p.desc {
        font-size: 1.1rem;
    }
}

#hero .carousel-indicators {
    justify-content: center;
    align-items: center;
    bottom: 20px;
}

.carousel-indicators button.indicator {
    background-color: rgba(255,255,255,.5);
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 100%;
    width: 15px;
    height: 15px;
    padding: 0;
    margin-left: 5px;
    margin-right: 5px;
    opacity: 1;
    box-shadow: 0px 10px 20px rgba(0,0,0,.15);
}

.carousel-indicators button.indicator.active {
    background-color: #FFF;
    border: 1px solid #FFF;
    opacity: 1;
}

.carousel-control-prev,
.carousel-control-next {
    top: -6rem;
    display: block;
    background: transparent;
    border: 0;
    z-index: 5;
    width: auto;
    padding: 0 10px;
    opacity: 1;
}

@media (max-width: 767.98px) {
    .carousel-control-prev,
    .carousel-control-next {
        display: none;
    }
}

.hero-pp-btn {
    font-size: 14px;
    color: #FFF;
    width: 15px;
    height: 15px;
    margin: 2px 5px 0 5px;
    padding: 0;
    border: 0;
    background-color: transparent;
    line-height: 1;
    overflow: visible;
}

.opacity-0 {
    opacity: 0 !important;
}


/* HERO VIDEO */

#fullwidth-video {
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
    border-bottom: 5px solid #EA9016;
    background-color: #003C78;
    overflow: hidden !important;
    position: relative;
}

.hero-mobile {
    overflow: hidden;
}

.video-overlay {
    background: linear-gradient(rgba(0,60,120,.75),rgba(0,60,120,.75));
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 2;
    overflow: hidden;
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
}

@media (min-width: 1200px) {
    #fullwidth-video {
        height: calc(100vh - 133px);
        max-height: 1080px;
        min-height: 540px;
    }

    .video-hero {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    #fullwidth-video {
        height: auto;
    }

    /*.fullwidth-video-bg {
        display: none;
    }*/
}

#fullwidth-video .fullwidth-video-bg {
    position: absolute;
    z-index: 1;
    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: transparent;
    background-repeat: no-repeat;
    background-position: 0% 50%;
    border-bottom-left-radius: 15%;
    border-bottom-right-radius: 15%;
}

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

.video-pp-btn {
    font-size: 14px;
    color: #003C78;
    align-self: center;
	position: absolute;
    text-align: center;
    bottom: 12px;
    right: 12px;
    margin: auto;
	outline: 0;
	border: 0;
	background-color: transparent;
	z-index: 15;
}

@media (max-width: 1199.98px) {
    .video-pp-btn-center,
    .video-pp-btn {
        display: none;
    }
}

@media (max-width: 767.98px) {
    #fullwidth-video,
    .video-overlay {
        border-bottom-left-radius: 8%;
        border-bottom-right-radius: 8%;
    }
}


.hero-scroller {
    color: #003C78 !important;
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: auto;
    margin: 0;
    text-align: center;
    opacity: 1 !important;
    z-index: 15;
    transition: all .3s ease;
}

.hero-scroller a {
    font-size: 14px;
    color: #003C78 !important;
    width: 10px;
    height: 10px;
    margin: 2px 5px 0 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    line-height: 1;
    overflow: visible;
}

.scroll-icon {
    color: #003C78 !important;
}

@media (max-width: 1199.98px) {
    .hero-scroller {
        display: none;
    }
}


/* HOME */

ul.link-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.link-list li {
    line-height: 1.35;
    border-top: 1px solid #DEE2E6;
}

.link-list li a {
    display: block;
    width: 100%;
    padding: .75rem 0;
    position: relative;
}

.link-list li a span {
    float: right;
    margin-left: .5rem;
}

/* .link-list li a::after {
    font-size: 1rem;
    content: "\f30b";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    right: 0;
    top: .75rem;
    position: absolute;
    color: #EA9016;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.link-list li a.external::after {
    content: "\f35d";
    font-size: .7rem;
    margin-top: 2px;
} */


/* SWIPERS */

/* .swiper-slide-duplicate {
    display: none !important;
} */

.swiper-container {
    padding: 0 15px;
	margin: 0 -15px;
}

.swiper-wrapper {
	margin: 0 0 33px 0;
}

.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: top;
    -ms-flex-pack: top;
    -webkit-justify-content: top;
    justify-content: top;
    -webkit-box-align: top;
    -ms-flex-align: top;
    -webkit-align-items: top;
    align-items: top;
	height: auto;
}

.swiper-slide .card-body {
    padding: 1.25rem;
    position: relative;
    z-index: 1;
}

.swiper-slide .card-footer {
    background: transparent;
    padding: 0 1.25rem 1.25rem 1.25rem;
    border: 0;
}

.swiper-slide .card-body strong {
    font-weight: 500;
}

.swiper-slide .card-body.bottom-gradient::before {
    position: absolute;
    content: '';
    height: 5px;
    right: 0;
    left: 0;
    top: 100%;
    bottom: 0;
    background: rgb(0,60,120);
    background: linear-gradient(90deg, rgba(0,60,120,1) 0%, rgba(30,167,222,1) 100%);
    z-index: 2;
}

.swiper-container-horizontal>.swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
    bottom: 15px;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
    background-color: #F8F9FA;
    border-radius: 100%;
    padding: 1rem;
    border: 1px solid #DEE2E6;
    transition: all .3s ease;
}

.swiper-button-prev:hover,
.swiper-button-prev:focus,
.swiper-button-next:hover,
.swiper-button-next:focus {
    background-color: #FFF;
}

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

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

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23EA9016'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23EA9016'%2F%3E%3C%2Fsvg%3E");
}

.swiper-button-next,
.swiper-button-prev {
    width: 13.5px;
    height: 22px;
    background-size: 11px 22px;
    margin: 0;
    transform: translateY(-50%);
}

.swiper-button-next:focus,
.swiper-button-prev:focus {
    outline: none;
}

.swiper-pagination-bullet-active {
    background: #EA9016;
    border: 1px solid #EA9016;
}

.image-credit {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    background: linear-gradient(22.5deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0) 100%);
}

.image-credit div {
    text-align: left;
    font-size: 14px;
    line-height: 1.25;
    position: absolute;
    z-index: 2;
    bottom: 15px;
    left: 15px;
    right: 15px;
    color: #FFF;
    text-shadow: 0px 10px 20px rgba(0,0,0,.75);
}

.image-credit div span {
    display: inline-block;
    margin-bottom: .375rem;
}

.image-credit div a {
    display: block;
    text-decoration: none;
}

.image-credit div i {
    color: inherit !important;
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
}

.image-credit div .fa-external-link-alt {
    font-size: 10px;
    vertical-align: top;
    margin-top: 3px;
}


/* CARDS */

.card {
    border-radius: 0;
    transition: all .3s ease;
}

.card.rounded-xl img {
    border-top-left-radius: 30px;
    border-top-right-radius: 30px;
}

.card-header:first-child {
    border-radius: 0;
}

.card-body p:last-child,
.card-body ol:last-child,
.card-body ul:last-child {
    margin-bottom: 0;
}

.card-body strong {
    font-weight: 500;
}

.card-footer:last-child {
    border-radius: 0;
}

.card-header {
    background: #003C78;
    color: #FFF;
}

.card-body {
    padding: 1rem;
}

.card-zoom {
    position: relative;
}

.card-zoom .card {
    overflow: hidden !important;
}

.card-hover a {
    display: block;
    line-height: 1.35;
    text-decoration: none;
}

.card-hover:hover,
.card-hover:focus {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.card-link {
    display: block;
    height: 100%;
    transition: all .3s ease;
}

.icon-card {
    border: 1px solid #DEE2E6;
    height: 100%;
    text-decoration: none !important;
}

.icon-card:hover,
.icon-card:focus {
    background-color: #FFF !important;
    text-decoration: none !important;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.icon-card i {
    color: #EA9016;
    transition: all .3s ease;
}

.icon-card.bg-blue i {
    color: #DDD;
}

.icon-card:hover i,
.icon-card:focus i {
    color: #CC6600;
}

.icon-card .btn i {
    color: #EA9016;
}

.circle-icon {
    margin: auto;
    text-align: center;
    z-index: 2;
    position: absolute;
    z-index: 2; position: absolute; margin-top: calc(-1rem - 15px); left: 0;
    right: 0;
}

.staff-link {
    display: block;
    height: 100%;
    text-decoration: none !important;
}

.staff-link:hover,
.staff-link:focus {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.card-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: linear-gradient(-180deg, rgba(0,60,120,0),rgba(0,60,120,1));
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    will-change: transform;
}

.overlay-text .icon {
    color: #FFF;
    margin-bottom: .5rem;
    -webkit-filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
    filter: drop-shadow(0px 0px 1px rgba(0,0,0,.25));
}

.overlay-text h2 {
    color: #FFF;
    margin-bottom: .5rem;
    text-shadow: 0px 10px 20px rgba(0,60,120,.25);
}

.overlay-text p {
    color: #FFF;
    margin-bottom: 15px;
    text-shadow: 0px 10px 20px rgba(0,60,120,.25);
}

.overlay-top {
    position: absolute;
    top: 15px;
    bottom: 15px;
    left: 15px;
    right: 15px;
    overflow: hidden;
}

.overlay-bottom {
    position: absolute;
    top: auto;
    bottom: 15px;
    left: 15px;
    right: 15px;
    overflow: hidden;
}

.overlay-center {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
    right: 15px;
    text-align: center;
}

.inset-border {
    position: relative;
    z-index: 2;
}

.inset-border::before {
    z-index: 1;
    content: '';
    position: absolute;
    top: 7.5px;
    bottom: 7.5px;
    left: 7.5px;
    right: 7.5px;
    box-shadow: inset 0 0 0 1px #FFF;
}

/* .overlay-text .static-text {
	-webkit-transition: opacity .3s, -webkit-transform .3s;
	transition: opacity .3s, transform .3s;
	-webkit-transform: translate3d(0,100%,0);
	transform: translate3d(0,100%,0);
}

.card-img-overlay:hover .static-text {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
} */

.zoom-wrapper {
	position: relative;
	overflow: hidden !important;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.zoom-wrapper img {
    -webkit-transform: scale(1.01);
	-moz-transform: scale(1.01);
	transform: scale(1.01);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card-zoom:hover .card-img-overlay {
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    -webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card-zoom:hover img,
.card-zoom:focus img {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	transform: scale(1.1);
}

.healthcare-link {
    transition: all .3s ease;
}

.healthcare-link a {
    text-decoration: none;
}

.healthcare-link .rounded-circle {
    width: 150px;
    border: 3px solid transparent;
    transition: all .3s ease;
}

@media (max-width: 767.98px) {
    .healthcare-link .rounded-circle {
        width: 75px;
    }
}

.healthcare-link:hover .rounded-circle,
.healthcare-link:focus .rounded-circle {
    border: 3px solid #EA9016;
}

.healthcare-link:hover,
.healthcare-link:focus {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}


/* IMAGE BOXES */

.image-box-text {
    padding: 3rem;
}

@media (max-width: 991.98px) {
    .image-box-text {
        padding: 3rem 15px;
    }
}

.image-box-text ul {
    padding-left: 1.5rem;
}

.image-box-text p:last-child {
    margin-bottom: 0;
}


/* SUB PAGE */

.subpage-banner {
    background: linear-gradient(0deg, rgba(33,40,108,1),rgba(0,60,120,1));
    color: #FFF;
    border-bottom: 5px solid #EA9016; border-bottom-left-radius: 15%; border-bottom-right-radius: 15%;
    text-align: center;
    overflow: hidden;
}

.subpage-banner.no-image {
    padding: 3rem 0 !important;
}

.subpage-banner.image .row {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    justify-content: center;
}

.subpage-banner.image .row .col-12 {
    margin: 0;
    padding: 0;
}

.subpage-banner.image .row .col-lg-6:first-of-type {
    align-self: center;
}

.subpage-textbox {
    padding: 3rem;
}

@media (max-width: 575.98px) {
    .subpage-textbox {
        padding: 3rem 15px;
    }
}

.subpage-banner h1 {
    margin-bottom: 0;
}

.subpage-banner p {
    margin-top: 1rem;
    margin-bottom: 0;
}

.subpage-banner a.btn {
    margin-top: 1rem;
}

.subpage-banner .banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .subpage-banner .banner-video {
        position: relative;
        height: 100%;
        overflow: hidden;
    	-webkit-background-size: cover !important;
        -moz-background-size: cover !important;
        -o-background-size: cover !important;
        background-size: cover !important;
    }

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

/* @media (min-width: 992px) {
    .subpage-banner .banner-img {
        border-left: 5px solid #EA9016;
    }
}

@media (max-width: 991.98px) {
    .subpage-banner .banner-img {
        border-bottom: 5px solid #EA9016;
    }
} */

#subNavBtn {
    margin-bottom: 7.5px;
}

#subMenu {
    padding: 0 0 7.5px 0;
}

@media (min-width: 1200px) {
    #subMenu {
        /* margin-left: -.75rem;
        margin-right: -.75rem; */
        padding: .25rem 0;
    }
}

#subNavBtn i {
    font-size: 12px;
    margin-left: 4px;
}

#subNavBtn:not(.collapsed) i {
    transform: rotate(-180deg);
    transition: all .1s ease;
}

#subMenu li a {
    font-size: 12.5px;
    font-weight: 400;
    border-radius: 30px;
    border: 1px solid transparent;
}

#subMenu li a.active {
    color: #EA9016 !important;
    font-weight: 500;
}

#subMenu li a i {
    font-size: 8px;
    margin-left: 3px;
    margin-top: 5px;
    vertical-align: top;
}

#subMenu li a {
    padding: .25rem .5rem;
}

#subMenu li a:hover,
#subMenu li a:focus {
    background: #F8F9FA;
    border: 1px solid #DEE2E6;
}

@media (max-width: 1199.98px) {
    #subMenu li a {
        font-size: 14px;
    }
}


/* SIDEBAR */

#sidebarNav {
    list-style-type: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}

#sidebarNav li {
    line-height: 1.25;
    border-top: 1px solid #DEE2E6;
}

#sidebarNav li:first-of-type {
    border-top: 0;
}

#sidebarNav li a {
    background-color: #003C78;
    color: #FFF;
    font-weight: 400;
    display: block;
    padding: .75rem 1rem;
    text-decoration: none;
}

#sidebarNav li a:hover,
#sidebarNav li a:focus,
#sidebarNav li a:target,
#sidebarNav li a:active {
    background-color: #21286C;
}

#sidebarNav li a span {
    float: right;
    margin-left: .5rem;
    font-size: 12px;
}

#sidebarNav li a.active {
    color: #EA9016;
    background-color: #FFF;
}

ul.sub-page-nav {
    text-decoration: none;
    padding: 0;
    margin: .4rem 0;
}

.sub-page-nav li {
    padding: 0;
    list-style-type: none;
}

.sub-page-nav li a {
    color: #003C78;
    text-decoration: none;
    font-weight: 500;
    padding: .5rem 1rem;
    font-size: .9rem;
    line-height: 1.25;
    display: block;
    width: 100%;
}

.sub-page-nav li a:hover,
.sub-page-nav li a:focus {
    color: #21286C;
    text-decoration: none;
    background-color: #F8F9FA;
}

.sub-nav-active {
    border-left: .5rem solid #003C78;
    color: #21286C !important;
    background-color: #F8F9FA;
    text-decoration: none;
    transition: all .2s ease;
}

.sub-nav-active:hover {
    color: #21286C !important;
}


/* COLLAPSE */

.expand-btn {
    border-radius: 30px;
    font-size: 1rem;
    text-align: left;
    padding: .75rem 2.5rem .75rem 1rem;
    white-space: normal;
    position: relative;
}

.expand-btn.collapsed {
    border-radius: 30px;
    font-size: 1rem;
    text-align: left;
    padding: .75rem 2.5rem .75rem 1rem;
    white-space: normal;
    position: relative;
}

.expand-btn:focus,
.expand-btn:target,
.expand-btn:active {
    color: #21286C !important;
    border: 1px solid #21286C !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.expand-btn::after {
    font-size: 1rem;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    right: 1rem;
    top: .7rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    transform: rotate(-180deg);
    -webkit-font-smoothing: antialiased;
    transition: all .2s ease;
}

.expand-btn.collapsed::after {
    font-size: 1rem;
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    right: 1rem;
    top: .7rem;
    position: absolute;
    color: inherit;
    display: inline-block !important;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    transform: rotate(0deg);
    transition: all .2s ease;
}


/* NEWS */

.article-content p:last-child {
    margin-bottom: 0;
}


/* MODALS */

/* body.modal-open-noscroll {
    overflow-x: hidden !important;
}

.modal-open .modal {
    overflow-y: scroll;
} */

.modal-body p:last-child,
.modal-body ul:last-child,
.modal-body ol:last-child {
	margin-bottom: 0;
}

.modal-body ul,
.modal-body ol {
    padding-left: 1.5rem;
}

.modal-content {
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
    border: 1px solid #DEE2E6;
    border-radius: 0px;
    background-clip: content-box;
}

.modal-header {
    border-radius: 0;
    padding: 1rem;
    border-bottom: 1px solid #DEE2E6 !important;
}

.modal-answer {
    font-size: 14px;
}

.modal-body .modal-answer p {
    margin-bottom: 1rem;
}

.modal-answer ul {
    padding-left: 1.5rem;
}

.modal-answer ul li {
    line-height: 1.25;
    padding: .5rem 0;
}

.modal-footer {
    border-radius: 0;
}

.modal .close {
    color: #DC3545;
    font-weight: 400;
    opacity: 1;
    transition: all .3s ease;
}

.modal .close:hover,
.modal .close:focus {
    opacity: .75;
}

/* .modal-backdrop {
    background-color: #F8F9FA;
    opacity: 1;
}

.modal-backdrop.show {
    opacity: 1;
} */

.btn-disabled {
    pointer-events: none;
    opacity: .5;
}

.info-link-icon {
    position: absolute;
    right: 5px;
    top: 0;
    z-index: 1;
    background: #FFF;
    color: #EA9016;
}

.service-text {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 0;
}

/* .modal.fade.modal-questions .modal-dialog {
    transform: translate(125%, 0px);
}

.modal.show.modal-questions .modal-dialog {
    transform: none;
} */


/* PROGRESS */

.progress {
    font-weight: 600;
    font-size: 16px;
    border-radius: 30px;
    height: 40px;
    text-shadow: 0px 0px 10px rgba(0,0,0,.25);
}

.progress-bar-striped {
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-size: 1rem 1rem;
}


/* FORMS */

label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.form-control {
    background-color: #F8F9FA;
    background-clip: border-box;
    border-radius: 0;
    border: 1px solid #DEE2E6;
}

.custom-select {
    background-color: #F8F9FA;
    border-radius: 0 !important;
    border: 1px solid #DEE2E6;
}

.form-control:focus,
.custom-select:focus {
    background-color: #FFF;
}

#newsletter_email .form-control {
    border-top-left-radius: 30px;
    border-bottom-left-radius: 30px;
}

#newsletter_email .input-group-append button {
    border-top-right-radius: 30px;
    border-bottom-right-radius: 30px;
}

.modal-header .close {
    opacity: 1 !important;
    transition: all .3s ease;
}

.modal-header .close:hover,
.modal-header .close:focus {
    opacity: .75 !important;
    transition: all .3s ease;
}


/* ALERTS */

#alertBar {
    z-index: 2;
}

#alertBar {
    border: 0;
    border-radius: 0;
    padding: .5rem 0;
    font-size: 14px;
    margin-bottom: 0;
}

#alertBar strong {
    font-weight: 600;
}

#alertBar a {
    display: inline-block;
}

#alertBar a i {
    color: inherit !important;
}

#alertBar .close {
    font-size: 16px;
    padding: .25rem;
    position: relative;
    top: .35rem;
    right: 0;
    opacity: 1;
    margin-top: -.5rem;
    transition: all .3s ease;
}

#alertBar .close:hover,
#alertBar .close:focus {
    opacity: .75;
}


/* FOOTER */

footer > .bg-cover {
    border-top: 5px solid #EA9016;
    border-top-left-radius: 15%;
    border-top-right-radius: 15%;
}

.footer-logo {
    width: 325px;
    margin-bottom: 1.75rem;
}

ul.sm-nav-footer {
    padding: 0;
    margin: 0;
    display: inline-block;
}

.sm-nav-footer li {
	list-style-type: none;
	display: inline-block;
}

.sm-nav-footer li a {
    font-size: 1.75rem;
    padding: .5rem;
    color: #003C78 !important;
    transition: all .3s ease;
}

.sm-nav-footer li a:hover,
.sm-nav-footer li a:focus,
.sm-nav-footer li a:target,
.sm-nav-footer li a:active {
    color: #21286C !important;
}

ul.white-list {
    padding: 0;
    margin: 0;
}

.white-list li {
	list-style-type: none;
}

.white-list li a {
    font-size: 14px;
    padding: .5rem 0;
    color: #FFF;
    display: block;
}

.white-list li a:hover,
.white-list li a:focus,
.white-list li a:target,
.white-list li a:active {
	color: #FFF;
}

.copyright-bar {
    padding: 1.3rem 0;
}


/* TO TOP */

.scroll-top {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    z-index: 9;
    background-color: #F8F9FA;
    border: 1px solid #DEE2E6;
    width: 34px;
    height: 34px;
    border-radius: 100%;
    line-height: 34px;
    right: 15px;
    bottom: 15px;
    transition: all 0.5s ease-in-out;
}

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

.scroll-top.show:hover,
.scroll-top.show:focus {
    background-color: #FFF;
    box-shadow: 0px 10px 20px rgba(0,0,0,.1);
}

.grecaptcha-badge {
	display: none;
}


/* USED FOR HIDING BODY UNTIL JS LOADS - LEAVE AT THE END */

body {
    opacity: 0;
}
