@charset "UTF-8";

:root {
    --style--gallery-gap-default: 0px;
    --gallery-block--gutter-size: 0px;
}

html {
    box-sizing: border-box;
    min-height: 100vh;
    background-color: #fdfdfd;
    overflow-x: hidden;
    overflow-y: overlay;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color--grey-border) transparent;
    scroll-padding-top: calc( var(--header--height) - 10px );
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

html.no-animation {
    scroll-behavior: inherit;
}

html.is-transitioning, html.is-transitioning * {
    cursor: progress;
    pointer-events: none;
}

html.lenis, html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-smooth iframe {
    pointer-events: none;
}

:root::selection {
    background: var(--color--blue);
    color: var(--color--white);
}

#shaper {
    position: fixed;
    top: 0;
    width: 100%;
    height: 34rem;
    opacity: .8;
    mask-image: linear-gradient(180deg, #000 80%, transparent);
    pointer-events: none;
}

#shaper:after {
    content: '';
}

.supercontainer {
    /* background: #fdfdfd; */
    background-size: 80vw auto;
    background-position: 50% 50%;
    min-height: 100vh;
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-image: url("");
    z-index: 1;
    position: relative;
}

@media (min-width: 768px) {
    .supercontainer {
        background-size: auto 160px;
    }
}

[data-ajax="container"] {
    width: 100%;
}

.fade-leave-active {
    transition: opacity 0.25s ease;
}

.fade-enter-active {
    transition: opacity 0.75s ease;
}

.fade-leave {
    opacity: 1;
}

.fade-enter {
    opacity: 0;
    transform: translateY(-10px);
}

.fade-leave-to {
    opacity: 0;
}

.fade-enter-to {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll-container] {
    transition: .3s all ease-in-out;
    background: var(--color--white);
    overflow: hidden;
}

mark:not(.has-inline-color) {
    background: rgba(255, 174, 0, 0.4);
    box-shadow: 0 0 0 0.1em rgb(255 174 0 / 40%);
}

body {
    height: 100%;
    overflow: visible !important;
    background: #ffffff;
}

strong, b {
    font-weight: 700;
}

abbr {
    text-decoration: dashed;
    text-decoration-line: underline;
    text-underline-offset: .25em;
    text-decoration-thickness: from-font;
    text-decoration-color: color-mix(in srgb, currentColor 25%, transparent);
}

:where(button:not(.btn)) {
    background-color: transparent;
    padding: 0;
    border: 0;
}

a, button, .btn {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

a > svg, button > svg, a > svg.lazyloaded, button > svg.lazyloaded {
    transition: all 0.3s ease-in-out;
}

a > svg,
button > svg {
    pointer-events: none;
    fill: currentColor;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 6px;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}

.video-container embed, .video-container iframe, .video-container object, .video-container video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}

img:not([src]) {
    content: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}

hr {
    clear: both;
    margin: 2rem auto;
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--color--grey-light);
}

.btn {
    display: inline-flex;
    position: relative;
    align-items: center;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: auto;
    justify-content: center;
}

.btn.loading:before {
    background: currentColor;
    -webkit-mask-image: url(../img/loading.svg);
    mask-image: url(../img/loading.svg);
    mask-repeat: no-repeat;
    mask-position: center center;
}

.btn.favicon {
    padding-left: 4em;
    background-position: 1.5em center;
}

.btn[disabled] {
    pointer-events: none;
    opacity: 0.5;
}

.btn-sm {
    padding: .75em 2em .75em 2em !important;
}

.btn-md {
    padding: 1em 3em 1em 3em !important;
}

.btn-lg {
    padding-top: 1em !important;
    padding-bottom: 1em !important;
}

.btn > svg {
    width: 1.5em;
    height: 1.5em;
    margin-right: 1em;
    fill: var(--color--blue);
}

.burger {
    padding: 0 1rem;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
    margin: 0 auto;
}

.burger .line {
    width: 2.2rem;
    height: .25rem;
    background-color: var(--color--blue);
    display: block;
    margin: .4rem auto;
    transition: all .3s ease-in-out
}

@media (hover: hover) {
    .burger:hover .line {
        background-color: var(--color--orange) !important;
    }
}

html.menu--open .burger-wrapper {
    -webkit-animation: scale-animation .3s forwards;
    animation: scale-animation .3s forwards;
}

html.menu--open .burger .line {
    transition-delay: .2s
}

html.menu--open .burger .line:nth-child(2) {
    opacity: 0
}

html.menu--open .burger .line:first-child {
    transform: translateY(.65rem) rotate(45deg)
}

html.menu--open .burger .line:nth-child(3) {
    transform: translateY(-.65rem) rotate(-45deg)
}

@-webkit-keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}


@media (max-height: 750px) {
    .main-menu a {
        padding: .75rem 1rem;
    }
}

.main-menu a:hover, .main-menu .current a {
    opacity: 1;
    text-shadow: 0 0 0 var(--color--blue);
}

.main-menu .current a {
    font-weight: 500;
    text-shadow: none;
}

.grecaptcha-badge {
    visibility: hidden;
}

.arrow {
    position: fixed;
    right: 1.5rem;
    bottom: 1.5rem;
    z-index: 99;
    display: flex;
    align-items: center;
    width: 3rem;
    height: 3rem;
    background: var(--color--blue);
    text-align: center;
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 0 1px 0px white;
}

.arrow.visible {
    opacity: 1;
    pointer-events: all;
}

.arrow svg {
    width: 1rem;
    height: 1rem;
    fill: #fff;
    margin: 0 auto;
}

.arrow:hover {
    transform: translateY(-10px);
}

@media (max-width: 450px) {
    .arrow {
        display: none !important;
    }
}

.header {
    transition: 0.3s all ease-in-out;
    width: 100%;
    padding: var(--spacing--50) 0;
    position: relative;
    z-index: 2;
}

.header > .alignwide {
    max-width: 78rem;
}

@media (max-width: 767px) {
    .header-flex {
        flex-wrap: wrap;
    }
}

.header-right {
    margin-left: auto;
    gap: clamp( 1rem, 3vw, 2rem );
    width: 100%;
}

@media (max-width: 500px) {
    .header-group-icon:nth-child(2) {
        display: none;
    }
}

.header-icon {
    padding: .75em;
    display: flex;
    align-items: center;
    gap: .5em;
}

.header-icon-forum {
    color: var(--color--grey-dark);
    text-decoration: none;
    font-size: .8em;
    text-transform: uppercase;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    padding: 0 .75em;
}

.header-icon-forum:hover {
    color: var(--color--blue);
}

div.header-icon svg {
    transition: .3s all ease-in-out;
}

.header-icon > svg {
    width: 1.25em;
    height: 1.25em;
    display: block;
    fill: var(--color--grey);
}

