ul.tabs {
    margin: 0;
    padding: 0;
    float: left;
    list-style: none;
    width: 100%;
}

ul.tabs li {
    margin: 0;
    cursor: pointer;
    line-height: 31px;
    border: 1px solid #ccc;
    background-color: #eee;
    color: #000;
    overflow: hidden;
    position: relative;
    text-align: center;
    float: left;
    width: 100%;
    font-weight: bold;
}
@media screen and (min-width: 480px){
    ul.tabs li{width: 50%}
    ul.tabs li:last-child{display: none;}
}
@media screen and (min-width: 640px){
    ul.tabs li{width: 25%;}
    ul.tabs.profession li{width: 15%;}
    ul.tabs.profession li:nth-child(1){width: 20%;}
    ul.tabs.profession li:nth-child(2), ul.tabs.profession li:nth-child(5){width: 25%;}
    ul.tabs li:last-child{display: block;}
}
@media screen and (min-width: 992px){
    ul.tabs.profession li{width: 20%!important;}
}
ul.tabs li:hover {
    background-color: #fff;
}

ul.tabs li.active {
    background-color: #fff;
    display: block;
    border-bottom-color: #fff;
    color: #1BB70F;
}

.tab_container {
    border: 1px solid #ccc;
    clear: both;
    float: left;
    width: 100%;
    background: #fff;
    overflow: auto;
    margin-top: -1px;
}

.tab_content {
    padding: 20px;
    display: none;
}