.header {
    position: fixed;
    width: 100%;
    z-index: 9999;
    background-color: #fff;
    top: 0;
    box-shadow: 0px 2px 10px #e3e3e3;
}
.header_content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 130px;
    transition: all 0.3s ease-in-out;
}
.header.scrolled .header_content {
    height: 95px;
    transition: all 0.3s ease-in-out;
}
.header.scrolled .header_block {
    max-width: 1380px !important;
    transition: all 0.3s ease-in-out;
}
.header_callback {
    position: relative;
}
.header_callback a {
    width: 293px;
    height: 50px;
    background: linear-gradient(142.93deg, #FFFF66 17.05%, #FFE353 88.95%);
    box-shadow: 0px 2px 10px #DFC630;
    border-radius: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8px 0 28px;
    font-family: "Raleway", sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
    text-transform: uppercase;
    color: #3E3D3D;
    cursor: pointer;
}
.header_callback .imagelogo {
    width: 38px;
    height: 38px;
    background: #FFFFFF;
    box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.25);
    border-radius: 50px;
    position: relative;
}
.header_callback .imagelogo img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    transform: translate(-50%, -50%);
}
body.logged-in .header {
    top: 28px;
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    column-gap: 1.25rem;
    width: 100%;
    height: 4.25rem;
    margin: 0 auto;
}

.header_logo {
    font-family: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -1px;
    color: #fff;
    text-transform: uppercase;
}

.menu {
    position: fixed;
    top: -150%;
    left: 0;
    width: 100%;
    height: auto;
    padding: 4rem 0 3rem;
    overflow: hidden;
    background: #3c4252;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);;
    transition: all 0.4s ease-in-out;
}
.menu.is-active {
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.menu-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 1.25rem;
    margin-block-start: 0em;
    padding-inline-start: 0px;
}
.menu-item a {
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #000;
    /*text-transform: uppercase;*/
    transition: all 0.3s ease;
}
.menu-item a:hover {
    opacity: .8;
    transition: all 0.3s ease;
}
.menu-block {
    display: inline-block;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    user-select: none;
    white-space: nowrap;
    text-align: center;
    margin-left: auto;
    padding: 0.65rem 1.5rem;
    border-radius: 3rem;
    text-transform: uppercase;
    color: #fff;
    background: rgb(221, 83, 53);
    transition: all 0.3s ease-in-out;
}
.menu-menu-1-container {
    position: relative;
}
.menu-menu-1-container:before {
    position: absolute;
    content: '';
    bottom: -10px;
    left: 0;
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 1px;
    background-color: #000000;
}
@media only screen and (min-width: 992px) {
    .menu {
        position: relative;
        top: 0;
        width: auto;
        height: auto;
        /*padding: 0rem;*/
        /*margin-left: auto;*/
        background: none;
        box-shadow: none;
    }
    .menu-inner {
        display: flex;
        flex-direction: row;
        column-gap: 20px;
        margin: 0 auto;
    }
    .menu-item a {
        /*text-transform: uppercase;*/
    }
    .menu-block {
        /*margin-left: 2rem;*/
    }
}

.burger {
    position: relative;
    display: block;
    cursor: pointer;
    user-select: none;

    z-index: 10;
    width: 1.6rem;
    height: 1.15rem;
    border: none;
    outline: none;
    background: none;
    visibility: visible;
    transform: rotate(0deg);
    transition: 0.35s ease;
}
@media only screen and (min-width: 992px) {
    .burger {
        display: none;
        visibility: hidden;
    }
}
.burger-line {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 2px;
    border: none;
    outline: none;
    opacity: 1;
    border-radius: 1rem;
    transform: rotate(0deg);
    background-color: #000;
    transition: 0.25s ease-in-out;
}
.burger-line:nth-child(1) {
    top: 0px;
}
.burger-line:nth-child(2) {
    top: 0.5rem;
    width: 70%;
}
.burger-line:nth-child(3) {
    top: 1rem;
}
.burger.is-active .burger-line:nth-child(1) {
    top: 0.5rem;
    transform: rotate(135deg);
}
.burger.is-active .burger-line:nth-child(2) {
    opacity: 0;
    visibility: hidden;
}
.burger.is-active .burger-line:nth-child(3) {
    top: 0.5rem;
    transform: rotate(-135deg);
}

.banner-column {
    position: relative;
    display: grid;
    align-items: center;
    row-gap: 3rem;
}
@media only screen and (max-width: 600px) {
    .header_callback {
        position: absolute;
        right: 60px;
    }
}

@media only screen and (max-width: 992px) {
    .header_link img {
        width: 75px;
    }
    .header_callback a {
        width: 38px;
        height: 38px;
        padding: 0;
    }
    .header_callback span {
        display: none;
    }
    .menu-item a {
        color: #FFFFFF;
        font-size: 2rem;
    }
    .menu-menu-1-container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }
}
@media only screen
and (min-device-width: 414px)
and (max-device-width: 992px)
and (orientation: landscape) {
    .header_content {
        height: 75px;
    }
    .burger {
        position: absolute;
        right: 20px;
    }
    .header_callback {
        margin-right: 60px;
    }
    .menu-menu-1-container {
        height: auto;
    }
    .menu-item a {
        font-size: 20px;
    }
    .header_callback {
        position: absolute;
        right: 0px;
    }
}
/**/