/** COMMONS **/

/*
 * Write common website styles here that you don't expect to see in the admin
 */

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
1.0 Globals
2.0 Utils
3.0 Forms
3.1 Forms / Filters
4.0 Sliders
5.0 Page commons
6.0 Header
7.0 Footer
8.0 404
9.0 Animations

--------------------------------------------------------------*/
/*- 1.0 Globals */
[id] {
    scroll-margin-top: 50px;
}

/*- 2.0 Utils */
.reset-nav {
    padding: 0;
    margin: 0;
}

.reset-nav li {
    display: block;
}

.reset-nav a {
    text-decoration: none;
}

.js-clickable-block {
    cursor: pointer;
}


/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

@media screen and (max-width: 991px) {
    .hide-on-tablet-portrait {
        display: none;
    }
}
@media screen and (max-width: 767px) {
    .hide-on-mobile {
        display: none;
    }
}

/*- 3.0 Forms */
/* @see 06-forms.css */


/*- 4.0 Sliders */
.slider__arrows {
    display: flex;
    gap: 8px;
}
.slider__arrow__prev,
.slider__arrow__next {
    color: var(--wp--preset--color--blue);
    background: none;
    border: 1px solid #E1E1DF;
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    width: 54px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s ease-out;
}
.slider__arrow__prev:disabled,
.slider__arrow__next:disabled {
    opacity: 0.2;
}
.slider__arrow__prev:focus,
.slider__arrow__next:hover {
    background: #FAFAFA;
}

.has-blue-background-color .slider__arrow__prev,
.has-blue-background-color .slider__arrow__next {
    border-color: #FFF;
    background: #FFF;
}
.has-blue-background-color .slider__arrow__prev:focus,
.has-blue-background-color .slider__arrow__next:hover {
    background: #E1E1DF;
}



/*- 5.0 Page commons */
.page-header {
    margin-top: 41px;
}
.page-header__breadcrumbs {
    margin-bottom: 32px;
    text-transform: lowercase;
}
.page-header__breadcrumbs > span {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    color: var(--wp--preset--color--blue);
}
.page-header__breadcrumbs a,
.page-header__breadcrumbs span {
    font-size: 0.75rem;
    line-height: 1.3;
    font-weight: 500;
    padding: 5px 0;
    border-bottom: 1px solid transparent;
}
.page-header__breadcrumbs span span {
    color: var(--wp--preset--color--golden);
}
.page-header__breadcrumbs a {
    position: relative;
    text-decoration: none;
    color: var(--wp--preset--color--grey-main);
}
.page-header__breadcrumbs a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #929292;
    width: 0;
    opacity: 0;

    transition: width 0.4s ease-out, opacity 0s 0.4s;
}
.page-header__breadcrumbs a:hover::after {
    width: 100%;
    opacity: 1;
    transition: width 0.4s ease-out;
}

.page-header__breadcrumbs svg {
    display: block;
}
body.has-blue-background-color .page-header__breadcrumbs > span {
    color: var(--wp--preset--color--golden);
}
body.has-blue-background-color .page-header__breadcrumbs span span {
    color: #FFF;
}
body.has-blue-background-color .page-header__breadcrumbs a {
    color: rgba(255, 255, 255, 0.5);
}
body.has-blue-background-color .page-header__breadcrumbs a::after {
    border-color: currentColor;
}


.pop-up__overlay {
    position: fixed;
    z-index: 3000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;

    display: flex;
    justify-content: flex-end;
    align-items: center;

}
.pop-up__overlay.is-visible {
    opacity: 1;
    pointer-events: initial;
}
.pop-up__close-btn {
    position: absolute;
    top: 144px;
    left: -16px;
    width: 32px;
    height: 32px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF;
    background: var(--wp--preset--color--blue);
    transition: 0.3s ease-out;
}
.pop-up__close-btn:hover {
    background: var(--wp--preset--color--blue-700);
}
.pop-up__close-btn svg {
    width: 18px;
    height: 18px;
}

