/**
*
*  c1b
*  display headline with big letters
*
**/

/*======= 320  padding l,r  15  = 290 ===*/

.c1b {
    text-align: center;
    margin-bottom: 2em;
}


.c1b.bottomLine {
    border-bottom: 1px solid var(--blue);
}


.c1b h2 {
    margin-top: 0;
    font-size: 2em;
    width: 80%;
    margin-bottom: 0;
    line-height: 1.6em;
}

.c1b .quotes {
    font-family: 'ralewayVar', Arial, Helvetica, sans-serif;
    color: var(--blue);
    font-size: 5em;
    /*put it full to the bottom*/
    line-height: 1em;
}


.c1b .mainBox {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    /* ensure children stretch to same height */

    padding-bottom: 2em;
}

/* Make each direct child a column flex and allow it to grow to the row height */
.c1b .mainBox>* {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-height: 0;
    /* prevent inner centering from inherited text-align */
    align-items: stretch; /* default horizontal stretch */
}

/* first column: bottom-right */
.c1b .mainBox>.lead {
    justify-content: flex-end; /* vertical bottom */
    align-items: flex-end;     /* horizontal right */
    text-align: right;         /* fallback for inline children */
}

/* if inner element has explicit width (e.g. h2 width:80%), push that element itself */
.c1b .mainBox>.lead > * {
    align-self: flex-end; /* ensure inner block is placed to the right */
    /*push front quote under font line - middle of the font*/
     margin-bottom: -9px;
}

/* keep middle width as before */
.c1b .mainBox>.middle {
    justify-content: flex-start;
    flex: 0 0 80%;
    max-width: 80%;
    align-items: flex-start;
    /*text-align: left;*/
}

/* last column top-left */
.c1b .mainBox > .end {
    justify-content: flex-start; /* vertical: top */
    align-items: flex-start;     /* horizontal alignment of children: left */
    text-align: left;            /* fallback for inline text */
}

/* ensure direct children of .end don't get centered by width or margins */
.c1b .mainBox > .end > * {
    align-self: flex-start;
    /*first quote to the real top*/
    margin-top: -23px;
    margin-left: 0px;
    width: auto; /* allow full available width if needed */
}

/* if headings were globally constrained (h2 { width:80% }), override for .end */
.c1b .mainBox > .end h2 {
    width: 100%;
    text-align: left;
}

/* push inner content to bottom when needed (fallback) */
.c1b .mainBox .lead>* {
    margin-top: auto;
}

/* pushes inner content to bottom */
.c1b .mainBox .middle>* {
    margin-top: 0;
}








/*======= 576 ========= MEDIA QUERIES ======= border 15 = 546 ===*/

@media only screen and (min-width: 576px) {}

/*======= 768 ========= MEDIA QUERIES ======= border 15 = 738 ===*/

@media only screen and (min-width: 768px) {
    .c1b h2 {
        font-size: 3em;
    }
}

/*======= 990 ======== MEDIA QUERIES ======== border 15 = 960 ===*/

@media only screen and (min-width: 990px) {
        .c1b h2 {
        font-size: 3.5em;
    }
}

/*======= 1398 ======= MEDIA QUERIES ======== border 30 = 1338 ==*/

@media only screen and (min-width: 1398px) {}

/*======= 2512 ======= MEDIA QUERIES ==== border 151-45 = 2396 ==*/

@media only screen and (min-width: 2512px) {}

/*END-c1b*/