html, body {
    margin-top: 0px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
}

a {
    color: #0055c1;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: #c50000ff;
}

header {
    height: 1000px;    
    width: 100%;
    background-image: url('../images/header.png');
    background-position: center;
}

header .headline-wrapper {
    float: left;
    margin-top: 200px;
    margin-left: 55%; 
}

.mobile-header-image, .mobile-header-image-wrapper, .header-confession-for-mobile {
    display: none;
}

.intro p {
    font-size: 32px;
    text-align: center;
}

section {
    padding: 40px 20%;
}

.section-blue {
    background-color: #f3f7f9;
}

.section-blue.mid {
    box-shadow: 
        inset 0px 11px 10px -10px rgba(186, 200, 208, 0.45),
        inset 0px -11px 10px -10px rgba(186, 200, 208, 0.45);
}

.section-blue.bottom {
    text-align: center;
    box-shadow: 
        inset 0px 11px 10px -10px rgba(186, 200, 208, 0.45);
}

.column3-container {
    display: flex;
}

.column3 {
    padding: 0 20px 0 0;
    flex: 1 1 0px;
}

.diagram-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
}

.diagram-box {
    padding: 20px 10px;
    width: 25%;
    text-align: center;
    vertical-align: middle;
    border-radius: 5px;
    background: rgba(255, 255, 255, 1);
    box-shadow: 4px 4px 10px 0px rgba(186, 200, 208, 0.45640106201171876);
}

.diagram-arrow {
    width: 5%;
    background-image: url('../images/diagram-next-arrow.svg');
    background-repeat: no-repeat;
    background-position: center;
}

.diagram-linebreak-arrow-1 {
    height: 50px;
    width: 32px;
    margin: 10px 0;
    background-image: url('../images/diagram-linebreak-arrow-1.svg');
    background-repeat: no-repeat;
}

.diagram-linebreak-arrow-middle {
    height: 50px;
    width: 60%;
    margin: 10px 0;
    background-image: url('../images/diagram-linebreak-arrow-middle.svg');
    background-repeat: repeat-x;
}

.diagram-linebreak-arrow-2 {
    height: 50px;
    width: 32px;
    margin: 10px 0;
    background-image: url('../images/diagram-linebreak-arrow-2.svg');
    background-repeat: no-repeat;
}

ol {
    padding-inline-start: 30px;
}

li {
    padding-bottom: 15px;
}

.yellow-box {
    background-color: #ffdc00;
    box-shadow: 4px 4px 20px 0px rgba(255, 191, 0, 0.31890106201171875);
    padding: 5px 20px;
}

footer {
    color: rgba(105, 132, 160, 1);
    background-color: #f3f7f9;
    height: 50px;
    padding: 10px 0 20px 0;
    text-decoration: none;
    text-align: center;
}

ul {
    margin: 0;
    padding: 0 0 0 40px;
}

nav {
    padding: 20px;
    text-align: right;
}

nav ul li {
    display: inline;
    margin: 10px;
}

h1 {
    font-family: 'Roboto';
    font-style: normal;
    font-size: 55px;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    text-transform: none;
}

.title-hl {
    background-image: url('../images/title-hl.svg');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 0 0.2em;
}

.required {
    padding-left: 3px;
    color: red;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 2%;
    border-radius: 5px;
    background-color: #343a42;
    color: white;
    padding: 0 50px 20px 50px;
    margin-bottom: 20px;
    opacity: 0.95;
    width: 96%;
    text-align: center;
    display: none;
}

.cookie-banner h2 {
    margin-bottom: 0;
}

.cookie-banner p {
    margin-top: 7px;
}

.cookie-banner a {
    color: white;
    text-decoration: underline;
}



@media (max-width: 980px) {

    header {
        height: auto;
        background-image: linear-gradient(to right top, rgba(125, 171, 205, 1) 0%,rgba(227, 253, 255, 1) 100%);
    }

    nav {
        display: none;
    }

    header .headline-wrapper {
        margin-top: 5%;
        margin-left: 5%; 
    }

    header h1 {
        margin-bottom: 0;
    }
    
    .header-logo {
        width: 70%;
    }

    .mobile-header-image {
        display: block;
    }
    
    .mobile-header-image-wrapper {
        display: block;
        box-shadow: inset 0px -11px 10px -10px rgba(186, 200, 208, 0.45); 
    }

    .header-confession-for-desktop {
        display: none;    
    }

    .header-confession-for-mobile {
        display: block;
        padding-bottom: 10px;
    }

    h1 {
        font-size: 35px;
    }

    .intro p {
        font-size: 22px;
        text-align: left;
    }

    .column3-container {
        flex-wrap: wrap;
    }

    .column3 {
        padding: 20px 20px 0 0;
    }

    section {
        padding: 20px 7%;
    }

    footer {
        height: 70px;
        padding: 10px 7% 70px 7%;
    }

    .mobile-hidden {
        display: none;
    }
        
    .diagram-row {
        flex-wrap: wrap;
        align-items: self-start;
    }

    .diagram-box {
        padding: 20px 10px;
        margin-bottom: 10px;
        width: 100%;
        text-align: left;
        vertical-align: middle;
    }
}