/* Color Variables */

:root {

	--subscribe-button: #ef514d;
	--subscribe-button-active: red;
	--subscribe-button-text: white;
	--subscribe-button-active-text: white;

	--exitpop-button: #ef514d;
	--exitpop-button-hover: red;
	--exitpop-button-text: white;
	--exitpop-button-hover-text: white;


	--eyebrow-background: #ef514d;
	--header-background: ;										/* Add color value if you want a different header background */
	--footer-background: ;										/* Add color value if you want a different header background */

	--section-h3: black;
	--section-h4: black;

	--primary: #27a69a;
	--secondary: #ef514d;

	}

	html,
	body {
		background-color: white;
		width: 100%;
		height: 100%;
		margin: 0;
		padding: 0;
		/*background-image: url("");							/* Add image URL if you want one */
  		background-size: cover;
    	background-position: center center;
    	background-repeat: no-repeat;
    	background-attachment: fixed;
	}

/* Headline Styles */

	.eyebrow h3 {
		font-family: 'Open Sans', sans-serif;
		font-size: 1.4em;
		font-weight: 500;
		line-height: 1.2em;
		letter-spacing: 0;
		text-align: center;
		color: white;
		margin-bottom: 0;
		transition: all 0.2s;
	}

	h1.headline {
		font-family: 'Open Sans', sans-serif;
		font-weight: 800;
		font-size: 4em;
		line-height: 1em;
		letter-spacing: 0;
		text-align: center;
		max-width: 800px;
		margin: .25em auto;
		color: black;
		transition: all 0.2s;
	}

	h2.subhead {
		font-family: 'Open Sans', sans-serif;
		font-weight: 400;
		font-size: 2em;
		letter-spacing: 0;
		max-width: 900px;
		margin: .5em auto;
		text-align: center;
		color: grey;
		transition: all 0.2s;
	}
	h3.subhead {
		font-family: 'Open Sans', sans-serif;
		font-weight: 400;
		font-size: 1.8em;
		letter-spacing: 0;
		max-width: 900px;
		margin: .5em auto;
		text-align: center;
		color: grey;
		transition: all 0.2s;
		padding: 0 5%;
	}



/* Universal Styles */

	p {
		font-family: 'Open Sans', sans-serif;
		font-size: 1.2em;
		line-height: 1.4em;
		margin: 1em 0;
		color: black;
		font-weight: 400;
	}

	a {
		color: var(--primary);
		font-weight: 600;
	}
	a:hover {
		color:  var(--secondary);
	}

	strong {
		font-weight: 800;
	}
	

	.center {
		text-align: center;
	}

	

/* Quote Styles */	
	
	/* The Main Quote Block */
	blockquote {
		position: relative;
		font-family: 'Open Sans', sans-serif;
		font-size: 1.4em;
		text-align: center;
		color: black;
		width: 90%;
		margin: 1em auto !important;
		padding: 1.5em!important;
		background-color: #e1ecf1;
		border-radius: .25rem;
		transition: all 0.2s;
	}

	/* The Byline Style */
	cite {
		position: relative;
		display:block;
		margin: 2em 0 0 0;										/* Adjust top margin depending on how much space you want above byline */
		font-size: .8em;
		font-weight: 700;
		text-transform: uppercase;
		font-style: normal;
		color: black;
	}
		cite::before {											/* Comment this pseudo-element if you don't want a line above byline */
		position: absolute;
		content: '';
		left: calc(50% - 100px);								/* A calculation to center the line at 50% of half the width */
		top: -.5em;												/* How high we want the line from the byline */
		width: 200px;											/* Width of line above the byline */
		border-top: 3px solid var(--secondary); 				/* Change this color to your liking, or use the variables above */
	}

/* List Styles */

	ul {
	padding: 0 0 0 1.5em;
	margin: 1.5em 0;
	list-style: none;
	}

	li {
		font-family: 'Open Sans', sans-serif;
		font-weight: 400;
		font-size: 1.2em;
		color: black;
		display: block;
		position: relative;
		padding-left: 1.5em;
		margin-bottom: 1em;
		transition: all 0.2s;
	}

	li::before {
		position: absolute;
		content: '\2714';										/* Use <img> or HTML Entity: https://www.toptal.com/designers/htmlarrows/ */
		top: 0;													/* Vertical position of content */
		left: -1em;												/* Negative left alignment so it is to the left of the <li> */
		background-color: var(--primary);
		font-weight: 800;
		font-size: .75em;										/* Can be smaller relative to the <li> font-size */
		padding: .25em .5em;									/* To make the box appear square/circle this will have to be adjusted */
		border-radius: 25%;										/* How circular you want the box: 50% for circle */
		color: white;
		transition: all 0.2s;
	}

