main {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; 
    /* justify-content: center;

    /* background-color:  var(--noogaa-primary); */
}

section {
    max-width: 1000px;
    width: 100%;
    position: relative;
    padding: 20px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 4.8rem;
    font-weight: 700;
    text-align: center;
    text-wrap: pretty;
    margin-top: 1rem;
    text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.5);
    /*temp*/
}

.section-description {
    font-size: 2.8rem;
    font-weight: 600;
    text-align: center;
    margin: 1em 0;
}

main h2 {
    font-size: 2rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 1em;
}


main p {
    font-size: 1.8rem;
    font-weight: 400;
}
.section-description{
    text-align: center;

}


/*  ----------------------------- LISTE ----------------------------- */


.list {
    /* background-color: #fff; */
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
}

.item_title{
    color: #000;
}

.item_description {
    text-align: center;
    color: #000;
    margin-bottom: 2em;
}
.list__item{
    max-width: 1000px;
}



/* ------------------------------------------ */



/* Media Queries */


@media screen and (max-width: 1139px) {
    section.section {
        min-height: calc(100vh - var(--header-hauteur));
        height: fit-content;
    }
}

@media screen and (max-width: 1023px) {
    h1{
        margin-top: 0;
        font-size: 3.6rem;
    }
    main h2{
        font-size: 2.4rem;
    }

    .hr-list__container {
        gap: 4rem;
    }


}

@media screen and (max-aspect-ratio: 1/1) {
    section.section {
        min-height: calc(100vh - var(--header-hauteur));
        flex-direction: column;
    }

    .hr-list__container {
        gap: 4rem;
    }

    .hr-list__container .list {
        margin-top: 0;
    }

}

@media screen and (max-width: 900px) {
    section.section {
        padding: 20px 25px;
    }

    .hero-banner__texte {
        margin: 0;
        text-wrap: pretty;
    }
    .hr-list__container {
        width: 100%;
    }
    .hr-list__container .list {
        flex-basis: 90%;
    }
}

