:root {
	--swiper-navigation-color: #FCDD32;
	--swiper-navigation-size: 36px;
}

@media screen and (max-width: 900px) {
	:root {
		--swiper-navigation-size: 26px;
	}
}


/* General */


.gs-paragraph-width .et_pb_text, 
.gs-paragraph-width .et_pb_accordion {
	line-height: 1.8em;
	max-width: 850px;
}

.gs-header {
	font-family: 'interstatebold';
	font-size: 24px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.gs-header-small {
	font-family: 'interstatebold';
	font-size: 14px !important;
	line-height: 1.6em;
	text-transform: uppercase;
	letter-spacing: 0.08em;
}

.gs-small {
	font-size: 14px;
}

.gs-list-small li {
	font-size: 14px;
	line-height: 1.5em;
	margin: 0 0 5px;
}

/* Landing Page */

.gs-intro-title h1 {
	font-family: 'interstatebold';
	font-size: 20px;
	letter-spacing: 0.08em;
}

.gs-intro-large p {
	font-family: 'interstateextralight';
	font-size: 52px;
	line-height: 1.4em;
	
	padding-bottom: 0 !important;
}

@media screen and (max-width: 1200px) {
	.gs-header {
		font-size: 20px;
	}
	
	.gs-intro-title h1 {
		font-size: 18px;
	}
	
	.gs-intro-large p {
		font-size: 36px;
	}
	
	.gs-list-small li {
		font-size: 14px;
	}
}

@media screen and (max-width: 900px) {
	.gs-intro-title h1 {
		font-size: 18px;
	}
	
	.gs-intro-large p {
		font-size: 27px;
	}
	
	.gs-intro-title h1 br,
	.gs-intro-large p br {
		display: none;
	}
}

@media screen and (max-width: 600px) {
	.gs-list-small li {
		font-size: 14px;
		line-height: 1.6em;
		margin: 0 0 5px;
	}
}

/* Gradient */

.gs-gradient-background {
	background: linear-gradient(45deg, rgba(127,120,110,1) 0%, rgba(180,171,158,1) 17%, rgba(126,118,107,1) 25%, rgba(180,171,158,1) 32%, rgba(127,120,110,1) 50%, rgba(180,171,158,1) 67%, rgba(126,118,107,1) 75%, rgba(180,171,158,1) 83%, rgba(127,120,110,1) 100%);
	background-size: 400% 400%;
	
	-webkit-animation: gradientanim 60s ease infinite;
	-moz-animation: gradientanim 60s ease infinite;
	animation: gradientanim 60s ease infinite;
}

.gs-gradient-background * {
	color: white;
}

span.gradient-text {
	display: block;
	font-size: 1em;
	color: #fff;
	 background: rgb(127,120,110);
	 background: linear-gradient(270deg, rgba(127,120,110,1) 0%, rgba(166,158,146,1) 31%, rgba(126,118,107,1) 60%, rgba(180,171,158,1) 75%, rgba(127,120,110,1) 100%);
	 background-size: 80% 100%;
	 -webkit-background-clip: text;
	 -webkit-text-fill-color: transparent;
	 -webkit-animation: shift 30s linear infinite;
	 -moz-animation: shift 30s linear infinite;
	 animation: shift 30s linear infinite;
}

@-webkit-keyframes shift {
	 0% {
		  background-position: 0% 0%
	 }

	 50% {
		  background-position: 100% 50%
	 }

	 0% {
		  background-position: 0% 100%
	 }
}

@-moz-keyframes shift {
	 0% {
		  background-position: 0% 0%
	 }

	 50% {
		  background-position: 100% 50%
	 }

	 0% {
		  background-position: 0% 100%
	 }
}

@keyframes shift {
	 0% {
		  background-position: 0% 0%
	 }

	 50% {
		  background-position: 100% 50%
	 }

	 0% {
		  background-position: 0% 100%
	 }
}

/* Image crop */

.gs-image-crop-left,
.gs-image-crop-right {
	position: relative;
}

.gs-image-crop-left:after,
.gs-image-crop-right:after  {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	z-index: 1;
}

.gs-image-crop-left:after {
	left:0;
	bottom: 0;
	border-bottom: 10vw solid white;
	border-right: 10vw solid transparent;
}

.gs-image-crop-right:after {
	right: 0;
	bottom: 0;
	border-bottom: 10vw solid white;
	border-left: 10vw solid transparent;
}

.gs-image-yellow {
	position: relative;
	margin-bottom: 22px;
}

.gs-image-yellow:before {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: calc(750px + ((100% - 1400px) / 2));
	height: 22px;
	background: #FFD12F;
	transform: translateY(100%);
	-webkit-transform: translateY(100%);
	z-index: 1;
}

@media screen and (max-width: 1750px) {
	.gs-image-yellow:before {
		width: calc(750px + (20%/ 2));
	}
}


@media screen and (max-width: 1050px) {
	.gs-image-yellow {
		height: 50vh;
		max-height: 600px;
		min-height: 400px;
		
		grid-row-start: 2;
	}
	
	.gs-image-yellow img {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media screen and (max-width: 1000px) {
	.gs-image-yellow:before {
		width: 50%;
	}
	
	.gs-image-crop-left:after,
	.gs-image-crop-right:after {
		left:0;
		bottom: 0;
		right: auto;
		border-left: 0 solid transparent;
		border-bottom: 30vw solid white;
		border-right: 30vw solid transparent;
	}
	
	.gs-image-crop-left.gs-gradient-background:after {
		content: none;
	}
}

/* Program Blurb */

.gs-programs-text-rotate {
	position: absolute;
	 top: 0;
	 left: 0;
}

.gs-programs-text-rotate h2 {
	letter-spacing: 0.05em;
	 transform: translate(0,-100%) rotate(90deg);
	 transform-origin: left bottom;
	 padding: 0;
	 font-size: 36px;
	 text-transform: uppercase;
	 font-family: 'interstatebold';	
}

@media screen and (max-width: 1100px) {
	.gs-programs-text-rotate {
		position: relative;
		margin: 75px 0 0;
	}
		
	.gs-programs-text-rotate h2 {
		 transform: translate(0) rotate(0);
		 transform-origin: left bottom;
	}
}

@media screen and (max-width: 900px) {
	.gs-programs-text-rotate h2 {
		 font-size: 28px;
	}
}

@media screen and (max-width: 475px) {
	.gs-programs-text-rotate h2 {
		 font-size: 20px;
	}
}

.gs-programs-text-rotate h2 span {
	font-family: 'interstatebold';	
}

.gs-programs-equal .et_pb_module,
.gs-programs-equal .et_pb_module .et_pb_module_inner {
	height: 100%;
}

.gs-program-blurb, 
.gs-program-blurb-inner,
.gs-program-blurb-content {
	height: 100%;
}

.gs-program-blurb {
	position: relative;
	background: white;
	box-shadow: 0 0 5px 5px rgba(0,0,0,.05);
	
	cursor: pointer;
	
	-webkit-transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
	transition: -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
	-o-transition: transform 0.25s ease, box-shadow 0.25s ease;
	transition: transform 0.25s ease, box-shadow 0.25s ease;
	transition: transform 0.25s ease, box-shadow 0.25s ease, -webkit-transform 0.25s ease, -webkit-box-shadow 0.25s ease;
}

.gs-program-blurb:hover {
	box-shadow: 0 0 10px 5px rgba(0,0,0,.1);
	-webkit-transform: translateY(-8px);
	 -ms-transform: translateY(-8px);
		  transform: translateY(-8px);
}

.gs-program-blurb-image {
	position: relative;
	height: 0;
	padding-top: 80%;
}

.gs-program-blurb-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gs-program-blurb-text {
	position: relative;
	padding: 30px;
}

.gs-program-blurb-text h3 {
	font-family: 'interstate_lightregular';
	font-size: 26px;
	margin: 0;
	padding: 0;
}

.gs-program-levels {
	font-family: 'interstateregular';
	font-size: 14px;
	font-weight: normal;
	line-height: 1;
	margin: 0 0 8px;
}

.gs-program-levels .gs-ma:after {
	font-family: 'interstatebold';
	position: relative;
	content: "•";
	color: #FFD12F;
	display: inline-block;
	 margin: 0 0 0 3px;
}

.gs-program-levels .gs-mfa:after {
	font-family: 'interstatebold';
	position: relative;
	content: "••";
	color: #FFD12F;
	display: inline-block;
	margin: 0 0 0 3px;
}

.gs-program-levels .gs-level-seperator {
	font-family: 'interstateextralight';
	display: inline-block;
	margin: 0 5px;
	color: #8D8D8D;
}

.gs-degrees-offered .gs-program-levels {
	font-size: 20px;
	font-family: 'interstatebold';
	margin: 10px 0 0;
}

.gs-degrees-offered .gs-program-levels .gs-level-seperator {
	margin: 0 10px;
}

.gs-degrees-offered .gs-program-levels .gs-ma:after {
	margin: 0 0 0 8px;
}

.gs-degrees-offered-description {
	font-family: 'interstate_lightregular';
	font-size: 13px;
	line-height: 1.7em;
	margin: 25px 0;
	padding: 25px 0;
	border-top: 1px solid #B4B4B4;
	border-bottom: 1px solid #B4B4B4;
}

.gs-degrees-offered-image {
	max-width: 200px;
}

@media screen and (max-width: 980px) {
	.gs-degrees-offered {
		margin: 35px 0 0;
	}
}

/* Why CCS */

.why-ccs h2 {
	font-family: 'interstateextralight';
	font-size: 72px;
	margin: 0;
	padding: 0;
}

.why-ccs h2 span {
	font-family: 'interstateextralight';
}

@media screen and (max-width: 1200px) {
	.why-ccs h2 {
		font-size: 60px;
	}
	
}

@media screen and (max-width: 900px) {
	.why-ccs h2 {
		font-size: 48px;
	}
}

/* Graduate Leadership  */

.gs-small-header h2 {
	font-family: 'interstatebold';
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	margin-block: 2em;
}

.gs-small-header-white h2{
	color: white;
}

#mfaleadership .grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	grid-gap: 25px;
}

#mfaleadership .grid article {
	width: 100%;
	margin: 0;
}

#mfaleadership .grid article .mfa-leadership-image {
	height:0;
	position: relative;
	padding-top: 120%;
}

