@media screen and (max-width: 550px){
    .Header_Menu_Icon { display: flex; }
    .Header_Menu_Item { display: none; }
    .Header_Menu_Item_M { display: flex; }
}

@media screen and (min-width: 550px) and (max-width: 800px){
    .Header_Menu_Icon { display: flex; }
    .Header_Menu_Item { display: none; }
    .Header_Menu_Item_M { display: flex; }
}

@media screen and (min-width: 800px){
    .Header_Menu_Icon { display: flex; }
    .Header_Menu_Item { display: flex; }
    .Header_Menu_Item_M { display: none; }
}


.Header_Wrapper {
    position: fixed;
    top: 0;
    left: 0;
    height: 60px;
    width: 100%;
    background: var(--c-0);
    border-bottom: 1px solid var(--c-4);

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 0 16px var(--c-4);
    z-index: 999;
}

.Header_Wrapper_Fake{
    height: 60px;
    width: 100%;
}

.Header_Wrapper_Inner {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.Header_Left {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    font-size: 20px;
    font-weight: bold;
    color: var(--c-3);
}

.Header_Logo_Wrapper {
    height: 60px;
    width: 120px;
    position: relative;
}

.Header_Logo_Wrapper_Scene {
    height: 120px;
    width: 120px;
    position: absolute;
    left: 0;
    top: 0;
    background: var(--c-0);
    border-radius: 50%;
    border-bottom: 1px solid var(--c-4);
    box-shadow: 0 0 16px var(--c-4);

    display: flex;
    align-items: center;
    justify-content: center;
}

.Header_Logo_Blank {
    position: absolute;
    left: -15px;
    top: 0;
    height: 59px;
    width: 150px;
    background: var(--c-0);
}


.Header_Logo {
    position: relative;
    height: 100px;
    width: 100px;


    background-image: url("/_CONTENT/_SVG/logo_alfa_sm.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 100%;
}

.Header_Logo_Text {
    font-family: 'Q_D',Arial,sans-serif, 'Q_R', Serif;
}

.Header_Logo_i {
    position: absolute;
    height: 40px;
    width: 40px;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    font-size: 30px;
    color: #FFFFFF;
    border: 1px solid var(--c-4);
    border-radius: 5px;

    display: flex;
    align-items: center;
    justify-content: center;

    -webkit-box-shadow: 0 0 5px 0 var(--c-4) inset;
    -moz-box-shadow: 0 0 5px 0 var(--c-4) inset;
    box-shadow: 0 0 5px 0 var(--c-4) inset;
}
.Header_Logo_1 {
    z-index: 3;
    background: var(--c-3);
    transform: rotateZ(0deg);
}
.Header_Logo_2 {
    z-index: 2;
    background: var(--c-2);
    transform: rotateZ(22.5deg);
}
.Header_Logo_3 {
    z-index: 1;
    background: var(--c-4);
    transform: rotateZ(45deg);
}

.Header_Right {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    font-weight: bold;
    color: var(--c-3);
}
.Header_Menu_Item {
    cursor: pointer;
}
.Header_Menu_Icon {
    position: relative;
    cursor: pointer;
}
.Header_Menu_Icon > svg {
    width: 25px;
    height: 25px;
}

.Header_Center {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.Header_Menu_Item_Menu {
    position: absolute;
    top: 100%;
    right: 0;
    min-width: 180px;
    background: var(--c-0);
    border: 1px solid var(--c-3);
    border-radius: 5px;
    padding: 20px;


    align-items: flex-end;
    flex-direction: column;
    gap: 20px;
}

/*
.Header_Menu_Icon:hover .Header_Menu_Item_Menu{
    display: flex;
}*/
