/*
Theme Name: wnvg.ch
Author: LEXO GmbH
Author URI: https://www.lexo.ch/
Version: 1.0
*/

html, body {
    scroll-behavior: smooth;
}

body {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: none !important;
}
body.has-popup {
    overflow-y: hidden;
}


.fcb-section.section-404 {
    padding: 350px 0;
}

.fcb-section.section-404 h1 {
    color: var(--color-main);
    margin-bottom: 28px;
}

.section-container {
    transition: opacity 1s ease, transform 1s ease;
}

.section-container.queued-animation:not(.queued-animation-active) {
    opacity: 0;
    transform: translateY(-25px) scale(0.95);
}

/*
 *
 * HANDLE PDF EMBED ON IOS DEVICES
 *
 */

body .show-ios {
    display: none;
}

body.safari.iphone .show-ios,
body.safari.osx .show-ios,
body.safari.tablet .show-ios {
    display: unset;
}

body.safari.iphone .hide-ios,
body.safari.osx .hide-ios,
body.safari.tablet .hide-ios {
    display: none !important;
}
/*
 * General
 */
.container {
    width: min(100% - 2 * var(--page-margin), var(--page-max));
    max-width: none;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
}

.fcb-section > .container > .row {
    margin-left: 0;
    margin-right: 0;
}


.flex {
    display: flex;
}

input {
    transition: all 0.3s;
}

p:empty {
    display: none;
}

#page-content img,
#page-content video {
    max-width: 100%;
    height: auto;
}

/*
 * Form submit notification
 */

#l-notify {
    position: fixed;
    bottom: 0;
    z-index: 1100;
    left: 0;
    width: 100%;
    text-align: center;
    background: var(--color-main);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
    padding: 25px 15px;
    color: var(--color-white);
    font-size: 2.5rem;
    line-height: 1.3em;
    opacity: 0;
    visibility: hidden;
    transform: translate(0, 100%);
    transition: transform 0.3s, opacity 0.3s, visibility 0.3s;
}

#l-notify.l-error {
    background-color: rgba(255, 0, 0, 0.85);
}

#l-notify.active {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
}
/*
 * Main layout
 */

/* Logo */
.logo {
    position: relative;
    min-width: 0;
    gap: 40px;
}

.header-logo {
    display: block;
    flex-shrink: 0;
    width: auto;
    height: 56px;
    transition: height 0.3s;
}

.header-logo--dark {
    display: none;
}

body.no-heroes .header-logo--light,
body.mini .header-logo--light {
    display: none;
}

body.no-heroes .header-logo--dark,
body.mini .header-logo--dark {
    display: block;
}

/* /Logo */

/* Header */

header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    box-sizing: border-box;
    border-bottom: 1px solid #fff;
    background-color: transparent;
    transition: background-color 0.3s, height 0.3s, transform 0.3s, opacity 0.3s, border-color 0.3s;
    z-index: 999;
}
.no-heroes header,
.mini header {
    border-color: #D0D0D0;
}

body:not(.no-heroes) header::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 170px;
    background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
    opacity: 0.5;
    z-index: 998;
    transition: opacity 0.3s;
}

body.no-heroes header,
body.mini header {
    background-color: var(--color-white);
}

body.mini header::before {
    opacity: 0;
}

header .container {
    position: relative;
    z-index: 1000;
}

@media (min-width: 1201px) {
    header .container {
        width: min(100% - 2 * var(--page-margin) + 40px, var(--page-max) + 40px);
    }
}

.header-wrapper {
    align-items: center;
    justify-content: space-between;
}

.header-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    flex: 0 0 auto;
    padding-right: 3px;
}

.header-upper {
    align-items: center;
    justify-content: flex-end;
    font-size: 1.4rem;
    line-height: 2.4rem;
    font-family: var(--font-medium);
}

.header-upper a {
    padding: 7px 20px;
    transition: background-color 0.3s, color 0.3s;
}

.header-upper:not(:has(#lang-switcher)) a {
    padding: 7px 17px;
}

.header-upper a:hover {
    background-color: #FFFFFF;
    color: var(--color-text);
}

body.no-heroes .header-upper a:hover,
body.mini .header-upper a:hover {
    background-color: #F5F6F8;
}

.header-lower {
    height: 72px;
    align-items: center;
    justify-content: flex-end;
}

.logo-wrapper {
    flex: 1 1 auto;
    min-width: 0;
    padding-left: 20px;
}

.menu-container {
    flex: 0 0 auto;
}

.header-menu-button {
    display: none;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 50%;
    font-size: 3.2rem;
    line-height: 1;
    color: var(--color-text);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

:where(body:not(.no-heroes):not(.mini)) .header-menu-button {
    color: var(--color-white);
}

@media (hover: hover) {
    .header-menu-button:hover {
        background-color: rgba(59, 79, 112, 0.08);
        color: var(--color-main);
    }

    :where(body:not(.no-heroes):not(.mini)) .header-menu-button:hover {
        background-color: rgba(255, 255, 255, 0.18);
        color: var(--color-white);
    }
}

.header-menu-button:active {
    transform: scale(0.94);
}

.main-menu-nav {
    align-items: center;
    height: 100%;
}

#main-menu {
    margin-bottom: 0;
}

#main-menu > .menu-item {
    display: flex;
    position: relative;
}

#main-menu > .menu-item > a {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 16px 20px;
    transition: background-color 0.3s, color 0.3s;
}

#main-menu > .menu-item.menu-item-has-children {

}

.submenu-indicator {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-bottom: 1px solid currentColor;
    border-right: 1px solid currentColor;
    transform-origin: 66% 66%;
    transform: rotate(45deg);
}

.lang-switcher .nice-select {
    float: none;
    line-height: 2.4rem;
    padding: 7px 33px 7px 20px;
    background-color: transparent;
    border: none;
    border-radius: 0;
    font-family: var(--font-medium);
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    color: #000;
    text-align: right !important;
    transition: background-color 0.3s, color 0.3s;
}

.lang-switcher .nice-select:hover,
.lang-switcher .nice-select.open {
    background-color: #FFFFFF;
    color: var(--color-text);
}

body.no-heroes .lang-switcher .nice-select:hover,
body.no-heroes .lang-switcher .nice-select.open,
body.no-heroes .lang-switcher .nice-select .list,
body.mini .header-upper .lang-switcher .nice-select:hover,
body.mini .header-upper .lang-switcher .nice-select.open,
body.mini .header-upper .lang-switcher .nice-select .list {
    background-color: #F5F6F8;
}

:where(body:not(.no-heroes):not(.mini)) :where(.header-upper) .lang-switcher .nice-select {
    color: var(--color-white);
}

.lang-switcher .nice-select::after {
    right: 20px;
    width: 7px;
    height: 7px;
    border-color: #000;
    border-bottom-width: 1px;
    border-right-width: 1px;
    transition: border-color 0.3s, transform 0.3s;
}

:where(body:not(.no-heroes):not(.mini)) :where(.header-upper) .lang-switcher .nice-select::after {
    border-color: var(--color-white);
}

.lang-switcher .nice-select:hover::after,
.lang-switcher .nice-select.open::after {
    border-color: var(--color-text);
}

.lang-switcher .nice-select .list {
    width: 100%;
    margin: 0;
    padding: 8px 0;
    background-color: #FFFFFF;
    border-radius: 0;
    box-shadow: none;
}

.lang-switcher .nice-select .option {
    position: relative;
    box-sizing: content-box;
    width: fit-content;
    min-height: 30px;
    line-height: 30px;
    margin-left: auto;
    padding: 0 20px;
    font-family: var(--font-medium);
    font-size: 1.4rem;
    letter-spacing: 0.02em;
    text-align: right;
    color: #000;
}

.lang-switcher .nice-select .option:hover,
.lang-switcher .nice-select .option.focus,
.lang-switcher .nice-select .option.selected.focus {
    background-color: transparent;
    color: #000;
}

.lang-switcher .nice-select .option::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 5px;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.lang-switcher .nice-select .option:is(:hover, .focus)::after {
    transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
    .lang-switcher .nice-select .option::after {
        transition: none;
    }
}

.lang-switcher .nice-select .option.selected {
    display: none;
}

/* Mobile menu */

