header {
    padding: 15px 0;
    position: sticky;
    top: 0;
    background-color: var(--new-blue);
    z-index: 9999;
    border-bottom: 0.5px solid var(--blue);
    margin-bottom: 50px;
}
header .main_header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
header .main_header a {
    line-height: 0;
}
header img {
    width: 100%;
    height: auto;
    max-width: 400px;
}
header .main_menu {
    display: flex;
    list-style: none;
}
header .main_menu a {
    color: var(--blue);
    font-family: var(--font-main);
    font-size: var(--font-size-text);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration: none;
}
header .menu_right {
    display: flex;
    align-items: center;
    gap: 100px;
}

header .lang_switcher {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--blue);
    font-family: var(--font-main);
    font-size: var(--font-size-small);
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
header .lang_switcher .lang_gr, header .lang_switcher .lang_en {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}
header .lang_switcher .lang_separator {
    font-size: 32px;
    font-weight: 200;
    line-height: 0;
}
header .lang_switcher .selected .inner {
    border-bottom: 1px solid var(--white);
}
header .lang_switcher .selected img {
    box-shadow: 0 4px 8px 0 rgba(255, 255, 255, 0.2), 0 6px 20px 0 rgba(255, 255, 255, 0.3);
}
/* header .mobile {
    display: none;
} */

@media (max-width: 1400px) {
header .menu_right {
    gap: 20px;
}
}

@media (max-width: 992px) {
header {
    padding: 15px 0;
    margin-bottom: 20px;
}
header .main_header {
    flex-direction: column;
    gap: 15px;
    position: relative;
}
header .menu_right {
    gap: 0;
    width: 100%;
    justify-content: space-between;
}
.menu-main-menu-container {
    width: 100%;
}
header .main_menu a {
    font-size: 14px;
}
header img {
    max-width: 250px;
}
}


@media (max-width: 600px) {
.lang_switcher span.inner {
    display: none;
}
/* header .menu_right {
    flex-direction: column-reverse;
    align-items: end;
    gap: 0;
} */
}