/************************************************************************
CSS LEGEND
----------------------------------------
All css relating to a single page or section should be grouped together
and noted here in this legend in order of appearance.
- GLOBAL
- HEADER
- HERO
- BUTTONS
- FOOTER
- SERVICES
***********************************************************************/

/************************************************************************
GLOBAL (BASIC HTML TAGS)
***********************************************************************/
:root {
    --bs-primary: #1e4e8b;
    --bs-primary-rgb: 30, 78, 139;
    --bs-secondary: #964434;
    --bs-secondary-rgb: 150, 68, 52;
    --bs-font-sans-serif: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

section {
    padding: 75px;
}

@media screen and (max-width: 576px) {
    section {
        padding: 20px;
    }
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
}

p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #595b5e;
    margin: 0px 0px 15px;
}

a {
    color: #1e4e8b;
    text-decoration: none;
}

a:hover {
    color: #964434;
    text-decoration: none;
}

hr.divider {
    width: 3rem;
    border-top: .5rem solid rgb(30, 78, 139) !important;
}

/************************************************************************
BACKGROUND COLORS
***********************************************************************/
.bg-gray-200 {
    background-color: var(--bs-gray-200)!important;
}

/************************************************************************
NAVBAR
***********************************************************************/
.address.text-light .nav-link {
    color: white;
    letter-spacing: 0;
    text-transform: unset;
    font-weight: normal;
}

.nav-link {
    padding: .5rem 1rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: .9rem;
}

.logo {
    max-width: 190px;
}

.navbar-light .navbar-nav .nav-link {
    padding: 5px 13px;
    font-size: 16px;
    font-weight: 600;
}

.navbar-light .navbar-toggler {
    color: white;
    background-color: #f4f4f4;
}

@media (max-width: 1400px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: .89rem;
    }
}

/*add divider line on large screens*/
@media screen and (min-width: 992px) {
    .navbar-light li:not(:last-child) .nav-link {
        border-right: 1px dotted #964434;
    }

    .navbar-light li .nav-link {
        border-top: 2px solid #fff; /* weird fix for a rougue double dot */
        border-bottom: 2px solid #fff;
    }
}

.navbar-toggler {
    border: 0;
    padding: 0.5rem;
}

.navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .show > .nav-link {
    color: #964434;
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(var(--bs-primary-rgb), .86);
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: #964434;
}
.dropdown-menu {
    border: 1px solid rgba(30, 78, 139, 0.5);
}

.dropdown-item {
    color: rgba(var(--bs-primary-rgb), .86);
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #964433;
    background-color: #fff;
}

@media all and (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: none;
    }

    .navbar .nav-item:hover .nav-link {
    }

    .navbar .nav-item:hover .dropdown-menu {
        display: block;
    }

    .navbar .nav-item .dropdown-menu {
        margin-top: 0;
    }
}

@media screen and (max-width: 992px) {
    .navbar-nav {
        padding-top:20px;
    }
    .navbar-light .navbar-nav .nav-link {
        padding: 20px!important;
        border-top:1px solid #ccc;
    }
    .dropdown-menu {
        margin-top:-10px!important;
        margin-bottom:10px;
    }
    .dropdown-item {
        padding: 10px 20px!important;
    }
}


/************************************************************************
HERO
***********************************************************************/
.hero {
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    height: 900px;
    /*max-height:calc(100vh - 190px);*/
    max-height: calc(100vh - 250px);
}

.hero .carousel {
    height: 100%;
    width: 100%;
    background: var(--bs-primary);
}

.hero-item {
    width: 100%;
    height: 100%;
    box-shadow: inset 0 11px 10px -10px rgba(0, 0, 0, 0.50), inset 0 -11px 10px -10px rgba(0, 0, 0, 0.50);
}

.hero .carousel-item .carousel-content-overlay {
    text-align: center;
    margin: 0;
    padding: 10px 50px;
}

.hero .carousel-item .carousel-content-overlay .carousel-content-header {
    /* option 1: single shadow */
    /*text-shadow: 0px 0px 7px rgb(0,0,0);*/
    /* option 2: double shadow */
    text-shadow: 0px 0px 5px rgb(0, 0, 0), 0px 0px 5px rgb(0, 0, 0);
    font-size: 65px;
}

.hero .carousel-item .carousel-content-overlay .carousel-content-sub-header {
    /* option 1: single shadow */
    /*text-shadow: 0px 0px 7px rgb(0,0,0);*/
    /* option 2: double shadow */
    text-shadow: 0px 0px 5px rgb(0, 0, 0), 0px 0px 5px rgb(0, 0, 0);
    font-size: 30px;
}

@media screen and (max-width: 1330px) {
    .hero .carousel-item .carousel-content-overlay .carousel-content-header {
        font-size: 50px;
    }
    .hero {
        height:550px;
        max-height:50vh;
    }
}

