.block-header {
    position: fixed;
    background: #fff;
    width: 100vw;
    z-index: 999;
}

.block-header .main-menu {
    display: flex;
    padding: 32px 80px;
    align-items: center;
}

.block-header .main-menu a {
    color: var(--wp--preset--color--dark-blue-third);
    font-weight: 700;
    font-size: 32px;
    margin-right: 48px;
    display: inline-block;
    text-decoration: none;
}

.block-header .main-menu a:after {
    display: none;
}

.block-header .main-menu a.active-page,
.block-header .main-menu a:hover {
    color: var(--wp--preset--color--dark-blue);
}

.block-header .main-menu .global-button.global-button-white {
    color: var(--wp--preset--color--primary);
}

.block-header .main-menu .global-button.global-button-white:hover {
    color: var(--wp--preset--color--background);
}

.block-header .menu-lvl2 {
    z-index: 999;
    visibility: hidden;
    position: absolute;
    background: var(--wp--preset--color--dirty-white);
    border: 1px solid var(--wp--preset--color--light-grey);
    padding: 64px 0;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    position: fixed;
    top: 260px;
    left: 0;
    height: 816px;
    width: 100vw;
    box-sizing: border-box;
    opacity: 0;
    z-index: -1;
    visibility: hidden;
}

.block-header .menu-lvl2 .wrapper {
    display: flex;
    flex-direction: column;
}

.block-header .menu-lvl2.lvl2active {
    top: 294px;
    visibility: visible;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    opacity: 1;
    z-index: 1;
    visibility: visible;
}


.block-header .card {
    position: relative;
    height: 100%;
    display: flex;
}

.block-header .card .text-card {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    align-items: flex-start;
    margin-right: 64px;
    min-width: 724px;
    max-width: 724px;
}
.block-header .card .text-card .global-button{
    transition: none;
}
.block-header .card .text-card .title {
    color: var(--wp--preset--color--dark-blue);
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 96px;
}

.block-header .card .text-card .text p {
    color: var(--wp--preset--color--dark-blue);
    font-size: 32px;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 32px;
}

.block-header .card .menu-image {
    width: 100%;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    border-radius: 12px;
    overflow: hidden;
}

.block-header .card .menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.block-header .menu-card-lvl2 {
    visibility: hidden;
    width: calc((var(--wp--style--global--content-size)*2) - 620px);
    height: 100%;
    box-sizing: border-box;
    padding: 64px;
    margin: 64px 0;
    max-height: 688px;
    top: 278px;
    position: fixed;
    right: calc((100vw - (var(--wp--style--global--content-size)*2)) / 2);
    z-index: -1;
    background: var(--wp--preset--color--background);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    z-index: 2
}

.block-header .lvl2active .menu-card-lvl3 {
    z-index: 3;
}

.block-header .menu-card-lvl2.active {
    visibility: visible;
}

