:root {
    --light-blue: #2B65B1;
    --blue: #00529B;
    --dark-blue: #00396D;
    /* --sky-blue: #E4E7F3; */
    --sky-blue: #EFF1F8;
    --white: #FFFFFF;
    --black: #000000;

    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --gray-900: #212529;

    --red: #A90533;
    --dark-red: #870429;
    --green: #2E8400;
    --dark-green: #205C00;

    --light-yellow: #FFF7DC;

    --clear: rgba(0,0,0,0);

    --fc-border-color: #dee2e6;
    --fc-today-bg-color: #EFF1F8;
    --fc-neutral-bg-color: #EFF1F8;
    --fc-event-selected-overlay-color: rgba(0,0,0,.1);
}


/* GENERAL */

.skip-nav-btn {
    font-size: 14px;
    display: block;
    border-radius: 0;
    border: 0;
    padding: .5rem !important;
    margin: 0 !important;
}

.text-shadow {
    text-shadow: 0px 0px 10px rgba(0,0,0,.15);
}

.text-shadow-dark {
    text-shadow: 0px 0px 10px rgba(0,0,0,.25);
}

.text-shadow-black {
    text-shadow: 1px 1px 0px var(--black);
}

.text-shadow-black {
    text-shadow: 1px 1px 0px var(--black);
}

.text-shadow-none {
    text-shadow: none !important;
}

.box-shadow {
	box-shadow: 0px 0px 30px rgba(0,0,0,.05);
}

.box-shadow-dark {
	box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

.box-shadow-0 {
    box-shadow: none !important;
}

.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,.85);
}

.image-overlay-text {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    margin: auto;
    padding: 1rem 1.5rem;
    color: var(--white);
}

.opacity-25 {
    opacity: .25 !important;
}

.opacity-50 {
    opacity: .5 !important;
}

.opacity-75 {
    opacity: .85 !important;
}

.opacity-100 {
    opacity: 1 !important;
}

.no-hover {
	color: inherit;
}

.no-hover:hover {
	text-decoration: none;
	color: inherit;
}

.overlap {
    position: relative;
    z-index: 2;
    margin-top: -3rem;
}

.bg-white-blur {
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, .15);
}

.bg-cover {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
}

.bg-contain {
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;
}

.bg-ob-cover {
    width: 100% !important;
    height: 100% !important;
    -webkit-object-fit: cover !important;
    -moz-object-fit: cover !important;
    -o-object-fit: cover !important;
    object-fit: cover !important;
}

.bg-fixed {
    -webkit-background-attachment: fixed !important;
    -moz-background-attachment: fixed !important;
    -o-background-attachment: fixed !important;
    background-attachment: fixed !important;
}

/* .bg-favicon-white-faded {
    background: url('/assets/img/logos/favicons/favicon-white-faded.svg') center center;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
} */

/* .bg-favicon-black-faded {
    background: url('/assets/img/logos/favicons/favicon-black-faded.svg') center center;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
} */

.bg-diagonals {
    background: url('/assets/img/content/bg-diagonals-content.png') repeat-x 0px 0px;
    height: 36px;
    width: auto;
}

.bg-flag {
    position: relative;
    overflow: hidden;
}

.bg-flag::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-background-size: contain !important;
    -moz-background-size: contain !important;
    -o-background-size: contain !important;
    background-size: contain !important;
    background: url('/assets/img/content/Flag_of_Ohio.svg') center center no-repeat;
    transform: rotate(90deg);
    filter: grayscale(100%);
    opacity: .05;
}

