#footer h2{
    text-align: center;
    font-size:3rem;
    letter-spacing: 0.1em;
    position: relative;
    font-weight: bold;
    text-align: center;
    font-feature-settings: "pkna" 1;
    margin-bottom: 20px;
}
#footer h2.en:after{
    content: attr(data-en);
    position: absolute;
    font-family: 'cabin';
    font-style: normal;
    font-weight: 600;
    font-size: 1.6rem;
    color: inherit;
    letter-spacing: .05em;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -30px;
    line-height: 1.3;
}
#footer .supporting-companies-wrap{
    background: #eee;
    padding: 60px 30px 40px;
}
#footer .supporting-companies-list{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;			
}
#footer .supporting-companies-list div{
    width: 220px;
    background: white;
    
    margin:9px;
}#footer .supporting-companies-list div a{
    position:relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    padding: 1rem;
}
#footer .supporting-companies-list div a img{			
    max-height: 100%;
    /* position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);				 */
}
@media screen and (max-width: 767px){
    #footer h2{
        font-size: 2.6rem;
    }
    #footer h2.en:after{
        top: -40px;
    }
    #footer .supporting-companies-wrap{
        padding: 60px 10px 30px;
    }
    #footer .supporting-companies-list div{
        width: calc(50% - 10px);
        margin: 5px;
    }
}