/* CLASSES DO FOOTER */

footer{
    background-color: #090909;
    color: #fff;
    padding: 40px;
}

.footerContainer{
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    max-width: 991px;
    padding-bottom: 10px;
    flex-direction: row;
}

.footerItems{
    display: flex;
    flex-direction: row;
    width: 40%;
}

.footerContainer2{
    text-align: center;
    margin: 0 auto;
    justify-content: space-between;
    display: flex;
    max-width: 991px;
    flex-direction: column;
    padding-top: 10px;
}

.footerIcons ul{
    padding-top: 10px;
    justify-content: center;
    display: flex;
    flex-direction: row;
}

.footerIcons li{
    border: 1px solid #fff;
    padding: 10px 15px 10px 15px;
    margin: 10px; 
}

.footerIcons i{
    font-size: 36px;
}

@media screen and (max-width: 800px){
    .footerIcons li{
        opacity: 0.7;
        border: 1px solid #fff;
        padding: 5px 10px 5px 10px;
        margin: 10px; 
        cursor: pointer;
    }

    footer li{
        margin: 10px 10px !important;
    }
}

