@charset "UTF-8";
/* Index CSS Document */

/*
font-family: "brandon-grotesque", "Brandon Grotesque", sans-serif;
font-family: "freight-display-pro", "Freight Display Pro", serif;
Orange: #F47003;
Teal: #009FA2;
Navy: #1A3756;
Gray: #373737;
Aqua: #BCE4E5;
box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
*/

/* HERO */
.hero {
	display: flex;
	justify-content: flex-end;
	width: 100vw;
	height: calc(100vh - 9.2em);
	background-image: url(../images/index/hero-lg.jpg);
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.hero-text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex: 0 0 50%;
	width: 50%;
	padding: 0 3em;
	background: rgba(255, 255, 255, .8);
}
.hero-text p {
	max-width: 24em;
	font-size: 1.5em;
	text-align: center;
}
.hero-buttons {
	display: flex;
}
@media screen and (max-width: 1100px) {
	.hero-text p {
		font-size: 1.2em;
	}
}
@media screen and (max-width: 1000px) {
	.hero {
		flex-direction: column;
		height: auto;
		background-image: url(../images/index/hero-md.jpg);
		background-position: top center;
		background-attachment: scroll;
	}
	.hero-text {
		flex: 1 1 auto;
		width: 100%;
		margin-top: 30em;
		padding: 3em;
		background: rgba(255, 255, 255, .9);
	}
	.hero-text p {
		max-width: 100%;
	}
}
@media screen and (max-width: 800px) {
	.hero-text {
		padding: 2em;
	}
	.hero-buttons {
		display: block;
	}
}
@media screen and (max-width: 600px) {
	.hero {
		background-image: url(../images/index/hero-sm.jpg);
	}
	.hero-text {
		margin-top: 25em;
	}
	.hero-text p {
		font-size: 1em;
	}
}
@media screen and (max-width: 400px) {
	.hero-text {
		margin-top: 20em;
	}
}

/* PODCAST */
.content-podcast {
	background: #1A3756;
	text-align: center;
}
.content-podcast .h-sub {
	color: #FFF;
}
.content-podcast p {
	max-width: 39em;
	margin: 1em auto .3em;
	color: #FFF;
	font-size: 1.35em;
	text-align: center;
}
.content-podcast .button {
	margin-bottom: 0;
}
.content-podcast .button:hover {
	color: #1A3756;
}
.content-podcast .button svg {
	margin: -.1em .5em -.3em 0;
}
.content-podcast .button:hover svg * {
	fill: #1A3756;
}
@media screen and (max-width: 1000px) {
	.content-podcast p {
		font-size: 1em;
	}
}
@media screen and (max-width: 800px) {
	.content-podcast p {
		text-align: justify;
	}
}

