.header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    box-sizing: border-box;
    padding: 1.25em 0;
}
.header .row1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header .logo {
    max-width: 8.75em;
    width: auto;
    max-height: 3em;
    display: block;
}
.header .menu_wrap {
    display: none;
}
.header .actions {
    display: flex;
    margin: -0.25em;
}
.header .action {
    margin: 0.25em;
}
.header_mob {
    z-index: 11;
    height: 100%;
    background-color: #161618;
    background-image: url(../../img/menu-background.svg);
    box-sizing: border-box;
    background-position: center;
    background-size: cover;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: 0.3s;
}
.header_mob.opened {
    visibility: visible;
    opacity: 1;
}
.header_mob .row1:not(:last-child) {
    margin-bottom: 1.25em;
}
.header_mob .socials_container {
    margin-top: 1.25em;
}
.header_mob .menu_wrap {
    margin: auto calc(50% - 50vw);
    padding: 0 calc(50vw - 50%);
    box-sizing: border-box;
    height: calc(var(--app-height) - 11.25em);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}
.header_mob .menu-header-menu-container {
    margin: auto 0;
}
.header_mob .menu {
    display: block;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style-type: none;
}
.header_mob .menu-item:not(:last-child) {
    margin-bottom: 1.5em;
}
.header_mob .menu-item a {
    font-size: 1.5em;
    font-weight: 600;
    padding: 0.8em 2em;
    display: block;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    color: #ffffff;
    border-radius: 2.92em;
    border: 1px solid rgba(255, 255, 255, 0.40);
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(0.2em);
    cursor: pointer;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
}
@media(max-width: 639px) {
    .header .logo {
        max-height: 1.25em;
        max-width: 5em;
    }
    .header .actions {
        margin: -0.125em;
    }
    .header .action {
        margin: 0.125em;
    }
    .header .butt {
        padding: 0 1em;
        height: 1.75em;
    }
    .header .butt_label {
        font-size: 0.625em;
    }
    .header .butt_icon {
        max-width: 1em;
        max-height: 1em;
    }
    .header .icon_butt {
        width: 1.75em;
    }
    .header_mob .menu_wrap {
        height: calc(var(--app-height) - 10.375em);
    }
    .header_mob .menu-item:not(:last-child) {
        margin-bottom: 0.75em;
    }
    .header_mob .menu-item a {
        font-size: 0.875em;
    }
}