.tabs {
    margin-top: 50px;
    height: 50px;
    line-height: 50px;
    margin-bottom: 50px;
}
.tabs h4 {
    width: 30%; 
}

.tabs ul {
    display: flex;
    flex-direction: row-reverse;
    width: 70%; 
    text-align: center;
    height: 40px;
    line-height: 40px;
    padding-top: 10px;
}
.tabs ul li {
    float: right;
    width: 17%; 
    background-color: rgba(0, 0, 0, 0.5);
    /* border: 1px solid #000; */
    margin: 0 1.5%;
    box-sizing: border-box;
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: all 0.6s;
}
.tabs ul li:nth-child(2){
    order:-1
}
.tabs ul li a {
    color: #fff;
    font-size: 14px;
    
}
.tabs ul li.active,
.tabs ul li:hover {
    background-color: #0080ca;
    /* transform: scale(1.01); */
}
.tabs h4 {
    position: relative;
    font-size: 40px;
    height: 50px;
    font-weight: 500;
    line-height: 50px;

}

.tabs h4::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #0080ca;
    bottom: -15px;

}
@media screen and (max-width: 1450px) {
    .tabs h4 {
        font-size: 30px;
    }
}