.content-detail {
    background: #ffffff;
    padding: 7.5rem 0;
}

.detail_header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.detail_header_img {
    width: auto;
    align-self: self-start;
    max-width: 100%;
    border-radius: var(--big-radius);
}

.detail_header_img img {
    width: 100%;
}

.detail_header_infos {
    max-width: 680px;
}

.detail_header_infos {
    font-size: 1rem;
}

.detail_header_infos h1{
    margin: 0 0 2.5rem 0;
}

.detail_header_infos ul {
    padding: 0 0 0 1rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.detail_header_infos li {
    margin-bottom: 1rem;
    line-height:1.4
}

.detail_content_item_visu img{
    border-radius: var(--big-radius);
}

.detail_header_nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .75rem;
    margin-top: 2.5rem;
}

.detail_cta {
    font-size: 1.125rem;
    padding: 0.625rem 1.25rem;
}

.detail_cta:nth-of-type(1) {
    color: #ffffff;
    border-color: var(--orange);
    background-color: var(--orange);
}

.detail_cta:nth-of-type(1):hover {
    color: var(--orange);
    border-color: var(--orange);
    background-color: white;
}

.detail_content_item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10rem;
    gap: 2rem;
}

.detail_content_item:last-child {
    margin-bottom: 1rem;
}

.detail_content_item_infos {
    max-width: 600px;
}

.detail_content_item_infos h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    font-weight: 800;
}

.detail_content_item_infos p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.detail_content_item_infos ol{
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.625rem;

}

.detail_content_item_infos .checklist,
.detail_content_item_infos .detail-number-list {
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    font-size: 1rem;
    gap: 0.625rem;
    counter-increment: counter-detail-infos 0;
    counter-reset: counter-detail-infos;
}

.detail_content_item_infos ul {
    line-height: 1.4;
    padding: 0 0 0 1rem;
    font-size: 1rem;
    width: 90%;
}

.detail_content_item_infos ul li {
    margin-bottom: 1rem;

}

.detail_content_item_infos .detail-number-list li {
    counter-increment: counter-detail-infos 0;
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: flex-start;
}

.detail_content_item_infos .detail-number-list li:before {
    content: counter(counter-detail-infos);
    color: white;
    display: flex;
    width: 24px;
    font-size: .875rem;
    aspect-ratio: 1;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: var(--light-blue);
    counter-increment: counter-detail-infos;
    flex-shrink: 0;
}

.detail_content_item_infos .checklist li {
    display: flex;
    gap: .75rem;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
}

.detail_content_item_infos .checklist li:before {
    content: "";
    color: white;
    display: flex;
    width: 20px;
    font-size: .875rem;
    aspect-ratio: 1;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background-image: url(../../../images/icons/checkMark.svg);
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.page-node-56 .detail_content_item:first-child{
    align-items: center;
}


@media (max-width: 768px) {
    .detail {
        padding: 0;
    }

    .content-header,
    .content-detail {
        padding: 5rem 1rem;
    }

    .detail_header,
    .detail_content_item {
        flex-direction: column-reverse;
    }

    .detail_header img,
    .detail_content_item img {
        max-width: 100%;
        height: auto;
        margin-bottom: 2rem;
    }

    .detail_content_item {
        margin-bottom: 4.5rem;
    }

    .detail_header .btn-back {
        display: none;
    }

    .detail_header_infos h1 {
        font-weight: 800;
        font-size: 1.75rem;
        margin: 0 0 1rem 0;
    }

    .detail_header_infos p {
        text-align: left;
    }

    .detail_header_nav {
        flex-direction: column;
    }

    .detail_header_nav a {
        font-size: 1rem;
        width: 100%;
    }

    .detail_cta_container {
        flex-direction: column;
    }

    .detail_content_item_infos .detail-number-list li {
        align-items: flex-start;
        padding-top: .15rem;
    }
    .detail_content_item_infos .detail-number-list li:before {
        margin-top: -.2rem;
    }
    

}

@media (min-width: 768px) {
    .detail_content_item:nth-child(even) {
        flex-direction: row-reverse;
    }
}