#mfaleadership .grid article .mfa-leadership-image img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	max-height: none;
}

#mfaleadership .grid article h3 {
	font-family: 'interstate_lightregular';
	font-size: 28px;
	line-height: 1.2em;
	margin: 24px 0 12px;
	padding: 0;
}

#mfaleadership .grid article h3 a {
	font-family: 'interstate_lightregular';
}

#mfaleadership .grid article p {
	font-family: 'interstate_lightregular';
	font-size: 15px;
	line-height: 1.4em;
	color: #717171;
}

@media screen and (max-width: 1350px) {
	#mfaleadership .grid article h3 {
		font-size: 24px;
		margin: 20px 0 12px;
	}
}

@media screen and (max-width: 1100px) {
	#mfaleadership .grid article h3 {
		font-size: 20px;
		margin: 20px 0 12px;
	}
	
	#mfaleadership .grid article p {
		font-size: 13px;
	}
}

@media screen and (max-width: 960px) {
	#mfaleadership .grid {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 20px;
	}
}

@media screen and (max-width: 500px) {
	#mfaleadership .grid {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-gap: 20px;
	}
}


/* Join the Evolution  */

.join-the-evolution-header {
	margin-bottom: 75px !important;
}

.join-the-evolution-header .et_pb_text_inner {
	display: flex;
	 align-items: normal;
	 justify-content: center;
}

