﻿:root {
    --colorWhite: #FFF;
    --colorBlack: #010626;
    --colorDarkBlue: #060D43;
    --colorLightBlue: #0B688C;
    --colorSand: #BFB3A8;
    --colorSandLight: #ECE8E5;
    --colorOrange: #D06643;
}

html {
    position: relative;
    min-height: 100%;
}

html {
    color: var(--colorWhite);
    font-family: SohneBuch;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    background: var(--colorDarkBlue);
    height: 100%;
}

@media (min-width: 768px) {
    html {
    }
}

body {
    margin: 0px;
    overflow-x: hidden;
    height: 100%;
}

#contentBg1 {
    position: absolute;
    width: 1312px;
    height: 1275px;
    flex-shrink: 0;
    border-radius: 1312px;
    opacity: 0.7;
    background: var(--colorOrange);
    filter: blur(254.5px);
    left: calc((100%/2) + 300px);
    top: -400px;
}

#contentBg2 {
    position: absolute;
    width: 1298px;
    height: 1260px;
    flex-shrink: 0;
    border-radius: 1298px;
    opacity: 0.9;
    background: var(--colorLightBlue);
    filter: blur(273.5px);
    left: calc((100%/2) - 800px);
    top: 200px;
}

#logo {
    width: 141px;
    height: 43px;
    margin: auto;
    margin-top: 48px;
}


.content {
    position: relative;
    max-width: 1296px;
    margin: auto;
padding: 20px;
}

.text {
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%; /* 25.2px */
}

.textSmall {
    color: var(--colorDarkBlue);
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%; /* 19.2px */
}

.subHeadline {
    font-size: 16px;
    text-align: center;
    width: 100%;
    line-height: 140%; /* 88px */
    text-align: center;
    margin: auto;
}

.headline {
    text-align: center;
    font-family: SometimesTimesMedium;
    font-size: 80px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 88px */
    width: 100%;
    text-align: center;
    margin: auto;
}

.headlineSmall {
    font-family: SometimesTimesMedium;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%;
    width: 100%;
    margin: auto;
}

.infoBoxWrapper {
    width: 1054px;
    margin: auto;
}

.infoBoxItem {
    float: left;
    width: 527px;
    height: 527px;
    line-height: 140%;
    background-size: contain;
    border-radius: 20px;
}

.input {
    width: 400px;
    font-size: 18px;
    font-family: SohneBuch;
    border: 0px;
    background-color: var(--colorSandLight);
    color: var(--colorDarkBlue);
}

a {
    text-decoration: underline;
    color: var(--colorWhite);
}

input:focus {
    outline: none;
}

::placeholder {
    color: var(--colorDarkBlue);
    opacity: 1; /* Firefox */
}

.inputAlert::placeholder {
    color: var(--colorOrange);
}

/* Text Overlay */

.text {
    display: none;
}

#textBgWrapper {
    left: 0px;
    position: fixed;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

#textBg {
    position: absolute;
    width: 1102px;
    height: 1070px;
    flex-shrink: 0;
    border-radius: 1102px;
    background: var(--colorLightBlue);
    filter: blur(273.5px);
    top: 100px;
    right: -500px;
}

#textLeft {
    position: fixed;
    width: 50%;
    height: 100%;
    background: var(--colorDarkBlue);
}

#textRight {
    position: fixed;
    left: 50%;
    width: 50%;
    height: 100%;
    background: var(--colorSandLight);
}

#textContent {
    position: relative;
    max-width: 1296px;
    min-width: 1054px;
    height: 100%;
    margin: auto;
    background: var(--colorSandLight);
}

#textContentLeft {
    position: absolute;
    width: 300px;
    height: 100%;
    top: 0px;
    background: var(--colorDarkBlue);
}

#textContentRight {
    position: absolute;
    left: 300px;
    top: 0px;
    width: 996px;
    height: 100%;
    background: var(--colorSandLight);
    color: var(--colorDarkBlue);
}

#textContentRight2 {
    position: fixed;
    left: calc(50% - 348px);
    top: 0px;
    width: 996px;
    height: 100%;
    background: var(--colorSandLight);
    color: var(--colorDarkBlue);
}

.textSubHeadline {
    font-size: 24px;
    font-family: SohneKraftig;
    width: 100%;
    margin-top: 20px;
    margin-bottom: 20px;
}

.textHeadline {
    font-family: SometimesTimesMedium;
    font-size: 64px;
    font-style: normal;
    font-weight: 500;
    line-height: 110%; /* 88px */
    width: 100%;
    margin: auto;
    margin-bottom: 40px;
}


.button {
    background-color: #FFF;
    color: #000;
    padding: 10px;
    width: 140px;
    text-align: center;
    cursor: pointer;
    border-radius: 10px;
}

    .button:hover {
        background-color: #0B688C;
    }