* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 100%;
    font: inherit;
}

@font-face {
    font-family: 'Scope';
    src: url('../fonts/scope.ttf') format("truetype");
    /* wght: 60-100 */
    /* wdth: 400-600 */
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter.ttf') format("truetype");
    /* wght: 100-900 */
    /* slnt: -10-0 */
}

:root {
    /* --radius: 12px; */
    --radius: 24px;
    --darkblue: #003E6A;
    --lightblue: #ACC8DC;
    --middleblue: #0474c3;
    --classicgreen: #309761;
    --neongreen: #2BC574;
    --body: #EDEFF4;
}

html {
    font-size: 18px;
}

::selection {
    background: var(--darkblue);
    /* background: var(--classicgreen); */
    text-shadow: none;
    color: #fff;
    background-clip: initial;
    -webkit-text-fill-color: initial;
}

body {
    font-family: 'Inter';
    background: var(--body);
    line-height: 1.3;
    position: relative;
}

.main {
}

.container {
    /* max-width: 1280px; */
    max-width: 1400px;
    width: 100%;
    margin-left: 20px;
    margin-right: 20px;
    /* outline: solid 1px green; */
}

p+p {
    margin-top: 1.3em;
}

.textcontent {
    color: var(--darkblue);
    font-size: 1rem;
    line-height: 1.3;
    padding-bottom: 3.9em;
    padding-top: 3.9em;
}

.textcontent strong {
    font-variation-settings: 'wght' 700, 'slnt' 0;
    /* wght: 100-900 */
    /* slnt: -10-0 */
}

a {
    color: inherit;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

.grain:before {
    content: "";
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23a)'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 300px;
    opacity: 0.12;
    opacity: 0.18;
    /* opacity: .25; */
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    pointer-events: none;
}



/* header */
.header {
    position: absolute;
    z-index: 500;
    justify-content: center;
    align-items: center;
    width: 100%;
    display: flex;
    font-family: 'Scope';
    font-variation-settings: 'wght' 75, 'wdth' 500;
    text-shadow: 0px 1px 4px rgba(0,62,106,1);
    left: 50%;
    transform: translateX(-50%);
    height: 3rem;
    font-size: .9rem;
    color: #fff;
    -webkit-font-smoothing: antialiased;
}

.header a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

.header a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--lightblue); /* The color of the underline */
    transform: scaleX(0); /* Initially hide the underline */
    transform-origin: bottom right; /* Start scaling from the right */
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header a:hover::after {
    transform: scaleX(1); /* Scale the underline to full width */
    transform-origin: bottom left; /* Scale from the left on hover */
}

.header a:hover {
    text-decoration: none; /* Disable the default underline on hover */
}

.header li.current a::after {
    transform: scaleX(1); /* Make sure the underline is always visible */
    transform-origin: bottom left; /* Keep the transform origin consistent */
    transition: none; /* Disable the animation for the current item */
}

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

.header .container {
    display: flex;
    align-items: center;
    border-radius: var(--radius);
    max-width: 1600px;
    width: 100%;
}

.header-logo {
}

.header-logo a {
    display: flex;
    text-decoration: none !important;
    font-variation-settings: 'wght' 80, 'wdth' 500;
    border: none !important;
}

.header-logo a img {
    height: 2rem;
    margin-right: .4rem;
}

.header-logo a div {
    font-size: 1rem;
}

.header-menu {
    margin-left: auto;
    display: flex;
}

.header-menu ul {
    list-style-type: none;
    display: flex;
}

.header-menu-pages {
    margin-right: 2.8rem;
    gap: 1.3rem;
}

.header-menu-languages {
    text-transform: capitalize;
    gap: 1rem;
}

.header-menu-languages svg {
    position: relative;
    bottom: -.15rem;
}




/* header floating */

