/* CSS RESET */
*,
*::before,
*::after {
	box-sizing: border-box
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0
}

ul[role="list"],
ol[role="list"] {
	list-style: none
}

html:focus-within {
	scroll-behavior: smooth
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5
}

a:not([class]) {
	text-decoration-skip-ink: auto
}

img,
picture {
	max-width: 100%;
	display: block
}

input,
textarea,
select {
	font: inherit
}

@media(prefers-reduced-motion:reduce) {
	html:focus-within {
		scroll-behavior: auto
	}

	*,
	*::before,
	*::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: .01ms !important;
		scroll-behavior: auto !important
	}
}

@font-face {
	font-family: EYInterstate-Light;
	src: url(code/fonts/ey/EYInterstate-Light.woff);
}

@font-face {
	font-family: EYInterstate;
	src: url(code/fonts/ey/EYInterstate-Regular.woff);
}

@font-face {
	font-family: Georgia;
	src: url(code/fonts/ey/georgia.ttf);
}

html,
body {
	font-family: 'Overpass', EYInterstate, Arial, sans-serif;
	font-size: 1.55vw;
	line-height: 2.25vw;
	font-weight: 300;

	color: #2e2e38;
}

p {
	margin: .4em 0 .85em;
}

a {
	text-decoration: none;
	color: #00aeef;
}

h1 {
	font-size: 2.25em;
	line-height: 1.1em;
	margin: .5em 0 .5em;
}

h2 {
	font-size: 1.85em;
	line-height: 1.2em;
	margin: .5em 0 .25em;
}

h3 {
	font-size: 1.5em;
	line-height: 1.3em;
	margin: .5em 0 .15em 0;
}

h4 {
	font-size: 1.25em;
	line-height: 1.35em;
	margin: .5em 0 .25em;
}

h5 {
	font-size: .85em;
	line-height: 1.5em;
	margin: .5em 0 .25em;
}

h6 {
	font-size: .7em;
	line-height: 1.5em;
	margin: .5em 0 .25em;
}

h1,
h2,
h3,
h4 {
	font-weight: 300;
}

h5,
h6 {
	font-weight: 700;
}

h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

.fr {
	float: right;
}

.fl {
	float: left;
}

img.fr {
	margin: 0 0 4vw 4vw;
}

img.fl {
	margin: 0 4vw 4vw 0;
}

.row {
	display: flex;
	justify-content: space-between;
}

.row>.col {
	padding: 0 15px;
}

/*.row > .col,
.row > .col-1-4 { flex-basis: 22% }
.row > .col-1-3 { flex-basis: 30.666% }
.row > .col-1-2 { flex-basis: 48% }
.row > .col-2-3 { flex-basis: 65.333% }
.row > .col-3-4 { flex-basis: 74% }*/

.row>.col-1-4 {
	flex-basis: 25%;
	padding: 0 15px;
}

.row>.col-1-3 {
	flex-basis: 33.333%;
	padding: 0 7px;
}

.row>.col-1-2 {
	flex-basis: 50%;
}

.row>.col-2-3 {
	flex-basis: 66.666%;
	padding: 0 7px;
}

.row>.col-3-4 {
	flex-basis: 75%
}

.textCen {
	text-align: center;
}

.section {
	background-size: cover;
	background-position: center center;
	clear: both;
	background-color: #2e2e38;
	color: #ffffff;
}

.section:after,
.container:after {
	content: "";
	clear: both;
	display: block;
}

.container {
	padding: 0 0px;
	margin: 0;
}



/* ========== HEADER / NAV ========== */

header {
	background-color: #2e2e38;
	padding: 20px 0px 0px 0px;
}

header {
	position: sticky;
	width: 100%;
	z-index: 100;
	top: 0;
}

#headerSpacer {
	height: 110px;
	background-color: #2e2e38;
}

#logo {
	max-width: 180px;
	width: 20%;
	min-width: 130px;
}

#logo img {
	width: 100%;
}

#navToggle {
	display: none;
}

nav ul {
	padding: 0;
	margin: 0;
	padding-right: 50px;
}

nav li {
	display: inline-block;
}

nav li a {
	color: #999;
	display: inline-block;
	text-decoration: none !important;
}

nav li a:hover {
	color: #ffe600;
}




/* ========== FOOTER ========== */

footer {
	padding: 5px 75px 50px 75px;
	background-color: #ffffff !important;
}

footer a {
	color: #2e2e38;
	font-weight: bold;
	text-decoration: underline;
	display: inline-block;
	padding: 0 5px;
}

footer .float {
	float: right;
	margin-top: 50px;
}

footer .icons {
	margin-top: 20px;
	padding-left: 30px;
	font-size: 24px;
	color: #2e2e38;
}

/* ========== ACCORDION ========== */

.accordion {
	position: relative;
	background-color: transparent;
	color: #2e2e38;
	cursor: pointer;
	padding: 20px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	/*font-size: 1.5em;*/
	transition: 0.4s;
	border-left: 5px solid transparent;
}

.active1,
.accordion:hover {
	border-left: 5px solid #ffe600;
}

.accordion:after {
	position: absolute;
	top: 10px;
	right: 0;
	content: '\002B';
	color: #2e2e38;
	font-weight: bold;
	font-size: 1.5em;
}

