@charset "utf-8";

:root {
    --brand-dark: #343338;
    --brand-bright: #f7f7f7;
    --brand-white: #fff;
    --brand-grey: #6E6D72;
    --brand-grey-light: #A5ABAF;;
    --brand-green-dark: 56, 125,140;
    --brand-green-light: 125, 184, 194;

    /*--font-content: "Montserrat", "Helvetica Neue", Helvetica, sans-serif;*/
    --font-content: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;
    --font-title: "Open Sans", "Helvetica Neue", Helvetica, sans-serif;

    --title-color: #000;

    --swiper-pagination-color: #fff;
    --swiper-pagination-bullet-inactive-color: #000;

    --font-size-max: clamp(32px,7vw, 68px);
    --font-size-large: clamp(30px, 6vw, 60px);
    --font-size-medium: clamp(24px, 4vw, 40px);
    --font-size-mediumsmall: clamp(18px, 3vw, 26px);
    --font-size-small: clamp(16px, 3vw, 18px);
    --font-size-tiny: clamp(16px, 3vw, 20px);
    --font-size-text: 16px;

    --nav-bar-height: 64px;
}
@media (min-width: 568px) {
    :root {
        --nav-bar-height: 105px;
    }
}
@media (min-width: 768px) {
    :root {
        --nav-bar-height: 72px;
        --font-size-text: 18px;
    }
}



* {
    box-sizing: border-box;
}
html {
    font-family: var(--font-content);
    font-size: var(--font-size-text);
}
body {
    padding: 0;
    margin: 0;
    font-weight: 400;
    font-size: var(--font-size-text);
    color: var(--brand-grey);
    line-height: 1.6;
}

img, video {
    display: block;
    max-width: 100%;
}
img[height],
video[height] {
    height: auto;
}
p {
    margin-top: 0;
    margin-bottom: 1em;
}
a {
    color: inherit;
}

video::cue {
    background: rgba(0,0,0,0.8);
    color: #fff;
    line-height: 1.5;
    font-family: var(--font-content);
}

.text-gradient {
    background: linear-gradient(265deg, #387D8C -10%, rgba(126, 183, 193, 0.83) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1,h2,h3,h4,h5 {
    font-family: var(--font-title);
    font-weight: 700;
    line-height: 1.4;
    margin: 1em 0;
    text-rendering: optimizeLegibility;
    font-kerning: normal;
    color: var(--title-color);
}

main, article, section, header, footer {
    display: block;
}
strong {
    font-weight: 600;
}


.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    color: #343338;
    z-index: 100;
    font-size: 18px;
    line-height: 1;
    background: #fff;
    box-shadow: 0 0 0 rgba(0,0,0,0);
    transition: box-shadow .3s;
}
.main-header.--detached {
    box-shadow: 0 0 20px rgba(0,0,0,0.2);
}
.main-header .logo-symbol, .main-header .logo-text {
    fill: #000 !important;
}
@media (max-width: 374px) {
    .main-header {
        font-size: 0.8rem;
    }
}
.main-header__wrap {
    padding: 20px 10px 14px 10px;
    max-width: 1220px;
    margin: 0 auto;
    position: relative;
}
.main-header__home {
    display: block;
    max-width: 190px;
    margin: 0 auto 24px;
}
.main-header__nav {
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.5;
    font-weight: 400;
}
.main-header__social {
    width: 50px;
    display: none;
}
.main-nav-toggle {
    display: block;
    width: 44px;
    height: 44px;
    background: transparent url('/images/icons/nav-toggle.svg') no-repeat 50% 50%;
    border: 0 none;
    font-size: 0;
    color: transparent;
    cursor: pointer;
}
.nav {
    padding: 0 10px;
}
.nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
}
.nav__item {
    display: block;
}
.nav__link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: 0;
    margin: 0;
    line-height: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.main-header__nav .nav__link:hover,
.main-header__nav .nav__link:focus,
.main-header__nav .nav__link--active {
    box-shadow: 0 1px 0 0 currentColor;
}
@media (max-width: 567px) {
    .main-header__nav {
        position: fixed;
        right: 0;
        top: 80px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        min-width: 200px;
        transform: translate(110%, 0);
        transition: transform .2s ease-in;
        will-change: transform;
    }
    .main-header__nav.--is-active {
        transform: translate(0, 0);
        transition-timing-function: ease-out;
    }
    .nav {
        background: #fff;
    }
    .nav__list {
    }
    .nav__link {
        margin: 1rem 0;
    }
    .main-header__wrap {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 44px;
        box-sizing: content-box;
        padding: 10px 10px;
    }
    .main-header__home {
        margin: 0;
    }
    .main-header__home img,
    .main-header__home svg {
        width: 100%;
        height: 29px;
        display: block;
    }
}
@media (min-width: 375px) {
    .main-header__nav {
        font-size: inherit;
    }
}
@media (min-width: 568px) {
    .main-nav-toggle {
        display: none;
    }
    .nav {
        padding: 0;
    }
    .nav__list {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        justify-content: space-between;
        width: 100%;
    }
    .main-header__nav {
        flex: 0 3 560px;
        max-width: 560px;
    }
}
@media (min-width: 768px) {
    .main-header {
    }
    .main-header__wrap {
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        padding: 24px 10px;
    }
    .main-header__home {
        flex: 0 1 270px;
        margin: 0 40px 0 0;
    }
    .main-header__nav {
        margin: 0;
    }
    .main-header__social {
        display: block;
        margin-left: 20px;
    }
}
@media (min-width: 900px) {
    .main-header {
        font-size: 1rem;
        padding-bottom: 2px;
        -webkit-font-smoothing: antialiased;
    }
    .main-header__nav {
        margin-left: calc(100vw - 900px);
        flex: 0 3 620px;
        max-width: 620px;
    }
}
@media (min-width: 1220px) {
    .main-header__nav {
        margin-left: 280px;
    }
}

