footer {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background-color: rgb(93, 43, 120);
    color: white;
}
footer a {
    display: inline-block;
}

footer p, footer a {
    padding-bottom: 0.25rem;
}
footer a svg {
    height: 1.15em;
    translate: 0px 4px;
}

footer svg {
    display: inline-block;
}

.contact-info-footer {
    display: flex;
    position: relative;
    padding: 0.5rem;
    justify-content: space-between;
    gap: 2rem;
}

.contact-info-footer::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    translate: 0 -50%;
    height: 90%;
    background-color: rgba(0, 0, 0, 0.5);
    width: 1px;
}

.trademark-footer {
    display: flex;
    align-items: flex-end;
    flex: 1;
}

@media screen and (width < 600px){
    .contact-info-footer {
        flex-direction: column;
    }
    footer {
        flex-direction: column-reverse;
    }
    .contact-info-footer::before {
        display: none;
    }
}