/*
Theme Name: Understrap
Theme URI: https://understrap.com
Author: Howard Development &amp; Consulting
Author URI: https://howarddc.com
GitHub Theme URI: https://github.com/understrap/understrap
Description: The renowned WordPress starter theme framework that combined Underscores and Bootstrap. Trusted by more than 100,000 developers for building handcrafted, custom WordPress sites.
Version: 1.2.4
Requires at least: 5.0
Tested up to: 6.1
Requires PHP: 5.2
License: GNU General Public License v3 or later
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Text Domain: understrap
Tags: one-column, two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-logo, custom-menu, featured-images, footer-widgets, full-width-template, theme-options, translation-ready, block-styles, wide-blocks, editor-style, threaded-comments, accessibility-ready

Understrap WordPress Theme, (C) 2021 Howard Development & Consulting, LLC
Understrap is distributed under the terms of the GNU GPL.

Resource Licenses:
Understrap is based on Underscores https://underscores.me/, (C) Automattic, Inc.
Font Awesome: https://fontawesome.com/v4.7/license/ (Font: SIL OFL 1.1, (S)CSS: MIT)
Bootstrap: https://getbootstrap.com | https://github.com/twbs/bootstrap/blob/master/LICENSE (MIT)
WP Bootstrap Navwalker by Edward McIntyre & William Patton: https://github.com/twittem/wp-bootstrap-navwalker (GNU GPLv3)
*/

/*
Do not modify the parent Understrap theme. Instead, download a copy of the Understrap Child starter theme and do all your development within the child theme.
Full developer documentation: https://docs.understrap.com
*/

* {
    font-size: 1.1rem;
}

a {
    color: #192a56 !important;
}

header {
    position: fixed;
    width: 100%;
    z-index: 9;
}

#headerInner {
    transition: 0.3s ease all;
    padding: 0.5rem 0;
}

header #headerInner.scrolled {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.navbar {
    padding: 0 !important;
}

.navbar-brand img {
    border-radius: 50%;
    padding: 0;
    overflow: hidden;
    max-width: 120px;
}


.menu-item {
    margin-right: 2rem;
    font-size: 1.4rem;
}

    .menu-item a {
        color: #192a56!important;
    }

    .menu-item:last-child {
        margin: 0;
    }

.homeCarousel {
    position: absolute !important;
    top: 0;
    left: 0;
    z-index: 5 !important;
    width: 100vw;
    height: 100vh;
}

.genericCarousel {
    width: 100%;
    aspect-ratio: 21/9;
}
.genericCarousel .slick-list {
    height: 100%;
}
.genericCarousel .slick-track {
    height: 100%;
}

    .homeCarousel .carouselItem {
        height: 100vh;
        filter: blur(3px);
    }

    .homeCarousel .carouselItem::before {
        content: '';
        background-color: rgba(255,255,255,0.4);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.heroText {
    position: absolute;
    width: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 8;
}

    .heroText h1 {
        color: #d35400;
        font-size: 4rem;
        font-weight: bold;
        margin-bottom: 2rem;
        width: 66.666%;
    }

    .heroText h2 {
        color: #192a56;
        font-size: 1.8rem;
        width: 75%;
    }


    main.home {
        padding-top: 100vh;
    }

.homeReview {

}

    .homeReview .review {
        margin: 0 1rem;
        font-size: 1.75rem;
        font-weight: 700;
        border-radius: 1rem;
        border: 4px solid #d35400;
        padding: 1rem;
        position: relative;
    }

    .homeReview .review .quote {
        font-size: 3rem;
        font-weight: 900;
        color: #d35400
    }


    nav a:hover {
       text-decoration: none!important;
    }

/* Main navbar links */
.navbar-nav > li {
    position: relative;
}

/* Dropdown styles */
.navbar-nav .menu-item-has-children > a::after {
    content: " \f078"; /* Font Awesome chevron-down */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 5px;
    font-size: 0.75rem;
}

#primaryMenu ul li a {
    font-size: 1.5rem;
}

#primaryMenu .sub-menu {
    display: none;
    list-style: none;
}
#primaryMenu .menu-item-has-children:hover .sub-menu {
    display: block;
    position: absolute;
    width: max-content;
    background: white;
    padding: 1rem;
}

#mobileMenu .sub-menu {
    list-style: none;
    padding: 0;
    padding-top: 0.75rem;
}
    #mobileMenu .sub-menu li {
        padding: 0.5rem 0;
    }
    #mobileMenu .sub-menu li a {
        font-size: 1rem;
    }

#mobileMenu .navbar-nav .menu-item-has-children > a::after {
    content: " \f078";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 1rem;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
}


/* Arrows */
.slick-prev,
.slick-next {
    width: 40px;
    height: 40px;
    z-index: 5;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 0;
    cursor: pointer;
}

    .slick-prev::before,
    .slick-next::before {
        font-family: 'slick';
        font-size: 20px;
        line-height: 1;
        color: white;
        opacity: 1;
    }

.slick-prev {
    left: 10px;
}

.slick-next {
    right: 10px;
}




/* Dots container */
.slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 20px 0 0;
}

    /* Dot button */
    .slick-dots li button {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: #ccc;
        border: none;
        font-size: 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    /* Active dot */
    .slick-dots li.slick-active button {
        background: #000;
        transform: scale(1.2);
    }










        @media screen and (max-width: 768px) {
            nav .navbar-collapse ul li {
        text-align: center;
        margin: 0;
        padding: 0.75rem 0;
    }
    nav .navbar-collapse ul li a {
        display: block;
        font-size: 1.5rem;
        position:relative;
    }

    header {
        position: sticky;
        top: 0;
        z-index:999;
    }
    main.page {
        padding-top: 1rem!important;
    }
    header .siteLogo {
        height: 80px;
        width: auto;
    }

        header #headerInner {
            background-color: rgba(255,255,255,1);
            box-shadow: 0 2px 5px rgba(0,0,0,0.5);
        }


    .heroText {
        background-color: rgba(255,255,255,0.5);
        padding: 1rem;
        top: 40%;
    }

    .heroText h1 {
        font-size: 2rem;
        width: 100%;
        margin-bottom: 0.5rem;
    }


    .heroText h2 {
        font-size: 1.25rem;
        width: 100%;
    }

    .homeCarousel {
        height: 75vh;
    }
        .homeCarousel .carouselItem {
            height: 75vh;
            filter: blur(0);
        }

        main.home {
            padding-top: 60vh;
        }
}