.os-tabs-CNTR {
    width: 100%;
    background: #fff;
    padding-bottom: 20px;
}
.os-tabs-wrap {
    margin: 0 auto;
    background: #f7f8f9;
    border-bottom: 4px solid #00b0ec;
    box-sizing: border-box;
    padding-top: 40px;
    position: relative;
    z-index: 1;
}
.os-tabs-wrap ul {
    max-width: 768px;
    margin: auto;
    list-style: none;
    padding: 0;
    display: flex;
}
.os-tabs-wrap li{
	width: 33.333%;
}
.os-tabs-wrap li a{
	display: block;
    width: 90%;
    margin: auto;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #333;
    background: #fff;
    border: 1px solid #eee;
    font-size: 20px;
    text-decoration: unset;
    border-bottom: none;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    overflow: hidden;
}
.os-tabs-wrap li a:hover{
	text-decoration: unset;
}
.os-tabs-wrap li.current a{
	background: #00b0ec;
	border-color: #00b0ec;
	color: #fff;
	cursor: unset;
	font-weight: bold;
}
@media(max-width: 768px){
	.os-tabs-CNTR{
		padding-bottom: 0;
	}
	.os-tabs-wrap li a{
		font-size: 16px;
		height: 42px;
		line-height: 42px;
	}
}
@media(max-width: 480px){
	.os-tabs-wrap{
		padding-top: 30px;
		border-width: 2px;
	}
	.os-tabs-wrap li a{
		font-size: 12px;
		height: 30px;
		line-height: 30px;
	}
}