.header-soc > svg {
    width: 1em;
    height: 1em;
}

.header-icon:hover > svg {
    fill: var(--color--blue);
}

.main-menu {
    width: 100%;
    display: none;
    margin: 1.4rem 0 0 0;
    position: sticky;
    top: 0;
}

@media (min-width: 768px) {
    .main-menu {
        display: block;
    }
}

.main-menu a {
    padding: 1rem .5rem;
    position: relative;
    color: var(--color--blue);
    display: flex;
    white-space: nowrap;
    text-decoration: none;
    opacity: 0.8;
    align-items: center;
    justify-content: center;
}

.main-menu .highlight > a {
    background-color: rgba(0,0,0,0.5);
    background-position: 1rem 50%;
    border-radius: 5rem;
    padding-left: 2rem;
    padding-right: 2.5rem;
    line-height: 1;
    align-items: center;
}

.main-menu .highlight > a svg {
    right: 1em;
}

.main-menu-padding li {
    margin-right: 2rem;
}

.main-menu svg.icon-home {
    margin-right: .5em;
    width: .8em;
    height: .8em;
}

.main-menu svg.icon-caret-down {
    margin-left: .5em;
    width: .5em;
    height: .5em;
}

.main-menu a > svg.icon-caret-right {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.has-sub-menu .has-sub-menu a > svg.icon-caret-right {
    position: absolute;
    top: .4rem;
    right: 1rem;
    transform: rotate(-90deg);
}

.has-sub-menu li svg {
    width: 1em;
    height: 1em;
    margin-right: .5em;
}

li.current-ancestor > a, li.current > a {
    opacity: 1;
    text-decoration: underline;
    text-decoration-color: var(--color--orange);
    text-decoration-thickness: 2px;
}

.sub-menu li:not(:last-child):after {
    margin-left: 1.5rem;
}

.sub-menu-item, .sub-menu .menu-item a {
    display: block;
    font-size: .85rem;
    padding: .75rem 1.5rem;
    min-width: 15rem;
    line-height: 1.2;
    text-decoration: none;
    white-space: inherit;
    text-align: left;
}


.header-account .sub-menu .menu-item a {
    min-width: 10rem;
}

.header-account .popup {
    min-width: 12rem;
}

.sub-menu .menu-item.current > a {
    color: var(--color--orange);
}

.has-sub-menu--large .sub-menu {
    min-width: 25rem;
}
.sub-menu a:hover {
    color: #000;
    text-decoration: none;
    opacity: .5;
}

.sub-menu li:not(:last-child):after {
    content: '';
    display: block;
    width: 2rem;
    height: 1px;
    background: #d5d5d5;
}

.sub-menu li.menu-item:first-child a {
    padding-top: 1.5rem;
}

.sub-menu li.menu-item:last-child a {
    padding-bottom: 1.5rem;
}

.sub-menu-scroll {
    padding: 1rem 0;
}

.sub-menu-item a {
    text-decoration: underline;
}

.sub-menu-item-note {
    color: #9e9e9e;
    font-size: .7rem;
    margin-bottom: .4rem;
    display: block;
}

li:not(:last-child) .sub-menu-item-context {
    margin-bottom: 1rem;
}

li:not(:last-child) .sub-menu-item-title {
    margin-bottom: .5rem;
}

.has-sub-menu {
    position: relative;
    transform: translateZ(0);
    z-index: 1;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    max-width: 19rem;
}

.has-sub-menu > a {
    /* padding-right: 2em; */
}

.has-sub-menu:hover {
    z-index: 2;
}

.has-sub-menu--left:hover .sub-menu {
    left: auto;
    right: 0;
    transform: translateX(0%) translateY(0px);
}

.sub-menu .sub-menu {
    left: 100%;
    top: -.75rem;
    -webkit-transform: translateX(-5px);
    -moz-transform: translateX(-5px);
    -ms-transform: translateX(-5px);
    -o-transform: translateX(-5px);
    transform: translateX(-5px);
}

.sub-menu .sub-menu .sub-menu-arrow {
    left: -0.4rem;
    bottom: auto;
    top: 1.5rem;
    transform: translateX(-50%) translateY(0) rotate(-90deg);
}

.sub-menu .has-sub-menu:hover > .sub-menu {
    transform: translateX(0);
}

.sub-menu-arrow {
    position: absolute;
    bottom: 100%;
    left: 50%;
    overflow: hidden;
    z-index: 99;
    width: 2.5rem;
    height: .9rem;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.has-sub-menu--left .sub-menu-arrow {
    left: auto;
    right: 0px;
    transform: none;
}

.sub-menu-arrow:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 15px;
    height: 15px;
    background: rgba(255,255,255,1);
    transform: translateX(-50%) translateY(50%) rotate(45deg);
}

.header-logo {
    max-width: 13rem;
    height: 10vh;
    width: 30vw;
    max-height: 6rem;
    min-height: 5.5rem;
}

.header-logo svg {
    margin-right: 2rem;
    transition: .3s all;
    height: 100%;
}

@media (max-width: 480px) {
    .header-logo {
        width: 40vw;
    }
    .header-logo svg {
        margin-right: 1.5rem;
    }
}

.header-activity {
    position: relative;
    line-height: 1;
}

.header-activity-count {
    position: absolute;
    top: .5em;
    left: 50%;
    border-radius: .2rem;
    background: var(--color--orange);
    color: #fff;
    min-width: 1em;
    padding: .25em;
    line-height: 1;
    font-size: .65em;
    text-align: center;
    font-weight: 500;
}

@media (max-width: 993px) {
    .header-activity .popup {
        transform: translateY(105%);
        left: 0;
    }
    .header-activity .popup-arrow {
        left: 22px;
    }
}

.shine {
    overflow: hidden;
    position: relative;
}

.shine:before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 3;
    display: block;
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.1)));
    background: -moz-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.1)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0.1) 100%);
    -webkit-transform: skewX(-25deg);
    -moz-transform: skewX(-25deg);
    -ms-transform: skewX(-25deg);
    -o-transform: skewX(-25deg);
    transform: skewX(-25deg);
}

.loading-placeholder.lazycomplete.shine {
    overflow: hidden;
}

@-webkit-keyframes shine {
    100% {
        left: 125%;
    }
}

@-moz-keyframes shine {
    100% {
        left: 125%;
    }
}

@-o-keyframes shine {
    100% {
        left: 125%;
    }
}

@keyframes shine {
    100% {
        left: 125%;
    }
}

a.shine:hover:before, a:hover .shine:before {
    -webkit-animation: 0.75s shine;
    -moz-animation: 0.75s shine;
    -o-animation: 0.75s shine;
    animation: 0.75s shine;
}

.loading-placeholder {
    position: relative;
    max-width: fit-content;
}

