@charset "UTF-8";

:root {
    --color-black: #555555; /*#111111;*/
    --color-grey: #C7CACC;
    --color-grey-light: #ECF0F4;
    --color-red: #F58220;
    --color-blue: #1F82C0;
    --color-blue-light: #39C1CD;
    --color-blue-dark: #008598;
    --color-blue-darker: #005B7F;
    --color-disabled: #C7CACC;
    --color-investor: #1c3f52;
    --color-gruender: #179c7d;
    --color-startup: #a6bbc9;
    --color-startup-bg: #F2F8FF;
    --color-industrie: #fdb913;
    --color-berater: #7c154d;
    --layout-width: 1430px;
    --layout-width-small: 1024px;
    --layout-width-profile: 650px;
    --layout-padding: 60px;
    --fx-speed: 0.2s;
    --marker-size: 40px;
}

* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    outline: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    line-height: 2.3rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: Frutiger55Roman, Arial, Helvetica, sans-serif;;
    color: var(--color-black);
    width: 100%;
    overflow-x: hidden;
}

body.background {
    background-image: url('/_assets/img/bg_header.png');
    background-position: left top;
    background-size: 1920px 1202px;
    background-repeat: no-repeat;
}

.centered {
    text-align: center;
}

p,
.panel__text p {
    margin-bottom: 2.3rem;
}

p:last-child,
.panel__text p:last-child {
    margin-bottom: 0;
}

h2 {
    margin-bottom: 2rem;
    font-weight: normal;
}

h3 {
    margin-bottom: 2rem;
    font-weight: normal;
}

.text a {
    color: var(--color-blue);
}

.text ul {
    padding-left: 1.4rem;
    margin-bottom: 2.3rem;
}

.text ol {
    padding-left: 1.7rem;
    margin-bottom: 2.3rem;
}

.text ul li,
.text ol li {
    margin-bottom: 1rem;
}

.text ul li:last-child,
.text ol li:last-child {
    margin-bottom: 0;
}

ul:last-child,
ol:last-child {
    margin-bottom: 0;
}


/* BUTTONS */
.button {
    border: none;
    background-color: var(--color-red);
    text-transform: uppercase;
    padding: 15px 30px 15px 30px;
    color: white;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: all var(--fx-speed) ease-in-out;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-family: Frutiger55Roman, Arial, Helvetica, sans-serif;
    line-height: 2.1rem;
}

.button:hover {
    background-color: white;
    color: var(--color-red);
}

.button_light {
    background: none;
    border: 1px solid #ffffff;
}

.button_light__blue {
    background: none;
    border: 1px solid var(--color-blue);
    color: var(--color-blue);
    padding: 10px 30px 10px 30px;
}

.button_light__blue:hover {
    border: 1px solid var(--color-red);
    color: var(--color-red);
}

/* HEADER */
.header {
    display: flex;
    /*z-index: 1;*/
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    flex-flow: column;
}

.header__logo {
    margin-left: var(--layout-padding);
    flex: 1;
    z-index: 100;
    max-width: 338px;
    position: relative;
}

.header__logo_container {
    display: flex;
    margin-left: var(--layout-padding);
    max-width: 338px;
    flex: 1;
    flex-flow: column;
    gap: 1rem;
}

.header__logo_container .header__logo {
    margin: 0;
}

.header__logo_newsletter_wrapper {
    display: flex;
    flex-flow: column;
    gap: 1rem;
}

.header__logo_newsletter_wrapper .header__logo {
    display: block;
}

.header__logo_wrapper {
    background: #ffffff;
    padding: 2rem;
    display: flex;
    justify-content: center;
    max-height: 100px;
}

.header__logo_beta {
    position: absolute;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--color-blue);
    left: 40px;
    top: 16px;
    font-size: 14px;
    font-weight: bold;
}

.header__logo img {
    width: 100%;
}

.header__logo_wrapper img {
    object-fit: contain;
}

#dev_notice {
    display: flex;
    flex-flow: column;
    gap: .25rem;
    align-items: center;
    justify-content: center;
    background: var(--color-red);
    color: #ffffff;
}

