/*
 Theme Name:   French Hill Theme
 Theme URI:    https://www.majoritystrategies.com
 Description:  Custom theme built for French Hill.
 Template:     twentynineteen
 Version:      1.7
 License:      GNU General Public License v2 or later
 License URI:  http://www.gnu.org/licenses/gpl-2.0.html
 Text Domain:  french-hill-theme
*/


/** ========= COLOR REFERENCES ========= **/
:root {
    --green: #4a9462;
    /* Primary */
    --blue: #003a70;
    /* Secondary */
    --offWhite: #f2f5fd;
    /* Tertiary */
    --gray: #727272;
    /* Quaternary */
}

/** ==================================== **/


/** ======== TABLE OF CONTENTS =========
	1. General Styles
    2. Navigation & Footer Styles
        - 2a. Nav
        - 2b. Footer
	3. Main Styles
        - 3a. Body
        - 3b. Responsive Videos & YouTube
        - 3c. YouTube Playlist
        - 3d. Video Background
        - 3e. Forms
        - 3f. Social Icons
/** ==================================== **/


/* ------------------------------ 
    1. General Styles
------------------------------ */
@-ms-viewport {
    width: device-width;
}

html {
    overflow-x: hidden;
}

body {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 300;
    font-size: 16px;
    /* Adjust this on mobile to globally change tags) */
    line-height: 20px;
    background: #fff;
}