.floatingheader {
    position: fixed;
    backdrop-filter: blur(6px);
    top: -3rem;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 900px;
    max-width: 100%;
    border-radius: var(--radius);    
    font-size: .9rem;
    background: rgba(255,255,255,.85);
    box-shadow: 0px 4px 4px -4px rgba(0,62,106,.2);
    color: var(--darkblue);
    border: solid 1px var(--lightblue);
    z-index: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Scope';
    font-variation-settings: 'wght' 75, 'wdth' 500;
    max-height: 2.5rem;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floatingheader--visible {
    transform: translateX(-50%) translateY(3.8rem);
}

.floatingheader .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.floatingheader a {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}

.floatingheader a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--middleblue); /* The color of the underline */
    transform: scaleX(0); /* Initially hide the underline */
    transform-origin: bottom right; /* Start scaling from the right */
    transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.floatingheader a:hover::after {
    transform: scaleX(1); /* Scale the underline to full width */
    transform-origin: bottom left; /* Scale from the left on hover */
}

.floatingheader a:hover {
    text-decoration: none; /* Disable the default underline on hover */
}

.floatingheader li.current a::after {
    transform: scaleX(1); /* Make sure the underline is always visible */
    transform-origin: bottom left; /* Keep the transform origin consistent */
    transition: none; /* Disable the animation for the current item */
}

.floatingheader-logo {
    line-height: 2.5rem;
}

.floatingheader-logo a {
    display: flex;
    align-items: center;
    text-decoration: none !important;
    font-variation-settings: 'wght' 85, 'wdth' 500;
    border: none !important;
}

.floatingheader-logo a::after {
    display: none;
}

