/*
Theme Name:     Enlightenvue Genesis child theme 3.0 New
Description:    This is a child theme of Genesis
Author:         Golin Web Design
Template:       genesis

(optional values you can add: Theme URI, Author URI, Version)
*/

/* @import url("../genesis/style.css");  Use code below for genesis 3.x */
@import url("style-genesis-sample-3-2.css");


/* ## Headings and Fonts
--------------------------------------------- */

/* colors */
/**** colors ****/
:root {
--red: #e60048;
--gray: #685f5c;
--dark_gray: #1e3231;
--light_gray:#f6f6f6;
--light_blue: #4595d2;
--dark_blue:#001b5a;
}

h2,
h3,
h4,
h5,
h6 {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	line-height: 1.3;
	margin: 0 0 15px;
}

h1, h1.entry-title {
	font-family: 'Lato', sans-serif;
	font-size: 36px;
	font-weight: normal;
	margin-bottom:35px;
}

h2, h2.entry-title  {
	font-size: 36px;
	color:var(--red);
	font-weight:normal;
	line-height:42px;
}

h3 {
	font-size: 24px;
	color:var(--gray);
}

h4 {
	font-size: 20px;
	color:var(--dark_gray);
}
body > div {
    font-family: 'Lato', sans-serif;
	font-size: 24px;
	font-weight: normal;
    color:var(--gray);
    line-height:1.5em;
}
p {
	margin-bottom:1.2em;
    font-family: 'Lato', sans-serif;
	font-size: 24px;
	font-weight: normal;
    color:var(--gray);
    line-height:1.5em;
}
a, a:visited, .entry-title a, a:hover {
	color:var(--light_blue);
}
a, a:visited, .entry-title a {

	/* -webkit-tap-highlight-color: transparent; use this if you don't want a tap color feedback */
}
a:hover, .entry-title a:hover {
	text-decoration:underline;
}
a:active {
    outline:none;
	/*-moz-outline-style: none; not sure if I need this too  */
}

/* image captions */
.wp-caption-text {
	font-weight: normal;
	font-size: 13px;
	font-family: "Lato", sans-seric;
}

/********** Page Layout **********/

/* set site width, header width and nav width*/
.content-sidebar-wrap, .site-header .wrap, .nav-primary .wrap, .site-inner, 
.site-footer .wrap, .footer-widgets .wrap {
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto; 
}
.site-header, .site-inner, .site-footer, .footer-widgets {
    padding-left:50px;
    padding-right:50px;
    max-width:100%;
}
.footer-widgets {
    max-width:100%;
}

.site-inner .page  {
    margin-bottom:0 !important;
}
.site-inner {
    padding-top:0;
}
/********* header settings *************/
.site-header {
    	box-shadow:none;
    	position:relative;
}
.site-header .wrap {
	margin-top:30px;
	margin-bottom:30px;
}
.site-title {
	display:none;
}
/**** for menu aligned to the right of logo */
.title-area {
    width:100%;
    display:flex;
    align-items:center;
}
/* set dimensions of logo */
.logo {
	max-width:300px;
	height: auto;
	order:1;
	}
/* reduce space bewteen content and footer */
.page .entry {
	margin-bottom:20px;
}
.content {
	float: none;
	width: 100%;
	}

/********** navigation ****************/	
/* move main menu to right of logo */

.nav-primary {
    order:2;
    width:calc(100% - 300px);
}
.nav-primary .wrap {
    margin-top:0;
    margin-bottom:0;
}
.nav-primary .genesis-nav-menu {
   text-transform:uppercase;
   display:flex;
   justify-content:flex-end;
}
.nav-primary .menu-item {
    float:left;
}
/* remove sub-menu arrow indicator */
.nav-primary .sf-sub-indicator {
    display:none;
}
.nav-primary .genesis-nav-menu a {
	 padding:15px 15px 15px 5px;
}
.genesis-nav-menu li a {
	 color:var(--gray);
	 text-decoration: none;
	 font-family: "Lato", sans-serif;
     font-size:14px;
     font-weight: 700;
}
.genesis-nav-menu li a:hover {
	 color:var(--dark_blue);
	 font-weight:900;
	 text-decoration:underline;
	 text-underline-offset: 8px;
     text-decoration-color: var(--red);
     text-decoration-thickness: 5px;
}

/* submenu width */
.genesis-nav-menu .sub-menu{
	position:absolute !important;
	width:180px;
}
/* put a line between main menu items */


/**** add line between menu items ****/
.genesis-nav-menu li:not(:last-child) a::after {
    content:" ";
    margin-left:20px;
    margin-bottom:-3px;
    height: 16px;
    width: 2px;
    background-color: var(--gray);
    display: inline-block;
}

.genesis-nav-menu .sub-menu li a:after {
    display:none;
}

.genesis-nav-menu ul.sub-menu li a {
	text-transform:capitalize;
	font-size: 16px !important;
	padding-top:0px !important;
	font-family:'Lato', sans-serif;
	color:var(--gray);
	border:none;
	text-decoration:none;
	font-weight:bold;
	}
