/* 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: 'Overpass', EYInterstate, Arial, sans-serif;
	font-size: 1.55vw;
	line-height: 2.25vw;
	font-weight: 300;

	color: #2e2e38;
}

p {
	margin: .75em 0;
}

a { text-decoration: none; color: #000; }
a:not(.button):hover { text-decoration: underline; }

h1 { font-size: 3.25em; line-height: 1.1em; margin: .5em 0 .25em; }
h2 { font-size: 2.5em; line-height: 1.2em; margin: .5em 0 .25em; }
h3 { font-size: 1.75em; line-height: 1.3em; margin: .5em 0 .25em; }
h4 { font-size: 1.15em; 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, h5, h6 { font-weight: 300; }
h4 { font-weight: 800; }

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child, h6:first-child { margin-top: 0; }

.fr { float: right; margin: 0 0 30px 30px; }
.fl { float: left; margin: 0 30px 30px 0; }

.line {
	margin: 30px 0;
	border-top: 1px solid #ffe600;
}

.line.gray {
	border-color: #e7e7ea;
}

.line.dark {
	border-color: #747480;
}

.noPad {
	padding: 0 !important;
}

.row {
	display:  flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.row > .col { padding: 0 15px; margin-bottom: 30px; }

.row > .col-1-5 { flex-basis: 20% }
.row > .col-2-5 { flex-basis: 40% }
.row > .col-3-5 { flex-basis: 60% }
.row > .col-4-5 { flex-basis: 80% }

.row > .col-1-4 { flex-basis: 25% }
.row > .col-3-4 { flex-basis: 75% }

.row > .col-1-3 { flex-basis: 33.333% }
.row > .col-2-3 { flex-basis: 66.666% }

.row > .col-1-2 { flex-basis: 50% }

.button {
	background-color: #ffe600;
	color: #2e2e38;
	font-weight: 900;
	padding: .75em 2em .55em;
	display:  inline-block;

	transition:  .3s;
}

.button.small {
	padding: .25em .5em .15em;
	font-size: 0.75em;
}

.button:hover {
	background-color: #2e2e38;
	color: #ffe600;
}

.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.white {
	background-color: #FFF;
}

.section.yellow {
	background-color: #ffe600;
}

.section.yellow .button {
	color: #FFF;
	background-color: #2e2e38;
}

.section.gray {
	background-color: #f6f6fa;
}

.section.dark {
	background-color: #2e2e38;
	color: #FFF;
}

.section.dark h1,
.section.dark h2,
.section.dark h3 {
	color: #FFF;
}

.container {
	max-width: 950px;
	padding: 0 20px;
	margin: 0 auto;
}




/* ========== HEADER / NAV ========== */

header, footer {
	background-color: #2e2e38;
	padding: 20px 0;
}

header {
	position: fixed;
	width: 100%;
	z-index: 1000;
}

header .col { margin-bottom: 0 !important; }

#intro {
	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 {
	background-color: #f6f6fa;
	text-align: center;
	font-size: 14px;
	padding: 40px 0;
}

.footerLine {
	display: inline-block;
	padding: 0 5px;
}






/* ========== POPUP ========== */

.popupWrap {
	display: none;
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	background-color: #2e2e38CC;
	z-index: 1000;
	padding: 50px;
}

.popupWrap h2 {
	font-size: 1.5em;
	line-height: 1.5em;
}

.popup {
	background-color: #FFF;
	max-width: 1100px;
	margin: auto;
}

.popupTitle {
	border-bottom: 1px solid #747480;
	padding: 1px 20px;
}

.popupClose {
	float: right;
	color: inherit;
	font-size: 40px;
	margin-top: 20px;
}

.popupInnerWrap {
	height: calc(85vh - 65px);
	overflow-y: scroll;
}

.altTextStyle {
	font-family: Georgia, 'Times New Roman', Times, serif;
	line-height: 1.5em;
}

.popupInner li {
	margin: 20px 0;
}

.popupInner h3 {
	font-size: 1.25em;
	font-weight: 800;
	margin-top: 2em;
}