.bg-blue-moon {
    background-color: #00396D;
    opacity: 1;
    background-image: radial-gradient(ellipse farthest-corner at 4px 4px, #00529B, #00529B 50%, #00396D 50%);
    background-size: 4px 4px;
}

.favicon-overlay {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}

/* .favicon-overlay.white-faded {
    background: url('/assets/img/logos/favicons/favicon-white-faded.svg') left center no-repeat;
}

.favicon-overlay.black-faded {
    background: url('/assets/img/logos/favicons/favicon-black-faded.svg') left center no-repeat;
} */

.bg-banner {
    position: relative;
    padding: 8rem 0;
}

.bg-banner-lg {
    position: relative;
    padding: 12rem 0;
}

@media (max-width: 1199.98px) {
    .bg-banner {
        padding: 6rem 0;
    }

    .bg-banner-lg {
        padding: 10rem 0;
    }
}

@media (max-width: 991.98px) {
    .bg-banner {
        padding: 5rem 0;
    }

    .bg-banner-lg {
        padding: 8rem 0;
    }
}

@media (max-width: 767.98px) {
    .bg-banner {
        padding: 4rem 0;
    }

    .bg-banner-lg {
        padding: 6rem 0;
    }
}

@media (max-width: 575.98px) {
    .bg-banner {
        padding: 3rem 0;
    }

    .bg-banner-lg {
        padding: 5rem 0;
    }
}

.bg-banner-overlay {
    background: linear-gradient(rgba(0, 30, 83, .85), rgba(0, 30, 83, .85));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.bg-banner-overlay-white {
    background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,.5));
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.badge {
    border-radius: 0;
    font-weight: 600;
}

.rounded-xl {
    border-radius: 30px !important;
}

.rounded-xltr {
    border-radius: 30px 30px 0 0 !important;
}

.rounded-lg {
    border-radius: 20px !important;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-sm {
    border-radius: 5px !important;
}

.divided-text {
    padding: 1px 0;
    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:before,
.divided-text:after {
    background-color: var(--black);
}

.divided-text.white:before,
.divided-text.white:after {
    background-color: var(--white);
}

.divided-text.blue:before,
.divided-text.blue:after {
    background-color: var(--blue);
}

.divided-text.blue:before,
.divided-text.blue:after {
    background-color: var(--blue);
}

.divided-text.gray-300:before,
.divided-text.gray-300:after {
    background-color: var(--gray-300);
}

.divided-text-left {
    padding: 1px 0;
    overflow: hidden;
    text-align: left;
}

.divided-text-left:after {
    content: "";
    display: inline-block;
    height: 2px;
    position: relative;
    vertical-align: middle;
    width: 100%;
}

.divided-text-left:after {
    left: 7.5px;
    margin-right: -100%;
}

.divided-text-left:after {
    background-color: var(--black);
}

.divided-text-left.white:after {
    background-color: var(--white);
}

.divided-text-left.blue:after {
    background-color: var(--blue);
}

.divided-text-left.lgray:after {
    background-color: var(--gray-300);
}

.divided-text-left.faded:after {
    background-color: rgba(255,255,255,.125);
}

.divided-text-new {
    display: flex;
    flex: 1;
    width: 100%;
    margin: 0 auto;
}

.divided-text-new:before {
    margin-right: 7.5px !important;
}

.divided-text-new:after {
    margin-left: 7.5px !important;
}

.divided-text-new:before,
.divided-text-new:after {
    content: '';
    flex-grow: 1;
    margin: 0;
    background: linear-gradient(to right, var(--gray-300), var(--gray-300));
    background-size: 100% 1px;
    background-position: 0% 50%;
    background-repeat: repeat-x;
}

.favicon {
    width: 75px;
}


/* LINE CLAMP TEXT TRUNCATE */

.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;
}


/* LAZY LOAD */

.lazyload {
	opacity: 0;
}

.lazyloading {
	opacity: 1;
	transition: opacity 300ms;
}

img.lazyload:not([src]) {
	visibility: hidden;
}

.grayscale {
    filter: grayscale();
}


/* MARGIN/PADDING */

.ml-1px {
    margin-left: 1px;
}

.ml-125 {
    margin-left: .125rem;
}

.my-10px {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.my-15px {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
}

.my-30px {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
}

.mx-15px {
    margin-left: 15px !important;
    margin-right: 15px !important;
}

@media (min-width: 568px) {
    .mx-sm-15px {
        margin-left: 15px !important;
        margin-right: 15px !important;
    }
}

.mx-30px {
    margin-left: 30px !important;
    margin-right: 30px !important;
}

.m-15px {
    margin: 15px !important;
}

.mt-n375 {
    margin-top: -.375rem;
}

.mt-2px {
    margin-top: 2px !important;
}

.mt-10px {
    margin-top: 10px !important;
}

.mt-15px {
    margin-top: 15px !important;
}

.mt-18px {
    margin-top: 18px !important;
}

.mt-20px {
    margin-top: 20px !important;
}

.mt-30px {
    margin-top: 30px !important;
}

.mt-33px {
    margin-top: 33px !important;
}

.mb-10px {
    margin-bottom: 10px !important;
}

.mb-15px {
    margin-bottom: 15px !important;
}

.mb-18px {
    margin-bottom: 18px !important;
}

.mb-20px {
    margin-bottom: 20px !important;
}

.mb-30px {
    margin-bottom: 30px !important;
}

.mb-33px {
    margin-bottom: 33px !important;
}

.mb-38px {
    margin-bottom: 38px !important;
}

.px-7-5px {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}

.px-15px {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.px-30px {
    padding-left: 30px !important;
    padding-right: 30px !important;
}

.py-5px {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}

.py-7-5px {
    padding-top: 7.5px !important;
    padding-bottom: 7.5px !important;
}

.py-10px {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.py-15px {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.py-30px {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
}

.p-30px {
    padding: 30px !important;
}

.pb-10px {
    padding-bottom: 10px !important;
}

.pb-15px {
    padding-bottom: 15px !important;
}

.pb-18px {
    padding-bottom: 18px !important;
}

.pb-30px {
    padding-bottom: 30px !important;
}

.pb-33px {
    padding-bottom: 33px !important;
}

.pb-38px {
    padding-bottom: 38px !important;
}

.pb-2rem {
    padding-bottom: 2rem;
}

.pt-10px {
    padding-top: 10px !important;
}

.pt-15px {
    padding-top: 15px !important;
}

.pt-18px {
    padding-top: 18px !important;
}

.pt-30px {
    padding-top: 30px !important;
}

.pt-33px {
    padding-top: 33px !important;
}

.pt-38px {
    padding-top: 38px !important;
}

.p-15px {
    padding: 15px !important;
}

.row-15px {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row-15px [class*=col-],
.row-15px [class*=col] {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.row-small {
    justify-content: 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;
    }
}

@media (min-width: 1200px) {
    .col-xl-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

@media (min-width: 992px) {
    .col-lg-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

@media (min-width: 768px) {
    .col-md-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

@media (min-width: 576px) {
    .col-sm-5ths {
        -ms-flex: 0 0 20% !important;
        flex: 0 0 20% !important;
        max-width: 20% !important;
    }
}

.service-row {
    position: relative;
}

.service-row img {
    width: 100%;
    border-radius: 100%;
    border: 2px solid transparent;
    transition: all .3s ease;
}

.service-row p.service-desc {
    font-size: 14px;
    margin-bottom: 0;
}

.service-row p.service-desc a {
    position: relative;
    z-index: 2;
}

.service-row:hover img {
    border: 2px solid var(--blue);
}

.service-span {
    font-family: 'Lora', sans-serif;
    font-weight: 600;
    font-size: 12px;
    font-style: italic;
    letter-spacing: 1px;
    text-transform: uppercase;
    float: right;
    margin: 0 0 0 .5rem;
}

.img-grid-section {
    padding-top: 15px;
}

.img-grid-section .img-col {
    margin-bottom: 15px;
}

.img-grid-section img {
    width: 100% !important;
}


/* COLORS */

.text-black {
    color: var(--black) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.text-light-blue {
    color: var(--light-blue) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.text-dark-blue {
    color: var(--dark-blue) !important;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.text-sky-blue {
    color: var(--sky-blue) !important;
}

.bg-sky-blue {
    background-color: var(--sky-blue) !important;
}

.text-tan {
    color: var(--tan) !important;
}

.bg-tan {
    background-color: var(--tan) !important;
}

.text-red {
    color: var(--red) !important;
}

.bg-red {
    background-color: var(--red) !important;
}

.text-light-red {
    color: var(--light-red) !important;
}

.bg-light-red {
    background-color: var(--light-red) !important;
}

.text-dark-red {
    color: var(--dark-red) !important;
}

.bg-dark-red {
    background-color: var(--dark-red) !important;
}

.text-gray-200 {
    color: var(--gray-200) !important;
}

.bg-gray-200 {
    background-color: var(--gray-200) !important;
}

.text-black {
    color: var(--black) !important;
}

.bg-black {
    background-color: var(--black) !important;
}

.border-black {
    border: 1px solid var(--black) !important;
}

.text-gray {
    color: var(--gray) !important;
}

.bg-gray {
    background-color: var(--gray) !important;
}

.text-light-gray {
    color: var(--light-gray) !important;
}

.bg-light-gray {
    background-color: var(--light-gray) !important;
}

.text-light-blue {
    color: var(--light-blue) !important;
}

.bg-light-blue {
    background-color: var(--light-blue) !important;
}

.text-blue {
    color: var(--blue) !important;
}

.bg-blue {
    background-color: var(--blue) !important;
}

.border-blue {
    border: 1px solid var(--blue) !important;
}

.text-dark-blue {
    color: var(--dark-blue) !important;
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.text-red {
    color: var(--red) !important;
}

.bg-red {
    background-color: var(--red) !important;
}

.bg-clear {
    background: var(--clear) !important;
}

.border-faded {
    border: 1px solid rgba(255,255,255,.1);
}

@-webkit-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes Gradient {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.mt-6px {
    margin-top: 6px;
}

hr {
    margin: 1.5rem 0;
    border-top: 1px solid var(--gray-300);
}

hr.white {
    border-top: 1px solid var(--white);
}

hr.white-2 {
    border-top: 2px solid var(--white);
}

hr.black {
    border-top: 1px solid var(--black);
}

hr.black-2 {
    border-top: 2px solid var(--black);
}

hr.blue-2 {
    border-top: 2px solid var(--blue);
}

hr.light-blue-2 {
    border-top: 2px solid var(--light-blue);
}

hr.blue-dots {
    border-top: 2px dotted var(--blue);
}

hr.black-dots {
    border-top: 2px dotted var(--black);
}

hr.black {
    border-top: 1px solid var(--black);
}

hr.faded {
    border-top: 1px solid rgba(255,255,255,.1);
}

.border-white {
    border: 1px solid var(--white) !important;
}

.border-white-2 {
    border: 2px solid var(--white) !important;
}

.border-top-light-blue {
    border-top: 1px solid var(--light-blue);
}

.border-bottom-2 {
    border-bottom: 2px solid var(--gray-300);
}

.border-bottom-faded {
    border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (min-width: 1200px) {
    .border-xl-left {
        border-left: 1px solid var(--gray-300);
    }

    .border-xl-left-white {
        border-left: 1px solid var(--white);
    }

    .border-xl-left-faded {
        border-left: 1px solid rgba(255, 255, 255, .1);
    }

    .border-xl-right {
        border-right: 1px solid var(--gray-300);
    }

    .border-xl-right-white {
        border-right: 1px solid var(--white);
    }

    .border-xl-right-faded {
        border-right: 1px solid rgba(255, 255, 255, .1);
    }
}

@media (min-width: 992px) {
    .border-lg-left {
        border-left: 1px solid var(--gray-300);
    }

    .border-lg-left-white {
        border-left: 1px solid var(--white);
    }

    .border-lg-left-faded {
        border-left: 1px solid rgba(255,255,255,.1);
    }

    .border-lg-right {
        border-right: 1px solid var(--gray-300);
    }

    .border-lg-right-white {
        border-right: 1px solid var(--white);
    }

    .border-lg-right-faded {
        border-right: 1px solid rgba(255,255,255,.1);
    }
}

@media (min-width: 768px) {
    .border-md-left {
        border-left: 1px solid var(--gray-300);
    }

    .border-md-left-white {
        border-left: 1px solid var(--white);
    }

    .border-md-left-faded {
        border-left: 1px solid rgba(255, 255, 255, .1);
    }

    .border-md-right {
        border-right: 1px solid var(--gray-300);
    }

    .border-md-right-white {
        border-right: 1px solid var(--white);
    }

    .border-md-right-faded {
        border-right: 1px solid rgba(255, 255, 255, .1);
    }
}


/* TYPOGRAPHY

font-family: 'Lora', sans-serif;

*/

h1, .h1 {
    font-size: 3rem;
}

h2, .h2 {
    font-size: 2.25rem;
}

h3, .h3 {
    font-size: 1.6rem;
}

h4, .h4 {
    font-size: 1.3rem;
}

h5, .h5 {
    font-size: 1.2rem;
}

h6, .h6 {
    font-size: 1.1rem;
}

@media (max-width: 1199.98px) {
    h1, .h1 {
        font-size: calc(2rem + 1vw);
    }

    h2, .h2 {
        font-size: calc(1.75rem + 0.5vw);
    }

    h3, .h3 {
        font-size: calc(1.5rem + 0.25vw);
    }

    h4, .h4 {
        font-size: calc(1.25rem + 0.15vw);
    }

    .display-1 {
        font-size: calc(2.25rem + 3vw);
    }

    .display-2 {
        font-size: calc(2rem + 2.85vw);
    }

    .display-3 {
        font-size: calc(1.85rem + 2.5vw);
    }

    .display-4 {
        font-size: calc(1.5rem + 2.25vw);
    }
}

body {
    position: relative;
    font-family: 'Lora', sans-serif;
    font-weight: 400;
    color: var(--black);
}

h1, .h1, h2, .h2, h3, .h3, .display-1, .display-2, .display-3, .display-4 {
    font-family: 'Lora', serif;
    color: var(--red);
    font-weight: 500;
    line-height: 1;
    font-variant: small-caps;
}

h4, .h4, h5, .h5, h6, .h6 {
    font-family: 'Lora', serif;
    color: var(--black);
    font-weight: 500;
    line-height: 1;
    font-variant: small-caps;
}

.bg-blue h1,
.bg-blue .h1,
.bg-blue h2,
.bg-blue .h2,
.bg-blue h3,
.bg-blue .h3,
.bg-blue h4,
.bg-blue .h4,
.bg-blue h5,
.bg-blue .h5,
.bg-blue h6,
.bg-blue .h6,
.bg-blue .display-1,
.bg-blue .display-2,
.bg-blue .display-3,
.bg-blue .display-4 {
    color: var(--white);
}

.text-white a:not(.btn) {
    color: var(--white) !important;
}

.text-transform-none {
    text-transform: none;
}

.lh-1 {
    line-height: 1 !important;
}

.lh-115 {
    line-height: 1.15 !important;
}

.lh-125 {
    line-height: 1.25 !important;
}

small {
    font-weight: inherit;
}

.font-12px {
    font-size: 12px !important;
}

.font-13px {
    font-size: 13px !important;
}

.font-14px {
    font-size: 14px !important;
}

.font-15px {
    font-size: 15px !important;
}

.font-16px {
    font-size: 16px !important;
}

.font-17px {
    font-size: 17px !important;
}

.font-18px {
    font-size: 18px !important;
}

.font-19px {
    font-size: 19px !important;
}

.font-20px {
    font-size: 20px !important;
}

.font-21px {
    font-size: 21px !important;
}

.font-22px {
    font-size: 22px !important;
}

.font-weight-300 {
    font-weight: 300 !important;
}

.font-weight-400 {
    font-weight: 400 !important;
}

.font-weight-500 {
    font-weight: 500 !important;
}

.font-weight-600 {
    font-weight: 600 !important;
}

.font-weight-700 {
    font-weight: 700 !important;
}

.font-weight-800 {
    font-weight: 800 !important;
}

.font-weight-900 {
    font-weight: 900 !important;
}

.font-lora {
    font-family: 'Lora', sans-serif !important;
}

.no-font-variant {
    font-variant: none;
}

.lead {
    font-size: 1.25rem;
    font-weight: inherit;
}

.subheading {
    color: var(--turquoise);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

@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;
    }
}

/* blockquote {
    font-size: 18px;
} */

.no-last-p-margins p:last-child {
    margin-bottom: 0;
}

.eyebrow {
    font-family: 'Lora', sans-serif;
    font-weight: 400;
    font-size: 16px;
    font-variant: small-caps;
    letter-spacing: 1px;
    margin-bottom: .25rem;
}

strong, b {
    font-weight: 700;
}

#main_content a:not(.btn) {
    display: inline-block;
    font-weight: 600;
    word-wrap: break-word;
    color: var(--blue);
    transition: all .3s ease;
}

#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 ul li {
    margin: 5px 0;
}

ul {
    padding-left: 1.5rem;
}

/* ul li::marker {
    color: var(--blue);
} */

p .fa-external-link,
p .fa-external-link-alt,
li .fa-external-link,
li .fa-external-link-alt {
    font-size: 75%;
    vertical-align: middle;
    margin-top: -2px;
}

.fa-xxs {
    font-size: 75% !important;
    margin-top: 5px !important;
}

.disabled-link {
    pointer-events: none;
    opacity: .5;
    user-select: none;
}

.no-underline {
    text-decoration: none !important;
    background-image: none !important;
}

/* ul li::marker {
    color: var(--blue);
} */

p + ul.spaced-list {
    margin-top: -.5rem;
}

ul.favicon-list {
   list-style: none;
   padding-left: 10px;
}

ul.favicon-list {
   list-style: none;
   padding-left: 0;
}

ul.favicon-list li {
    line-height: 1.25;
    margin-left: 10px;
    margin-bottom: 15px !important;
    position: relative;
}

/* ul.favicon-list li:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -15px;
    background: url('/assets/img/logos/favicons/favicon-black.svg') center center no-repeat;
    width: 15px;
    height: 15px;
    background-color: var(--white);
    padding: 1px;
}

ul.favicon-list.white li:before {
    background: url('/assets/img/logos/favicons/favicon-white.svg') center center no-repeat;
} */

ul.favicon-list li a {
    display: inline-block;
}

.favicon-icon {
    width: 60px;
}

.favicon-circle {
    position: relative;
    display: inline-block;
    background-color: var(--black);
    padding: 5px;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    margin-bottom: 5px;
}

.favicon-circle .favicon-circle-inner {
    display: inline-block;
    background-color: var(--white);
    padding: 5px;
    border-radius: 100%;
    width: 40px;
    height: 40px;
}

.favicon-circle .favicon-circle-inner span {
    display: inline-block;
    background-color: var(--blue);
    padding: 5px;
    border-radius: 100%;
    width: 30px;
    height: 30px;
}

.favicon-circle .favicon-circle-inner span img {
    width: 5px;
    position: absolute;
    top: 51%;
    right: 0;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, -51%);
}


/* BUTTONS */

.btn-row {
    margin-top: -15px;
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}

.btn-row [class*=col-],
.btn-row [class*=col] {
    padding-left: 7.5px !important;
    padding-right: 7.5px !important;
}

.btn-row .btn {
    margin-top: 15px;
}

.btn {
    font-family: 'Lora', sans-serif;
    font-weight: 600 !important;
    border-radius: 0;
    border-width: 1px;
    transition: all .3s ease;
}

.btn-reg {
    padding: .85rem 1.5rem;
}

.btn-reg .fa-external-link-alt,
.btn-reg .fa-external-link {
    /* color: var(--tan); */
    font-size: 75%;
    vertical-align: top;
    margin-top: 6px;
}

.btn-sm {
    font-size: 13px;
    padding: 8px 12px;
}

.btn-sm .fa-external-link-alt,
.btn-sm .fa-external-link {
    font-size: 75%;
    vertical-align: top;
    margin-top: 5px;
}

.btn-blue {
    border: 1px solid var(--blue);
    background-color: var(--blue);
    color: var(--white);
}

.btn-blue:hover,
.btn-blue:focus,
.btn-blue:target,
.btn-blue:active {
    border: 1px solid var(--dark-blue);
    background-color: var(--dark-blue);
    color: var(--white);
    text-decoration: none !important;
    outline: 0;
    box-shadow: none;
}

.btn-blue.active {
    border: 1px solid var(--dark-blue);
    background-color: var(--dark-blue);
    color: var(--white);
    text-decoration: underline;
}

.btn-outline-blue {
    color: var(--blue);
    border: 1px solid var(--blue);
    background-color: transparent;
}

.btn-outline-blue:hover {
    background-color: var(--blue);
    color: var(--white) !important;
    border: 1px solid var(--blue);
}

.btn-outline-blue.focus,
.btn-outline-blue:focus,
.btn-outline-blue:target,
.btn-outline-blue:active {
    background-color: var(--blue);
    color: var(--white) !important;
    border: 1px solid var(--blue);
    box-shadow: none;
}

.btn-black {
    border: 1px solid var(--black);
    background-color: var(--black);
    color: var(--white);
}

.btn-black:hover,
.btn-black:focus,
.btn-black:target,
.btn-black:active {
    border: 1px solid var(--light-black);
    background-color: var(--light-black);
    color: var(--white);
    text-decoration: none !important;
    outline: 0;
    box-shadow: none;
}

.btn-black.active {
    border: 1px solid var(--light-black);
    background-color: var(--light-black);
    color: var(--white);
    text-decoration: underline;
}

.btn-outline-black {
    color: var(--black);
    border: 1px solid var(--black);
    background-color: transparent;
}

.btn-outline-black:hover {
    background-color: var(--black);
    color: var(--white) !important;
    border: 1px solid var(--black);
}

.btn-outline-black.focus,
.btn-outline-black:focus,
.btn-outline-black:target,
.btn-outline-black:active {
    background-color: var(--black);
    color: var(--white) !important;
    border: 1px solid var(--black);
    box-shadow: none;
}

.btn-outline-black.active {
    background-color: var(--black);
    color: var(--white) !important;
}

.btn-white {
	background-color: var(--white);
	color: var(--blue);
    border: 1px solid var(--white);
}

.btn-white:hover {
    background-color: var(--sky-blue);
    color: var(--dark-blue) !important;
    border: 1px solid var(--sky-blue);
}

.btn-white.focus,
.btn-white:focus,
.btn-white:target,
.btn-white:active {
	background-color: var(--sky-blue);
	color: var(--dark-blue);
    border: 1px solid var(--sky-blue);
    box-shadow: none;
    outline: -webkit-focus-ring-color auto 1px;
}

.btn-white.active {
	background-color: var(--gray-100);
	color: var(--blue);
	border: 1px solid var(--gray-100);
	text-decoration: underline;
}

.btn-outline-white {
    background-color: transparent;
	color: var(--white);
	border: 1px solid var(--white);
}

.btn-outline-white:hover {
	background-color: var(--white);
	color: var(--blue) !important;
	border: 1px solid var(--white);
}

.btn-outline-white.focus,
.btn-outline-white:focus,
.btn-outline-white:target,
.btn-outline-white:active {
	background-color: var(--white);
	color: var(--blue) !important;
	border: 1px solid var(--white);
    box-shadow: none;
    outline: -webkit-focus-ring-color auto 1px;
}


/* LOGOS */

a.brand-link {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    color: var(--blue) !important;
    text-decoration: none !important;
    transition: all .3s ease;
}

a.brand-link:hover .brand-inner,
a.brand-link:focus .brand-inner,
a.brand-link:target .brand-inner,
a.brand-link:active .brand-inner {
    border: 2px solid var(--blue) !important;
}

.brand-inner {
    width: 100%;
    height: 100%;
    background-color: var(--white);
    border: 2px solid var(--gray-300) !important;
    border-radius: 0;
    transition: all .3s ease;
}

.brand-inner img {
    width: 100%;
    padding: 1.5rem;
}

.brand-text {
    font-family: 'Lora', serif;
    font-size: 16px;
    height: 100%;
    display: flex;
    text-align: center;
    padding: 1.5rem .85rem;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.brand-text span {
    display: inline-block;
}


/* SOCIAL MEDIA */

.sm-nav {
    font-size: 12px;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.sm-nav li {
    display: inline-block;
}

.sm-nav li a {
    display: block;
    color: var(--blue) !important;
    display: block;
    padding: 0 7.5px !important;
}

.sm-nav li a:hover,
.sm-nav li a:focus,
.sm-nav li a:target,
.sm-nav li a:active {
    color: var(--dark-blue) !important;
}

.sm-nav.white li a {
    color: var(--white) !important;
}

.sm-nav.white li a:hover,
.sm-nav.white li a:focus,
.sm-nav.white li a:target,
.sm-nav.white li a:active {
    color: var(--gray-200) !important;
}


/* NAVIGATION */

#topbar {
    position: relative;
    background-color: var(--blue);
    font-size: 12px;
    font-weight: 400;
    padding: 6px 0;
}

#topbar p {
    margin-bottom: 0;
}

#topbar address {
    margin-bottom: 0;
}

#topbar a {
    font-weight: 700;
}

.btn-member-login {
    font-size: 12px;
    padding: 5px 10px;
    width: 124px;
}

#mobilebar {
    margin: 15px;
    position: relative;
    background-color: var(--blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

#mobilebar address {
    text-align: center;
    margin: 10px 0 0 0;
}

@media (min-width: 1200px) {
    #mobilebar {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    #topbar {
        display: none;
    }

    #mobilebar {
        display: block;
        padding: 15px;
    }
}

@media (min-width: 1200px) {
    .nav-offset {
        margin-top: -100px;
    }

    .nav-pad-offset {
        padding-top: 100px;
    }
}

#main_navbar {
    background-color: var(--white);
    padding: 0;
    border-bottom: 1px solid var(--gray-300);
    transition: all .3s ease;
}

a.navbar-brand {
    position: relative;
    z-index: 1001;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    color: var(--blue);
    display: block;
    padding: 0;
    margin: 0 auto;
    transition: all .3s ease;
}

.navbar-nav .nav-item .nav-link {
    font-family: 'Lora', sans-serif;
    font-weight: 500;
    font-variant: small-caps;
    font-size: 22px;
    /* text-transform: uppercase; */
    color: var(--blue);
    position: relative;
    text-align: center;
    border: 1px solid var(--clear);
    transition: all .3s ease;
}

.navbar-nav .nav-item .nav-link:hover {
    color: var(--dark-blue);
    text-decoration: none;
}

.navbar-nav .nav-item .nav-link:focus {
    text-decoration: none;
}

.nav-link .fa-external-link {
    font-size: 12px;
    vertical-align: top;
    margin-top: 7px;
    margin-left: 5px;
    width: 12px;
}

.dropdown.show .nav-link {
    color: var(--dark-blue);
}

.dropdown-menu {
    margin: 0;
    padding: 60px 30px 25px 30px;
    background-color: var(--white);
    border-radius: 0;
    border: 1px solid var(--gray-300);
    background-clip: border-box;
    columns: 3;
    -webkit-columns: 3;
    -moz-columns: 3;
    column-gap: 30px;
    -webkit-column-gap: 30px;
    -moz-column-gap: 30px;
    column-rule: 1px solid var(--gray-300);
    box-shadow: 0px 5px 15px rgba(0, 0, 0, .05);
}

.dropdown-menu li {
    margin-bottom: 0 !important;
}

.dropdown-item {
    /* text-align: center; */
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    padding: 5px 0;
    border-radius: 0;
    white-space: normal;
    transition: all .3s ease;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item:target,
.dropdown-item:active,
.dropdown-item.active {
    color: var(--dark-blue);
    background-color: var(--clear);
    text-decoration: underline;
}

.dropdown-item span {
    font-size: 12px;
    margin-right: 3px;
}

.mobile-search {
    width: 54px;
    padding: 8px 16px;
    color: var(--blue);
}

@media (min-width: 1200px) {
    .navbar-brand img {
        margin-top: -35px;
        margin-bottom: -12px;
        width: 130px;
        height: 136px;
        /* width: 96px;
        height: 100px; */
        max-width: 100%;
        transition: all .3s ease;
    }

    .navbar-expand-xl .navbar-nav .nav-link {
    	padding: 15px;
    }

    .dropdown-toggle:after {
        background: none;
        border: 0;
        font-size: 12px !important;
        content: "\f078";
        font: var(--fa-font-regular);
        right: 0;
        top: 1px;
        position: relative;
        margin-left: 3px;
        color: inherit;
        display: inline-block !important;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        transform: rotate(0deg);
        width: 12px;
    }

    .dropdown.show .dropdown-toggle:after {
    	transform: rotate(-180deg);
    }

    .nav-item.dropdown.show .dropdown-menu:before {
        content: "";
        position: absolute;
        z-index: 1;
        top: -17px;
        height: 17px;
        width: 100%;
        left: 0;
        right: 0;
        display: block;
    }

    .dropdown.show .dropdown-menu {
    	display: block;
    	margin-top: 17px;
    }

    .dropdown-menu {
        min-width: 255px;
    }

    #left_nav {
        width: 500px;
        margin-left: -15px;
        margin-right: auto;
    }

    #right_nav {
        justify-content: flex-end;
        width: 500px;
        margin-left: auto;
        margin-right: -15px;
    }

    .mobile-search {
        display: none;
    }
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        max-height: calc(80vh - 76px);
        overflow-y: auto;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .navbar-collapse::-webkit-scrollbar {
        display: none;
    }

    .navbar-brand img {
        margin-top: -30px;
        margin-bottom: -10px;
        width: 96px;
        height: 100px;
        transition: all .1s ease;
    }

    #main_nav_menu .nav-item .nav-link {
        text-align: left;
    	padding: 15px;
    }

    .dropdown-item {
        text-align: left;
    }

    .navbar-nav .nav-item a.nav-link {
        outline: none !important;
    }

    .dropdown .dropdown-toggle:after {
        position: absolute;
        right: 16px;
        top: 18px;
    	font-size: 1rem;
        background-color: none;
        border: 0;
        font-size: 1rem;
        content: "\f078";
        font: var(--fa-font-regular);
        color: inherit;
        display: inline-block !important;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        transform: rotate(0deg);
    }

    .dropdown.show .dropdown-toggle:after {
    	transform: rotate(-180deg);
    }

    .dropdown-menu {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
        padding: 25px 30px;
        margin: 0 15px 15px 15px;
    }

    #right_nav {
        margin-bottom: 15px;
    }

    .navbar-brand img {
        margin-top: 0;
        margin-bottom: 0;
        width: 77px;
        height: 80px;
    }
}

@media (max-width: 991.98px) {
    .dropdown-menu {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
        margin: 0 15px 15px 15px;
    }
}

@media (max-width: 767.98px) {
    .dropdown-menu {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}

.nav-link-active a.nav-link,
.nav-link.active a.nav-link {
    text-decoration: underline !important;
}


/* MEGA MENU */

.dropdown-closer {
    position: absolute;
    top: 25px;
    right: 25px;
    display: inline-block;
    padding: 5px !important;
    font-size: 20px;
    background-color: var(--clear) !important;
    color: var(--red) !important;
    opacity: 1;
}

.dropdown-closer:hover,
.dropdown-closer:focus,
.dropdown-closer:target,
.dropdown-closer:active {
    color: var(--dark-red) !important;
    opacity: 1 !important;
}

@media (min-width: 1200px) {
    .navbar .dropdown.mega {
        position: static;
    }

    .mega-menu {
        max-width: 1110px !important;
        transform: translateX(-50%) !important;
        left: 50% !important;
        right: 0 !important;
        margin: 0 auto !important;
        width: 100% !important;
    }

    .mega-menu .dropdown-heading {
        font-family: 'Lora', serif;
        font-size: 22px;
        font-weight: 500;
        line-height: 1;
        font-variant: small-caps;
        color: var(--red);
        position: absolute;
        top: 30px;
        left: 30px;
    }

    .nav-item.dropdown.mega.show:before {
        max-width: 1110px !important;
        content: "";
        position: absolute;
        bottom: 0;
        height: 17px;
        width: 100%;
        left: 0;
        right: 0;
        margin: 0 auto !important;
        display: block;
        z-index: 2;
    }
}

@media (max-width: 1199.98px) {
    .mega-menu .dropdown-heading {
        display: none;
    }

    .dropdown-closer {
        display: none;
    }
}


/* MOBILE MENU */

@media (min-width: 1200px) {
    .navbar-toggler {
        display: none;
    }
}

.navbar-toggler {
    margin: 0 0 0 0;
    padding: 12px 15px;
    border: none;
    background: transparent;
}

.navbar-toggler:focus {
    outline: none;
    background: transparent !important;
}

.navbar-toggler .icon-bar {
    background-color: var(--blue);
    transform: rotate(0deg) translate(0px, 0px);
    transition: ease all .2s;
}

.navbar-toggler .icon-bar {
    display: block;
    width: 24px;
    height: 2px;
    border-radius: 0;
}

.navbar-toggler .icon-bar+.icon-bar {
    margin-top: 5px;
}

.icon-bar:nth-child(2) {
    width: 24px;
    height: 2px;
    transition: ease all .2s;
}

.navbar-toggler:active>.icon-bar:nth-child(2) {
    transition: ease all .2s;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(1) {
    background: var(--red);
    transform: rotate(45deg) translate(4px, 6px);
    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(2)::after {
    opacity: 0;
}

.navbar-toggler:not(.collapsed) .icon-bar:nth-child(3) {
    background: var(--red);
    transform: rotate(-45deg) translate(4px, -6px);
    transition: ease all .2s;
}


/* HOME */

#hero {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: var(--blue);
    color: var(--white);
}

.bg-hero {
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    min-height: 350px;
    height: calc(65vh - 124px);
}

.hero-overlay {
    background: linear-gradient(rgba(0,82,155,.7), rgba(0,82,155,1));
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-text {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    color: var(--white);
    text-align: center;
}

.hero-text .row {
    justify-content: center;
}

.hero-text .eyebrow {
    font-size: 20px;
}

.hero-heading {
    font-size: 6rem;
    line-height: 1;
    color: var(--white);
    margin: 0 0 15px 0;
    text-shadow: 0px 0px 10px rgba(0,77,112,.1);
}

.hero-text a:not(.btn) {
    color: var(--white) !important;
}

@media (max-width: 1199.98px) {
    .hero-heading {
        font-size: 5.5rem;
    }
}

@media (max-width: 991.98px) {
    .hero-heading {
        font-size: 4.5rem;
    }
}

@media (max-width: 767.98px) {
    .hero-heading {
        font-size: 4rem;
    }
}

@media (max-width: 575.98px) {
    .hero-heading {
        font-size: 3rem;
    }
}

.hero-pp-btn {
    font-size: 20px;
    color: var(--white);
    align-self: center;
    bottom: 15px;
    position: absolute;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    border: 0;
    padding: 0;
    background-color: transparent;
    z-index: 2;
}

.subhero-cta-btn {
    display: block;
    width: 100%;
    padding: 1.5rem .5rem;
    height: 100%;
    min-height: 114px;
}

.subhero-cta-btn i {
    margin-bottom: .5rem;
}

.subhero-cta-col {
    font-size: 14px;
    z-index: 2;
    text-align: center;
    /* border-right: 1px solid rgba(255,255,255,.1); */
    border-bottom: 0;
    min-height: 64px;
}

/* .subhero-cta-col:last-of-type {
    border-right: 0;
} */

@media (max-width: 991.98px) {
    /* .subhero-cta-col:first-of-type {
        border-right: 1px solid rgba(255, 255, 255, .1);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-bottom: 15px;
    }

    .subhero-cta-col:nth-child(2) {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        padding-bottom: 15px;
    }

    .subhero-cta-col:nth-child(3) {
        border-right: 1px solid rgba(255, 255, 255, .1);
        padding-top: 15px;
    }

    .subhero-cta-col:nth-child(4) {
        padding-top: 15px;
    }

    .subhero-cta-col:first-of-type {
        border-right: 1px solid rgba(255, 255, 255, .1);
    }

    .subhero-cta-col:last-of-type {
        border-right: 0;
    } */
}

@media (max-width: 575.98px) {
    /* .subhero-cta-col {
        border-right: 0 !important;
        border-top: 1px solid rgba(255,255,255,.1);
        border-bottom: 0 !important;
        padding-top: 15px;
    }

    .subhero-cta-col:nth-child(3) {
        padding-bottom: 15px;
    } */
}


/* WHAT WE DO */

.arrow-col {
    position: relative;
}

.arrow-col p {
    font-weight: 500;
    margin-bottom: 0;
}

.arrow-col::after {
    content: "\f178";
    font-size: 1.25rem !important;
    font: var(--fa-font-regular);
    color: var(--blue);
    position: absolute;
    top: 50%;
    right: -10px;
    bottom: 0;
    left: auto;
    transform: translateY(-50%);
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
}

.arrow-col:last-of-type::after {
    display: none;
}

@media (max-width: 991.98px) {
    .arrow-col::after {
        content: "\f175";
        position: absolute;
        top: auto;
        right: 0;
        bottom: -30px;
        left: 50%;
        transform: translateX(-50%);
    }
}

.ibar-img-container {
    position: relative;
    overflow: hidden;
}

.img-ibar-horiz {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 102%;
    height: auto;
}

.img-ibar-horiz img {
    width: 100%;
    height: 100%;
}

.img-ibar-vert {
    position: absolute;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.img-ibar-vert img {
    position: relative;
    left: -48%;
    width: 100%;
    height: 100%;
}

.icon-image-overlay {
    font-size: 1.25rem;
    background-color: var(--blue);
    color: var(--white);
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: auto;
    padding: 15px;
    border-radius: 15px 0 0 0;
}


/* TESTIMONIALS */

.favicon-container {
    position: relative;
    z-index: 1;
    margin: -50px 0 10px 0;
}


/* CASE STUDIES */

.case-study-img-container {
    position: relative;
    overflow: hidden;
}

.case-study-ibar {
    position: absolute;
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
}

.case-study-thumb {
    width: 100%;
}

.case-study-logo-overlay {
    position: absolute;
    z-index: 3;
    top: auto;
    right: auto;
    bottom: 0;
    left: 0;
    padding: 15px;
    background-color: var(--white);
    border-radius: 0 15px 0 0;
}

.case-study-logo-overlay img {
    width: 100px;
}

.case-study-heading {
    font-family: 'Lora', sans-serif;
    font-weight: 700;
    font-size: 1.35rem;
    line-height: 1.25;
    margin-bottom: .25rem;
}

.case-study-heading a span {
    margin-right: 5px;
}

.case-study-heading a i {
    transition: all .3s ease;
}

.case-study-heading a:hover i,
.case-study-heading a:focus i,
.case-study-heading a:target i {
    transform: translateX(5px);
}

.case-study-heading.smaller {
    font-size: 1.15rem;
}

.case-study-heading a {
    text-transform: none;
}

.case-study-heading a span {
    float: right;
    color: var(--blue);
    margin-left: .5rem;
}

.case-study-desc {
    margin-bottom: 0;
}


/* CARDS */

.card {
    border-radius: 0;
    border: 1px solid var(--gray-300);
    transition: all .3s ease;
}

.card-header:first-child {
    border: 0;
    border-radius: 0;
    color: var(--white);
    background: var(--dark-blue);
    text-align: center;
}

.card-header,
.card-body,
.card-footer {
    padding: 1.5rem;
}

.card-link p:last-child,
.card-link ul:last-child,
.card-link ol:last-child {
    margin-bottom: 0;
}

span.small ul:last-child,
span.small ol:last-child {
    padding-left: 1.5rem;
}

.card-body p:last-child {
    margin-bottom: 0;
}

.card-footer:last-child {
    border-radius: 0;
}

.scroll-card {
    background-color: var(--light-gray);
    height: 100%;
    min-height: 350px;
    max-height: 350px;
    overflow-y: scroll;
    border: 0;
}

.scroll-card p:last-of-type {
    padding-bottom: 1.5rem;
}

.block-card {
    border: 0;
    background: #A5D9EA;
}

.block-card .card-body {
    padding: 3rem;
}

.card-link {
    color: inherit;
}

.card-link p {
    transition: all .3s ease;
}

.card-link:hover .card,
.card-link:focus .card {
    box-shadow: 0px 5px 15px rgba(0,0,0,.15);
    transition: all .3s ease;
}

.card-link:hover p,
.card-link:focus p {
    color: #555;
    transition: all .3s ease;
}

.card-link:hover ol,
.card-link:focus ol {
    color: #555;
    transition: all .3s ease;
}

.card-link:hover ul,
.card-link:focus ul {
    color: #555;
    transition: all .3s ease;
}

.card-hover:hover {
    box-shadow: 0px 5px 15px rgba(0,0,0,.15);
}

.card-img-overlay {
    background: linear-gradient(rgba(0, 82, 155, 1), rgba(0, 82, 155, .7));
    border-radius: 0;
}

.card-img-overlay .card-img-content {
    color: var(--white);
    margin-bottom: 0;
    text-align: left;
}

.card-img-content a {
    line-height: 1.25;
    color: var(--white) !important;
}

.card-img-content P:last-child {
    margin-bottom: 0;
}

.quote-card {
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    text-align: left !important;
}

.quote-card .card-footer {
    border: 0;
    background: transparent;
    padding-top: 0;
}

.quote-name {
    font-family: 'Lora', serif;
    text-transform: uppercase;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--blue);
    margin: 0;
}

.quote-detail {
    font-size: 12px;
    margin: 0;
}

.zoom-wrapper {
	position: relative;
	overflow: hidden !important;
}

.zoom-wrapper img {
	max-width: 100% !important;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

.card-zoom:hover img {
	-webkit-transform: scale(1.05);
	-moz-transform: scale(1.05);
	transform: scale(1.05);
}

.video-image {
    display: block;
    position: relative;
}

.video-image img {
    border-radius: 30px;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.video-image div {
    position: absolute;
    top: 50%;
    transform: translatey(-50%);
    left: 0;
    right: 0;
}

.video-image div span {
    font-weight: 600;
    font-size: 12px;
}


/* IMAGE BOXES */

.card-img-box {
    border: 0;
}

.card-img-box .card-body {
    padding: 0;
}

.card-img-box .row {
    padding: 0 !important;
    margin: 0 !important;
}

.card-img-box [class*=col-],
.card-img-box [class*=col] {
    padding: 0 !important;
    margin: 0 !important;
}

.img-txt-box .row {
    padding: 0 !important;
    margin: -7.5px -7.5px 0 -7.5px !important;
}

.img-txt-box [class*=col-],
.img-txt-box [class*=col] {
    padding: 0 7.5px !important;
    margin: 15px 0 0 0 !important;
}

.img-text-box {
    padding: 3rem;
}

.img-text-box-overlay {
    background: linear-gradient(to right, rgba(5,54,51,1), rgba(5,54,5,.65));
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

@media (max-width: 991.98px) {
    .img-text-box-overlay {
        background: linear-gradient(to bottom, rgba(5,54,51,1), rgba(5,54,51,.5));
    }
}

@media (max-width: 575.98px) {
    .img-text-box {
        padding: 3rem 15px;
    }
}


/* SUB PAGE */

.subpage-banner {
    position: relative;
    z-index: 1;
    overflow: hidden;
    background-color: var(--blue);
    color: var(--white);
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
    background-size: cover !important;
    text-align: center;
}

.subpage-banner-overlay {
    background: linear-gradient(rgba(0,82,155,.65), rgba(0,82,155,.65));
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

/* .subpage-banner.no-img {
    background-color: #00396D !important;
    opacity: 1 !important;
    background-image: radial-gradient(ellipse farthest-corner at 4px 4px, #00529B, #00529B 50%, #00396D 50%) !important;
    background-size: 4px 4px !important;
} */

.subpage-banner .container {
    position: relative;
    z-index: 3;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.subpage-banner .row {
    align-items: center;
    justify-content: center;
}

.subpage-banner h1 {
    color: var(--white);
    margin: 0;
}

.subpage-banner p {
    margin: .5rem 0 0 0;
}

.subpage-banner p.eyebrow {
    font-size: 20px;
    margin: 0 0 .25rem 0;
}

.subpage-banner a:not(.btn) {
    color: var(--gray-100) !important;
}

.subpage-banner a:not(.btn):hover,
.subpage-banner a:not(.btn):focus,
.subpage-banner a:not(.btn):target,
.subpage-banner a:not(.btn):active {
    color: var(--gray-100) !important;
}

.subpage-banner .btn-row {
    margin-top: 0px;
}

@media (max-width: 1199.98px) {
    .subpage-banner .container {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }
}

@media (max-width: 991.98px) {
    .subpage-banner .container {
        padding-top: 3.5rem;
        padding-bottom: 3.5rem;
    }
}

@media (max-width: 767.98px) {
    .subpage-banner .container {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }
}

@media (max-width: 575.98px) {
    .subpage-banner .container {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (min-width: 1200px) {
    #sidebar {
        top: calc(3rem + 143px);
    }

    #sidebar {
        max-height: calc(90vh - 143px);
        overflow-y: auto;
        overflow-x: hidden;
    }
}

#sidebar {
    border: 0;
    z-index: 2;

    /* font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
    color: hotpink !important;
    font-size: 12px !important;
    font-weight: bold !important; */
}

#sidebar h2 {
    line-height: 1;
}

#sidebar ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none;
    /* text-align: center; */
}

#sidebar .card-body {
    padding: 0;
}

#sidebar .card-footer {
    background-color: var(--clear);
    padding-top: 0;
    border: 0;
}

/* #sidebar ul li a {
    font-size: 14px;
    display: block;
    padding: .5rem;
}

#sidebar ul li a.active {
    text-decoration: underline;
    color: var(--dark-blue);
}

#sidebar ul li a span {
    margin-left: 3px;
} */

#subnav_section {
    background-color: var(--gray-100);
    top: 100px;
    position: -webkit-sticky;
    position: sticky;
    z-index: 999;
}

#subnav_section .col-12 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

#subnav_container {
    padding: 0;
    margin: 0;
}

#subnav_container .expand-btn {
    font-size: 13px;
    color: var(--blue) !important;
    background-color: var(--gray-100) !important;
    box-shadow: none !important;
    border: 0;
    border-radius: 0;
    padding-left: 15px !important;
    padding-right: 15px !important;
    line-height: 1;
}

#subnav_container .expand-btn::after {
    top: 15px !important;
    right: 20px !important;
}

@media (min-width: 1200px) {
    #subnav_container .expand-btn {
        display: none;
    }
}

#subnav {
    justify-content: center;
}

#submenu {
    font-size: 13px;
    text-align: center;
    padding: 0;
    justify-content: center;
    flex-direction: row;
}