.pop-up__content {
    position: relative;
    width: fit-content;
    max-width: 50vw;
    padding: 144px 106px 70px 134px;
    background: #FFF;
    height: 100%;
    transform: translateX(100%);
    transition: transform 0.5s ease-out;
}
.pop-up__content__inner {
    overflow: auto;
    max-height: 100%;
}
.pop-up__overlay.is-visible .pop-up__content {
    transform: none;
}

.lightbox-trigger {
    display: none!important;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
/* Pushers */
.pagination .nav-links::before {
    content: '';
    order: 2;
    flex: 1 1 auto;
}
.pagination .nav-links::after {
    content: '';
    order: 4;
    flex: 1 1 auto;
}
.pagination .nav-links .page-numbers {
    order: 3;
    color: inherit;
    text-decoration: none;
    font-weight: 500;
    border-left: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-self: center;
    transition: background-color 0.2s ease-out;
}
.pagination .nav-links a.page-numbers:hover {
    background: #F2F4FF;
    color: var(--wp--preset--color--blue);
}

.pagination .nav-links .current {
    background: #F2F4FF;
    color: var(--wp--preset--color--blue);
}

.pagination .nav-links .prev,
.pagination .nav-links .next {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: 600;
    width: auto;
    padding: 11px 18px;
    transition: background-color 0.2s ease-out;
}
.pagination .nav-links .prev:hover,
.pagination .nav-links .next:hover {
    background: #FAFAFA;
}

.pagination .nav-links .prev {
    order: 1;
    width: 133px;
}
.pagination .nav-links .prev .icon {
    transform: scaleX(-1);
}
.pagination .nav-links .next {
    order: 5;
    width: 133px;
    justify-content: flex-end;
}
.pagination .nav-links:not(:has(.prev))::before {
    width: 133px;
}

.global-loading-screen {
    position: fixed;
    z-index: var(--custom-theme-z-index-overlay);
    inset: 0;
    background: var(--wp--preset--color--blue) url("../images/loading-bg.jpg") center center / cover no-repeat;
    color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.8s ease-in-out;
}
.global-loading-screen .global-loading-screen__logo {
    opacity: 0;
    transition: opacity 0.3s ease-out;
    width: 436px;
    height: 96px;
}
.global-loading-screen.is-loading .global-loading-screen__logo {
    opacity: 1;
}
.global-loading-screen.is-loaded {
    transform: translateY(-100%);
    pointer-events: none;
}
.global-loading-screen.is-loaded .global-loading-screen__logo {
    transform: translateY(calc(50vh + 56px)) scale(0.2889);
    opacity: 0;
    transition: opacity 0.3s ease-out 0.5s, transform 0.8s ease-in-out;
}

@media screen and (max-width: 1439px) {
    .pop-up__content {
        max-width: 70vw;
    }
}
@media screen and (max-width: 1279px) {
    .pop-up__content {
        padding: 72px var(--wp--style--root--padding-right) 72px var(--wp--style--root--padding-left);
    }
    .page-header {
        margin-top: 16px;
    }
    .global-loading-screen.is-loaded .global-loading-screen__logo {
        transform: translateX(calc(-50vw + var(--wp--style--root--padding-left))) translateY(calc(50vh + 37px)) scale(0.2889);
    }
}

@media screen and (max-width: 991px) {
    .pop-up__close-btn {
        left: auto;
        right: var(--wp--style--root--padding-right);
        top: 16px;
    }
    .pop-up__content {
        max-width: none;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .page-header__breadcrumbs a,
    .page-header__breadcrumbs span {
        font-size: 0.625rem;
    }
    .page-header__breadcrumbs > span {
        flex-wrap: nowrap;
        white-space: nowrap;
    }
    .page-header__breadcrumbs .breadcrumb_last {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

    .pagination .nav-links::before,
    .pagination .nav-links::after {
        display: none;
    }
    .pagination .nav-links .prev span,
    .pagination .nav-links .next span {
        display: none;
    }
    .pagination .nav-links .prev,
    .pagination .nav-links .next {
        width: auto;
        border: 1px solid #E1E1DF;
        border-radius: 8px;
        padding-left: 7px;
        padding-right: 7px;
    }
    .pagination-text {
        flex: 1 1 auto;
        order: 3;
        text-align: center;
        padding-left: 40px;
        padding-right: 40px;
        font-size: 0.875rem;
        line-height: 1.3;
        color: #0D0F1C;
        font-weight: 500;
    }
    .prev ~ .pagination-text {
        padding-left: 0;
    }
    .next ~ .pagination-text {
        padding-right: 0;
    }
    body.has-blue-background-color .pagination-text {
        color: #FFF;
    }

    .global-loading-screen .global-loading-screen__logo {
        width: 47vw;
        height: auto;
    }
    .global-loading-screen.is-loaded .global-loading-screen__logo {
        transform: translateX(calc(-50vw + var(--wp--style--root--padding-left) + 47vw/4)) translateY(50vh) scale(0.5);
    }
}

/*- 6.0 Header */
.site-header {
    position: fixed;
    z-index: var(--custom-theme-z-index-nav);
    top: 0;
    left: 0;
    width: 100%;

    height: var(--custom-theme-site-header-height);
    padding-left: var(--wp--style--root--padding-left);
    padding-right: var(--wp--style--root--padding-right);
    transition: background 0.2s ease-out, transform 0.5s ease-in-out;
    --custom-theme-site-header-border-color: #FFF;
}
/* Fix glitch on Firefox where a black lines appear with the transition */
.site-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background-color: var(--custom-theme-site-header-border-color);
    transition: 0s linear;
}
.site-header.has-scrolled.is-scrolling-down {
    transform: translateY(calc(-100% - 1px));
}

.site-header,
/* body.wp-theme-fsdv just for specificity */
body.wp-theme-fsdv .site-header:has(.depth-0 > a[aria-expanded="true"]),
body.has-blue-background-color .site-header:has(.depth-0 > a[aria-expanded="true"]),
html:not(.menu-is-open) body.wp-theme-fsdv.has-blue-background-color .site-header.has-focus,
html:not(.menu-is-open) body.wp-theme-fsdv.has-blue-background-color .site-header:hover,
html:not(.menu-is-open) body.wp-theme-fsdv:has(.page-body__content > .block-introduction:first-child) .site-header.has-focus,
html:not(.menu-is-open) body.wp-theme-fsdv:has(.page-body__content > .block-introduction:first-child) .site-header:hover {
    background: #FFF;
    color: var(--wp--preset--color--blue);

    --custom-theme-toggle-menu-alt-bg: #FAFAFA;
    --custom-theme-site-header-border-color: rgba(225, 225, 223, 0.86);
}

html:not(.menu-is-open) body.has-blue-background-color .site-header:not(.has-scrolled),
html:not(.menu-is-open) body:has(.page-body__content > .block-introduction:first-child) .site-header:not(.has-scrolled) {
    background: transparent;
    color: #FFF;

    --custom-theme-toggle-menu-alt-bg: var(--wp--preset--color--blue);
    --custom-theme-site-header-border-color: rgba(224, 224, 224, 0.3);
}

.site {
    padding-top: var(--custom-theme-site-header-height);
}


.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}
.site-header__logo {
    position: absolute;
    width: 126px;
    height: 28px;
    left: 50%;
    top: 50%;
    margin-left: -63px;
    margin-top: -14px;
    color: inherit;
}
.site-header__logo svg {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.main-navigation {
    display: block;
    width: 100%;
}
.site-header__main-menu {
    display: flex;
    gap: 28px;
}
.site-header__main-menu .depth-0 > a,
.site-header__quotation a {
    display: block;
    color: inherit;
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
}
.site-header__main-menu .depth-0:not(.site-header__quotation) > a {
    position: relative;
}
.site-header__main-menu .depth-0:not(.site-header__quotation) > a:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid;
    width: 0;
    transition: width 0.4s ease-out;
}
.site-header__main-menu .depth-0:not(.site-header__quotation):hover > a::after {
    width: calc(100% - 20px);
    transition: width 0.4s ease-out 0.5s;
}
.site-header__main-menu .depth-0.menu-item-has-children > a {
    display: flex;
    align-items: center;
    gap: 4px;
}
.site-header__main-menu .depth-0.menu-item-has-children > a .icon {
    width: 16px;
    height: 16px;
}
.site-header__main-menu .depth-0 > .sub-menu-wrapper {
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1;
    left: 0;
    top: calc(100% + 1px);
    width: 100%;
    background: #FFF;
    padding: 30px var(--wp--style--root--padding-right) 48px var(--wp--style--root--padding-left);
    box-shadow: 0 4px 5px rgba(25, 33, 61, 0.05);
    transition: 0.2s ease-out;
}
.site-header:hover .site-header__main-menu .depth-0 > .sub-menu-wrapper {
    transition-delay: 0.4s;
}
.site-header__main-menu .depth-0 > .sub-menu-wrapper::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}
.site-header__main-menu .depth-0.menu-item-has-children > a[aria-expanded="true"] .icon {
    transform: scaleY(-1);
}
.site-header__main-menu .depth-0 > .sub-menu-wrapper[aria-hidden="false"] {
    opacity: 1;
    pointer-events: initial;
    visibility: visible;

    z-index: 10;
    transition-delay: 0s!important;
}

