header {
    overflow: hidden;
    position: relative;
    min-height: 100vh;
}

.home_header_content {
    max-width: 500px;
    position: relative;
    z-index: 2;
}

.home_header_fig {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 0;
    display: flex;
}

.home_header_fig svg {
    fill: var(--color_bleu);
}

.header-enterprise {
    font-weight: 500;
    letter-spacing: 2px;
}

main {
    padding: 3vh var(--padding_LR) 3vh var(--padding_L);
}

h1 {
    font-size: 3rem;
}

#coeur {
    display: flex;
    justify-content: center;
}

#coeur-left {
    position: relative;
    padding-right: var(--padding_LR);
    padding-bottom: 3vh;
}

#coeur-left h2 {
    font-size: 2.75rem;
    text-align: center;
}

#coeur-left .content {
    display: flex;
    gap: 40px;
}

#coeur-left .content>div {
    max-width: 340px;
}

#coeur-left h3 {
    font-family: var(--font-secondary);
    font-weight: 500;
    font-size: 1.375rem;
}

#coeur-left .img_container {
    position: relative;
    min-height: 35vh;
    max-height: 340px;
}


#coeur-left img {
    aspect-ratio: 1/1;
}

#coeur-left p {
    font-style: italic;
}

#coeur-left .background {
    background-color: var(--color_gris-clair);
    height: 45vh;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    margin-left: calc(-1 * var(--padding_L));
    border-radius: var(--radiused);
}

#coeur-right {
    max-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#coeur-right>div {
    padding: 2.5rem;
}

#coeur-right>div+div {
    padding-top: 0;
}

#coeur-right h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
}

#pourquoi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

#pourquoi-left {
    display: flex;
    justify-content: center;
    align-items: start;
}

#pourquoi-left h2 {
    background: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
    margin: 3vh 5vw;
    padding: 3vh 2vw;
    line-height: 1.2;
    text-align: center;
}

#pourquoi-left img {
    width: 100%;
}

#pourquoi-right>ol {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin: 0;
    gap: 0.95rem;
    list-style: none;
    padding: 0;
}

#pourquoi-right>ol .pourquoi-right_title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

#pourquoi-right>ol h3 {
    margin: 0;
    color: var(--color_bleu);
    font-weight: 600;
    font-size: 1.15rem;
}

#pourquoi-right>ol p {
    margin: 0;
}

@media all and (max-width: 1024px) {

    main {
        padding: 3vh var(--padding_LR);
    }

    #coeur {
        flex-direction: column;
    }

    #coeur-left {
        padding-right: 0;
    }

    #coeur-left .content {
        gap: 30px;
    }

    #coeur-left .content>div {
        max-width: unset;
    }

    #coeur-left .background {
        margin: 0 calc(-1 * var(--padding_LR));
    }

    #coeur-right {
        max-width: unset;
    }

    #coeur-right>div {
        padding: 1.75rem 0;
    }

    #pourquoi {
        gap: 2rem;
    }
}

@media all and (max-width: 865px) {

    #pourquoi {
        grid-template-columns: 1fr;
    }

    #pourquoi-left>h2 {
        width: 80%;
    }

    #pourquoi-left>img {
        height: 100%;
    }

    #pourquoi-right>ol {
        gap: 1.75rem;
    }

    #pourquoi-right>ol>li {
        max-width: unset;
    }
}

@media all and (max-width: 765px) {

    #coeur-left .content {
        flex-direction: column;
    }
}

@media all and (max-width: 625px) {
    #pourquoi-right>ol .pourquoi-right_title img {
        width: 40px;
        height: 40px;
    }

    .home_header_fig {
        bottom: -170px;
        left: -45px;
    }
}