@media screen and (max-width: 887px) {
    .hero .carousel-item .carousel-content-overlay .carousel-content-header {
        font-size: 30px;
        text-shadow: 0px 0px 3px rgb(0, 0, 0), 0px 0px 3px rgb(0, 0, 0), 0px 0px 3px rgb(0, 0, 0);
    }
    .hero .carousel-item .carousel-content-overlay .carousel-content-sub-header {
        font-size: 18px;
    }
    .hero {
        height:550px;
        max-height:70vh;
    }
}

@media screen and (max-width: 576px) {
    .hero .carousel-item .carousel-content-overlay .carousel-content-header {
        font-size: 30px;
    }
    .hero .carousel-item .carousel-content-overlay .carousel-content-sub-header {
        font-size: 18px;
    }
}

/************************************************************************
TINY HERO
***********************************************************************/
.tiny-hero {
    max-height: 25vh;
    /*background-color:#c7d3e2!important;*/
    /*color: #ffffff;*/
}

.tiny-hero .hero-content-header {
    text-shadow: none;
    font-size: 48px;
    line-height: .9;
}

.tiny-hero .hero-content-sub-header {
    text-shadow: none;
    font-size: 24px;
}

@media screen and (max-width: 576px) {

    .tiny-hero .hero-content-header {
        font-size: 38px;
    }
    .tiny-hero .hero-content-sub-header {
        font-size: 18px;
    }
}

/************************************************************************
BUTTONS
***********************************************************************/
.btn {
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
}

.btn-primary {
    border-color: var(--bs-primary);
    background-color: var(--bs-primary);
}

.btn-primary:hover {
    background-color: #0e2346;
    border-color: #0e2346;
}

.btn-secondary {
    background-color: var(--bs-secondary);
    border-color: var(--bs-secondary);
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

.btn-secondary:hover {
    background-color: #0e2346;
    border-color: #0e2346;
}


/************************************************************************
FOOTER
***********************************************************************/
footer {
    padding: 2rem 2rem 7rem 2rem;
    background-color: #0e2346;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 13px;
}

footer a:hover {
    color: #8a9cb6;
    text-decoration: none;
}

.whatsapp {
    max-width: 200px;
}

/************************************************************************
SECTION CTA CONTACT INFO
***********************************************************************/
.section-cta-contact-info {
    padding: 2rem 2rem;
    background-color: #0e2346;
    color: white;
}

.section-cta-contact-info a {
    color: white;
    text-decoration: none;
}

.section-cta-contact-info a:hover {
    color: #8a9cb6;
    text-decoration: none;
}

.section-cta-contact-info .whatsapp {
    max-width: 200px;
}


@media screen and (max-width: 576px) {
    .section-cta-contact-info .whatsapp {
        max-width: 200px;
        padding-bottom: 20px;
    }

    .section-cta-contact-info h5 {
        padding-bottom: 20px;
    }

}


/************************************************************************
SECTION SERVICES
***********************************************************************/
.section-services {
    width: 100%;
    padding: 15px 5px;
    color: rgb(255, 255, 255);
    font-size: 14px;
    font-weight: bold;
    border-top-width: 5px;
}

.section-services .title {
    margin-bottom: 20px;
}

.section-services .title a {
    color: #fff;
    text-decoration: none;
    padding: 0 20px;
}

.section-services .title a:hover {
    color: rgba(129, 164, 208, 0.54);
}

.section-services .services-list .services-item {
    padding: 0 20px;
}

.section-services .services-list .service-icon {
    border-top-left-radius: 35px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 10px;
    border: 7px solid rgba(129, 164, 208, 0.54);
    -moz-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    max-width: 150px;
}

.section-services .services-list .service-icon:hover {
    border: 7px solid rgba(189, 205, 227, 0.54);
}

.section-services .services-list .service-name {
    color: #fff;
    padding-top: 10px;
}

@media screen and (max-width: 1030px) {
    .section-services .services-list .services-item {
        flex-basis:33%;
    }
}

@media screen and (max-width: 576px) {
    .section-services .services-list .services-item {
        flex-basis:33%;
    }
    .section-services .services-list .service-icon {
        max-width: 120px;
    }
    .section-services h6 {
        font-size: .8rem;
    }
}

/************************************************************************
SECTION FACTS AND FIGURES
***********************************************************************/
.facts-and-figures {

}

.facts-and-figures .count-box {
    width: 150px;
}

.facts-and-figures .count-box-label {
    color: #964434;
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 700;
}

/************************************************************************
THRYV STUFF
***********************************************************************/
.schedule-appointment {
    position:fixed;
    bottom:0;
    right:0;
    background-color: #fff;
    padding:15px;
    margin-right:5px;
    border-radius: 10px 10px 0 0;
    color:var(--bs-primary);
    text-transform: uppercase;
    font-weight:bold;
    box-shadow: rgba(0,0,0,0.5) 0 0 5px;
}
@media screen and (max-width:500px) {
    .schedule-appointment {
        width:100%;
        margin:0;
        border-radius: 0;
        box-shadow: rgba(0,0,0,0.5) 0 0 5px;
        padding:15px 1px;
    }
}

@media screen and (max-width:350px) {
    .schedule-appointment > .btn-sm {
        font-size:0.7em;
    }
}
