/*--------------------Services--------------------*/
h1{
    font-weight: 450;
    font-size: 30px;
    font-family: "Montserrat";
    color: #242D11;
    margin-left: 25px;
}

#service1{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    background-color: #242D11;
    margin-top: 30px;
}

#imageservice1{
    background-image: url(img/1.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 400px;
    height: 450px;
    background-position: center;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 25px;
}

#texteservice1{
    width: 50%;
    font-family: "Montserrat";
}

#titreservice1{
    font-size: 40px;
    font-weight: 450;
    color: #FAF7F0;
    padding-left: 30px;
    font-family: "Montserrat";
}
#paragrapheservice1{
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 250;
    color: #FAF7F0;
    padding : 0 30px;
}

#service2{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    background-color: #FAF7F0;
}

#imageservice2{
    background-image: url(img/3.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 400px;
    height: 450px;
    background-position: center;
    margin-top: 25px;
    margin-left: 100px;
    margin-right: 100px;
}

#texteservice2{
    width: 50%;
    font-family: "Montserrat";
    text-align: right;
}

#titreservice2{
    font-size: 40px;
    font-weight: 450;
    color: #242D11;
    font-family: "Montserrat";
    margin-right: 20px;
    
}
#paragrapheservice2{
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 250;
    color: #242D11;
    padding : 0 30px;
}

#service3{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    background-color: #242D11;
    margin-top: 30px;
}

#imageservice3{
    background-image: url(img/5.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 400px;
    height: 450px;
    background-position: center;
    margin-left: 100px;
    margin-right: 100px;
    margin-top: 25px;
}

#texteservice3{
    width: 50%;
    font-family: "Montserrat";
    
}

#titreservice3{
    font-size: 40px;
    font-weight: 450;
    color: #FAF7F0;
    padding-left: 30px;
    font-family: "Montserrat";
}
#paragrapheservice3{
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 250;
    color: #FAF7F0;
    padding : 0 30px;
}

#service4{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 500px;
    background-color: #FAF7F0;
}

#imageservice4{
    background-image: url(img/7.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 400px;
    height: 450px;
    background-position: center;
    margin-top: 25px;
    margin-left: 100px;
    margin-right: 100px;
}

#texteservice4{
    width: 50%;
    font-family: "Montserrat";
    text-align: right;
}

#titreservice4{
    font-size: 40px;
    font-weight: 450;
    color: #242D11;
    font-family: "Montserrat";
    margin-right: 20px;
    
}
#paragrapheservice4{
    font-family: "Montserrat";
    font-size: 15px;
    font-weight: 250;
    color: #242D11;
    padding : 0 30px;
}

/*--------------------Responsive--------------------*/ 

@media (max-width: 950px) {
    #service1,
    #service2,
    #service3,
    #service4 {
      flex-direction: column;
      align-items: center;
      height: auto;
      padding: 30px 0;
    }
  
    #imageservice1,
    #imageservice2,
    #imageservice3,
    #imageservice4 {
      width: 90vw;
      max-width: 400px;
      height: auto;
      aspect-ratio: 4/3;
      margin: 0 0 20px 0;
      background-size: cover;
      background-position: center;
      order: -1;
    }
  
    #texteservice1,
    #texteservice2,
    #texteservice3,
    #texteservice4 {
      width: 90%;
      text-align: center !important;
      padding: 0 20px;
    }
  
    #titreservice1,
    #titreservice2,
    #titreservice3,
    #titreservice4 {
      font-size: 28px;
      padding-left: 0;
      margin-right: 0;
    }
  
    #paragrapheservice1,
    #paragrapheservice2,
    #paragrapheservice3,
    #paragrapheservice4 {
      font-size: 14px;
      padding: 0;
      line-height: 1.5;
    }
  }
  
  @media (max-width: 500px) {
    #titreservice1,
    #titreservice2,
    #titreservice3,
    #titreservice4 {
      font-size: 22px;
    }
  
    #paragrapheservice1,
    #paragrapheservice2,
    #paragrapheservice3,
    #paragrapheservice4 {
      font-size: 13px;
    }
  }
  