.block-header .main-menu .menu-title {
    color: var(--wp--preset--color--dark-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 32px;
    margin-top: 64px;
    padding: 0 48px;
    max-width: calc(30vw - 88px);
}

.block-header .main-menu a.linklvl2 {
    width: 100%;
    position: relative;
    max-width: 556px;
    border: 2px solid var(--wp--preset--color--dirty-white);
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    padding: 22px 48px;
    box-sizing: border-box;
    font-size: 32px;
    color: var(--wp--preset--color--dark-blue-third);
    font-weight: 700;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header .main-menu a.linklvl2.active-page,
.block-header .main-menu a.linklvl2:hover {
    border: 2px solid var(--wp--preset--color--light-grey);
    color: var(--wp--preset--color--dark-blue);
    background: var(--wp--preset--color--background);
}

.block-header .main-menu a.haschildren:after {
    content: "";
    position: inherit;
    background-color: var(--wp--preset--color--dark-blue-third);
    -webkit-mask-image: url(../../assets/images/menu-arrow.svg);
    mask-image: url(../../assets/images/menu-arrow.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    background-size: cover;
    width: 32px;
    height: 20px;
    display: inline-block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    cursor: pointer;
    right: inherit;
    margin: unset;
    top: inherit;
    bottom: inherit;
    margin-left: 16px;

}

.block-header .main-menu a.haschildren.active-page:after,
.block-header .main-menu a.haschildren:hover:after {
    background-color: var(--wp--preset--color--dark-blue);
}

.block-header .top-bar {
    display: flex;
    justify-content: space-between;
    padding: 32px 0;
    min-height: 130px;
    box-sizing: border-box;
    background: var(--wp--preset--color--light-grey);

}

.block-header .top-bar .wrapper {
    display: flex;
    justify-content: flex-end;
}

.block-header .top-bar .custom-select-box.white-select select {
    -webkit-border-radius: 24px;
    -moz-border-radius: 24px;
    border-radius: 24px;
    padding: 8px 48px 8px 24px;
    font-size: 30px;
    line-height: 26px;
    color: var(--wp--preset--color--dark-blue);
    font-weight: 700;
}

.block-header .top-bar .custom-select-box.white-select::before {
    padding: 6px;
    right: 24px;
    margin-top: -12px;
}

.block-header .bottom-bar {
    display: flex;
    justify-content: space-between;
    padding: 0;
    background: var(--wp--preset--color--background);
    border-bottom: 1px solid var(--wp--preset--color--grey);
}

.block-header .bottom-bar .wrapper {
    display: flex;
    justify-content: space-between;
}

.block-header .bottom-bar .wrapper .header-right .global-button {
    margin-left: 24px;
}

.block-header .global-button .icon {
    background-color: var(--wp--preset--color--primary);
    -webkit-mask-image: url(../../assets/images/account.svg);
    mask-image: url(../../assets/images/account.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    background-size: cover;
    width: 48px;
    height: 48px;
    display: inline-block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin-right: 20px;
}

.block-header .global-button:hover .icon {
    background-color: var(--wp--preset--color--background);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header .header-left {
    display: flex;
    align-items: center;
}

.block-header .header-right {
    display: flex;
    align-items: center;

}

.block-header .bottom-bar .header-right {
    margin: 12px 0;
}

.block-header .header-right .header-right-contain {
    display: flex;
    align-items: center;
    border-right: 1px solid var(--wp--preset--color--grey);
    height: 100%;
}

.block-header .logo {
    width: 278px;
    height: 100px;
    margin: 32px 0;
    background-size: cover;
    background-repeat: no-repeat;
}

.block-header .logo:after {
    display: none;
}

.block-header .header-right .search-glass {
    background-color: var(--wp--preset--color--dark-blue);
    -webkit-mask-image: url(../../assets/images/search.svg);
    mask-image: url(../../assets/images/search.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    background-size: cover;
    width: 56px;
    height: 56px;
    margin-right: 48px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header .header-right .search-glass:hover {
    background-color: var(--wp--preset--color--primary);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}


.block-header .header-right .burger-menu {
    width: 36px;
    height: 32px;
    margin-right: 48px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.block-header .header-right .burger-menu span {
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--wp--preset--color--dark-blue);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header .header-right .burger-menu:hover span {
    background-color: var(--wp--preset--color--primary);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header #overlay-menu {
    position: fixed;
    left: 0;
    width: 100vw;
    height: 0vh;
    top: -100vh;
    opacity: 0;
    background: var(--wp--preset--color--off-white);
    ;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    z-index: -1;
}

.block-header #overlay-menu.active {
    height: 100vh;
    opacity: 1;
    top: 0;
    z-index: 999;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header #overlay-menu .menuburger {
    display: flex;
    flex-direction: column;
}

.block-header #overlay-menu .burger-menu-list {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
}

.block-header #overlay-menu .menuburger .burger-title {
    color: var(--wp--preset--color--primary);
    font-size: 36px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 32px;
}

.block-header #overlay-menu .menuburger .burger-link {
    line-height: 48px;
    font-size: 32px;
    color: var(--wp--preset--color--dark-blue);
    font-weight: 400;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    position: relative;
    margin-bottom: 32px;
}

.block-header #overlay-menu .menuburger .burger-link:after {
    display: none;
}

.block-header #overlay-menu .menuburger .burger-link:hover {
    color: var(--wp--preset--color--primary);
}

.block-header #overlay-menu .menuburger-lvl2 {
    width: 25vw;
    min-width: 25vw;
    background: #EDEEEF;
    display: flex;
    flex-direction: column;
    padding: 120px 70px;
    box-sizing: border-box;
}

.block-header .close-main {
    position: absolute;
    right: 120px;
    top: 120px;
    width: 128px;
    height: 128px;
    border: 2px solid var(--wp--preset--color--dark-blue);
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    cursor: pointer;
    z-index: 999;
}

.block-header #overlay-menu .burger-menu-container {
    display: flex;
    justify-content: space-between;
    margin-top: 65px;
    align-items: center;
}

