footer {
    background: #0D434D;
    background-size: 100% 100%;
    margin-top: 5px;
    display: grid;
    grid-template-columns: 70%;
    justify-content: center;
    padding-top: 30px;
    padding-bottom: 30px;
    font-family: 'm-regular';
    font-size: 0.9rem;
    color: white;




}

footer .top {
    display: grid;
    grid-template-columns: repeat(4, 25%);


}

footer .top .contato .title,
footer .top .sede .title {
    margin-bottom: 10px;
    word-wrap: break-word;
    width: 100%;
}

footer .top .contato {
    padding-left: 18px;
}

footer .logo {
    display: flex;
    justify-content: start;
}

footer .bottom .border {
    width: 100%;
    border: 1px solid white;
    margin-top: 20px;
}

footer .bottom .redes_sociais {
    padding-top: 5px;
    display: grid;
    grid-template-columns: 50% 50%;
}

footer .bottom .redes_sociais i {

    font-size: 21px;
}

footer .bottom .developer img {
    width: 60px;

}

footer .bottom .developer p {
    display: flex;
    column-gap: 5px;
    align-items: center;
    justify-content: end;
}

@media only screen and (max-width: 782px) {
    footer .top {
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    footer .top .contato {
        padding-left: 0px;
        padding-top: 10px;

    }

    footer .top .sede {
        padding-left: 0px;
        padding-top: 10px;

    }

    footer .logo img {
        object-fit: cover;
        width: 100%;
        margin-top: 5px;
        height: 60px;
        padding-left: 0px;
        text-align: center;
        margin-bottom: 10px;
        width: 150px;
    }

    footer .logo {
        display: flex;
        justify-content: center;
    }

    footer .icon_network {
        display: flex;
        flex-direction: center;

    }

    footer .bottom .redes_sociais {
        padding-top: 5px;
        display: flex;
        grid-template-columns: 50% 50%;
        flex-direction: column;
    }

    footer .bottom .icon_network {
        display: flex;
        justify-content: center;
    }

    footer .bottom .developer p {
        display: flex;
        column-gap: 5px;
        align-items: center;
        justify-content: center;
    }



}