:root {
    --blue: #0081c8;
    --dark-blue: #012f4c;
    --text-gray: #616262;
    --bg-gray: #e7e8f0;
    --title-font: 'TimesNewRoman', "Times New Roman", Times, 'Baskerville', Georgia, serif;
    --body-font: 'Calibri', 'Candara', "Segoe UI", 'Optima', Arial, sans-serif;
}

body {
    font-family: var(--body-font);
    font-size: 23px;
    color: var(--text-gray);
    line-height: 34px;
}

h1,h2,h3,h4,h5 {
    font-family: var(--title-font);
    color: var(--dark-blue);
}

h2 {
    font-size: 60px;
    line-height: 68px;
    letter-spacing: 0px;
}

h5,.h5 {
    font-size: 21px;
    line-height: 34px;
}

h6 {
    font-size: 18px;
}

a {
    color: var(--blue);
}

a:hover {
    color: var(--blue);
}

p.lead {
    font-size: 24px;
}

a.btn,
button.btn {
    font-size: 18px;
    height: 60px;
    font-weight: 400;
}

.btn.btn-blue {
    background-color: var(--blue);
    border-color: var(--blue);
}

.large {
    padding-top: 100px;
}

.blue-bg {
    background-color: var(--blue);
    color: #FFF;
}

.blue-bg h3 {
    color: #FFF;
}

.dark-blue-bg {
    background-color: var(--dark-blue);
    color: #FFF;
}

.gray-bg {
    background-color: var(--bg-gray);
}
.gray-bg h2 {
    font-size: 41px;
    line-height: 1.13;
}
.text-white {
    color: #FFF;
}

.text-dark {
    color: var(--dark-blue);
}

.text-blue {
    color: var(--blue);
}

.image-bg h6.uppercase {
    font-weight: 400;
}

h1.large,
.image-bg h1 {
    font-size: clamp(44px, 6.8vw, 106px);
    line-height: 0.91;
}

.page-title .container {
    top: 65%;
}

