main {
    /* background: #e3e3e3; */
    min-height: 1000px;
    margin-top: 141px;
    transition: filter 0.5s ease;
    /* Transition progressive pour le flou */
    color: white;
}

.blur {
    filter: blur(6px);
}


.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0% 10%;
}


.hero {
    margin-bottom: 50px;
}

.hero h1 {
    text-align: center;
    position: relative;
    font-size: 56px;
    color: #2C3E50;
}

.hero h1::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: rgb(79, 172, 189);
}

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

.hero_content p {
    text-align: center;
    font-size: 32px;
    color: black;
}

.cta_button {
    display: inline-block;
    text-align: center;
    width: 220px;
    padding: 15px 25px;
    margin-top: 30px;
    border-radius: 50px;
    background-color: rgb(79, 172, 189);
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid rgb(79, 172, 189);
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cta_button:hover {
    background-color: white;
    color: rgb(79, 172, 189);
    border-color: rgb(79, 172, 189);
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.cta_button:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h2 {
    position: relative;
    text-align: center;
    font-size: 32px;
    margin-bottom: 50px;
    color: #2C3E50;
}

h2::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: rgb(79, 172, 189);
    bottom: 0px;
    left: 0px;
}

.services {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
}


.carousel{
    display: flex;
    overflow: hidden;
    width: 85%;
    height: 400px;
}

.carousel_item{
    
    width: 100%;
}


.stages h2 {
    margin-top: 32px;
}

.stages {
    width: 100%;
}


.stages_images {
    display: flex;
    justify-content: center;
}

.stages_images img {
    width: 100%;
    height: 325px;
    object-fit: contain;
}



.stages_list {
    display: flex;
    gap: 4%;
    color: black;
    list-style: none;
}

.stage {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 15px;
    background-color: powderblue;
    width: 33%;
    height: 66px;
    cursor: pointer;
}


.stage::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 33px;
    transform: translateY(-50%);
    border-width: 34px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;

}

.stage::after {
    content: '';
    position: absolute;
    right: -67px;
    top: 33px;
    transform: translateY(-50%);
    border-width: 34px;
    border-style: solid;
    border-color: transparent transparent transparent powderblue;
}

@media screen and (max-width:1100px) {

    .stages{
        display: flex;
        flex-direction: column;
        position: relative;
    }

    .stages_images {
        display: flex;
        flex-direction: column;
        align-items: end;
    }

    .stages_images img {
        max-width: 229px;
        height: 435px;
        object-fit: cover;
    }

    .stages_list{
        position: absolute;
        display: flex;
        flex-direction: column;
        gap: 25%;
        top: 19%;
        height: 100%;
    }

    .stage{
        width: 100%;
    }

    .stage::before{
        left: -37px;
    }
}