#submenu li {
    margin-bottom: 0 !important;
}

#submenu li a {
    padding: 15px;
    color: var(--blue) !important;
    font-weight: 600 !important;
    line-height: 1;
}

#submenu li a i {
    font-size: 8px !important;
    vertical-align: top;
    margin-top: 3px;
    margin-left: 2px;
}

#submenu li a:hover,
#submenu li a:focus,
#submenu li a:target,
#submenu li a:active {
    color: var(--dark-blue) !important;
    text-decoration: underline;
}

#submenu li a.sub-nav-active {
    color: var(--dark-blue) !important;
    background: var(--white) !important;
    text-decoration: underline;
}

@media (max-width: 1199.98px) {
    #subnav_section {
        top: 90px;
    }

    #submenu {
        flex-direction: column;
        text-align: left;
        padding: 15px 0 !important;
    }

    #subnav {
        padding: 0;
    }

    #submenu li a {
        padding: 15px;
        display: block !important;
    }
}

#submenu li a:before {
    display: none;
}

.member-list {
    font-size: 12px;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.member-list li {
    font-weight: 500;
    line-height: 1.15;
}

.member-list li {
    margin: 10px 0 !important;
}

.member-list li span {
    font-weight: 400;
    font-style: italic;
}


/* Breadcrumbs */

#breadcrumbs {
    background-color: var(--blue);
}

