﻿/*
    BLUE: #0b4069
    GREEN: #009a8e
*/

/* DEFAULT BROWSER CSS */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font,
ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption {
    background: transparent;
    border: 0;
    margin: 0;
    padding: 0;
    vertical-align: baseline;
    outline: none;
}

html {
    height: 100%;
    margin: 0px !important;
    -webkit-transition: all 1.3s ease-out;
    -moz-transition: all 1.3s ease-out;
    -o-transition: all 1.3s ease-out;
    -ms-transition: all 1.3s ease-out;
    transition: all 1.3s ease-out;
}

body {
    font-family: calibri;
    font-weight: 300;
    font-size: 14px;
    line-height: 16px;
    color: black;
    font-weight: 100;
    overflow-y: scroll;
    overflow-x: hidden !important;
    -webkit-font-smoothing: antialiased;
}

/*---------- HEADER---------- */
header {
    width: 100%;
    -webkit-backface-visibility: hidden;
    background-image: url('img/header.png');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: inline-block;
}

.header-wrapper {
    height: 250px;
    background-color: #ffffff;
}

.header-top {
    position: relative;
    background-color: #0b4069;
    color: white;
    line-height: 35px;
    height: 35px;
    font-size: 13px;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
}

.alerts {
    overflow: hidden;
    background-color: #009a8e;
    height: 10%;
    text-align: center;
    text-transform: uppercase;
    min-height: 0px !important;
    padding: 5px 0 5px 0;
}

    .alerts a {
        font-size: 16px;
        color: white;
        text-decoration: none;
        font-family: calibri;
        font-weight: bold;
    }

        .alerts a:hover {
            color: #0b4069
        }

.top-menu {
    height: 35px;
    width: 90%;
    margin: auto;
}

    .top-menu .left {
        float: left;
        height: 100%;
        width: 150px;
    }

    .top-menu .right {
        float: right;
        height: 100%;
        border-width: 5px;
        border-color: darkolivegreen;
        align-content: center;
    }

.social-icon-holder {
    display: inline-block;
    position: relative;
    margin: 0 15px;
}

/*---------- TOP MENU NAV---------- */
nav {
    display: block;
    text-align: center;
}

.navbar {
    overflow: hidden;
    background-color: #0b4069;
    height: 35px;
    text-transform: uppercase;
    min-height:0px !important;
}

    .navbar a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding-right: 25px;
        text-decoration: none;
        font-family: calibri;
        font-weight: bold;
    }

.dropdown {
    float: left;
    overflow: hidden;
}

    .dropdown .dropbtn {
        font-size: 14px;
        border: none;
        outline: none;
        color: white;
        padding-right: 16px;
        background-color: inherit;
        font-family: inherit;
        margin: 0;
        text-transform: uppercase;
        font-family: calibri;
        font-weight: 300;
    }

    .navbar a:hover, .dropdown:hover .dropbtn {
        color: #009a8e
    }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        .dropdown-content a:hover {
            background-color: #ddd;
        }

.dropdown:hover .dropdown-content {
    display: block;
}

.header-bottom {
    position: relative;
    height: 215px;
    -webkit-transition: all 0.2s ease 0s;
    -moz-transition: all 0.2s ease 0s;
    -o-transition: all 0.2s ease 0s;
    transition: all 0.2s ease 0s;
    background-color: #ffffff;
    padding: 0px 80px 0px 50px;
}

.logo-wrapper {
    height: 150px;
    width: 300px;
    float: left;
}

    .logo-wrapper img {
        padding: 40px 40px 40px 40px;
    }

.slogan-wrapper {
    height: 100px;
    float: right;
}