.main-navigation.is-open .depth-0 > .sub-menu-wrapper {
    transition: none!important;
}
.site-header__spacer {
    flex: 1 1 auto;
}
.site-header__main-menu .depth-0.site-header__quotation > a,
.site-header__quotation a {
    display: flex;
    align-items: center;
    gap: 6px;
}
.site-header__quotation a {
    text-decoration: none;
}

.main-navigation {
    align-self: stretch;
}
.main-navigation__menu,
.main-navigation__menu > div,
.site-header__main-menu {
    height: 100%;
}
.site-header__main-menu .depth-0 {
    display: flex;
    align-items: center;
}

.sub-menu-wrapper__col-left {
    --custom-theme-flex-span: 7;
    display: flex;
    justify-content: space-between;
    gap: 24px;
}
.sub-menu-wrapper__col-right {
    --custom-theme-flex-span: 5;
}

.sub-menu-wrapper__menu-intro,
.sub-menu-wrapper__col-left > .sub-menu {
    max-width: 302px;
    flex: 1 1 auto;
}
.sub-menu-wrapper__menu-intro__title {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 800;
    color: var(--wp--preset--color--blue);
    margin-bottom: 24px;
}
.sub-menu-wrapper__menu-intro__description {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 32px;
}
.sub-menu-wrapper__col-left a:not(.wp-block-button__link) {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--wp--preset--color--blue);
    font-size: 1rem;
    line-height: 1.3;
    font-weight: 600;
    transition: 0.3s ease-out;
}
.sub-menu-wrapper__col-left a:not(.wp-block-button__link) .icon {
    color: var(--wp--preset--color--golden-500);
    transition: 0.3s ease-out;
}
.sub-menu-wrapper__col-left a:not(.wp-block-button__link):focus,
.sub-menu-wrapper__col-left a:not(.wp-block-button__link):hover,
.sub-menu-wrapper__col-left a:not(.wp-block-button__link):focus .icon,
.sub-menu-wrapper__col-left a:not(.wp-block-button__link):hover .icon {
    color: var(--wp--preset--color--golden-600);
}
.sub-menu-wrapper__col-left .sub-menu {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sub-menu-wrapper__col-left .sub-menu .lvl {
    display: block;
    text-transform: uppercase;
    font-size: 0.75rem;
    line-height: 1.3;
    color: var(--wp--preset--color--grey-main);
    font-weight: 500;
    margin-top: 18px;
    margin-bottom: 24px;
}
.sub-menu-wrapper__col-right img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 521/320;
    object-fit: cover;
    border-radius: 4px;
}