.main-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 1200;
    overflow-x: hidden;
    overflow-y: auto;
    background-color: var(--color-white);
    clip-path: inset(0 50% 0 50%);
    transition: clip-path 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

body.menu-active .main-menu {
    clip-path: inset(0 0 0 0);
}

.mobile-menu-nav {
    padding: 0 15px 40px;
    padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
}

.mobile-menu-top {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    height: 72px;
    padding: 0 15px;
    border-top: 1px solid var(--color-main);
}

.mobile-menu-meta {
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 56px;
    padding: 0 15px;
    border-bottom: 1px solid var(--color-gray-border-alt);
}

.mobile-menu-meta .header-top-nav a {
    display: inline-block;
    padding: 10px 0;
    color: var(--color-text);
}

.mobile-menu-meta .lang-switcher .nice-select {
    padding-right: 20px;
    padding-left: 0;
}

.menu-active .mobile-menu-meta .lang-switcher .nice-select {
    padding-left: 20px;
}

.mobile-menu-meta .lang-switcher .nice-select::after {
    right: 4px;
}

.mobile-menu-meta .lang-switcher .nice-select .list {
    left: auto;
    right: 0;
    min-width: 100%;
    width: auto;
}

.mobile-menu-top .logo {
    flex: 1 1 auto;
    min-width: 0;
}

.header-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    background: none;
    border: none;
    border-radius: 50%;
    font-size: 1.8rem;
    line-height: 1;
    color: var(--color-text);
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
}

@media (hover: hover) {
    .header-menu-close:hover {
        background-color: rgba(59, 79, 112, 0.08);
        color: var(--color-main);
    }
}

.header-menu-close:active {
    transform: scale(0.94);
}

.mobile-nav-menu {
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-menu > .menu-item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.mobile-nav-menu > .menu-item > a {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    align-items: center;
    padding: 10px 0;
    font-family: var(--font-medium);
    font-size: 2rem;
    line-height: 3.2rem;
    color: var(--color-text);
    transition: color 0.3s;
}

.mobile-nav-menu > .menu-item.menu-item-has-children > a {
    padding-bottom: 4px;
}

.mobile-nav-menu > .menu-item > a:hover {
    color: var(--color-main);
}

.mobile-nav-menu > .menu-item:is(.current-menu-item, .current_page_parent) > a,
.mobile-nav-menu > .menu-item:is(.current-menu-item, .current_page_parent) > a:hover {
    font-family: var(--font-bold);
    color: var(--color-text);
}

.sub-menu-holder-mobile {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 0 10px 24px;
}

.sub-menu-holder-mobile .sub-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sub-menu-holder-mobile .sub-menu a {
    display: block;
    padding: 7px 0;
    font-family: var(--font-main);
    font-size: 1.8rem;
    line-height: 2.8rem;
    color: var(--color-text);
    transition: color 0.3s;
}

.sub-menu-holder-mobile .sub-menu a:hover {
    color: var(--color-main);
}

.sub-menu-holder-mobile .sub-menu > .current-menu-item > a,
.sub-menu-holder-mobile .sub-menu > .current-menu-item > a:hover {
    font-family: var(--font-bold);
    color: var(--color-text);
}

/* Header */

/*
 * Footer
 */

footer {
    background-color: var(--color-main);
}

.footer-top {
    display: flex;
    align-items: flex-start;
    gap: 143px;
    padding: 64px 0 48px;
}

.footer-brand {
    flex: 0 0 auto;
}

.footer-brand-mark {
    display: block;
    width: 40px;
    height: 1px;
    margin-bottom: 16px;
    background-color: var(--color-white);
}

.footer-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 2.8rem;
    line-height: 3.4rem;
    letter-spacing: 0.02em;
    color: var(--color-white);
}

.footer-locations {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 24px;
    margin-top: 32px;
}

.footer-location {
    font-family: var(--font-main);
    font-size: 1.6rem;
    line-height: 2.8rem;
    color: var(--color-white);
}

.footer-location p:last-child {
    margin: 0;
}

.footer-location strong,
.footer-location b {
    font-family: var(--font-bold);
    font-weight: 700;
}

.footer-location a {
    color: var(--color-white);
    transition: opacity 0.3s, color 0.3s;
}

.footer-location a:is(:hover, :focus) {
    color: var(--color-white);
    opacity: 0.7;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--color-white);
}

.footer-bottom-inner {
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px 0;
}

.footer-copyright {
    margin: 0;
    font-family: var(--font-main);
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: var(--color-white);
}

.footer-legal-menu {
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 32px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-legal-menu a {
    position: relative;
    font-family: var(--font-main);
    font-size: 1.4rem;
    line-height: 2.4rem;
    color: var(--color-white);
    transition: opacity 0.3s, color 0.3s;
}

.footer-legal-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.footer-legal-menu a:is(:hover, :focus) {
    color: var(--color-white);
    opacity: 0.85;
}

.footer-legal-menu a:is(:hover, :focus)::after,
.footer-legal-menu .current-menu-item > a::after {
    transform: scaleX(1);
}

/*
 * Seo title
 */

.margin-regular {
    margin-bottom: 1.4em !important;
}

.margin-small {
    margin-bottom: 1em !important;
}

.margin-none {
    margin-bottom: 0 !important;
}

h1 .part1,
h1 .part2 {
    display: block;
}

/* Hero title (h1 hero): 64/80 — larger than the content h1 (48/60) */
.header-slider-item-content-wrapper h1,
.video-content-wrapper h1 {
    font-size: 6.4rem;
    line-height: 8rem;
    letter-spacing: 0.02em;
}

/* Hauptnavigation (main menu): Manrope 500, 20/32 */
.main-menu-nav a {
    font-family: var(--font-medium);
    font-size: 2rem;
    line-height: 3.2rem;
    color: var(--color-text);
}

:where(body:not(.no-heroes):not(.mini)) #main-menu > .menu-item > a {
    color: var(--color-white);
}

.sub-menu a {
    font-family: var(--font-main);
    font-weight: 400;
    padding: 7px 28px;
}

/* Kopfnavigation (top/header nav): Manrope 500, 14/24. */
.header-top-nav a {
    font-family: var(--font-medium);
    font-size: 1.4rem;
    line-height: 2.4rem;
    letter-spacing: 0.02em;
    color: var(--color-text);
}

:where(body:not(.no-heroes):not(.mini)) .header-top-nav a {
    color: var(--color-white);
}

/*
 * Flexible content - page-content
 */

#page-content {
    flex: 1 0 auto;
    word-break: break-word;
}

#page-content:not(.auto-hyphenation-disabled) {
    -webkit-hyphens: auto;
    -webkit-hyphenate-limit-before: 3;
    -webkit-hyphenate-limit-after: 3;
    -webkit-hyphenate-limit-chars: 6 3 3;
    -webkit-hyphenate-limit-lines: 2;
    -webkit-hyphenate-limit-last: always;
    -webkit-hyphenate-limit-zone: 8%;
    -moz-hyphens: auto;
    -moz-hyphenate-limit-chars: 6 3 3;
    -moz-hyphenate-limit-lines: 2;
    -moz-hyphenate-limit-last: always;
    -moz-hyphenate-limit-zone: 8%;
    -ms-hyphens: auto;
    -ms-hyphenate-limit-chars: 6 3 3;
    -ms-hyphenate-limit-lines: 2;
    -ms-hyphenate-limit-last: always;
    -ms-hyphenate-limit-zone: 8%;
    hyphens: auto;
    hyphenate-limit-chars: 6 3 3;
    hyphenate-limit-lines: 2;
    hyphenate-limit-last: always;
    hyphenate-limit-zone: 8%;
}

/* Youtube shortcode */
.youtube-container {
    margin-bottom: 1.3em;
    container-type: inline-size;
    overflow: hidden;
}

* + .youtube-container {
    margin-top: 1.3em;
}

.youtube-container a {
    position: relative;
    display: block;
}

.youtube-container a::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 127px;
    height: 127px;
    transform: translate(-50%, -50%) scale(1);
    transition: transform .3s ease-in-out;
    background: url(images/play.svg) center/contain no-repeat;
    z-index: 2;
}

.youtube-container img {
    transition: transform .3s ease-in-out;
}

.youtube-container a:hover img {
    transform: scale(1.05);
}