.loading-placeholder.lazycomplete .shine {
    position: relative;
    overflow: hidden;
}

html.js .loading-placeholder img {
    position: relative;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: 2;
}

html.js .loading-placeholder.lazycomplete img {
    opacity: 1;
}

.square img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.radius {
    border-radius: 50%;
    overflow: hidden;
}

.loading-placeholder:not(.lazycomplete) {
    position: relative;
}

.loading-placeholder {
    background: transparent !important;
}

html.js .loading-placeholder:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: 1.5s ease;
    background-blend-mode: soft-light;
    z-index: 1;
    background-color: var(--dominant-color, #f5f7f9);
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%) var(--dominant-color, #f5f7f9);
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s skeleton-loading ease-in-out infinite;
}
@keyframes skeleton-loading {
    to {
        background-position-x: -20%
    }
}
html.js .loading-placeholder.lazycomplete:not(.placeholder):after {
    opacity: 0;
}

main, main > * {
    position: relative;
}

main {
    /* overflow: hidden; */
    flex-grow: 1;
    margin: 0 auto;
    /* z-index: 0; */
    padding-top: 1rem;
}

@media (max-width: 767px) {
    main:before {
        opacity: 0.2 !important;
    }
}

.clear-margin > *:first-child {
    margin-top: 0;
}

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

.slider--draggable {
    cursor: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 30.01"><path fill="%23273586" d="m23.46 13.16-4.13-.65V5.3c0-1.71-1.39-3.1-3.1-3.1h-.05c-1.71 0-3.1 1.39-3.1 3.1v11.57l-4.27-1.83c-.86-.37-1.83-.28-2.61.23-.78.51-1.24 1.38-1.24 2.31v.04c0 .79.34 1.54.93 2.07l7.2 6.4v3.11c0 .44.36.8.8.8s.8-.36.8-.8v-3.47c0-.23-.1-.45-.27-.6l-7.47-6.64c-.25-.22-.39-.54-.39-.87v-.04c0-.4.19-.75.52-.97.33-.22.73-.25 1.09-.1l5.39 2.31s.1.04.16.05c.08.02.16.02.24.01h.07c.02 0 .03 0 .05-.01h.03c.02 0 .03-.01.05-.02h.02c.02 0 .03-.01.05-.02 0 0 .02 0 .02-.01.01 0 .03-.02.04-.02 0 0 .02-.01.03-.02.01 0 .02-.02.03-.02.01 0 .02-.01.03-.02 0 0 .02-.02.03-.02.01 0 .02-.02.03-.03 0 0 .01-.02.02-.02l.03-.03s.01-.02.02-.03c0-.01.02-.02.02-.03 0-.01.02-.03.03-.04 0 0 0-.01.01-.02.04-.07.07-.15.08-.23.01-.05.02-.11.02-.16V5.3c0-.82.67-1.49 1.49-1.49h.05c.82 0 1.49.67 1.49 1.49v7.82c-.04.42.25.81.67.87l4.81.75h.01c2.91.41 5.11 2.94 5.11 5.89v.08c0 1.36-.33 2.72-.96 3.93l-2.18 4.19c-.21.39-.05.88.34 1.09.12.06.25.09.37.09.29 0 .57-.16.71-.43l2.18-4.19c.75-1.44 1.14-3.05 1.14-4.67v-.08c0-1.82-.66-3.58-1.85-4.95s-2.84-2.27-4.64-2.53ZM6.18 9.61c.12 0 .25-.03.36-.09.27-.14.44-.41.44-.72V5.6h3.5c.44 0 .8-.36.8-.8s-.36-.8-.8-.8h-3.5V.8c0-.3-.17-.58-.44-.72s-.6-.11-.84.07L.32 4.16c-.2.15-.32.39-.32.65s.12.49.32.65l5.38 4c.14.11.31.16.48.16Zm-.8-2.4-3.23-2.4 3.23-2.4v4.8Zm26.29-3.05-5.38-4c-.24-.18-.57-.21-.84-.07-.27.14-.44.41-.44.72v3.2h-3.5c-.44 0-.8.36-.8.8s.36.8.8.8h3.5v3.2c0 .3.17.58.44.72.11.06.24.09.36.09.17 0 .34-.05.48-.16l5.38-4c.2-.15.32-.39.32-.65s-.12-.49-.32-.65Zm-5.06 3.05V2.4l3.23 2.4-3.23 2.4Z"/></svg>') 16 0, pointer;
}

.slider--draggable.slider--light-cursor {
    cursor: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 30.01"><path fill="%23fff" d="m23.46 13.16-4.13-.65V5.3c0-1.71-1.39-3.1-3.1-3.1h-.05c-1.71 0-3.1 1.39-3.1 3.1v11.57l-4.27-1.83c-.86-.37-1.83-.28-2.61.23-.78.51-1.24 1.38-1.24 2.31v.04c0 .79.34 1.54.93 2.07l7.2 6.4v3.11c0 .44.36.8.8.8s.8-.36.8-.8v-3.47c0-.23-.1-.45-.27-.6l-7.47-6.64c-.25-.22-.39-.54-.39-.87v-.04c0-.4.19-.75.52-.97.33-.22.73-.25 1.09-.1l5.39 2.31s.1.04.16.05c.08.02.16.02.24.01h.07c.02 0 .03 0 .05-.01h.03c.02 0 .03-.01.05-.02h.02c.02 0 .03-.01.05-.02 0 0 .02 0 .02-.01.01 0 .03-.02.04-.02 0 0 .02-.01.03-.02.01 0 .02-.02.03-.02.01 0 .02-.01.03-.02 0 0 .02-.02.03-.02.01 0 .02-.02.03-.03 0 0 .01-.02.02-.02l.03-.03s.01-.02.02-.03c0-.01.02-.02.02-.03 0-.01.02-.03.03-.04 0 0 0-.01.01-.02.04-.07.07-.15.08-.23.01-.05.02-.11.02-.16V5.3c0-.82.67-1.49 1.49-1.49h.05c.82 0 1.49.67 1.49 1.49v7.82c-.04.42.25.81.67.87l4.81.75h.01c2.91.41 5.11 2.94 5.11 5.89v.08c0 1.36-.33 2.72-.96 3.93l-2.18 4.19c-.21.39-.05.88.34 1.09.12.06.25.09.37.09.29 0 .57-.16.71-.43l2.18-4.19c.75-1.44 1.14-3.05 1.14-4.67v-.08c0-1.82-.66-3.58-1.85-4.95s-2.84-2.27-4.64-2.53ZM6.18 9.61c.12 0 .25-.03.36-.09.27-.14.44-.41.44-.72V5.6h3.5c.44 0 .8-.36.8-.8s-.36-.8-.8-.8h-3.5V.8c0-.3-.17-.58-.44-.72s-.6-.11-.84.07L.32 4.16c-.2.15-.32.39-.32.65s.12.49.32.65l5.38 4c.14.11.31.16.48.16Zm-.8-2.4-3.23-2.4 3.23-2.4v4.8Zm26.29-3.05-5.38-4c-.24-.18-.57-.21-.84-.07-.27.14-.44.41-.44.72v3.2h-3.5c-.44 0-.8.36-.8.8s.36.8.8.8h3.5v3.2c0 .3.17.58.44.72.11.06.24.09.36.09.17 0 .34-.05.48-.16l5.38-4c.2-.15.32-.39.32-.65s-.12-.49-.32-.65Zm-5.06 3.05V2.4l3.23 2.4-3.23 2.4Z"/></svg>') 16 0, pointer;
}

