
body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}
.container{
    width: 100%;
    min-height: 150vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 100px auto;
}
.container .titre-page{
    text-align: center;
    font-family: roboto;
    color: #494949;
    font-size: 3rem;
    text-transform: uppercase;
}
.container .services{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
}
.container .services .service{
    width: 100%;
    height: 80vh;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
}

.container .services .img-service{
    width: 30%;
    height: 100%;
    position: relative;
}
.container .services .service:nth-child(1) .img-service{
    background: url('../images/conseils.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.container .services .service:nth-child(2) .img-service{
    background: url('../images/formations.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.container .services .service:nth-child(3) .img-service{
    background: url('../images/amenagement.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.container .services .service:nth-child(4) .img-service{
    background: url('../images/animation.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.container .services .service:nth-child(5) .img-service{
    background: url('../images/events.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
.container .services .service:nth-child(6) .img-service{
    background: url('../images/cheque.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.container .services .desc-service{
    width: 70%;
    height: 100%;
    color: #494949;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: roboto;
    font-size: 1.1rem;
}
.container .services .desc-service p{
    width: 90%;
    height: auto;
    text-align: left;
    line-height: 2;
}
.container .services .service li{
    width: 90%;
    padding: 0;
    margin-bottom: 20px;
    margin-left: 20px;
}

.container .services .desc-service h2{
    text-transform: uppercase;
    border: 1px solid #abcf47;
    padding: 5px;
    color: #abcf47;
    text-align: center;
    font-size: 2.5rem;
}


