.promo-boxes {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	position: relative;
	min-height: 600px;
	margin-top: 40px;
	font-family: 'Nunito', sans-serif;
	color: #778899;
}

.promo-boxes ul {
	list-style: none;
}

.promo-boxes .animated {
	-webkit-animation-duration: 300ms;
	-moz-animation-duration: 300ms;
	-o-animation-duration: 300ms;
	-ms-animation-duration: 300ms;
	animation-duration: 300ms;
}

.promo-box .plus {
	width: 40px;
	height: 40px;
	background: url('../img/close.png');
	background-size: 40% 40%;
	display: inline-block;
	background-position: center;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	background-repeat: no-repeat;
	transition: all 600ms;
	position: absolute;
	right: 50%;
	margin-right: -20px;
	opacity: 0.6;
	border: 1px solid;
	border-radius: 100%;
	cursor: pointer;
	top: 75%;
	z-index: 2;
}

.promo-box.active .plus {
	top: 30px;
	right: 50px;
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg);
	border-color: rgba(0,0,0,0);
	background-size: 70%;
}

.promo-box {
	overflow: hidden;
	position: absolute;
	padding: 15px;
	background: white;
	width: 31%;
	left: 33%;
	display: inline-block;
	box-sizing: border-box;
	float: left;
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-o-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
	transition: all 300ms ease-out;
	min-height: 260px;
	max-height: 260px;
	border-radius: 2px;
	box-shadow: 0 1px 2px rgba(0,0,0,.2); 
	font-size: 14px;
	line-height: 25px;
}
.promo-box.first {
	left: 0%;
}
.promo-box.last {
	left: 66%;
}

.promo-box .heading, .promo-box .sub-heading {
	text-align: center;
	opacity: 1;
	transition: all 300ms;
}

.promo-box.active .heading, .promo-box.active .sub-heading {
	opacity: 0;
	line-height: 0;
	margin: 0;
	pointer-events: none;
}

.promo-box .sub-heading {
	text-align: center;
	font-family: 'Nunito', sans-serif;
}
.promo-box .heading {
	font-family: 'Nunito', sans-serif;
	font-size: 20px;
	margin-top: 25px;
	line-height: 1.3;
}
.promo-box .heading, h1, h2 {
	color: #24374b;
}

.promo-box.hide {
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	-o-transform: scale(0);
	-ms-transform: scale(0);
	transform: scale(0);
	opacity: 0;
}

.promo-box.active {
	left: 0%;
	width: 100%;
	max-height: 600px;
}

.promo-box .promo-expand {
	opacity: 0;
	display: none;
	padding-top: 20px;
	-webkit-animation-delay: 300ms;
}

.promo-box.active .promo-expand {
	display: block;
	opacity: 1;
	max-width: 100%;
	width: 500px;
	margin: 0 auto 25px auto;
}