/*
Theme Name: Brockett Hello Child
Theme URI: https://elementor.com/hello-theme/?utm_source=wp-themes&utm_campaign=theme-uri&utm_medium=wp-dash
Template: hello-elementor
Author: Elementor Team
Author URI: https://elementor.com/?utm_source=wp-themes&utm_campaign=author-uri&utm_medium=wp-dash
Description: Hello Elementor is a lightweight and minimalist WordPress theme that was built specifically to work seamlessly with the Elementor site builder plugin. The theme is free, open-source, and designed for users who want a flexible, easy-to-use, and customizable website. The theme, which is optimized for performance, provides a solid foundation for users to build their own unique designs using the Elementor drag-and-drop site builder. Its simplicity and flexibility make it a great choice for both beginners and experienced Web Creators.
Tags: accessibility-ready,flexible-header,custom-colors,custom-menu,custom-logo,featured-images,rtl-language-support,threaded-comments,translation-ready
Version: 3.0.1.1707834477
Updated: 2024-02-13 14:27:57

*/

:root {
    --clr-white: #fff;
    --clr-black: #000;
    --clr-theme-1: #25327B;
    --clr-theme-2: #EDAA1E;
}

/******************************* 
            ANIMATIONS
********************************/
@keyframes fadeInOnHover {
    from {
        display: none;
        /* visibility: hidden; */
        opacity: 0;
    }
    to {
        display: block;
        /* visibility: visible; */
        opacity: 1;
    }
}



/* 
**
***
    CUSTOM SHRINKING HEADER ON SCROLL :)
    Be sure to add the ID 'ele-shrink-header' on the header element in elementor.
    On the header element, under 'advanced' > 'Motion Effects', set 'Sticky' to 'Top' and add all the breakpoints.
    'Offset' and 'Effects Offset' to 0, those are controlled in js/app.js, as well as adding/removing the 'scrolled' class.
    See comments below on what values can be adjusted as needed per site.
***
**
*/
#ele-shrink-header {
    transition: all 0.3s linear;
}
#ele-shrink-header.scrolled {
	width: 100% !important;
    padding: 0px 10px; /* Adjust as needed */
    transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
}
/* Logo default state */
#ele-shrink-header img {
    width: 100%;
    transition: all .2s linear;
    -webkit-transition: all .2s linear;
    -moz-transition: all .2s 
}
/* Mobile logo on scroll */
#ele-shrink-header.scrolled img {
    width: 80%; /* Adjust as needed */
}
 /* Shrink Logo more only on tablet and larger */
@media(min-width: 767px){
    #ele-shrink-header.scrolled img {
        width: 70%; /* Adjust as needed */
    }
}
/* Shrink nav items */
#ele-shrink-header.scrolled .elementor-nav-menu li a {
    font-size: .9rem; /* Adjust as needed */
    transition: all .2s linear;
	-webkit-transition: all .2s linear;
	-moz-transition: all .2s linear;
}
/* Buttons */
#ele-shrink-header .elementor-button {
    font-size: 1.2rem
}
/* Buttons */
#ele-shrink-header.scrolled .elementor-button {
    font-size: 0.9rem
}


/******************************* 
ADA/PRIVACY and LINKS
********************************/
.link-style-fix,
.elementor-element .inline-link a {
    color: var(--clr-primary);
    font-weight: 700;
    text-decoration: none;
}
.link-style-fix:hover,
.elementor-element .inline-link a:hover {
    color: var(--clr-primary);
    font-weight: 700;
}
ul {
    padding-left: 20px;
}
article.privacy-policy ul, article.accessibility-statement ul {
    margin-bottom: 1em;
}
article.privacy-policy ul li, article.accessibility-statement ul li {
    margin-bottom: .5em;
}


