.header {
    display: flex;
    justify-content: space-between;

    background: #F9F9F9;
    padding-top: 30px;
}

.header__logo-img {
    width: 217px;
}

.header__nav {
    font-family: 'Roboto flex', serif;
    padding-top: 7px;
}

.header__list {
    display: flex;
    align-items: center;
    gap: 19px;
}

.header__item--border {
    padding: 4px 6px;
    border: 1px solid rgba(114, 114, 114, 0.8);
    border-radius: 4px;
}

.header__link {
    font-size: 16px;
    font-weight: 300;
    color: #777;

    transition: all 0.2s ease-in;
}

.header__link:hover {
    opacity: 0.9;
}

.header__link--login {
    padding: 6px 15px;
    background: #1EADE8;
    color: #FFFFFF;

    border-radius: 5px;
}

.footer__col-left {
    display: flex;
    align-items: center;
    gap: 28px;
}

.menu {
    display: none;
}

.header__nav--mobile {
    display: grid;
    gap: 16px;

    position: absolute;
    background-color: white;

    top: 52px;
    left: 0;

    width: 100%;
    height: 250px;
    z-index: 9999;
}

@media screen and (max-width: 999px) {
    .header {
        background: #fff;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    .header__item--des {
        display: none;
    }

    .menu {
        display: block;
        margin-top: -5px;
    }

    .header__logo-img {
        width: 130px;
    }

    .header__nav {
        padding-top: 0;
    }

    .header__nav--mobile .header__item {
        font-size: 32px;
        z-index: 999;
    }
}

@media screen and (min-width: 1000px) {
    .header__nav--mobile {
        display: none;
    }
}