.slider--offset-right {
    right: -1px;
}

.slider--offset-right .slider__track {
    mask-image: linear-gradient(90deg, #000 80%, transparent);
}

html.js .slider .loading-placeholder img[src=""] {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.no-js .slider__slide:not(:first-child) {
    display: none;
}

.no-js .slider__slide:first-child {
    width: 100%;
}

.link {
    text-decoration: var(--custom--text-decoration--style);
    text-decoration-thickness: var(--custom--text-decoration--thickness);
    text-underline-offset: var(--custom--text-decoration--offset);
    font-family: var(--font-family--secondary);
}

a.has-orange-hover:hover, button.has-orange-hover:hover, .has-orange-hover a:hover {
    color: var(--color--orange) !important;
}

a.has-blue-hover:hover, button.has-blue-hover:hover, .has-blue-hover a:hover {
    color: var(--color--blue) !important;
}

.has-white-hover:hover {
    color: var(--color--white) !important;
}

.has-white-color:any-link:hover {
    color: var(--color--orange) !important;
}

.has-medium-font-weight {
    font-weight: var(--custom--font-weight--medium);
}

.link-offset {
    padding-bottom: .5em;
}

.link-chevron {
    display: inline-flex;
    position: relative;
    align-items: center;
}

.box .link-chevron {
    margin-left: .666em;
}

.link-chevron:before {
    content: '';
    position: absolute;
    left: -1em;
    width: 1em;
    height: 1em;
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 18 32'%3E%3Cpath d='M12.853 7.109c.25 0 .501.125.751.25.376.376.376 1.002 0 1.377l-7.889 7.889c-.376.376-1.002.376-1.377 0-.501-.376-.501-.877-.125-1.377l8.014-7.889c.125-.125.376-.25.626-.25z'/%3E%3Cpath d='M4.965 14.998c.25 0 .501.125.751.25l7.889 8.014c.376.376.376 1.002 0 1.377s-1.002.376-1.377 0L4.339 16.75c-.501-.501-.501-1.002-.125-1.503.25-.125.501-.25.751-.25z'/%3E%3C/svg%3E");
    background-color: currentColor;
}

.em {
    margin-top: 0.5em;
}

.block-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.pagination {
    margin-top: 2rem;
}

.pagination ul {
    display: flex;
    gap: .25em;
    justify-content: center;
}

.pagination a, .pagination span {
    padding: .2em;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 2em;
    min-height: 2em;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.11);
    color: var(--color--grey-dark);
    text-decoration: none;
    font-size: var(--font-size--small);
    aspect-ratio: 1/1;
}

.pagination svg {
    pointer-events: none;
    width: 1em;
    height: 1em;
}

.pagination a:hover svg {
    fill: var(--color--white);
}

.pagination a:hover,.pagination span.current {
    background-color: var(--color--blue);
    color: var(--color--white);
    font-weight: var(--custom--font-weight--bold);
}

.width-100 {
    width: 100%;
}

.gap-mt-0 {
    margin-block-start: 0 !important;
}

.gap-mt-12 {
    margin-block-start: var(--custom--spacing--gap-block-12) !important;
}

.gap-mt-8 {
    margin-block-start: var(--custom--spacing--gap-block-8) !important;
}

.gap-mt-6 {
    margin-block-start: var(--custom--spacing--gap-block-6) !important;
}

.gap-mt-4 {
    margin-block-start: var(--custom--spacing--gap-block-4) !important;
}

.gap-mt-2 {
    margin-block-start: var(--custom--spacing--gap-block) !important;
}

.gap-mt-1 {
    margin-block-start: var(--custom--spacing--gap-semiblock) !important;
}

.gap-mb-12 {
    margin-block-end: var(--custom--spacing--gap-block-12) !important;
}

.gap-mb-8 {
    margin-block-end: var(--custom--spacing--gap-block-8) !important;
}

.gap-mb-6 {
    margin-block-end: var(--custom--spacing--gap-block-6) !important;
}

.gap-mb-4 {
    margin-block-end: var(--custom--spacing--gap-block-4) !important;
}

.gap-mb-2 {
    margin-block-end: var(--custom--spacing--gap-block) !important;
}

.gap-mb-0 {
    margin-block-end: 0;
}


.badge {
    display: inline-block;
    padding: 0.375em 1em;
    border-radius: 1rem;
    position: relative;
    line-height: var(--custom--line-height--one);
    transition: .3s all ease-in-out;
    align-items: center;
    text-decoration: none;
    font-family: var(--font-family--secondary);
    font-size: var(--font-size--small);
    width: fit-content;
}

a.badge:hover {
    opacity: 0.8;
}

.badge:not(a) {
    cursor: default;
}

.badge-sm {
    padding: 0.2em 1em;
    font-size: var(--font-size--x-small);
}

.modal-search .modal-overlay {
    z-index: 1001;
}

.modal-search .modal-container {
    padding: 0;
}

.modal-search input {
    font-size: var(--font-size--regular);
    height: 3.5em;
    border: 0;
}

.modal-search .validate-error {
    padding-left: 1rem;
}

.modal-search input::placeholder {
    color: var(--color--blue);
}

.modal-search button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3em;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: .25em .8em;
}

.modal-search button svg {
    fill: var(--color--orange);
}

.modal-search button:hover svg {
    fill: var(--color--blue);
}

.modal-search .modal-container-scroll {
    max-height: 60vh;
}

.modal-search-results ul, .modal-search-results li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
}

.modal-search-response a {
    padding: .5em .75em;
    display: block;
    text-decoration: none;
}

.modal-search-results a {
    display: block;
    text-decoration: none;
    padding: 5px 48px 5px 76px;
    position: relative;
}

.modal-search-results-item > a {
    border-bottom: 1px solid #e8e8e8;
    color: var(--color--blue);
    display: flex;
    gap: 1em;
    font-size: var(--font-size--small);
    font-weight: var(--custom--font-weight--semibold);
    align-items: center;
    padding: .75em;
    background: var(--color--white);
}

.modal-search-results-item:last-child > a {
    border-bottom: 0;
}