h1:not(.site-title):before,
h2:before {
    display: none;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
.p,
a,
button,
input,
.btn,
a.btn {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizelegibility;
    font-family: 'proxima-nova', sans-serif;
}

h1,
.h1 {
    font-weight: 900;
    font-size: 6.688em;
    /* 107px */
    line-height: 80px;
    color: var(--blue);
    text-transform: uppercase;
}

h2,
.h2 {
    font-weight: 900;
    font-size: 2em;
    /* 32px */
    line-height: 39px;
    color: var(--green);
}

h3,
.h3 {
    font-weight: 300;
    font-size: 1.313em;
    /* 21px */
    line-height: 28px;
    color: var(--blue);
}

p,
.p {
    font-weight: 300;
    font-size: 1em;
    /* 15px */
    line-height: 20px;
    color: var(--blue);
}

a {
    font-weight: 900;
    font-size: 1em;
    /* 15px */
    line-height: 20px;
    color: var(--blue);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

a:visited,
a:focus {
    outline: 0;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

.btn {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 900;
    font-size: 1em;
    /* 15px */
    letter-spacing: 0.01em;
    line-height: 35px;
    border-radius: 5px;
    width: 160px;
    height: 45px;
    padding: 10px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #fff;
    box-shadow: 9px 7px 12px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 9px 7px 12px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 9px 7px 12px rgba(0, 0, 0, 0.16);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.btn:hover,
.btn:focus,
.btn:active {
    color: #fff;
}

.btn.btn-green {
    background: var(--green);
    border: 1px solid var(--green);
    color: #fff;
}

.btn.btn-green:hover,
.btn.btn-green:focus,
.btn.btn-green:active {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: #fff;
}

.main-menu-item a.btn-donate {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 900;
    font-size: 1em;
    /* 15px */
    letter-spacing: 0.01em;
    line-height: 35px;
    border-radius: 5px;
    width: 160px;
    height: 45px;
    padding: 10px 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    color: #fff !important;
    background: var(--green);
    border: 1px solid var(--green);
    box-shadow: 9px 7px 12px rgba(0, 0, 0, 0.16);
    -webkit-box-shadow: 9px 7px 12px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 9px 7px 12px rgba(0, 0, 0, 0.16);
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.main-menu-item a.btn-donate:hover,
.main-menu-item a.btn-donate:focus,
.main-menu-item a.btn-donate:active {
    background: var(--blue);
    border: 1px solid var(--blue);
    color: #fff !important;
}

.proxima-nova {
    font-family: 'proxima-nova', sans-serif !important;
}

.white {
    color: #fff !important;
}

.green {
    color: var(--green) !important;
}

.blue {
    color: var(--blue) !important;
}

.offWhite {
    color: var(--offWhite) !important;
}

.desktop {
    display: block !important;
}

.mobile {
    display: none !important;
}

.uppercase {
    text-transform: uppercase;
}

.lowercase {
    text-transform: none;
}

.f-300 {
    font-weight: 300;
    /* Light */
}

.f-400 {
    font-weight: 400;
    /* Regular */
}

.f-700 {
    font-weight: 700;
    /* Bold */
}

.f-900 {
    font-weight: 900;
    /* Black */
}

.italic {
    font-style: italic;
}

.normal {
    font-style: normal;
}

/* section {
    position: relative;
} */

img {
    width: 100%;
}

.bg-green {
    background: var(--green);
}

.bg-blue {
    background: var(--blue);
}

.bg-offWhite {
    background: var(--offWhite);
}

.bg-white {
    background: var(--white);
}

.bg-transparent {
    background: transparent;
}

.bg-gradient {
    background: linear-gradient(var(--offWhite) 0%, rgba(243, 245, 252, 0) 100%);
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

section {
    position: relative;
}




/* ------------------------------ 
    2. Navigation & Footer Styles
------------------------------ */
/*  - 2a. Nav  */
/***  Desktop Navigation  ***/
header#masthead {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}

#masthead.scrolled {
    background: #fff !important;
    box-shadow: 0 3px 6px rgb(0 0 0 / 16%), 0 3px 6px rgb(0 0 0 / 23%);
    transition: all .1s ease-in-out;
}

.nav-bar {
    min-height: 80px;
}

.desktop-navigation {
    color: var(--gray);
}

.desktop-navigation .social-links {
    padding-top: 1.5rem !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
}

.main-menu-item a,
.desktop-navigation .main-menu-item span {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 300;
    font-size: 1em;
    /* 15px */
    line-height: 20px;
    color: var(--gray);
    padding: 0 15px;
    transition: all .2s ease-in-out;
    text-transform: uppercase;
    text-decoration: none;
}

.main-menu-item a:hover,
.main-menu-item a:active,
.main-menu-item a:focus {
    font-weight: 900;
    text-decoration: none;
}

.main-menu-item:first-of-type a,
.main-menu-item:first-of-type span {
    padding-left: 0;
}

.main-menu-item:last-of-type a,
.main-menu-item:last-of-type span {
    padding-right: 0;
}

.main-menu-item a.anchor-secondary-active.active {
    color: var(--blue) !important;
    font-weight: 900;
}

/* Sub-Menu */
ul.nav li {
    position: relative;
}

ul.nav ul {
    /* display: none; */
    visibility: hidden;
    opacity: 0;
    position: absolute;
    padding: 0;
    /* right: calc(50% - 130px); */
    top: 100%;
    width: auto;
    list-style: none;
    transition: all .33s ease-in-out;
    z-index: 99;
    margin-top: 26px;
    border-bottom: 3px solid;
}

ul.nav ul:before {
    content: "";
    height: 26px;
    position: absolute;
    top: -26px;
    right: 0;
    width: 100%;
}

ul.nav ul:after {
    content: "";
    height: 20px;
    position: absolute;
    top: -20px;
    left: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #215aa8;
    width: 20px;
}

ul.nav ul ul {
    top: 0;
    left: 100%;
}

ul.nav li:hover>ul {
    /* display: block; */
    visibility: visible;
    opacity: 1;
}

ul.nav ul li {
    min-width: 260px;
}

.desktop-navigation .sub-menu-item {
    padding: 0 20px;
}

.desktop-navigation .sub-menu-item .border-bottom {
    padding: 10px 2px;
}

.desktop-navigation .sub-menu-item a:hover {
    color: #fff;
}

.desktop-navigation .sub-menu-item a {
    display: block;
    transition: none;
}

.desktop-navigation .sub-menu-item:last-of-type .border-bottom {
    border: 0 !important;
}

.sub-menu-item a {
    color: #3B3B3A;
    font-size: .875em;
    line-height: 1em;
    font-weight: 300;
    padding: 0;
}

/* Sub-Menu With Children */
ul.nav ul li.has-sub:after {
    content: "";
    position: absolute;
    right: 10px;
    top: calc(50% - 7px);
    border-bottom: 5px solid transparent;
    border-left: 5px solid #fff;
    border-top: 5px solid transparent;
}

/* Nav Extras */
header .brand-logo svg,
header .brand-logo img {
    max-width: 100px;
    height: auto;
}

.brand-logo a:hover {
    opacity: 0.8;
}

/*** Mobile Navigation ***/
.navbar {
    padding: 0;
    position: unset;
}

#mobile-navigation {
    position: absolute;
    width: 100%;
    left: 0;
    top: 100%;
    /* overflow-y: scroll; */
    /* height: calc(100vh - 70px); */
    z-index: 2;
}

.mobile-nav .navbar-toggler {
    line-height: normal;
    width: auto;
    background: none;
}

.mobile-nav-btn {
    padding: 20px;
    font-weight: 100;
    background: transparent !important;
}

.mobile-nav ul {
    list-style-type: none;
    padding: 30px 20px 10px 20px;
}

.mobile-nav li {
    border-top: 1px solid rgba(255, 255, 255, 0.175) !important;
    border-bottom: 0;
    border-right: 0 !important;
    padding: 10px 15px;
    color: #fff;
}

.mobile-nav li:nth-child(1) {
    border-top: 0 !important;
}

li.sub-menu-item:first-of-type a {
    padding-top: 0;
}

.mobile-nav .menu-item-has-children:first-of-type {
    border: 0 !important;
}

.mobile-nav li a:after {
    display: none;
}

.mobile-nav ul li a {
    color: #fff;
    display: inline-block;
    z-index: 1;
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-nav ul li a {
    color: #fff;
}

.mobile-nav ul li a:hover,
.mobile-nav ul li a:visited {
    padding-left: 7px;
}

.mobile-nav ul ul {
    margin-left: -20px;
    margin-right: -20px;
    padding: 10px 20px 0;
}

.mobile-nav ul ul li {
    line-height: 1;
    border: 0;
}

.mobile-nav ul ul a {
    font-size: .85em;
    padding: 10px 0;
}

.mobile-nav ul ul ul a {
    padding-left: 80px !important;
}

.mobile-nav .sub-menu-item:first-of-type {
    border: 0 !important;
}

.mobile-nav .sub-menu-item a {
    font-weight: 400 !important;
}

.dropdown-caret svg {
    color: #fff;
    margin-left: 10px;
}

.dropdown-caret {
    padding-right: 20px;
    position: absolute;
    right: 0;
    display: inline-block;
    width: 100%;
    text-align: right;
    z-index: 999;
}

/*  - 2b. Footer  */
footer {
    margin-top: 100px;
}

footer a:hover {
    text-decoration: none;
}

/* Footer Logo */
footer .brand-logo svg,
footer .brand-logo img {
    max-width: 180px;
    height: auto;
}

/* Footer Nav */
.footer-nav,
.footer-nav ul {
    padding-left: 0;
}

footer .btn-donate {
    position: relative;
    bottom: 30px;
}

footer .main-menu-item:after {
    display: none;
}

footer .main-menu-item a {
    transition: all .5s ease-in-out;
}

footer .sub-menu-item a {
    text-transform: none;
    font-weight: 300;
    line-height: normal;
    padding: 5px 0;
    transition: all .5s ease-in-out;
}

.footer a {
    font-weight: 300;
}

.footer p a:hover {
    color: var(--green) !important;
}

.footer-nav .sub-menu-item a {
    color: unset;
}

.footer-nav .sub-menu-item {
    font-weight: 300;
    line-height: 1.5em;
}

.copyright p {
    font-weight: 400;
    line-height: 20px;
    color: #fff;
    border: 0.5px solid #fff;
    padding: 10px;
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
}




/* ------------------------------ 
    3. Main Styles
------------------------------ */
/*  - 3a. Body */
.hero-image img {
    height: 100%;
    max-width: 610px;
    width: 100%;
}

.hero-content .title-underline:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -25px;
    width: 95%;
    height: 12px;
    background: var(--green);
    z-index: 1;
}

.img-signature {
    max-width: 140px;
    width: 100%;
}

.quote {
    background: url('/wp-content/uploads/2022/03/Quote.svg') no-repeat;
    max-height: 291.65px;
    height: 100%;
    max-width: 400px;
    width: 100%;
    position: absolute;
    top: 20px;
    right: 0;
    z-index: 1;
}

.image-left-text-right h2 {
    max-width: 566px;
    width: 100%;
    text-transform: uppercase;
}

.image-left-text-right h3 {
    max-width: 635px;
    width: 100%;
    /* text-transform: uppercase; */
    font-size: 32px;
    font-weight: 300;
    line-height: 39px;
}

.image-right-text-left h2 {
    max-width: 566px;
    width: 100%;
    text-transform: uppercase;
}

.image-right-text-left h3 {
    max-width: 635px;
    width: 100%;
    /* text-transform: uppercase; */
    font-size: 32px;
    font-weight: 300;
    line-height: 39px;
}

.image-right-text-left ul li,
.image-left-text-right ul li {
    font-size: 15px;
    text-align: left;
    color: var(--blue);
}

.image-right-text-left ul,
.image-left-text-right ul {
    color: var(--blue);
}

.image {
    box-shadow: 10px 13px 36px rgba(0, 0, 0, 0.16);
}

#endorsements,
#faq,
#issues,
#about {
    background: linear-gradient(var(--offWhite) 0%, rgba(243, 245, 252, 0) 100%);
}

.endoresements .container .row .col-md-10 p {
    max-width: 855px;
    width: 100%;
    font-size: 21px;
    line-height: 28px;
}

.border-bottom-green {
    border-bottom: 1px solid var(--green);
}

.endoresements .img-quote {
    max-width: 155.88px;
    width: 100%;
    position: absolute;
    right: 2%;
    top: 1.5em;
    z-index: -1;
}

.accordion_container {
    width: 100%;
}

.accordion_head {
    background-color: #fff;
    color: var(--blue);
    cursor: pointer;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border-bottom: 1px solid var(--blue);
    margin: 0 0 1px 0;
    padding: 1.5em 1em 1.5em 0;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
}

.accordion_body {
    background-color: #fff;
    border-bottom: 1px solid var(--green);
}

.accordion_body p {
    margin: 1.5em 0;
    color: var(--gray) !important;
    font-family: 'proxima-nova', sans-serif;
    font-weight: 300;
    font-size: 15px;
}

.accordion_body p strong {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 700;
}

.plusminus {
    float: right;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border-radius: 50%;
    color: var(--green);
    border: 1px solid var(--green);
    vertical-align: middle;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner .container .row .col-md-12 {
    margin-top: -10em;
}

.banner-img {
    box-shadow: 10px 13px 36px rgba(0, 0, 0, 0.16);
}

.icon {
    max-width: 54px;
    margin-top: -1.5em;
}

.testimonials {
    padding: 3em 0 11em !important;
}

.checkmark {
    max-width: 28.95px;
    width: 100%;
    max-height: 28.95px;
    height: 100%;
}

.pros-text {
    font-size: 21px;
    text-transform: uppercase;
    line-height: 1.5;
}

.pros-title {
    overflow: hidden;
    text-align: center;
}

.pros-title:before,
.pros-title:after {
    background-color: var(--blue);
    content: '';
    display: inline-block;
    height: .5px;
    position: relative;
    vertical-align: middle;
    width: 50%;
}

.pros-title:before {
    right: 0.5em;
    margin-left: -50%;
}

.pros-title:after {
    left: 0.5em;
    margin-right: -50%;
}

.cards-content {
    border: 0.5px solid var(--blue);
    border-radius: 10px;
    min-height: 320px;
    height: 100%;
}

.cards-text {
    font-size: 21px;
    line-height: 1.5;
}

.cards-link {
    position: relative;
}

.cards-link:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    border-bottom: 0.5px solid var(--blue);
    height: 0.5px;
    width: 100px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

a.cards-link:hover::before {
    content: '';
    border-bottom: 0.5px solid var(--green);
}

/*  - 3b. Responsive Videos & YouTube */
.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow:
        hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    box-shadow: 0px 17px 5px -10px rgba(0, 0, 0, 0.5);
}

.video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

.video-responsive video {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
}

/*  - 3c. YouTube Playlist */
#ypt_wrapper {
    width: 100%;
    background: #131313;
    color: #fff;
    overflow: hidden;
    max-width: 100%;
}

#ypt_thumbs div {
    list-style: none;
    margin: 0;
    position: relative;
    font-size: 0;
}

#ypt_thumbs div::after {
    content: "\25b6";
    display: block;
    width: 100px;
    background: rgba(0, 0, 0, 0.6);
    position: absolute;
    font-size: 30px;
    text-align: center;
    color: #215aa8;
    height: 70px;
    border-radius: 20%;
    line-height: 70px;
    margin-left: calc(50% - 50px);
    bottom: calc(50% - 35px);
    pointer-events: none;
}