/* CHALLENGES EXPANDED */
.challenge-lg-o {
	margin: -2em 0 3em;
}
.challenge-lg {
	display: flex;
	align-items: center;
	margin: 10em 0 0;
}
.challenge-lg-graphic {
	position: relative;
	flex: 0 0 27em;
	width: 27em;
}
.challenge-lg:nth-of-type(odd) .challenge-lg-graphic {
	margin-right: 3.25em;
}
.challenge-lg:nth-of-type(even) .challenge-lg-graphic {
	order: 2;
	margin-left: 3.25em;
}
.challenge-lg-number {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: -2.25em;
	z-index: 2;
	width: 7.75em;
	height: 7.75em;
	background: #1A3756;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
}
.challenge-lg:nth-of-type(odd) .challenge-lg-number {
	left: 2.25em;
}
.challenge-lg:nth-of-type(even) .challenge-lg-number {
	right: 2.25em;
}
.challenge-lg-number:after {
	content: '';
	position: absolute;
	top: -.6em;
	left: -.6em;
	box-sizing: content-box;
	width: 100%;
	height: 100%;
	padding: .6em;
	border: 1px solid #1A3756;
}
.challenge-lg-number p {
	margin: -.25em 0 0;
	color: #FFF;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
	font-family: "freight-display-pro", "Freight Display Pro", serif;
	font-style: italic;
	font-size: 6em;
}
.challenge-lg-img {
	position: relative;
	z-index: 1;
	display: block;
	width: 100%;
	height: 18em;
	overflow: hidden;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
}
.challenge-lg-img img {
	width: 100%;
}
.challenge-lg-img:hover img {
	transform: scale(1.05);
}
.challenge-lg-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	bottom: -1.15em;
	z-index: 2;
	width: 5.55em;
	height: 5.55em;
	background: #1A3756;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
}
.challenge-lg:nth-of-type(odd) .challenge-lg-icon {
	right: 3.33em;
}
.challenge-lg:nth-of-type(even) .challenge-lg-icon {
	left: 3.33em;
}
.challenge-lg-icon:after {
	content: '';
	position: absolute;
	top: -.6em;
	left: -.6em;
	box-sizing: content-box;
	width: 100%;
	height: 100%;
	padding: .6em;
	border: 1px solid #1A3756;
}
.challenge-lg-text h3 {
	font-size: 2.5em;
	margin-top: 0;
}
.challenge-lg-text h3 a {
	color: #009FA2;
}
.challenge-lg-text h3 a:hover {
	color: #F47003;
}
@media screen and (max-width: 1300px) {
	.challenge-lg-number, .challenge-lg-icon {
		font-size: .8em;
	}
	.challenge-lg-text h3 {
		font-size: 2.25em;
	}
}
@media screen and (max-width: 1050px) {
	.challenge-lg {
		justify-content: center;
		flex-wrap: wrap;
	}
	.challenge-lg-graphic,
	.challenge-lg-text {
		flex: 0 0 100%;
	}
	.challenge-lg-graphic {
		order: 1;
	}
	.challenge-lg:nth-of-type(even) .challenge-lg-graphic,
	.challenge-lg:nth-of-type(odd) .challenge-lg-graphic{
		margin: 2em 0 1em;
	}
	.challenge-lg-text {
		order: 2;
	}
	.challenge-lg-img {
		height: auto;
		box-shadow: none;
	}
	.challenge-lg-img img {
		box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
	}
	.challenge-lg-img:hover img {
		transform: scale(1);
	}
	.challenge-lg-text h3 {
		margin-top: 1.25em;
		text-align: center;
	}
	.challenge-lg-text .button {
		width: 100%;
	}
}
@media screen and (max-width: 600px) {
	.challenge-lg {
		margin: 4em 0 0;
	}
	.challenge-lg-number {
		font-size: .65em;
	}
	.challenge-lg-icon {
		font-size: .75em;
	}
	.challenge-lg-text h3 {
		font-size: 1.75em;
	}
}
@media screen and (max-width: 400px) {
	.challenge-lg {
		margin: 3em 0 0;
	}
	.challenge-lg-number {
		font-size: .5em;
	}
	.challenge-lg-icon {
		font-size: .55em;
	}
}

