@media screen and (max-width: 992px) {
    .menu{
        background-color: #373A40;
        position: fixed;
        right: -240px;
        top: 0;
        bottom: 0;
        flex-direction: column;
        padding: 3rem;
        transition: 120ms all ease-in ;
    }
    .toggle-menu{
        display: block;
    }
    .nav__link{
        display: none;
    }
    .nav__link-mobile{
        display: block;
    }
    .nav__open{
        right:0;
    }
    .menu__link{
        color: #fff;
    }
    .menu__link:hover{
        color: #fff;
    }
}
@media screen and (max-width: 768px) {
    .nav-logo{
        font-size: 2.2rem;
    }
    .footer__caption{
        font-size: 1.6rem;
    }
    .footer__icon{
        width: 2.5rem;
        height: 2.5rem;
    }
    .box__img-wrapper{
        width: 15rem;
        height: 15rem;
    }
    .box__icon{
        right: 80%;
    }
}
@media screen and (max-width: 576px) {
    .footer__wrapper{
        flex-direction: column;
    }
    .footer__caption{
        font-size: 1.4rem;
    }
    .footer__icon{
        width: 2rem;
        height: 2rem;
    }
    .footer__social-wrapper{
        margin-top: 0;
    }
}
@media screen and (max-width: 460px) {
    .footer__icon{
        width: 2.5rem;
        height: 2.5rem;
    }
}