.modal-search-results-cat-item {
    background-color: var(--color--orange);
    color: var(--color--white);
    font-weight: var(--custom--font-weight--semibold);
    font-size: var(--font-size--x-small);
    padding: .75em;
    transition: .2s all linear;
    cursor: default;
}

a.modal-search-results-cat-item:hover {
    text-decoration: underline;
}

.modal-search-results-cat-item:hover {
    color: var(--color--white);
}

.modal-search-results-item > a:hover {
    background-color: #fff;
    text-decoration: underline;
}

.modal-search-response > ul > li:hover > .modal-search-results-cat-item {
    background-color: var(--color--blue);
}

.modal-search-results-item-image {
    max-width: 5rem;
}

.modal-search-results-item img {
    aspect-ratio: 1/1;
    border: 1px solid var(--color--grey);
    object-fit: cover;
}

.modal-search-results-count {
    text-align: right;
    font-size: var(--font-size--x-small);
    padding: .5em .75em;
    background: var(--color--grey-headline);
}

.modal-search-noresults {
    font-size: var(--font-size--small);
    padding: .75em;
    background: var(--color--grey-headline);
    text-align: center;
}

.modal-search .form-group.has-error {
    margin-bottom: 0;
}

.modal-login button + .modal-background {
    margin-top: 1rem;
}

.modal-login .modal-background{
    padding: 2rem;
}

.modal-login .modal-padding {
    padding: 4rem;
}

.modal-login .modal-container {
    max-width: 60rem;
}

.modal-login .shop-badge-price {
    float: right;
    margin: 2rem 0;
}

.modal-login .title {
    font-size: var(--font-size--x-large);
    font-weight: bold;
    margin-top: 0;
}

.modal-login .btn:hover {
    background: var(--color--white);
    color: var(--color--orange);
}

@media (min-width: 768px) {
    .modal-login .shop-badge-price {
        float: right;
        position: relative;
        top: -3rem;
    }
    .modal-login .title {
        margin-top: 0;
    }
}

.login-welcome {
    margin-top: -1rem;
    padding: 2.25rem 0;
}

.login-welcome p {
    margin: 2.25rem 0;
}

.login-welcome p:first-of-type {
    font-weight: bold;
    line-height: 1;
}

.highlight {
    -webkit-box-shadow: 0 0 0px 3px #fbd224;
    -moz-box-shadow: 0 0 0px 3px #fbd224;
    box-shadow: 0 0 0px 3px #fbd224;
    background-color: #fbd224;
}

table {
    border-collapse: collapse;
    overflow: auto;
    margin: 0.5rem 0 2rem;
    width: 100%;
}

table th, table td, table tr {
    padding: 0.5rem;
    border: 1px solid #dbdfe3;
}

.table-wrapper {
    overflow-x: auto;
}

table:not([border="0"]) td, table:not([border="0"]) th {
    padding: 6px 12px;
    text-align: left;
}

table tr:hover td,table tr:hover th {
    background-color: #f7f7f7;
    color: #000;
}

.block-table.is-style-stripes td {
    border-bottom: 1px solid #ebebeb;
}

.block-table.is-style-stripes tr:nth-child(odd) {
    background-color: #f7f7f7;
}

.block-table.is-style-stripes thead th {
    color: #0a8fd2;
}

.block-table.is-style-stripes thead tr {
    background: linear-gradient(to right, #f0f0f0 0%, #e1e1e1 100%);
}
table:not([border="0"]):not(.is-style-stripes) td,
table:not([border="0"]):not(.is-style-stripes) th {
     border: 0 none;
}

figure.is-style-stripes table:not([border="0"]) td,
figure.is-style-stripes table:not([border="0"]) th {
    border-color: transparent;
}

[data-tab-component] {
    margin: 1rem 0;
    padding-bottom: 2rem;
}

@media (min-width: 768px) {
    [data-tab-component] {
        padding-bottom: 0
    }
}

[data-tab-component] [role="tablist"] {
    position: relative;
    white-space: nowrap;
    font-size: 0.9rem;
    width: 100%;
    box-shadow: 0 -1px 0 #c3c2c2 inset;
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
}

[data-tab-component] [role="tablist"][data-active="1"]:before {
    left: 50%;
}

[data-tab-component] [role="tablist"] [role="tab"] {
    position: relative;
    padding: 1.5rem 2rem;
    font-size: 1.2rem;
    border-top: 4px solid transparent;
    text-transform: uppercase;
    opacity: .5;
    color: #3c3c3b;
}

[data-tab-component] [role="tablist"] [role="tab"]:hover {
    text-decoration: none;
}

[data-tab-component] [role="tablist"] [role="tab"][aria-selected="true"] {
    color: #000;
    box-shadow: 1px 0 0 #c3c2c2 inset, -1px 0 0 #c3c2c2 inset, 0 -1px 0 0 #fff inset;
    border-top: 4px solid #203864;
    opacity: 1;
}

[data-tab-component] [role="tabpanel"][aria-hidden="true"] {
    display: none;
}

[data-tab-component] [role="tabpanel"][aria-hidden="false"] {
    -webkit-animation: fadeIn 1s;
    -moz-animation: fadeIn 1s;
    -o-animation: fadeIn 1s;
    animation: fadeIn 1s;
}

.popup {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    visibility: hidden;
    background: #fff;
    box-shadow: var(--shadow--light);
    opacity: 0;
    transition: .5s ease;
    pointer-events: none;
}

.popup-pad {
    padding: 1rem;
}
.popup-arrow {
    position: absolute;
    bottom: 100%;
    left: 50%;
    overflow: hidden;
    width: 1.4rem;
    height: 0.7rem;
    transform: translateX(-50%);
}

.popup-center .popup-arrow {
    right: 50%;
    transform: translateX(50%);
}

.popup-arrow:after {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 0.7rem;
    height: 0.7rem;
    background: white;
    box-shadow: var(--shadow--light);
    transform: translateX(-50%) translateY(50%) rotate(45deg);
}

.popup-trigger {
    position: relative;
}

.popup-trigger.active .popup, .popup-trigger:hover .popup, *:focus + .popup {
    visibility: visible;
    opacity: 1;
    z-index: 1002;
    pointer-events: initial;
    top: 100%;
    transform: translateX(-50%) translateY(0);
}

.popup-trigger:has(.block-button) {
    margin-bottom: -1rem;
}

.popup-trigger .block-button:after {
    content: '';
    display: block;
    height: 1rem;
    width: 100%;
}

.popup-scroll-wrapper {
    border-radius: .4rem;
    overflow: hidden;
}

.popup-scroll {
    overflow-y: auto;
    max-height: 18em;
    padding: 1em 0;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--color--grey-border) transparent;
    scrollbar-gutter: stable;
}