.join-the-evolution-header .et_pb_text_inner h3 {
	display: block;
	 height: 100%;
	 padding: 40px 75px;
	 text-transform: uppercase;
	 font-family: 'interstatebold';
	 letter-spacing: 0.08em;
	 position: relative;
}

.join-the-evolution-header .et_pb_text_inner p {
	display: flex;
	align-items: center;
	padding: 0 !important;
 }
 
.join-the-evolution-header .et_pb_text_inner p a {
	display: flex;
	height: 100%;
	padding: 0 50px;
	align-items: center;
	font-family: 'interstateblack';
	text-transform: uppercase;
	text-decoration: none;
	color: black;
	background: #FFD12F;
	font-size: 22px;
	letter-spacing: 0.08em;
	
	-webkit-transition: color .225s ease, background .225s ease;
	 -o-transition: color .225s ease, background .225s ease;
	 transition: color .225s ease, background .225s ease;
}

.join-the-evolution-header .et_pb_text_inner p a:hover {
	color: #FFD12F;
	background: black;
}

.join-the-evolution-text p {
	font-family: 'interstateextralight';
	font-size: 28px;
	line-height: 1.4em;
	margin: 0 auto;
	max-width: 930px;
	text-align: center;
}

@media screen and (max-width: 900px) {
	.join-the-evolution-header {
		margin-bottom: 50px !important;
	}
	
	.join-the-evolution-header .et_pb_text_inner {
		flex-direction: column-reverse;
	}
	
	.join-the-evolution-header .et_pb_text_inner p a {
		padding: 20px 50px;
		 font-size: 16px;
	}
	
	.join-the-evolution-header .et_pb_text_inner h3 {
		padding: 100px 50px 0 0;
		 margin: 0 0 40px;
	}
	
	.join-the-evolution-text p {
		text-align: left;
		font-size: 16px;
		line-height: 1.6em;
		font-family: 'interstate_lightregular';
	}
}