.youtube-container a:hover::after {
    transform: translate(-50%, -50%) scale(1.2);
}

.youtube-container a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0, 0.2);
    z-index: 1;
}

@container (max-width: 768px) {
    .youtube-container a::after {
        width: 50px;
        height: 50px;
    }
}
/* /Youtube shortcode */

/*
 * Hero section
 */
#header-slider-wrapper {
    position: relative;
    height: min(500px, 100vh);
}

#header-slider-wrapper.header-slider-height-big {
    height: min(860px, 100vh);
}

#header-slider,
.header-slider {
    color: var(--color-white);
    height: auto;
    width: 100%;
}

.header-slider-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.header-slider-item[data-slide-anchor="center"] .row {
    margin-right: 0;
}

.header-slider-item-background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}

.header-slider-item-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--hero-overlay);
}
/* .header-slider-item-background.no-overlay::before {
    background: #FF00AA33;
} */

/* .header-slider-item-background.no-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent linear-gradient(180deg, var(--color-blue-darker) 0%, #08172700 100%) 0% 0% no-repeat padding-box;
    opacity: 0.6;
} */

.header-slider-item-background img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
}

.header-slider-item-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 240px 0;
    transition: opacity 1.5s ease;
}
.header-slider-item-content-wrapper {
    position: relative;
    isolation: isolate;
    width: 100%;
    transition: opacity 1s ease, transform 1s ease;
}

.header-slider-item-content-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: 200px;
    background-color: var(--color-black);
    opacity: 0.15;
    filter: blur(40px);
    pointer-events: none;
}

body .header-slider-item-content-wrapper p,
body .header-slider-item-content-wrapper > * {
    color: var(--color-light);
}

.header-slider-item-content-wrapper.queued-animation:not(.queued-animation-active) {
    transform: translateY(-25px) scale(0.95);
    opacity: 0%;
}

.header-slider-item[data-slide-anchor="center"] .header-slider-item-content-wrapper {
    text-align: center;
}

.hero-nav {
    position: absolute !important;
    top: 50%;
    transform: translateY(-50%);
    font-size: 67px;
    color: var(--color-white);
    opacity: 0.5;
    transition: opacity 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1;
}

.hero-nav:is(:hover) {
    opacity: 1;
}

.hero-prev {
    left: 30px;
}

.hero-next {
    right: 30px;
}

#header-badge-container {
    position: absolute;
    left: 0;
    z-index: 5;
    text-align: right;
    transform: translateY(-50%);
}

#header-video-wrapper {
    position: relative;
    display: flex;
    height: min(1080px, 100vh);
    overflow: hidden;
}

#header-video-wrapper::before {
    content: '';
    background-image: var(--hero-bgr);
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

#header-video-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: var(--hero-overlay);
    z-index: 3;
}

#header-video-wrapper video {
    position: absolute;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    z-index: 2;
}

#header-video-wrapper .header-video-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    z-index: 10;
}

.video-content-wrapper > * {
    color: var(--color-light);
}

.home-hero-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    bottom: 60px;
    left: 50%;
    width: 64px;
    height: 64px;
    transform: translateX(-50%) scale(1);
    background-color: var(--color-white);
    border-radius: 50%;
    text-align: center;
    font-size: 3.2rem;
    vertical-align: middle;
    transition: transform .3s ease;
    z-index: 99;
    cursor: pointer;
}

.home-hero-icon::before {
    content: '\e904';
    font-family: var(--font-icons);
    color: var(--color-blue-dark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    transition: transform .3s ease;
}

.home-hero-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    box-shadow: var(--color-white-10) 0 0 0 19px;
    transition: box-shadow .3s ease;
}

.home-hero-icon:hover {
    transform: translateX(-50%) scale(1.22);
}

.home-hero-icon:hover::after {
    box-shadow: var(--color-white-10) 0 0 0 12px;
}

.home-hero-icon:hover::before {
    transform: translate(-50%, -50%) scale(1.01);
}
/*
 * Hero section End
 */

/*
 * Contact Form 
 */

/*
 * Contact Form End
 */

/* Single Team */

/* Single Team */

/* Custom Editor */

.custom-editor-content[data-width="medium"] {
    max-width: 560px;
    margin: 0 auto;
}

.custom-editor-content[data-width="small"] {
    max-width: 460px;
    margin: 0 auto;
}

/* Custom Editor */

/* RESOURCE LISTING */

.search-wrapper {
    align-items: center;
    gap: 30px;
    margin-bottom: 70px;
}

.search-wrapper .top-content > :last-child {
    margin-bottom: 0;
}

.search-wrapper .search {
    width: 100%;
    align-items: center;
    background-color: var(--color-background);
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    overflow: hidden;
}

.search-wrapper .search input {
    width: 100%;
    border: none;
    height: 64px;
    padding-left: 26px;
    background-color: var(--color-background);
    outline: none !important;
}

.search-wrapper .search input::placeholder {
    color: var(--color-gray-light);
}

.search-wrapper .search .search-icon {
    font-size: 25px;
    color: var(--color-main);
    padding-right: 22px;
    padding-left: 5px;
}

.resource-listing {
    margin: 0;
    padding: 32px;
    background-color: var(--color-light);
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    transition: opacity 1s ease, transform 1s ease, background-color var(--dt-transition);
}

.resource-listing.queued-animation:not(.queued-animation-active) {
    transform: translateY(25px) scale(0.95);
    opacity: 0%;
}

.resource-listing-heading {
    margin-bottom: 24px;
}

.resource-listing-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 2rem;
    padding: 0;
    margin-bottom: 0;
    list-style: none;
}

.resource-listing-list a {
    text-decoration: none;
}

.resource-listing-list a:hover {
    text-decoration: underline;
}

/* RESOURCE LISTING */

/* BROCHURE */

.brochure {
    position: relative;
    display: flex;
    flex-direction: column;
    height: auto;
    overflow: hidden;
    background-color: var(--color-background);
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    transition: opacity 1s ease, transform 1s ease, background-color var(--dt-transition);
    container-type: inline-size;
}

.brochure.queued-animation:not(.queued-animation-active) {
    transform: translateY(25px) scale(0.95);
    opacity: 0%;
}

.brochure-image-container {
    border-radius: 6px 6px 0 0;
    overflow: hidden;
}

.brochure-thumbnail-group {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: var(--brochure-thumbnail-bg);
    background-size: cover;
    background-position: center center;
    padding: 26px 0;
    box-sizing: border-box;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.brochure-thumbnail-group-empty {
    min-height: 220px;
    background-color: var(--color-gray-bg-light);
}

.brochure-thumbnail {
    max-width: 270px !important;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    user-select: unset;
    pointer-events: unset;
}

.brochure-title-subtitle-group {
    flex-direction: column;
    padding: 26px 30px 15px;
}

.brochure-title-subtitle-group  h4 {
    margin-bottom: 20px;
}

.brochure-title-subtitle-group a {
    text-decoration: underline;
    margin-top: 10px;
}

.brochure-button-group {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    margin-top: auto;
}

.brochure-button-group > .link-button {
    margin: 0 !important;
}

.brochure-fullscreen-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background-color: transparent;
    border-radius: 50%;
}

.brochure-fullscreen-button:not(.play-button) {
    border: none;
    padding: 0;
}

span.brochure-fullscreen-button:hover {
    transform: scale(1.1);
}


.brochure-fullscreen-button:active {
    transform: scale(0.95);
}

.brochure-fullscreen-button-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 66px;
    height: 66px;
    font-size: 21px;
    transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s, border-color 0.3s;
    letter-spacing: 0;
    color: var(--color-main);
    border: 1px solid var(--color-main);
}

.brochure-fullscreen-button-icon.over-image {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    width: 85px;
    height: 85px;
    transform: translate(-50%, -50%);
    border: none;
    color: var(--color-white);
    background-color: var(--color-main-75);
    font-size: 30px;
    line-height: 85px;
    text-align: center;
    opacity: 70%;
    cursor: pointer;
    z-index: 1;
}

.brochure-fullscreen-button-icon::before {
    color: currentColor;
    transition: color 0.3s;
}

.brochure-fullscreen-button-icon.over-image::before {
    color: var(--color-white);
}

