footer{
    width: 100%;
    padding: 1rem 0;
    bottom: 0;
    left: 0;
    z-index: 11;
    transition: all 0.3s;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.694rem;
    background-color: #111111;
    color: #ffffff;
    margin-top: 2rem;
}
footer.footer-dark{
    color: #ffffff;
}
footer .footer__cookie a{
    color: #ffffff;
    border-bottom: .1rem solid #ffffff;
    transition: .3s all ease-in-out;
}
footer .footer__cookie a:hover{
    border-bottom: .1rem solid transparent;
}
footer.footer-light{
    color: #111111;
}
footer.footer-light .footer__cookie a{
    color: #111111;
    border-bottom: .1rem solid #111111;
    transition: .3s all ease-in-out;
}
footer.footer-light .footer__cookie a:hover{
    border-bottom: .1rem solid transparent;
}
.footer__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    gap: 3rem;
}
.footer__cookie{
    font-size: 1rem;
}
.footer__copyright{
    font-size: 1rem;
    width: 100%;
    max-width: max-content;
}
@media screen and (max-width: 767.9px) {
    .footer__wrap{
        gap: 1rem;
        align-items: normal;
        flex-direction: column;
    }
}
@media screen and (max-width: 1440px) {
    footer{
        padding: 1rem 0 .5rem 0;
    }
}
@media screen and (max-width: 990.9px) {
    .footer{
        padding: 1rem 0;
    }
    footer, .footer--main-page{
        position: inherit;
        background-color: #111111;
        color: #ffffff;
        margin-top: 2rem;
    }
    footer.footer-light{
        color: #ffffff;
    }
    footer.footer-light .footer__cookie a{
        color: #ffffff;
        border-bottom: .1rem solid #ffffff;
        transition: .3s all ease-in-out;
    }
}