#ypt_thumbs div.ypt-now-playing::after {
    display: none;
}

#ypt_thumbs div img {
    width: 100%;
}

#ypt_thumbs div p {
    font-family: arial;
    font-size: 10px;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 5%;
    margin: 0;
}

#ypt_thumbs div:hover p {
    display: block;
    cursor: pointer;
}

#ypt_thumbs .ypt-now-playing p {
    display: block;
}

#ypt_thumbs .ypt-now-playing span::after {
    content: "\25b6  Now playing";
    /* A traingle pointing right */
    margin-top: -1em;
    display: block;
    width: 100%;
    padding: 5%;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    position: absolute;
    bottom: 0;
    font-size: 10px;
}

#ypt_wrapper .video {
    position: relative;
    width: 100%;
    padding-bottom: 48.4%;
    float: left;
}

#ypt_wrapper .video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    float: left;
}

/*  - 3d. Video Background */
#video-bg {
    position: absolute;
    /* width: auto; */
    width: 100;
    /* height: auto; */
    height: 100%;
    min-width: 100%;
    background-position: center center;
    background-size: cover;
    object-fit: cover;
}

video {
    display: block;
}

.video {
    position: relative;
    overflow: hidden;
}

.video-container {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    top: 0;
    right: 0;
    z-index: -100;
}

