@supports (interpolate-size: allow-keywords) {
    :root {
        interpolate-size: allow-keywords;
    }
}
*, *::before, *::after {
    box-sizing: border-box;
    text-wrap: balance;
}
body {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    background-color: #3C99D8;
    --radius: max(10px, calc(8px + 1vw));
    --gutter: calc(6px + 2vw);
    --big-gutter: calc(18px + 2vw);
}
@media screen and (orientation: landscape) {
    body {
        --gutter: calc(18px + .5vw);
        --radius: max(10px, calc(4px + .5vw));
    }
}
a {
    text-decoration: none;
}
ol, ul, li {
    margin: 0;
    padding: 0;
}
h2 {
    margin: var(--big-gutter) 0;
}
nav ul {
    list-style-type: none;
}
header {
    position: absolute;
    z-index: 3;
    width: 100%;
}

@media screen and (orientation: portrait) {
    header {
        display: flex;
        justify-content: center;
        align-items: center;
        transition: margin .25s linear;
    }
}

.fullscreen {
    height: 100dvh;
    overflow: hidden;
    position: relative;
}
.fullscreen > video {
    width: 100%;
    height: 100%;
    background-color: white;
}
@media screen and (orientation: landscape) {
    .fullscreen, .fullscreen > video {
        /* min-height: 100dvh;
        height: unset;
        overflow: hidden;
        position: relative; */
    }
}

.card {
    border-radius: var(--radius);
    overflow: hidden;
}
.card--top {
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}
.card--bottom {
    border-radius: 0 0 var(--radius) var(--radius);
    overflow: hidden;
}
.background--gradient {
    background: var(--background--gradient_first-color);
    background: linear-gradient(180deg, var(--background--gradient_first-color) 20%, var(--background--gradient_second-color) 80%);
}
.background--gradient.orangered {
    --background--gradient_first-color : #FFAE00;
    --background--gradient_second-color : #BD1515;
}
.background--gradient.green {
    --background--gradient_first-color : #B4CD6F;
    --background--gradient_second-color : #005118;
}
.background--gradient.blue {
    --background--gradient_first-color : #A3D3FD;
    --background--gradient_second-color : #1B5E9E;
}
.background--gradient.reverseblue {
    --background--gradient_first-color : #1B5E9E;
    --background--gradient_second-color : #A3D3FD;
}

#catchphrase {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: var(--radius);
    height: calc(100dvh + var(--radius));
}
#catchphrase > video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #3C99D8;;
}
#catchphrase p {
    z-index: 2;
    font-size: calc(94px + 2vw);
    line-height: 1.1em;
    font-style: italic;
    font-weight: 900;
    color: white;
    text-align: center;
    padding: var(--gutter);
    padding-top: 20vw;
}
@media screen and (orientation: landscape) {
    #catchphrase p {
        font-size: calc(144px + .5vw);
        padding-top: var(--gutter);
    }
}

#manifesto {
    font-size: calc(20px + 2vw);
    line-height: 1.1em;
    font-style: italic;
    font-weight: 900;
    color: white;
    text-align: center;
    --margin-overlap : 100dvh;
    padding: calc(var(--big-gutter) + var(--margin-overlap)) calc(var(--big-gutter));
    margin: calc(-1 * var(--margin-overlap)) 0;
    background: linear-gradient(180deg, #3C99D8 0%, #94C6FF 50%, #BDEBFF 73%, #FFFFFF 100%);
}
#manifesto p {
    margin: calc(2 * var(--big-gutter)) 0;
}
#manifesto p.source {
    margin: calc(-1 * var(--big-gutter)) 0;
    font-size: calc(0px + 2vw);
    line-height: 1.1em;
    font-style: italic;
    font-weight: 400;
}
#manifesto p:last-of-type {
    margin: calc(3 * var(--big-gutter)) 0;
}
#manifesto a {
    color: inherit;
    text-decoration: underline;
}
#manifesto b {
    font-size: calc(22px + 2vw);
    color: #007ACD;
}
#manifesto ul {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0;
}
#manifesto ul li {
    list-style: none;
    background-color: rgba(255, 255, 255, .5);
    border-radius: var(--radius);
    font-size: calc(16px + 2vw);
    color: #007ACD;
    
    padding: var(--gutter) var(--big-gutter);
    margin-bottom: var(--big-gutter);
}
@media screen and (orientation: landscape) {
    #manifesto {
        padding: var(--big-gutter);
        --margin-overlap: var(--radius);
        font-size: calc(40px + .5vw);
    }
    #manifesto > * {
        padding: 0 var(--big-gutter);
    }
    #manifesto p {
        margin: calc(var(--big-gutter)) 0;
    }
    #manifesto b {
        font-size: calc(40px + .5vw);
    }
    #manifesto p.source {
        margin: 0;
        font-size: calc(2px + .5vw);
    }
    #manifesto ul li {
        margin-bottom: calc(var(--gutter) / 2);
        font-size: calc(16px + .5vw);
        padding: calc(var(--gutter) / 4) var(--gutter);
    }
    #manifesto p:last-of-type {
        margin: calc(2 * var(--big-gutter)) 0;
    }
}

