.agence .container{
    width: 90%;
}

.agence .banner__content{
    max-width: 750px;
}

.presentation h2,
.presentation p:not(.item-p){
    width: 100%;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.presentation p:not(.item-p){
    max-width: 800px;
}

.presentation__item h3{
    font-size: clamp(1.25rem, 3vw, 1.625rem);
}

.presentation__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  max-width: 350px;
  margin: 0 auto;
}

.presentation__item{
    padding: 20px;
    border-bottom: var(--border);
}

.presentation__wrapper li{
    width: 330px;
    height: 370px;
}

h3.presentation__subtitle{
    color: var(--amber-orange);
    text-transform: uppercase;
    margin-bottom: 35px;
}

.presentation__item h4{
    text-transform: capitalize;
}

.presentation__item :is(h4, p){
    margin-left: 30px;
}

.presentation__item p{
     padding-right: 15px;
}

.presentation__link{
    display: flex;
    justify-content: center;
    width: 100%;
}

.presentation a.btn-bg-black{
    max-width: 250px;
    margin-left: auto;
}

.collaboration .container{
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.collaboration__content{
    max-width: 600px;
}

.collaboration__content p{
    max-width: 500px;
}

.collaboration__content h2{
    margin-top: 70px;
    font-size: clamp(1.55rem, 4.5vw, 2.75rem);
}

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

.collaboration__img img{
    display: block;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 700/767;
}

.key-points,
.key-points *:not(.bg-icone):not(.bg-icone img) {
    background-color: var(--cloud-gray, #F7F7F7);
}

.key-points__content{
    text-align: center;
}

.key-points__wrapper{
    display: flex;
    flex-direction: column;
    align-items: center;  
    margin: 0 auto;
    max-width: 800px;
}

.key-points__item{
    display: flex;
    column-gap: 20px;
    max-width: 350px;
}

.key-points__container h2{
     margin-bottom: 10px;
    font-size: 1.375rem;
    font-weight: 500;
}

/***************************************************/
/*                 Media queries                   */
/***************************************************/

@media screen and (min-width: 480px){

    .presentation__wrapper li{
        width: 350px;
    }

    .collaboration__img img{
        max-width: 80%;
    }

}


@media screen and (min-width: 768px){

    .agence .container{
        width: 95%;
    }

    .presentation__wrapper {
        flex-direction: row; 
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 30px;
        max-width: 735px;
    }

    .key-points__wrapper {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-evenly;
        align-items: flex-start;
        gap: 20px 20px;
        margin: 100px auto 0 auto;
        max-width: 800px;
    }

}
   

@media screen and (min-width: 1024px){

    .presentation__wrapper{
        margin-top: 100px;
    }

    .collaboration .container{
        flex-direction: row;
        justify-content: space-around;
        align-items: flex-end;
        width: 90%;
    }

    .collaboration__content h2{
        margin-top: 0px;
    }

     .collaboration__img{
        justify-content: flex-end;
        margin-bottom: -8px;
        max-width: 40%;
    }

    .key-points__wrapper {
        gap: 20px 70px;
        max-width: 1000px;
    }

    .key-points__item{
        max-width: 420px;
    }

}

@media screen and (min-width: 1240px){

    .agence .container{
        width: 90%;
    }

    .presentation__wrapper{      
        justify-content: center;                
        max-width:100%;               
    }

    .presentation__item{
        border-bottom: none;
    }

    .presentation__item:is(:nth-child(1), :nth-child(2)){
        border-right: var(--border);
    }

}

@media screen and (min-width: 1380px) {

    .presentation__wrapper li{
        width: 400px;   
    }

    .key-points__item {
        max-width: 450px;
    }
    
}