/*FOOTER*/
footer{
    background-image: url('../img/bg-footer.png');
    background-repeat: no-repeat no-repeat;
    background-size: cover;
    z-index: 1000;
    margin-top: -81px;
    position: relative;
    padding-top: 112px;

}
footer a{
    color: #fff;
}
footer a:hover{
    color: #1E9B96;
    transition: 300ms;
}
.logo-footer{
    width: 250px;
}

.conter{
    display: inline-grid;
    grid-column-gap: 10px;
    grid-template-columns: repeat(3,1fr);
    width: 90%;
    max-width: 1282px;
    padding-bottom: 50px;
}

@media (max-width: 900px) {
    .logo-footer {
        width: 141px;
        margin: 10px 0px;
    }
    .conter{
        grid-column-gap: 10px;
        grid-template-columns: 1fr;
    }

}