.sticky_scroll {
    position: sticky;
    margin-bottom: 75px;
    --sticky-gap: 20px;
}
@media screen and (orientation: landscape) {
    .sticky_scroll {
    }
}
.sticky_scroll:nth-of-type(1) {
    top: calc(0 * var(--sticky-gap));
}
.sticky_scroll:nth-of-type(2).fullscreen {
    padding-bottom: calc(var(--big-gutter) + 0 * var(--sticky-gap));
}

.sticky_scroll:nth-of-type(2) {
    top: calc(1 * var(--sticky-gap));
}
.sticky_scroll:nth-of-type(2).fullscreen {
    padding-bottom: calc(var(--big-gutter) + 1 * var(--sticky-gap));
}
.sticky_scroll:nth-of-type(3) {
    top: calc(2 * var(--sticky-gap));
}
.sticky_scroll:nth-of-type(3).fullscreen {
    padding-bottom: calc(var(--big-gutter) + 2 * var(--sticky-gap));
}
.sticky_scroll.ghost {
    height: 100px;
    margin: 0;
}
section:has(.slideshow--story) {
    padding-bottom: 1000px;
    margin-bottom: -1000px;
}
.slideshow--story {
    padding: var(--big-gutter);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: clamp(10px, 3dvh, 30px);
}
.slideshow--story_mask {
    position: relative;
    flex-shrink: 1;
    /* no grow to keep aspect ratio
    flex-grow: 1; */
    aspect-ratio: 9 / 16;
    max-width: 100%;
    display: flex;
    flex-direction: row;
        cursor: pointer;

}
.slideshow--story_mask::before,
.slideshow--story_mask::after {
    content: "";
    display: block;
    height: 4px;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, .2);
    z-index: 2;
}
.slideshow--story_mask::after {
    background-color: white;
    right: calc(100% - var(--progress));
}
.slideshow--story_mask video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
    margin-right: -100%;
    transform: translateX(105%);
    transition: transform .5s linear;
    z-index: 0;
}
.slideshow--story_mask video.urge {
    transition: transform 0s linear;
}
.slideshow--story_mask video.active {
    transform: translateX(0%);
    z-index: 1;
}
.slideshow--story_mask video.inactive {
    transform: translateX(0%);
    z-index: 0;
}
.slideshow--story_mask .sondOffIcon,
.slideshow--story_mask .sondOnIcon {
    position: absolute;
    bottom: 18px;
    right: 10px;
    z-index: 3;
    background-color: rgba(255, 255, 255, .2);
    border-radius: 100%;
    aspect-ratio: 1;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.slideshow--story_mask .sondOffIcon svg,
.slideshow--story_mask .sondOnIcon svg {
    fill: white;
    width: 20px;
    height: 20px;
}
.slideshow--story_mask:has(video[muted="true"]) .sondOffIcon
{
    display: flex;
}
.slideshow--story_mask:has(video[muted="false"]) .sondOffIcon
{
    display: none;
}
.slideshow--story_mask:has(video[muted="false"]) .sondOnIcon
{
    display: flex;
}
.slideshow--story_mask:has(video[muted="true"]) .sondOnIcon
{
    display: none;
}
@media screen and (orientation: landscape) {
    section:has(.slideshow--story) {
        background-color: white;
    }
    .slideshow--story {
        width: 60vw;
        margin-left: auto;
        margin-right: auto;
        border-radius: 0;
    }
    .slideshow--story_mask::before,
    .slideshow--story_mask::after {
        height: 5px;
    }
    .sticky_scroll.fullscreen {
        padding-top: calc(var(--big-gutter) + 20px);
    }
    .sticky_scroll.ghost {
        height: 100px;
    }
}
#facts h2 {
    margin: 0;
    padding: 0 var(--big-gutter) calc(2 * var(--big-gutter));
    font-size: calc(20px + 2vw);
    line-height: 1.1em;
    font-style: italic;
    font-weight: 900;
    color: #007ACD;
}
@media screen and (orientation: landscape) {
    #facts {
        margin-top: var(--big-gutter);
    }
    #facts h2 {
        font-size: calc(43px + .5vw);
        text-align: center;
        padding: 0 var(--big-gutter) calc(1.5 * var(--big-gutter));
    }
}
.facts_control {
    display: flex;
    flex-direction: row;
    gap: var(--gutter);
    justify-content: center;
    padding: 0 var(--big-gutter) calc(1.5 * var(--big-gutter));
    
} 
.facts_control_button.active {
    cursor: pointer;
} 
.facts_control_button.active circle {
    fill: #007ACD;
} 
.facts_control_button.active path {
    stroke: white;
} 
@media screen and (orientation: portrait) {
    .facts_control {
        display: none;
    }
}
.slideshow--cards {
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    justify-content: space-around;
    gap: var(--gutter);
    overflow-x: scroll;
}
.slideshow--cards__card {
    flex-wrap: nowrap;
    flex-shrink: 0;
    width: 80vw;
    padding: var(--big-gutter);
    border-radius: calc(var(--radius) / 3 * 2);
    overflow: hidden;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    gap: var(--big-gutter);
    align-items: center;
    background: linear-gradient(180deg, #97C1E9 0%, #1B5E9E 100%);
}
.slideshow--cards__card.smalltext {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
}
.slideshow--cards__card:first-of-type {
    margin-left: var(--big-gutter);
}
.slideshow--cards__card:last-of-type {
    margin-right: var(--big-gutter);
}
.slideshow--cards__card p {
    font-size: calc(20px + 2vw);
    line-height: 1.1em;
    font-weight: 900;
    color: white;
    margin: 0;
}
.slideshow--cards__card.smalltext p {
    font-size: calc(14px + 2vw);
}
.slideshow--cards__card b {
    font-size: calc(52px + 2vw);
    line-height: 1em;
    display: block;
    margin: var(--gutter) 0;
}
.slideshow--cards__card a {
    background-color: white;
    color: #007ACD;
    padding: 5px 15px;
    border-radius: 30px;
    font-size: calc(8.5px + 2vw);
    font-style: italic;
    font-weight: 700;
    margin-top: auto;
}
@media screen and (orientation: landscape) {
    .slideshow--cards__card {
        width: 31vw;
        padding: var(--big-gutter) var(--gutter);
        gap: var(--gutter);
    }
    .slideshow--cards__card p {
        font-size: calc(26px + .5vw);
    }
    .slideshow--cards__card.smalltext p {
        font-size: calc(18px + .5vw);
    }
    .slideshow--cards__card b {
        font-size: calc(52px + .5vw);
        margin-top: 0;
    }
    .slideshow--cards__card a {
        font-size: calc(12px + .5vw);
    }
}
#faq {
    --margin-overlap: 100dvh;
    margin-top: calc(-1 * var(--margin-overlap));
    padding-top: var(--margin-overlap);
    background: linear-gradient(0deg, #3C99D8 15%, #94C6FF 46%, #BDEBFF 69%, #FFFFFF 78%);
    
}
#faq h2 {
    padding: var(--big-gutter);
    font-size: calc(20px + 2vw);
    line-height: 1.1em;
    font-style: italic;
    font-weight: 900;
    color: #007ACD;
}
@media screen and (orientation: landscape) {
    #faq {
        --margin-overlap: 10dvh;
    }
    #faq h2 {
        font-size: calc(43px + .5vw);
        text-align: center;
    }
}
.question {
    background-color: rgba(255, 255, 255, .5);
    padding: calc(var(--big-gutter) / 2);
    position: relative;
    margin: calc(var(--gutter) / 2) calc(var(--big-gutter) / 2);
}
.question .openclose {
    position: absolute;
    right: var(--gutter);
    top: calc(50% - 10px);
    cursor: pointer;
}
.question.open .openclose {
    position: absolute;
    right: var(--gutter);
    top: var(--gutter);
    cursor: pointer;
}
.question h3 {
    font-size: calc(18px + 2vw);
    font-style: italic;
    font-weight: 900;
    color: #007ACD;
    margin: 0;
    width: 80%;
    cursor: pointer;
}
.question p {
    font-size: calc(8px + 2vw);
    font-weight: 400;
    color: black;
    
    transition: opacity 0 linear;
    margin: 0;
    height: 0;
    opacity: 0;
}
.question.open p {
    transition: opacity .25s linear .1s;
    margin-top: var(--gutter);
    height: auto;
    opacity: 1;
}
@supports (interpolate-size: allow-keywords) {
    .question p {
        transition: height .25s linear .1s, opacity .25s linear, margin .25s linear .1s;
        margin: 0;
        height: 0;
        opacity: 0;
    }
    
    .question.open p {
        transition: height .25s linear, opacity .25s linear .1s, margin .25s linear;
        -moz-transition: none;
        margin-top: var(--gutter);
        height: auto;
        opacity: 1;
    }
}

