a:hover,
a:focus{
    text-decoration: none;
    outline: none;
}
.vertical-tab{
    font-family: 'Montserrat', sans-serif;
    display: table;
}
.vertical-tab .nav-tabs{
    width: 27%;
    min-width: 27%;
    padding-left: 15px;
    border: none;
    vertical-align: top;
    display: table-cell;
}
.vertical-tab .nav-tabs li{ float: none; }
.vertical-tab .nav-tabs li a{
    color: #444;
    background: linear-gradient(#e9e9e9,transparent);
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 10px;
    margin: 0 0 15px 0;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease 0s;
}
.vertical-tab .nav-tabs li a:hover,
.vertical-tab .nav-tabs li.active a{
    color: #0b697e;
    background: linear-gradient(#e9e9e9,transparent);
    border: none;
}
.vertical-tab .nav-tabs li.active a:hover,
.vertical-tab .nav-tabs li.active a{ color: #0b697e; }
.vertical-tab .nav-tabs li a:before,
.vertical-tab .nav-tabs li a:after{
    content: "";
    background: #0b697e;
    height: 10px;
    width: 10px;
    border-radius: 50%;
    transform: scale(0);
    position: absolute;
    bottom: -2px;
    left: 0;
    z-index: -1;
    transition: all 0.3s ease 0s;
}
.vertical-tab .nav-tabs li a:after{
    width: calc(100% - 5px);
    height: 3px;
    border-radius: 0;
    transform-origin: left center;
    bottom: 1px;
    left: 5px;
}
.vertical-tab .nav-tabs li.active a:before,
.vertical-tab .nav-tabs li a:hover:before,
.vertical-tab .nav-tabs li.active a:after,
.vertical-tab .nav-tabs li a:hover:after{
    transform: scale(1);
}
.vertical-tab .tab-content{
    color: #fff;
    background: #0b697e;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    line-height: 23px;
    padding: 20px;
    display: table-cell;
}
.vertical-tab .tab-content h3{
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 0 7px;
}
@media only screen and (max-width: 479px){
    .vertical-tab .nav-tabs{
        width: 100%;
        display: block;
    }
    .vertical-tab .nav-tabs li a{ padding: 15px 10px 14px; }   
    .vertical-tab .tab-content{
        font-size: 14px;
        display: block; 
    }
}