footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    max-width: var(--wrap);
    width: 100%;
    margin: 100px auto 0 auto;
    border-top: 1px solid var(--line);
}
.logo-footer{
    width: 56px;
    height: 56px;
}
.logo-footer img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer-links{
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease-in-out;
}
.footer-links a:hover{
    color: var(---maincolor);
}
.footer-copyright{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-copyright p{
    font-size: 14px;
    color: var(--muted);
}
.followes{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
@media (max-width: 1140px){
    footer{
        margin: 50px 20px;
        width: calc(100% - 40px);
    }
}
@media (max-width: 768px){
    footer{
        flex-direction: column;
    }
    .footer-links{
        flex-direction: column;
        margin-top: 20px;
    }
    .footer-copyright{
        margin-top: 20px;
    }
    .followes{
        justify-content: center;
        align-items: center;
    }
    .footer-copyright p{
        text-align: center;
    }
}