.block-header #search-box .close-search,
.block-header #overlay-menu .burger-close {
    position: relative;
    cursor: pointer;
    z-index: 999;
    min-width: 120px;
}

.block-header #search-box .close-search .icon-close,
.block-header #overlay-menu .burger-close .icon-close {
    width: 48px;
    height: 48px;
    display: inline-block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin-right: 20px;
    position: relative;
}

.block-header .close-main:before,
.block-header .close-main:after,
.block-header #search-box .close-search .icon-close:before,
.block-header #search-box .close-search .icon-close:after,
.block-header #overlay-menu .burger-close .icon-close:before,
.block-header #overlay-menu .burger-close .icon-close:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 4px;
    background-color: var(--wp--preset--color--dark-blue);
    border-radius: 4px;
    top: 22px;
}

.block-header #search-box .close-search .icon-close:before,
.block-header #search-box .close-search .icon-close:after,
.block-header #overlay-menu .burger-close .icon-close:before,
.block-header #overlay-menu .burger-close .icon-close:after {
    background-color: var(--wp--preset--color--primary);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header #search-box .close-search .icon-close:before,
.block-header .close-main:before,
.block-header #overlay-menu .burger-close .icon-close:before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    left: 4px;
}

.block-header #search-box .close-search .icon-close:after,
.block-header .close-main:after,
.block-header #overlay-menu .burger-close .icon-close:after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    right: 4px;
}


.block-header #search-box .close-search:hover .icon-close:before,
.block-header #search-box .close-search:hover .icon-close:after,
.block-header #overlay-menu .burger-close:hover .icon-close:before,
.block-header #overlay-menu .burger-close:hover .icon-close:after {
    background-color: var(--wp--preset--color--background);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header #search-box {
    position: absolute;
    top: 0px;
    background: linear-gradient(0deg, rgba(211, 213, 214, 0.40) 0%, rgba(211, 213, 214, 0.40) 100%), #FFF;
    width: 0%;
    height: 0vh;
    z-index: 2;
    left: 0;
    opacity: 0;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.block-header #search-box.active {
    height: 100vh;
    width: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header #search-box .search-menu-container {
    display: flex;
    justify-content: space-between;
    margin-top: 65px;
    align-items: center;
}

.block-header #search-box .search-form-box {
    display: flex;
    width: 100%;
    margin-top: 80px;
}

.block-header .mobile-close-search {
    display: flex;
    align-items: center;
}



.block-header #search-box .search-form-box .screen-reader-text {
    display: none;
}

.block-header #search-box .search-form-box .search-form {
    width: 100%;
    position: relative;
    display: flex;
    margin-bottom: 64px;
}

.block-header #search-box .search-form-box .search-form .search-field {
    width: 100%;
    height: 100%;
    line-height: 128px;
    padding: 0 40px;
    box-sizing: border-box;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    border: 2px solid var(--wp--preset--color--light-grey);
    background-color: var(--wp--preset--color--background);
    color: var(--wp--preset--color--dark-blue);
    font-size: 36px;

}

.block-header #search-box .search-form-box .search-form label {
    position: relative;
    height: 128px;
    width: 100%;
    display: block;
}

.block-header #search-box .search-form-box .search-form .search-submit {
    min-width: 300px;
    padding: 24px 48px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 32px;
    line-height: 48px;
    text-decoration: none;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    box-sizing: border-box;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--wp--preset--color--primary);
    background-color: var(--wp--preset--color--background);
    color: var(--wp--preset--color--primary);
    z-index: 1;
    margin-left: 32px;
}