.gs-border-animate {
	position: absolute;
	vertical-align: middle;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	
	transition: color 0.25s;
}

.gs-border-animate.gs-border-animate-header {
	width: 12.5vw;
	height: 12.5vw;
	top: 35px;
	right: 35px;
}

.gs-border-animate:before {
	position: absolute;
	content: '';
	width: 100%;
	height: 4px;
	top: 0;
	left: 0;
	background: #FFD12F;
	visibility: visible;
	transform-origin: left;
	animation: borderAnimationWidth 0.5s ease 1s both;
}

.gs-border-animate:after {
	position: absolute;
	content: '';
	width: 4px;
	height: 100%;
	top: 0;
	right: 0;
	background: #FFD12F;
	visibility: visible;
	transform-origin: top;
	animation: borderAnimationHeight 0.5s ease 1.5s both;
}

.gs-border-animate.gs-border-animate-header:after {
	width: 6px;
}

.gs-border-animate.gs-border-animate-header:before {
	height: 6px;
}

@keyframes borderAnimationWidth {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

@keyframes borderAnimationHeight {
	0% {
		height: 0;
	}
	100% {
		height: 100%;
	}
}

@media screen and (max-width: 900px) {
	.gs-border-animate {
		width: 100px;
		height: 100px;
	}
	
	.gs-border-animate.gs-border-animate-header {
		width: 20vw;
		height: 20vw;
		top: 30px;
		right: 30px;
	}
	
	.gs-border-animate.gs-border-animate-header:after {
		width: 4px;
	}
	
	.gs-border-animate.gs-border-animate-header:before {
		height: 4px;
	}
}

/* The Journey */

.gs-journey {
	position: relative;
	overflow: hidden;
}

.gs-contain {
	width: 80%;
	max-width: 1400px;
	margin: 0 auto;
}

.gs-journey-header {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	padding: 100px 0;
	z-index: 5;
}

.gs-journey h3 { 
	position: relative;
	font-family: 'interstatebold';
	font-size: 26px;
   letter-spacing: 0.08em;
	text-transform: uppercase;
	
	color: white;
}

.gs-journey-slider-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 3;
}


.gs-journey-slider-bottom {
	background: linear-gradient(45deg, rgba(127,120,110,1) 0%, rgba(180,171,158,1) 17%, rgba(126,118,107,1) 25%, rgba(180,171,158,1) 32%, rgba(127,120,110,1) 50%, rgba(180,171,158,1) 67%, rgba(126,118,107,1) 75%, rgba(180,171,158,1) 83%, rgba(127,120,110,1) 100%); 
	 background-size: 400% 400%;

	 -webkit-animation: gradientanim 60s ease infinite;
	 -moz-animation: gradientanim 60s ease infinite;
	 animation: gradientanim 60s ease infinite;
}

@-webkit-keyframes gradientanim {
	 0%{background-position:0% 91%}
	  50%{background-position:100% 10%}
	  100%{background-position:0% 91%}
}
@-moz-keyframes gradientanim {
	0%{background-position:0% 91%}
	 50%{background-position:100% 10%}
	 100%{background-position:0% 91%}
}
@keyframes gradientanim {
	0%{background-position:0% 91%}
	 50%{background-position:100% 10%}
	 100%{background-position:0% 91%}
}

.gs-journey-slider-bottom .swiper-wrapper {
	mix-blend-mode: multiply;
}

.gs-journey .swiper-slide {
	width: 80vw;
}