.brochure-thumbnail-group:has(.brochure-thumbnail:hover) .brochure-fullscreen-button-icon.over-image,
.brochure-fullscreen-button-icon.over-image:hover {
    background-color: var(--color-blue-dark);
}

.brochure-thumbnail-group .brochure-fullscreen-button-icon.over-image + .brochure-thumbnail:hover {
    transform: scale(1.03);
}

.brochure-fullscreen-button-icon.over-image:hover + .brochure-thumbnail {
    transform: scale(1.03);
}

.brochure-thumbnail-group .brochure-fullscreen-button-icon.over-image + .brochure-thumbnail {
    cursor: pointer;
}

.brochure-fullscreen-button.play-button {
    width: 100%;
    border-radius: 4px;
    color: var(--color-main);
    background-color: var(--color-background);
    border: 1px solid var(--color-main);
}

a.link-button {
    width: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    color: var(--color-main);
    background-color: var(--color-background);
    border: 1px solid var(--color-main);
}

.brochure-button-group:has(.brochure-fullscreen-button) a.link-button.link-button-outlined {
    width: auto;
}

.brochure-popup {
    display: flex;
    justify-content: center;
    align-items: center;
    width: calc(100% - 128px);
    height: calc(100% - 128px);
}

.brochure-popup-object {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
}

a.link-button:is(:hover, :focus),
.brochure-fullscreen-button.play-button:is(:hover, :focus),
.brochure-fullscreen-button:not(.over-image):is(:hover, :focus) .brochure-fullscreen-button-icon {
    color: var(--color-white);
    background-color: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
}

@container (max-width: 380px) {
    .brochure-fullscreen-button:not(.play-button), 
    .brochure-fullscreen-button-icon.over-image:not(.play-button) {
        display: none;
    }

    .brochure-button-group:has(.brochure-fullscreen-button) a.link-button.link-button-outlined {
        width: 100%;
    }

    .fcb-columns[data-elements-count="3"] .brochure a.link-button {
        padding: 15px;
    }
}

/* BROCHURE */

/* POPUP */

.popup {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background: var(--color-popup-bg);
    backdrop-filter: blur(10px);
    width: 100%;
    height: 100%;
    z-index: 999;
    transition: opacity 0.3s;
}

.popup:not(.popup-active) {
    opacity: 0%;
    pointer-events: none;
    user-select: none;
}

.popup-close {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 16px;
    right: 20px;
    color: var(--color-white);
    background: none;
    border: 1px solid var(--color-white);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 14px;
    transition: transform 0.125s ease;
    letter-spacing: 0;
}

.popup-close:active {
    transform: scale(0.9);
}

/* POPUP */

@media (max-width: 768px) {
	/* One height for both variants on mobile; the big/small choice is desktop-only */
	#header-slider-wrapper,
	#header-slider-wrapper.header-slider-height-big {
		height: min(500px, 70vh);
	}
}

/* Filter Buttons */

.kfh-keyword>input[type="checkbox"] {
    display: none;
}

.kfh-keyword>label {
    display: inline-block;
    font-family: var(--font-semibold);
    max-width: 100%;
    border: 1px solid var(--color-main);
    background-color: var(--color-background);
    color: var(--color-main);
    user-select: none;
    padding: 16px 26px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.kfh-keyword>label:is(:hover) {
    background-color: var(--color-blue-dark);
    border-color: var(--color-blue-dark);
    color: var(--color-white);
}


.kfh-keyword>input:checked+label {
    border-color: var(--color-main);
    background-color: var(--color-main);
    color: var(--color-white);
}


/* Filter Buttons End */

/* Resources Filter */
.container:has(#resources-results) {
    z-index: 2;
}

#resources-filter-holder {
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 70px;
}

#resources-results {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    transition: opacity .3s ease;
    opacity: 100%;
    grid-auto-rows: auto;
    align-items: start;
}

#resources-results-inner.loading #resources-results {
    opacity: 0%;
}

#resources-results .brochure {
    height: auto;
}

#resources-results .brochure-inner {
    flex-direction: column;
}

#resources-results .brochure-info-container {
    flex-direction: column;
}

#resources-results .link-button::after {
    display: none;
}

@media (min-width: 769px) {
    #resources-results .brochure {
        flex-direction: row;
        padding: 25px;
    }
    
    #resources-results .brochure-inner {
        flex-direction: row;
        align-items: center;
        width: 100%;
        gap: 26px;
    }
    
    #resources-results .brochure-image-container {
        overflow: unset;
        aspect-ratio: 1;
        height: auto;
        flex: 0 1 auto;
    }

    #resources-results .brochure-thumbnail-group {
        padding: 22px 46px;
        border-radius: 6px;
        height: auto;
    }
    
    #resources-results .brochure-fullscreen-button-icon.over-image {
        width: 60px;
        height: 60px;
        font-size: 25px;
        line-height: 60px;
    }
    
    #page-content #resources-results .brochure-thumbnail {
        max-width: 124px !important;
    }
    
    #resources-results .brochure-info-container {
        flex-direction: column;
        gap: 30px;
        flex: 1;
        width: 100%;
    }
    
    #resources-results .brochure-title-subtitle-group {
        padding: 0;
    }
    
    #resources-results .brochure-button-group {
        padding: 0;
        margin-top: unset;
    }
    
    #resources-results .brochure-fullscreen-button.play-button {
        width: auto;
    }
}

/* Resources Filter End */

/* Team */

/* Team */

/* Forms */

.contact-form {
    container-type: inline-size;
    container-name: form;
}

.form-field {
    position: relative;
}

.form-field input,
.form-select,
.form-field textarea {
    display: block;
    color: #32353D;
    border: 1px solid var(--color-gray-light);
    border-radius: 6px;
    background-color: var(--color-background);
    width: 100%;
    padding: 18px 26px;
    box-sizing: border-box;
    font-size: 20px;
    letter-spacing: 1px;
    line-height: 28px;
    transition: border var(--dt-transition), color var(--dt-transition);
    text-overflow: ellipsis;
}

.form-field input:is(:hover, :focus, :not(:placeholder-shown)),
.form-field textarea:is(:hover, :focus, :not(:placeholder-shown)),
.form-field:has(.form-select.has-selection) .select2-container--default .select2-selection--single,
.form-field:has(.form-select.has-selection) .select2-container--default .select2-selection--multiple {
    border-color: var(--color-border-opacity);
    outline: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder,
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-dark-bg-60);
    opacity: 100%;
    text-transform: capitalize;
}

.form-field textarea::placeholder {
    text-transform: capitalize;
}

.form-field:has(input:not(:placeholder-shown)) label,
.form-field:has(.form-select.has-selection) label.visible-lbl,
.form-field:has(textarea:not(:placeholder-shown)) label {
    opacity: 100%;
}

.form-field label {
    position: absolute;
    top: -8px;
    left: 14px;
    display: block;
    margin-bottom: 0;
    padding: 0 9px;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 2.8px;
    color: #717171;
    background-color: #dee0e6;
    border-radius: 2px;
    opacity: 0%;
    transition: opacity var(--dt-transition), color var(--dt-transition), background-color var(--dt-transition);
    text-transform: uppercase;
    font-weight: normal;
    z-index: 10;
}

.form-field textarea {
    min-height: 246px;
    resize: vertical;
}

.privacy-policy {
    display: flex;
    align-items: center;
}