.breadcrumb {
    font-size: 12px;
    background-color: var(--clear);
    margin-bottom: 0;
    border-radius: 0;
    padding: 7.5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.breadcrumb li {
    color: var(--gray-100);
}

.breadcrumb li.active {
    color: var(--gray-100);
}

.breadcrumb-item+.breadcrumb-item::before {
    color: rgba(255,255,255,.1);
}

.breadcrumb li a {
    color: var(--white) !important;
}


/* COLLAPSE */

.expand-btn {
    text-transform: none;
    color: var(--blue);
    background-color: var(--sky-blue);
    border: 2px solid var(--sky-blue);
    border-radius: 0;
    display: block;
    text-align: left;
    padding: 1rem 2.5rem 1rem 1.25rem !important;
    white-space: normal;
    position: relative;
    width: 100%;
}

.expand-btn.collapsed {
    text-transform: none;
    color: var(--blue);
    background-color: var(--sky-blue);
    border: 2px solid var(--sky-blue);
    border-radius: 0;
    display: block;
    text-align: left;
    padding: 1rem 2.5rem 1rem 1.25rem !important;
    white-space: normal;
    position: relative;
    width: 100%;
}

.expand-btn span {
    color: var(--black);
    font-size: 14px;
    font-weight: 400;
    display: inline-block;
}

.expand-btn.collapsed:hover {
    box-shadow: none;
}

.expand-btn:hover {
    background-color: var(--light-gray);
    border-color: var(--light-blue);
    box-shadow: none;
}

.expand-btn:focus {
    color: var(--dark-blue);
    background-color: var(--light-gray);
    border-color: var(--light-blue);
    box-shadow: none;
}

.expand-btn::after {
    content: "\f078";
    font: var(--fa-font-solid);
    right: 1rem;
    top: 1.15rem;
    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 {
    content: "\f078";
    font: var(--fa-font-solid);
    right: 1rem;
    top: 1.15rem;
    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;
}

.expand-btn.disabled {
    cursor: inherit;
    opacity: .25;
}

.expand-heading {
    font-size: 1.5rem;
    line-height: 1;
    display: block;
    text-align: left;
    padding: 15px 2.5rem 15px 0 !important;
    white-space: normal;
    position: relative;
    width: 100%;
    text-decoration: underline !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.expand-heading.collapsed {
    text-decoration: none !important;
}

.expand-heading::after {
    content: "\f078";
    font: var(--fa-font-solid);
    right: 0;
    top: 16px;
    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-heading.collapsed::after {
    transform: rotate(0deg);
    transition: all .2s ease;
}

.expand-heading:hover {
    text-decoration: underline !important;
}

.expand-heading.focus,
.expand-heading:focus {
    text-decoration: underline !important;
    box-shadow: none !important;
    outline: 0 !important;
}

@media (max-width: 767.98px) {
    .expand-heading {
        font-size: 1.25rem;
    }
}

ul.link-list {
    padding: 0;
    margin: 0;
}

.link-list li {
    list-style-type: none;
}

.link-list li a {
    color: var(--blue);
    display: block;
    width: 100%;
    text-align: left;
    font-size: .9rem;
}

ul.spaced-list {
    margin: 0;
    padding-left: 1.1rem;
}

ul.spaced-list li {
    line-height: 1.25;
    margin-bottom: 10px;
}

ul.checklist {
    list-style: none !important;
    padding-left: 0;
    margin: 0;
}

ul.checklist ul {
    list-style: none !important;
    padding-left: 1rem;
    margin: 0;
}

.checklist li {
    position: relative;
    padding: 0 0 0 1.5rem;
    margin-top: 10px;
}

.checklist li:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path fill='%23F37321' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}

.checklist li ul li {
    position: relative;
    padding: 0 0 0 1.5rem;
    margin-top: 15px;
}

.checklist li ul li:before {
    content: '';
    position: absolute;
    top: 3px;
    left: 0;
    width: 1.1rem;
    height: 1.1rem;
    background: url("data:image/svg+xml;utf8,<?xml version='1.0' encoding='utf-8'?><svg width='18' height='18' viewBox='0 0 1792 1792' xmlns='http://www.w3.org/2000/svg'><path fill='%23F37321' d='M1671 566q0 40-28 68l-724 724-136 136q-28 28-68 28t-68-28l-136-136-362-362q-28-28-28-68t28-68l136-136q28-28 68-28t68 28l294 295 656-657q28-28 68-28t68 28l136 136q28 28 28 68z'/></svg>") no-repeat;
}

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-bottom: 10px;
}

ul.list-columns li a {
    display: inline !important;
}

@media (min-width: 576px) {
    ul.list-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (min-width: 992px) {
    ul.list-columns {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }

    ul.list-columns.two-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

@media (min-width: 1200px) {
    ul.list-columns {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
    }
    ul.list-columns.two-columns {
        columns: 2;
        -webkit-columns: 2;
        -moz-columns: 2;
    }
}

ol.numberlist {
    list-style: none;
    counter-reset: my-awesome-counter;
    align-content: center;
    margin: 0 0 5px 0;
    padding: 0;
}

ol.numberlist li {
    counter-increment: my-awesome-counter;
    font-weight: 500;
    position: relative;
    width: 100%;
    padding: 40px 0 15px 75px;
    margin-top: 15px;
}

ol.numberlist li::before {
    font-family: monospace;
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    color: var(--blue);
    content: counter(my-awesome-counter);
    font-size: 100px;
    font-weight: 700;
    line-height: 1;
}


/* Events */

.event-item p {
    font-size: 14px;
    margin-bottom: 0;
}

.event-heading {
    font-size: 16px !important;
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: .25rem;
}

.event-detail {
    font-size: 12px !important;
}

.committee-event-card {
    background-color: var(--sky-blue);
    max-height: 500px;
    overflow-y: auto;
    margin-bottom: 1.5rem;
}


/* Calendar */

@media (min-width: 992px) {
    .event-calendar-sidebar-col {
        width: 300px;
    }
}

thead .fc-scroller {
    overflow-y: hidden !important;
}

.fc-scrollgrid-section:first-of-type .fc-scroller {
    overflow-y: hidden !important;
}

.fc-view-harness {
    background-color: var(--white);
}

#calendar a {
    display: flex !important;
    font-size: 12px;
    text-decoration: none !important;
}

#calendar a:hover {
    cursor: pointer;
}

.fc-theme-standard th {
    background-color: var(--sky-blue);
}

.fc-daygrid-block-event.fc-event {
    overflow: hidden;
}

/* .fc-theme-standard th {
    background-color: var(--blue);
    color: var(--white) !important;
}

.fc-theme-standard th a {
    color: var(--white) !important;
} */


.fc-timegrid-event,
.fc-timegrid-more-link,
.fc-daygrid-event {
    border-radius: 0;
}


.fc-daygrid-block-event {
    border-color: var(--gray-300) !important;
    background-color: var(--white) !important;
}

.fc-daygrid-dot-event.fc-event-mirror,
.fc-daygrid-dot-event:hover,
.fc-daygrid-block-event:hover {
    background: var(--gray-200) !important;
}


.fc-daygrid-block-event .fc-event-main {
    color: var(--blue);
}

@media (max-width: 767.98px) {
    .fc .fc-toolbar {
        flex-direction: column;
    }

    .fc-toolbar-title {
        margin: 10px 0 !important;
    }
}

.fc .fc-button .fc-icon {
    font-size: 14px !important;
}

.fc-button-primary {
    font-size: 14px !important;
    background-color: var(--blue) !important;
    color: var(--white) !important;
    border-radius: 0 !important;
    border: 1px solid var(--white) !important;
    text-transform: capitalize !important;
}

.fc-button-primary:hover,
.fc-button-primary:focus,
.fc-button-primary:target,
.fc-button-primary:active {
    background-color: var(--dark-blue) !important;
    color: var(--white) !important;
    opacity: 1 !important;
}

.fc .fc-button:disabled {
    color: var(--blue) !important;
    background-color: var(--sky-blue) !important;
    opacity: 1;
}

.fc .fc-popover-close {
    color: var(--red);
    opacity: 1;
}

.fc .fc-button-primary:focus,
.fc .fc-button-primary:not(:disabled).fc-button-active:focus,
.fc .fc-button-primary:not(:disabled):active:focus {
    box-shadow: none;
}


/* Team */

.team-card {
    font-size: 14px;
    height: 100%;
}

.team-card img {
    border-radius: 100%;
}

.team-link-container img {
    width: 100%;
    border-radius: 100%;
}

.team-image {
    position: relative;
}

.team-name {
    font-family: 'Lora', serif !important;
    font-weight: 500;
    font-size: 1.25rem;
    font-variant: small-caps;
    line-height: 1.25;
    display: block;
    margin-bottom: 0;
}

.team-title {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.25;
    margin-bottom: 0;
}

.team-position {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.25;
    margin: .25rem 0 0 0;
}

.team-court {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
    margin: .25rem 0 0 0;
}

.team-specialty {
    font-weight: 400;
    font-size: 12px;
    line-height: 1.25;
    margin: .25rem 0 0 0;
}


/* TABLES */

.table {
    font-size: 12px;
}

.table th {
    font-size: 14px;
    background-color: var(--blue);
    color: var(--white);
}

.table thead th {
    line-height: 1;
    border-bottom: 0;
    vertical-align: middle;
}

.table th,
.table td {
    vertical-align: middle;
}

.table-nowrap td,
.table-nowrap th {
    text-wrap: nowrap;
}

.nowrap {
    text-wrap: nowrap;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: var(--sky-blue) !important;
    box-shadow: none !important;
}

.table.dataTable.table.table-striped>tbody>tr:nth-of-type(2n+1)>* {
    background-color: var(--sky-blue) !important;
    box-shadow: none !important;
}

/* .table-striped tbody tr.retired:nth-of-type(odd) {
    background-color: var(--light-yellow) !important;
    box-shadow: none !important;
}

.table.dataTable.table.table-striped>tbody>tr.retired:nth-of-type(2n+1)>* {
    background-color: var(--light-yellow) !important;
    box-shadow: none !important;
} */

.retired {
    color: var(--gray-700) !important;
    /* background: var(--light-yellow) !important; */
}

.dt-container .row {
    margin: 0;
}

.dt-container .d-md-flex {
    padding: 0;
}

.dt-container .dt-layout-full {
    margin-bottom: 15px;
}

div.dt-container>div.row {
    margin-bottom: 0;
}

.dt-search {
    margin: 0 0 15px 0;
    padding: 0;
    width: 100% !important;
}

div.dt-container div.dt-search input {
    display: block;
    width: 100%;
    margin: 0;
}

.name-col {
    min-width: 175px !important;
}

td span {
    font-style: italic;
}

.address-col {
    min-width: 175px !important;
}

.court-col {
    min-width: 160px !important;
}

.phone-col {
    width: 145px !important;
    min-width: 145px !important;
    max-width: 145px !important;
}

.phone-col a {
    white-space: nowrap;
}

.email-col {
    width: 220px !important;
    min-width: 220px !important;
    max-width: 220px !important;
}

.email-col a {
    max-width: 196px !important;
    word-break: initial;
    white-space: wrap;
}

@media (max-width: 991.98px) {
    .name-col {
        width: 175px !important;
    }

    .address-col {
        width: 175px !important;
    }

    .court-col {
        width: 160px !important;
    }
}

.pagination {
    padding: 0 !important;
    margin: 0 auto !important;
    text-align: center !important;
}

.pagination {
    border-radius: 0;
}

.page-item:first-child .page-link,
.page-item:last-child .page-link {
    border-radius: 0;
}

.page-item.active .page-link {
    color: var(--white) !important;
    background-color: var(--blue);
    border-color: var(--blue);
}

.page-item .page-link:hover,
.page-item.active .page-link:hover {
    text-decoration: none !important;
}

.page-item .page-link,
.page-item .page-link:focus,
.page-item .page-link.focus {
    box-shadow: none !important;
    text-decoration: none !important;
}

.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link.focus {
    box-shadow: none !important;
}

.dt-layout-start.dt-element-removal {
    display: none !important;
}

div.dt-container div.dt-paging ul.pagination {
    justify-content: center !important;
}

table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-asc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-orderable-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after {
    opacity: .25;
}

table.dataTable thead>tr>th.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>th.dt-ordering-desc span.dt-column-order:after,
table.dataTable thead>tr>td.dt-ordering-asc span.dt-column-order:before,
table.dataTable thead>tr>td.dt-ordering-desc span.dt-column-order:after {
    opacity: 1;
}

@media (max-width: 767.98px) {
    div.dt-container div.row>* {
        margin-bottom: 0;
    }

    .dt-paging {
        margin-top: 15px !important;
    }
}


/* SWIPERS */

.swiper {
    padding: 0 15px;
    margin: 0 -15px;
}

.swiper-slide {
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    height: auto;
}

.swiper-slide .card {
    width: 100%;
    height: 100%;
}

.swiper-pagination {
    position: relative;
    height: 48px;
}

.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: -15px;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
    margin-top: 10px !important;
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.swiper-button-prev,
.swiper-button-next {
    font-weight: 400;
    margin-top: -18px;
    width: 36px;
    height: 36px;
    color: var(--white);
    background-color: var(--blue);
    border: 1px solid var(--gray-300);
    border-radius: 0;
    padding: 15px;
    transition: all .3s ease;
}

.swiper-button-prev:hover,
.swiper-button-prev:focus,
.swiper-button-prev:active {
    background-color: var(--dark-blue);
}

.swiper-button-next:hover,
.swiper-button-next:focus,
.swiper-button-next:active {
    background-color: var(--dark-blue);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background-color: var(--dark-blue);
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 16px;
}

.swiper-button-prev.white,
.swiper-button-next.white {
    background-color: var(--white);
    color: var(--blue);
    border: 0 !important;
}

.swiper-button-prev.white:hover,
.swiper-button-prev.white:focus,
.swiper-button-prev.white:active,
.swiper-button-next.white:hover,
.swiper-button-next.white:focus,
.swiper-button-next.white:active {
    background-color: var(--gray-300);
}

.swiper-button-prev {
    left: 15px;
}

.swiper-button-next {
    right: 15px;
}

/* .swiper-button-prev:focus,
.swiper-button-next:focus {
    outline: 0;
} */

.swiper-button-prev.outset {
    left: 0;
}

.swiper-button-next.outset {
    right: 0;
}

.swiper-button-prev.bottom {
    top: auto;
    bottom: 0 !important;
}

.swiper-button-next.bottom {
    top: auto;
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    position: relative;
    background: transparent;
    border: 1px solid var(--blue);
    opacity: 1;
    border-radius: 0;
}

.swiper-pagination-bullet-active {
    background: var(--blue);
    border: 1px solid var(--blue);
    opacity: 1;
}

.swiper-pagination.white .swiper-pagination-bullet {
    background: transparent;
    border: 1px solid var(--white);
    opacity: 1;
}

.swiper-pagination.white .swiper-pagination-bullet-active {
    background: var(--white);
    border: 1px solid var(--white);
    opacity: 1;
}

.swiper-pagination-fraction {
    color: var(--blue);
    font-weight: 900;
    font-size: 12px;
    margin-bottom: 0;
}

.swiper-horizontal > .swiper-scrollbar {
    position: relative;
    margin-top: 25px;
    height: 5px;
    bottom: 12px;
    left: 47px;
    width: calc(100% - 95px);
    border-radius: 5px;
}

.swiper-scrollbar-drag {
    background: rgba(230,34,46,1);
    border-radius: 5px;
}

.swiper-scrollbar.white .swiper-scrollbar-drag {
    background: rgba(255,255,255,1);
}


/* Ticker */

.swiper-ticker {
    padding-left: 0;
    padding-right: 0;
}

.swiper-ticker .swiper-wrapper {
    transition-timing-function: linear;
}

.swiper-ticker .swiper-slide {
    width: 220px;
    border-right: 1px solid var(--gray-300);
    /* -ms-flex-align: start;
    -webkit-align-items: start;
    align-items: start; */
}

.swiper-ticker .swiper-slide:last-of-type {
    border-right: 0;
}

@media (max-width: 991.98px) {
    .swiper-ticker .swiper-slide {
        width: 130px;
    }
}

.ticker-card {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    /* text-align: left; */
    font-size: 12px;
}

.ticker-card p {
    margin-bottom: 0;
}

.swiper-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 30px;
    z-index: 9;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
}

.swiper-ticker .swiper-button-next {
    background: transparent;
    border: 0;
    right: -7.5px;
}

.swiper-ticker .swiper-button-prev {
    background: transparent;
    border: 0;
    left: -7.5px;
}


/* MEDIA */

.link-card {
    text-align: left;
    height: 100% !important;
    border: 1px solid var(--gray-300);
    background-image: none !important;
    overflow: hidden;
}

.link-card:hover {
    border: 1px solid var(--blue);
}

.link-card .row {
    position: relative;
}

.media-content-col {
    align-self: center;
    position: static;
}

.link-card img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.link-card .details {
    font-weight: 500;
    font-size: 12px;
    margin-bottom: .25rem;
}

.link-card .details span {
    letter-spacing: 1px;
}

.link-card .details small {
    font-size: 60%;
}

.link-card .heading {
    font-weight: 500;
    line-height: 1.25;
    margin-bottom: 0;
}

.link-card .heading a {
    display: block !important;
}

.link-card .heading a span {
    float: right;
    margin-top: .25rem;
    margin-left: .25rem;
    font-size: 75%;
    vertical-align: top;
}

.link-card .desc {
    margin-top: .25rem;
    font-size: 14px;
}

.link-card .desc-large {
    font-size: 16px;
}


/* Logos */

.logo-link {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    background-size: 0 0 !important;
    transition: all .3s ease;
}

.logo-inner {
    background-color: var(--white);
    padding: 1.5rem;
    border: 1px solid var(--gray-300);
    aspect-ratio: 16/9;
    transition: all .3s ease;
}

.logo-link:hover .logo-inner,
.logo-link:focus .logo-inner,
.logo-link:target .logo-inner,
.logo-link:active .logo-inner {
    border: 1px solid var(--blue);
}

.logo-link img {
    width: 100%;
}


/* FOOTER */

#botbar {
    position: relative;
    background-color: var(--dark-blue);
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    line-height: 1 !important;
}

