.header-row__wrap-menu{
    position: relative;
    flex: 1 1 auto;
}

.header-main-menu {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateY(-50%);
    max-height: 40px;
}

.header-main-menu__items{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin: 0;
    gap: 30px;
    padding: 0;
    width: 100%;
}

.header-main-menu__item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 15px;
    font-weight: 400;
    height: 100%;
    line-height: 1.5;
    position: relative;
    list-style-type: none;
}

.header-main-menu__item a {
    opacity: 1;
    padding: 8px 0;
    background-position: center center;
    text-decoration: none;
    color: var(--color-black);
    -webkit-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    -o-transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
    transition: background-color 0.2s ease-in-out, color 0.2s ease-in-out, border-color 0.2s ease-in-out;
}

.header-main-menu__item.active > a,
.header-main-menu__item:hover > a{
    color: var(--color-main);
}

.header-main-menu .nosave .title{
    width: 40px;
    line-height: 25px;
    display: flex;
    height: 40px;
    text-align: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    color: var(--color-black);
    border-radius: 0;
    border: none;
    -webkit-transition: color 0.2s ease-in-out;
    -o-transition: color 0.2s ease-in-out;
    transition: color 0.2s ease-in-out;
}

.header-main-menu .nosave .title:hover {
    color: var(--color-second);
}

.header-main-menu .nosave .dropdown-menu{
    min-height: 0;
    position: absolute;
    top: calc(100% + 30px);
    right: 0px;
    z-index: 1000;
    min-width: 160px;
    padding: 0;
    list-style: none;
    height: 0px;
    border: 0;
    margin: 0;
    border-radius:0;
    display: block;
    background: var(--color-white);
    border: none;
    color: var(--color-black);
    overflow: hidden;
    -webkit-transition: opacity .6s ease;
    -o-transition: opacity .6s ease;
    transition: opacity .5s ease;
    opacity: 0;
    visibility: hidden;
}
.header-main-menu .nosave.on .dropdown-menu{
    height: auto;
    opacity: 1;
    background-color: var(--color-white);
    visibility: visible;
    border-radius: var(--border-radius);
}

.header-main-menu .nosave.on .dropdown-menu > li{
    display: block;
    line-height: 1.5;
}

.header-main-menu .nosave.on .dropdown-menu > li:not(:last-child){
    margin: 0 0 10px 0;
}

.header-main-menu .nosave.on .dropdown-menu > li:first-child {
    padding-top: 20px;
}

.header-main-menu .nosave.on .dropdown-menu > li:last-child {
    padding-bottom: 20px;
}

.header-main-menu .nosave.on .dropdown-menu > li .header-main-menu__item {
    padding: 0;
}

.header-main-menu .nosave.on .dropdown-menu > li .header-main-menu__item a {
    width: 100%;
    padding: 4.5px 20px;
    text-align: left;
    align-items: flex-start;
}

@media (max-width: 767px) {
    .header-main-menu {
        display: none;
    }
}