.header {
    position: absolute;
    display: flex;
    justify-content: center;
    height: auto;
    z-index: 5;
    width: 100%;
}

.header__container {
    padding: var(--padding);
    width: 100%;
}

.header__container {
  padding: 80px 40px 40px;
}

.header__content {
    background: rgba(255, 255, 255, 1);
    border-radius: 21px;
    display: flex;
    flex-direction: row;
    padding: 10px 100px;
    justify-content: space-between;
    align-items: center;
}

.header__buttons--reg button {
    opacity: 1;
    border-radius: 8px;
    padding: 5px 15px 10px 15px;
    gap: 10px;
    border-width: 1px;
    border: 1px solid rgba(0, 0, 0, 1);
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    background: none;
    letter-spacing: -3%;
    color: rgba(17, 4, 1, 1);
}

.header__buttons--login button {
    opacity: 1;
    border-radius: 8px;
    padding: 5px 15px 10px 15px;
    gap: 10px;
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -3%;
    color: rgba(255, 255, 255, 1);
    background: rgba(196, 50, 26, 1);
    border: none;
}


.header__buttons--img {
    width: 60px;
    height: 60px;
    position: relative;
}

.header__buttons--img .frame--logo {
    position: absolute;
    z-index: 2;
}

.header__buttons--img .photo--logo {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    left: 15px;
    top: 15px;
}


.header__buttons--shop a {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -3%;
    text-decoration: none;
    color: rgba(0, 0, 0, 1);
}

.header__buttons--img img {
    width: 60px;
    height: 60px;
}

.header__links--item {
    font-weight: 500;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: -3%;
}


.header__links {
    display: flex;
    column-gap: 20px;
    flex-direction: row;
}

.header__links a {
    color: rgba(0, 0, 0, 1);
    text-decoration: none;
}

.header__burger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.header__burger span {
    display: block;
    width: 100%;
    height: 3px;
    background: #000;
    border-radius: 2px;
    margin: 5px 0;
    transition: 0.3s;
}

.header__buttons {
    display: flex;
    column-gap: 20px;
    flex-direction: row;
    margin-left: 100px;
    align-items: center;
}

@media (max-width: 1140px) {
    .header__burger {
        display: block;
        margin-bottom: 10px;
    }

    .header__links {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        padding: 20px;
        row-gap: 14px;
    }

    .header__links.active {
        display: flex;
    }

    .header__buttons {
        margin-left: 0px;
    }

    .header__logo {
        margin-left: 30px;

    }

    .header__burger {

        width: 20px;
        height: 20px;

    }

    .header__logo img {
        max-width: 150px;
    }


    .header__buttons .header__buttons--shop {
        display: none;
    }


    .header__container {
        padding: 0;
    }

    .header__content {
        border-radius: 0;
        padding: 20px;
    }

}