#botbar p {
    margin-bottom: 0;
}

#botbar ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

#botbar ul li {
    display: inline-block;
}

#botbar ul li span {
    padding: 0 4px 0 2px !important;
}

#botbar ul li a {
    display: inline;
    color: var(--white) !important;
}

#copyrightbar {
    background-color: var(--blue);
    color: var(--white);
    font-size: 12px;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,.1);
    line-height: 1 !important;
}

#copyrightbar p {
    margin-bottom: 0;
}

#copyrightbar p + p {
    margin-top: .5rem;
}

#copyrightbar hr {
    margin: 3rem 0;
}

footer {
    position: relative;
    color: var(--white);
}

.footer-heading {
    font-family: 'Lora', serif;
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: .5rem;
    text-transform: uppercase;
}

footer a:not(.btn) {
    color: var(--white) !important;
}

.footer-logo img {
    /* width: 184px; */
    width: 250px;
}

a.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    text-decoration: none;
    transition: all .3s ease;
}

a.footer-logo:hover,
a.footer-logo:focus,
a.footer-logo:target,
a.footer-logo:active {
    opacity: .85;
}

.external-small-icon {
    font-size: 8px !important;
    vertical-align: top;
    margin-top: 4px !important;
    margin-left: 2px;
}

.footer-nav-links {
    font-size: 14px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.footer-nav-links li a {
    font-weight: 600;
    display: block;
    padding: 5px 0;
    color: var(--white) !important;
}

.footer-nav-links li a span {
    margin-right: 3px;
}

.footer-legal-links {
    font-size: 12px;
    padding: 0;
    margin: 0 0 -.25rem 0;
}

@media (min-width: 1200px) {
    .footer-legal-links {
        margin: 0 0 -.25rem -5px;
    }
}

.footer-legal-links li {
    display: inline-block;
}

.footer-legal-links li a {
    font-weight: 600;
    display: inline-block;
    padding: .25rem 5px;
    color: var(--white) !important;
}

.footer-legal-links li a:hover,
.footer-legal-links li a:focus,
.footer-legal-links li a:target,
.footer-legal-links li a:active {
    color: var(--gray-200) !important;
}

.sm-nav-footer {
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none;
}

.sm-nav-footer li {
    display: inline-block;
}

.sm-nav-footer li a {
    font-weight: 600;
    font-size: 1.25rem !important;
    color: var(--blue) !important;
    display: block;
    padding: 7.5px !important;
}

.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: var(--dark-blue) !important;
}