.form-submit {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.form-submit:has(.privacy-notice) {
    justify-content: space-between;
}

.form-checkbox-container {
    position: relative;
}

span.error {
    max-height: 0 !important;
    max-width: 0 !important;
    overflow: hidden;
    display: inline-block !important;
    border: 0 !important;
}

form em {
    position: absolute;
    top: 33px;
    right: 6px;
    height: 28px;
    line-height: 28px;
    z-index: 5;
    font-style: normal;
    transform: translateY(-50%);
}

form em::before {
    content: "\e926";
    font-family: var(--font-icons);
    font-size: 22px;
    color: var(--color-error);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

span.error.hover-active {
    width: max-content;
    max-height: none !important;
    max-width: 300px !important;
    position: absolute;
    top: 0;
    right: 32px;
    background: var(--color-error);
    padding: 6px 10px;
    line-height: 15px;
    border: 0;
    z-index: 100;
    display: inline-block !important;
    font-size: 13px;
    color: var(--color-white);
    overflow: visible;
    font-family: var(--font-h1);
    text-align: center;
}

form em.hover-active {
    width: max-content;
    text-align: right;
}

span.error.hover-active::after {
    content: "";
    display: inline-block;
    border: 6px solid var(--color-error);
    border-top-color: transparent;
    border-right-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 7px;
    right: -12px;
}

.form-select {
    width: 100%;
}

.select2-container .select2-selection:active, 
.select2-container.select2-container--open .select2-selection, 
.select2-container .select2-selection:focus, .select2-container .select2-dropdown, 
.select2-container--default .select2-selection--single {
    border-color: var(--color-gray-light);
    background-color: var(--color-background);
    transition: background-color var(--dt-transition);
}

.select2-container .select2-dropdown {
    width: 100%;
    margin-top: -2px;
    border-radius: 0 0 6px 6px;
}

.select2-container .select2-results {
    position: relative;
    padding-top: 40px;
}

.select2-container .select2-results::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: calc(100% - 60px);
    height: 1px;
    background-color: var(--color-gray-light);
    transform: translate(-50%, -50%);
}

.select2-container .select2-selection__arrow::after {
    border: none;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-dark-bg);
    margin-top: -3px;
    right: 15px;
    opacity: 0.5;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 0.2s ease, border var(--dt-transition), opacity var(--dt-transition);
}

.select2-results__option {
    padding: 6px 26px;
}

/* Arrow for multi-select fields */
.select2-container--default .select2-selection--multiple::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 15px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--color-dark-bg);
    margin-top: -3px;
    opacity: 0.5;
    transform: rotate(0deg);
    transform-origin: center;
    transition: transform 0.2s ease, border var(--dt-transition), opacity var(--dt-transition);
    pointer-events: none;
    z-index: 10;
}

.form-select.has-selection ~ .select2-container--default .select2-selection--multiple::after {
    display: none;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--color-blue-dark);
}

.select2-container--default .select2-results__option--selected {
    background-color: #F5F5F5;
}

.select2-container.select2-container--open .select2-selection__arrow::after {
    transform: rotate(180deg);
}

/* Rotate multi-select arrow when dropdown is open */
.select2-container.select2-container--open .select2-selection--multiple::after {
    transform: rotate(180deg);
}

.select2-container--default .select2-selection--multiple .select2-selection__clear {
    margin-top: 15px;
}

.grid-view-2-columns .form-field:has(.form-select) {
    grid-column: unset;
}

.form-field:has(.form-select) textarea {
    min-height: 41px;
}

.form-field:has(.form-select.has-selection) .select2-container .select2-search__field {
    display: none;
}

.select2-container {
    font-size: 20px;
}

.select2-container .select2-selection--single,
.select2-container .select2-selection--multiple {
    min-height: 66px;
}

.select2-container .select2-selection--single {
    display: flex;
    align-items: center;
}

.select2-container .select2-selection--multiple {
    padding-bottom: 5px;
    position: relative;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 26px;
    padding-right: 50px;
    line-height: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 66px;
    width: 32px;
}

.select2-container .select2-search--dropdown {
    display: none !important;
}

.select2-container .select2-search.select2-search--inline .select2-search__field {
    pointer-events: none;
    cursor: default;
    margin-top: 18px;
    margin-left: 26px;
}

.select2-container .select2-selection--multiple .select2-selection__rendered > :first-child {
    margin-top: 15px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--color-blue-dark);
    border-radius: 6px;
    border: none;
    color: var(--color-white);
    padding-right: 8px;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    border: none;
    color: var(--color-white);
}

.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
    background-color: var(--color-blue-dark);
    color: var(--color-main);
}

.select2-container--default .select2-selection--multiple {
    background-color: var(--color-background);
    transition: background-color var(--dt-transition);
}

.form-field .select2-container--default .select2-selection--multiple {
    border-color: var(--color-gray-light);
}

.select2-container .select2-results__options {
    scrollbar-width: thin;
    scrollbar-color: var(--color-gray-light) var(--color-background);
}

.select2-container .select2-results__options::-webkit-scrollbar {
    width: 8px;
}

.select2-container .select2-results__options::-webkit-scrollbar-track {
    background: var(--color-background);
    border-radius: 10px;
}

.select2-container .select2-results__options::-webkit-scrollbar-thumb {
    background-color: var(--color-gray-light);
    border-radius: 10px;
    border: 2px solid var(--color-background);
}

.select2-container .select2-results__options::-webkit-scrollbar-thumb:hover {
    background-color: var(--color-main);
}

.select2-container--default .select2-selection--single .select2-selection__clear {
    margin-right: 0;
    height: 100%;
}

.form-field:has(.form-select.has-selection) .select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 10px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-width: 7px 6px 0 6px;
    margin-left: -10px;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border-width: 0 6px 7px 6px;
}

@container form (max-width: 768px) {
    .contact-form .form-fields-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    [data-action="lexo-form"] button[type="submit"] {
        display: block;
        width: 100%;
    }
}

@container form (max-width: 605px) {
    .form-field label {
        display: inline-block;
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom; 
    }
}

@container form (max-width: 486px) {
 .select2-container--default .select2-selection--single .select2-selection__placeholder {
        display: inline-block;
        max-width: 300px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
    }

    .form-fields-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
        white-space: wrap;
    }

    .form-field label,
 .select2-container--default .select2-selection--single .select2-selection__placeholder {
        max-width: 200px;
    }
}

@container form (max-width: 385px) {
    .select2-container--default .select2-selection--multiple .select2-selection__choice__display {
        display: inline-block;
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
        vertical-align: bottom;
        white-space: nowrap;
    }
}

/* Forms End */

/*
 * MEDIA QUERY
 */

@media (max-width: 1610px) {

}

@media (max-width: 1600px) {
    .hero-nav {
        font-size: 45px;
    }

    .hero-prev {
        left: 0px;
    }

    .hero-prev {
        left: 0px;
    }

    .main-menu-nav a {
        font-size: 1.9rem;
        line-height: 3rem;
    }

    #main-menu > .menu-item > a {
        gap: 5px;
        padding: 20px 16px;
    }

    .header-upper a {
        padding: 7px 16px;
    }

    .header-upper .lang-switcher .nice-select {
        padding: 7px 28px 7px 16px;
    }

    .header-upper .lang-switcher .nice-select::after {
        right: 16px;
    }

    .header-upper .lang-switcher .nice-select .option {
        padding: 0 16px;
    }
}

@media (max-width: 1550px) {

}

@media (max-width: 1500px) {
    .hero-nav {
        display: none;
    }

    #main-menu > .menu-item > a {
        gap: 4px;
        padding: 20px 14px;
    }

    .header-upper a {
        padding: 7px 14px;
    }

    .header-upper .lang-switcher .nice-select {
        padding: 7px 25px 7px 14px;
    }

    .header-upper .lang-switcher .nice-select::after {
        right: 14px;
    }

    .header-upper .lang-switcher .nice-select .option {
        padding: 0 14px;
    }
}

@media (max-width: 1460px) {
    .logo {
        gap: 24px;
    }

    .header-logo {
        height: 50px;
    }
}

@media (max-width: 1400px) {
    h1 .part1,
    h1 .part2 {
        display: inline;
    }

    .main-menu-nav a {
        font-size: 1.8rem;
        line-height: 2.8rem;
    }

    #main-menu > .menu-item > a {
        gap: 4px;
        padding: 20px 12px;
    }

    .header-upper a {
        padding: 7px 12px;
    }

    .header-upper .lang-switcher .nice-select {
        padding: 7px 23px 7px 12px;
    }

    .header-upper .lang-switcher .nice-select::after {
        right: 12px;
    }

    .header-upper .lang-switcher .nice-select .option {
        padding: 0 12px;
    }
}

@media (max-width: 1350px) {
    #main-menu > .menu-item > a {
        gap: 3px;
        padding: 20px 8px;
    }

    .header-upper a {
        padding: 7px 8px;
    }

    .header-upper:not(:has(#lang-switcher)) a {
        padding: 7px 5px;
    }

    .header-upper .lang-switcher .nice-select {
        padding: 7px 18px 7px 8px;
    }

    .header-upper .lang-switcher .nice-select::after {
        right: 8px;
    }

    .header-upper .lang-switcher .nice-select .option {
        padding: 0 8px;
    }
}