/* PLAN */
.video {
	display: block;
	position: relative;
	height: 0;
	margin-top: 3em;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
}
.video iframe {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	filter: drop-shadow(1px 2px 4px rgba(0, 0, 0, .4));
}
.plan-o {
	display: flex;
	margin-top: 3.35em;
}
.plan {
	flex: 1 0 45%;
	flex: 45%;
	position: relative;
	z-index: 2;
	padding-top: 2.85em;
}
.plan:first-of-type {
	padding-right: 2.75em;
	border-right: 1px solid rgba(26, 55, 86, .5);
}
.plan:last-of-type {
	padding-left: 2.75em;
}
.plan-number {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: .6em;
	width: 7.75em;
	height: 7.75em;
	background: #009FA2;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
}
.plan:first-of-type .plan-number {
	right: 5em;
}
.plan:last-of-type .plan-number {
	left: 5em;
}
.plan-number:after {
	content: '';
	position: absolute;
	top: -.6em;
	left: -.6em;
	width: 100%;
	height: 100%;
	box-sizing: content-box;
	padding: .6em;
	border: 1px solid #009FA2;
}
.plan-number p {
	margin: -.25em 0 0;
	color: #FFF;
	text-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
	font-family: "freight-display-pro", "Freight Display Pro", serif;
	font-size: 6em;
	font-weight: 600;
}
.plan-img {
	position: relative;
	z-index: -1;
	width: 100%;
	height: 20.5em;
	overflow: hidden;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
}
.plan-img img {
	width: 100%;
}
.plan-img:hover img {
	transform: scale(1.05);
}
.plan h4 {
	color: #1A3756;
	font-size: 1.75em;
	font-weight: 400;
	font-style: italic;
	text-align: center;
}
.plan h4:hover {
	color: #009FA2;
}
.plan .button {
	width: 100%;
	margin: 1em 0 0;
	border-color: #009FA2;
	color: #009FA2;
}
.plan .button:hover {
	color: #FFF;
}
.plan .button:after {
	background: #009FA2;
}
@media screen and (max-width: 1300px) {
	.plan-number {
		font-size: .8em;
	}
	.plan-img {
		height: auto;
		box-shadow: none;
	}
	.plan-img img {
		box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
	}
	.plan-img:hover img {
		transform: scale(1);
	}
}
@media screen and (max-width: 850px) {
	.plan-o {
		flex-wrap: wrap;
		margin-top: 0;
	}
	.plan:nth-of-type(n) {
		flex: 0 0 100%;
		width: 100%;
		margin-top: 3em;
		padding: 3em 0 0;
		border-top: 1px solid rgba(26, 55, 86, .5);
		border-right: none;
	}
	.plan-number {
		display: none;
	}
}
@media screen and (max-width: 600px) {
	.plan h4 {
		font-size: 1.25em;
	}
	.plan:nth-of-type(n) {
		margin-top: 2em;
		padding: 2em 0 0;
	}
}

/* POP UP FORM */
.email-signup {
	position: fixed;
	top: 4.5em;
	left: 3.75em;
	z-index: 5;
	width: 30em;
	height: 100%;
	max-height: 32em;
	opacity: 1;
	overflow: hidden;
	animation: email 2s ease-in-out 3s 1 backwards;
}
@-webkit-keyframes email {
	from { max-height: 0; opacity: 0; }
	to { max-height: 32em; opacity: 1; }
}
@-moz-keyframes email {
	from { max-height: 0; opacity: 0; }
	to { max-height: 32em; opacity: 1; }
}
@keyframes email {
	from { max-height: 0; opacity: 0; }
	to { max-height: 32em; opacity: 1; }
}
.email-signup-hide {
	max-height: 0;
	opacity: 0;
}
.email-signup-i {
	margin: 1em 1.25em 0 .25em;
	padding: 2em;
	background: #FFF;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
}
.email-signup-x {
	position: absolute;
	top: 0;
	right: .25em;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 2em;
	height: 2em;
	background: #FFF;
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .4);
	border-radius: 50%;
	cursor: pointer;
}
.email-signup-x:hover {
	background: #BCE4E5;
}
.email-signup-x p {
	margin: -.2em 0 0;
	font-size: 1.4em;
	line-height: 1em;
}
.email-signup h4 {
	margin-top: 0;
}
.email-signup p {
    position: relative;
    z-index: 1;
}
.email-signup iframe {
    position: relative;
    z-index: 0;
    width: calc(100% + 2em);
	margin: -1em -2em 0 -1em;
}
@media screen and (max-width: 800px) {
	.email-signup {
		top: 5vw;
		left: 5vw;
		width: 90vw;
		max-height: 90vh;
		padding-bottom: .5em;
	}
	@-webkit-keyframes email {
		from { max-height: 0; padding-bottom: 0; opacity: 0; }
		to { max-height: 90vh; padding-bottom: .5em; opacity: 1; }
	}
	@-moz-keyframes email {
		from { max-height: 0; padding-bottom: 0; opacity: 0; }
		to { max-height: 90vh; padding-bottom: .5em; opacity: 1; }
	}
	@keyframes email {
		from { max-height: 0; padding-bottom: 0; opacity: 0; }
		to { max-height: 90vh; padding-bottom: .5em; opacity: 1; }
	}
	.email-signup-hide {
		width: 90vw;
		max-height: 0;
		padding-bottom: 0;
	}
	.email-signup-i {
		display: flex;
		flex-direction: column;
		justify-content: center;
		height: calc(100% - 1em);
		overflow: scroll;
	}
}
@media screen and (max-height: 500px) {
	.email-signup-i {
		display: block;
	}
}