.floatingheader-logo a img {
    margin-right: .8rem;
    background: linear-gradient(135deg, #0769B0 0%, #309761 100%);
    border-radius: 6px;
    height: 1.7rem;
}

.floatingheader-logo a div {
    font-size: 1rem;
    margin-top: -.1rem;
}

.floatingheader-menu {
    margin-left: auto;
    display: flex;
}

.floatingheader-menu ul {
    list-style-type: none;
    display: flex;
}

.floatingheader-menu-pages {
    margin-right: 2.8rem;
    gap: 1rem;
}

.floatingheader-menu-languages {
    text-transform: capitalize;
    gap: 1rem;
}

.floatingheader-menu-languages svg {
    position: relative;
    bottom: -.15rem;
}

.floatingheader .header-menu-pages {
    gap: 1rem;
}

.floatingheader .header-menu-languages {
}



/* mobile header */
.floatingheader-hamburger {
    display: none;
    margin-left: auto;
    cursor: pointer;
    appearance: none;
    border: none;
    background: none;
    line-height: 2.5rem;
    width: 4rem;
    color: var(--darkblue);
    font-size: 1.4rem;
    margin-right: -20px;
}

.floatingheader-hamburger span {
    display: block;
}

.floatingheader-hamburger span+span {
    display: none;
    font-size: 2rem;
}





/* banner */
.banner {
    /* min-height: 40vh;
    min-height: 40dvh; */

    min-height: 5rem;

    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 4em;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    /* background: var(--darkblue); */
    background: linear-gradient(135deg, #003E6A 25%, var(--middleblue) 125%);
    -webkit-font-smoothing: antialiased;
}

.banner--afterscroll {
    transform: scale(.98);
    will-change: transform;
    border-radius: var(--radius);
}

.banner::after {
    content: "";
    display: block;
    height: 0; /* Will be set dynamically */
}

.banner-title {
    font-family: 'Scope';
    font-size: clamp(40px, 3vw, 70px);
    line-height: 1;
    font-variation-settings: "wght" 60, "wdth" 500;
    letter-spacing: .007em;
    text-align: center;
    text-shadow: 0px 2px 4px rgba(0,62,106,1);
}






/* sections */

section {
    display: flex;
    justify-content: center;
}

.section {
    /* border-top: solid 1px #B4CDE3; */
    padding-top: 5rem;
    padding-bottom: 6rem;
    position: relative;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
}

.section .container {
    position: relative;
}

.section--border .container::before {
    content: "";
    position: absolute;
    top: -4rem; /* Moves the gradient up by half of its size */
    left: -10px;
    width: calc(100% + 20px);
    height: 100%;
    background: linear-gradient(180deg, rgba(211,217,232,1) 0%, rgba(237,239,244,1) 100%);
    background-size: 100% 100%;
    z-index: -1;
    border-radius: var(--radius);
}

.section--dark {
    background: #00243E;
    background: linear-gradient(180deg, #004272 0%, #00243E 25%);
}

.section--bgimg:after {
    content: '';
    display: block;
    height: 4rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(237,239,244,0) 0%, #EDEFF4 100%);
}

.section--gradientdark {
    background: #00243E;
    /* background: linear-gradient(135deg, var(--darkblue) 10%, var(--middleblue) 40%, var(--darkblue) 60%, var(--classicgreen) 90%); */
    background: linear-gradient(135deg, #00243E 30%, var(--darkblue) 80%, var(--classicgreen) 100%);
}

.section--gradientbright {
    background: linear-gradient(135deg, var(--classicgreen) -5%, var(--body) 20%, var(--body) 80%, var(--darkblue) 105%);
}

.section:not(.section--dark)+.section--gradientbright {
    border-top: solid var(--lightblue) 1px;
}

.section--gradientbright+.section:not(.section--dark) {
    border-top: solid var(--lightblue) 1px;
}

.section--fiftyfifty {
    background-size: cover !important;
}

.section--fiftyfifty:after {
    inset: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(90deg, transparent 40%, var(--body) 60%);
}

.section--fiftyfifty.section--dark:after {
    background: linear-gradient(90deg, transparent 40%, #000 60%);
}

.section--fiftyfifty:has(.container-half--left):after {
    background: linear-gradient(-90deg, transparent 40%, var(--body) 60%);
}

.section--fiftyfifty.section--dark:has(.container-half--left):after {
    background: linear-gradient(-90deg, transparent 40%, #000 60%);
}

.section--fiftyfifty .container {
    max-width: 1800px;
    z-index: 2;
}

.container {
}

.container-half {
    width: 50%;
    justify-self: end;
    text-align: left !important;
    float: right;
}

.container-half--left {
    justify-self: start;
    float: left;
}

.container-half:after {
    content: '';
    display: block;
    clear: both;
}

.section--fiftyfifty.section--dark {
    background: #000;
}

.section--fiftyfifty.section--dark .textblock {
    color: var(--body);
}

.section--fiftyfifty .textblock {
    text-align: left;
}



/* blocks */

.block {
}

.headline h2 {
    font-size: 2.8rem;
    font-family: 'Scope';
    font-variation-settings: 'wght' 80, 'wdth' 500;
    text-align: center;
    letter-spacing: .005em;
    line-height: 1.2;
    background: linear-gradient(178deg, rgba(4,116,195,1) 25%, rgba(0,62,106,1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section--dark .headline h2 {
    background: linear-gradient(178deg, #fff 25%, #A3D8FF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.image {
    margin-top: 2.6rem;
    margin-bottom: 2.6rem;
}

.image img {
    width: 100%;
    display: flex;
    border-radius: var(--radius);
}

.textblock {
    color: var(--darkblue);
    text-align: center;
    max-width: 65ch;
    line-height: 1.3;
    margin: auto;
    margin-top: 1rem;
    font-size: 1rem;
}

.section--dark .textblock {
    color: var(--lightblue);
}

.eyebrow {
    text-align: center;
}

.eyebrow span {
    display: inline-block;
    font-size: .8rem;
    letter-spacing: .025rem;
    padding: .2rem .8rem;
    border-radius: 4rem;
    color: var(--classicgreen);
    background: rgba(48, 151, 97, 0.1);
}

.section--dark .eyebrow span {
    color: rgba(255,255,255,.7);
    background: rgba(43,197,116,.7);
}

.eyebrow+.headline {
    margin-top: .8rem;
}

.numbers {
    display: flex;
    margin-top: 3rem;
    margin-bottom: 8.5rem;
    flex-wrap: wrap;
    height: 10rem;
}

.numbers > div {
    width: 100%;
    text-align: center;
    border-right: 1px solid transparent;
    border-image: linear-gradient(180deg, rgba(4,116,195,0) 0%, rgba(7,105,176,0.25) 25%, rgba(7,105,176,0.25) 75%, rgba(7,105,176,0.01) 100%);
    border-image-slice: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.numbers > div:last-of-type {
    border-right: none;
}

.numbers .number {
    font-size: clamp(48px, 8vw, 120px);
    font-family: 'Scope';
    font-variation-settings: 'wght' 100, 'wdth' 500;
    margin-top: -1.1rem;
    background: linear-gradient(135deg, rgba(4,116,195,1) 25%, rgba(0,62,106,1) 100%);
    line-height: 1;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.numbers .label {
    color: var(--darkblue);
    font-size: .85rem;
    letter-spacing: .02rem;
    margin-top: .5em;
    text-transform: uppercase;
}

.numbers .note {
    color: var(--darkblue);
    font-size: .85rem;
    letter-spacing: .02rem;
    margin-bottom: .5em;
    text-transform: uppercase;
}

.section--dark .numbers .number {
    background: linear-gradient(135deg, #fff 25%, #A3D8FF 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section--dark .numbers .label {
    color: var(--lightblue);
}

.section--dark .numbers .note {
    color: var(--lightblue);
}

.button {
    text-align: center;
    margin-top: 4rem;
}

.button > a {
    font-size: 1.1rem;
    text-decoration: none;
    padding: .4em 1.2em;
    border-radius: 4em;
    background: linear-gradient(180deg, #0769B0 0%, #01487B 100%);
    color: rgba(255,255,255,.9);
    background: transparent;
    color: var(--darkblue);
    border: solid 1px var(--darkblue);
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

.button > a:hover {
    background: var(--darkblue);
    color: #fff;
}

.section--dark .button:not(.button--major) > a {
    color: var(--lightblue);
    border: solid 1px var(--lightblue);
}

.section--dark .button:not(.button--major) > a:hover {
    background: var(--lightblue);
    color: var(--darkblue);
}

.button--major > a {
    font-size: 1.6rem;
    border: solid 2px var(--classicgreen);
    color: var(--classicgreen);
}

.button--major a:hover {
    background: var(--classicgreen);
    color: #fff;
}

.cards {
    display: flex;
    margin-top: 4.5rem;
    /* gap: 1rem; */
    /* gap: .5rem; */
    gap: .75rem;
}

.cards+.cards {
    /* margin-top: 1.1rem; */
    margin-top: .9rem;
}

.card {
    flex: 1;
    background: linear-gradient(180deg, #fff 80%, #E3E8EB 100%);
    border-radius: calc(var(--radius) / 2);
    /* padding: 1.5rem 2rem; */
    padding: 1rem 1.5rem;
    border: solid 1px var(--lightblue);
    font-size: 1rem;
    color: var(--darkblue);
    text-decoration: none;
    box-shadow: 0px 4px 4px -4px rgba(0,62,106,.2);
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    position: relative;
}

.card-img {
    max-width: 100%;
    margin-bottom: 2.6rem;
}

.card-img--icon {
    width: 40px;
    margin-bottom: 1.3em;
}

.cards:not(.cards--borderless) .card-textcontent {
    /* margin-top: auto; */
}

.card-headline {
    /* font-size: 1.3rem; */
    font-size: 1.1rem;
    /* margin-bottom: 1.3rem; */
    margin-bottom: 1.1rem;
    font-variation-settings: 'wght' 600, 'slnt' 0;
    /* wght: 100-900 */
    /* slnt: -10-0 */
}

.card-text {
    /* font-size: .9rem; */
    font-size: .8rem;
}

.card-learnmore {
    display: inline-block;
    color: var(--classicgreen);
    text-transform: uppercase;
    letter-spacing: .05em;
    font-size: .85rem;
    font-variation-settings: 'wght' 300, 'slnt' 0;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: auto;
}

.card-learnmore:after {
    content: '→';
    opacity: 0;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
}

a.card:hover {
    transform: scale(1.02);
}

a.card:hover .card-learnmore:after {
    opacity: 1;
    padding-left: .5rem;
}

a.card:hover .card-learnmore {
}

.section--dark .card {
    background: linear-gradient(180deg, #01467C 80%, #023257 100%);
    border: solid 1px #004B84;
    color: #fff;
    box-shadow: 0px 4px 4px -4px rgba(0,0,0,.25);
    -webkit-font-smoothing: antialiased;
}

.section--dark .card-learnmore {
    color: var(--neongreen);
}

.cards--borderless .card {
    box-shadow: none;
    border: none;
    background: transparent;

    /* check dark bg */
}

/* pricing */
.pricing.block {
}
  
.pricing-column {
    border-radius: var(--radius);
    /* text-align: center; */
}

.pricing-column-title {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: .75em;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .04em;
    text-align: center;
    letter-spacing: .005em;
    line-height: 1.2;
    background: linear-gradient(178deg, rgba(4,116,195,1) 25%, rgba(0,62,106,1) 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-column-details {
    /* list-style: none; */
    padding: 0;
    flex-grow: 1;
    font-size: 0.9rem;
}

.pricing-column-detail {
    /* padding: 5px 0; */
    margin-left: 1em;
    display: flex;
}

.pricing-column-detail--major {
    font-weight: bold;
}

.pricing-column-separator {
    list-style: none;
    height: 1px;
    margin: 1em 0;
    border-bottom: 1px solid var(--lightblue);
    opacity: .5;
}

.pricing-column-price {
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 1.3em;
}

.pricing-column-priceInfo {
    font-size: 0.9rem;
    color: #777;
    display: block;
}

.pricing-tooltip {
    /* cursor: help; */
    margin-left: 5px;
    height: 1em;
    display: inline-block;
    align-self: center;
}

.pricing-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    /* bottom: 150%;
    left: 50%;
    transform: translateX(-50%); */
    transform: translateX(-50%) translateY(calc(-100% - .5em));
    background: #000;
    color: #fff;
    padding: 5px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    max-width: 800px; /* Set max width */
    white-space: pre-line; /* Ensures proper wrapping */
    word-break: normal; /* Allows natural breaks */
    text-align: center; /* Improves readability */
    opacity: 1;
    visibility: visible;
    font-weight: normal;
    pointer-events: none;
}



.pricing-tooltip::after {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease-in-out;
}
  


/* imgcomp */
.block.imgcomp {
    margin-top: 3.6rem;
    border-radius: var(--radius);
}

.imgcomp {
    width: 100%;
    position: relative;
    overflow: hidden;
    height: auto; /* This will adjust the container to the height of the "before" image */
}

.imgcomp--dark {
    border: solid 2px var(--darkblue);
}

.imgcomp, .imgcomp * {
    -webkit-user-select: none;
    user-select: none;
}

.imgcomp-wrapper {
    position: relative;
    width: 100%;
}

.imgcomp-img {
    display: block;
    width: 100%;
    height: auto; /* Ensure the images keep their aspect ratio */
    pointer-events: none;
}

.imgcomp-before {
    z-index: 1;
}

.imgcomp-after {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    /* clip-path: inset(0 50% 0 0); */
    /* clip-path: inset(0 0% 0 0); */
    /* clip-path: inset(0 0 0 50%); */
}

.imgcomp-label {
    position: absolute;
    /* z-index: 5; */
    bottom: .5rem;
    color: #fff;
    padding: .25em .75em;
    /* border-radius: calc(var(--radius) - .75em); */
    border-radius: var(--radius);
    font-size: .9rem;
    /* background: var(--darkblue); */
    /* background: rgba(0, 62, 106, .8); */
    backdrop-filter: blur(6px);

    color: var(--darkblue);
    /* background: #fff; */
    background: rgba(255,255,255,.6);
}

.imgcomp-before .imgcomp-label {
    right: .6rem;
}

.imgcomp-after .imgcomp-label {
    left: .6rem;
    z-index: 2;
}

.imgcomp-slider {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    transform: translateY(-50%);
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    z-index: 3;
}

.imgcomp-handle {
    position: absolute;
    left: 50%;
    top: 0;
    display: block;
    transform: translateX(-50%);
    width: 50px;
    height: 100%;
    background: var(--body);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, transparent 47%, #fff 50%, transparent 53%);
}

.imgcomp--dark .imgcomp-handle {
    background: var(--darkblue);
    background: linear-gradient(90deg, transparent 47%, var(--darkblue) 50%, transparent 53%);
}

.imgcomp-handle span {
    position: absolute;
    font-size: 1rem;
    width: 1.4rem;
    height: 2.4rem;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--body);
    border-radius: var(--radius);
}

.imgcomp--dark .imgcomp-handle span {
    background: var(--darkblue);
    color: #fff;
}

.imgcomp-slider::-webkit-slider-thumb {
    display: none;
}

.imgcomp-slider::-moz-range-thumb {
    display: none;
}

.imgcomp+.textblock {
    margin-top: 2.6em;
}


/* logos */

.logos {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
    padding: 1rem 0;
    margin-top: 2.6rem;
}

.logos-wrapper {
    display: flex;
    align-items: center;
    position: relative;
    width: 100%;

    /* Apply the mask */
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 2rem,
        black calc(100% - 2rem),
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 2rem,
        black calc(100% - 2rem),
        transparent 100%
    );
}

.logos-track {
    display: flex;
    align-items: center;
    will-change: transform;
    animation: marquee 10s linear infinite;
}

.logos-item {
    flex-shrink: 0;
    width: 17rem;
    height: auto;
    margin-right: 10rem;
}

.logos-item img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-100%); /* Move the track by half of its width */
    }
}



/* video */
.video {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video--notplaying .video-player {
    width: 100%;
    height: auto;
    cursor: pointer;

    mask-image: linear-gradient(
        90deg,
        black 0%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        180deg,
        black 0%,
        transparent 80%
    );
}

.video--notplaying:after {
    content: '';
    display: block;
    position: absolute;
    width: 7rem;
    height: 7rem;
    margin-top: -2.5rem;
    background: url('../images/play.png');
    background-size: cover;
    pointer-events: none;
    transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
    /* transform-origin: center; */
}

.video--notplaying:hover:after {
    transform: scale(1.2);
}

.video--notplaying .video-player {
}

.video--notplaying .video-player::after {
    content: "Click to play";
    display: block;
    text-align: center;
    color: rgba(0, 0, 0, 0.7);
    font-size: 18px;
}

.video--playing .video-player {
    width: 100%;
    height: auto;
}

.video-player {
    display: block;
    width: 100%;
    height: auto;
    border: none;
    /*border: solid 4px var(--darkblue);*/
    border-radius: var(--radius);
}

.video-player:fullscreen {
    border: none;
    border-radius: none;
}

.autoplay-video {
    position: relative;
    display: block;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: var(--radius);
}

.video--autoplay {
    margin-top: 4.5rem;
    gap: .75rem;
}

/* accordion */

.block.accordion {
    /* outline: solid 1px red; */
    max-width: 900px;
    justify-self: center;
    margin: 2.6rem 20px;
    color: var(--darkblue);
    font-size: 1rem;
}

.accordion-item:not(:last-of-type) {
    /* outline: solid 1px blue; */
    border-bottom: solid 1px var(--lightblue);
}

.accordion-item-summary {
    /* outline: solid 1px green; */
    padding: 1.3em 0;
    font-weight: bold;
    display: flex;
    width: 100%;
    line-height: 1.3;
    cursor: pointer;
}

.accordion-item-summary:hover {
    opacity: .8;
}

.accordion-item-summary:after {
    content: '+';
    display: block;
    margin-left: auto;
    font-size: 2rem;
    line-height: 1.3rem;
    font-weight: normal;
}

.accordion-item-details {
    /* outline: solid 1px yellow; */
    /* padding-bottom: 1.3em; */

    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.accordion-item--expanded .accordion-item-details {
    max-height: 500px; /* Large enough value to fit most content */
    /* padding-bottom: 1.3em; */
}

.accordion-item-summary:after {
    content: '+';
    display: block;
    margin-left: auto;
    font-size: 2rem;
    line-height: 1.3rem;
    font-weight: normal;
    /* transition: transform 0.3s .1s cubic-bezier(0.16, 1, 0.3, 1); */
    transition: transform 0.3s .1s ease-out;
    transform-origin: center;
    height: 1.3rem;
}

.accordion-item--expanded .accordion-item-summary:after {
    /* content: '−'; */
    transform: rotate(45deg);
}

.accordion-item p {
    width: calc(100% - 20px);
    max-width: 75ch;
}

.section--dark .accordion {
    color: #fff;
    opacity: .9;
    /* color: var(--lightblue); */
}

.section--dark .accordion-item:not(:last-of-type) {
    border-bottom: solid 1px var(--middleblue);
}

/* accordion dark section */




  



/* footer */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: .9rem;
}

.footer .container {
    border-top: solid 1px #ccc;
    display: flex;
    padding: 1.6rem 0 2.4rem 0;
}

.footer .container > div {
}

.footer .container > div+div {
    margin-left: auto;
}

.footer a {
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}




@media (max-width: 1200px) {
    html {
        font-size: 16px;
    }
}

@media (max-width: 1000px) {
    .numbers > div {
        flex: 1 1 calc(50% - 10px);
    }

    .cards {
        flex-direction: column;
    }

    .floatingheader-hamburger {
        display: block;
        position: relative;
        left: -1rem;
        top: -.1rem;
    }

    .floatingheader {
        max-width: calc(100% - 30px);
        width: calc(100% - 30px);
        max-height: 2000px;
    }

    .floatingheader-logo {
        margin-left: .8rem;
    }

    .floatingheader-logo a div {
        font-size: 1.2rem;
    }

    .header {
        display: none;
    }
    
    .floatingheader {
        transform: translateX(-50%) translateY(3.8rem);
    }

    .floatingheader .floatingheader-menu {
        order: 3;
        width: 100%;
        transition: all .3s cubic-bezier(0.16, 1, 0.3, 1);
        max-height: 0px;
        overflow: hidden;
        opacity: 0;
        display: block;
    }

    .floatingheader-menu a:hover, .floatingheader-menu li.current a {
        border-bottom: none;
        text-decoration: underline;
    }
    
    .floatingheader--expanded .floatingheader-menu {
        opacity: 1;
        height: auto;
        max-height: 500px;
        overflow: visible;

        border-top: solid 1px var(--lightblue);
    }

    .floatingheader--expanded .floatingheader-hamburger span {
        display: none;
    }
    
    .floatingheader--expanded .floatingheader-hamburger span+span {
        display: block;
    }
    
    .floatingheader--expanded {
        max-height: 500px;
        padding-bottom: 1.3rem;
    }
    
    .floatingheader .container {
        flex-wrap: wrap;
    }

    .floatingheader .floatingheader-menu-pages {
        display: block;
        margin-top: 1.5rem;
        margin-bottom: 2rem;
        /* font-size: 4rem; */
        font-size: 2.5rem;
        line-height: 1;
        height: auto;
        opacity: 1;
        width: 100%;
    }
    
    .floatingheader .floatingheader-menu-pages li {
    }
    
    .floatingheader .floatingheader-menu-pages li a {
        padding-left: 2.4rem;
    }
    
    .floatingheader .floatingheader-menu-languages {
        margin-left: 2.8em;
        margin-left: 2em;
        font-size: 1.2rem;
    }
    
    .floatingheader--expanded .floatingheader-menu-languages svg {
        /* position: static; */
        position: relative;
        bottom: -.2rem;
    }

    .floatingheader a::after {
        display: none;
    }

    .numbers > div {
        border: none;
    }

    .numbers .number {
        margin-top: .25em;
    }

    .headline h2 {
        font-size: 2.3rem;
        line-height: 1.1;

        background: none;
        background-clip: initial;
        -webkit-text-fill-color: initial;
        color: var(--middleblue);
    }

    .section--dark .headline h2 {
        color: #fff;
        color: var(--lightblue);
        color: #fff;
        background: none;
        background-clip: initial;
        -webkit-text-fill-color: initial;
    }

    .section--fiftyfifty {
        background-position: top center;
    }

    .section--fiftyfifty:after, .section--fiftyfifty:has(.container-half--left):after {
        background: linear-gradient(180deg, transparent 30%, var(--body) 50%);
    }
    
    .section--fiftyfifty.section--dark:after, .section--fiftyfifty.section--dark:has(.container-half--left):after {
        background: linear-gradient(180deg, transparent 30%, #000 50%);
    }

    .container-half {
        width: 100%;
        margin-top: 20rem;
    }
}

@media (max-width: 600px) {
    html {
        font-size: 14px;
    }

    .container {
        margin-left: 10px;
        margin-right: 10px;
    }
}