/**
*
*  c21
*  container and flexible amount of cards
*  each card with left image right text
*
**/

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

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

.c21.bottomLine {
    border-bottom: 1px solid var(--fontDarkBlue);
}

.c21 .top-article {
    margin-bottom: 2em;
}

.c21 .top-article h2 {
font-size: 2.5em;
margin-bottom: 0;
}

.c21 .top-article h3 {
    margin-top: 0;
    margin-bottom: 1.5em;
}

.c21 .card {
    margin-bottom: 3.5em;
}

.c21 .card img {
    margin-bottom: 0.5em;
}


.c21 .card p,
.c21 .card h4 {
    text-align: left;
}


.c21 .textarea h3 {
    font-size: 1.6em;
    margin-bottom: 0.2em;
}

.c21 .textarea h4 {
    font-size: 1em;
    margin-top: 0;
    margin-bottom: 1.2em;
}

/*style the lists*/
.c21 ul {
    list-style: none;
    margin: 0 0 1em 0;
    padding: 0;
    text-align: left;
}

.c21 ul li {
    position: relative;
    padding-left: 1em;
}

.c21 ul li::before {
    content: ">";
    position: absolute;
    left: 0;
}

/*end list*/



/*======= 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) {

.c21 {
    text-align: left;
}


.c21 .card {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.c21 figure {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(33.3333% - 40px);
}

.c21 .textarea {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: calc(66.6666% - 40px);
}



}


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

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

/*======= 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-c40*/