/*  Ordered List Style with COOL numbers */

	ol {
		display: block;
		list-style: none;
		counter-reset: ol;										/* Resets the counter at every new <ol> selector */
		padding: 0 0 0 1.5em;
		margin: 1.5em 0;
	}

	ol li {
		counter-increment: ol;
	}

	ol li::before {
		position: absolute;
		content: counter(ol);
		top: -.1em;												/* Can be a negative number depending on font-size */
		left: -1em;												/* Negative left alignment so it is to the left of the <li>  */
		background-color: var(--primary);
		font-weight: 800;
		font-size: .8em;										/* Changing this size will affect the top and padding options */
		padding: .25em .65em;									/* To make the box appear square/circle this will have to be adjusted */
		border-radius: 25%;										/* How circular you want the check box: 50% for circle */
		color: white;
		transition: all 0.2s;
	}


/* Layout Styles */

	.eyebrow {
		width: 100%;
		background: var(--eyebrow-background);
		padding: 10px 5% 10px 5% !important;
		margin-bottom: 0 !important;
	}

	header {
		width: 100%;
		padding: 0 5%;
		background-color: var(--header-background);
	}

	#page-content {
	  	flex: 1 0 auto;
	 	margin-bottom: 1em;
	}

	#transcript {
		display: none;
	}
	@media screen and (max-width: 768px) {
		#transcript  {
			display: block;
		}
	}

	article {
		margin: 1em auto;
		max-width: 850px;
		padding: 0 2em;											/* Use .25em top/down margin if using non-white background */
		position: relative;
		background-color: white;
		text-align: left;
	}

	.maintranscript {
		/*border: 1px solid grey;*/								/* Uncomment if you want a border */
		/*box-shadow: 0 2px 10px #d9d9d9;*/						/* Uncomment if you want a blur shadow */
	border-top: 1px solid grey;
	}

	#sticky-footer {
	  flex-shrink: 0;
	}

	footer {
		width: 100%;
		background-color:var(--footer-background);
	}	




/* Button Styles */

	.button {
		margin: 2em auto;
		text-align: center;
	}

	




/* Sections Styles */

	.intro {
		margin-top: 2em;
	}

	.second {
			margin-top: 4em;
			/*border-top:1px solid rgba(180,180,180,1);         /* Unide if you want sections to have a top rule */
		}
		.second h3 {
			margin: .5em auto;
			text-align: center;
	        font-family: 'Open Sans' , sans-serif;
	        color: var(--section-h3);
	        font-size: 3.5em;
	        font-weight: 800;
			letter-spacing: 0;
			transition: all 0.2s;
        }
		.second h4 {
			margin: .5em auto;
			text-align: center;
	        font-family: 'Open Sans' , sans-serif;
	        color: var(--section-h4);
	        font-size: 2.5em;
	        font-weight: 800;
			letter-spacing: 0;
			transition: all 0.2s;
        }

	.legal-date {
    	font-size: 1em;
    	color: grey;
    	font-weight: 700;
    }



/* Side Column Quote Template */	

	/* Wrap the text and quote in this container */	
	.side-flex {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: center;
  		align-items: center;
  		/*border: 1px solid grey;								/* Unhide if you want the whole box to have a border */
	}

	/* Side-Flex Headline to use in guarantee images or similar graphics */	
	.side-flex h4 {
		background: var(--primary);
		width: 100%;
		color: white;
		padding: .25em;
		margin: 0 auto;
	}

	/* Normal content goes in this container and takes up the remaining 60% */	
	.side-content {
		width: 60%;
		transition: all 0.2s;
		padding: 1em;
	}

	/* Image content goes in this container and takes up the remaining 40%*/	
	.side-image {
		width: 40%;
		transition: all 0.2s;
	}

	/* Quote goes inside this class and takes up 40% of the container (accounts for padding) */	
	.side-quote {
		background: var(--primary);
		width: 36%;
		margin: 0 0 0 4%;
		vertical-align: justify;
		padding: 1.5em;
		transition: all 0.2s;
	}
	.side-quote p {
		color: #fff;
		font-weight: 600;
	}