nav .nav-bar {
    height: 100px;
    max-height: 100px;
    border-bottom-color: #FFF;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

nav:not(.scrolled) {
    background: transparent;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 15;
}

footer .menu li a,
nav .menu li a {
    font-family: var(--title-font);
    font-size: 24px;
    font-weight: 400;
    opacity: 1;
    text-transform: none;
}

footer .menu li a,
nav:not(.scrolled) .menu li a {
    color: #FFF;
}

footer .menu li a:hover,
nav:not(.scrolled) .menu li a:hover {
    color: var(--blue);
}

.logo {
    max-height: 100%;
}

nav .nav-bar .module.mobile-toggle {
    min-height: 55px;
    display: none;
}

nav:not(.scrolled) .nav-bar .mobile-toggle {
    border-color: #FFF;
    border-bottom: #FFF 1px solid !important;
}

nav:not(.scrolled) .nav-bar .ti-menu {
    color: #FFF;
    opacity: 1;
}

nav .nav-bar .module, 
nav .nav-bar .module-group {
    min-height: 100px;
    display: flex;
    align-items: center;
}

.nav-bar .module.left {
    min-height: 100px;
    display: flex;
    align-items: center;
}

@media screen and (max-width: 990px) {
    nav .nav-bar .menu li {
        margin-bottom: 15px;
    }
    
    nav .nav-bar .menu li a {
        color: var(--dark-blue);
    }
    
    nav .nav-bar .module-group.right {
        background: #FFF;
    }
    
    nav .nav-bar .module.mobile-toggle {
        display: block;
    }
}


.two-col {
    column-count: 2;
    column-gap: 24px;
}

.long-paragraph > p {
    margin-bottom: 48px;
}

.image-overlap {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding-top: 70px;
    padding-bottom: 70px;
    margin-bottom: 20px;
}

.feature.bordered {
    border-color: var(--blue);
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
}
/* 
.feature:not(.bordered) {
    text-indent: 1cm;
} */

.image-right > .feature.bordered {
    left: 0;
}

.image-right > .feature:not(.bordered) {
    padding-left: 30px;
}

.image-left > .feature.bordered {
    right: 0;
}

.image-left > .feature:not(.bordered) {
    padding-right: 30px;
}

.image-overlap > img {
    width: 100%;
    object-fit: cover;
}



@media screen and (max-width: 768px) {
    .two-col {
        column-count: 1;
        column-gap: 0px;
    }
}

.overflow-visible {
    overflow: visible;
}
.form-overlay{
  margin-top: -126px;
    z-index: 45;  
}
.form-container {
    padding: 20px;
    text-align: center;
    
}

.form-container [type="submit"] {
    border-color: #FFF;
    border-width: 1px;
}

.form-title {
    margin-bottom: 0;
    font-size: 24px;
    font-family: var(--title-font);
}

.form-subtitle {
    margin-bottom: 0;
    font-size: 16px;
}

.form label {
    width: 100%;
}

.form-container .form-control {
    border-color: transparent;
}

.form .form-control {
    background-color: #FFF;
    border-radius: 0;
    font-size: 24px;
    color: var(--dark-blue);
}

.form .inline .form-control {
    background-color: #d7dae9;
}

.form .form-control:not(textarea) {
    height: 60px;
    margin-bottom: 12px;
}

.form .form-control::placeholder {
    font-size: 18px;
    color: #acb0c6;
    text-transform: uppercase;
    font-weight: normal;
}

.form textarea.form-control {
    padding-top: 16px;
    padding-bottom: 16px;
}

@media screen and (max-width: 991px) {
    .form-overlay {
        margin-top: 0;
    }
}

.inline {
    display: flex;
    text-transform: uppercase;
    font-size: 18px;
    color: #acb0c6;
}

.inline > span {
    width: 20%;
    max-height: 60px;
    display: flex;
    align-items: center;
}

.inline .btn,
.inline > textarea,
.inline > input {
    width: 80%;
}

.image-box {
    position: relative;
}

.image-box::after {
    content: "";
    position: absolute;
    opacity: 0.4;
    background-color: var(--dark-blue);
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 0;
}

.image-box > img {
    /* object-fit: cover; */
    width: 100%;
    position: relative;
    z-index: -1;
}

.image-box > div {
    position: absolute;
    text-align: center;
    font-size: 30px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    z-index: 1;
}


@media (min-width:768px){
    .employee-block {
        display: flex;
        flex-wrap: wrap;
        height: 100%;
    }
}
@media (min-width:1400px){
    .employee-block {
        max-height: 255px;
    }
}

.employee-block > .info {
    background-color: #FFF;
    padding: 30px;
    width: 70%;
    border-color: var(--blue);
    border-width: 1px;
    border-style: solid;
    border-right-color: transparent;
    order: 0;
}

.info > .name {
    margin-bottom: 0;
}

.employee-block .info > .title {
    height: 68px;
}

.info > .title {
    margin-bottom: 0;
    color: var(--dark-blue);
}

.info > .description {
    font-size: 16px;
    line-height: 24px;
    color: var(--text-gray);
    margin-bottom: 0;
}

.info .link,
.info > a {
    font-size: 18px;
    color: var(--blue);
    text-transform: uppercase;
    margin-bottom: 0;
    font-weight: 400;
}

.employee-block > .photo {
    width: 30%;
    order: 1;
}

.employee-block > .photo > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div:not(.employee-block) > .info p {
    margin-bottom: 0;
}

.info > .address,
.info > .phone,
div:not(.employee-block) > .info,
div:not(.employee-block) > .info > p:last-of-type {
    margin-bottom: 20px;
}


.underline {
    border-bottom: 1px var(--dark-blue) solid;
}

@media screen and (max-width: 767px) {
    .employee-block > .info,
    .employee-block > .photo {
        width: 100%;
    }
    
    .employee-block > .info {
        order: 1;
        border-right-color: var(--blue);
    }
    
    .employee-block > .photo {
        order: 0;
    }
}

.multicolumn {
    -moz-column-count: 2;
    -moz-column-gap: 24px;
    -moz-column-fill: auto;
    -webkit-column-count: 2;
    -webkit-column-gap: 24px;
    -webkit-column-fill: auto;
    column-count: 2;
    column-gap: 24px;
    column-fill: auto;
}

.multicolumn li {
    display: flex;
    flex-wrap: wrap;
}

.multicolumn .number {
    color: var(--dark-blue);
    display: flex;
    justify-content: center;
    width: 20%;
}

.multicolumn .text {
    width: 80%;
}

.multicolumn .number > p {
    color: var(--dark-blue);
    font-size: 50px;
    line-height: 56px;
}

button.link {
    background-color: transparent;
    border: none;
    padding: 0;
    font-family: var(--body-font);
}

.leadership .modal-body .description-content p{
    font-size:18px;
    line-height:29px;
}


@media (min-width:576px){
    .leadership .modal-dialog{
        --bs-modal-width:100%;
    }
    .leadership .modal-body .description {
        max-height: 200px;
        position:relative;
        overflow-y:scroll;
    }
    .leadership .modal-body img{
        height:100%;
        object-fit:cover;
    }
    .leadership .modal-dialog-scrollable .modal-content{
        max-height:unset;
    }
}
@media (min-width:768px){
    .leadership .modal-body .description {
        max-height: 370px;
    }

}
@media (min-width:992px){

    .leadership .modal-body .description-content p{
        font-size:23px;
        line-height:34px;
    }
}


footer {
    font-size: 12px;
}

footer .menu {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-bottom: 0;
    height: auto;
}

footer .menu > li {
    margin-right: 0;
    margin-left: 32px;
}

footer p {
    margin-bottom: 0;
    letter-spacing: 1px;
    line-height: 24px;
    text-align: right;
}

footer p > small {
    opacity: 0.8;
}

footer small a {
    color: #FFF;
    text-decoration: underline;
    padding-left: 10px;
}

@media screen and (max-width: 767px) {
    footer {
        text-align: center;
    }
    
    footer p {
        text-align: center;
    }
    
    footer .menu {
        justify-content: center;
        margin-bottom: 24px;
    }
    
    footer .menu > li {
        margin-right: 10px;
        margin-left: 10px;
        width: auto;
        margin-bottom: 15px;
    }
}