.trianglify {
    width: 100%;
    background: linear-gradient(90deg, #234173 60%, #28439f);
}

.trianglify svg {
    mix-blend-mode: overlay;
    filter: brightness(1.5) contrast(0.5);
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.hp-desc {
    padding: 2rem 3rem;
    background: var(--color--white);
    border-radius: 2px;
    font-size: var(--font-size--small);
}

.hp-desc-text {
    font-size: var(--font-size--x-small);
}

.hp-intro {
    position: relative;
    overflow: hidden;
}

.hp-content {
    background: var(--color--white);
    margin-block-start: 0;
    padding-top: 4rem;
}

.hp-intro .trianglify {
    position: absolute;
    top: 16rem;
    height: 100%;
}

.hp-intro-wrapper {
    position: relative;
    display: grid;
    gap: 2rem 0;
    grid-template-columns: 100%;
    padding-bottom: clamp( 4rem, 10%, 8rem );
    margin-block-start: 0;
}

@media (min-width: 1200px) {
    .hp-intro-wrapper {
        grid-template-columns: 60% 36%;
        gap: 4%;
    }
}

.hp-intro-slider {
    position: relative;
    display: flex;
    flex-direction: column;
}

.hp-intro-slider img {
    object-fit: cover;
    min-height: 100%;
}

.hp-intro-slider .slider {
    height: 100%;
    min-height: 31rem;
}

.hp-intro-slider .slider__track {
    background: var(--color--white);
}

@media (min-width: 450px) {
    .hp-intro-slider > .block-button {
        position: absolute;
        right: 7rem;
        bottom: 0;
    }
}

.hp-intro-slider  > .block-button .btn {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--color--white);
    height: 36px;
    background: rgba(255,255,255,0.1);
}

.hp-intro-slider  > .block-button .btn:hover {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color--white);
}

.is-style-outline .btn:hover {
    border-color: var(--color--blue);
    color: var(--color--blue);
}

.is-style-fill .btn.has-white-background-color:hover {
    color: var(--color--orange)  !important;
}

.slider--bottom-control .slider__track {
    height: calc( 100% - 4rem);
}

.slider--bottom-control .slider__progress {
    bottom: 4rem;
}

.slider--bottom-control .slider__arrows {
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    gap: 1rem;
}

.slider--bottom-control .slider__arrow {
    bottom: auto;
    left: auto;
    right: auto;
    transform: none;
    top: auto;
    position: relative;
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
}

.slider--bottom-control .slider__arrow:not(:disabled):hover {
    border: 2px solid rgba(255,255,255,0.3);
    box-shadow: var(--shadow--btn);
}

.slider--bottom-control .slider__pagination {
    bottom: .5rem;
    left: -.5em;
    right: auto;
}

.hp-intro-wrapper .slider__slide {
    display: flex;
}

.hp-intro .loading-placeholder,
.hp-intro .slider-intro-opacity {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto !important;
    z-index: -1;
}

