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

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

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

.rh__title {
    display: flex;
    gap: 30px;
    align-items: start;
    margin-bottom: 30px;
}

.rh__title h1 {
    color: #343340;
    text-align: center;
    font-family: "Urbanist";
    font-size: 32px;
    font-weight: 700;
}


.section_rh_1 .text {
    color: #343340;
    text-align: center;
    font-size: 16px;
}

.rh_gestion {
    display: flex;
    max-width: 1000px;
    margin: auto;
    gap: 20px;
    margin-top: 50px;
}

.rh_gestion_detail {
    flex-basis: 60%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
}

.rh_gestion_detail h1 {
    color: #343340;
    font-family: "Urbanist";
    font-size: 24px;
    font-weight: 700;
}

.rh_gestion_detail p {
    color: #343340;
    font-size: 16px;
}

.rh_gestion_img {
    width: 400px;
    height: 400px;
    overflow: hidden;
}

.rh_gestion_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section_rh_2 {
    padding: 100px 20px;
    background-color: var(--marron);
    color: white;
}

.section_rh_2 h1,
.section_rh_2 p {
    color: white;
}

.section_rh_3 {
    background-color: #F2EEEB;
    padding: 100px 20px;
}

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

.rh_3_title {
    color: #343340;
    text-align: center;
    font-family: "Urbanist";
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
}

.rh_3_text {
    color: #343340;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 30px;
}

.section_rh_3 ul {
    text-align: center;
}

.rh_grid {
    margin-top: 50px;
    justify-content: center;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(auto-fill, max(450px));
}

.rh_grid_item {
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    border: 1px solid #E1E7E5;
    text-align: center;
    cursor: pointer;
}

.rh_grid_item:hover {
    border: 1px solid var(--marron);
}

.rh_grid_item h3 {
    color: #001E1D;
    font-size: 16px;
    font-weight: 600;
}

.rh_grid_item h3 {
    color: #434A54;
    text-align: center;
    font-size: 16px;
}



@media screen and (max-width:800px) {
    .rh__title {
        flex-direction: column;
        gap: 5px;
    }

    .rh__title h1 {
        font-size: 24px;
    }

    .rh_gestion {
        flex-direction: column;
        align-items: center;
    }

    .rh_grid {
        margin-top: 50px;
        justify-content: center;
        display: grid;
        gap: 50px;
        grid-template-columns: repeat(auto-fill, max(320px));
    }

    .rh_gestion_img {
        width: 300px;
        height: 300px;
        overflow: hidden;
    }


}