.sm-nav-footer.white li a {
    color: var(--white) !important;
}

.sm-nav-footer.white li a:hover,
.sm-nav-footer.white li a:focus,
.sm-nav-footer.white li a:target,
.sm-nav-footer.white li a:active {
    color: var(--gray-100) !important;
}


/* TOOLTIPS */

.tooltip {
    opacity: 1 !important;
}

.tooltip-inner {
    color: var(--black);
    background-color: var(--white);
    border-radius: 0;
    font-size: 12px;
    font-weight: 500;
    text-align: left;
    padding: 8px 12px !important;
    box-shadow: 0px 0px 30px rgba(0,0,0,.1);
}

.tooltip.bs-tooltip-right .arrow:before {
    border-right-color: var(--white) !important;
}

.tooltip.bs-tooltip-left .arrow:before {
    border-left-color: var(--white) !important;
}

.tooltip.bs-tooltip-bottom .arrow:before {
    border-bottom-color: var(--white) !important;
}

.tooltip.bs-tooltip-top .arrow:before {
    border-top-color: var(--white) !important;
}


/* MODALS */

.modal-content {
    background-color: var(--white);
    border: 2px solid var(--tan) !important;
}

.modal-header {
    background: var(--white);
    border: 0;
}

.modal-title {
    font-family: 'Lora', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--black);
    margin-bottom: 0;
    align-self: center;
}

