/**
 * All sections
 */

.front-page section {
    padding: 50px 20px;
}
.front-page section .section-header {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    text-align: center;
}
.front-page section .section-header h1 {
    font-size: 2em;
    color: var(--color-secondary);
}
.front-page section .section-content {
    display: flex;
    flex-wrap: wrap;
    margin: -20px;
    justify-content: center;
}
.front-page section .section-content > * {
    margin: 20px;
}



/**
 * News section
 */

.front-page section.news {
    display: flex;
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.front-page section.news .parallax-background {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom: 2px solid var(--color-primary-light);
}

.front-page section.news .section-header h1 {
    margin: 0;
}

.front-page section.losung {
    padding-top: 100px;
    text-align: center;
    background-color: rgba(0,0,0,.4);
    background: linear-gradient(0deg, rgba(0,0,0,.9) 0%, rgba(0,0,0,0) 100%);
}
.front-page section.losung * {
    color: white !important;
}
.front-page section.losung h1 {
    font-size: .9em;
}

.front-page section.losung article {
    font-size: 1.3em;
    font-weight: bolder;
    line-height: 1.2;
    max-width: 750px;
}

.front-page section.losung article > * {
    margin: 0;
}

@media screen and (min-width: 769px) {
    .front-page section.losung {
        font-size: 1.8em;
    }
}

