header{
    display: flex;
    justify-content: space-around;
    align-items: center;
    /*gap: 100px;*/
    margin: auto;
    width: 1660px;
    padding: 20px 10px;
    border-radius: 20px;
    border: 2px solid #FF091A;
    background: #FFF;
    height: 120px;
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.header-logo,
.mobile-menu-toggle,
.mobile-menu{
    display: none;
}

.header-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    /*gap: 140px;*/
    max-width: 1070px;
    width: 100%;
}

.header-links > a{
    position: relative;
    display: inline-block;

    text-decoration: none;
    color: #000;
    font-family: "Lays Cyr";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-transform: uppercase;
    text-align: center;
    transition: 0.2s;
}

.header-links > a::after{
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: currentColor;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.header-links > a:hover::after{
    transform: scaleX(1);
}

.header-right-block{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.header-languages-block{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.change-lang{
    color: #FFF;
    font-family: "Lays Cyr";
    font-size: 24px;
    font-style: normal;
    font-weight: 800;
    line-height: normal;
    text-decoration: none;
    transition: 0.2s;
}

.change-lang:hover{
    text-decoration: none;
    color: #FFF;
    transition: 0.2s;
    transform: scale(1.1);
}

.lang-unselected{
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #FDD700;
}

.lang-selected{
    display: inline-flex;
    padding: 10px 20px;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background: #FF091A;
}

.header-cabinet-block > a > img{
    max-width: 79px;
    width: 100%;
    transition: 0.2s;
}

.header-cabinet-block > a > img:hover{
    transition: 0.2s;
    transform: scale(0.9);
}


