.componentConception {
    text-align: center;
    margin-bottom: 100px;
}

.componentConception h2 {
    margin-bottom: 32px;
}

.componentConception .btn{
    margin-inline: auto;
}

.componentConception .etapes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    margin-top: 32px;
}

.componentConception .etape {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    max-width: 380px;
}

.componentConception .etape .imgContainer {
    position: relative;
    width: 100%;
}

.componentConception .etape .imgContainer img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.componentConception .etape .imgContainer .numero {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-family: "Aleo";
    font-size: 28px;
    line-height: normal;
    font-weight: 600;
    border: solid 5px var(--color-white);
}

.componentConception .etape p {
    font-size: 20px;
    font-weight: 500;
    color: var(--color-primary);
    text-align: center;
}

@media (max-width: 1300px) {
    .componentConception .etapes {
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .componentConception {
        margin-bottom: 50px;
    }
    .componentConception h2 {
        margin-bottom: 24px;
    }
    .componentConception .etapes {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 20px;
        overflow-x: scroll;
        -ms-overflow-style: none;
        scrollbar-width: none;
        width: 100vw;
        transform: translateX(-20px);
        padding-inline: 20px;
    }
    .componentConception .etapes::-webkit-scrollbar {
        display: none;
    }
    .componentConception .etape {
        max-width: 80vw;
        width: 80vw;
        min-width: 80vw;
    }
    .componentConception .etape p {
        font-size: 18px;
    }
    .componentConception .etape .imgContainer .numero {
        width: 50px;
        height: 50px;
        font-size: 25px;
        border: solid 5px var(--color-white);
        gap: 35px;
    }
}