.block-header #search-box .search-form-box .search-form .search-submit:hover {
    color: var(--wp--preset--color--background);
    background-color: var(--wp--preset--color--primary);
}

.block-header .search-sugestions {
    display: flex;
    flex-wrap: wrap;
}

.block-header #search-box .search-sugestions .sugestions-title {
    margin-bottom: 32px;
    color: var(--wp--preset--color--dark-blue);
    font-size: 48px;
    font-weight: 500;
    line-height: 120%;
    flex: 0 0 100%;
}

.block-header #search-box .search-sugestions .sugestion {
    border: 2px solid var(--wp--preset--color--grey);
    background: var(--wp--preset--color--light-grey);
    color: var(--wp--preset--color--dark-blue);
    padding: 24px 32px;
    margin-right: 64px;
    margin-bottom: 64px;
    font-size: 32px;
    line-height: 1.5;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    border-radius: 40px;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header #search-box .search-sugestions .sugestion:after {
    display: none;
}

.block-header #search-box .search-sugestions .sugestion:hover {
    background: var(--wp--preset--color--background);
}

.block-header #selectCompany {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    font-size: 32px;
    font-weight: 700;
    padding: 0 50px 0 0;
    background-color: #fff;
    color: var(--wp--preset--color--dark-blue);
    border: none;
    cursor: pointer;
}

.block-header .custom-select::before,
.block-header .custom-select::after {
    font-size: 32px;
    font-weight: 700;
    content: "";
    position: absolute;
    pointer-events: none;
}

.block-header .custom-select::after {
    content: "";
    border: solid black;
    border-width: 0 6px 6px 0;
    display: inline-block;
    padding: 8px;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    top: 14%;
    right: 0;
}

.block-header .top-menu-list {
    display: flex;
    margin: 0;
}

.block-header .top-menu-list li {
    margin-right: 64px;
    list-style: none;
    line-height: 24px;
    display: flex;
    align-items: center;
}

.block-header .top-menu-list li:last-of-type {
    margin-right: 0;
}

.block-header .top-menu-list li:last-child a {
    display: flex;
}

.block-header .top-menu-list li:last-child a:before {
    content: "";
    background-color: var(--wp--preset--color--dark-blue-sec);
    -webkit-mask-image: url(../../assets/images/call.svg);
    mask-image: url(../../assets/images/call.svg);
    mask-size: cover;
    mask-repeat: no-repeat;
    background-size: cover;
    width: 48px;
    height: 48px;
    display: inline-block;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    margin-right: 8px;
}