/*---------- Site Nav ----------*/
.site-nav {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

    .site-nav ul {
        list-style: none;
    }
    
        .site-nav ul li {
            min-height: 1px;
            line-height: 1em;
            vertical-align: middle;
            border-right: 1px solid #ccc;
            float: none;
        }

        .site-nav ul li:last-child {
            border: 0;
        }

        .site-nav ul li.hover,
        .site-nav ul li:hover {
            position: relative;
            z-index: 9;
            cursor: default;
        }

        .site-nav ul ul {
            visibility: hidden;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            top: 1px;
            left: 99%;
            margin-top: 1px;
        }

        .site-nav ul ul li {
            float: none;
            font-weight: normal;
            z-index: 2;
        }

        .site-nav ul ul ul {
            top: 1px;
            left: 99%;
        }

    .site-nav ul li:hover > ul {
        visibility: visible;
    }

    .site-nav:after,
    .site-nav ul:after {
        content: '';
        display: block;
        clear: both;
    }

.site-nav > ul > li > a {
    color: #0B4069;
    text-transform: uppercase
}

.site-nav ul ul a {
    color: #333333;
}

    .site-nav a {
        display: inline-block;
        font-family: calibri;
        font-weight:bold;
        font-size: 14px;
        padding: 0 10px;
        text-align: center;
        text-decoration: none;
    }

    .site-nav a:hover {
        background: #f6f6f6;
        border-radius: 4px 4px 0 0;
        -moz-border-radius: 4px 4px 0 0;
        -webkit-border-radius: 4px 4px 0 0;
        box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
        -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
        -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
        position: relative;
        top: 0;
    }

    .site-nav > ul > li {
        float: left;
        padding: 0 10px;
        position: relative;
    }

        .site-nav > ul > li:hover > a {
            background: #f6f6f6;
            border-radius: 4px 4px 0 0;
            -moz-border-radius: 4px 4px 0 0;
            -webkit-border-radius: 4px 4px 0 0;
            box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
            -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
            -webkit-box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
            position: relative;
        }

        .site-nav > ul > li a {
            line-height: 35px;
        }

            .site-nav > ul > li a:hover {
                box-shadow: none;
                -moz-box-shadow: none;
                -webkit-box-shadow: none;
            }

.site-nav .has-sub:hover ul {
    display: block;
}

.site-nav .has-sub a {
    display: block;
    position: relative;
}

.site-nav .has-sub > a:after {
    content: '';
    display: block;
    width: 10px;
    height: 9px;
    position: absolute;
    right: 5px;
    top: 50%;
    margin-top: -5px;
    -webkit-transform: rotate(360deg);
}

.site-nav .has-sub ul {
    background: #f6f6f6;
    border: 1px solid #dddddd;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    display: none;
    padding: 10px 0;
    position: absolute;
    left: 50%;
    top: 34px;
    margin-left: -70px;
    width: 140px;
    z-index: 20;
}

    .site-nav .has-sub ul li:hover > a {
        background: #dddddd;
        color: #ae0001;
        border-color: #e5e5e5 transparent transparent transparent;
    }

    .site-nav .has-sub ul a {
        line-height: 160%;
        padding: 8px 0;
    }

.site-nav .has-sub .has-sub a:after {
    -webkit-transform: rotate(360deg);
}

.site-nav .has-sub .has-sub ul {
    left: 100%;
    top: 0;
    margin-left: 0;
}

    .site-nav .has-sub .has-sub ul a {
        background: none;
        box-shadow: none;
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        border-radius: 0;
        -moz-border-radius: 0;
        -webkit-border-radius: 0;
    }

        .site-nav .has-sub .has-sub ul a:after {
            background-image: none;
        }

        .site-nav .has-sub .has-sub ul a:hover {
            background: #bfbfbf;
        }
/* ---------- End Header ---------- */

/* ---------- Content ---------- */
.content-wrapper {
    max-height: 100%;
    max-width: 100%;
}

.banner-large {
    width: 100%;
    height: 650px;
}

    .banner-large img {
        width: inherit;
        height: inherit;
    }

    .banner-large-centered {
        width: 80%;
        position: relative;
        margin:auto;
        color: #fff;
        text-align: center;
        bottom:25%;
    }

    .banner-large-centered h2 {
        font-size: 64px;
        line-height: 78px;
    }

    .banner-large-centered p {
        font-size: 24px;
        line-height: 30px;
        font-weight:bold;
    }

.banner {
    width: 100%;
    height: 400px;
    position:relative;
    display:inline-block;
}

    .banner .banner-frame {
        float: left;
        width: 33.3%;
        height: inherit;
        text-align: center;
    }

    .banner .banner-frame img {
        width:100%;
        height:inherit;
    }

        .banner .banner-frame h2 {
            font-size: 28px;
            line-height: 30px;
        }

        .banner .banner-frame .cell-a {
            position: absolute;
            top: 25%;
            width: 33%;
            color: #fff;
        }

        .banner .banner-frame .cell-b {
            position: absolute;
            top: 35%;
            width: 33%;
            color: #fff;
        }

            .banner .banner-frame .cell-b .date-range {
                font-size: 28px;
                line-height: 30px;
                color: gold;
            }

            .banner .banner-frame .cell-b h2 {
                font-size: 32px;
                line-height: 34px;
                color: #fff;
            }

            .banner .banner-frame .cell-b p {
                font-size: 28px;
                line-height: 30px;
                color: #fff;
                font-weight:bold;
            }

        .banner .banner-frame .cell-c {
            position: absolute;
            top: 35%;
            width: 30%;
            color: #fff;
            left:68%;
        }
        
        
.covid-link {
    color:darkorange;
}

.mission-statement {
    background-color: #cee5f6;
    text-align: center;
    font-size: 14px;
    line-height: 100px;
    height: 200px;
    margin: auto;
    width: 100%;
}

    .mission-statement span {
        font-size: 24px;
        color: #005c8f;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
        vertical-align: middle;
    }

    .mission-statement p {
        vertical-align: middle;
        line-height: normal;
        font-size: 18px;
    }

.services-table {
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    height: 300px;
}

    .services-table > tbody > tr > td {
        vertical-align: middle;
    }

    .services-table > tbody > tr > :nth-child(odd) {
        text-align: center;
        width: 10%;
        vertical-align: middle !important;
    }

    .services-table > tbody > tr > :nth-child(even) {
        width: 23%;
    }

        .services-table > tbody > tr > :nth-child(even) > span {
            font-size: 28px;
            line-height: 30px;
            color: #0b4069;
        }

        .services-table > tbody > tr > :nth-child(even) > p {
            font-size: 14px;
            line-height: 18px;
        }

/*---------- COMMENT SECTION ----------*/

.comment-content {
    height: 150px;
    background-color: #005c8f;
}

.comment-inner {
    width: 60%;
    height: 90%;
    margin: auto;
}

.comment-left {
    float: left;
    padding-top: 55px;
}

.comment-left p {
    color:#fff;
    font-weight:bold;
    font-size: 32px;
}

.comment-right {
    float: right;
    padding-top: 40px;
}

.comment-button {
    color: rgb(0, 67, 107);
    border-color: rgba(0, 0, 0, 0.01);
    font-weight: 500;
    background-color: rgb(157, 202, 237);
    height: 47px;
    line-height: 47px;
    font-size: 16px;
    padding: 0 29px;
    display: inline-block;
    text-transform: uppercase;
    cursor: pointer;
}

    .comment-button:hover {
        background-color: rgba(255,255,255,0.4);
        color: #ffffff;
    }

    .comment-button a {
        text-decoration: none;
        color: inherit;
    }

/*---------- CONTACT US SECTION ----------*/

.contact-wrapper {
    height: 600px;
    position: static;
    background-image: url('img/uptown.png');
    background-repeat: no-repeat;
    background-color: transparent;
    background-position: center 0;
    background-attachment: fixed;
    padding: 50px 100px 50px 100px;
}

    .contact-wrapper h2 {
        text-align: center;
        text-transform: uppercase;
        color: #ffffff;
    }

.contact-inner {
    margin: auto;
    padding: 75px 0px 0px 100px;
    background-color: rgba(255,255,255,0.84);
    position: relative;
    z-index: 20;
    height: 350px;
    width: 75%;
}

    .contact-inner:after {
        content: "";
        display: table;
        clear: both;
    }

.contact-column-A {
    float: left;
    width: 40%;
}

    .contact-column-A > span, .contact-column > span {
        height: 50px;
        color: #0b4069;
        font-size: 18px;
        line-height: 20px;
        font-weight: 600;
        letter-spacing: 1px;
        text-transform: uppercase;
    }

    .contact-column-A > p, .contact-column > p {
        line-height: 20px;
        font-family: Arial;
    }

.contact-column {
    float: left;
    width: 30%;
}

    .contact-column > p > a {
        color: #009a8e;
        font-family: calibri;
        font-weight: 300;
        font-size: 14px;
        line-height: 16px;
    }

.spacer-10 {
    height: 10px;
}

.spacer-20 {
    height: 20px;
}

.spacer-35 {
    height: 35px;
}

/* ---------- End Content ---------- */

/*---------- FOOTER ---------- */
footer {
    display: block;
    width: 100%;
    margin: auto;
    z-index: 100;
    position: relative;
}

.footer-top-wrapper {
    height: 200px;
    display: block;
    background-color: #262626;
    position: relative;
    padding: 50px 35px 50px 35px;
}

.footer-top a,
.footer-top p,
.footer-top span,
.footer-top .footer-row {
    color: #ffffff;
    word-wrap: break-word;
    text-decoration: none;
    line-height: 25px;
}

    .footer-top a:hover {
        cursor: pointer;
        color: #009a8e;
    }

.four-columns {
    width: 100%;
    height: 150px;
    display: inline-block;
    padding-left: 10%;
}

    .four-columns > .column1,
    .four-columns > .column2,
    .four-columns > .column3,
    .four-columns > .column4 {
        width: 25%;
        float: left;
     }
    
    .four-columns > .column1 > .footer-column-inner > h5,
    .four-columns > .column2 > .footer-column-inner > h5,
    .four-columns > .column3 > .footer-column-inner > h5,
    .four-columns > .column4 > .footer-column-inner > h5 {
        color: #ffffff;
        font-size: 18px;
    }

.footer-bottom-wrapper {
    display: block;
    background-color: #1b1b1b;
}

.footer-bottom {
    text-align: center;
    font-size: 12px;
    line-height: 22px;
    height: 75px;
    padding-top: 15px;
}

    .footer-row {
        color: #ffffff;
        font-size: 14px;
        text-decoration: none;
        font-family: Arial;
    }

    .footer-logo {
        padding-top: 0 !important;
    }

    /*.footer-bottom a {
        color: #009a8e;
        font-size: 11px;
        padding-right: 20px;
    }*/

    .footer-bottom span {
        color: #ffffff;
        font-size: 14px;
    }
/* ---------- End Footer ----------*/

/* ---------- Pages ----------*/
* {
    box-sizing: border-box;
}

::selection {
    background: #1abc9c;
    color: #fff;
}

header h1 {
    color: #ffffff;
    line-height: 2.50em;
    font-size: 48px;
    text-align: center;

}

.container-bs {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    width: 100%
}

@media (max-width:768px) {
    .container-bs {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
}

/*@media (min-width:992px) {
    .container-bs {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container-bs {
        width: 1170px
    }
}

@media (min-width:1200px) {
    .container-bs-expanded {
        width: 85%;
    }
}*/

.container-bs-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

    .container-bs > .navbar-header,
    .container-bs-fluid > .navbar-header,
    .container-bs > .navbar-collapse,
    .container-bs-fluid > .navbar-collapse {
        margin-right: -15px;
        margin-left: -15px
    }

@media (min-width:768px) {
    .container-bs > .navbar-header,
    .container-bs-fluid > .navbar-header,
    .container-bs > .navbar-collapse,
    .container-bs-fluid > .navbar-collapse {
        margin-right: 0;
        margin-left: 0
    }
}

@media (min-width:768px) {
    .navbar > .container-bs .navbar-brand,
    .navbar > .container-bs-fluid .navbar-brand {
        margin-left: -15px
    }
}

.container-bs .jumbotron,
.container-bs-fluid .jumbotron {
    border-radius: 6px
}

.jumbotron .container-bs {
    max-width: 100%
}

@media screen and (min-width:768px) {
    .jumbotron {
        padding: 48px 0
    }

    .container-bs .jumbotron {
        padding-right: 60px;
        padding-left: 60px
    }

    .jumbotron h1,
    .jumbotron .h1 {
        font-size: 63px
    }
}

.clearfix:before,
.clearfix:after,
.dl-horizontal dd:before,
.dl-horizontal dd:after,
.container-bs:before,
.container-bs:after,
.container-bs-fluid:before,
.container-bs-fluid:after,
.custom-row:before,
.custom-row:after,
.custom-row-expanded:before,
.custom-row-expanded:after,
.pdf-table:before,
.pdf-table:after,
.form-horizontal .form-group:before,
.form-horizontal .form-group:after,
.btn-toolbar:before,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after,
.nav:before,
.nav:after,
.navbar:before,
.navbar:after,
.navbar-header:before,
.navbar-header:after,
.navbar-collapse:before,
.navbar-collapse:after,
.pager:before,
.pager:after,
.panel-body:before,
.panel-body:after,
.modal-footer:before,
.modal-footer:after {
    display: table;
    content: " ";
}

.clearfix:after,
.dl-horizontal dd:after,
.container-bs:after,
.container-bs-fluid:after,
.custom-row:after,
.custom-row-expanded:after,
.pdf-table:after,
.form-horizontal .form-group:after,
.btn-toolbar:after,
.btn-group-vertical > .btn-group:after,
.nav:after,
.navbar:after,
.navbar-header:after,
.navbar-collapse:after,
.pager:after,
.panel-body:after,
.modal-footer:after {
    clear: both;
}

.custom-row {
    margin-right: -15px;
    margin-left: -15px;
}

.custom-row-expanded {
    margin-right: -15px;
    margin-left: -15px;
}

.custom-col {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    float: left;
    width: 100%
}

    .custom-col h2 {
        text-align: center;
        font-size: 36px;
        color: #009a8e;
        line-height: 2em;
        font-family:Calibri;
    }

/* TABS */

.tabs-left > .nav-tabs-bs {
    border-bottom: 0;
}

    .tabs-left > .nav-tabs-bs > li {
        float: none;
    }

        .tabs-left > .nav-tabs-bs > li > a {
            min-width: 74px;
            margin-bottom: 3px;
        }

.tabs-left > .nav-tabs-bs {
    float: left;
    margin-right: 19px;
    border-right: 1px solid #ddd;
    font-family: calibri;
    font-weight: 300;
}

    .tabs-left > .nav-tabs-bs > li > a {
        margin-right: -1px;
        border-radius: 4px 0 0 4px;
        text-decoration: none;
        color: #0b4069;
    }

        .tabs-left > .nav-tabs-bs > li > a:hover,
        .tabs-left > .nav-tabs-bs > li > a:focus {
            border-color: #eeeeee #dddddd #eeeeee #eeeeee;
        }

    .tabs-left > .nav-tabs-bs .active > a,
    .tabs-left > .nav-tabs-bs .active > a:hover,
    .tabs-left > .nav-tabs-bs .active > a:focus {
        border-color: #ddd transparent #ddd #ddd;
        *border-right-color: #ffffff;
    }


/* NAV */
.nav-bs-tabs {
    border-bottom: 1px solid #ddd
}

    .nav-bs-tabs > li {
        float: left;
        margin-bottom: -1px
    }

        .nav-bs-tabs > li > a {
            margin-right: 2px;
            line-height: 1.42857143;
            border: 1px solid transparent;
            border-radius: 4px 4px 0 0
        }

            .nav-bs-tabs > li > a:hover {
                border-color: #eee #eee #ddd
            }

        .nav-bs-tabs > li.active > a,
        .nav-bs-tabs > li.active > a:hover,
        .nav-bs-tabs > li.active > a:focus {
            color: #555;
            cursor: default;
            background-color: #fff;
            border: 1px solid #ddd;
            border-bottom-color: transparent
        }

    .nav-bs-tabs.nav-bs-justified {
        width: 100%;
        border-bottom: 0
    }

        .nav-bs-tabs.nav-bs-justified > li {
            float: none
        }

            .nav-bs-tabs.nav-bs-justified > li > a {
                margin-bottom: 5px;
                text-align: center
            }

        .nav-bs-tabs.nav-bs-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto
        }

@media (min-width:768px) {
    .nav-bs-tabs.nav-bs-justified > li {
        display: table-cell;
        width: 1%
    }

        .nav-bs-tabs.nav-bs-justified > li > a {
            margin-bottom: 0
        }
}

.nav-bs-tabs.nav-bs-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-bs-tabs.nav-bs-justified > .active > a,
.nav-bs-tabs.nav-bs-justified > .active > a:hover,
.nav-bs-tabs.nav-bs-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .nav-bs-tabs.nav-bs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-bs-tabs.nav-bs-justified > .active > a,
    .nav-bs-tabs.nav-bs-justified > .active > a:hover,
    .nav-bs-tabs.nav-bs-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.nav-bs {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

    .nav-bs > li {
        position: relative;
        display: block
    }

        .nav-bs > li > a {
            position: relative;
            display: block;
            padding: 10px 15px
        }

            .nav-bs > li > a:hover,
            .nav-bs > li > a:focus {
                text-decoration: none;
                background-color: #eee
            }

        .nav-bs > li.disabled > a {
            color: #777
        }

            .nav-bs > li.disabled > a:hover,
            .nav-bs > li.disabled > a:focus {
                color: #777;
                text-decoration: none;
                cursor: not-allowed;
                background-color: transparent
            }

    .nav-bs .open > a,
    .nav-bs .open > a:hover,
    .nav-bs .open > a:focus {
        background-color: #eee;
        border-color: #428bca
    }

    .nav-bs .nav-bs-divider {
        height: 1px;
        margin: 9px 0;
        overflow: hidden;
        background-color: #e5e5e5
    }

    .nav-bs > li > a > img {
        max-width: none
    }

.nav-bs-pills > li {
    float: left
}

    .nav-bs-pills > li > a {
        border-radius: 4px
    }

    .nav-bs-pills > li + li {
        margin-left: 2px
    }

    .nav-bs-pills > li.active > a,
    .nav-bs-pills > li.active > a:hover,
    .nav-bs-pills > li.active > a:focus {
        color: #fff;
        background-color: #428bca
    }

.nav-bs-stacked > li {
    float: none
}

    .nav-bs-stacked > li + li {
        margin-top: 2px;
        margin-left: 0
    }

.nav-bs-justified {
    width: 100%
}

    .nav-bs-justified > li {
        float: none
    }

        .nav-bs-justified > li > a {
            margin-bottom: 5px;
            text-align: center
        }

    .nav-bs-justified > .dropdown .dropdown-menu {
        top: auto;
        left: auto
    }

@media (min-width:768px) {
    .nav-bs-justified > li {
        display: table-cell;
        width: 1%
    }

        .nav-bs-justified > li > a {
            margin-bottom: 0
        }
}

.nav-bs-tabs-justified {
    border-bottom: 0
}

    .nav-bs-tabs-justified > li > a {
        margin-right: 0;
        border-radius: 4px
    }

    .nav-bs-tabs-justified > .active > a,
    .nav-bs-tabs-justified > .active > a:hover,
    .nav-bs-tabs-justified > .active > a:focus {
        border: 1px solid #ddd
    }

@media (min-width:768px) {
    .nav-bs-tabs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-bs-tabs-justified > .active > a,
    .nav-bs-tabs-justified > .active > a:hover,
    .nav-bs-tabs-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.nav-tabs-bs {
    border-bottom: 1px solid #ddd
}

    .nav-tabs-bs > li {
        float: left;
        margin-bottom: -1px
    }

        .nav-tabs-bs > li > a {
            border: 1px solid transparent;
        }

            .nav-tabs-bs > li > a:hover {
                border-color: #eee #eee #ddd
            }

        .nav-tabs-bs > li.active > a,
        .nav-tabs-bs > li.active > a:hover,
        .nav-tabs-bs > li.active > a:focus {
            color: #555;
            cursor: default;
            background-color: #fff;
            border: 1px solid #ddd;
            border-bottom-color: transparent
        }

    .nav-tabs-bs.nav-justified {
        width: 100%;
        border-bottom: 0
    }

        .nav-tabs-bs.nav-justified > li {
            float: none
        }

            .nav-tabs-bs.nav-justified > li > a {
                margin-bottom: 5px;
                text-align: center
            }

        .nav-tabs-bs.nav-justified > .dropdown .dropdown-menu {
            top: auto;
            left: auto
        }

@media (min-width:768px) {
    .nav-tabs-bs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

        .nav-tabs-bs.nav-justified > li > a {
            margin-bottom: 0
        }
}

.nav-tabs-bs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-bs.nav-justified > .active > a,
.nav-tabs-bs.nav-justified > .active > a:hover,
.nav-tabs-bs.nav-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .nav-tabs-bs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-bs.nav-justified > .active > a,
    .nav-tabs-bs.nav-justified > .active > a:hover,
    .nav-tabs-bs.nav-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.nav-tabs-bs-justified {
    border-bottom: 0
}

    .nav-tabs-bs-justified > li > a {
        margin-right: 0;
        border-radius: 4px
    }

    .nav-tabs-bs-justified > .active > a,
    .nav-tabs-bs-justified > .active > a:hover,
    .nav-tabs-bs-justified > .active > a:focus {
        border: 1px solid #ddd
    }

@media (min-width:768px) {
    .nav-tabs-bs-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-bs-justified > .active > a,
    .nav-tabs-bs-justified > .active > a:hover,
    .nav-tabs-bs-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.nav-tabs-bs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.custom-div {
    display: inline-block;
    min-height: 30vh;
    width: 75%;
    font-family: calibri;
    font-weight: 300;
}

.tab-content-bs {
    padding-bottom: 20px;
}

    .tab-content-bs > .tab-pane,
    .pill-content > .pill-pane {
        display: flex;
        flex-direction: column;
        min-height: 30vh;
    }



    .tab-content-bs > .tab-pane {
        display: none;
        visibility: hidden
    }

    .tab-content-bs > .tab-pane {
        display: none;
        visibility: hidden
    }

    .tab-content-bs > .active {
        display: block;
        visibility: visible;
    }

.custom-link-embedded {
    color: #009a8e;
}

a.custom-link-embedded:hover {
    text-decoration: underline;
}

.osle-row > div {
    float: left;
    width: 33.33%;
    text-align: center;
    text-decoration: underline;
    color: #0b4069;
    line-height: 2em;
}

    .osle-row > div:hover {
        color: #009a8e;
        text-decoration: none;
        cursor: pointer;
    }
    /* Clear floats after the columns */
    .osle-row:after {
        content: "";
        display: table;
        clear: both;
    }


.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    visibility: hidden;
    opacity: 0;
}

    .overlay:target {
        visibility: visible;
        opacity: 1;
    }

.popup {
    margin: 70px auto;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
    width: 70%;
    height: 70%;
    position: relative;
    transition: all 5s ease-in-out;
}

    .popup h2 {
        margin-top: 0;
        color: #333;
        font-family: Tahoma, Arial, sans-serif;
    }

    .popup .close {
        position: absolute;
        top: 20px;
        right: 30px;
        transition: all 200ms;
        font-size: 30px;
        font-weight: bold;
        text-decoration: none;
        color: #333;
    }

        .popup .close:hover {
            color: #06D85F;
        }

    .popup .content {
        max-height: 30%;
        overflow: auto;
    }

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }

    .popup {
        width: 70%;
    }
}

/* OSLE Tables */
.osle-table-wrapper {
    height: 100%;
    width: 75%;
    margin: auto;
    padding-top: 60px;
}

.osle-table {
    border-collapse: collapse;
    width: 75%;
    margin: auto;
}

.osle-table td {
    border: 1px solid black;
    height: 30px;
}

    .osle-table th {
        font-size: 28px;
        height: 50px;
        border: 1px solid black;
    }

.osle-rules {
    height: 100px;
    text-align: center;
}

.osle-divider {
    height: 25px;
    background-color: #0b4069;
}

.osle-details {
    height: 35px;
    text-align: center;
    font-size: 22px;
}

.osle-row-color {
    background-color: aliceblue;
}

.site-seal {
    float:right;
    background-color:black;
    height: 20px;
    bottom:20%;
    position:relative;
    border:groove;
    border-color:pink;
}