/* Figure Styles for Full width Images */

	figure {
		margin: 2em auto !important;
		transition: all 0.2s;
	}

	img {
		max-width: 100%;
	}

	figcaption {
		display: block;
		text-align: center;
		font: .95em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
		color: #777;
		margin-top: 1em;
	}

	figure.eighty {width:90%;}
	figure.sixty {width:60%;}
	figure.thirty {width:20%;}


	.signature {
		max-width: 250px
	}

/* Images that FLOAT on Desktop */

	.small-image {
		max-width: 25%;
		float: right;
		clear: both;
		padding: .5em 0 .5em .5em;
		transition: all 0.2s;
	}

	.medium-image {
		max-width: 40%;
		float: right;
		clear: both;
		padding: 1em 0 1em 1em;
		transition: all 0.2s;
	}

	.large-image {
		max-width: 60%;
		float: right;
		clear: both;
		padding: 1em 0 1em 1em;
		transition: all 0.2s;
	}

	.headshot {
		padding: 0 0 .5em .5em;
	}

/* Content that needs to be Flex Wrapped depending on number of colunns */

	.flex-wrap {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
	}

	.two-column {
		width: calc(50% - 1em);
		transition: all 0.2s;
	}

	.three-column {
		width: calc(33% - 1em);
		transition: all 0.2s;
	}


/* Webinar Styles */

	
	.host {
		position: absolute;
		left: 20px;												/* sets distance between box and paragraph: higher number = closer distance */
		transform: translate(-100%, 0); 						/* flush the box left 100% regardless of how long the name is */
	  	background: var(--primary);
		padding: 3px 8px;
		margin: 5px 0;
		border-radius: 5px;
		color: white;
		font-size: .9em;
		font-weight: bold;
		text-transform: uppercase;
	}

	.guru {
		position: absolute;
		left: 20px;												/* sets the distance between the box and the paragraph */
		transform: translate(-100%, 0); 						/* flush the box left 100% regardless of how long the name is */
	 	background: var(--secondary);
		padding: 3px 8px;
		margin: 5px 0;
		border-radius: 5px;
		color: white;
		font-size: .9em;
		font-weight: bold;
		text-transform: uppercase;
	}

/* Mobile Transcript Link Style */

	.mobileTranscriptLink {
	    color: blue;
	    font-weight: bold;
	    text-decoration: underline;
	}


/* Footer Styles */

	#legal {
		max-width: 1000px;
		padding: 2em 2.5%;
		margin: auto;
		box-sizing: border-box;
	}

	#legal p {
		text-align: justify;
		font: .85em/1.4em "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
		margin: 0px auto;
		color: rgba(125, 125, 125, 1);
		margin-bottom: .5em;
	}

	#legal a {
		font-weight: normal;
		color: blue;
	}

	.legaldate {font-weight: bold};



