﻿/*

    Light Background: 
    Lt Blue: #001F60
    Dk Blue: #001856
    Green: #00D501
    
*/

:root {
    /*
        *
        Auto Scaling Font Sizes
        Generated using https://clamp.font-size.app/
        *
        * Body Font Used: Garamond / Times New Roman or equivalend system fonts.
        * Min width = 768
        * Max width = 1200
        * 1rem = 16px (based on the font size at the "html" tag level).
        *
    */
    /* Header */
    --font-header: clamp(1rem, 0.5556rem + 0.9259vw, 1.25rem);
    /* Nav */
    --font-nav: clamp(1rem, 0.5556rem + 0.9259vw, 1.25rem);
    --font-nav-dropdown: clamp(0.875rem, 0.4306rem + 0.9259vw, 1.125rem);
    --font-nav-icon: 2.25rem;
    /* Body */
    --font-extra-small: clamp(0.75rem, 0.3056rem + 0.9259vw, 1rem);
    --font-small: clamp(0.875rem, 0.4306rem + 0.9259vw, 1.125rem);
    --font-medium: clamp(1rem, 0.5556rem + 0.9259vw, 1.25rem);
    --font-large: font-size: clamp(1.125rem, 0.6806rem + 0.9259vw, 1.375rem);
    /* Footer */
    --font-footer: 1rem;
    /* H1 through H6 */
    --font-h6: clamp(1rem, 0.6049rem + 0.823vw, 1.2222rem);
    --font-h5: clamp(1.125rem, 0.6806rem + 0.9259vw, 1.375rem);
    --font-h4: clamp(1.2656rem, 0.7656rem + 1.0417vw, 1.5469rem);
    --font-h3: clamp(1.4238rem, 0.8613rem + 1.1719vw, 1.7402rem);
    --font-h2: clamp(1.6018rem, 0.969rem + 1.3184vw, 1.9578rem);
    --font-h1: clamp(1.802rem, 1.0901rem + 1.4832vw, 2.2025rem);
    /* Swiper */
    --swiper-theme-color: #000;
}

html {
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
    font-size: 16px;
    line-height: 1.6;
}

body {
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
    margin: 0 0;
    padding: 0 0;
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    /* font-family: Cambria, 'Times New Roman', Times, serif; */
    font-size: var(--font-medium);
    font-weight: normal;
    line-height: 1.6;
    color: #FFFFFF;
    background-color: #001856;
}

#frmMaster {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 100%;
    min-height: 100vh;
}

/* Some Bootstrap Fixes */

.container-xl {
    max-width: 1366px;
}

hr {
    opacity: 1;
}

.modal {
    z-index: 99990;
    background-color: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
}

textarea {
    resize: none;
}

.card {
    border-radius: 15px;
    overflow: hidden;
}

.card .card-body {
    padding: 25px 25px;;
}

.shadow {
    box-shadow: 0px 5px 15px -5px rgba(0,0,0,0.2) !important;
}

figure {
    margin-bottom: 0;
    overflow: hidden;
    border-radius: 10px;
}

figure figcaption {
    display: none;
}

figure img {
    position: relative;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: 100%;
}

/* ADA Skip Links */

.skip_links {
    text-align: left;
    position: fixed;
    z-index: 99999;
}

