footer{
    min-height: 142px;
    width: 100vw;
    background-color: #fafafa;
    border-top: 4.5px solid var(--branding-color);
}
.desktop-footer{
    display: grid;
    align-items: center;
    grid-template-columns: 1fr 1fr 1fr;
    justify-content: space-between;
    padding: 20px;
    position: relative;
    width: 100%;
}
.mobile-footer{
    display: none;
}
footer a{
    color: #2C2C2C;
    font-size: 12px;
}
.flow-link{
    position: absolute;
    right: 20px;
    bottom: 15px;
}
.footer-left{
    display: flex;
    align-items: center;
}
.footer-left span{
    margin-left: 8px;
}
.footer-left img{
    width: 22px;
}
.footer-middle{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-mm-logo{
    width: 80px;
    margin-top: -5px;
}
.footer-mm-span{
    font-size: 12px;
}
.footer-socials{
    padding: 10px 0;
    display: flex;
    align-items: center;
}
.footer-linkedin-logo{
    width: 16px;
    margin-right: 20px;
}
.footer-insta-logo{
    width: 19px;
}
.copyright-span{
    font-size: 11px;
}
.footer-links{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 15px;
}

@media only screen and (max-width: 860px) {
    .desktop-footer{
        display: none;
    }
    .mobile-footer{
        padding: 25px 0 50px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
    }
    .footer-socials{
        position: absolute;
        top: 8px;
        width: 100%;
        justify-content: flex-end;
        padding: 0 10px;
    }
    .footer-left{
        margin-top: 5px;
    }
    .footer-links{
        display: flex;
        flex-direction: row;
        align-items: center;
        margin-top: 5px;
        margin-bottom: 0;
    }
    .footer-links span{
        font-weight: 300;
        margin: 0 3px;
    }
}