/* ========== ACCORDION ========== */


.accordionItem {
	border-left: 4px solid #f6f6fa;
	border-bottom: 1px solid #c4c4cd;
	margin-bottom: 5px;
}

.accordionItem:hover,
.accordionItem.show {
	border-color: #ffe600;
}

.accordionItem .inner {
	overflow: hidden;
	display: none;
	color: #2e2e38;
	padding: 20px;
}

.accordionItem .accordionToggle {
	display: block;
	font-weight: 400;
	background-color: #f6f6fa;
	padding: 20px;
	cursor: pointer;
	margin: 0;
	color: #2e2e38;
}

.accordionItem .accordionToggle span.date {
	color: #747480;
	display: inline-block;
	font-size: 0.75em;
	padding-left: 10px;
}

.accordionItem .accordionToggle::after {
	content: "+";
	float: right;
	font-size: 1.5em;
}

.accordionItem.show .accordionToggle::after {
	content: "-";
	font-size: 2.5em;
}

.accordionItem .inner {
	display: none;
	background-color: #FFF;
}




/* ========== SECTIONS ========== */






/* ========== HERO ========== */

#hero {
	background-image: url(images/homepage_hero.jpg);
	padding: 400px 0 40px 0;
	position: relative;
}

#hero h1, #hero h3 {
	margin: 0;
	padding: 0;
	font-weight: 300;
	position: relative;
	z-index: 200;
}

#hero h3 {
	color: #ffe600;
}

#hero:before {
	content: "";
	display: block;
	position: absolute;
	width: 100%;
	height: 400px;
	bottom: 0;

	background: linear-gradient(180deg, #2e2e3800, #2e2e38DD);

}





/* ========== INFO ========== */ 

#info .col-2-3 {
	flex-basis: 60%
}

#info .col-1-3 h3 {
	border-top: 3px solid #afaeba;
	padding-top: 10px;
	margin-top: .65em;
}



/* ========== alumnipeople ========== */ 

.button.bordered {
	background-color: transparent;
}

.section.dark .button.bordered {
	border: 2px solid #FFF;
	color: #FFF;
}

.section.white .button.bordered {
	border: 2px solid #2e2e38;
	color: #2e2e38;
}

.section.dark .button.bordered:hover {
	background-color: #FFF;
	color: #2e2e38;
}

.section.white .button.bordered:hover {
	background-color: #2e2e38;
	color: #FFF;
}



/* ========== SPOTLIGHTS ========== */ 

#alumniSpotlight {
	display: flex;
}

.alumni {
	background-position: center;
	background-size: cover;
	position: relative;
	transition: 0.3s;
	height: 550px;
	width: 50%;
}

.alumniOverlay {
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #74748066;
	transition: 0.3s;
}

.alumni:hover .alumniOverlay {
	background-color: #2e2e38BB;
	z-index: 0;
}

.alumni .inner {
	padding: 30px;
	color: #FFF;
	position: absolute;
	bottom: 0;
	z-index: 100;
	width: 100%;
}

.alumni h3 { margin-bottom: 0; }
.alumniTitle {
	font-weight: 800;
	margin-top: 0;
}

.alumniDesc {
	max-height: 0;
	overflow: hidden;
	transition: 0.6s;
}


.alumni:hover .alumniDesc {
	max-height: 500px;
}

.alumni a {
	color: #FFF;
	font-weight: 800;
	font-size: 2em;
	display: inline-block;
	line-height: 1.35em;
}

.alumni:hover a {
	display: block;
	height: 50px;
}

.alumni a:hover {
	text-decoration: none;
}

.alumni a span {
	font-size: .5em;
	display: inline-block;
	transform: translateY(0.6em);
	
	max-width: 0;
	max-height: 0;
	overflow: hidden;
	transition: max-width 0.6s;
}

.alumni:hover a span {
	max-height: 50px;
	max-width: 200px;
	padding-right: 10px;
}

.alumni:not(:last-child) {
	border-right: 1px solid #FFF;
}