.block-header .top-menu-list li:last-child a.active-page:before,
.block-header .top-menu-list li:last-child a:hover:before {
    background-color: var(--wp--preset--color--primary);
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.block-header .top-menu-link {
    color: rgba(35, 41, 54, 0.75);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    text-decoration: none;
}

.block-header .top-menu-link:after {
    display: none;
}

.block-header .top-menu-link.active-page,
.block-header .top-menu-link:hover {
    color: var(--wp--preset--color--primary);
}

.block-header .navtiation-arrow {
    cursor: pointer;
    box-sizing: border-box;
    position: relative;
    top: -1px;
    left: -28px;
}


.block-header .navtiation-arrow::after,
.block-header .navtiation-arrow::before {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
}

.block-header .navtiation-arrow::after {
    width: 8px;
    height: 8px;
    border-bottom: 2px solid;
    border-left: 2px solid;
    transform: rotate(45deg);
    top: -4px
}

.block-header .navtiation-arrow::before {
    width: 16px;
    height: 2px;
    top: -1px;
    background: currentColor
}

.desktop-menu-block {
    display: block
}

.mobile-menu-block {
    display: none
}

.block-header .top-bar .header-right .custom-select-box {
    margin-left: 64px;
}

@media only screen and (max-width: 3000px) {

    .block-header .top-menu-list li:last-child a:before {
        width: 24px;
        height: 24px;
        margin-right: 4px;
    }

    .block-header .main-menu a {
        font-size: 16px;
        margin-right: 24px;
    }

    .block-header .main-menu a.haschildren:after {
        width: 16px;
        height: 10px;
        margin-left: 8px;
    }

    .block-header .main-menu {
        padding: 16px 40px;
    }

    .block-header .menu-lvl2 {
        top: 75px;
        padding: 32px 0;
        height: 408px;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }

    .block-header .menu-lvl2.lvl2active {
        top: 147px;
        visibility: visible;
        transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
        -moz-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
    }


    .block-header .card .text-card {
        margin-right: 32px;
        min-width: 362px;
        max-width: 362px;
    }

    .block-header .card .text-card .text p {
        font-size: 16px;
        line-height: 24px;
        margin-bottom: 16px;
    }


    .block-header .menu-card-lvl2 {
        width: calc(var(--wp--style--global--content-size) - 310px);
        height: 100%;
        padding: 32px;
        margin: 32px 0;
        max-height: 344px;
        top: 139px;
        right: calc((100vw - var(--wp--style--global--content-size)) / 2);
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }

    .block-header .main-menu .menu-title {
        font-size: 16px;
        margin-bottom: 16px;
        margin-top: 32px;
        padding: 0 24px;
    }

    .block-header .logo {
        width: 139px;
        height: 50px;
        margin: 16px 0
    }

    .block-header .header-right .search-glass {
        width: 28px;
        height: 28px;
        margin-right: 24px;
    }

    .block-header .header-right .search-button {
        display: flex;
        align-items: center;
        height: 50px;
        margin-left: 24px;
        padding-left: 24px;
        border-left: 1px solid var(--wp--preset--color--grey);
    }

    .block-header #search-box .search-form-box {
        margin-top: 40px;
    }

    .block-header #search-box .search-form-box .close-search {
        width: 64px;
        min-width: 64px;
        height: 64px;
        -webkit-border-radius: 8px;
        -moz-border-radius: 8px;
        border-radius: 8px;
        border: 1px solid var(--wp--preset--color--dark-blue);
    }

    .block-header #search-box .search-form-box .search-form {
        margin-bottom: 32px;
    }

    .block-header #search-box .search-form-box .search-form .search-field {
        width: 100%;
        padding: 0 20px;
        box-sizing: border-box;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        border: 1px solid var(--wp--preset--color--light-grey);
        font-size: 18px;
    }

    .block-header #search-box .search-form-box .search-form label:before {
        width: 24px;
        height: 24px;
        left: 24px;
        top: 20px;
    }

    .block-header #search-box .search-form-box .search-form label {
        height: 64px;
    }

    .block-header #search-box .search-sugestions .sugestions-title {
        margin-bottom: 16px;
        font-size: 24px;
    }

    .block-header #search-box .search-sugestions .sugestion {
        border: 1px solid var(--wp--preset--color--grey);
        padding: 12px 16px;
        margin-right: 32px;
        margin-bottom: 32px;
        font-size: 16px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
    }

    .block-header .custom-select {
        min-width: 150px;
    }

    .block-header #overlay-menu .burger-menu-list {
        margin-top: 40px;
    }

    .block-header #overlay-menu .menuburger .burger-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .block-header #overlay-menu .menuburger .burger-link {
        line-height: 24px;
        font-size: 16px;
        margin-bottom: 16px;
    }

    .block-header .header-right .burger-menu {
        width: 18px;
        height: 16px;
        margin-right: 24px;
    }

    .block-header .header-right .burger-menu span {
        height: 2px;
    }

    .block-header #search-box .close-search .icon-close,
    .block-header #overlay-menu .burger-close .icon-close {
        width: 24px;
        height: 24px;
        margin-right: 10px;

    }

    .block-header #search-box .close-search .icon-close:before,
    .block-header #search-box .close-search .icon-close:after,
    .block-header #overlay-menu .burger-close .icon-close:before,
    .block-header #overlay-menu .burger-close .icon-close:after {
        width: 20px;
        height: 2px;
        border-radius: 2px;
        top: 11px;
    }

    .block-header #search-box .close-search .icon-close:before,
    .block-header #overlay-menu .burger-close .icon-close:before {
        left: 2px;
    }

    .block-header #search-box .close-search .icon-close:after,
    .block-header #overlay-menu .burger-close .icon-close:after {
        right: 2px;
    }

    .block-header #search-box .search-form-box .search-form .search-submit {
        min-width: 150px;
        padding: 12px 24px;
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        font-size: 16px;
        line-height: 24px;
        border: 1px solid var(--wp--preset--color--primary);
        margin-left: 16px;
    }

    .block-header #selectCompany {
        font-size: 16px;
        padding: 0 25px 0 0;
    }

    .block-header .custom-select::before,
    .block-header .custom-select::after {
        font-size: 16px;
    }

    .block-header .custom-select::after {
        border-width: 0 3px 3px 0;
        padding: 4px;
        top: 14%;
    }

    .block-header .top-menu-list li {
        margin-right: 32px;
    }

    .block-header .top-menu-link {
        font-size: 16px;

    }

    .block-header .menu-delimit {
        margin-bottom: 16px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--wp--preset--color--grey);
    }

    .block-header .mobile-header {
        padding: 0px 20px;
        border-bottom: 1px solid #C0C0C0;
    }

    .block-header #mobile-menu {
        top: 83px;
        padding: 0px 20px;
    }

    .block-header #mobile-menu.active {
        height: calc(100vh - 83px);
        padding: 0 0 160px;
    }

    .block-header #mobile-menu.active .mobile-scroll {
        padding: 20px
    }

    .mobile-burger {
        width: 18px;
        height: 16px;
        margin-right: 0px;
    }



    .block-header .close-main {
        position: absolute;
        right: 60px;
        top: 60px;
        width: 64px;
        height: 64px;
        border: 1px solid var(--wp--preset--color--dark-blue);
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
    }

    .block-header .close-main:before,
    .block-header .close-main:after {
        width: 20px;
        height: 3px;
        border-radius: 2px;
        top: 30px;
    }

    .block-header .close-main:before {
        left: 21px;
    }

    .block-header .close-main:after {
        right: 22px;
    }

    .block-header .top-bar {
        padding: 16px 0;
        min-height: 65px;

    }

    .block-header .top-bar .custom-select-box.white-select select {
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        padding: 4px 24px 4px 12px;
        font-size: 15px;
        line-height: 23px;
    }

    .block-header .top-bar .custom-select-box.white-select::before {
        padding: 3px;
        right: 12px;
        margin-top: -6px;
    }

    .block-header .global-button .icon {
        width: 24px;
        height: 24px;
        margin-right: 10px;
    }

    .block-header .main-menu a.linklvl2 {
        max-width: 278px;
        border: 1px solid var(--wp--preset--color--dirty-white);
        -webkit-border-radius: 20px;
        -moz-border-radius: 20px;
        border-radius: 20px;
        padding: 11px 24px;
        font-size: 16px;
    }

    .block-header .main-menu a.linklvl2.active-page,
    .block-header .main-menu a.linklvl2:hover {
        border: 1px solid var(--wp--preset--color--light-grey);

    }

    .block-header .top-bar .header-right .custom-select-box {
        margin-left: 32px;
    }
}

