.top-title{
    background: url(../images/applicableField-top.png) no-repeat 50% 50%;
    background-size: 100% 100%;
    height: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.top-title h3{
    font-size: 32px;
    color: #ffffff;
    font-weight: 700;
}
.top-title p{
    font-size: 18px;
    color: #ffffff;
    margin-top: 10px;
}
.tab_wrap{
    border-bottom: 1px solid #aeaeae;
    margin: 20px 0 100px;
    text-align: center;
    width: 100%;
}
.tab_wrap ul{
    max-width: 1250px;
    margin: 0 auto;
    display: flex;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.tab_wrap ul li{
    margin: 0 35px;
    height: 100%;
    display: block;
    padding: 0 20px;
    line-height: 40px;
    cursor: pointer;
}
.tab_wrap ul li.active{
    border-bottom: 2px solid var(--color-blue);
    color: var(--color-blue);
}
.tab_cont{
    max-width: 1250px;
    padding: 0 30px;
    margin: 0 auto 120px;
    display: none;
}
.tab_cont.active{display: block;}

h4{
    font-size: 20px;
    font-weight: 700;
    margin: 100px 0 40px;
    text-align: center;
}

@media screen and (max-width: 965px) {
    .tab_wrap{
        overflow-x: auto; 
        scrollbar-width: none;
        -ms-overflow-style: none; 
    }
    .tab_wrap::-webkit-scrollbar{height: 0; width: 100%;}
    .tab_wrap ul{min-width: 680px;}
    .tab_wrap ul li{margin: 0 15px;}
}
@media screen and (max-width: 768px) {
    h4{margin: 40px auto; font-size: 26px; min-width: 150px;}
    .top-title{height: 260px;}
    .tab_wrap {margin: 20px 0 60px;}
    .tab_cont{margin: 0 auto 100px;}
}
@media screen and (max-width: 560px) {
    h4{font-size: 20px; margin: 20px auto;}
}
@media screen and (max-width: 500px) {
    .top-title{height: 200px;}
    .top-title h3{font-size: 28px;}
    .top-title p{font-size: 16px;}
    .tab_cont{margin: 0 auto 80px;}
}