.genesis-nav-menu ul.sub-menu li a:hover, .genesis-nav-menu .sub-menu .current-menu-item a {
    font-weight:900;
    color:var(--dark_blue) !important;
}
/* submenu background color */
.genesis-nav-menu ul.sub-menu, .genesis-nav-menu ul.sub-menu li a {
	background-color:var(--light_gray);
	}
.genesis-nav-menu ul.sub-menu {
	border:none;
	padding-top:15px;
	padding-bottom:5px;
}
/* color of current menu item */
.genesis-nav-menu .current-menu-item a, .genesis-nav-menu .current-menu-parent a {
	 color:var(--dark_blue);
	 font-weight:900;
	 text-decoration:underline;
	 text-underline-offset: 8px;
     text-decoration-color: var(--red);
     text-decoration-thickness: 5px;
}
.genesis-nav-menu .sub-menu .current-menu-item a {
     color:var(--dark_blue);
	 font-weight:900;
}
.genesis-nav-menu li:not(.current-menu-item):not(.current-menu-parent) a, .genesis-nav-menu .sub-menu li:not(.current-menu-item) a {
	color:var(--gray);
}


/********** homepage ***********/
/* don't display page title */
h1.entry-title {
	display:none;
}
.home-hero {
    background-image:url("/wp-content/uploads/ev_bar1_hero-scaled.jpg");
    background-position:center;
    background-size:cover;
}
.home-hero {
    min-height:380px;
    display:flex;
    align-items:center;

}
.home-hero p, .home-hero h2, .home-hero h3 {
    color:#fff;
}
.home-hero-text {
    max-width:650px;
    margin-bottom:0 !important;
}

.home-hero h3 {
    font-size:27px;
    font-weight:normal;
    padding-bottom:20px;
    border-bottom: 2px solid #fff;
    margin-bottom:20px;
}
.home-hero a {
    font-size:20px;
    font-weight:bold;
}
/**** style bullets as arrows ******/
.home-benefits ul li {
     position: relative;
     list-style-type: none;
     margin-bottom:10px;
     padding-left:15px;
}
.home-benefits ul {
    padding-left:25px;
}
.home-benefits ul li::before {
    content: url('/wp-content/uploads/ev_bar3_arrow-25x25-1.png');
    position: absolute;
    left: -20px;
    top: 4px;
}
.home-benefits-image {
    background-image:url("/wp-content/uploads/ev_bar3_productgrayback-scaled.png");
    background-size:cover;
}
.device-image {
    max-width:1250px;
}
.home-markets-icon img {
    width:180px;
}
.home-team-headshot {
    max-width: 225px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0 !important;
}
.home-team-name p {
    font-size:18px;
}
.home-team-name a {
    color:var(--gray);
    text-decoration:underline;
}
.home-downloads {
    display:flex;
    flex-wrap:wrap;
}
.home-downloads .wpb_column {
    width:25%;
}
.home-downloads .wpb_column:not(:last-of-type) {
    padding-right:30px;
}
.home-downloads ul li {
     position: relative;
     list-style-type: none;
     margin-bottom:10px;
     padding-left:5px;
}
.home-downloads ul li a {
    font-size:20px;
    line-height:28px;
    display:inline-block;
}
.home-downloads ul {
    padding-left:20px;
}
.home-downloads ul li:before {
    content: '';
    position: absolute;
    left: -15px;
    top: 14px;
    width: 8px;
    height: 8px;
    border-radius:50px;
    background-color: var(--light_blue);
}
.home-downloads h4 {
    font-weight:900;
    font-size:20px;
    margin-top:0;
}
.home-value-summary {
    background-image:url('/wp-content/uploads/ev_bar6_img-scaled.jpg');
    background-size:cover;
    min-height:550px;
    background-position:right;
    
}
.home-value-summary p {
    color:#fff;
    font-size:27px;
    max-width:1000px;
    margin-left:auto;
    margin-right:auto;
}
/***** secondary pages *********/
/* limit content area to 850px 
body:not(.home) .content {
	max-width: 850px !important;
	padding-top:50px;
	padding-left: 5%;
	padding-right: 5%;
	margin-left: auto;
	margin-right: auto;
}
*/
.banner-container {
    position:relative;
    height:112px;
    width:100%;
    background-image:url("/wp-content/uploads/ev_subpage_hero-scaled.png");
    background-size:cover;
}

.title-container {
    max-width:1400px;
    margin-left:auto;
    margin-right:auto;
    height:112px;
    padding-left:50px;
    width:100%;
}
.subpage-title {

}
.subpage-title h1 {
    color:#fff;
    font-size:36px;
    margin-bottom:0;
    position:absolute;
    bottom:10px;
}
  

/*** posts ****/
/* size headers on archive pages */
body.archive h2.entry-title a, body.archive h2.entry-title {
	font-family: "Lato", sans-serif;
	font-size:24px;
	font-weight: bold;
	margin-bottom:15px;
	}