@media (max-width: 1280px) {
    blockquote {
        margin: 36px 0;
        padding-left: 22px;
        font-size: 2.4rem;
        line-height: 3.4rem;
    }

    blockquote::before {
        margin-bottom: 10px;
        font-size: 22px;
    }

    .home-hero-icon {
        display: none;
    }
}

@media (max-width: 1280px) {

    h1, .h1 {
        font-size: 4rem;
        line-height: 5.2rem;
    }

    .header-slider-item-content-wrapper h1,
    .video-content-wrapper h1 {
        font-size: 4.6rem;
        line-height: 5.6rem;
    }

    h2, .h2, .ts-80 {
        font-size: 3.2rem;
        line-height: 4.2rem;
        margin-bottom: 30px;
    }

    h3, .h3 {
        font-size: 2.6rem;
        line-height: 3.6rem;
    }

    h4, .h4 {
        font-size: 2.2rem;
        line-height: 3.2rem;
        margin: 0 0 15px 0;
    }

    .ts-42 {
        font-size: 3.6rem;
    }

    .ts-40 {
        font-size: 3.4rem;
        line-height: 4.4rem;
    }

    .ts-36 {
        font-size: 3.2rem;
    }

    .ts-30 {
        font-size: 2.8rem;
        line-height: 3.7rem;
    }

    .ts-28 {
        font-size: 2.6rem;
    }

    .ts-26 {
        font-size: 2.5rem;
    }

    .ts-24 {
        font-size: 2.2rem;
        line-height: 3rem;
    }
}

@media (max-width: 1024px) {
    p {
        line-height: 2.6rem;
    }

    h1, .h1 {
        font-size: 3.6rem;
        line-height: 4.6rem;
    }

    .header-slider-item-content-wrapper h1,
    .video-content-wrapper h1 {
        font-size: 4.2rem;
        line-height: 5.2rem;
    }

    h2, .h2 {
        font-size: 3rem;
        line-height: 3.8rem;
    }

    h3, .h3 {
        font-size: 2.5rem;
        line-height: 3.4rem;
    }

    h4, .h4 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

    .ts-42 {
        font-size: 3.3rem;
    }

    .ts-40 {
        font-size: 3.2rem;
        line-height: 4.1rem;
    }

    .ts-36 {
        font-size: 3rem;
    }

    .ts-30 {
        font-size: 2.7rem;
        line-height: 3.6rem;
    }

    .ts-28 {
        font-size: 2.5rem;
    }

    .ts-26 {
        font-size: 2.4rem;
    }

    .ts-24 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

    .button {
        letter-spacing: 0;
    }

    .header-slider-item-content-wrapper {
        width: 100% !important;
    }

    .header-slider-item-content {
        padding: 150px 0;
    }

    .kfh-keyword > label {
        padding: 10px 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 991px) {
    .footer-top {
        flex-direction: column;
        gap: 32px;
        padding: 48px 0 40px;
    }

    .footer-locations {
        grid-template-columns: 1fr;
        row-gap: 24px;
    }

    .footer-location {
        margin-top: 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .kfh-keyword > label {
        padding: 15px;
        font-size: 1.8rem;
        line-height: 2rem;
    }

    .hide-on-mobile {
        display: none;
    }

    .fcb-section .fcb-column .post-content-block p:has(a.button),
    .fcb-section .fcb-column .custom-editor-wrapper p:has(a.button) {
        text-align: center;
    }

    .button {
        display: block;
    }

    .mt-40-desktop-tablet,
    .mt-80-desktop-tablet,
    .mt-160-desktop-tablet {
        margin-top: 0;
    }

    .custom-editor-content[data-width="medium"],
    .custom-editor-content[data-width="small"]  {
        max-width: 100%;
    }

    .fcb-columns.revert[data-elements-count="2"] .fcb-column:first-of-type {
        order: initial;
    }
}

@media (max-width: 650px) {

    h1, .h1 {
        font-size: 3.2rem;
        line-height: 4rem;
    }

    .header-slider-item-content-wrapper h1,
    .video-content-wrapper h1 {
        font-size: 3.8rem;
        line-height: 4.6rem;
    }

    h2, .h2 {
        font-size: 2.7rem;
        line-height: 3.4rem;
    }

    h3, .h3 {
        font-size: 2.3rem;
        line-height: 3rem;
    }

    h4, .h4 {
        font-size: 2.1rem;
        line-height: 2.8rem;
    }

    .ts-42 {
        font-size: 2.9rem;
    }

    .ts-40 {
        font-size: 2.8rem;
        line-height: 3.6rem;
    }

    .ts-36 {
        font-size: 2.7rem;
    }

    .ts-30 {
        font-size: 2.5rem;
        line-height: 3.3rem;
    }

    .ts-28 {
        font-size: 2.3rem;
    }

    .ts-26 {
        font-size: 2.2rem;
    }

    .ts-24 {
        font-size: 2.1rem;
        line-height: 2.8rem;
    }
}

@media (max-width: 480px) {
    h1, .h1 {
        font-size: 2.8rem;
        line-height: 3.6rem;
    }

    .header-slider-item-content-wrapper h1,
    .video-content-wrapper h1 {
        font-size: 3.5rem;
        line-height: 4.3rem;
    }

    h2, .h2, .ts-80 {
        font-size: 2.4rem;
        line-height: 3.2rem;
    }

    h3, .h3 {
        font-size: 2.2rem;
        line-height: 3rem;
    }

    h4, .h4 {
        font-size: 2rem;
        line-height: 2.8rem;
    }

    .ts-42 {
        font-size: 2.6rem;
    }

    .ts-40 {
        font-size: 2.5rem;
        line-height: 3.2rem;
    }

    .ts-36 {
        font-size: 2.4rem;
    }

    .ts-30 {
        font-size: 2.3rem;
        line-height: 3.1rem;
    }

    .ts-28 {
        font-size: 2.2rem;
    }

    .ts-26 {
        font-size: 2.1rem;
    }

    .ts-24 {
        font-size: 2rem;
        line-height: 2.7rem;
    }

    .kfh-keyword>label {
        letter-spacing: unset;
    }

    .logo {
        gap: 12px;
    }

    .logo .header-logo {
        height: 28px;
    }

    .mobile-nav-menu > .menu-item > a {
        padding: 8px 0;
        font-size: 1.8rem;
        line-height: 2.8rem;
    }

    .mobile-nav-menu > .menu-item.menu-item-has-children > a {
        padding-bottom: 4px;
    }
}

@media (max-width: 430px) {

}

@media (max-width: 380px) {
}

@media (max-width: 350px) {

}

@media (max-width: 1200px) {
    header {
        height: 72px;
    }

    .header-menu-button {
        margin-right: -8px;
    }

    .header-menu-close {
        margin-right: -12px;
    }

    .logo-wrapper {
        padding-left: 0;
    }

    .header-upper,
    .menu-container {
        display: none;
    }

    .header-menu-button {
        display: flex;
    }

    .logo {
        gap: 16px;
    }

    .header-logo {
        height: 34px;
    }

    .footer-top {
        gap: 0;
    }
}

@media (min-width: 1201px) {
    #main-menu > li > .sub-menu-holder {
        visibility: hidden;
        opacity: 0;
        position: absolute;
        top: 100%;
        right: 0;
        width: max-content;
        padding: 20px 0;
        background-color: #FFFFFF;
        transition: visibility 0.3s, opacity 0.3s, transform 0.3s;
    }

    body.no-heroes #main-menu > li > .sub-menu-holder,
    body.mini #main-menu > li > .sub-menu-holder {
        background-color: #F5F6F8;
    }

    #main-menu > li:hover > .sub-menu-holder,
    #main-menu > li:focus-within > .sub-menu-holder {
        visibility: visible;
        opacity: 1;
    }

    #main-menu > li:hover > a,
    #main-menu > li:focus-within > a,
    #main-menu > .menu-item:is(.current-menu-item, .current_page_parent, .current_page_ancestor) > a {
        background-color: #FFFFFF;
        color: var(--color-text);
    }

    body.no-heroes #main-menu > li:hover > a,
    body.no-heroes #main-menu > li:focus-within > a,
    body.no-heroes #main-menu > .menu-item:is(.current-menu-item, .current_page_parent, .current_page_ancestor) > a,
    body.mini #main-menu > li:hover > a,
    body.mini #main-menu > li:focus-within > a,
    body.mini #main-menu > .menu-item:is(.current-menu-item, .current_page_parent, .current_page_ancestor) > a {
        background-color: #F5F6F8;
    }

    #main-menu > li > a > .submenu-indicator {
        transition: transform 0.3s;
    }

    #main-menu > li:hover > a > .submenu-indicator,
    #main-menu > li:focus-within > a > .submenu-indicator {
        transform: rotate(-135deg);
    }

    #main-menu > li > .sub-menu-holder > .sub-menu {
        text-align: right;
    }

    #main-menu .sub-menu > .menu-item > a,
    #main-menu .sub-menu > .menu-item > a:is(:hover, :focus),
    #main-menu .sub-menu > .menu-item:is(.current-menu-item, .current_page_parent, .current_page_ancestor) > a {
        position: relative;
        display: inline-block;
        color: var(--color-text);
    }

    #main-menu .sub-menu > .menu-item > a::after {
        content: "";
        position: absolute;
        left: 28px;
        right: 28px;
        bottom: 3px;
        height: 1px;
        background-color: currentColor;
        transform: scaleX(0);
        transform-origin: center;
        transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
    }

    #main-menu .sub-menu > .menu-item > a:is(:hover, :focus)::after,
    #main-menu .sub-menu > .menu-item:is(.current-menu-item, .current_page_parent, .current_page_ancestor) > a::after {
        transform: scaleX(1);
    }

    @media (prefers-reduced-motion: reduce) {
        #main-menu .sub-menu > .menu-item > a::after {
            transition: none;
        }
    }
}

