/* Default tab style */



.tabs {
	position: relative;
	overflow: hidden;
	margin: -1px auto 0;
	width: 100%;
	font-weight: 300;
	font-size: 1.25em;
}

/* Nav */
.tabs nav {
	text-align: center;
}

.tabs nav ul {
	position: relative;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: flex;
	margin: 0 auto;
	padding: 0;
	max-width: 1200px;
	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;
}

.tabs nav ul li {
	position: relative;
	z-index: 1;
	display: block;
	margin: 0;
	text-align: center;
	-webkit-flex: 1;
	-moz-flex: 1;
	-ms-flex: 1;
	flex: 1;
}
.tabs nav ul li:hover {
	background-color: #21201e;
	color: #FFF;
}
.tabs nav a {
	position: relative;
	display: block;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	line-height: 2.5;
	text-transform: uppercase;
	font-family: "Montserrat",sans-serif !important;
}

.tabs nav a span {
	vertical-align: middle;
	font-size: 0.75em;
	color: #FFF;
}

.tabs nav li.tab-current a {
	color: #74777b;
}

.tabs nav a:focus {
	outline: none;
}

/* Icons */
.tabs-style-iconbox .fa-paper-plane {
	color: #21201e !important;
}
.tabs-style-iconbox .fa::before {
	z-index: 10;
	display: inline-block;
	margin: 0 0 20px !important;
	vertical-align: middle;
	text-transform: none;
	font-weight: normal;
	font-variant: normal;
	font-size: 35px;
	font-family: 'FontAwesome';
	line-height: 1;
	color: #FFF;
	speak: none;
	-webkit-backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Content */
.content-wrap {
	position: relative;
}

.content-wrap section {
	display: none;
	margin: 0 auto;
	padding: 0;
	max-width: 1200px;
	text-align: center;
}

.content-wrap section.content-current {
	display: block;
}


/* Fallback */
.no-js .content-wrap section {
	display: block;
	padding-bottom: 2em;
	border-bottom: 1px solid rgba(255,255,255,0.6);
}

.no-flexbox nav ul {
	display: block;
}

.no-flexbox nav ul li {
	min-width: 15%;
	display: inline-block;
}
/* Individual tab styles */


/*****************************/
/* Icon box */
/*****************************/

.tabs-style-iconbox nav {
	background-color: #fdb511;
}

.tabs-style-iconbox nav ul li a {
	overflow: visible;
	padding: 3em 0;
	line-height: 1;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.tabs-style-iconbox nav ul li a span {
	font-weight: 700;
	font-size: 18px;	
}

.tabs-style-iconbox nav ul li.tab-current {
	z-index: 100;
}

.tabs-style-iconbox nav ul li.tab-current a {
	background: #21201e !important;
	box-shadow: -1px 0 -1px #fff;
}

.tabs-style-iconbox nav ul li.tab-current a::after {
	position: absolute;
	top: 100%;
	left: 50%;
	transform: rotate(180deg);
	margin-top: -20px;
	margin-left: -10px;
	width: 0;
	height: 0;
	border: solid transparent;
	border-width: 10px;
	border-top-color: #fff;
	content: '';
	pointer-events: none;
}

.tabs-style-iconbox nav ul li:first-child::before,
.tabs-style-iconbox nav ul li::after {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 1px;
	height: 100%;
	background: rgba(255, 255, 255, 0.4) none repeat scroll 0 0;
	content: '';
}

.tabs-style-iconbox nav ul li:first-child::before {
	right: auto;
	left: 0;
}

.tabs-style-iconbox .fa::before {
	display: block;
	margin: 0 0 0.25em 0;
}
@media screen and (max-width: 58em) {
	.tabs nav a.fa span {
		display: none;
	}
	.tabs nav a:before {
		margin-right: 0;
	}
}