.gs-journey .swiper-slide:nth-child(1) {
	width: 90vw;	
}

.gs-journey .swiper-slide:nth-child(1) .gs-journey-image:nth-child(1) {
	padding-left: 10vw;
}

.gs-journey .swiper-slide:nth-child(3) {
	width: 90vw;	
}

.gs-journey .swiper-slide:nth-child(3) .gs-journey-image:nth-child(1) {
	padding-right: 10vw;
}

.gs-journey .gs-journey-image-container {
	position: relative;
	width: 100%;
	
	background-size: 0 100%;
	padding: 150px 0 200px;
}

.gs-journey .gs-journey-image:nth-child(1) {
	mix-blend-mode: multiply
}

.gs-journey .gs-journey-image:nth-child(2) {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 150px 0 200px;
	object-fit: contain;
	z-index: 1;
}

.gs-journey .gs-journey-image:nth-child(2) img {
	transition: transform 2s ease;
	-webkit-transition: transform 2s ease;
}

.gs-journey .swiper-slide:nth-child(1) .gs-journey-image:nth-child(2) {
	padding: 150px 0 200px 10vw;
}

.gs-journey .swiper-slide:nth-child(3) .gs-journey-image:nth-child(2) {
	padding: 150px 10vw 200px 0;
}

.gs-journey .gs-journey-info {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100vw;
	height: 200px;
}

.gs-journey .swiper-slide:nth-child(3) .gs-journey-info {
	left: -10vw;
}

.gs-journey .gs-journey-info span.line {
	margin: 0 0 30px;
	width: 100%;
	height: 2px;
	background: #FCDD32;
	position: relative;
	display: block;
}

.gs-journey-info-content {
	position: relative;
}

.gs-journey-info-content h5,
.gs-journey-info-content p {
	opacity: 0;
	
	transition: opacity 0.35s ease 0s;
	-webkit-transition: opacity 0.35s ease 0s;
}

.swiper-slide-active .gs-journey-info-content h5,
.swiper-slide-active .gs-journey-info-content p {
	opacity: 1;
	
	transition: opacity 0.35s ease 0.65s;
	-webkit-transition: opacity 0.35s ease 0.65s;
}

.gs-journey .gs-journey-info span.bullet {
	width: 12px;
	border-radius: 50%;
	height: 12px;
	background: #FCDD32;
	display: block;
	
	position: absolute;
	top: -36px;
	left: 0;

}

.gs-journey .gs-journey-info h5 {
	font-family: 'interstateblack';
	text-transform: uppercase;
	color: white;
	font-size: 16px;
}

.gs-journey .gs-journey-info p {
	font-family: 'interstate_lightregular';
	color: white;
	font-size: 14px;
	line-height: 1.5em;
}

.gs-navigation {
	position: absolute;
	 bottom: 0;
	 right: 3vw;
	 height: 200px;
	 padding: 30px 0 0;
	 display: flex;
}

.swiper-button-next, .swiper-button-prev {
	position: relative;
	 left: 0;
	 top: 0;
	 margin: 0px 20px;
}

@media screen and (max-width: 900px) {
	.gs-journey-header {
		 padding: 50px 0;
	}
	
	.gs-journey h3 {
		font-size: 20px;
	}
	
	.gs-journey .gs-journey-image-container {
		padding: 100px 0 240px;
	}
	
	.gs-journey .gs-journey-info {
		height: 230px;
	}
	
	.gs-journey-info-content {
		max-width: 70%;
	}
	
	.gs-journey-info-content p br {
		display: none;
	}
	
	.gs-navigation {
		height: 230px;
	}
	
	.swiper-button-next, .swiper-button-prev {
		 margin: 0px 15px;
	}
}


/* Program Intro */

.gs-program-intro {
	border-top: 1px solid #DDDDDD;
	box-shadow: 0 0 20px 0 rgb(0 0 0 / 15%);
}

.gs-program-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
}

.gs-program-image {
	position: relative;
	height: 70vh;
	max-height: 900px;
	min-height: 650px;
}

.gs-program-image img,
.gs-program-image video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.gs-program-content {
	display: flex;
	align-items: flex-end;
	padding: 80px;
}

.gs-program-content .gs-eyebrow {
	font-family: 'interstatebold';
	text-transform: uppercase;
	font-size: 16px;
	letter-spacing: 0.08em;
	animation: animLeft 700ms ease 200ms both;
}

