/* 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,
button,
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
	}
}

html, body {
	font-family: EYInterstate, Arial, sans-serif;
	font-size: 1.55vw;
	line-height: 2.25vw;
	font-weight: 300;

	color: #2e2e38;
}

p {
	margin: .75em 0;
}

a { font-weight: bold; text-decoration: none; color: #2e2e38;}
a:not(.button):hover { text-decoration: underline; text-decoration: none; }

h1 { font-size: 2.25em; line-height: 1.1em; margin: .5em 0 .25em; }
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 .25em; }
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, h4 { font-weight: 300; }
h3, 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 15px; }
.row > .col-1-2 { flex-basis: 50%; padding: 0 15px; }
.row > .col-2-3 { flex-basis: 66.666%; padding: 0 15px; }
.row > .col-3-4 { flex-basis: 75%; padding: 0 15px; }

.button {
	background-color: #ffe600;
	color: #2e2e38;
	font-weight: 900;
	padding: .75em 2em;
	display:  inline-block;
	position: relative;
	top:  0;
	box-shadow: none;
	transition:  .3s;
}

.button:hover {
	top: -3px;
	box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

.button a {color:#000; padding:8px; font-size:1.2em; text-decoration:none;}


.button2 {
	border:1px solid #2e2e38;
	color: #2e2e38;
	font-weight: 900;
	padding: .4em 1em;
	display:  inline-block;
	position: relative;
	top:  0;
	box-shadow: none;

	transition:  .3s;
}

.button2:hover {
	top: -3px;
	box-shadow: 0 10px 15px rgba(0,0,0,0.15);
}

.button2 a {color:#000; text-decoration:none;}

.textCen {
	text-align: center;
}

.section {
	background-size: cover;
	background-position: center center;
	clear: both;
	padding: 60px 0;
}

.section:after, .container:after {
	content: "";
	clear: both;
	display: block;
}

.section.gray {
	background-color: #2e2e38;
}

.container {
	max-width: 1140px;
	padding: 0 20px;
	margin: 0 auto;
}

.zoom {
	transition: transform .2s; /* Animation */
}

.zoom:hover {
	transform: scale(1.05); /* (50% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.padding-top {
	padding-top: 20px;
}

.rsvp {
    position: fixed;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: right;
	top: 110px;
}

h2  {
	border-bottom: solid 3px #ffe600;
	padding-top: 30px;
}


/* ========== HEADER / NAV ========== */
header, footer {
	background-color: #2e2e38;
	padding: 20px 0;
}

header {
	position: fixed;
	width: 100%;
	z-index: 100;
}

#headerSpacer {
	height: 110px;
}

#logo {
	max-width: 180px;
	width: 20%;
	min-width: 130px;
}

#logo img {
	width: 100%;
}

#navToggle { display:none; }

nav ul {
	padding: 0;
	margin: 0;
}

nav li {
	display: inline-block;
}

nav li a {
	color: #999;
	display: inline-block;
	text-decoration: none !important;
	padding: 40px 20px 20px;
}

nav li a:hover {
	color: #ffe600;
}


/* ========== FOOTER ========== */
footer {
	color: #FFF;
	text-align: center;
}

footer a {
	color: #FFF;
	display: inline-block;
	padding: 0 8px;
}


/* ========== SECTIONS ========== */
.section#welcome .container {
	display: inline-block;
  align-self: flex-end;
}

.section#welcome2 h1 {
	font-size: 3em;
	font-weight: bold;
	text-align: center;
}

.section#welcome2 .date {
	font-weight: bold;
	text-align: center;
}

.section#welcome2 h4 {
	text-align: center;
}

.section#welcome2 h5 {
	font-size: 1.25em;
	padding-bottom: 0px !important;
}

.section#sessions {
	padding: 0;
	height: 10vw;
	object-fit: cover;
	background-image: url(images/sessions-1920x350.jpg), linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    background-blend-mode: overlay;
	display: flex;
	color: #ffffff;
	font-weight: bold;
	font-size: 2em;
}

.section#sessions .container {
	display: inline-block;
  align-self: flex-end;
}

.section#sessions2 .name {
	font-size: .75em;
}

.section#sessions2 .title {
	font-size: .75em;
	line-height: .25em;
}

.section#speakers {
	padding: 0;
	height: 10vw;
	object-fit: cover;
	background-image: url(images/speakers.jpg), linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5));
    background-blend-mode: overlay;
	display: flex;
	color: #ffffff;
	font-weight: bold;
	font-size: 2em;
}

.section#speakers .container {
	display: inline-block;
  align-self: flex-end;
}

.section#thought {
	padding: 0;
	height: 10vw;
	object-fit: cover;
	background-image: url(images/thought-leadership.jpg), linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3));
    background-blend-mode: overlay;
	display: flex;
	color: #ffffff;
	font-weight: bold;
	font-size: 2em;
}

.section#thought .container {
	display: inline-block;
  align-self: flex-end;
}

.section#thought2 {
	background-color: #2e2e38;
	color: #ffffff
}

.section#thought2 .col-1-3 {
	padding: 0px 20px 0px 20px;
}

.section#thought2 .title {
	color: #ffe600;
	font-weight: bold;
	margin-bottom: 0px;
}

.section#thought2 .subtitle {
	font-weight: light;
	margin-bottom: 0px;
}




/* ========== accordion styles ========== */
.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: 20px;
    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;
}

.accordion p { 
	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) {

	html, body {
		font-size: 16px;
		line-height: 1.35em;
	}

}


@media (min-width: 801px) {

	header .container:after {
		display:none;
	}

	nav { display: block !important; }

}

@media (max-width: 800px) {

	.section#welcome h1 {
		padding-bottom: 5px;
		color: #fff;
		font-size: 2.1em;
	}

	html, body {
		font-size: 13px;
		line-height: 1.35em;
	}

	.row {
		display: block;
	}

	.row .row { display:flex; }

	.row > .col {
		flex-basis: 100%;
		padding: 10px 0;
	}

	.row > .col-1-3 .row .col-1-2 { flex-basis: 48%; }
	.row > .col-2-3 .row .col-1-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;
		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;	
	}


	#news .col-1-3 { flex-basis: 48%; }

}
