footer {
    width: 100%;
    background: #1C1C1C;
    color: #fff;
    display: flex;
    border-top: 1px solid;
}
footer .logo {
    width: 50%;
    padding: 50px 0;;
}
footer .logo img {
    width: 40%;
    object-fit: cover;
    padding-left: 12%;
}
footer .menu {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    padding: 60px 0 0;
}
footer .menu li {
    width: 15%;
    text-align: center;
    position: relative;
}
footer .menu li:last-child {
    width: 25%;
}
footer .menu li a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    font-size: 13px;
    color: #fff;
}
footer .menu li a:hover {
    color: #fff;
}
@media screen and (min-width: 1300px) {
    footer .menu li a {
        font-size: 1vw;
    }
}
@media screen and (max-width: 768px) {
    footer {
        display: block;
    }
    footer .logo {
        width: 100%;
        padding: 15px 0;
        text-align: center;
    }
    footer .logo img {
        width: 45%;
        padding-left: 0;
    }
    footer .menu {
        width: 100%;
        padding: 10px 0;
        display: block;
        justify-content: center;
        padding-bottom: 30px;
    }

    footer .menu li,
    footer .menu li:last-child {
        height: 40px;
        width: 100%;
        line-height: 40px;
    }
    footer .menu li a {
        font-size: 13px;
    }
}