.sub-menu-wrapper__menu-intro__investor-contact {
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    padding: 24px;
}
.investor-contact__title {
    margin: 0 0 12px;
    color: var(--wp--preset--color--blue);
}
.site-header__menu-toggle,
.site-header__inner > .site-header__spacer,
.site-header__inner > .site-header__quotation {
    display: none;
}

@media screen and (max-width:1279px)  {
    html.menu-is-open,
    html.menu-is-open body {
        overflow: hidden;
    }
    .site-header__inner {
        gap: 8px;
        background: inherit;
        transition: 0.2s ease-out;
    }
    .site-header__logo {
        position: static;
        margin: 0;
    }
    .site-header__menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 6px;
        border: 1px solid #E0E0E0;
        transition: background-color 0.3s ease-out;
    }
    .site-header__menu-toggle:hover,
    .site-header__menu-toggle:focus {
        background-color: var(--custom-theme-toggle-menu-alt-bg);
    }


    .site-header__inner > .site-header__spacer,
    .site-header__inner > .site-header__quotation {
        display: block;
    }

    .site-header__quotation a {
        padding: 13px 16px;
    }

    .main-navigation {
        position: absolute;
        z-index: -1;
        top: var(--custom-theme-site-header-height);
        width: 100%;
        left: 0;
        padding-top: 40px;
        padding-bottom: 40px;
        background-color: #FFF;
        height: calc(100vh - var(--custom-theme-site-header-height) - var(--viewport-height-diff));
        overflow: hidden;
        pointer-events: none;
        visibility: hidden;
        transform: translateY(-100%);
        transition: transform 0.8s ease-in-out, visibility 0s linear 0.8s;
        box-shadow: 0 4px 5px rgba(25, 33, 61, 0.05);
    }
    .main-navigation[aria-hidden="false"] {
        pointer-events: initial;
        visibility: visible;
        transform: none;
        transition: transform 0.8s ease-in-out, visibility 0s linear 0s;
    }
    .main-navigation > div,
    .main-navigation > div > div {
        height: 100%;
    }
    .site-header__main-menu {
        flex-direction: column;
        gap: 0;
        max-height: 100%;
        overflow: auto;
    }
    .site-header__main-menu .depth-0 > a,
    .site-header__main-menu .depth-1 > a,
    .site-header__main-menu .depth-2 > a {
        font-size: 1.125rem;
    }
    .site-header__main-menu .depth-0 > a,
    .site-header__main-menu .depth-1 > a,
    .site-header__main-menu .depth-2 > a {
        padding: 13px var(--wp--style--root--padding-right) 13px var(--wp--style--root--padding-left);
        border-bottom: 1px solid #F5F5F5;
        justify-content: space-between;
    }

    .site-header__main-menu .depth-0.menu-item-has-children > a {
        width: 100%;
    }
    .site-header__main-menu .depth-0:not(.site-header__quotation) > a:after {
        display: none;
    }
    .site-header__main-menu .depth-0.menu-item-has-children > a .icon {
        transform: rotate(-90deg);
        width: 24px;
        height: 24px;
        color: var(--wp--preset--color--golden);
    }
    .site-header__main-menu .site-header__quotation {
        display: none;
    }

    .sub-menu-wrapper__col-left .sub-menu {
        gap: 0;
    }
    .sub-menu-wrapper__menu-intro,
    .sub-menu-wrapper__menu-intro__title,
    .sub-menu-wrapper__menu-intro__description,
    .sub-menu-wrapper__col-right {
        display: none;
    }
    .site-header__main-menu .depth-0.menu-item-has-children > a[aria-expanded="true"] .icon {
        transform: rotate(-90deg);
    }

    .site-header__main-menu .depth-0 > .sub-menu-wrapper,
    .main-navigation.is-open .depth-0 > .sub-menu-wrapper {
        top: 0;
        z-index: 10;
        box-shadow: -4px 0 5px rgba(25, 33, 61, 0.05);
        bottom: 0;
        transform: translateX(100%);
        transition: 0.6s ease-in-out!important;
    }
    .site-header__main-menu .depth-0 > .sub-menu-wrapper[aria-hidden="false"] {
        transform: none;
    }
    .sub-menu-wrapper__col-left {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        --custom-theme-flex-span: 12;
    }

    .site-header__back-link-btn {
        margin-bottom: 16px;
        margin-top: -12px;
    }

    .site-header__parent-menu-title {
        text-transform: uppercase;
        color: var(--wp--preset--color--golden-500);
        font-size: 0.75rem;
        line-height: 1.3;
        font-weight: 500;
    }

    .site-header .depth-0 {
        transform: translateY(10px);
        opacity: 0;
        transition: 0.5s ease-in-out 500ms;
    }
    .site-header .depth-0:nth-child(2) { transition-delay: 600ms; }
    .site-header .depth-0:nth-child(3) { transition-delay: 700ms; }
    .site-header .depth-0:nth-child(4) { transition-delay: 750ms; }
    .site-header .depth-0:nth-child(5) { transition-delay: 775ms; }
    .site-header .depth-0:nth-child(6),
    .site-header .depth-0:nth-child(6) ~ .depth-0 { transition-delay: 800ms; }
    .main-navigation[aria-hidden="true"] .depth-0 {
        transition-delay: 0s!important;
    }
    .main-navigation[aria-hidden="false"] .depth-0 {
        opacity: 1;
        transform: none;
    }
    .site-header .depth-1 > a .icon {
        display: none;
    }

    .site-header__main-menu .depth-1 > a,
    .site-header__main-menu .depth-2 > a {
        margin-left: calc(-1 * var(--wp--style--root--padding-left));
        margin-right: calc(-1 * var(--wp--style--root--padding-right));
    }
    .site-header__main-menu .depth-2 > a {
        justify-content: flex-start;
    }

    .sub-menu-wrapper__col-left > .sub-menu {
        max-width: none;
        width: 100%;
    }
    .sub-menu-wrapper__col-left .sub-menu .lvl {
        margin-bottom: 0;
    }


    .sub-menu-wrapper__menu-intro:has(.sub-menu-wrapper__menu-intro__investor-contact) {
        display: block;
        order: 100;
        margin-top: 20px;
    }


}

