@media only screen and (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .menu {
        width: 60%;
    }
}

@media only screen and (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .header__logo--responsive {
        display: block;
    }

    .menu {
        display: block;
        position: fixed;
        top: 0;
        left: -240px;
        bottom: 0;
        background: #4DFFBE;
        width: 15rem;
        transition: left ease 0.3s;
    }

    .menu__item {
        margin-bottom: 2.5rem;
        display: flex;
        justify-content: center;
        font-size: 1.2rem;
    }

    .header__logo {
        margin-top: 1rem;
    }

    .menu__link--active {
        display: block;
        position: fixed;
        left: -8rem;
        top: 23.5rem;
        transition: left ease 0.3s;
    }

    .header__icon {
        display: block;
    }
}

@media only screen and (max-width: 768px) {
    .container {
        max-width: 540px;
    }
}

@media only screen and (max-width: 576px) {
    .container {
        max-width: 100%;
    }
}