.modal-icon {
    width: 30px;
    max-width: 100%;
    height: auto;
}

.modal-logo {
    width: 40px;
    max-width: 100%;
    height: auto;
}

.modal-body p:last-child {
	margin-bottom: 0;
}

.modal .close {
    font-size: 18px;
    padding: 10px;
    margin-top: -5px;
    margin-right: -10px;
    color: var(--red);
    opacity: 1;
    transition: all .3s ease;
}

.modal .close:hover,
.modal .close:focus {
    color: var(--dark-red);
    opacity: 1;
}

.modal .floating-close {
    display: block;
    position: absolute;
    z-index: 1051;
    top: 0;
    right: 0;
    left: auto;
    margin: 0;
}

.modal .floating-close.close {
    background-color: var(--white);
    padding: 15px;
    border-radius: 0;
    border: 0;
}

.modal .floating-close.close:hover,
.modal .floating-close.close:focus {
    background-color: var(--gray-200);
    opacity: 1;
}

.modal-dialog {
    border-radius: 0;
}

.modal-header {
    padding: 1.5rem;
    border: 0;
    border-radius: 0;
}

.modal-content {
    border: 0;
    border-radius: 0;
    background-clip: border-box;
}

.modal-body {
    padding: 1.5rem;
}

.modal-footer {
    padding: 1.5rem;
    justify-content: flex-start;
}

