.footerMenu{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background-color: #141414;
}
.footerMenu a {
    padding: 0 20px;
    display: flex;
    align-items: center;
}
.footerMenu a:not(:last-child)::after{
    content: "";
    max-width: 1px;
    min-width: 1px;
    max-height: 25px;
    min-height: 25px;
    margin-left: 40px;
    background-color: #EFEFEF;
}
.footerMenu p {
    font-family: 'Oswald', sans-serif;
    font-size: 0.9125rem;
    color: #EFEFEF;
    text-decoration: underline;
    padding: 10px 0;
    text-transform: uppercase;
}
@media screen and (max-width: 750px) {
    .footerMenu{
        flex-direction: column;
    }
    .footerMenu a:not(:last-child)::after{
        min-width: 100%;
        max-height: 1px;
        min-height: 1px;
        margin: 0;
    }
    .footerMenu a{
        flex-direction: column;
        min-width: 100%;
        max-width: none;
    }
}