.gs-program-content h1 {
	font-family: 'interstateextralight';
	font-size: 65px;
	line-height: 1.1em;
	margin: 20px 0 20px;
	max-width: 700px;
	animation: animLeft 700ms ease 400ms both;
}

.gs-program-content h1 span {
	font-family: 'interstateextralight';
}

.gs-program-content p {
	font-family: 'interstate_lightregular';
	font-size: 20px;
	line-height: 1.5em;
	color: #6E6E6E;
	animation: animLeft 700ms ease 600ms both;
}

.gs-program-content p:not(.has-background):last-of-type {
	padding-bottom: 0;
}

@keyframes animLeft {
	0% {
		opacity: 0;
		transform: translateX(15px);
		-webkit-transform: translateX(15px);
	}
	
	100% {
		opacity: 1;
		transform: translateX(0);
		-webkit-transform: translateX(0);
	}
}


@media screen and (max-width: 1200px) {
	.gs-program-content p br {
		display: none;
	}
}

@media screen and (max-width: 1050px) {
	.gs-program-intro {
		box-shadow: none;
		position: relative;
	} 
	
	.gs-program-intro:after {
		content: "";
		position: absolute;
		bottom: 0;
		right: 0;
		width: 50%;
		height: 22px;
		background: #FFD12F;
		transform: translateY(100%);
		-webkit-transform: translateY(100%);
		z-index: 1;
	}
	
	.gs-program-inner {
		display: grid;
		grid-template-columns: 1fr;
	}
	
	.gs-program-image {
		height: 50vh;
		max-height: 600px;
		min-height: 400px;
		
		grid-row-start: 2;
	}

	.gs-program-content h1 {
		font-size: 54px;
	}
	
	.gs-program-content {
		display: flex;
		align-items: flex-end;
		padding: 125px 60px 60px;
	}
}

@media screen and (max-width: 600px) {
	.gs-program-image {
		height: 40vh;
	}
	.gs-program-content {
		padding: 125px 0 50px;	
	}
	
	.gs-program-content h1 {
		font-size: 42px;
	}
	
	.gs-program-content-inner {
		width: 80%;
		margin: 0 auto;
	}
	
	.gs-program-content p {
		font-size: 16px;
	}
}

/* Interior Menu  */

div#interior-menu.gs-interior-menu {
	margin: -20px 0 0;
}

div#interior-menu.gs-interior-menu ul.menu li {
	border: 0 !important;
}

div#interior-menu.gs-interior-menu ul.menu li a {
	display: block;
	font-family: 'interstateregular';
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	padding: 18px 22px;
	border: 1px solid black;
	
	transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

div#interior-menu.gs-interior-menu ul.menu li a:hover {
	background: black;
	color: white;
	border-bottom: 0;
}

@media screen and (max-width: 600px) {
	div#interior-menu.gs-interior-menu ul.menu li {
		margin-right: 0;
		width: 100%;
		text-align: center;
	}
	
	div#interior-menu.gs-interior-menu ul.menu li a {
		width: 100%;
		text-align: center;
	}
}

/* Program Video Overlay */

.gs-video-overlay {
	margin: 0 0 -28.125%;
}

.gs-video-underlay .et_pb_row:nth-child(1):before {
	content: "";
	position: relative;
	display: block;
	
	width: 100%;
	padding-top: 30%;
}

@media screen and (max-width: 600px) {
	.gs-video-underlay .et_pb_row:nth-child(1):before {
		padding-top: 20%;
	}
}

/* Program Sliders */

.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .wpcp-all-captions .wpcp-image-caption a, 
.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .wpcp-all-captions .wpcp-image-caption {
	font-size: 14px !important;
	color: #4B4B4B !important;
	font-family: 'interstate_lightregular' !important;
}

.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-prev, 
.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-next {
	color: black !important;
	border: 0 !important;
	height: auto !important;
	width: auto !important;
}

.gs-image-slider .et_pb_text_inner .wpcpro-wrapper .wpcp-carousel-section.nav-bottom-right .slick-prev {
	right: 50px !important;
}

.gs-image-slider .et_pb_text_inner .wpcpro-wrapper .wpcp-carousel-section .slick-next,  
.gs-image-slider .et_pb_text_inner .wpcpro-wrapper .wpcp-carousel-section .slick-prev {
	margin-right: 10% !important;
	bottom: 20px !important;
}

