/* =========================
   MOBILE VERSION
========================= */

.generalites {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 4rem;
}

.generalites h2 {
    margin-left: 0;
    margin-right: auto;
}

.generalites .bold {
    font-weight: 600;
}

.generalites section {
    display:flex;
    flex-direction: column;
}

.generalites section h3 {
    width:100%;
    margin-top:2rem;
}

.generalites section > div {
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.generalites section > div > div {
    background-color: #F8F8F8;
    border: 1px solid #F8F8F8;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    padding: 1rem 1.4rem;
    border-radius: 6px;
}

.generalites section:first-of-type div img {
    width:35rem;
    object-fit: contain;
}

.generalites section:last-of-type div img {
    width:35rem;
    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);
}

.generalites section div div p {
    margin-bottom:0.5rem;
    line-height: 2rem;
}

.generalites section div div ul {
    list-style-type: disc;
    list-style-position: inside;
    line-height: 2rem;
}

.generalites section div div ul li {
    margin-bottom:0.5rem;
}


/* =========================
   TABLET VERSION
========================= */

@media(min-width: 768px) {
    .generalites section:last-of-type div img {
        width:40rem;
    }

    .generalites section:first-of-type div img {
        width:45rem;
    }
}


/* =========================
   DESKTOP VERSION
========================= */

@media(min-width: 1024px) {
    .generalites {
        width: 70%;
    }

    .generalites section h3 {
        width:100%;
    }

    .generalites section h3:last-of-type {
        margin-top: 3.5rem;
    }

    .generalites section > div {
        flex-direction: row;
    }

    .generalites img {
        height: auto;
        border-radius: 6px;
        /* object-fit: contain; */
    }

    .generalites section:first-of-type div img {
        width:45rem;
        object-fit: contain;
    }

    .generalites section:last-of-type div img {
        width:30rem;
    }
}

/* =========================
   BIG DESKTOP VERSION
========================= */
@media (min-width: 1440px) {
    .generalites {
        width: 60vw;
    }
}