@media (min-width: 1025px) {
}

/*
 * Team single page
 */

.team-single-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, var(--w-narrow)) minmax(0, 1fr);
    column-gap: 46px;
    margin-bottom: 46px;
}

.team-single-row:last-child {
    margin-bottom: 0;
}

.team-single-label {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
    padding-top: 5px;
    color: var(--color-text);
    font-family: var(--font-semibold);
    font-size: 1.6rem;
    line-height: 3.2rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.team-single-content {
    grid-column: 2;
    font-size: 1.8rem;
    line-height: 3rem;
}

.team-single-image-row {
    margin-bottom: 40px;
}

.team-single-image {
    display: block;
    width: 100%;
    height: auto;
}

.team-single-header-row .team-single-content {
    font-size: 1.8rem;
}

.team-single-name {
    margin-bottom: 10px;
}

.team-single-title {
    font-family: var(--font-medium);
    margin-bottom: 0;
    color: var(--color-gray-text);
    font-size: 1.8rem;
    line-height: 2.4rem;
}

.team-single-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.team-single-contact-line {
    display: flex;
    align-items: baseline;
    gap: 14px;
}

.team-single-contact-prefix {
    flex: 0 0 auto;
    min-width: 16px;
}

.team-single-contact-links {
    display: flex;
    flex-wrap: wrap;
    column-gap: 10px;
}

.team-single-contact-links a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.team-single-contact-separator {
    user-select: none;
}

.team-single-cv-item {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    column-gap: 12px;
    margin-bottom: 16px;
}

.team-single-cv-item:last-child {
    margin-bottom: 0;
}

.team-single-cv-period {
    white-space: nowrap;
}

.team-single-memberships {
    margin: 0;
    padding: 0;
    list-style: none;
}

.team-single-memberships li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 6px;
}

.team-single-memberships li:last-child {
    margin-bottom: 0;
}

.team-single-memberships li::before {
    content: "\2022";
    position: absolute;
    left: 0;
}

@media (max-width: 1200px) {
    .team-single-row {
        grid-template-columns: minmax(0, 1fr);
        max-width: var(--w-narrow);
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 32px;
    }

    .team-single-label {
        grid-row: auto;
        margin-bottom: 8px;
        padding-top: 0;
    }

    .team-single-content {
        grid-column: 1;
    }

    .team-single-image-row,
    .team-single-header-row {
        margin-bottom: 30px;
    }
}

@media (max-width: 600px) {
    .team-single-cv-item {
        grid-template-columns: minmax(0, 1fr);
        row-gap: 0;
        margin-bottom: 10px;
    }

    .team-single-cv-period {
        white-space: nowrap;
        font-family: var(--font-semibold);
    }

    .team-single-contact {
        gap: 4px;
    }
}

/*
 * Team block (Flexible Content)
 */

.team-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

#flexible-content .team-list li {
    padding: 0;
    margin: 0;
}

.team-list li::before {
    display: none;
}

.team-list-link {
    display: inline-block;
    text-align: center;
}

.team-list-name {
    position: relative;
    display: block;
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-size: 3.6rem;
    line-height: 4rem;
    margin-bottom: 4px;
    transition: color 0.3s;
}

.team-list-name::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.team-list-qualification {
    font-family: var(--font-medium);
    display: block;
    color: var(--color-gray-text);
    font-size: 1.8rem;
    line-height: 3rem;
    letter-spacing: 0.02em;
    transition: color 0.3s;
}

@media (hover: hover) {
    .team-list-link:is(:hover, :focus) .team-list-name {
        color: var(--color-blue-dark);
    }

    .team-list-link:is(:hover, :focus) .team-list-name::after {
        transform: scaleX(1);
    }

    .team-list-link:is(:hover, :focus) .team-list-qualification {
        color: var(--color-main);
    }
}

@media (hover: none) {
    .team-list-link:is(:hover, :focus) .team-list-name {
        text-decoration: underline;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-list-name::after {
        transition: none;
    }
}

.team-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
}

.team-card {
    display: block;
}

.team-card-image {
    position: relative;
    overflow: hidden;
    margin-bottom: 22px;
    background-color: var(--color-gray-bg-light);
}

.team-card-image figure {
    margin: 0;
}