@media only screen and (max-width: 1500px) {
    .block-header {
        width: 100vw;
        box-sizing: border-box;
    }

    .block-header .menu-card-lvl2 {
        width: calc(90vw - 310px);
        left: calc(5vw + 310px);
        right: auto;
    }
}

@media only screen and (max-width: 1300px) {

    .block-header .top-menu-link,
    .block-header .main-menu a {
        font-size: 14px;
    }

    .block-header .menu-card-lvl2 {
        width: calc(95vw - 310px);
    }

    .block-header .main-menu {
        padding: 16px 35px;
    }
}

@media only screen and (max-width: 1200px) {
    .block-header .mobile-header {
        display: flex;
        justify-content: space-between;
        border-bottom: 2px solid #C0C0C0;
        background: #FFF;
        position: relative;
        z-index: 999;
    }

    .block-header #mobile-menu {
        position: fixed;
        top: 83px;
        left: 0;
        width: 100vw;
        height: 0vh;
        opacity: 0;
        padding: 0px;
        box-sizing: border-box;
        background: var(--wp--preset--color--off-white);
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        z-index: -1;
        overflow: scroll;
    }

    .block-header #mobile-menu.active {
        overflow: hidden;
        padding: 40px 20px 100px;
        height: calc(100vh - 122px);
        opacity: 1;
        z-index: 1000;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
    }

    .block-header #mobile-menu.active .mobile-scroll {
        overflow-y: scroll;
        height: 100%;
    }

    .mobile-open-menu {
        overflow: hidden;
    }

    .mobile-burger {
        width: 18px;
        height: 16px;
        position: relative;
        margin-right: 16px;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.5s ease-in-out;
        -moz-transition: 0.5s ease-in-out;
        -o-transition: 0.5s ease-in-out;
        transition: 0.5s ease-in-out;
        cursor: pointer;
    }





    .mobile-open-menu .mobile-burger span:nth-child(1) {
        top: 2444444444px;
        width: 0%;
        left: 50%;
    }

    .mobile-open-menu .mobile-burger span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .mobile-open-menu .mobile-burger span:nth-child(4) {
        transition: width 0s;
        top: 12px;
        width: 0%;
        left: 50%;
    }

    .mobile-open-menu .mobile-burger span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .block-header .mobile-burger span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: var(--wp--preset--color--dark-blue);
        opacity: 1;
        left: 0;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.25s ease-in-out;
        -moz-transition: 0.25s ease-in-out;
        -o-transition: 0.25s ease-in-out;
        transition: 0.25s ease-in-out;
    }

    .block-header .mobile-burger span:nth-child(1) {
        top: 0px;
    }

    .block-header .mobile-burger span:nth-child(2),
    .block-header .mobile-burger span:nth-child(3) {
        top: 7px;
    }

    .block-header .mobile-burger span:nth-child(3) {
        top: 7px;
    }

    .block-header .mobile-burger span:nth-child(4) {
        top: 14px;
    }

    .block-header .mobile-open-menu .mobile-burger span:nth-child(1) {
        top: 2444444444px;
        width: 0%;
        left: 50%;
    }

    .block-header .mobile-open-menu .mobile-burger span:nth-child(2) {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .block-header .mobile-open-menu .mobile-burger span:nth-child(4) {
        transition: width 0s;
        top: 24px;
        width: 0%;
        left: 50%;
        display: none;
    }

    .block-header .mobile-open-menu .mobile-burger span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

    .block-header .mobile-menu-link-box {
        display: flex;
        margin-bottom: 24px;
    }

    .block-header .mobile-menu-link-box .mobilelink {
        width: 100%;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        border: 1px solid var(--wp--preset--color--grey);
        background: var(--wp--preset--color--dirty-white);
        padding: 16px;
        color: var(--wp--preset--color--dark-blue);
        font-size: 18px;
        font-weight: 400;
        line-height: 24px;
        display: block;
        text-decoration: none;
    }

    .block-header .mobile-menu-link-box .mobilelink:after {
        display: none;
    }

    .block-header .mobile-menu-link-box .mobilelink.full {
        margin-right: 16px;
    }

    .block-header .mobile-menu-link-box .trigger-submenu {
        min-width: 50px;
        -webkit-border-radius: 12px;
        -moz-border-radius: 12px;
        border-radius: 12px;
        border: 1px solid var(--wp--preset--color--grey);
        background: var(--wp--preset--color--dirty-white);
        cursor: pointer;
        position: relative;
    }

    .block-header .mobile-menu-link-box .trigger-submenu::after {
        content: "";
        border: solid black;
        border-top-width: medium;
        border-right-width: medium;
        border-bottom-width: medium;
        border-left-width: medium;
        border-width: 0 2px 2px 0;
        display: inline-block;
        padding: 4px;
        transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        top: 50%;
        left: 50%;
        position: absolute;
        margin-top: -4px;
        margin-left: -7px;
    }

    .block-header .mobile-header .logo {
        width: 140px;
        height: 50px;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .block-header #mobile-menu .main-menu a {
        margin-right: 0;
    }

    .block-header #mobile-menu .main-menu {
        flex-direction: column;
    }

    .block-header #mobile-menu .mobile-menu-all {
        position: fixed;
        top: 66px;
        height: calc(100vh - 66px);
        background: #EFEFEF;
        width: 100%;
        z-index: 2;
        left: -100vw;
        padding: 20px 20px;
        box-sizing: border-box;
        flex-direction: column;
        display: none;
        transition: all 0.5s ease;
        -webkit-transition: all 0.5s ease;
        -moz-transition: all 0.5s ease;
        -o-transition: all 0.5s ease;
        box-sizing: border-box;
    }

    .block-header #mobile-menu .mobile-menu-all.active {
        left: 0;
        display: flex;
    }

    .block-header #mobile-menu .menu-title {
        color: #00A3E0;
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        margin-bottom: 16px;
    }

    .block-header .mobile-menu-back {
        position: fixed;
        left: 20px;
        width: 90vw;
        height: 100%;
        background-color: #fff;
        display: none;
        top: 0px;
        z-index: 3;
        height: 64px;
    }

    .block-header .mobile-menu-back.active {
        display: flex;
        background-color: #fff;
        align-items: center;
    }

    .block-header .mobile-menu-back .menu-back-text {
        align-items: center;
        color: var(--wp--preset--color--dark-blue);
        font-size: 16px;
        font-weight: 500;
        line-height: 24px;
        box-sizing: border-box;
        position: relative;
        display: flex;
        padding-left: 30px;
        cursor: pointer;
    }

    .desktop-menu-block {
        display: none
    }

    .mobile-menu-block {
        display: block
    }

    .block-header #search-box.active {
        padding: 15px 20px;
    }

    .block-header .mobile-close-search .close-search::before,
    .block-header .mobile-close-search .close-search::after {
        width: 18px;
        height: 2px;
        left: 0;
    }

    .block-header .header-right.inactive {
        display: none;
    }

    .block-header #search-box .search-form-box .close-search {
        display: none;
    }

    .block-header .mobile-close-search.inactive {
        display: none;
    }

    .block-header #search-box .search-form-box .search-form .search-field {
        width: 100%;
        line-height: 64px;
        padding: 0 0 0 40px;
        box-sizing: border-box;
    }

    .block-header #search-box .search-form-box .search-form label::before,
    .block-header #search-box .search-form-box .search-form .search-submit {
        left: 0;
    }

    .block-header #search-box .search-sugestions .sugestion {
        margin-bottom: 10px;
        display: inline-block;
    }

    .block-header .custom-select {
        margin-top: 30px;
        padding-left: 16px;
    }

    .block-header .mobile-close-search .close-search {
        margin-right: 4px;
    }

    .search-open {
        overflow: hidden;
    }
}

