/* Footer */

#footer_wrapper {
    background-color: #28282B;
    display: flex;
    justify-content: center;
}   

.footer_element {
    display: block;
    width: 270px;
    color: #efefef;
    font-family: 'Titillium Web', sans-serif;
}

.footer_element a {
    text-decoration: none;
    color: rgb(250, 200, 200);
    font-family: 'Titillium Web', sans-serif;
}

.footer_element a i {
    margin-left: 5px;
}

#footer_links a {
    display: block;
}

#footer_container {
    display: flex;
    text-align: center;
}

.footer_title {
    font-size: 30px;
}

.footer_element a:hover {
    color: #32CD32;
}

#footer_divider {
    color: #efefef;
}

#copyright {
    color: #efefef;
    font-family: 'Titillium Web', sans-serif;
}

#copyright_year {
    color: #bdbdbd;
}

.footer_logo {
    width: 25px;
    height: auto;
    margin-top: 5px;
    border-radius: 5px;
}

#footer_logo_wrapper {
    display: flex;
    justify-content: center;
}

#footer_logo_container {
    width: 150px;
    display: flex;
    justify-content: space-evenly;
}

@media(max-width: 850px) {

    #footer_wrapper {
        height: 380px;
        margin-top: 30px;
    }

    #footer_container {
        flex-direction: column;
    }

    .footer_element {
        margin-top: 15px;
    }

    #copyright_container {
        display: flex;
        justify-content: center;
        margin-bottom: 5px;
    }

    #footer_divider {
        margin-top: -80px;
    }

}



@media(min-width: 851px) {

    #footer_wrapper {
        height: 230px;
        margin-top: 50px;
    }

    #footer_container {
        flex-direction: row;
        justify-content: center;
    }

    .footer_title {
        margin: 35px 0 15px 0;
    }

    .footer_element {
        flex: 1 1 33.33%;
    }

    #copyright {
        position: absolute;
        margin: 5px 0 0 15px;
    }

    #footer_divider {
        margin-top: -55px;
    }
}



