:root {
    --font-poppins {
        font-family: "Poppins", sans-serif;
    }
}

.header {
    display: flex;
    align-items: center;
    height: 140px;
    width: 100%;
    border-bottom: 1px solid rgba(49, 51, 51, 1);
}

.header__container {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header__logo {
    font-family: var(--font-poppins);
    font-size: 32px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0.1em;
    text-align: left;
    color: rgba(255, 255, 255, 1);
}

.header__nav {
    display: flex;
    align-items: center;
}

.header__list {
    display: flex;
    gap: 35px;
    position: relative;
}

.header__item {}

.header__link {
    font-size: 14px;
    font-weight: 700;
    line-height: 16.41px;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 1);
}

.header__age {}

.header-age__content {
    font-size: 14px;
    font-weight: 700;
    line-height: 16.41px;
    letter-spacing: 0.1em;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(49, 51, 51, 1);
    color: white;
}

.header-burger,
.header__close {
    display: none;
}

@media(max-width: 767.98px) {
    .header__close {
        display: block;
        position: absolute;
        top: 30px;
        right: 30px;
        width: 25px;
    }
    .header-burger {
        display: flex;
        align-items: center;
    }

    .header-logo__wrap {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .header__nav {
        position: fixed;
        transform: translateY(-1000%);
        transition: all 0.3s ease 0s;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: white;
        justify-content: space-between;
        display: flex;
        flex-direction: column;
        z-index: 23;
    }

    .header__nav.active {
        transform: translateY(0);
    }

    .header__list {
        flex-direction: column;
        gap: 12px;
        margin: 0 20px;
        margin-top: 50px;
        width: 100%;
    }

    .header__item {
        width: 100%;
    }

    .header__item a {
        width: 100%;
        padding: 12px;
        border-radius: 12px;
        display: block;
        color: black;
        padding-left: 20px;
        font-size: 18px;
    }

    .header__item:nth-child(1) {
        display: flex;
    }

}