@media screen and (max-width: 991px) {
    .site-header__logo {
        width: 92px;
        height: 20px;
    }
}

/*- 7.0 Footer */
.site-footer {
    padding-top: 72px;
    padding-bottom: 64px;
    border-top: 1px solid #F1F3F7;
}
.site-footer__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 98px;
}
.site-footer__newsletter-cta {
    padding: 61px 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    flex: 1 1 100%;
}
.site-footer__newsletter-cta.has-blue-background-color {
    background-image: url('../images/newsletter-bg.webp');
    background-size: cover;
}
.site-footer__newsletter-cta__title {
    font-size: 1.875rem;
    line-height: 1.2;
    font-weight: 600;
    max-width: 12em;
}
.site-footer__logo {
    align-self: flex-end;
    color: var(--wp--preset--color--blue);
    opacity: 0.2;
    text-decoration: none;
}
.site-footer__spacer {
    flex: 1 1 auto;
}

.footer-links__title {
    font-size: 0.875rem;
    line-height: 1.2;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--wp--preset--color--blue);
    margin-bottom: 16px;
}
.footer-links__menu,
.footer-links__menu a {
    font-size: 0.875rem;
    line-height: 1.3;
    font-weight: 500;
    color: inherit;
}
.footer-links__menu a:hover,
.footer-links__menu a:focus {
    text-decoration: underline;
}
.footer-links__menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.footer-links__menu .icon-linkedin {
    margin-top: 10px;
}
.footer-links__menu .icon-linkedin a {
    display: block;
    width: 24px;
    height: 24px;
    color: var(--wp--preset--color--blue);
    transition: 0.3s ease-out;
}
.footer-links__menu .icon-linkedin a:hover,
.footer-links__menu .icon-linkedin a:focus {
    color: var(--wp--preset--color--golden);
}

