/* ====================================================

  #FLEX         DRY: don't repeat yourself
  #SECTION
  #ALPHA
  #BETA
  #CARD 3

===================================================== */

/* #SECTION */

.section_flex {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: stretch;
    border-radius: 10px;
    border: dotted 0px #00c;
    /* background-color: #fde; */
}

.section_flex>* { 
    flex: 1 1 100%; 
    padding: 1rem;
}


/* =================================
   #SECTION Media Queries (mobile first)
================================= */

@media only screen and (min-width:700px) and (max-width:1000px) {
    .section_flex {
        flex-direction: row;
        padding: 100px 0;
        border: dotted 0px #096;
    }

    .section_flex .section_name {
        text-align: right;
    }
}

@media only screen and (min-width:1000px) {

    .section_flex {
        flex-direction: row;
        border: dotted 0px #fc0;
    }

    .section_flex .section_name {
        text-align: right;
    }
}


/* #ALPHA */

.alpha {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.alpha .item {
    flex: 1 1 350px;
}

/* #BETA */

.flex_beta {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 2rem;
}

.flex_beta .item {
    flex: 1 1 300px;
    padding: 1rem;
}

/* #CARD 3 */

.card_3_container {
    width: 100%;
    max-width: 1240px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 3rem;
    border: dotted 0px #f00;
}

.card_3_container .card_3 {
    flex: 1 1 220px;
    padding: 2rem;
    text-align: center;
    background-color: #fff;
    border: dotted 0px #f39;
    border-radius: 10px;
    box-shadow: 2px 5px 10px #abaaaa;
}
.card_3_container .card_4 {
    flex: 1 1 220px;
    padding: 2rem;
    text-align: center;
    background-color: #fff;
    border: dotted 4px #f39;
    border-radius: 10px;
    box-shadow: 2px 5px 10px #abaaaa;
}


.card_3_frosted {
    flex: 1 1 220px;
    padding: 2rem;
    text-align: left;
    min-height: 420px;
    background-color: rgba(255, 255, 255,.2);
    background-color: rgba(25, 15, 125,.25);
    border: dotted 0px #62d;
    border-radius: 10px;
    box-shadow: 2px 5px 10px #138;
    backdrop-filter: blur(12px);
}


.card_4_frosted {
    flex: 1 1 220px;
    padding: 2rem;
    text-align: left;
    /* min-height: 320px; */
    background-color: rgba(255, 255, 255,.2);
    /* background-color: rgba(25, 15, 125,.25); */
    border: dotted 0px #62d;
    border-radius: 10px;
    box-shadow: 2px 5px 10px #138;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 2rem;
    gap: 1rem;
}

.card_4_frosted >* {
    border: dotted 0px rgb(255, 255, 255);

}

.card_3 h4 {
    padding: 1rem 0;
    color: var(--accent-color);
}

.card_3 p {
    padding: 1rem 0;
    text-align: left;
    font-size: 1rem;
    color: #666;
}

.card_3 div {
    padding: 4rem 0 1rem;
    text-align: center;
    font-size: 1rem;
    color: #666;
    border: dashed 0px #f39;
}

.container_flex {
    display: flex;
    flex-direction: column-reverse;
    gap: 3rem;
    border-radius: 10px;
    border: dotted 0px #f0f;
}

.container_flex>* {
    border-radius: 10px;
    padding: 0;
    flex-grow: 1;
    border: dotted 0px #f00;
}

@media only screen and (min-width:800px) {

    .container_flex {
        flex-direction: row;
        padding: 2rem;
    }
}

.flex_2_col>* {
    flex: 1 0 50%;
    padding: 2rem;
}

.flex_3_col>* {
    flex: 1 0 33.3333%;
    padding: 2rem;
}