/******************************* 
            BASE
********************************/
.privacy-policy ul {
    padding-left: 20px;
}
.homepage-panels {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    /* min-height: 100vh; */
    margin: 0;
    padding: 0;
}
article.panel {
    position: relative;
    color: #fff;
    padding: 2em;
    transition: all .3s ease-in-out;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
article.panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: var(--clr-black);
    opacity: .4;
    z-index: 0;
    transition: .3s ease-in-out;
}
article.panel {
    position: relative;
    flex: 1;
    padding: 5em 2em 5em 2em;
    color: white;
    transition: all .3s ease-in-out;
}
article.panel:hover {
    flex: 1.75;
    transition: .5s ease-in-out;
}
.panel-content {
    position: relative;
    z-index: 1;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.panel-title-top {
    /* text-wrap: nowrap; */
}
.panel-text {
    padding: 2.3em 1em 2.3em 0em;
    max-width: 450px;
    /* text-wrap: balance; */
}
.panel-menu { 
    display: flex;  
    flex-direction: column;
    gap: 10px;
    margin: 0 0 3.5em -2em;
    max-width: 350px;
}
.panel-title-bottom {
    position: relative;
    margin-top: 1em;
    text-wrap: nowrap;
    text-transform: uppercase;
}
.panel-title-bottom::after {
    content: '';
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;
    max-width: 150px;
    background-color: var(--clr-theme-2);
    height: 2px;
}
.panel-menu .panel-btn {
    position: relative;
    color: var(--clr-theme-1);
    background-color: var(--clr-white);
    padding: 10px 20px;
    font-size: 1.25rem;
    border-radius: 0px 3px 3px 0px;
    text-align: right;
    border-right: 10px solid var(--clr-theme-1);
}
.panel-menu .panel-btn:hover {
    border-right: 16px solid var(--clr-theme-1);
    transition: .1s ease-in-out;
}
.panel-hover-content {
    position: relative;
    animation: fadeInOnHover 1s;
    visibility: hidden;
    opacity: 0;
    z-index: 1;
}
article.panel:hover .panel-hover-content {
    /* display: block; */
    visibility: visible;
    opacity: 1;
    transition: 1s ease-in-out;
}

/******************************* 
            TABLET
********************************/
@media(min-width: 767px){
    .homepage-panels {
        grid-template-columns: repeat(2, 1fr);
    }
}

/******************************* 
            DESKTOP
********************************/
@media(min-width: 1200px){
    .homepage-panels { /* Changing from grid to flex only for desktop */
        display: flex;
        flex-direction: row;
        min-height: 90vh;
    }
    article.panel {
        position: relative;
        flex: 1;
        width: 25%;
        padding: 2em 2em 5em 2em;
        color: white;
        transition: all .3s ease-in-out;
    }
    article.panel:hover {
        flex: 1.75;
        transition: .5s ease-in-out;
        border: 6px solid #fff;
    }
 
    .panel-hover-content {
        opacity: 0;
        visibility: hidden;
    }
    article.panel:hover .panel-hover-content {
        opacity: 1;
        visibility: visible;
        transition: 1s ease-in-out;
    }
    
}

/******************************* 
    VARIOUS ELEMENTOR ADJUSTMENTS
********************************/
/* Helps text work better on subpages. Class applied on right column. */
@media(min-width: 1200px){
    .subpage-content-right {
        max-width: 60%;
    }
    
}

.Heading-left-line h2 {
    position: relative;
    max-width: max-content;
    text-align: center;
    margin: 0 auto;
}
.Heading-left-line h2::before {
    background-color: hsla(0, 0%, 40%, 0.502);
    content: "";
    display: block;
    height: 1px;
    position: absolute;
    top: .5em;
    width: 1337px;
    margin-right: 3.6rem;
    right: 100%;
}
.subpage-hero-menu .sub-menu li {
    /* width: 200% !important; */
    /* background-color: red; */
    /* box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2); */
}
.subpage-hero-menu .sub-menu {
    min-width: 250px !important;
    /* background-color: red; */
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, .2);
}


#custom-login-form label,
#resetpasswordform label {
    font-weight: 600;
    padding: 10px 0px;
}
#custom-login-form input[type="submit"],
#lostpasswordform #reset-pass-submit,
#resetpasswordform #reset-pass-submit {
    background-color: var(--clr-theme-1);
    color: var(--clr-white);
    outline: none;
    border: none;
    padding: 15px 60px 15px 60px;
    font-weight: 500;
    border-radius: 0px;
    margin: 20px 0px 10px 0px;
    font-size: 14px;
}
#custom-login-form input[type="submit"]:hover,
#lostpasswordform #reset-pass-submit:hover,
#resetpasswordform #reset-pass-submit:hover {
    background-color: var(--clr-theme-1);
    color: var(--clr-white);
    outline: none;
    border: none;
}
#lostpasswordform #reset-pass-submit,
#resetpasswordform #reset-pass-submit {
    margin: 0px;
}



/******************************* 
    DOCUMENTS & FORMS SHORTCODE
********************************/
#documents-container .document-button {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    text-decoration: none;
    border-radius: 0px;
    color: #fff;
    max-width: fit-content;
}
#documents-container .document-button.active {
    background-color: var(--clr-theme-1);
}
#documents-container .document-button.inactive {
    background-color: #ccc;
    color: var(--clr-white);
    pointer-events: none; 
}
.access-note {
    font-weight: 600;
    color: var(--clr-black);
    font-size: 1.1rem;
}
.access-note a:hover {
    text-decoration: underline;
}
.documents-flex {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}
@media(min-width: 1024px){
    .documents-flex {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    #documents-container .document-button {
        max-width: 100%;
    }
}


/* Logged in status in nav panel */
.logged-in-status {
    color: var(--clr-white);
}
.logged-in-status a {
    color: var(--clr-white) !important;
}
.logged-in-status a:hover {
    text-decoration: underline;
}


/* REQUEST A QUOTE FORM */
.add_list_item,
.gform_button.button {
    background-color: var(--clr-theme-1) !important;
}