.skip_links a {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.skip_links a:focus, .skip_links a:active {
    position: static;
    left: 5px;
    top: 5px;
    width: auto;
    height: auto;
    padding: 1rem 1rem;
    overflow: visible;
    text-decoration: none;
    color: #000000;
    border: 1px solid #FFFFFF;
    background-color: #FCFCFC;
} 

/* Header */

header {
    padding-top: 20px;
    padding-bottom: 20px;
    z-index: 9999;
    font-size: var(--font-header);
    line-height: 1.5;
    color: #FFFFFF;
    background-color: #001f60;
}

header a:not(.btn),
header a:not(.btn):visited {
    color: #FFFFFF;
    text-decoration: none;
}

header a:not(.btn):hover {
    color: #00d501;
}

/* Social Media Icons */

header .social-icons li {
    margin-right: 0 !important;
}

header .social-icons .fa-stack {
    font-size: 18px;
}

header .social-icons i {
    color: #FFFFFF;
}

header .social-icons i.fa-inverse {
    color: #000000;
}

/* Facebook */

header .social-icons .facebook i.fa-stack-2x {
    color: #FFFFFF;
}

header .social-icons .facebook i.fa-inverse {
    color: #4267B2;
}

header .social-icons .facebook:hover i.fa-stack-2x {
    color: #4267B2;
}

header .social-icons .facebook:hover i.fa-inverse {
    color: #FFFFFF;
}

/* Instagram */

header .social-icons .instagram i.fa-stack-2x {
    color: #FFFFFF;
}

header .social-icons .instagram i.fa-inverse {
    color: #833AB4;
}

header .social-icons .instagram:hover i.fa-stack-2x {
    color: #833AB4;
}

header .social-icons .instagram:hover i.fa-inverse {
    color: #FFFFFF;
}

/* LinkedIn */

header .social-icons .linkedin i.fa-stack-2x {
    color: #FFFFFF;
}

header .social-icons .linkedin i.fa-inverse {
    color: #0077B5;
}

header .social-icons .linkedin:hover i.fa-stack-2x {
    color: #0077B5;
}

header .social-icons .linkedin:hover i.fa-inverse {
    color: #FFFFFF;
}

@media (max-width: 767px) {

    header {
        padding-top: 30px;
        padding-right: 15px;
        padding-bottom: 30px;
        padding-left: 15px;
    }

}

/* Navbar */

nav {
    z-index: 9999;
    color: #FFFFFF;
    background-color: #001F60;
}

/* Accent Lines (top/bottom) */

div.accent-lines {
    display: flex;
    flex-direction: column;
}

div.accent-lines.reverse {
    flex-direction: column-reverse;
}

div.accent-lines .line-one {
    height: 6px;
    background-color: #FFFFFF;
}

    div.accent-lines .line-two {
        height: 6px;
        background-color: #00D501;
    }

div.accent-lines .line-three {
    height: 4px;
    background-color: #FFFFFF;
}

    div.accent-lines .line-four {
        height: 3px;
        background-color: #00D501;
    }

div.accent-lines .line-five {
    height: 4px;
    background-color: #FFFFFF;
}

/* Main */

main {
    color: #000000;
    background-color: #FFFFFF;
}

/* Footer */

footer {
    font-size: var(--font-footer);
    color: #FFFFFF;
    background-color: #001F60;
    border-top: 6px solid #00D501;
}

footer .footer-main {
    padding: 45px 15px;
}

    footer .footer-copyright {
        padding: 30px 15px;
        background-color: #001856;
    }

footer a:not(.btn),
footer a:visited:not(.btn) {
    color: #FFFFFF;
    text-decoration: none;
}

footer a:hover:not(.btn) {
    color: #FFFF00;
    text-decoration: none;
}

footer ul.fa-ul {
    margin-left: 2rem;
}

footer ul.fa-ul li {
    line-height: 1.8;
}

footer ul.fa-ul li:last-child {
    padding-bottom: 0;
}

footer ul.fa-ul span.fa-li {
    width: 2rem;
}

    footer h2 {
        margin-bottom: 15px;
        padding-bottom: 2px;
        font-family: Helvetica, 'Open Sans', Arial, sans-serif;
        font-size: var(--font-h4);
        font-weight: bold;
        line-height: 1.2;
        border-bottom: 2px solid #FFFFFF;
    }

/* Back to Top Button */

.back-to-top {
    z-index: 9999;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    -webkit-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
    -moz-box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
    box-shadow: 0px 1px 3px 0px rgba(0,0,0,0.33);
}

/* Main Content */

main section {
    padding: 45px 15px;
}

main section.hero {
    padding: 0 0;
    border-bottom: 6px solid #00D501;
}

main a:not(.btn),
main a:not(.btn):visited {
    color: #3333FF;
    text-decoration: none;
}

main a:not(.btn):hover {
    color: #FF3333;
    text-decoration: none;
}

main p, ul, ol {
    margin-bottom: 1.5rem;
}

main ul, ol {
    padding-left: 1.5rem;
}

main h1, main h2, main h3, main h4, main h5, main h6,
main .h1, main .h2, main .h3, main .h4, main .h5, main .h6 {
    margin-bottom: 1.5rem;
    font-family: Helvetica, 'Open Sans', Arial, sans-serif;
    font-weight: bold;
    text-wrap: balance;
    color: #001F60;
}

main h1, main .h1 {
    font-size: var(--font-h1);
    line-height: 1.2;
}

main h1 .subtitle, main .h1 .subtitle {
    display: block;
    font-size: var(--font-h3);
    font-style: italic;
    line-height: 1.3;
}

main h2, main .h2 {
    font-size: var(--font-h2);
    line-height: 1.3;
}

main h3, main .h3 {
    font-size: var(--font-h3);
    line-height: 1.4;
}

main h4, main .h4 {
    font-size: var(--font-h4);
    line-height: 1.5;
}

main h5, main .h5 {
    font-size: var(--font-h5);
    line-height: 1.6;
}

main h6, main .h6 {
    font-size: var(--font-h6);
    line-height: 1.7;
}

main small, main .small {
    font-size: var(--font-small);
    line-height: 1.6;
}

main .big {
    font-size: var(--font-big);
    line-height: 1.6;
}

main .page-titles {
    position: relative;
    display: flex;
    flex-direction: column;
}

/* Marquee */

section.marquee-bg {
    position: relative;
    z-index: 999;
    padding: 0 0;
    background-color: #001F60;
    border-bottom: 6px solid #00D501;
}

section.marquee-bg .container-xl .col-12 {
    padding-left: 0;
    padding-right: 0;
}

section.marquee-bg .marquee-wrapper {
    overflow: hidden;
    display: none;
    width: 100%;
    height: calc(var(--font-h2) * 3);
    background-color: transparent;
}

section.marquee-bg .marquee {
    font-size: var(--font-h2);
    font-weight: bold;
    color: #FFFFFF;
    line-height: 3.0;
}

@media only screen and (max-width : 991px) {

    section.marquee-bg .marquee-wrapper {
        border: 0 none;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
    }

}

/* Agents Page */

div.img-box {
    position: relative;
    max-width: 100%;
    height: auto;
    overflow: hidden;
    margin: 0 0;
    padding: 0 0;
}

span.img-title {
    font-size:var(--font-large);
    position: absolute;
    color: #fff;
    font-weight: bold;
    bottom: 0px;
    left: 0;
    right: 0;
    padding-bottom: 15px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 31, 96, 1.00) 100%);
}

