.tab .nav-tabs{
    display: inline-block;
    background: #fff;
    border-radius: 50px;
    border: none;
    padding: 6px;
}
.tab .nav-tabs li{
    float: none;
    display: inline-block;
    position: relative;
	margin-bottom: 10px;
}
.tab .nav-tabs li a {
    font-size: 14px;
    font-weight: 700;
    background: #9E9E9E;
    color: #fff;
    border: none;
    padding: 10px 10px;
    border-radius: 50px;
    transition: all 0.5s ease 0s;
}
.tab .nav-tabs li a:hover{
    background: #ffa399;
    color: #fff;
    border: none;
}
.tab .nav-tabs li.active a,
.tab .nav-tabs li.active a:focus,
.tab .nav-tabs li.active a:hover{
    border: none;
    background: #ffa399;
    color: #fff;
}
.tab .tab-content{
    font-size: 14px;
    color: #686868;
    line-height: 25px;
    text-align: left;
    padding: 5px 20px;
}
.tab .tab-content h3{
    font-size: 22px;
    color: #5b5a5a;
	margin-top: 10px;
    text-transform: uppercase;
}
@media only screen and (max-width: 480px){
    .tab .nav-tabs{
        border-radius: 10px;
    }
    .tab .nav-tabs li{
        width: 100%;
        text-align: center;
        margin-bottom: 5px;
    }
}