.alumni#joy {
	background-image: url('images/Joy Mbanugo.jpg');
}

.alumni#janine {
	background-image: url('images/Janine Korovesis.jpg');
}

.alumni#angela {
	background-image: url('images/Angela Holmes.jpg');
}

.personSpotlight .imgWrap {
	background-color: #eaeaf2;
	padding: 20px;
	width: 200px;
	text-align: center;
	font-family: 'Overpass', EYInterstate, Arial, sans-serif;
	line-height: 1.35em;
}

.personSpotlight .imgWrap img {
	max-width: 70%;
	aspect-ratio: 2 / 2.5;
	object-fit: cover;
	margin: 0 auto 15px;
}

.personSpotlight .imgWrap .title {
	color: #656579;
	display: inline-block;
	padding-top: 8px;
}




/* ========== MORE ========== */ 

#more a {
	display: block;
	position: relative;
	padding-bottom: 30px;
	height: 100%;
}

#more .imgWrap {
	overflow: hidden;
}	

#more img {
	aspect-ratio: 3 / 2;
	object-fit: cover;
	transition: 0.3s;
}

#more a:hover img {
	transform: scale(1.5);
}

#more .col strong {
	position: absolute;
	bottom: 0;
}

#more a:hover {
	text-decoration: none !important;
}

#more a:hover h4, #more a:hover strong {
	text-decoration: underline;
}







/* ========== CONNECT ========== */ 

#connect .col {
	position: relative;
	padding-bottom: 40px;
}

#connect em {
	font-style: normal;
	font-size: 0.85em;
	line-height: 1.35em;
	display: inline-block;
}

#connect .contactLinks {
	position: absolute;
	bottom: 0;
	top: inherit;
}

#connect img {
	height: 20px;
	display: inline-block;
	margin-right: 5px;
	filter: invert(1);
	position: relative;
	top: 0;

	transition: 0.3s
}

#connect img:hover {
	top: -3px;
}





/* ========== OTHER ========== */ 

.video {
	width: 100%;
	height: auto;
}

.resource .col, .person .col {
	margin-bottom: 30px;
}

.resource, .person {
	border: 1px solid #c4c4cda6;
	padding: 20px;
	padding-bottom: 80px;
	height: 100%;
	position: relative;
}

.resource img, .person img {
	margin-bottom: 30px;
	width: 100%;
}

.resource .buttonWrap, .person .buttonWrap {
	margin-top: 30px;
	position: absolute;
	bottom: 20px;
	width: calc(100% - 40px);
}





@media (min-width: 1000px) {

	html, body {
		font-size: 16px;
		line-height: 1.35em;
	}

}


@media (min-width: 801px) {

	header .container:after {
		display:none;
	}

	nav { display: block !important; }

	.row { margin: 0 -15px; }

	#alumnipeople {
		padding: 0;
	}
	
	#alumnipeople .col {
		margin-bottom: 0;
		padding: 60px 0;
	}
	#alumnipeople .col-1-2:first-child {
		border-right: 1px solid #FFF;
		padding-right: 100px;
	}
	
	#alumnipeople .col-1-2:last-child {
		padding-left: 100px;
	}
	

}

@media (max-width: 800px) {

	html, body {
		font-size: 15px;
		line-height: 1.4em;
	}

	.row {
		display: block;
	}

	.row .row { display:flex; }

	.row > .col {
		flex-basis: 100%;
		padding: 10px 0;
	}

	#resources .row > .col

	.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;	
	}

	.section#welcome {
		height: 90vw;
	}

	#news .col-1-3 { flex-basis: 48%; }

	.resource .button {
		width: 100%;
	}
	
	#alumniSpotlight {
		display: block;
	}

	.alumni {
		display: block;
		width: 100%;
		border-right: none !important;
	}

	.popupWrap {
		padding: 20px;
	}

}


@media (max-width: 600px) {

	.personSpotlight .imgWrap {
		width: 100%;
		margin: 0 auto 30px;
	}

}