@media(min-width:768px){
    ul.agent-info{
        font-size:18px !important;
    }
}

.agent-sign {
    position: relative;
    background-color: #FF00FF;
}

.agent-sign .agent-sign-overlay {
    position: absolute;
    right: 0;
    bottom: -30px;
    left: 30px;
    z-index: 4;
    max-width: 100%;
    height: auto;
}

/* Color Sections */

section.blue-bg {
    color: #FFFFFF;
    background-color: #001F60;
}

section.blue-bg h1, section.blue-bg h2, section.blue-bg h3, section.blue-bg h4, section.blue-bg h5, section.blue-bg h6 {
    color: #FFFFFF;
}

section.blue-bg a:not(.btn),
section.blue-bg a:not(.btn):visited {
    color: #00D501;
}

section.blue-bg a:not(.btn):hover {
    color: #FFFF00;
}

section.gray-bg {
    background-color: #F0F0F0;
}

/* Multi Column Lists */

.list-four-col {
    columns: 4;
    column-gap: 30px;
}

.list-three-col {
    columns: 3;
    column-gap: 30px;
}

.list-two-col {
    columns: 2;
    column-gap: 30px;
}

@media (max-width : 991px) {

    .list-four-col,
    .list-three-col,
    .list-two-col {
        columns: 2;
    }

}

@media (max-width : 767px) {

    .list-four-col,
    .list-three-col,
    .list-two-col {
        columns: 1;
    }

}

/* Google Map */

.ratio-google-map {
    padding-bottom: 33.33%;
    border-top: 6px solid #00D501;
    border-bottom: 6px solid #00D501;
}

@media only screen and (max-width: 1199px) {

    .ratio-google-map {
        padding-bottom: 42%;
    }
}

@media only screen and (max-width: 991px) {

    .ratio-google-map {
        padding-bottom: 56%;
    }
}

@media only screen and (max-width: 767px) {

    .ratio-google-map {
        padding-bottom: 75%;
    }
}

/* Testimonials Page */

.TT_MainContainer {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.TT_AggregateContainer {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.TT_container:last-child {
    margin-bottom: 0 !important;
}

.currentPageDiv section {
    margin: 0 auto 30px auto;
    padding: 30px 30px;
    background-color: #FFFFFF;
    border: 1px solid #CCCCCC !important;
    border-radius: 5px 5px;
}

.TT_text {
    font-family: 'Open Sans', Arial, Helvetica, sans-serif;
    font-size: var(--font-medium) !important;
    line-height: 1.25 !important;
    color: #333333 !important;
    margin-bottom: 15px !important;
}

.TT_text i.icon-quote-left,
.TT_text i.icon-quote-right {
    position: relative;
    top: 4px !important;
    color: #909090;
    font-size: 14px;
}

.TT_bottom br {
    display: none;
    height: 0;
    line-height: 0;
}

main a.TT_AddTestimonialLink,
main a.TT_AddTestimonialLink:visited {
    color: #FFFFFF;
    text-decoration: none;
}

main a.TT_AddTestimonialLink:hover {
    color: #FFFF00;
    text-decoration: none;
}