:root {
    --marron: #892E1C;
    --screen-width: 1300px;
}

.offre_section {
    background-color: #F5F5F5;
    padding: 100px 20px;
}

.offre_section_container {
    max-width: var(--screen-width);
    margin: auto;
}

.section__offre__text {
    text-align: center;
    width: 80%;
    font-size: 16px;
    margin: auto;
}

.offre__item__section {
    max-width: 1000px;
    margin: auto;
    margin-top: 30px;
}

.offre__item {
    padding: 20px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 20px;
}

.offre__item h2 {
    font-family: "Urbanist";
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.offre__info {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.offre__info_flex {
    display: flex;
    align-items: center;
    gap: 7px;
}

.offre__info_flex p {
    color: #808080;
    font-size: 14px;
    font-weight: 400;
}

.offre__info_minidesc {
    color: #343340;
    font-size: 14px;
    font-weight: 400;
}

.lean_more {
    color: var(--marron);
    text-decoration: underline;
}

.offre__desc {
    margin-top: 20px;
}
.offre__desc p {
    color: #343340;
    font-size: 14px;
    margin-bottom: 20px;
}

.offre__desc_titre{
    color: #892E1C;
    font-family: "Urbanist";
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration-line: underline;
    margin-bottom: 20px;
}

.offre_notice{
    font-size: 14px;
    font-weight: 600;
}




.modal_bg {
    /* position: fixed; */
    /* top: 0; */
    /* height: 100vh; */
    width: 100%;
    right: 0;
    /* background: rgba(0, 0, 0, 0.50); */
    z-index: 7;
    display: flex;
    justify-content: center;
    align-items: center;
    /* display: none; */
    visibility: hidden;

    /*---------------------------------*/
}

.modal_bg.active{
    /* display: block; */
    visibility: visible;
}

.modal {
    max-width: 800px;
    width: 800px;
    background-color: white;
    /* height: 100vh; */
}

.empty{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 70px 20px;
    text-align: center;
    border: 1px solid black;
}

.modal_header {
    display: flex;
    justify-content: space-between;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.232);
    padding: 20px;
    align-items: center;
}

.modal_header h1 {
    font-family: "Urbanist";
    font-size: 24px;
    font-weight: 600;
}

.modal_content {
    padding: 20px;
    /* height: 90vh; */
    /* overflow-y: scroll; */
}



@media screen and (max-width:800px) {
    .section__offre__text {
        width: 100%;
    }

    .offre__item {
        flex-direction: column;
        align-items: normal;
        gap: 20px;
    }
}