.tabs {
	position: relative;
	overflow: hidden;
	margin: 0 auto;
	width: 100%;
	font-weight: 300;
	font-size: 1.25em;
}

.tabs nav ul {
	position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	margin: 0 auto;
	padding: 0;
	list-style: none;
	-ms-box-orient: horizontal;
	-ms-box-pack: center;
	-webkit-flex-flow: row wrap;
	-moz-flex-flow: row wrap;
	-ms-flex-flow: row wrap;
	flex-flow: row wrap;
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-justify-content: center;
	justify-content: center;
	background-color: #1b222a;
}

.tabs nav ul li {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0;
	text-align: center;
	padding: 0;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.tabs nav ul .active{
	background-color: #da2b4d;
}
.tabs nav ul li a{
	border: 1px solid #fff;
	width: 100%;
	padding: 0;
	text-decoration: none;
	font-family: 'Open Sans', sans-serif;
	font-size: 12px;
	font-weight: 900;
	color: #fff;
	padding: 10px;
}
.tabs nav ul li a:hover,
.tabs nav ul .active{
	background-color: #da2b4d !important;
	-webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

/* Content */
.content-wrap {
	position: relative;
}

.content-wrap section {
	display: none;
	margin: 0 auto;
	text-align: center;
	padding: 15px;
}
.content-wrap section img{
	width: 100%;
	margin-bottom: 30px;
}

.content-wrap section.content-current {
	display: block;
}

.content-wrap section p {
	margin: 0;
	font-size: 14px;
	padding: 15px !important;
}