@charset "UTF-8";

.accordion, .accordion * {
	width: 100%;
	-webkit-box-sizing:border-box; 
	-moz-box-sizing:border-box; 
	box-sizing:border-box;
	
}

.accordion {
	overflow:hidden;
	background: #fff;
	float: left;
	margin-top: 50px;
	margin-bottom: 50px;
}

/*----- Section Titles -----*/
.accordion-section-title {
	width:100%;
	padding:40px;
	display:inline-block;
	background:#3b3b3b;
	transition:all linear 0.15s;
	/* Type */
	color: #bdede4;
	font-family: 'pier', 'Lato', sans serif;
	font-weight: 100;
	font-size: 18px;
	text-decoration: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: center;
}

.accordion-section-title.active, .accordion-section-title:hover {
	background:#636363;
	/* Type */
	text-decoration:none;
}

.accordion-section:last-child .accordion-section-title {
	border-bottom:none;
}

/*----- Section Content -----*/
.accordion-section-content {
	display:none;
	color: #47464C;
	font-family: 'Lato', sans serif;
	font-weight: 100;
}

.accordion-section-content p{
	width:750px;
}/* CSS Document */

