/* =========================
   MOBILE VERSION
========================= */

.asacontact {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    line-height: 2.5rem;
    margin-bottom: 4rem;
    box-sizing:border-box;
}

.asacontact h2 {
    margin-left:0;
    margin-right: auto;
}

.asacontact > section:first-of-type {
    width:100%;
    margin: 0 auto;
    display:flex;
    flex-direction: column;
    justify-content: center;
    padding:1.5rem 1rem;
    border: 1px solid #e9e9e9;
    background-color: #f8f8f8;
    border-radius:6px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    box-sizing: border-box;
}

.asacontact > section:first-of-type div {
    padding: 1.2rem 1rem;
}

.asacontact > section:first-of-type div p {
    margin-bottom: 1rem;
}

.asacontact > section:first-of-type div ul {
    list-style-type: disc;
    list-style-position: inside;
    width: fit-content;
}

.asacontact > section:first-of-type img {
    width:18rem;
    height:auto;
}

.asacontact > p {
    text-align: center;
    width:auto;
    margin-top: 5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 1rem;
    border-radius: 6px;
    background-color:rgba(241,90,34, 0.3);
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.asacontact > section:last-of-type {
    display:flex;
    justify-content: space-around;
    align-content:stretch;
    flex-wrap: wrap;
    gap:2rem;
}

.asacontact > section:last-of-type h3 {
    align-self: flex-start;
    width:100%;
}

.asacontact > section:last-of-type article {
    width:14rem;
    align-items:center;
    background-color: #f8f8f8;
    border-radius:6px;
    border: 1px solid #e9e9e9;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
}

.asacontact > section:last-of-type article a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.asacontact > section:last-of-type article img {
    width: 90%;
    height: auto;
    border-radius: 6px;
    margin: 1rem 0;
}

.asacontact > section:last-of-type article h4 {
    text-align: center;
    padding: 0 0.5rem;
}


/* =========================
   TABLET VERSION
========================= */

@media(min-width: 768px) {
    .asacontact > section:first-of-type {
        flex-direction: row;
        justify-content:space-between;
        align-items: center;
    }
}


/* =========================
   DESKTOP VERSION
========================= */

@media(min-width: 1024px) {
    .asacontact {
        width:70%;
    }

    .asacontact > section:first-of-type {
        flex-direction: row;
        justify-content:space-between;
        align-self: center;
    }

    .asacontact > section:last-of-type {
        margin: 2.5rem 0;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(22rem, 1fr));
        column-gap: 3rem;
        width: 100%;
    }

    .asacontact > section:last-of-type h3 {
        grid-column: 1/-1;
    }

    .asacontact > section:last-of-type article {
        width: auto;
    }

    .asacontact > section:last-of-type article a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
}


/* =========================
   BIG DESKTOP VERSION
========================= */
@media (min-width: 1440px) {
    .asacontact {
        width: 60vw;
    }
}