#dev_notice svg {
    height: 30px;
    width: 30px;
    fill: #ffffff;
}

.header__buttons {
    margin-left: auto;
    display: flex;
    position: fixed;
    right: 0;
    z-index: 100;
}

.show-slideout .header__button--voting {
    display: none;
}

.header__button {
    transition: all var(--fx-speed) ease-in-out;
    background-color: white;
    width: 100px;
    height: 100px;
    border: none;
    cursor: pointer;
    flex: 0 0 auto;
    margin-left: 9px;
    font-size: 1.6rem;
    font-family: Frutiger55Roman, Arial, Helvetica, sans-serif;
}

.header__button:last-child {
    margin-left: 9px;
    z-index: 100;
}

.header__button img {
    width: 100%;
    height: 100%;
}

.header__button--nav {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__button--nav svg {
    width: 23px;
    height: 27px;
    fill: #111111;
}

.header__button_small {
    height: 50px;
    width: 50px;
    transition: all var(--fx-speed) ease-in-out;
}

a.header__button_small svg {
    width: 17px;
    height: 16px;
    fill: #000000;
    transition: all var(--fx-speed) ease-in-out;
}

.header__button_back {
    padding: 0 1.5rem;
    display: flex;
    gap: .5rem;
    align-items: center;
    font-weight: bold;
    height: 50px;
    transition: all var(--fx-speed) ease-in-out;
    background-color: white;
    border: none;
    cursor: pointer;
    flex: 0 0 auto;
    margin-left: 9px;
    font-size: 1.5rem;
    text-decoration: none;
    color: var(--color-black);
}

.header__button_back svg {
    fill: var(--color-black);
    height: 13px;
    width: 20px;
    transition: all var(--fx-speed) ease-in-out;
}

.header__buttons.colored .header__button,
.header__buttons.colored .header__button_back {
    background-color: var(--color-blue);
    color: #ffffff;
}

.header__buttons.colored .header__button svg,
.header__buttons.colored .header__button_back svg {
    fill: #ffffff;
}


/* SLIDEOUT */
.slideout {
    position: fixed;
    right: 0;
    top: 0;
    width: 368px;
    display: none;
    flex-direction: column;
    z-index: 50;
    height: 85vh;
}

.slideout.show {
    display: flex;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.3));

}

.slideout__navigation {
    padding-top: 140px;
    background-color: white;
    overflow: auto;
    flex: 1;
    z-index: 1;
}

.slideout__meta {
    /* background-image: url('../img/bg_navigation.png');
    background-position: left top; */
    height: 163px;
    width: 100%;
    margin-top: auto;
    position: relative;
    flex: 0 0 163px;
    overflow: hidden;
}

.slideout__meta::after {
    background-color: white;
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    top: -330px;
    right: -800px;
    transform-origin: 50% 0;
    transform: rotate(45deg);
    z-index: -1;
}

/* NAVIGATIONS */
.nav--top {
    background-color: white;
}

.nav--top .nav__list {
    list-style: none;
    padding: 0;
}

.nav--top .nav__item {
    display: block;
    position: relative;
}

.nav--top .nav__link {
    border-top: 1px solid var(--color-grey);
    padding: 10px 55px;
    display: block;
    text-decoration: none;
    color: var(--color-blue);
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    position: relative;
}

.nav--top .nav__item:last-child .nav__link {
    border-bottom: 1px solid var(--color-grey);
}

.nav--top .nav__link svg {
    display: none;
    width: 19px;
    height: 14px;
    position: absolute;
    left: 25px;
}

.nav--top .nav__link.active svg {
    display: block;
    fill: var(--color-blue);
}

.nav--top .nav__link:hover {
    color: white;
    background-color: var(--color-blue);
}

.nav--top .nav__link:hover svg {
    fill: white;
}

.nav--top .nav__item:last-child .nav__link {
    border-top: 1px solid var(--color-grey);
}

.nav--top .nav__item--disabled span {
    color: var(--color-grey);
}

.nav--top .nav__item--disabled:hover .cta {
    display: block;
}