/* MEDIA QUERIES */

	@media screen and (max-width: 1024px) {

		.host {
			display: inline-block;
			transform: translate(0);
			position: relative;
			float:left;
			margin: 0 10px 0 0;
			left: 0;
		}

		.guru {
			display: inline-block;
			transform: translate(0);
			position: relative;
			float:left;
			margin: 0 10px 0 0;
			left: 0;
		}

	}

	@media screen and (max-width: 768px) {

		.eyebrow {
			padding: 10px !important
		}
		.eyebrow h3 {
			font-size: 1.2em
		}

		h1.headline {
			font-size: 3em
		}

		h2.subhead {
			font-size: 1.4em
		}

		h3.subhead {
			font-size: 1.2em
		}

		p {
			font-size: 1.2em
		}

		li {
			font-size: 1.2em
		}

		blockquote {
			font-size: 1.2em;
		}

		article {
			max-width: 100%;
			margin:  0 auto;
		}
		.maintranscript {
			padding: 2% 5%;
		}
		.second h3 {
			font-size: 2.5em;
		}
		.section h4 {
			font-size: 2em;
		}

		figure {
			margin: 1.5em auto !important;
		}

		.small-image {
			float: none;
			display: block;
			margin-top: 1em;
			margin-bottom: 1em;
			margin-left: auto;
			margin-right: auto;
			max-width: 40%;
			padding: 0
		}
		.medium-image {
			float: none;
			display: block;
			margin-top: 1em;
			margin-bottom: 1em;
			margin-left: auto;
			margin-right: auto;
			max-width: 60%;
			padding-right: 3em
		}
		.large-image {
			float: none;
			display: block;
			margin-top: 1em;
			margin-bottom: 1em;
			margin-left: auto;
			margin-right: auto;
			max-width: 80%;
			padding-right: 3em
		}
		.headshot {
			max-width: 35%;
			float: right;
			padding-left: 2em;
			margin: .5em auto
		}

		#legal p {
			font-size: .8em;
		}
	}

	@media screen and (max-width: 425px) {

		.eyebrow h3 {
			font-size: 1.2em;
		}
		h1.headline {
			font-size: 2.5em;
		}

		h2.subhead {
			font-size: 1.2em;
		}
		h3.subhead {
			font-size: 1.2em;
			line-height: 1.2em;
		}

		#video {
			margin-top: 15px;
			margin-bottom: 15px;
		}

		.button {
			margin: 1em auto;
		}
		a.subscribeButton {
			display: block;
			padding: .75em;
			font-size: 1.2em;
			line-height: 1.2em;
			margin: 0 5%;
		}

		blockquote {
			width: 100%;
		}

		ul {
			padding: 0 0 0 1em;
		}
		ol {
			padding: 0 0 0 1em;
		}

		.col-lg-12 {
			padding-right: 0;
			padding-left: 0;
		}

		.maintranscript {
			border: 0;
			box-shadow: 0 0 0;
		}

		.intro {
			margin-top: .5em;
		}

		.second {
			margin-top: 2em;
		}

		.second h3 {
			font-size: 2em;
		}
		.second h4 {
			font-size: 1.5em;
		}

		.side-content {
			width: 100%;
		}
		.side-image {
			width: 100%;
		}
		.side-quote {
			width: 100%;
			margin: .5em auto;
		}

		figure {
			width: 100% !important;
		}

		.large-image {
			max-width: 100%;
			padding: 0;
			margin: 1em auto
		}
		.small-image {
			max-width: 100%;
			padding: 0;
			margin: 1em auto
		}
		.medium-image {
			max-width: 100%;
			padding: 0;
			margin: 1em auto
		}
		.headshot {
			display: none
		}


		.two-column {
			width: 100%;
		}

		.three-column {
			width: 100%;
		}

		#legal p {
			font-size: .6em;
		}
	}

	@media screen and (max-width: 375px) {

	}





	/* RESPONSIVE EXITPOP CSS */

	/* Super Large Screens */
	@media screen and (min-width: 1800px) {
		#pop-overlay-container, #clickpop-overlay-container {
			width: 30%;
		}
	}

	/* Smaller Laptops */

	@media screen and (max-width: 1024px) {
		#pop-overlay-container, #clickpop-overlay-container {
			width: 70%;
		}
	}

	/*Tablets */
	@media screen and (max-width: 768px) {
		#pop-overlay-container, #clickpop-overlay-container {
			width: 80%;
		}

		#pop-overlay-content p {
			font-size: .9em
		}

		#pop-overlay-button-container {
			display: block !important;
		}

		a#exitpopplay,
		a#exitpopread,
		a#exitpopform {
			display: block !important;
			width: 100% !important;
			margin: 1em auto !important;
			font-size: .9em;
			line-height: 1.2em
		}

	/* Mobile Devices */
	@media screen and (max-width: 425px) {
		#pop-overlay-container, #clickpop-overlay-container {
			width: 90%;
		}

		#pop-overlay-content {
			padding: 1em;
			border-radius: 0;
		}

		#pop-overlay-content h1 {
			margin-top: 1em;
			font-size: 1.6em;
		}
		#pop-overlay-content h2 {
			margin-top: 1em;
			font-size: 1.4em;
		}
		#pop-overlay-content h3 {
			margin-top: 1.5em;
			font-size: 1.2em;
		}


		#pop-overlay-content p {
			font-size: .8em
		}

		a#exitpopplay,
		a#exitpopread,
		a#exitpopform {
			font-size: .8em;
		}

		.EmailSubmit {
			font-size: 1rem;
		}

		.disclaimer {
			font-size: .6em;
		}
	}

	/* Small Mobile Divices */
	@media screen and (max-width: 375px) {
		.EmailSubmit {
			font-size: .9rem;
		}
	}
	@media screen and (max-width: 325px) {
		.EmailSubmit {
			font-size: .75rem;
		}
	}
