.foot-menu {
    display: flex;
    justify-content: space-evenly;
    margin: 0 auto;
}

#foot-menu * {
    -webkit-font-smoothing: auto;
}

.foot-menu a {
    display: flex;
    flex-direction: column;
    color: rgba(0,0,0,0.9);
    align-items: center;
}
.foot-menu i {
    font-size: 1.6rem;
}
.foot-menu img {
    max-width: 1.7rem;
}
.foot-menu span {
    margin-top: .3rem;
    font-size: .9rem;
}
.footer-desc {
    margin-top: 1.5rem;
    border-bottom: 1px solid rgb(204, 204, 204);
    padding: .5rem 0;
}
.footer-desc b {
    color: rgba(0,0,0,0.9);
    font-size: 1rem;
}
.footer-desc p {
    color: rgba(0,0,0,.7);
    font-size: .9rem;
    padding: 1rem 0;
    line-height: normal;
}
.footer-link {
    display: flex;
    flex-direction: column;
    font-weight: normal;
}
.footer-link a {
    font-size: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(204, 204, 204);
}
.footer-link span {
    color: rgba(0,0,0,.5);
}
.contact-link {
    padding: 1rem 0 2.5rem;
    border-bottom: 1px solid rgb(204, 204, 204);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-link img {
    max-width: 2rem;
    margin: 0 1rem;
}

.contact-link i {
    font-size: 1.6rem;
    margin: 0 1rem;
}

.line-container {
    width: 100%;
    height: 1px;
    background-color: #aca4a4;
    margin: 2rem 0;
}

body.theme-dark .line-container {
    background-color: #444444;
}

body.theme-dark .foot-menu a {
    color: #fff;
}
body.theme-dark .footer-desc b {
    color: #fff;
}
body.theme-dark .footer-desc p {
    color: rgba(255,255,255,.7);
}
body.theme-dark .footer-link span {
    color: rgba(255,255,255,.5);
}
body.theme-dark .footer-link a {
    border-bottom: 1px solid rgb(68, 68, 68);
}
body.theme-dark .footer-desc {
    border-bottom: 1px solid rgb(68, 68, 68);
}
body.theme-dark .contact-link {
    border-bottom: 1px solid rgb(68, 68, 68);
}

@media(max-width: 767px) {
    .footer-desc b {
        font-size: 1.2rem
    }
    .foot-menu img {
        max-width: 1.5rem;
    }
    .footer-desc p {
        padding: .5rem 0;
    }
    .contact-link img {
        max-width: 2.25rem;
    }
    .contact-link i {
        margin: 0 .8rem;
    }
}