/*
.main-content {
    padding-top: 64px;
}
@media (min-width: 768px) {
    .main-content {
        padding-top: 50px;
    }
}
@media (min-width: 900px) {
    .main-content {
        padding-top: 74px;
    }
}
*/
.main-content > .content-section:first-child {
    padding-top: var(--nav-bar-height);
}



.content-section {
    position: relative;
}
.content-section--dark {
    background: #000;
    color: #fff;
}
.content-section--gray {
    background: var(--brand-bright);
}
.content-section--dark h2 {
    color: #fff;
}
.content-section__wrap {
    position: relative;
    padding: 24px 10px;
    max-width: 1220px;
    margin: 0 auto;
}
.content-section__wrap > .headline:first-child {
    margin-top: 0;
}
.content-section__wrap.--joinbottom {
    padding-bottom: 0;
}
.content-section__wrap.--jointop {
    padding-top: 0;
}
.content-section__wrap.--narrow {
    max-width: 760px;
}
.content-section__wrap.--wide {
    max-width: 1440px;
    padding-left: 0;
    padding-right: 0;
}
.content-section__teasertext {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
}
@media (min-width: 768px) {
    .content-section__wrap {
        padding: 48px 10px;
    }
}


.content-section--mission .content-section__wrap {
    padding-top: 40vw;
}
.mission-box {
    background: #fff;
    box-shadow: 0 10px 20px rgba(0,0,0,0.10), 0 6px 6px rgba(0,0,0,0.12);
    padding: 20px;
    hyphens: auto;
}




.main-footer {
    font-size: 1rem;
}
.main-footer__wrap {
    margin: 0 auto;
    max-width: 1220px;
    padding: 4rem 10px 2rem;
    text-align: center;
}
.main-footer__wrap .__logo {
    margin: 0 auto 2em;
}
.main-footer__wrap p {
    max-width: 500px;
    margin: 0 auto;
}


@media (min-width: 568px) {
    .two-column,
    .three-column,
    .four-column {
        display: grid;
        grid-column-gap: clamp(40px, 10vw, 60px);
        grid-template-columns: 1fr 1fr;
        padding: 0;
    }
}
@media (min-width: 1020px) {
    .three-column {
        grid-template-columns: 1fr 1fr 1fr;
    }
    .four-column {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}



.social-list {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
}
.social-list--footer {
    width: 50px;
}
.social-list li {
    display: block;
}
.social-list a {
    display: block;
}



@media (max-width: 767px) {
    #content .content-section__wrap {
        padding: 12px 10px;
    }
}


.contact-button {
    text-decoration: none;
    margin: 0 auto;
    display: block;
    max-width: 440px;
    text-align: center;
    font-size: 1.5rem;
    padding: 48px 40px;
}
@media (min-width: 768px) {
    .contact-button {
        font-size: 2rem;
    }
}

.banners--cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.banners--cookie.is-hidden {
    display: none;
}
.banner {
    background: var(--brand-bright);
    padding: 15px 70px 15px 15px;
    position: relative;
    font-size: 1rem;
    box-shadow: 0 0 4px rgba(0,0,0,0.3);
}
.banners--cookie .banner__close {
    background: var(--brand-dark);
    padding: 4px 10px;
    border-radius: 4px;

    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0, -50%);
    font-size: 0.875rem;
    line-height: 20px;
    min-width: 20px;
    min-height: 20px;
    text-align: center;
    text-decoration: none;
    color: #fff;
}
.banner p {
    margin: 0;
}





.image-teaser {
    max-height: 100vw;
    height: 600px;
    overflow: hidden;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    position: relative;
    background-color: #eee;
    background-size: cover;
}
@media (min-width: 768px) {
    .image-teaser {
        max-height: 56vw;
    }
}
.image-teaser video {
    position: absolute;
    z-index: -1;
    top: 0;
    left: -2px;
    width: calc(100% + 4px);
    background: #000;
    height: 100%;
    object-fit: cover;
}
.image-teaser .__icon {
    max-width: 10vw;
}
.image-teaser h1 {
    color: #fff;
    text-shadow: 0 0 10px rgba(0,0,0,0.3);
    font-weight: 700;
    font-size: 4vw;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0 10px;
    text-align: center;
    line-height: 1.4;
    max-width: 1080px;
    position: relative;
    z-index: 2;
    width: 90vw;
}
.image-teaser img + h1 {
    margin-top: 0;
}
@media (max-width: 1200px) {
    .image-teaser h1 {
        font-size: 48px;
    }
}
@media (max-width: 768px) {
    .image-teaser h1 {
        font-size: 28px;
    }
}
@media (min-width: 1920px) {
    .image-teaser h1 {
        font-size: 76px;
    }
}
.image-teaser img {
    width: 100%;
}


