#pageWrapper{
    max-width: 1000px;
    margin: auto;
    height: auto;
    
}
.carrecontenu{
    border-bottom: 1px solid white;
    border-right: 1px solid white;
    padding: 50px;
    width: 75%;
    margin: auto;
    
}
.carrecontenu p{
    font-size: 1.2em;
    text-align: justify;
}
#imgApropos{
    width: 60%;
    height: 50%;
}
.presentation{
    text-align: center;
    margin: 30px;
}
.presentation p{
    text-align: justify;
}
.presentation img{
    width: 85%;
    height: 80%;
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
}
h2{
    color: whitesmoke;
    font-size: 2.5em;
    margin-top: 50px;
    margin-bottom: 30px;
    text-align: center;
}
.services{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-around;
    align-items: center;
}

.services img{
    width: 300px;
    height: 300px;
}

.imgser img{
    border-radius: 50%;
    -webkit-box-shadow: 2px 38px 56px 6px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 38px 56px 6px rgba(0,0,0,0.75);
    box-shadow: 2px 38px 56px 6px rgba(0,0,0,0.75);
}
.presServ ul li{
    margin: 20px;
    font-size: 1.2em;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}
.presServ > a{
    color: yellow;
    font-size: 1.2em;
}
#cta {
    display: inline-block;
    background: linear-gradient(#696484, #8788ba);
    width: 300px;
    border-radius: 50px;
    padding: 20px 30px;
    color: white;
    text-decoration: none;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 50px;
    transition: transform 450ms, background-color 300ms 150ms;
}
#cta a {
    text-decoration: none;
    color: white;

}
#cta:hover {
    background: linear-gradient(#8e86b5, #acaeed);
    text-decoration: none;
    transform: scale(1.15);
}

@media screen and (max-width:996px) {
    .presentation h1, h2{
        font-size: 1.5em;
    }
    .services{
        flex-direction: column;
        gap: 50px;
    }
    .services img{
        width: 200px;
        height: 200px;
    }
}