a.moretag, a:visited.moretag, a:hover.moretag {
	color:#6ebae4 !important;
	font-size:14px;
	font-family:"Lato", sans-serif;
}
/* hide "continue reading because we added readmore */
.post .post-more {
	display:none;
}
/* hide comments on custom post types */
#comments {
	display:none;
}
/**** cutsom post loop pagination *****/
/*** make pagination lineup horizontally **/
.pagination li {
	float:left;
	margin-left:5px;
}
/* set page nav color */
.pagination li a {
	color:#13acd3;
    background-color:#fff;
}
 
/* set achive page nav color */
.pagination li.active a, .pagination li a:hover {
	color:#0b6981; 
    background-color:#fff;
}
/* add flexbox to center pagination */
.pagination {
	padding-bottom:50px;
	display:flex;
	justify-content: center;
}
/******* footer ************/
/********** basic footer setting *********/
/* remove genesis gototop */
.site-footer .gototop {
	display:none;
}
.site-footer {
    border-top:0px;
    background-color:var(--dark_blue);
    padding-bottom:55px;
}
.site-footer p {
    font-size:16px;
    text-align:left;
    color:#fff;
}
/*
.footer-widgets .wrap, .site-footer .wrap {
	padding-top:25px;
	padding-bottom:25px;
	max-width: 1400px;
	margin-left:auto;
	margin-right:auto;
}
*/
.footer-widgets {
	/* set background color and add paint splash images */
	background-color:var(--dark_blue) !important;
	padding-bottom:0;
}
.footer-widget-area {
    padding-left:0;
    padding-right:0;
}
/* 2 Footer widgets */
.footer-widgets .footer-widgets-1 {
	width:200px;
	float:left;
}
/* This is the footer widget with menu */
.footer-widgets .footer-widgets-2 {
	width:calc(100% - 200px);
	float:left;
}
/* dont display the menu for now */
.footer-menu-link {
    display:none;
}

.footer-widgets-1  .widget_media_image {
    margin-bottom:5px;
}
.footer-widgets p, .footer-widgets a {
	font-family: "Lato", sans-serif;
	color:#fff;
	font-size:16px;
	text-decoration:none;
}
.footer-menu-link {
    margin-right:45px;
}
.footer-menu {
    float:right;
    display:flex;
    flex-wrap:wrap;
    margin-top:8px;
}
.footer-menu img {
    width:30px;
    margin-top:6px;
}
@media only screen and (max-width:1100px) {
	.home-downloads .wpb_column {
	    width:50%;
	}
} /* 1100 */
@media only screen and (max-width:1060px) {
    /* don't need to do this if we're not displaying the menu 
    .footer-widgets .footer-widgets-1, .footer-widgets .footer-widgets-2 {
        width:100%;
    }
    .footer-widgets-1 img {
        width:200px;
    }
    .footer-menu {
        float:left;
        margin-top:25px;
    }
    .footer-menu-link {
        margin-right:30px;
    }
    */
    .footer-widgets-1 {
        margin-bottom:0;
    }

}/* 1060 */
@media only screen and (max-width:1000px) {
	/* switch to mobile menu */
	.nav-primary {
		display:none;
	}
	/* reposition mobile button and social icons */
	button#responsive-menu-button {
		top:45px !important;
	}
	.home-growing-opportunity .wpb_column {
	    width:100%;
	    max-width:800px;
	}
	.home-growing-opportunity {
	    margin-bottom:35px;
	}
	.home-growing-opportunity .vc_row.vc_row-flex {
	    flex-wrap:nowrap;
	}
	.home-growing-opportunity .vc_row.vc_row-flex .wpb_column:first-of-type {
		    max-width:100px;
	}
	.home-growing-opportunity .vc_row.vc_row-flex .wpb_single_image {
	    margin-bottom:0;
	}
	.home-growing-opportunity .vc_row.vc_row-flex .wpb_text_column {
	    margin-bottom:0;
	}
} /* 1000 */
@media only screen and (max-width:900px) {

		
} /* 900 */

@media only screen and (max-width:767px) {
	.site-inner, .site-header, .site-footer, .footer-widgets, .title-container {
        padding-left:4%;
        padding-right:4%;
    }
    .home-benefits-list-1 {
        margin-bottom:0 !important;
    }
    .home-benefits-list-2 {
        margin-top:-25px;
    }
    .home-downloads .wpb_column {
	    width:100%;
	    padding-right:0;
	}
}/* 767 */

@media only screen and (max-width:550px) {
    .site-inner, .site-header, .site-footer, .footer-widgets {
        padding-left:5%;
        padding-right:5%;
    }
    .subpage-title h1 {
        font-size:30px;
        line-height:38px;
    }
	
} /* 550 */
@media only screen and (max-width:500px) {
    .home-value-summary p {
        font-size:24px;
        line-height:32px;
    }
    .benefits-text {
        margin-bottom:10px;
    }
} /* 500 */
@media only screen and (max-width:450px) {
 /* Not needed if there is no menu
    .logo {
        margin-top:20px;
    }
*/
    .title-area {
        padding-bottom:10px;
        padding-top:10px;
    }
	
} /* 450 */
@media only screen and (max-width:400px) {
    .home-hero {
        min-height:440px;
    }
    .home-hero h2 {
        font-size:36px;
        line-height:42px;
    }
    h2 {
        font-size:32px;
        line-height:40px;
    }
} /*400 */