.video-bg-content {
    padding-top: 10vw;
    padding-bottom: 10vw;
}

/*  - 3e. Forms */
input::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #909090;
    text-align: center !important;
    font-size: 12px;
}

input::-moz-placeholder {
    /* Firefox 19+ */
    color: #909090;
    text-align: center !important;
    font-size: 12px;
}

input:-ms-input-placeholder {
    /* IE 10+ */
    color: #909090;
    text-align: center !important;
    font-size: 12px;
}

input:-moz-placeholder {
    /* Firefox 18- */
    color: #909090;
    text-align: center !important;
    font-size: 12px;
}

.gform_wrapper.gravity-theme input {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 34px;
    color: #909090;
    height: 38px;
    border-radius: 5px;
    background: var()--offWhite;
    border: 0.5px solid var(--blue);
    text-align: center;
}

.gform_wrapper.gravity-theme input.gform_button {
    font-family: 'proxima-nova', sans-serif;
    font-weight: 900;
    font-size: 15px;
    line-height: 20px;
    text-align: center !important;
    color: #fff;
    border-radius: 5px;
    background: var(--blue);
    border: 0.5px solid var(--blue);
    height: 45px;
    padding: 5px 50px;
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
}

.gform_wrapper.gravity-theme input.gform_button:hover,
.gform_wrapper.gravity-theme input.gform_button:focus,
.gform_wrapper.gravity-theme input.gform_button:active {
    background: var(--green);
    border: 0.5px solid var(--green);
    color: #fff;
}

/*  - 3f. Social Icons */
footer .social-links a {
    background: #fff;
    border-radius: 50px;
    height: 30px;
    width: 30px;
    padding: 7px;
}