footer {
    background-color: #121212;
    color: #FFF;
}

footer > div {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2em;
    font-weight: 600;
}

footer > div > div {
    padding: 0em 2em;
    margin: 2.5em;
}

footer > div > div > p:first-child{
    font-family: 'Bebas Neue';
    font-weight: 400;
    font-size: 40px;
    margin: 0;
}

footer > div > div > p:last-child{
    font-size: 14px;
    margin: 0;
}

footer > div > ul {
    border-left: 2px solid #FFF;
    padding: 0em 2em;
    list-style-type: none;
}

footer > div > ul > li {
    padding: 0.25em;
    white-space: nowrap;
    font-size: 18px;
}

footer a {
    text-decoration: none;
}

footer a:hover {
    color: #0FA643;
}

footer > div > div:first-child {
    position: relative;
}

footer > div > div:first-child::before {
    content: "";
    position: absolute;
    top: 0;
    left: -50px;
    background-image: url("/static/images/public/logo/logo.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    width: 70px;
    height: 100%;
}

footer > div > div > p {
    white-space: nowrap;
}



@media screen and (max-width: 650px) {
    footer > div {
        flex-direction: column-reverse;
    }

    footer > div > ul {
        border: none;
    }

    footer > div > div:first-child::before {
        left: -40px;
        width: 60px;
    }
}