.footer {
    padding: 1.25em 0 3.75em;
    position: relative;
    z-index: 1;
}
.footer .menu_wrap:not(:last-child) {
    margin-bottom: 2.5em;
}
.footer .menu {
    display: flex;
    flex-wrap: wrap;
    margin: -0.25em -1em;
    list-style-type: none;
    padding: 0;
    justify-content: center;
}
.footer .menu-item {
    margin: 0.25em 1em;
    position: relative;
}
.footer .menu-item:not(:last-child):after {
    content: '·';
    font-size: 0.875em;
    display: block;
    position: absolute;
    top: 50%;
    left: calc(100% + 1em);
    transform: translate(-50%, -50%);
    color: rgba(239, 237, 253, 0.60);
}
.footer .menu-item a {
    color: rgba(255, 255, 255, 0.60);
    font-size: 0.875em;
    text-decoration: none;
}
.footer .menu-item a:hover {
    text-decoration: underline;
}
.footer .copyright {
    color: rgba(255, 255, 255, 0.60);
    text-align: center;
    font-size: 0.875em;
}
@media(max-width: 639px) {
    .footer .menu {
        margin: 0;
        display: block;
        text-align: center;
    }
    .footer .menu-item {
        margin: 0;
    }
    .footer .menu-item:not(:last-child) {
        margin-bottom: 1.75em;
    }
    .footer .menu-item:not(:last-child):after {
        left: 50%;
        top: calc(100% + 0.875em);
    }
    .footer .menu-item a {
        font-size: 0.75em;
    }
    .footer .copyright {
        font-size: 0.75em;
    }
}