.slider-intro-opacity {
    background: linear-gradient(13deg, #273586, transparent 45%, #ffde16);
    opacity: 0.8;
}

.slider-intro-content {
    padding: 2rem;
    margin-top: auto;
    width: 100%;
}

.slider-intro-content h2 {
    font-size: clamp( 12px, 10vw, calc( 3 / var(--char) * 40vw ) ) !important;
    text-shadow: 0 0 1rem color-mix(in srgb,var(--color--blue),#fff 30%)
}

@media (min-width: 550px) {
    .slider-intro-content h2 {
        font-size: clamp( 12px, 10vw, calc( 3 / var(--char) * 20vw ) ) !important;
    }
}

@media (min-width: 700px) {
    .slider-intro-content h2 {
        font-size: var(--font-size--x-large) !important;
    }
}

@media (min-width: 768px) {
    .slider-intro-content {
        padding: 3rem;
    }
}

.hp-quick-links {
    max-width: 85rem;
}

.hp-quick-links a {
    display: flex;
    border: 1px solid var(--color--grey);
    border-radius: 5px;
    align-items: center;
    padding: .75em 1em;
    gap: 1rem;
    justify-content: center;
}

.hp-quick-links span {
    white-space: nowrap;
}

.hp-quick-links a:hover {
    border: 1px solid var(--color--orange);
    box-shadow: 0 0 10px color-mix(in srgb, var(--color--orange) 20%, transparent);
}

.hp-quick-links img {
    max-height: 2.5rem;
    width: auto;
}

.loop-event-mini {
    align-items: center;
    gap: clamp(1rem, 5%, 3rem);
    max-width: 40rem;
}

.loop-event-mini > time {
    border-radius: 5px;
    border: 1px solid var(--color--grey-light);
    padding: 1em .25em;
    text-align: center;
    aspect-ratio: 1 / 1;
    line-height: 1.3;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-width: 6.6666em;
}

.loop-event-mini-inner {
    padding: .5em;
}

.loop-event-mini-title,
.loop-document-mini-title {
    margin-top: 0;
}

.loop-document-mini-title {
    padding-top: .2em;
}

.loop-event-mini-inline,
.loop-document-mini-inline{
    display: flex;
    font-size: 75%;
    gap: clamp( .75rem, 4vw, 2rem );
    line-height: var(--custom--line-height--one);
    margin-top: 1rem;
}

.loop-document-mini-thumb {
    margin-top: 1rem
}

.loop-event-mini-inline svg {
    width: 1em;
    height: 1em;
    fill: var(--color--grey);
    margin-right: .5em;
}

.loop-event-mini-inline > * {
    display: flex;
}

.gradient {
    background: linear-gradient(0, transparent, #eaedf55e );
    background-size: 100% 10%;
    background-repeat: no-repeat;
    padding-top: 4rem;
}

.loop-document-mini > svg {
    width: 1.5em;
    height: 1.5em;
    min-width: 1.5em;
    fill: var(--color--orange);
}

.loop-document-mini{
    gap: 1rem;
}

.row-has-line > *:not(:last-of-type) {
    position: relative;
}

@media (min-width: 768px) {
    .row-has-line > *:last-child {
        padding-left: 10%;
    }
    .row-has-line > *:not(:last-of-type):before {
        content: '';
        top: 0;
        bottom: 0;
        right: -2rem;
        width: 1px;
        background: #e5e5e5;
        height: 100%;
        display: block;
        position: absolute;
    }
}

.cta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.cta > a:not(.btn) {
    line-height: var(--custom--line-height--one);
    position: relative;
    top: -.1em;
}

.form-newsletter input[type=email] {
    max-width: 30rem;
    margin: 0 auto;
    box-shadow: none !important;
    border-bottom: 1px solid var(--color--grey-light);
    text-align: center;
    font-size: var(--font-size--medium);
    color: var(--color--grey-dark);
}

.form-newsletter .control-label {
    top: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    padding-top: 0.6em;
}

.newsletter {
    padding-bottom: 6rem;
}

.footer {
    position: relative;
    padding: 6rem 0;
    font-size: 80%;
    color: var(--color--blue);
}

.footer figure {
    margin-left: 0;
}

.footer .form-contact {
    max-width: 36rem;
}

.footer .trianglify {
    top: 0;
    position: absolute;
    bottom: 0;
    background: linear-gradient(90deg, #f3f5ff 60%, #dcdfe7);
}

.footer >:not(.trianglify) {
    position: relative;
    clear: both;
    overflow: hidden;
}

.footer .trianglify svg {
    mix-blend-mode: overlay;
    filter: brightness(1) contrast(1);
}

.is-style-rounded img {
    border-radius: 50%;
}

.alignleft {
    float: left;
    margin-right: 1rem;
}

figure.alignleft {
    margin-right: 1rem;
}

figure.alignright {
    margin-left: 1rem;
}

.footer-group-icon {
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.footer-soc {
    display: block;
}

.footer-soc:hover svg {
    fill: var(--color--orange);
}

.footer-soc svg {
    width: 2em;
    height: 2em;
    display: block;
    fill: var(--color--blue);
}


.burger {
    padding: 0 1rem;
    transition: transform .3s ease-in-out,-webkit-transform .3s ease-in-out;
}

.header .burger {
    margin-right: -1rem;
    width: auto;
}

@media (min-width: 768px) {
    .header .burger {
        display: none;
    }
}

.burger-wrapper {
    margin-bottom: -.5em;
    pointer-events: none;
}

.burger:after {
    content: attr(data-open);
    font-size: 12px;
    transition: .3s all;
    color: var(--color--blue);
    font-weight: var(--custom--font-weight--bold);
}

html.modal-mobile-menu--open .burger:after {
    content: attr(data-close);
    animation: fadeIn 2s;
    color: var(--color--white);
}

.burger .line {
    width: 2.2rem;
    height: .25rem;
    background-color: var(--color--blue);
    display: block;
    margin: .4rem auto;
    transition: all .3s ease-in-out
}

@media (hover: hover) {
    .burger:hover .line {
        background-color: var(--color--orange) !important;
    }
}

html.modal-mobile-menu--open .burger-wrapper {
    -webkit-animation: scale-animation .3s forwards;
    animation: scale-animation .3s forwards;
}

html.modal-mobile-menu--open .burger .line {
    transition-delay: .2s;
    background-color: var(--color--white);
}

html.modal-mobile-menu--open .burger .line:nth-child(2) {
    opacity: 0
}

html.modal-mobile-menu--open .burger .line:first-child {
    transform: translateY(.65rem) rotate(45deg)
}

html.modal-mobile-menu--open .burger .line:nth-child(3) {
    transform: translateY(-.65rem) rotate(-45deg)
}

@-webkit-keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes scale-animation {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    to {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.modal-mobile-menu--open {
    overflow: hidden;
}
.mobile-menu .flex {
    height: 100%;
    width: 100%;
    max-height: 100vh;
}

html.modal-mobile-menu--open .mobile-menu .flex-1 {
    margin-bottom: -4rem;
}

@media (max-width: 768px) {
    .mobile-menu .around-xs {
        display: grid;
    }
}

.mobile-menu-content {
    text-align: left;
    padding: 1rem;
}

.mobile-menu-content svg.icon-home {
    display: none;
}

.mobile-menu .burger {
    margin-bottom: 2rem;
}

.mobile-menu .toggle-content a {
    font-size: var(--font-size--regular);
    padding-left: 2em;
    width: 100%;
    text-decoration-thickness: 1px;
    text-underline-position: auto;
}

.mobile-menu a {
    padding: 1rem;
    font-size: var(--font-size--large);
    line-height: var(--custom--line-height--one);
    display: flex;
    text-decoration: none;
    color: var(--color--white);
    width: calc( 100% - 3em );
    display: inline-flex;
}

.mobile-menu a + button {
    display: inline-flex;
    padding: 1em;
    margin-left: auto;
}

.mobile-menu .is-visible svg.icon-caret-right {
    display: block;
    position: relative;
    transform: rotate(90deg);
}

.mobile-menu a + button svg {
    width: 1em;
    height: 1em;
    fill: #fff;
    margin: 0;
}

@media (max-height: 750px) {
    .mobile-menu a {
        padding: .75rem 1rem;
    }
}

.mobile-menu a:hover, .mobile-menu .current > a {
    color: var(--color--orange);
}


.event-title {
    font-size: 1rem;
    margin: 0 0 1rem 0;
    padding: 0;
}

.event-details {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem 0;
    background: whitesmoke;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    margin-bottom: 4rem;
}

.event-details .event-metadata {
    justify-content: center;
}

.event-separator,
.event-highlight-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 2rem 0;
}

.event-image-link .loading-placeholder, .event-image {
    object-fit: cover;
    width: 8rem;
    height: 8rem;
    max-width: none;
}

@media (min-width: 768px) {
    .event-btn-past {
        float: right;
        height: 2.15rem;
    }
}

.event-metadata {
    justify-content: center;
    margin-bottom: 1rem;
}

.box {
    padding: 2rem;
    border-radius: 5px;
    box-shadow: var(--shadow--light);
}

.event-metadata-export {
    padding: 1rem;
    border: 1px solid var(--color--grey-light);
    border-radius: 5px;
    flex-direction: column;
}

.event-metadata svg {
    width: 1em;
    height: 1em;
    fill: var(--color--blue);
    margin-right: .5em;
}

.box-highlight {
    box-shadow: 0 0 100px #e4e4e4;
    padding: 1em clamp( 1rem, 5vw, 3.4rem );
    margin-bottom: 2em;
}

.event-item a:hover .event-title {
    color: #203864;
}

.box-highlight article:last-child {
    margin: 0;
}

.box-highlight .event-item a {
    border: 0;
}

.box-highlight .event-item:not(:last-child) .event-item-inner:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0px;
    width: 200px;
    height: 1px;
    background: #ebebeb;
}

.box-highlight .event-item-inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
}

.event-item a {
    display: flex;
    position: relative;
    transition: color .3s ease-in-out;
    width: 100%;
}

.event-item {
    background: #f7f7f7;
    padding: 1rem;
    margin: 1rem 0 1rem 0;
}

.event-item.event-highlight {
    background: #fff5d5;
}

.event-item > * {
    border-left: 3px solid #e0e0e0;
    padding: .5rem 1rem;
    min-height: 4rem;
}

.event-item > *:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0px;
    width: 200px;
    height: 1px;
    background: #ebebeb;
}

.event-metadata, .article-metadata {
    line-height: 1.2;
    display: flex;
    gap: .5em;
    max-width: 20rem;
    justify-content: start;
    margin-left: auto;
    margin-right: auto;
}

.event-metadata-block {
    width: 100%;
}

.event-metadata-export a {
    width: 100%;
    padding-left: 1.5em;
}

.event-metadata-www a{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    max-width: 17rem;
    /* mask-image: linear-gradient(90deg, #fff calc( 100% - 4em ), transparent); */
}

.link-icon {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: var(--color--orange);
    font-size: 12px;
    font-weight: 500;
    width: fit-content;
}

.link-icon span {
    text-decoration: underline;
}

.link-icon svg {
    margin-left: 5px;
    width: 1em;
    height: 1em;
    fill: var(--color--orange);
    position: relative;
}

.link-icon-caret {
    position: relative;
    left: -5px;
    color: var(--color--orange);
}

.link-icon.link-icon-caret svg {
    margin: -0.1em 0.2em -0.1em 0;
}

.link-icon.link-icon-caret:hover svg {
    fill: #ffbf35;
}

.page-headline h1 {
    max-width: 70rem;
}

.page-headline:has([role="navigation"]) h1 {
    margin-bottom: 1em;
}

.page-headline [role="navigation"] {
    margin: 0 0 2rem 0;
    padding: 0 0 1rem 0;
    gap: clamp( 1rem, 10%, 5rem );
    flex-wrap: wrap;
}

.page-headline [role="navigation"] a {
    display: flex;
    align-items: center;
}

.page-headline [role="navigation"] svg {
    width: .8em;
    height: .8em;
    margin-right: .5em;
    transition: none;
}

article.page {
    background: linear-gradient(0, #fff calc( 100% - 10rem ), transparent);
    padding: 0 0 6rem 0;
}

article.page:has([role="navigation"]) {
    background: linear-gradient(0, #fff calc( 100% - 5rem ), transparent);
}

.breadcrumbs svg {
    width: 1em;
    height: 1em;
    fill: var(--color--blue);
    margin-right: 0 !important;
}

.breadcrumbs .trail-items {
    display: flex;
    gap: 0 1rem;
}

.page-headline [role="navigation"] .breadcrumbs a {
    align-items: flex-start;
}

.breadcrumbs li:not(.trail-begin):before {
    content: '|';
    position: relative;
    width: 1em;
    display: inline-flex;
    opacity: .2;
}

.breadcrumbs .trail-item {
    display: flex;
}

.article-list-newsletter-image {
    background: var(--color--blue);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color--white);
    flex-direction: column;
    text-decoration: none;
    aspect-ratio: 1 / .5;
    height: auto;
    padding: 1rem;
    text-align: center;
}

.article-list-newsletter-image:hover {
    box-shadow: 0 0 100px rgba(0,0,0,.5) inset;
}

.article-list-newsletter-image strong {
    font-size: 150%;
}

.form-login-wrapper {
    margin-left: 0 !important;
    max-width: 60rem;
}

.map {
    height: 23rem;
}

.map svg {
    z-index: 200;
    width: inherit;
    height: inherit;
}

.map .leaflet-tile-container {
    filter: grayscale(0.3)
}

.post-navigation {
    clear: both;
}

.form-login > p {
    margin-bottom: 1rem;
}

.is-style-notice-info {
    padding-left: 2.5em !important;
    position: relative;
    display: block;
}

.is-style-notice-info:before {
    content: "";
    mask-image: url("data:image/svg+xml,%3Csvg xmlns=\'http://www.w3.org/2000/svg\' xml:space=\'preserve\' style=\'enable-background:new 0 0 364.3 364.4\' viewBox=\'0 0 364.3 364.4\'%3E%3Cpath d=\'M182.1 0C81.5 0-.1 81.6-.1 182.2s81.6 182.2 182.2 182.2 182.2-81.6 182.2-182.2S282.7 0 182.1 0zm43.3 279.3c-9.4 3.7-16.8 6.5-22.4 8.4-6.3 2-12.8 3-19.4 2.9-11.3 0-20.1-2.8-26.4-8.3-6.2-5.2-9.6-13-9.4-21.1 0-3.4.2-6.8.7-10.1.5-3.5 1.2-7.4 2.3-11.7l11.7-41.4c1-4 1.9-7.7 2.6-11.3.7-3.2 1-6.4 1.1-9.7 0-5.3-1.1-9-3.3-11.1-2.2-2.1-6.3-3.1-12.5-3.1-3.2 0-6.3.5-9.3 1.4-3.2.9-5.9 1.8-8.2 2.7l3.1-12.8c7.7-3.1 15-5.8 22-8 6.4-2.1 13.1-3.3 19.9-3.3 11.2 0 19.9 2.7 26 8.2 6.1 5.4 9.2 12.5 9.1 21.2 0 1.8-.2 5-.6 9.5-.4 4.2-1.1 8.4-2.3 12.5l-11.6 41.2c-1 3.7-1.9 7.5-2.6 11.4-.6 3.2-1 6.4-1.1 9.6 0 5.5 1.2 9.2 3.7 11.2s6.7 3 12.7 3c3.3-.1 6.5-.6 9.6-1.5 2.7-.7 5.3-1.5 7.8-2.6l-3.2 12.8zm-2.1-167.5c-5.3 5-12.3 7.7-19.6 7.6-7.3.1-14.4-2.6-19.7-7.6-10.2-9.1-11-24.7-1.9-34.8.6-.7 1.3-1.3 1.9-1.9 5.3-5 12.4-7.8 19.7-7.6 7.3-.2 14.3 2.5 19.6 7.5 10.2 9.2 10.9 24.9 1.7 35.1-.5.6-1.1 1.2-1.7 1.7z\'/%3E%3C/svg%3E");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    background-color: currentColor;
    margin-right: .5em;
    position: absolute;
    left: 0;
    top: -.1em;
    width: 1.5em;
    height: 1.5em;
}

.form-avatar .col-md-10:first-child {
    margin-bottom: 1rem;
}

.account-avatar {
    position: relative;
    width: 91px;
    height: 91px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #adadad;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.account-avatar .form-info:not(:empty) {
    box-shadow: none;
    align-content: center;
    text-align: center;
    color: var(--color--blue);
    font-weight: var(--custom--font-weight--bold);
    z-index: 2;
    font-size: var(--font-size--small);
    line-height: var(--custom--line-height--one);
    pointer-events: none;
}

.account-avatar:before {
    content: '';
    inset: 0 0 0 0;
    position: absolute;
    background: rgba(255,255,255,0);
    transition: all .1s linear;
    font-size: 8px;
    text-align: center;
    z-index: 1;
    pointer-events: none;
}

.account-avatar:has(.form-info:not(:empty)):before {
    background: rgba(255,255,255,.6);
}

.account-avatar:hover img {
    opacity: .5;
}

.account-avatar > * {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
}

.account-avatar input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}