body.has-blue-background-color .site-footer {
    border-top-color: rgba(241, 243, 247, 0.2); /* #F1F3F7 at 0.2 opacity */
}
body.has-blue-background-color .site-footer__newsletter-cta {
    background: #CBBAA4; /* var(--wp--preset--color--golden-400); */
    --custom-theme-button-bg-color: #FFF;
    --custom-theme-button-bg-color-alt: #FAFAFA;
    --custom-theme-button-border-color: #FFF;
    --custom-theme-button-border-color-alt: #FAFAFA;
    --custom-theme-button-text-color: var(--wp--preset--color--blue);
    --custom-theme-button-text-color-alt: var(--wp--preset--color--blue);
}
body.has-blue-background-color .site-footer__logo {
    color: #FFF;
}
body.has-blue-background-color .footer-links__menu .icon-linkedin a {
    --custom-theme-icon-linkedin-text-color: var(--wp--preset--color--blue);
    color: #FFF;
}
body.has-blue-background-color .footer-links__menu .icon-linkedin a:hover {
    color: #FAFAFA;
}

body.has-blue-background-color .footer-links__title {
    color: inherit;
}

@media screen and (max-width: 1279px) {
    .site-footer__newsletter-cta {
        padding: 41px 53px;
    }
    .site-footer__inner {
        gap: 64px 48px;
    }
    .site-footer__logo {
        width: 40%;
    }
    .site-footer__logo svg {
        width: 100%;
        height: auto;
    }
}
@media screen and (max-width: 991px) {
    .site-footer {
        padding-top: 48px;
        padding-bottom: 24px;
    }
    .site-footer__inner {
        column-gap: 60px;
    }
    .site-footer__newsletter-cta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
        order: 1;
    }
    .site-footer__contact {
        order: 2;
    }
    .site-footer__legal {
        order: 3;
    }
    .site-footer__spacer {
        display: none;
    }
    .site-footer__logo {
        order: 100;
        flex: 1 1 100%;
    }
}
@media screen and (max-width: 767px) {
    .site-footer__newsletter-cta {
        padding-left: 32px;
        padding-right: 32px;
        margin-bottom: -32px;
    }
    .site-footer__newsletter-cta__title {
        font-size: 1.5rem;
    }
    .site-footer__newsletter-cta__btn {
        font-size: 0.875rem;
    }
}

