.header_body{
    position: relative;
    display: flex;
    justify-content: space-between;
    height: 70px;
    align-items: center;
}

/* Список ссылок */
.list {
    display: flex;
    position: relative;
}

/* Каждый пункт ссылок */
.list li {
    width: max-content;
    list-style:none;
}



/* Бургер значок */
body.lock{
    overflow: hidden;
}

.burger {
    display: block;
    position: relative;
    width: 24px;
    height: 16px;
}

.burger:hover{
    cursor: pointer;
}

.burger::before,
.burger::after {
    content: '';
    background-color: white;
    position: absolute;
    width: 100%;
    height: 2px;
    transition: all 0.1s ease 0s;
}

.burger::before{
    top: 0;
}

.burger::after{
    bottom: 0;
}

.burger.active::before{
    transform: rotate(45deg);
    top: 7px;
}

.burger.active::after{
    transform: rotate(-45deg);
    bottom: 7px;
}

.burger.active span {
    transform: scale(0);
}

.burger span{
    position: absolute;
    background-color: white;
    left: 0;
    width: 100%;
    height: 2px;
    top: 7px;
    transition: all 0.3s ease 0s;
}


/*Менюшка*/
.menu{
    display: none;
    position: fixed;
    width: max-content;
    height: fit-content;
    background-color: #4D526F;
    padding: 20px;
    padding-right: 150px;
    padding-bottom: 40px;
}

.menu.active {
    display: block;
    top: 69px;
}

.header_body{
    height: 51px;
    justify-content: space-between;
    align-items: center;
}

.list {
    display: block;
    padding-left: 20px;
}

.list li{
    margin-bottom: 15px;
}

.link {
    text-decoration: none;
    color: white;
}

.link:hover{
    color: #212039;
    font-weight: 500;
}

