footer{
    height: 250px;
    width: 100%;
    background-color: var(--txt-color);
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
}

footer .logo-area{
    display: flex;
    align-items: center;
}

footer .logo-area img{
    height: 35px;
}

footer .logo-area h1{
    padding-left: 10px;
    color: white;
}

#verybottom{
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--m-gray);
}

@media only screen and (max-width:992px) {
    footer .logo-area {
        justify-content: center;
    }
}
@media only screen and (max-width:768px) {

}
@media only screen and (max-width:576px) {

}