html{
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    scroll-behavior: smooth;
}


.content{
    margin-bottom: 0px;
    margin-top: 30px;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 0px;
    padding-top: 0px;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.content .title{
    padding-left: 50px;
    width:85%;
    position: relative;
    top: -10px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #0cc753;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: solid 2px #b2b2b2;
    font-size: 22px;
}

.section{
    display: flex;
    flex-direction: column;
    background-image: url(/img/background.png);
    margin : 0px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.content p{
    color: rgb(0, 0, 0);
    font-size: 20px;
}

.bloc-presentation{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-top: 50px;
    border-bottom: 2px solid #0cc753;
}
.bloc-presentation-reverse{
    flex-direction: row-reverse;
}
.bloc-presentation-center{
    flex-direction: column-reverse;
    justify-content: center;
    align-items: center;
}

.bloc-text{
    width: 50%;
    display: flex;
    flex-direction: column;
    margin: 50px;
    margin-top: 0px;
    align-items: flex-end;}
.bloc-text p{
    width:100%;
    font-size: 20px;
    text-align: center;
    margin-bottom: 40px;
}
.bloc-text h2{
    text-align: center;
    width: 100%;
    margin: 0;
    margin-top: 10px;
    font-size: 26px;
    color: #068b39;
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: none;
    
}
.bloc-text-reverse {
    align-items: flex-start;
    color: #BFF032;
    text-align: end;
}
.bloc-text-center{
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 0px;
}
.bloc-text-center h1{
    margin-top: 30px;
    padding: 0;
}

.bloc-img{
    width: 50%; 
    margin: 50px;
    margin-top: 0px;
}
.bloc-img-center{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%; 
    margin: 0px;
}

.img-presentation{
    width: 100%;
    z-index: 10;
    border: solid 2px white;
    box-shadow: 0 0 2px #000000;
    cursor: pointer;
}

@media only screen and (max-width: 1050px) {

    .bloc-text p{
        font-size: 18px;
    }

}


@media only screen and (max-width: 900px) {
    .bloc-presentation{
        flex-direction: column-reverse;
        align-items: center;
        margin: 0px;
    }
    .bloc-text{
        margin: 10px;
        align-items: center;
        font-size: 16px;
    }
    .bloc-img{
        width: 50%; 
        margin-top: 30px;
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 550px) {
    .content{
        margin-top: 0;
      }
    .content .title{
        padding-left: 20px;
    }
    .bloc-presentation.first{
        margin-top: -40px;
      }
      
    .bloc-presentation{
        border-bottom: 1px solid #0cc753;
    }
    .bloc-img{
        width: 80%;
    }
    .bloc-text{
        width: 90%;
    }
    .bloc-text p{
        font-size: 16px;
    }
    .bloc-text h1{

        font-size: 18px;

    }

}
@media only screen and (max-width: 375px ) {

}