/*
Green: #AFCC67
Purple: #24164D
Gray: #E6E6E6
Black: #000000
White: #FFFFFF
font-family: 'Crimson Text', serif;
*/

#carouselWrapper {
	z-index: 20;
	min-height: 750px;
}
#carousel {
	top: 50px;
	position: relative;
	height: 600px;
	/*To fight inline-block spaces breaking 100% width*/
	font-size: 0px;
}
.spacer {
	z-index: 30;
	width: 2.5%;
	height: 600px;
	position: relative;
	top: 50px;
	display: inline-block;
}
.navButton {
	z-index: 20;
	display: inline-block;
	height: 600px;
	width: 15%;
	background: #24164D;
}
.navButton div {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
#leftNav div {
	right: 10px;
	height: 70px;
	width: 70px;
	position: absolute;
	background: url('../images/triangleLeft.png');
	background-size: 70px 70px;
}
#leftNav div:hover {
	background: url('../images/filledTriangleLeft.png');
	background-size: 70px 70px;
}
#rightNav div:hover {
	background: url('../images/filledTriangleRight.png');
	background-size: 70px 70px;
}
#rightNav div {
	left: 10px;
	height: 70px;
	width: 70px;
	position: absolute;
	background: url('../images/triangleRight.png');
	background-size: 70px 70px;
}
#carouselContent {
	width: 65%;
	height: 600px;
	display: inline-block;
	background: -webkit-linear-gradient(rgba(36, 22, 77, 0.9), rgba(36, 22, 77, 0.9)), url('../images/backgroundCompressed.png');
	background: linear-gradient( rgba(36, 22, 77, 0.9), rgba(36, 22, 77, 0.9)), url('../images/backgroundCompressed.png');
	overflow: hidden;
}
.carouselComponent {
	position: relative;
}
.carouselInfo {
	position: absolute;
	display: none;
	font-size: 16px;
	z-index: 10;
	color: white;
	height: 600px;
	padding-right: 50px;
	max-width: calc(100% - 50px);
	min-width: calc(100% - 50px);
}
.sidewaysHeader {
	-webkit-transform: rotate(270deg);
	-ms-transform: rotate(270deg);
	transform: rotate(270deg);
	top: calc(50% - 38px);
	position: absolute;
	display: inline-block;
	font-size: 75px;
	font-weight: 700;
}
.slideInfo {
	font-size: 26px;
	left: 150px;
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	display: inline-block;
	max-width: calc(100% - 150px);
	width: auto;
	font-weight: 300;
}
.slideInfo li {
	list-style: none;
}
#carouselButtons {
	font-size: 16px;
	text-align: center;
	padding-top: 10px;
	position: relative;
	top: 50px;
}
#carouselButtons div {
	margin: 5px;
	display: inline-block;
	height: 30px;
	width: 30px;
	border: solid 5px #AFCC67;
	border-radius: 50%;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}
#carouselButtons div:hover {
	background: #AFCC67;
}
.hidden {
	display: none;
}
@media (max-width: 1200px) {
	.slideInfo {
		font-size: 18px;
	}
}
@media (max-width: 1000px) {
	.sidewaysHeader {
		font-size: 60px;
	}
	.slideInfo {
		font-size: 16px;
		left: 100px;
	}
	.carouselInfo {
		padding-right: 20px;
	}
}
@media (max-width: 800px) {
	.navButton {
		display: none;
	}
	.spacer {
		display: none;
	}
	#carouselContent {
		width: 100%;
	}
	.carouselInfo {
		padding-right: 10px;
	}
}
@media (max-width: 550px) {
	.slideInfo {
		font-size: 15px;
		left: 75px;
		max-width: calc(100% - 50px);
	}
	.sidewaysHeader {
		font-size: 50px;
	}
	#carouselWrapper {
		min-height: auto;
	}
	#carouselButtons {
		top: 0px;
		margin-bottom: 20px;
	}
}