.nav--top .nav__item--disabled:hover .nav__link {
    background-color: white;
    color: var(--color-grey);
}

.nav--meta .nav__list {
    list-style: none;
    padding: 0;
    position: absolute;
    right: 30px;
    bottom: 60px;
    text-align: right;
}

.nav--meta .nav__item {
    display: block;
    margin-bottom: 1rem;
}

.nav--meta .nav__link {
    display: block;
}

.nav--meta .nav__item:last-child {
    margin-bottom: 0;
}

.nav--meta .nav__link {
    color: black;
    font-size: 1.6rem;
}

.nav--footer .nav__list {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 15px 45px;
    flex-wrap: wrap;
}

.nav--footer .nav__item {
    display: inline-block;
}

.nav--footer .nav__link {
    color: white;
    text-decoration: none;
    font-size: 1.6rem;
    text-transform: uppercase;
}

/* FOOTER */
.footer {
    background-color: var(--color-blue);
    padding: 3.5rem 100px;
    color: white;
    display: flex;
    gap: 45px;
    margin-top: auto;
    z-index: 1;
}

.footer__support__label {
    font-size: 2.4rem;
}

.footer__support__link {
    margin-left: 35px;
    display: inline-flex;
    align-items: center;
    color: white;
    text-decoration: none;
}

.footer__support__link svg {
    width: 19px;
    height: 14px;
    margin-right: 8px;
    fill: white;
}

.footer__navigation {
    margin-left: auto;
}

/* MAIN  */
.main {
    padding-bottom: 400px;
}

.main--background-bottom {
    background-image: url('/_assets/img/bg_bottom2x.jpg');
    background-position: bottom right;
    background-repeat: no-repeat;
    background-size: auto 400px;
}

main img {
    width: 100%;
    height: auto;
    display: block;
}

/* CONTAINER */
.container {
    max-width: calc(var(--layout-width) + (var(--layout-padding) * 2));
    padding-left: var(--layout-padding);
    padding-right: var(--layout-padding);
    margin: 0 auto;
}


.container--small {
    max-width: calc(var(--layout-width-small) + (var(--layout-padding) * 2));
}

/* INTRO */
.intro__wrapper {
    max-width: calc(var(--layout-width-small) + (var(--layout-padding) * 2));
}

.intro__topline {
    font-weight: bold;
    color: #ffffff;
}

.intro__headline {
    color: white;
    font-size: 4rem;
    font-weight: normal;
    margin-bottom: 2.3rem;
    line-height: initial;
}

.intro__text {
    color: white;
}

.intro__text a {
    color: white;
}

/* MOOD */
.mood {
    background-image: url('/_assets/img/bg_modal2x.jpg');
    background-size: cover;
    padding-bottom: 5rem;
}

.mood__container {
    display: flex;
    overflow: hidden;
    margin-bottom: 5rem;
}

.mood__image {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 437px;
}

.start_ups .mood__image {
    height: 436px;
}

.mood__image img {
    object-fit: cover;
}

