.footer_wrapper-desc {
    width: 100%;
    height: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    padding: 1.5vw 0;
}

.footer_wrapper-mob {
    display: none;
}

.footer_logo {
    width: 20vw;
}

.nav_links-footer {
    margin-right: 5vw;
}

.nav_links-footer_item {
    font: normal bold 1vw 'Brandon Grotesque';
    text-decoration: none;
    color: #2c2c2c;
    margin-left: 30px;
}

.footer_copyright {
    font: normal 12px 'Brandon Grotesque';
    color: #3a3f1d;
    margin: 0;
}

@media (max-width:768px) {
    .footer_wrapper-desc {
        display: none;
    }

    .footer_wrapper-mob {
        background: #3a3f1d;
        padding: 20px 10%;
        width: 100%;
        height: 25vw;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
    }

    .footer_copyright {
        font: normal 12px 'Brandon Grotesque';
        color: #fff;
        margin: 10px 0;
    }

    .footer_logo {
        width: 40vw;
    }
}