/*====
FOOTER
====*/

footer{
    margin-top:40px;
    width: 100%;
    padding: 20px 40px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;

    color: white;
    background-color: #333333;
}

.text-footer{
    padding: 10px;
}

.text-footer a{
    text-decoration: none;
    color: white;

    padding: 10px 15px;
    margin-right: 10px;
    font-size: 16pt;
    font-weight: 600;
    line-height: 8pt;
}

.img-footer{
    width: 100%;
    height: 60px;

    display: flex;
    justify-content: center;
    
    margin-top: 10px;
    margin-bottom: 20px;
}

.img-footer img{
    height: 120%;
    width: auto;
}

/*========
RESPONSIVO
========*/

/*= 930px =*/

@media (max-width:930px){
    .img-footer{
        height: 50px;
    }
}

/*= 510px =*/
@media (max-width:510px){
    .img-footer{
        height: 40px;
    }
}

/*= 400px =*/
@media (max-width:400px){
    .img-footer{
        height: 30px;
    } 
}
