.team-card-image img {
    display: block;
    width: 100%;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.team-card-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: var(--color-main);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (hover: hover) {
    .team-card:is(:hover, :focus) .team-card-image img {
        transform: scale(1.06);
    }

    .team-card:is(:hover, :focus) .team-card-image::after {
        opacity: 0.15;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-card-image img,
    .team-card:is(:hover, :focus) .team-card-image img {
        transform: none;
        transition: none;
    }
}

.team-card-image-empty {
    aspect-ratio: 480 / 600;
    background-color: var(--color-gray-bg-light);
}

.team-card-name {
    position: relative;
    width: fit-content;
    max-width: 100%;
    margin: 0 0 6px;
    font-family: var(--font-heading);
    color: var(--color-heading);
    font-size: 2.4rem;
    line-height: 3.2rem;
}

.team-card-name::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

@media (hover: hover) {
    .team-card:is(:hover, :focus) .team-card-name::after {
        transform: scaleX(1);
    }
}

@media (hover: none) {
    .team-card:is(:hover, :focus) .team-card-name {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .team-card-name::after {
        transition: none;
    }
}

.team-card-function {
    margin: 0;
    color: var(--color-gray-text);
    font-size: 1.4rem;
    line-height: 2.2rem;
}

.team-block-button-holder {
    display: flex;
    justify-content: center;
    margin-top: 44px;
}

@media (max-width: 1024px) {
    .team-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .team-list {
        gap: 22px;
    }

    .team-list-name {
        font-size: 2.4rem;
        line-height: 3.2rem;
    }
}

@media (max-width: 650px) {
    .team-cards {
        grid-template-columns: minmax(0, 1fr);
        gap: 40px;
    }
}

.fcb-section[data-section-color="blue"] .team-list-name,
.fcb-section[data-section-color="blue"] .team-card-name {
    color: var(--color-white);
}

.fcb-section[data-section-color="blue"] .team-list-qualification,
.fcb-section[data-section-color="blue"] .team-card-function {
    color: rgba(255, 255, 255, 0.75);
}

.fcb-section[data-section-color="blue"] .team-card-image::after {
    background-color: var(--color-blue-dark);
}

@media (hover: hover) {
    .fcb-section[data-section-color="blue"] .team-list-link:is(:hover, :focus) .team-list-name,
    .fcb-section[data-section-color="blue"] .team-list-link:is(:hover, :focus) .team-list-qualification {
        color: var(--color-white);
    }

    .fcb-section[data-section-color="blue"] .team-card:is(:hover, :focus) .team-card-image::after {
        opacity: 0.25;
    }
}

@media (max-width: 1280px) {
    :root {
        --page-margin: 40px;
    }
}

@media (max-width: 1024px) {
    :root {
        --page-margin: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --page-margin: 24px;
    }
}

@media (max-width: 480px) {
    :root {
        --page-margin: 20px;
    }
}

/*
 * Standorte block (Flexible Content)
 */

.standorte {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.standort-image {
    margin-bottom: 12px;
}

.standort-image figure {
    margin: 0;
}

.standort-image img {
    display: block;
    width: 100%;
    height: auto;
}

.standort-content > *:last-child {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .standorte {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .standorte {
        grid-template-columns: minmax(0, 1fr);
        gap: 80px;
    }
}

/*
 * Standorte block – detailed variant
 */

.standorte-detail .standort {
    display: flex;
    flex-direction: column;
}

.standorte-detail .standort-content {
    margin-bottom: 35px;
}

.standorte-detail .standort-team {
    padding: 30px 0 0;
    list-style: none;
    border-top: 1px solid var(--color-main);
}

@supports (grid-template-rows: subgrid) {
    .standorte-detail .standort {
        display: grid;
        grid-template-rows: subgrid;
        grid-row: span 3;
        row-gap: 0;
    }

    .standorte-detail .standort-image {
        grid-row: 1;
    }

    .standorte-detail .standort-content {
        grid-row: 2;
    }

    .standorte-detail .standort-team {
        grid-row: 3;
    }
}

#flexible-content .standorte-detail .standort-team li {
    padding: 0;
    margin: 0;
    text-align: left;
}

.standorte-detail .standort-team li::before {
    display: none;
}

.standorte-detail .standort-team-link {
    font-family: var(--font-main);
    font-size: 1.8rem;
    line-height: 3rem;
    color: var(--color-text);
    text-decoration: underline;
}

@media (hover: hover) {
    .standorte-detail .standort-team-link:is(:hover, :focus) {
        color: var(--color-main);
        text-decoration: none;
    }
}

.fcb-section[data-section-color="blue"] .standorte-detail .standort-team {
    border-top-color: rgba(255, 255, 255, 0.6);
}

.fcb-section[data-section-color="blue"] .standorte-detail a.standort-team-link,
.fcb-section[data-section-color="blue"] .standorte-detail a.standort-team-link:is(:hover, :focus) {
    color: var(--color-white);
}

@media (max-width: 768px) {
    .standorte-detail .standort-content {
        margin-bottom: 28px;
    }

    .standorte-detail .standort-team {
        padding-top: 24px;
    }
}

/*
 * Blue section color
 */

.fcb-section[data-section-color="blue"] {
    background-color: var(--color-main);
}

.fcb-section[data-section-color="blue"][data-section-layout-border-bottom] > .container {
    border-bottom-color: var(--color-white);
}

.fcb-section[data-section-color="blue"] hr {
    border-top-color: var(--color-white);
}

.fcb-section[data-section-color="blue"] blockquote {
    border-left-color: rgba(255, 255, 255, 0.6);
    color: var(--color-white);
}

.fcb-section[data-section-color="blue"] blockquote::before {
    color: var(--color-white);
    opacity: 0.55;
}

/*
 * Links block (Flexible Content)
 */

.links-block {
    margin: 0;
    padding: 0;
    list-style: none;
}

#flexible-content .links-block > li {
    padding-left: 0;
    margin-bottom: 0;
    font-size: inherit;
    line-height: inherit;
}

#flexible-content .links-block > li::before {
    display: none;
}

.links-item {
    border-bottom: 1px solid var(--color-main);
}

a.links-item-link {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 24px;
    color: var(--color-text);
}

a.links-item-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background-color: var(--color-main);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
    pointer-events: none;
}

.links-item-title {
    position: relative;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.links-block-large {
    margin-top: 12px;
}

.links-block-large a.links-item-link {
    padding: 25px 0 18px;
}

.links-block-large .links-item-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    line-height: 6rem;
    color: var(--color-heading);
}

.links-item-more {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 1.4rem;
    line-height: 2.4rem;
}

.links-item-more > span:first-child {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.links-item-icon {
    font-size: 1.2rem;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.links-item-icon-circle {
    position: relative;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-main);
    color: var(--color-white);
    font-size: 1.4rem;
    transition: transform 0.5s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.links-block-small a.links-item-link {
    align-items: center;
    padding: 20px 0;
}

.links-block-small .links-item-title {
    font-size: 2.4rem;
    line-height: 4rem;
}

@media (hover: hover) {
    a.links-item-link:is(:hover, :focus) .links-item-title {
        transform: translateX(12px);
    }

    a.links-item-link:is(:hover, :focus) .links-item-icon,
    a.links-item-link:is(:hover, :focus) .links-item-icon-circle {
        transform: translateX(6px);
    }

    a.links-item-link:is(:hover, :focus)::after {
        transform: scaleX(1);
    }

    .links-block-small a.links-item-link:is(:hover, :focus) .links-item-title {
        transform: translateX(8px);
    }
}

@media (hover: none) {
    a.links-item-link:is(:hover, :focus) .links-item-title {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}

@media (prefers-reduced-motion: reduce) {
    a.links-item-link::after,
    .links-item-title,
    .links-item-icon,
    .links-item-icon-circle {
        transition: none;
    }

    a.links-item-link:is(:hover, :focus) .links-item-title,
    a.links-item-link:is(:hover, :focus) .links-item-icon,
    a.links-item-link:is(:hover, :focus) .links-item-icon-circle {
        transform: none;
    }

    a.links-item-link:is(:hover, :focus) .links-item-title {
        text-decoration: underline;
        text-underline-offset: 4px;
    }
}

.fcb-section[data-section-color="blue"] .links-item {
    border-color: rgba(255, 255, 255, 0.6);
}

.fcb-section[data-section-color="blue"] .links-block-large .links-item-title {
    color: var(--color-white);
}

.fcb-section[data-section-color="blue"] a.links-item-link,
.fcb-section[data-section-color="blue"] a.links-item-link:is(:hover, :focus) {
    color: var(--color-white);
}

.fcb-section[data-section-color="blue"] .links-item-icon-circle {
    background-color: var(--color-white);
    color: var(--color-main);
}

.fcb-section[data-section-color="blue"] a.links-item-link::after {
    background-color: var(--color-white);
}

.fcb-section[data-section-color="blue"] :is(.brochure, .resource-listing) {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.6);
}

.fcb-section[data-section-color="blue"] :is(.brochure, .resource-listing),
.fcb-section[data-section-color="blue"] :is(.brochure, .resource-listing) :is(h3, h4, span, a) {
    color: var(--color-white);
}

#flexible-content .fcb-section[data-section-color="blue"] .resource-listing-list li::before {
    color: var(--color-white);
}

.fcb-section[data-section-color="blue"] a.link-button,
.fcb-section[data-section-color="blue"] .brochure-fullscreen-button.play-button,
.fcb-section[data-section-color="blue"] .brochure-fullscreen-button-icon:not(.over-image),
.fcb-section[data-section-color="blue"] .kfh-keyword > label {
    color: var(--color-white);
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.6);
}

.fcb-section[data-section-color="blue"] a.link-button:is(:hover, :focus),
.fcb-section[data-section-color="blue"] .brochure-fullscreen-button.play-button:is(:hover, :focus),
.fcb-section[data-section-color="blue"] .brochure-fullscreen-button:not(.over-image):is(:hover, :focus) .brochure-fullscreen-button-icon,
.fcb-section[data-section-color="blue"] .kfh-keyword > input:checked + label {
    color: var(--color-main);
    background-color: var(--color-white);
    border-color: var(--color-white);
}

@media (max-width: 768px) {
    .links-block-large a.links-item-link {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 20px 0 16px;
    }

    .links-block-large .links-item-title {
        font-size: 2.8rem;
        line-height: 3.6rem;
    }

    .links-block-small .links-item-title {
        font-size: 2rem;
        line-height: 3rem;
    }
}