.question p a {
    color: inherit;
    text-decoration: underline;
}
.question p b {
    text-transform: uppercase;
}
.question p sup {
    font-size: calc(2px + 2vw);
}
.question p small {
    display: block;
    font-size: calc(0px + 2vw);
}
.question p small:first-of-type {
    margin-top: 2em;
}
.question .open,
.question .close {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1;
}
.question:not(.open) .close {
    display: none;
}
.question.open .open {
    display: none;
}
@media screen and (orientation: landscape) {
    .question {
        margin: calc(var(--gutter) / 2) var(--big-gutter);
        padding: calc(var(--gutter) / 2) var(--gutter);
    }
    .question h3 {
        font-size: calc(20px + .5vw);
    }
    .question p {
        font-size: calc(10px + .5vw);
    }
    .question p sup {
        font-size: calc(4px + .5vw);
    }
    .question p small {
        display: block;
        font-size: calc(2px + .5vw);
    }
}
footer .headline {
    line-height: 1.1em;
    color: white;
    text-align: center;
    padding: calc(2 * var(--big-gutter)) var(--big-gutter);
}
footer .headline {
    font-size: calc(18px + 2vw);
    font-style: italic;
    font-weight: 900;
}
footer .rounded {
    background-color: white;
    border-radius: 12vw 12vw 0 0;
}
footer .rounded a {
    display: block;
    width: 28.8vw;
    margin: auto;
}
footer .rounded > a img {
    width: 100%;
    height: auto;
}
footer .rounded nav ul {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
    padding-bottom: var(--gutter);
    max-width: 800px;
    margin: auto;
}
footer .rounded nav ul li {
    width: 30%;
    flex-grow: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .rounded nav a {
    font-family: "Inter", sans-serif;
    font-size: calc(4px + 2vw);
    font-weight: 400;
    color: #6AB0EC;
}
@media screen and (orientation: landscape) {
    footer .headline {
        font-size: calc(20px + .5vw);
        padding-bottom: var(--gutter);
    }
    footer .rounded > a {
        height: 146px;
        width: fit-content;
    }
    footer .rounded a img {
        width: auto;
        height: 100%;
    }
    footer .rounded nav a {
        font-size: calc(6px + .5vw);
    }
}