.vertical-tab {
	font-family: 'Titillium Web', sans-serif;
	display: table;
}
.vertical-tab .nav-tabs {
	display: table-cell;
	width: 28%;
	min-width: 28%;
	vertical-align: top;
	border: none;
}
.vertical-tab .nav-tabs li {
	float: none;
	vertical-align: top;
}
.vertical-tab .nav-tabs li a {
	color: #555;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding: 20px 11px;
    margin: 0 10px 20px 0;
    border-radius: 0;
    border: 1px solid #c9cba3;
    position: relative;
    transition: all 0.5s ease 0s;
}
.vertical-tab .nav-tabs li a:hover, .vertical-tab .nav-tabs li.active a, .vertical-tab .nav-tabs li.active a:hover {
	color: #fff;
    border-color: #00a79e;
    background-color: #00a79e;
}
.vertical-tab .nav-tabs li a:before, .vertical-tab .nav-tabs li a:after {
	content: "";
	background: #fff;
	height: 100%;
	width: 10px;
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease 0s;
}
.vertical-tab .nav-tabs li a:after {
	background: #fff;
}
.vertical-tab .nav-tabs li a:hover:before, .vertical-tab .nav-tabs li.active a:before {
	background: #00a79e;
}
.vertical-tab .nav-tabs li a:hover:after, .vertical-tab .nav-tabs li.active a:after {
	width: 100%;
	opacity: 0;
}
.vertical-tab .tab-content {
	color: #777;
	font-size: 14px;
	line-height: 26px;
	padding: 0 10px;
}
.vertical-tab .tab-content h3 {
	font-weight: 600;
	text-transform: uppercase;
	margin: 0 0 5px 0;
	color: #000;
}

@media only screen and (max-width: 767px) {
.vertical-tab .nav-tabs {
	width: 100%;
	display: block;
}
.vertical-tab .nav-tabs li a {
	padding: 7px 7px;
	margin: 0 0 10px 0;
}
.vertical-tab .tab-content {
	padding: 20px 15px 10px;
	display: block;
}
.vertical-tab .tab-content h3 {
	font-size: 18px;
}
}