.accordion h4 {
	font-weight: normal !important;
	font-size: 1.4em !important;
	margin: 0;
}

.active1:after {
	content: "\2212";
}

.panel {
	padding: 0 18px;
	background-color: transparent;
	border-bottom: 1px solid #fff;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
	border-left: 5px solid #ffe600;
	border-bottom: 1px solid #c4c4cd;
}



@media (min-width: 1100px) {

	.why h1 {
		font-size: 2.25em !important;
		padding: 60px 0px 60px 0px;
	}

	html,
	body {
		font-size: 16px;
		line-height: 1.55em;
	}

	.section {
		padding: 50px 175px 50px 175px !important;
	}

	.viewport-header h2 {
		margin-top: 0px !important;
	}

	.row>.col-1-2 {
		padding: 0 15px;
	}

	#mobileH2 {
		display: none;
	}

	#mobileGTP {
		display: none;
	}

	#mobileCircle {
		display: none;
	}

	#mobileFooter {
		display: none;
	}

	nav li a {
		color: #999;
		display: inline-block;
		text-decoration: none !important;
		padding: 40px 20px 20px !important;
		font-size: 1em !important;
	}

}



@media (min-width: 992px) {

	.why h1 {
		font-size: 2.25em;
		padding: 60px 0px 60px 0px;
	}

	html,
	body {
		font-size: 16px;
		line-height: 1.55em;
	}

	.section {
		padding: 50px 175px 50px 175px;
	}

	.viewport-header h2 {
		margin-top: 0px;
	}

	.row>.col-1-2 {
		padding: 0 15px;
	}

	#mobileH2 {
		display: none;
	}

	#mobileGTP {
		display: none;
	}

	#mobileCircle {
		display: none;
	}

	#mobileFooter {
		display: none;
	}

}


@media (min-width: 768px) {
	.why h1 {
		font-size: 1.5em;
		padding: 60px 0px 60px 0px;
	}

	#mobileH2 {
		display: none;
	}

	#mobileGTP {
		display: none;
	}

	#mobileCircle {
		display: none;
	}

	#mobileFooter {
		display: none;
	}

	header .container:after {
		display: none;
	}

	nav {
		display: block;
	}

	.section {
		padding: 50px;
	}

	.viewport-header h2 {
		margin-top: 0px;
	}

	.row>.col-1-2 {
		padding: 0 15px;
	}
	
	nav li a {
        color: #999;
        display: inline-block;
        text-decoration: none !important;
        padding: 40px 5px 5px;
        font-size: .8em;
    }
 

}

@media (max-width: 600px) {
	.why h1 {
		font-size: 2.25em;
		padding: 10px 0px 10px 0px;
	}

	#desktopH2 {
		display: none;
	}

	#GTP {
		display: none;
	}

	#circle {
		display: none;
	}

	#desktopFooter {
		display: none;
	}

	.row>.col-1-2 {
		padding: 0 1px;
	}

	html,
	body {
		font-size: 13px;
		line-height: 1.55em;
	}

	.row {
		display: block;
	}

	.row .row {
		display: flex;
	}

	.row>.col {
		flex-basis: 100%;
		padding: 10px 0;
	}

	.row>.col-1-4 {
		flex-basis: 25% !important;
	}

	.row>.col-1-3 .row .col-1-2 {
		flex-basis: 48%;
	}

	.row>.col-2-3 {
		flex-basis: 30.666%;
	}

	header .row>.col {
		padding: 0;
	}

	nav {
		width: 100%;
		font-size: 1.5em;
		padding-top: 30px;
	}

	nav li,
	nav li a {
		display: block;
	}

	nav li a {
		padding: 15px 20px;
	}

	#logo {
		float: left;
	}

	#navToggle {
		display: block;
		width: 50px;
		height: 50px;
		float: right;
		margin-top: 20px;
		margin-right: 10px;
		padding: 20px 0;
		cursor: pointer;
		transition: 0.3s;
	}

	#navToggle span {
		display: block;
		height: 1px;
		background-color: #FFF;
		transition: 0.3s;
	}

	#navToggle span:first-child {
		margin-bottom: 10px;
	}

	#navToggle.active span:first-child {
		transform: rotate(45deg);
		margin-bottom: 0;
	}

	#navToggle.active span:last-child {
		transform: rotate(-45deg);
	}

	#navToggle:hover span {
		background-color: #ffe600;
	}

	nav,
	nav:before {
		float: none;
		clear: both;
		display: block;
		content: "";
	}

	nav {
		display: none;
	}

	.viewport-header div {
		top: 50px !important;
	}

	.viewport-header h2 {
		margin-top: 0px !important;
	}

	.section {
		padding: 25px;
	}

	.modal-content {
		width: 90% !important;
	}

	.meet .card { 
		padding: 0px 0px 60px 0px !important; 
		margin-left: 0px !important;
	}

	.mobileVideo h2 {
		margin-top: 15px;
	}

	.mobileLogo img {
		margin-left: 10px;
	}


/* ========== FOOTER ========== */

	footer {
		padding: 5px 20px 50px 20px;
		background-color: #ffffff !important;
	}

	footer a {
		padding-bottom: 10px;
	}
}