@media only screen and (max-width: 800px) {
    .block-header #mobile-menu {
        top: 68px;
    }

    .block-header #mobile-menu.active {
        height: calc(100vh - 68px);
    }

    .block-header .mobile-header .logo {
        width: 100px;
        height: 35px;
    }

    .block-header .global-button-white .text,
    .block-header .global-button-white::before,
    .block-header .global-button-white::after {
        display: none;
    }

    .block-header .global-button-white {
        min-width: inherit;
        padding: 0;
        -webkit-border-radius: 0px;
        -moz-border-radius: 0px;
        border-radius: 0px;
        border: none;
    }

    .block-header .global-button:hover .icon {
        background-color: var(--wp--preset--color--primary);
    }

    .block-header .header-right .search-button {
        height: 35px;
        margin-left: 16px;
        padding-left: 16px;
    }

    .block-header .header-right .search-glass,
    .block-header .global-button .icon {
        width: 34px;
        height: 34px;
        margin-right: 24px;
    }

    .block-header .global-button .icon {
        margin-right: 0px;
    }

    .block-header #search-box .search-form-box .search-form {
        flex-direction: column;
    }

    .block-header #search-box .search-form-box .search-form .search-submit {
        margin-left: 0;
        margin-top: 24px;
    }

    .block-header #search-box .close-search {
        min-width: inherit;
    }
}