.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-prev i, 
.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-next i {
	display: none !important;
}

.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-prev:after, 
.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-next:after {
	font-family: swiper-icons !important;
	font-size: 32px !important;
	text-transform: none!important;
	letter-spacing: 0 !important;
	text-transform: none;
	font-variant: initial;
	line-height: 1;
	position: relative;
	display: block;
}

.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-prev:after {
	content: 'prev';
}

.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-next:after {
	content: 'next';
}

.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-prev:hover, 
.gs-image-slider .et_pb_text_inner .wpcp-carousel-wrapper.wpcpro-wrapper .wpcp-carousel-section .slick-next:hover {
	background: transparent !important;
	opacity: 0.5 !important;
}

@media screen and (max-width: 980px) {
	#facilities-row.et_pb_row {
		width: 90% !important;
		margin-right: 0 !important;
	}
	
	#facilities-row .et_pb_column {
		width: 100% !important;
	}
}

@media screen and (max-width: 600px) {
	.gs-video-overlay {
		margin: 0 0 -38%;
	}
}


/* Faculty Page  */

.gs-subpage-header {
	padding-bottom: 0 !important;
}

.gs-subpage-header h1.displayMFA {
	font-family: 'interstatebold';
	font-size: 20px;
	margin-bottom: 0;
	padding-bottom: 0;
}

.gs-subpage-header p {
	font-size: 54px;
	font-family: 'interstateextralight';
}

.gs-chair div#chair-row {
	background: white;
	box-shadow: 0 0 10px 0 rgba(0,0,0,.1);
}

.gs-chair div#chair-row h3 {
	padding-bottom: 10px;
	max-width: 650px;
}

.gs-chair div#chair-row p:last-child {
	padding-bottom: 0;
}

.gs-faculty .grid-wrap {
	grid-gap: 50px 35px;
}

.gs-faculty .grid-wrap .fwpl-result:nth-child(-n+4),
.gs-faculty .grid-cell, .gs-faculty .grid-wrap .fwpl-result,
.gs-faculty .grid-wrap .fwpl-result:last-child,
.gs-faculty .grid-wrap .et_pb_row .et_pb_column:nth-child(n+2) .grid-cell, .gs-faculty .grid-wrap .fwpl-result:not(:nth-child(4n)) {
	border-right: 0 !important;
	border-left: 0 !important;
	border-bottom: 0 !important;
	border-top: 2px solid black !important;
}

.gs-faculty .grid-cell:hover,.gs-faculty .grid-wrap .fwpl-result:hover {
	background: none;
}

.gs-faculty .grid-wrap .fwpl-result:hover {
	border-top: 2px solid #FFD12F !important;
}

.gs-faculty .grid-cell, .gs-faculty  .grid-wrap .fwpl-result {
	padding: 0.35em 0 0;
}

.gs-faculty .grid-wrap h2 {
	line-height: 1.2em !important;
}

.gs-faculty .grid-wrap h2 a {
	font-size: 20px;
	line-height: 1em;
}

.gs-faculty .grid-wrap p.title {
	padding-bottom: 0.5em;
	
	font-size: 16px;
	line-height: 1.3em !important;
}

.gs-faculty a.more,
.gs-chair div#chair-row a {
	font-size: 12px;
	font-family: 'interstateregular';
	color: #7a7a7a;
	text-decoration: none;
	border-bottom: 1px solid transparent;
}

.gs-chair div#chair-row a {
	font-size: 15px;
}

.gs-faculty a.more:after,
.gs-chair div#chair-row a:after {
	content: "";
	 position: relative;
	 display: inline-block;
	 width: 10px;
	 height: 10px;
	 margin: 0 0 0 6px;
	 background: url(assets/arrow-link.svg);
	 background-repeat: no-repeat;
	 background-size: contain;
	 
	 transition: color 0.3s ease;
	 -webkit-transition: color 0.3s ease;
}

.gs-faculty .fwpl-result:hover  a.more,
.gs-chair div#chair-row a:hover {
	color: black;
}


/* Accordian  */

.gs-accordian .et_pb_accordion_item {
	background: transparent;
}

.gs-accordian-white .et_pb_toggle_title:before {
	color: white;
}