.mfo-body--has-navigation-open {
    height: 100vh;
    overflow: hidden;
}
.mfo-global-nav {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10000;
    background-color: white;
    -webkit-box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.15);
    box-shadow: 0px 0px 20px 5px rgba(0,0,0,0.15);
    transition: 0.5s;
}
.mfo-body--is-scrolling-down .mfo-global-nav {
    top: -400px;
}
.mfo-global-nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1700px;
    margin: 0 auto;
    padding: 30px 36px;
}
.mfo-global-nav__logo img {
    width: 240px;
    height: auto;
}
.mfo-global-nav__search input {
    padding: 14px 18px;
    border-radius: 30px;
    width: 100%;
    box-sizing: border-box;
    border: solid 1px #EBEBEB;
    margin-bottom: 30px;
    background-image: url('../images/search.svg');
    background-repeat: no-repeat;
    background-position: calc(100% - 20px) center;
    background-size: 16px;
}
.mfo-global-nav__search-result a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: solid 1px #f2f2f2;
}
.mfo-global-nav__search-result a::after {
    content: "";
    display: block;
    height: 18px;
    width: 18px;
    background-image: url('../images/arrow-right-turquoise.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}
.mfo-global-nav__menu {
    margin-left: auto;
}
.mfo-global-nav__btn {
    font-size: 18px;
    color: black;
    line-height: 1.2;
    font-weight: 400;
    padding: 10px 24px;
    border-radius: 26px;
    cursor: pointer;
    background: #f2f2f2;
    transition: 0.25s;
    white-space: nowrap;
}
.mfo-global-nav__btn--is-blue,
.mfo-global-nav__btn--is-blue:hover {
    background-color: #0942bd;
    color: white;
}
.mfo-global-nav__btn--is-turquoise,
.mfo-global-nav__btn--is-turquoise:hover {
    background-color: #2dcfb7;
    color: white;
}
.mfo-global-nav__search-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    background: #f2f2f2;
    border-radius: 50%;
    margin-right: 10px;
}
.mfo-global-nav__search-btn img {
    height: 18px;
    width: auto;
}
.mfo-global-nav__search-btn img:last-of-type {
    display: none;
}
.mfo-body--has-search-flyout-open .mfo-global-nav__search-btn img:first-of-type {
    display: none;
}
.mfo-body--has-search-flyout-open .mfo-global-nav__search-btn img:last-of-type {
    display: block;
}
.mfo-global-nav__lang-btn {
    display: flex;
    flex-direction: column;
    width: 40px;
}
.mfo-global-nav__lang-switch {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    width: 40px;
    background: #f2f2f2;
    border-radius: 50%;
    margin-top: 0;
    transition: 0.5s;
    text-transform: uppercase;
    font-size: 14px;
    line-height: unset;
    border: solid 1px #f2f2f2;
}
a.mfo-global-nav__lang-switch {
    background: #0942bd;
    color: white;
}
a.mfo-global-nav__lang-switch:hover {
    color: white;
}
.mfo-global-nav__lang-switch:nth-child(1) {
    z-index: 3000000;
}
.mfo-global-nav__lang-switch:nth-child(2) {
    z-index: 2000000;
}
.mfo-global-nav__lang-switch:nth-child(3) {
    z-index: 1000000;
}
.mfo-global-nav__item-flyout {
    display: none;
}
.mfo-global-nav__item-link {
    display: flex;
    align-items: center;
}
.mfo-global-nav__item-link span {
    font-size: 18px;
    color: black;
}
.mfo-global-nav__item--has-flyout-active .mfo-global-nav__item-link span {
    color: #2dcfb7;
}
.mfo-global-nav__item-expand {
    height: 10px;
    width: 10px;
    margin-left: 12px;
    background-image: url('../images/arrow-down.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(0deg);
    transition: 0.25s;
}
.mfo-global-nav__item--has-flyout-active .mfo-global-nav__item-expand {
    background-image: url('../images/arrow-down-turquoise.svg');
    transform: rotate(180deg);
}
.mfo-global-nav__item-flyout * {
    font-size: 18px;
}
.mfo-global-nav__item-flyout-subnavigation-title {
    font-weight: bold;
    padding-bottom: 16px;
    border-bottom: solid 1px #f2f2f2;
    margin-bottom: 22px;
}
.mfo-global-nav__item-flyout-subnavigation-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 8px;
}
.mfo-global-nav__item-flyout-subnavigation-item span {
    color: black;
}
.mfo-global-nav__item-flyout-subnavigation-item-expand {
    height: 10px;
    width: 10px;
    margin-left: 12px;
    background-image: url('../images/arrow-right.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.mfo-global-nav__item-flyout-subnavigation-content {
    display: none;
}
.mfo-global-nav__item-flyout-subnavigation-content a,
.mfo-global-nav__item-flyout-subnavigation-content a:hover {
    color: #000000;
}
.mfo-global-nav__item-flyout-subnavigation-content > div:hover {
    left: 16px;
}
.mfo-global-nav__item-flyout-subnavigation-content > div::before {
    content: '';
    position: absolute;
    height: 10px;
    width: 10px;
    background-color: #2dcfb7;
    border-radius: 50%;
    margin-top: 6px;
    opacity: 0;
    transition: 0.5s;
}
.mfo-global-nav__item-flyout-subnavigation-content > div:hover::before {
    opacity: 1;
    margin-left: -16px;
}
.mfo-global-nav__item-flyout-subnavigation-content > div * {
    line-height: 1.4;
}
.mfo-global-nav__item-flyout-subnavigation-content > div p {
    margin-bottom: 6px;
}
.mfo-global-nav__item-flyout-teaser img {
    height: auto;
    margin-bottom: 16px;
}
.mfo-global-nav__item-flyout-teaser-btn,
.mfo-global-nav__item-flyout-teaser-btn:hover {
    background-color: #2dcfb7;
    color: white;
}
.mfo-global-nav__close-flyout {
    display: block;
    margin: 20px auto;
    width: fit-content;
}
.mfo-global-nav__close-flyout img {
    width: 26px;
    height: auto;
}


/* -- MIN WIDTH 1000PX -- */
@media (min-width: 1000px) {
    .mfo-global-nav__menu-top > * {
        margin-right: 30px;
    }
    .mfo-global-nav__item-flyout-inner {
        display: flex;
    }
    .mfo-global-nav__item-flyout-subnavigation {
        width: 360px;
        padding-right: 80px;
        margin-right: 80px;
        border-right: solid 1px #f2f2f2;
    }
    .mfo-global-nav__item-flyout-teaser {
        width: 360px;
        padding-left: 80px;
        margin-left: 80px;
        border-left: solid 1px #f2f2f2;
    }
    .mfo-global-nav__item-flyout-content-wrapper {
        flex: 1;
    }
}


/* -- MAX WIDTH 1000PX -- */
@media (max-width: 1000px) {
    .mfo-global-nav__item-flyout-teaser {
        display: none;
    }
    .mfo-global-nav__item-flyout-subnavigation {
        margin-bottom: 36px;
    }
}


/* -- MIN WIDTH 1000PX AND MAX WIDTH 1200PX -- */
@media (min-width: 1000px) and (max-width: 1200px) {
    .mfo-global-nav__logo img {
        width: 160px;
    }
}

/* -- MIN WIDTH 1000PX AND MAX WIDTH 1320PX -- */
@media (min-width: 1000px) and (max-width: 1320px) {
    .mfo-global-nav__item-flyout-subnavigation {
        width: 260px;
        padding-right: 40px;
        margin-right: 40px;
    }
    .mfo-global-nav__item-flyout-teaser {
        width: 300px;
        padding-left: 40px;
        margin-left: 40px;
    }
}


/* -- MIN WIDTH 1160PX -- */
@media (max-width: 1160px) {
    .mfo-global-nav__item-flyout-teaser {
        display: none;
    }
}


/* -- MIN WIDTH 1000PX -- */
@media (min-width: 1000px) {
    .mfo-body--has-search-flyout-open {
        height: 100%;
        overflow: hidden;
    }
    .mfo-global-nav__search {
        position: fixed;
        top: 100px;
        left: 0;
        display: none;
        height: calc(100% - 100px);
        width: 100%;
        z-index: 9999;
        background-color: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(40px);
    }
    .mfo-body--has-search-flyout-open .mfo-global-nav__search {
        display: block;
    }
    .mfo-body--has-search-flyout-open .mfo-global-nav__btn,
    .mfo-body--has-search-flyout-open .mfo-global-nav__lang-switch,
    .mfo-body--has-search-flyout-open .mfo-global-nav__item-flyout {
        display: none !important;
    }
    .mfo-global-nav__search-inner {
        max-width: 800px;
        margin: 40px auto;
    }
    .mfo-global-nav__search-result {
        padding-left: 18px;
        padding-right: 18px;
    }
    .mfo-global-nav__search-result a {
        margin-bottom: 20px;
        padding-bottom: 20px;
    }
    .mfo-global-nav__menu-top {
        display: flex;
        justify-content: flex-end;
        align-items: flex-start;
    }
    .mfo-global-nav__menu-top > * {
        margin-right: 20px;
    }
    .mfo-global-nav__menu-top > *:last-child {
        margin-right: 0;
    }
    .mfo-global-nav__menu-main {
        display: flex;
        justify-content: flex-end;
        margin-top: 30px;
    }
    .mfo-global-nav__menu-main > * {
        margin-right: 30px;
    }
    .mfo-global-nav__menu-main > *:last-child {
        margin-right: 0;
    }
    .mfo-global-nav__item--has-flyout-active .mfo-global-nav__item-flyout {
        display: block;
        position: fixed;
        z-index: 9999;
        top: 138px;
        left: 0;
        width: 100%;
        background: white;
        -webkit-box-shadow: inset 0px 14px 27px -20px rgba(0,0,0,0.15);
        box-shadow: inset 0px 14px 27px -20px rgba(0,0,0,0.15);
    }
    .mfo-global-nav__item-flyout-inner {
        max-width: 1700px;
        margin: 0 auto;
        padding: 36px;
    }
    .mfo-global-nav__item-flyout-subnavigation-content--is-active {
        display: flex !important;
    }
    .mfo-global-nav__item-flyout-subnavigation-item--is-active {
        background-color: #e0f8f4;
    }
    .mfo-global-nav__item-flyout-subnavigation-content {
        flex-wrap: wrap;
        gap: 60px;
    }
    .mfo-global-nav__item-flyout-subnavigation-content > div {
        width: calc(50% - 30px);
        position: relative;
        left: 0;
        transition: 0.6s;
    }
    body::after {
        content: '';
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 0;
        z-index: 8888;
        backdrop-filter: blur(10px);
        background-color: rgba(0, 0, 0, 0.5);
    }
    body:has(.mfo-global-nav__item--has-flyout-active .mfo-global-nav__item-flyout) {
        height: 100%;
        overflow: hidden;
    }
    body:has(.mfo-global-nav__item--has-flyout-active .mfo-global-nav__item-flyout)::after {
        height: 100%;
    }
    .mfo-global-nav__lang-btn:hover .mfo-global-nav__lang-switch:nth-child(2) {
        margin-top: 42px;
    }
    .mfo-global-nav__lang-btn:hover .mfo-global-nav__lang-switch:nth-child(3) {
        margin-top: 84px;
    }
    .mfo-global-nav__menu-socials {
        display: none;
    }
}


/* -- MAX WIDTH 1000PX -- */
@media (max-width: 1000px) {
    .mfo-global-nav__inner {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .mfo-global-nav__search input {
        margin-left: -10px;
        margin-right: -10px;
        width: calc(100% + 20px);
    }
    .mfo-global-nav__search-result {
        margin-bottom: 20px;
    }
    .mfo-global-nav__search-result a {
        margin-bottom: 10px;
        padding-bottom: 10px;
    }
    .mfo-global-nav__logo img {
        width: 160px;
    }
    .mfo-global-nav__hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 24px;
        width: 38px;
    }
    .mfo-global-nav__hamburger span {
        height: 2px;
        width: 100%;
        background-color: black;
        position: relative;
        top: 0;
        transform: rotate(0deg);
        transition: .5s;
    }
    .mfo-global-nav__hamburger[aria-expanded="true"] span:nth-child(1) {
        top: 11px;
        transform: rotate(45deg);
    }
    .mfo-global-nav__hamburger[aria-expanded="true"] span:nth-child(2) {
        width: 0;
    }
    .mfo-global-nav__hamburger[aria-expanded="true"] span:nth-child(3) {
        top: -11px;
        transform: rotate(-45deg);
    }
    .mfo-global-nav__menu {
        display: none;
    }
    .mfo-body--has-navigation-open .mfo-global-nav__menu {
        position: fixed;
        top: 95px;
        left: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        background: white;
        height: calc(100% - 95px);
        padding: 32px 36px;
        overflow: scroll;
        -webkit-box-shadow: inset 0px 14px 27px -20px rgba(0,0,0,0.15);
        box-shadow: inset 0px 14px 27px -20px rgba(0,0,0,0.15);
    }
    .mfo-global-nav__menu-main {
        order: 1;
    }
    .mfo-global-nav__menu-top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        order: 2;
        margin-top: 12px;
        margin-bottom: 40px;
    }
    .mfo-global-nav__menu-top > * {
        margin-bottom: 18px;
    }
    .mfo-global-nav__menu-top > *:last-child {
        margin-bottom: 0;
    }
    .mfo-global-nav__btn {
        font-size: 14px;
    }
    .mfo-global-nav__btn--is-standart {
        font-size: 14px;
        background: transparent;
        padding: 0;
    }
    .mfo-global-nav__item-flyout-subnavigation {
        margin-bottom: 16px;
    }
    .mfo-global-nav__item-flyout-subnavigation-title {
        font-size: 14px;
        margin-top: 20px;
        margin-bottom: 10px;
    }
    .mfo-global-nav__item {
        padding-bottom: 16px;
        border-bottom: 1px solid #f2f2f2;
        margin-bottom: 16px;
    }
    .mfo-global-nav__item-flyout-subnavigation-item {
        justify-content: flex-start;
        margin-bottom: 4px;
    }
    .mfo-global-nav__item-flyout-subnavigation-content {
        padding: 12px;
    }
    .mfo-global-nav__item-flyout-subnavigation-content > div {
        margin-bottom: 20px;
    }
    .mfo-global-nav__item-flyout-subnavigation-content p {
        display: none;
    }
    .mfo-global-nav__item-flyout-subnavigation-content p:has(strong) {
        display: block;
    }
    .mfo-global-nav__item-flyout-subnavigation-item--is-active span {
        color: #2dcfb7;
    }
    .mfo-global-nav__item-flyout-subnavigation-item-expand {
        transform: rotate(0deg);
        background-image: url('../images/arrow-down.svg');
    }
    .mfo-global-nav__item-flyout-subnavigation-item--is-active .mfo-global-nav__item-flyout-subnavigation-item-expand {
        transform: rotate(180deg);
        background-image: url('../images/arrow-down-turquoise.svg');
    }
    .mfo-global-nav__close-flyout {
        display: none;
    }
    .mfo-global-nav__search-btn {
        display: none;
    }
    .mfo-global-nav__lang-btn:hover .mfo-global-nav__lang-switch:nth-child(2) {
        margin-left: 60px;
    }
    .mfo-global-nav__lang-btn:hover .mfo-global-nav__lang-switch:nth-child(3) {
        margin-left: 120px;
    }
    .mfo-global-nav__menu-socials {
        order: 2;
        display: flex;
        gap: 10px;
        margin-top: 14px;
    }
    .mfo-global-nav__menu-social svg {
        height: 42px;
        width: auto;
    }
}

@media (max-width: 1000px) {
    .contactInfo a {
        font-size: 18px !important;
    }
}