abbr {
    text-decoration: none;
    cursor: help;
}



.buttons {
    text-align: center;
    margin: 24px auto 0;
}
.buttons.--center {
    display: flex;
    justify-content: center;
}
.buttons.--left {
    display: flex;
}
.buttons.--left .cta__button {
    margin: 0;
}

.cta__button,
.focus-application__back {
    color: #fff;
    background: var(--brand-dark);
    padding: 12px 20px;
    display: block;
    margin: 0 auto;
    border: 0 none;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1rem;
    width: 320px;
    text-align: center;
}
.cta__button.--small {
    padding: 6px 20px;
    font-size: 0.8rem;
    width: auto;
}
.cta__button:hover,
.cta__button:focus {
    background: #000;
}
@media (max-width: 767px) {
    .cta__button {
        width: auto;
    }
}


.cta__button {
    background: linear-gradient(180deg, rgb(var(--brand-green-light)) -41.91%, #FFFFFF 246.32%);
    border-radius: 8px;
    padding: 18px 32px;
    color: #fff;
    font-family: var(--font-title);
    font-weight: 600;
    font-size: 16px;
    line-height: 32px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: flex;
    white-space: nowrap;
    width: fit-content;
    align-items: center;
}
.cta__button::after {
    content: "";
    background: url('/images/icons/cta-arrow.svg') no-repeat 50% 50%;
    display: inline-block;
    width: 24px;
    height: 31px;
    margin-left: 20px;
}
.cta__button.--small::after {
    width: 12px;
    height: 16px;
    background-size: 100% auto;
}








.faq {

}
.faq .__item {
    margin-bottom: 2em;
}
.faq .__question {
    text-align: inherit;
    margin: 0 0 0.5em 0;
}
@media (min-width: 768px) {
    .faq {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-column-gap: 40px;
    }
}






@media (min-width: 768px) {
    .text-teaser {
        font-size: 1.2rem;
        line-height: 1.5;
    }
}
.text-teaser .__icon {
    margin: 0 auto;
}
.text-teaser h2 {
    margin: 2rem auto 2rem;
}
.text-teaser a {
    text-decoration: none;
    font-weight: 600;
}
.text-teaser a:hover,
.text-teaser a:focus {
    text-decoration: underline;
}

.rocket-mission {
    max-height: 150px;
    margin: 0 auto;
}
.text-teaser p {
    text-align: left;
}
@media (min-width: 768px) {
    .text-teaser p {
        text-align: justify;
        text-justify: inter-word;
        hyphens: manual;
        hyphenate-limit-chars: 6 3 3;
        hyphenate-limit-lines: 2;
        hyphenate-limit-last: always;
        hyphenate-limit-zone: 8%;
    }
}
@media (max-width: 767px) {
    .text-teaser .__icon {
        width: 80px;
        height: auto;
    }
}



.headline {
    color: var(--title-color);
    text-transform: uppercase;
}
.headline.--casesensitive {
    text-transform: none;
}
.headline.--large {
    font-size: var(--font-size-large);
    line-height: 1;
    margin-bottom: 0.5em;
}
.headline.--medium,
.medium-headline {
    line-height: 1.25;
    font-size: var(--font-size-medium);
    margin-bottom: 0.5em;
}
.headline.--small {
    font-size: var(--font-size-small);
}
.headline strong {
    font-weight: inherit;
    background: linear-gradient(265deg, #387D8C -10%, rgba(126, 183, 193, 0.83) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
hgroup p,
hgroup .kicker {
    text-transform: uppercase;
    font-size: var(--font-size-small);
    font-weight: 700;
    color: var(--brand-grey);
    margin: 0;
}
hgroup p + .headline,
hgroup .kicker + .headline {
    margin-top: 0;
}

.page-title {
    font-size: var(--font-size-max);
    line-height: 1;
    text-transform: uppercase;
    margin-top: 0;
    color: var(--title-color);
    margin-bottom: 0.5em;
}






@media print {
    .main-header {
        position: relative;
        box-shadow: none;
    }
    .main-footer {
        display: none;
    }

    .intro .__video {
        display: none;
    }

}


.full-width-image {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}




.pull-up-content .content-section__wrap {
    background-color: #fff;
    box-shadow: 0px 4px 30px 20px rgba(78, 74, 73, 0.13);
    margin-top: -10vw;
    padding: 48px clamp(20px, 2vw, 60px);
}



.click-blocker {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 199;
}