.mood__illustration {
    flex: 0 0 630px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.mood__illustration__background {
    background-color: #b3d3e3;
    flex: 0 0 276px;
}

.mood__illustration img {
    width: 823px;
    position: absolute;
    bottom: 0;
    right: 0;
    transform: translate(37px, 71px);
}

/* CTA */
.cta_area {
    color: #ffffff;
    padding: 5rem 0;
    background-color: var(--color-blue);
}

.cta_area .intro__wrapper {
    border: 1px solid #ffffff;
    padding: 3rem;
}


/* LIVE */
.livestream_area {
    color: #ffffff;
    padding: 5rem 0;
    background-color: var(--color-blue-darker);
}

.livestream__wrapper {
    display: flex;
    flex-flow: column nowrap;
    gap: 4rem;
}

.live {
    display: flex;
}

.live__video {
    flex: 1;
    background-color: black;
    display: flex;
    align-items: center;
    /*height: 648px;*/
}

.live__video a {
    width: 100%;
    height: 100%;
    display: block;
}

.live__video img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.live__chat {
    flex: 0 0 386px;
}

.live__container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* VIDEO  */
.video__container {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
}

.video__container img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.video {
    width: 100%;
    height: 100%;
    display: block;
}

.teams__headline_wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.teams__headline_wrapper h2 {
    margin-bottom: 0;
}

.teams__headline_wrapper svg {
    width: 58px;
    height: 54px;
}

.teams__text {
    margin-bottom: 2.3rem;
}

/* CONTENT ROWS */
.content_rows {
    display: flex;
    flex-flow: column nowrap;
}

.row {
    width: 100%;
}

.row h2,
.row h3 {
    color: var(--color-blue);
    line-height: initial;
}

.row_wrapper {
    max-width: calc(var(--layout-width) + (var(--layout-padding) * 2));
    padding-left: var(--layout-padding);
    padding-right: var(--layout-padding);
    margin: 0 auto;
}

.row_container {
    padding: 7rem 0 0 0;
}

.row:nth-child(odd) .row_container {
    border-left: 1px solid var(--color-grey);
}

.row:nth-child(even) .row_container {
    border-right: 1px solid var(--color-grey);
}

.row__content_wrapper {
    display: flex;
    width: 100%;
    border-style: solid;
    border-color: var(--color-grey);
}

.row:nth-child(odd) .row__content_wrapper {
    border-width: 1px 1px 1px 0;
}

.row:nth-child(even) .row__content_wrapper {
    border-width: 1px 0 1px 1px;
}

.row__content_text {
    padding: 5rem;
    min-height: 280px;
    flex: 1 1 auto;
}

.row__content_text .text {
    margin-bottom: 2.3rem;
    max-width: calc(var(--layout-width-small) + (var(--layout-padding) * 2));
}

.row__content_img_wrapper {
    max-width: 465px;
    width: 100%;
    background-position: center center;
    flex: 1 0 auto;
}

.row:nth-child(even) .row__content_text {
    order: 1;
}

.row:nth-child(even) .row__content_img_wrapper {
    order: 0;
}

.row__content_img {
    height: 100%;
    width: 100%;
    display: block;
    background-size: cover;
}

.row__content_btn {
    font-family: Frutiger55Roman, Arial, Helvetica, sans-serif;
    color: var(--color-blue);
    font-size: 1.8rem;
    line-height: 2.5rem;
    cursor: pointer;
    display: inline-flex;
    gap: 1rem;
    text-decoration: none;
    transition: all var(--fx-speed) ease-in-out;
}

.row__content_btn:hover {
    color: var(--color-red);
}

.row__content_btn svg {
    height: 23px;
    width: 12px;
    fill: var(--color-blue);
    transition: fill var(--fx-speed) ease-in-out;
}

.row__content_btn:hover svg {
    fill: var(--color-red);
}

.row__content_btn.open svg {
    transform: rotate(90deg);
}

.row__content_btn_close,
.row__content_btn.open .row__content_btn_open {
    display: none;
}

.row__content_btn.open .row__content_btn_close {
    display: block;
}

.row__tab_wrapper {
    min-height: 7rem;
    border-bottom: 1px solid var(--color-grey);
}

.row__tab_wrapper .row__tab_elem {
    display: none;
    padding: 5rem;
}

.row__tab_wrapper .row__tab_elem.no_padding_vertical {
    padding: 5rem 0;
}

/* ELEMENT */
.element__content_wrapper {
    max-width: calc(var(--layout-width-small) + (var(--layout-padding) * 2));
}

.elem_agenda,
.elem_teams,
.elem_downloads {
    display: flex;
    flex-flow: column nowrap;
    gap: 4rem;
}

.elem__agenda_headline_wrapper {
    font-size: 2rem;
    line-height: initial;
    color: var(--color-blue);
    display: flex;
    gap: 1rem 3rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.elem__teams_headline_wrapper,
.elem__speaker_headline_wrapper,
.elem__downloads_headline_wrapper {
    font-size: 2rem;
    line-height: initial;
    color: var(--color-blue);
    margin-bottom: 1rem;
}

.elem__teams_item,
.elem__downloads_item {
    display: flex;
    justify-content: space-between;
    gap: 10rem;
}

.elem__teams_content {
    width: 100%;
    max-width: 1010px;
}

.elem__teams_profil_link {
    margin-top: .5rem;
    display: inline-block;
    transition: all var(--fx-speed) ease-in-out;
}

.elem__teams_profil_link:hover {
    color: var(--color-red);
}

.elem__teams_image {
    display: flex;
    justify-content: center;
    width: 100%;
    max-width: 220px;
}

.elem__teams_image img {
    max-width: 100%;
    height: auto;
    width: auto;
    max-height: 120px;
}

.elem_speaker {
    display: flex;
    flex-wrap: wrap;
    gap: 5rem;
}

.elem__speaker_item {
    max-width: 300px;
    width: 100%;
    text-decoration: none;
    color: var(--color-black);
    transition: all var(--fx-speed) ease-in-out;
}

.elem__speaker_image {
    margin-bottom: 1.5rem;
    aspect-ratio: 4/3;
    background-color: var(--color-grey);
}

a.elem__speaker_item:hover {
    opacity: .75;
}

.participant_item {
    width: 100%;
    text-decoration: none;
}

.participant_preview {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8rem;
    padding: 2rem 2rem 2rem 1rem;
    border-bottom: 1px solid var(--color-grey);
    cursor: pointer;
}

.participant_preview:hover {
    background: #F2F8FF;
}

.participant_preview__left {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.participant_preview__name,
.participant_preview__company {
    line-height: 2.8rem;
    color: var(--color-blue-darker);
}

.participant_preview__right {
    max-width: 40%;
}

.participant_preview__company {
    text-align: right;
    hyphens: auto;
}

.participant_preview__profession {
    color: #ffffff;
    padding: 8px 20px;
    transform: skew(-20deg);
}

.participant_preview__profession_wrapper {
    transform: skew(20deg);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.participant_preview__profession.investor {
    background: var(--color-investor);
    border-color: var(--color-investor);
}

.participant_preview__profession.gruender {
    background: var(--color-gruender);
    border-color: var(--color-gruender);
}

.participant_preview__profession.startup {
    background: var(--color-startup);
    border-color: var(--color-startup);
}

.participant_preview__profession.industrie {
    background: var(--color-industrie);
    border-color: var(--color-industrie);
}

.participant_preview__profession.berater {
    background: var(--color-berater);
    border-color: var(--color-berater);
}


/* MODAL */
.modal {
    background-image: url('/_assets/img/bg_modal2x.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    padding: 60px;
    max-width: 1400px;
    width: 90vw;
    max-height: 600px;
    height: 80vh;
    position: relative;
    color: white;
}

.modal_upload_logo {
    height: auto;
}

.modal__container {
    display: flex;
    overflow: auto;
    height: 100%;
}

.modal__content {
    margin-right: 70px;
    /* overflow: auto; */
}

.modal__headline {
    font-size: 3.6rem;
    line-height: 4.4rem;
}

.modal__headline::after {
    content: '';
    display: block;
    width: 82px;
    height: 8px;
    background-color: white;
    margin-top: 2.5rem;
}

.modal__text {
    margin-top: 3.5rem;
}

.modal__text a {
    color: #ffffff;
}

.modal__image {
    flex: 0 0 465px;
}

.modal__image img {
    width: 100%;
}

.modal--lookbook {
    padding: 0;
    max-width: none;
    width: auto;
    max-height: none;
    height: auto;
    width: 100%;
    height: 100%;
    background: none;
}

.modal--lookbook img {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.modal__close {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    right: 20px;
    top: 20px;
}

.modal__close svg {
    width: 32px;
    height: 32px;
    fill: #ffffff;
}

.modal__backdrop {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
    display: none;
    z-index: 1000;
}

.modal__backdrop.show {
    display: flex;
}

.modal__backdrop_cp_overlay .modal {
    max-height: 1000px;
    height: 90vh;
}

.modal__backdrop_cp_overlay .modal__content {
    margin: 0;
    display: flex;
    width: 100%;
}

.modal__backdrop iframe {
    border: none;
    height: 100%;
    width: 100%;
}

.modal__backdrop_translation .modal {
    max-width: 420px;
    max-height: 470px;
}

.modal__backdrop_translation .modal__content {
    margin: 0;
}

.modal__backdrop_translation .lockscreen {
    padding: 2rem 1rem;
    margin-top: 2rem;
}

.modal__backdrop_translation .lockscreen svg {
    width: 70px;
}

.modal__backdrop_translation .button {
    padding: 10px 20px 10px 20px;
}


#google_translate_element {
    margin-top: 2rem;
}

.modal__content_btn_wrapper {
    display: flex;
    gap: 1rem;
    margin-top: 3rem;
}


select {
    width: 100%;
    height: 45px;
    border: none;
    display: block;
    color: black;
    padding: 12px 50px 12px 17px;
    font-weight: bold;
    font-size: 1.6rem;
    margin-bottom: 1rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('/_assets/img/icon_select.svg');
    background-repeat: no-repeat;
    background-position-x: calc(100% - 15px);
    background-position-y: 17px;
    background-color: #ffffff;
}


/*
 * Cookie-Consent – Platzhalter
 *
 *************************************************************************/
#CookiebotWidget :focus-visible,
#CookiebotWidget:not(.CookiebotWidget-open),
.Cookiebotwidget-logo {
    outline: none !important;
}

.lockscreen {
    padding: 4rem 0;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    background-color: var(--color-blue);
}

.lockscreen_wrapper {
    text-align: center;
}

.lockscreen .button {
    display: inline-block;
    margin-top: 2rem;
}

.lockscreen svg {
    fill: #ffffff;
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

@media screen and (max-width: 1190px) {
    .live {
        flex-direction: column;
    }

    .storytile-sites-public-chat-messages {
        height: 350px;
    }
}

@media screen and (max-width: 1050px) {
    .row__content_wrapper {
        flex-flow: column;
    }

    .row__content_img_wrapper {
        max-width: 100%;
        aspect-ratio: 16/9;
        order: 0;
    }

    .row__content_text {
        order: 1;
        min-height: auto;
    }

    .elem__teams_item {
        flex-flow: column;
        gap: 1.5rem;
    }

    .elem__teams_content {
        order: 1;
    }

    .elem__teams_image {
      order:0;
        justify-content: flex-start;
    }
}


@media screen and (max-width: 800px) {
    .header__logo,
    .header__logo_container {
        margin-left: 15px;
    }

    :root {
        --layout-padding: 15px;
    }

    .container,
    .container--wide {
        padding-left: 15px;
        padding-right: 15px;
    }

    .row__tab_wrapper .row__tab_elem,
    .row__content_text {
        padding: 3rem;
    }

    .row__tab_wrapper .row__tab_elem.no_padding_vertical {
        padding: 3rem 0;
    }

    .participant_preview__left {
        flex-flow: column;
        align-items: flex-start;
        gap:0;
    }

    .participant_preview__profession {
        margin-left: 0;
        padding: 4px 20px;
    }

    .participant_preview {
        align-items: flex-start;
    }

    .elem__downloads_item {
        display: flex;
        flex-flow: column;
        gap: 1rem;
    }

    .footer {
        gap: 0;
        flex-direction: column;
        padding: 3.5rem 15px;
    }

    .footer__support {
        margin-bottom: 2rem;
    }

    .footer__navigation {
        margin-left: 0;
    }

}

@media screen and (max-width: 700px) {
    .header__logo {
        max-width: 237px;
    }

    .header__button {
        order: 1;
        margin: 0;
    }

    .header__button_back {
        order: 0;
    }
}

@media screen and (max-width: 600px) {
    .header__buttons {
        flex-flow: column;
        align-items: flex-end;
        gap: 1rem;
    }

    .participant_preview {
        flex-flow: column;
        gap: 1rem;
    }
    .participant_preview__left {
        width: 100%;
    }

    .participant_preview__right {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .header__logo {
        max-width: 190px;
    }

    .intro__headline {
        font-size: 3.5rem;
    }

    .linkback_text_nomobile {
        display: none;
    }
}