/*- 8.0 404 */
.error404 .block-h1 {
    font-size: 18.75rem;
    line-height: 1;
    margin-bottom: 0;
    opacity: 0.25;
}
.error404 .block-section:has(.block-h1) {
    padding-bottom: var(--custom-theme-site-header-height);
}
.error404 .block-h1 ~ .wp-block-buttons {
    margin-top: 64px;
}


@media screen and (max-width: 767px) {
    .error404 .block-h1 {
        font-size: 45vw;
    }
    .error404 .block-h1 ~ .has-text-align-center {
        text-align: left;
    }
    .error404 .block-h1 ~ .wp-block-buttons {
        margin-top: 32px;
    }
    .error404 .block-section:has(.block-h1) {
        padding-bottom: 0;
    }
}

/*- 9.0 Animations */

@media (prefers-reduced-motion: no-preference) {
    .a-fade-in {
        opacity: 0;

    }
    .a-fade-in.is-visible {
        opacity: 1;
        transition: 0.5s ease-out;
    }
    .a-fade-in-slide-up {
        opacity: 0;
        transform: translateY(50px);
    }
    .a-fade-in-slide-up.is-visible {
        opacity: 1;
        transform: none;
        transition: 0.5s ease-out;
    }
    .a-fade-in-slide-up + .a-fade-in-slide-up {
        transition-delay: 0.2s!important;
    }
    .a-fade-in-slide-up + .a-fade-in-slide-up + .a-fade-in-slide-up {
        transition-delay: 0.3s!important;
    }
    .a-fade-in-slide-right {
        opacity: 0;
        transform: translateX(-50px);
    }
    .a-fade-in-slide-right.is-visible {
        opacity: 1;
        transform: none;
        transition: 0.5s ease-out;
    }
    .a-fade-in-scale-up {
        opacity: 0;
        transform: scale(0.9);
    }
    .a-fade-in-scale-up.is-visible {
        opacity: 1;
        transform: none;
        transition: 0.5s ease-out;
    }

    .a-delay-1.is-visible {
        transition-delay: 0.2s;
    }
    .a-delay-2.is-visible {
        transition-delay: 0.3s;
    }
    .a-delay-3.is-visible {
        transition-delay: 0.35s;
    }
    .a-delay-4.is-visible {
        transition-delay: 0.37s;
    }
}