.modal-footer p {
    margin: 0 !important;
}

.modal-footer>* {
    margin: 0;
}


/* ALERTS */

.alert {
    border-radius: 0;
    border: 0;
    color: var(--black);
}

.nav-top-alert {
    color: var(--black);
    background-color: var(--light);
    border: 0;
    border-radius: 0;
    padding: 5px 0;
    margin-bottom: 0;
    font-size: 12px;
}

.nav-top-alert strong {
    font-weight: 700;
}

.nav-top-alert a {
    font-weight: 700;
    color: var(--blue) !important;
    display: inline-block;
    transition: all .3s ease;
}

.nav-top-alert.alert .close {
    color: var(--red);
    font-size: 16px;
    position: relative;
    top: 0;
    right: -1px;
    padding: 0;
    margin: 0;
    opacity: 1;
    text-shadow: none;
    transition: all .3s ease;
}

.nav-top-alert.alert .close:hover,
.nav-top-alert.alert .close:focus {
    opacity: .85;
}


/* CONTACT */

#contact_google_map {
    width: 100%;
    height: 625px;
    border: 0 !important;
    outline: 0 !important;
    margin-bottom: -7px;
}

@media (max-width: 1199.98px) {
    #contact_google_map {
        height: 500px;
    }
}

@media (max-width: 767.98px) {
    #contact_google_map {
        height: 450px;
    }
}

.success-card {
    background-color: var(--white);
    text-align: center;
    border-left: 3px solid var(--green);
}

.success-card .card-body {
    padding: 3rem;
}

.success-card i,
.success-card svg {
    font-size: 2em;
    color: var(--green);
    margin: 0 auto;
}

.success-card h2,
.success-card .h2 {
    color: var(--green);
    margin-bottom: .5rem;
}

.success-card p.lead {
    font-weight: 500;
    margin-bottom: .25rem;
}


/* FORMS */

label {
    font-weight: 500;
    font-size: 14px;
    color: var(--black);
    margin-bottom: 5px;
    text-align: left !important;
}

label span {
    font-weight: 400;
    font-size: 12px;
}

.btn-radio {
    font-weight: 400 !important;
    font-size: 14px !important;
    text-align: center !important;
    color: var(--gray-600);
    background-color: var(--white);
    border: 1px solid var(--gray-300);
    border-radius: 0 !important;
}

.btn-radio:focus,
.btn-radio.focus {
    box-shadow: none !important;
    outline: -webkit-focus-ring-color auto 1px;
}

.btn-radio:hover,
.btn-radio:focus,
.btn-radio:target,
.btn-radio:active,
.btn-radio.active {
    color: var(--black) !important;
    background-color: var(--white) !important;
    border: 1px solid var(--black) !important;
}

.input-group-text {
    background-color: var(--gray-200);
    border: 1px solid var(--gray-300);
    border-radius: 0;
}

.input-group-text label {
    margin-bottom: 0;
}

.input-group-append .btn+.btn {
    margin-left: 1px;
}

form .row {
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
}

.custom-select {
    background-color: var(--white);
    border-radius: 0;
    border: 1px solid var(--gray-300);
    transition: all .3s ease;
}

.form-control {
    background-color: var(--white);
    border-radius: 0;
    border: 1px solid var(--gray-300);
    transition: all .3s ease;
}

.form-control.flush,
.custom-select.flush {
    border: 1px solid var(--white);
}

.form-control.flush,
.custom-select.flush {
    border: 1px solid var(--white);
}

.form-control:focus,
.custom-select:focus {
    border-color: var(--blue);
    outline: 0;
    box-shadow: none;
    outline: none;
}

.form-control.highlight:focus,
.custom-select.highlight:focus {
    border-color: var(--blue);
    outline: 0;
    box-shadow: none;
    outline: -webkit-focus-ring-color auto 1px;
}

.form-control.is-invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: var(--red) !important;
    box-shadow: none;
}

.invalid-feedback {
    font-size: 12px;
    color: var(--red);
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23A90533' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23A90533' stroke='none'/%3e%3c/svg%3e");
}

.form-control.custom-select.is-invalid,
.was-validated .form-control.custom-select:invalid {
    border-color: 1px solid var(--red);
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23A90533' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .85rem center/8px 10px no-repeat,
    #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23A90533' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23A90533' stroke='none'/%3e%3c/svg%3e") center right 1.85rem/calc(.85em + .375rem) calc(.85em + .375rem) no-repeat !important;
}

.form-control.custom-select.is-valid,
.was-validated .form-control.custom-select:valid {
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right .85rem center/8px 10px no-repeat,
    #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.85rem/calc(.85em + .375rem) calc(.85em + .375rem) no-repeat !important;
}

[type="search"]::-webkit-search-cancel-button {
    -webkit-appearance: none;
    height: 25px;
    width: 25px;
    margin-left: .5rem;
    margin-right: -.4rem;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='%23A90533'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
    cursor: pointer;
    transition: all .3s ease;
}

[type="search"]::-webkit-search-cancel-button:hover {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 25 25' fill='%23870429'><path d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/></svg>");
    cursor: pointer;
}

.custom-control-label::before {
    top: 0.1rem;
    left: -1.5rem;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--white);
    border: 2px solid var(--blue);
}

.custom-radio .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--white);
    border: 2px solid var(--blue);
}

.custom-radio .custom-control-label::after {
    top: 0.4rem;
    left: -1.25rem;
    width: 1rem;
    height: 1rem;
}

.custom-radio .custom-control-input:checked~.custom-control-label::after {
    background-image: none;
    background-color: var(--blue);
    border-radius: 100%;
    border: 2px solid var(--white);
}

.custom-radio .custom-control-input:disabled~.custom-control-label::before {
    background-color: #e9ecef;
    border: 2px solid #dee2e6;
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #e9ecef;
}

.custom-radio .custom-control-input:disabled:checked~.custom-control-label::after {
    background-color: #9ca0b1;
    background-image: none;
    border-radius: 100%;
    border: 2px solid #e9ecef;
}

.custom-control-label {
    font-size: 16px;
    margin-bottom: 0;
    padding-left: 8px;
    line-height: 26px;
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::before {
    background-color: var(--white);
    border: 2px solid var(--blue);
}

.custom-checkbox .custom-control-input:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25.412' height='19.855' viewBox='0 0 25.412 19.855'%3e%3cpath id='check' d='M22.6,3.8,8,19.4,1.4,11.7,0,12.9l7.9,9.3L24,5.1Z' transform='translate(0.703 -3.095)' fill='%23800080' stroke='%23800080' stroke-width='1'/%3e%3c/svg%3e ");
}

.custom-checkbox .custom-control-label::after {
    top: -0.1rem;
    left: -1.85rem;
    width: 2rem;
    height: 2rem;
}

.custom-checkbox .custom-control-input:disabled~.custom-control-label::before {
    background-color: #e9ecef;
    border: 2px solid #dee2e6;
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::before {
    background-color: #e9ecef;
}

.custom-checkbox .custom-control-input:disabled:checked~.custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='25.412' height='19.855' viewBox='0 0 25.412 19.855'%3e%3cpath id='check' d='M22.6,3.8,8,19.4,1.4,11.7,0,12.9l7.9,9.3L24,5.1Z' transform='translate(0.703 -3.095)' fill='%23800080' stroke='%23800080' stroke-width='1'/%3e%3c/svg%3e ");
}

.custom-control-input:focus:not(:checked)~.custom-control-label::before {
    border-color: var(--blue);
}

.custom-control-input:focus~.custom-control-label::before {
    box-shadow: 0 0 0 .2rem rgba(128, 0, 128, .25);
}

.custom-control-input:not(:disabled):active~.custom-control-label::before {
    color: var(--white);
    background-color: var(--gray-100);
    border-color: var(--gray-100);
}


/* SELECT2 */

.select2-selection {
    border: 1px solid var(--gray-300) !important;
    border-radius: 0 !important;
}

.select2-container .select2-selection--single {
    height: 38px;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: var(--gray-300);
    outline: 0 !important;
    box-shadow: none !important;
    outline: -webkit-focus-ring-color auto 1px !important;
}

.select2-dropdown {
    border: 1px solid var(--gray-300);
    border-radius: 0 !important;
}

.select2-search--dropdown .select2-search__field {
    border: 0;
}

.select2-container .select2-selection--single .select2-selection__rendeblue {
    padding-top: 5px;
}

.select2-results__option {
    padding: 6px 12px;
}

.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected="true"] {
    color: var(--white) !important;
    background-color: var(--blue) !important;
}

.select2-results__options {
    max-height: 350px;
    overflow-y: scroll;
}


/* LIGHTGALLERY */

.cursor:hover {
    cursor: pointer;
}

.lg-outer .lg-thumb-item {
    border: 2px solid transparent;
    border-radius: 0;
}

.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border: 2px solid var(--blue);
    border-radius: 0;
}

.lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: var(--blue);
}

.lg-progress-bar .lg-progress {
    background-color: var(--blue);
}

.lSSlideOuter .lSPager.lSGallery li {
    border: 2px solid transparent;
    border-radius: 0;
}

.lSSlideOuter .lSPager.lSGallery li.active, .lSSlideOuter .lSPager.lSGallery li:hover {
    border: 2px solid var(--blue);
}


/* TO TOP */

.scroll-top {
    position: fixed;
    opacity: 0;
    visibility: hidden;
    text-align: center;
    z-index: 9;
    background-color: var(--white);
    color: var(--blue) !important;
    width: 36px;
    height: 36px;
    line-height: 36px;
    right: 15px;
    bottom: 15px;
    border: 0;
    border-radius: 0;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, .15);
    transition: all .3s ease;
}

.scroll-top.show {
    visibility: visible;
    cursor: pointer;
    opacity: 1;
}

.scroll-top:hover,
.scroll-top:focus {
    background-color: var(--gray-100);
    color: var(--dark-blue) !important;
}

.jPeGNa {
    bottom: 15px;
    right: 15px;
    border-radius: 0 !important;
}
