@charset "utf-8";
/* CSS Document */

.tabs-menu {
    height: 88px;
    float: left;
    clear: both;
	width:86%;
	margin: 0 8%;
	text-align: center;
	background: #2b84c5;
	border-radius: 44px;
	overflow:hidden;
}

.tabs-menu li {
    height: 88px;
    line-height: 88px;
    float: left;
	background: #2b84c5;
	width: 33.33%;
	box-sizing:border-box;

}

.tabs-menu li.current {
    position: relative;
    background: #054778;
    z-index: 0;
}

.tabs-menu li a {
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
	text-align: center;
	display:block;
	padding: 0;
	font-size: 24px;
	font-family: 'montserratblack'; 
}

.tabs-menu .current a {
    color: #fff;
}

.tab {
    float: left;
    margin-bottom: 20px;
    width: 100%;
}

.tab-content {
    width: 100%;
	float: left;
    display: none;
}

#tab-1 {
 display: block;   
}

@media screen and (max-width: 1850px) { 
.tabs-menu { width:100%; margin: 0 0%; }
}


@media screen and (max-width: 960px) { 
.tabs-menu { height: auto; border-radius: 16px;} 
.tabs-menu li { height: 50px; line-height: 50px; width: 100%;  } 
.tabs-menu li a { font-size: 20px; }
}

