@media screen and (min-device-width: 901px){
    .footer {
        width: 100%;
        padding-bottom: 3rem;
        display: flex;
        justify-content: center;
    }
    .footer__hr {
        height: 0.3rem;
        border: 0.3rem solid black;
    }
    .footer__links-list {
        width: 100%;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 3rem 0;
    }
    .footer-link {
        color: rgb(136, 136, 136);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 2rem;
    }
}
@media screen and (min-device-width: 320px) and (max-device-width: 900px)  {
    .footer {
        width: 100%;
        padding-bottom: 1rem;
        display: flex;
        justify-content: center;
    }
    .footer__hr {
        height: 0.3rem;
        border: 0.3rem solid black;
    }
    .footer__links-list {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        flex-wrap: wrap;
        padding: 1rem 0;
    }
    .footer-link {
        color: rgb(136, 136, 136);
        font-size: 1.6rem;
        font-weight: 500;
        line-height: 2rem;
    }
}