
/* eyecatcher container */
.eyecatcher {
    display: flex;
    flex-direction: row;
    margin: 3vw 0px;
}

.eyecatcher > * {
    /*border: 1px solid grey;*/
}


/* quotation marks */
.eyecatcher .quotationmark {
    flex: 1;
}

    .eyecatcher .quotationmark img {
        width: 4vw;
    }

    .eyecatcher .quotationmark:last-of-type {
        display: flex;
        align-items: flex-end;
        justify-content: right;
    }

/* eyecatcher content */
.eyecatcher .quote {
    flex: 12;
    font-size: 2.5vw;
}

    .eyecatcher .quote p {
        width: fit-content;
        margin: 0px auto;
    }
