/*
 Theme Name:   New Press Starter Theme
 Theme URI:    https://generatepress.com
 Description:  New Press Web Design starter theme (A GeneratePress child theme)
 Author:       GaryG
 Author URI:   https://newpress.com
 Template:     generatepress
 Version:      1.0
*/

/* ------------------------------------------- */
/*  SEE CODBOX FOR PRIMARY CSS  */
/* ------------------------------------------- */

/* Push the footer to the bottom of the page */
body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
	color: #333;
}
.site-footer {
    margin-top: auto;
}
.site-footer a {
	text-decoration: none;
}
/* ------------------------------------------- */

ul {
	list-style: none;
}
.main-navigation {
    background-color: #b3afa4;
    padding: 10px;
    width: 100%;
}
#primary-menu {
    background-color: #b3afa4 !important;	
	border-bottom: 7px solid #5e9fce;
}
#primary-menu a {
	color: #AE2C2E;
	font-size: 16px;
	text-transform: lowercase;
	font-family: Georgia, Times, "Times New Roman", serif;
	font-style: normal;
	font-weight: 400;
	letter-spacing: 1px;
	margin-top: -5px;	

}
header {
	display:none;
}
.entry-title-div {
	width: 100%;
	max-width: 1160px;
	margin: 0 auto;
}
h1 {
    font-family: Oswald, sans-serif;
    font-weight: 200;
    text-decoration: none;
    font-size: 36px;
    letter-spacing: .1em;
    line-height: 1.2em;
	padding-top: 20px;
}
/* --------------------------------------------*/
/*  Media */
/*------------- PARENT MEDIA  ------------------------ */
.add-border {
    border-bottom: 1px solid antiquewhite;
}
.parent-media-wrapper {
    max-width: 1020px;
}
.item-media-wrapper {    
    margin-bottom: 20px;
    border-bottom: 1px solid antiquewhite;
}

.bottom20 { padding-bottom: 20px; }  /* apply to item-media-wrapper conditionally */

.parent-media {
    margin-bottom: 20px;
}
.parent-image {
    float: left;
    margin-right: 30px;
}
.parent-text {
    margin: 0;
    min-height: 150px;
}
.segment-title {
    padding-top: 20px;
    clear: both;
}
.segment-title p {
    margin-bottom: 0;
        font-weight: 600;
}
.segment-title p a {
        font-weight: 300;
        padding-left: 6px;
}
figcaption {text-align: center;}

.parent-title {
    font-size: 1.2em;
    font-weight: 600;
    margin-bottom: 10px;
}

.parent-image img {
    width: 200px;
    height: auto;
    border-radius: 8px;
}

.section-title {
    font-size: 36px;
    margin: 20px;
    font-family: oswald;
    font-weight: 300;
}
.insight-list {
    clear: both;
    padding-top: 12px;
}
.insight-list p {
    font-size: .9em;
    margin-bottom: 0;
}
/* tooltips ------------------------ */
@media (min-width: 1020px) { 
	[data-title]:hover:after {
		opacity: 1;
		transition: all 0.1s ease 0.5s;
		visibility: visible;
	}
}
[data-title]:after {
    content: attr(data-title);
    position: absolute;
    bottom: -1.6em;
    left: 100%;
    padding: 4px 4px 4px 8px;
    color: #222;
     font-size: .9em;
    -moz-border-radius: 5px; 
    -webkit-border-radius: 5px;  
    border-radius: 5px;  
    -moz-box-shadow: 0px 0px 4px #222;  
    -webkit-box-shadow: 0px 0px 4px #222;  
    box-shadow: 0px 0px 4px #222;  
	background: beige;
	width: 450px;
    opacity: 0;
    z-index: 99999;
    visibility: hidden;
}
[data-title] {
    position: relative;
}



