.grey-background {
    background-color: #eaeaea;
}

.white-background {
    background-color: white;
}

.spacer-side-flexbox {
    display: flex;
    color: #333333;
}

.spacer-sides {
    flex: 1;
}

.text-banner-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    height: 200px;
    flex: 12;
    max-width: 2000px;
}

.text-banner-headline {
    flex: 2;
    margin-right: 5vw;
    text-align: end;
    font-size: 2.2rem;
}

.text-banner-text {
    flex: 3;
    margin-left: 5vw;
    text-align: justify;
    font-size: 1rem;
    font-weight: 300;
}


.text-container {
    flex: 1.2;
    text-align: justify;
    font-weight: 400;

    display: flex;
    flex-direction: column;

    padding-top: 20px;
}

h2 {
    font-size: 1.6rem;
    margin: 0.9rem 0;
}

.line-height-increase {
    line-height: 1.7rem;
}

.font-weight-bold {
    font-weight: bold;
}

/* Tablet */
@media (max-width: 69em) {
    .text-banner-wrapper {
        height: 15vw;
        min-height: 120px;
    }

    .text-container {
        flex: 6;
    }
}

/* Phone */
@media (max-width: 45em) {
    .text-banner-wrapper {
        height: 12vw;
        min-height: 80px;
    }

    .text-banner-headline {
        flex: 1;
        /* text-align: center; */
        font-size: 1.6rem;
    }

    .text-banner-text {
        flex: 1;
        text-align: center;
        font-size: 0.9rem;
    }
    
    h2 {
        font-size: 1.2rem;
        margin: 0.5rem 0;
    }
}