.header_top_menu {
    margin-right: auto;
}

.header_top_menu_list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header_top_menu_item {
    margin-right: calc(10px + 2.3vw);
    font-size: 15px;
    font-size: calc(10px + 0.25vw);
    font-weight: 400;
    line-height: 21px;
    text-align: left;

}

.header_top_menu_item:last-child {
    margin-right: 0;
}

.header_top_menu_item a {
    color: white;
    text-decoration: unset;
}

.header_top_menu_item a:hover {
    text-decoration: none;
}
.mobile_menu_in_burger ul li:before {
    display: none;
}
.mobile_menu_in_burger ul li a:before {
    display: block;
    content: '';
    width: 15px;
    height: 2px;
    background: #fff;
    margin-right: 9px;
}
.header_top_menu_list .header_top_menu_item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.header_top_menu_item:not(.active) > ul {
    display: none;
}
@media screen and (max-width: 991px) {
    .header_top_menu {
        display: block;
        position: fixed;
        top: 0;
        right: 0;
        margin: 0;
        width: 100%;
        background: #F5F3F3;
        text-align: center;
        /*padding-top: 62px;*/
        padding-top: 80px;
        padding-bottom: 30px;
        transform: translateX(120%);
        z-index: 100;
        transition: all .2s cubic-bezier(0.4, 0, 1, 1) 0s;
    }

    .header_top_menu_list {
        display: inline-block;

    }

    .header_top_menu_item {
        width: 100%;
    }

    .header_top_menu_item a {
        display: flex;
        padding: 5px 0;
        align-items: center;
        gap: 5px;
    }
    .header_top_menu_item a {
        font-weight: 500;
        font-style: Medium;
        font-size: 20px;
        leading-trim: NONE;
        line-height: 100%;
        letter-spacing: 0%;
        text-transform: uppercase;
    }
    .header_rediz .header_top_menu_list .header_top_menu_item:hover a {
        text-decoration: unset !important;
        -webkit-tap-highlight-color: transparent;
        color: #fff;
    }
    .header_rediz .header_top_menu_item > a svg {
        transition: 200ms;
    }
    .header_rediz .header_top_menu_item.active > a svg {
        transform: rotate(180deg);
    }
}