.web-footer {
    padding: 20px;
    background-color: #101c2b;
    text-align: center;
    color: white;
}

.web-footer .logo {
    margin: 40px;
}

.web-footer .menu {
    margin: 40px auto;
}

.web-footer .menu ul {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
}

.web-footer .menu ul li {
    flex: 1;
}

.web-footer .menu ul li a {
    position: relative;
}

.web-footer .menu ul li a::after {
    content: "";
    position: absolute;
    width: 0;
    bottom: -5px;
    left: 50%;
    height: 1px;
    background-color: #999;
    transition: all 0.3s ease;
}

.web-footer .menu ul li a:hover::after {
    content: "";
    position: absolute;
    width: 100%;
    bottom: -5px;
    left: 0;
    height: 1px;
    background-color: #999;
    transition: all 0.3s ease;
}

.copyright {
    position: relative;
    color: #8c8c8c;
    margin: 60px 0 40px;
}

.copyright::before {
    content: "";
    top: -10px;
    left: 50%;
    width: 350px;
    height: 1px;
    position: absolute;
    background-color: #8894a5;
    transform: translateX(-50%);
}

@media only screen and (max-width: 1024px) {
    .web-footer .menu {
        display: none;
    }

    .copyright::before {
        top: -20px;
    }
}


@media only screen and (max-width: 640px) {
    .copyright::before {
        width: 90%;
    }
}