.container-contact {
  margin-bottom: 2%;
  padding-left: 10%;
  padding-right: 10%;
  display: flex; 
  flex-direction: row ;
  gap: 20px;
}

.contact-location {
  display: flex;
  flex-direction: column; /* Positionner les éléments en colonne */
  align-items: center;    /* Centrer horizontalement */
  justify-content: center;
}

.bandeau-container {
  width: 100%;
  height: 300px;
  background-image: url('/img/bandeau7.png');
  background-size: cover; /* ou 'contain' selon votre besoin */
  background-repeat: no-repeat;
  background-position: center center;
  display: grid;
  place-items: center; 
}

.bandeau-container h2{
  color: #175aea;
  /* color: #376ad6; */
  font-family: "Poppins", sans-serif;
  font-size: 55px;
  font-weight: 800;
}

.form-contact {
  padding-top: 6.125rem;
  padding-bottom: 5.125rem;
}

h2{
  font-family: "Poppins", sans-serif;
  font-size: 46px;
  font-weight: 900;
  margin-top: 1%;
}

.form_single_item{
  background-color: #f6f7fa;
  padding: 17px 30px;
  height: auto;
  border-radius: 30px;
  border: 1px solid #f6f7fa;
  width: 100%;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  text-transform: lowercase;
}

.btn{
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 50px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: .05rem;
    background-color: #376ad6 !important;
}

.container-contact .message{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.massage-background{
  background-color: #136ad5;
  color: #f6f7fa;
  padding: 10px 30px 10px;
  border-radius: 30px 30px 0 0;
}

.contact-location{
  border: 2px #f6f7fa solid;
  border-radius: 0 0 30px 30px;
}

.contact-location i {
  font-size: 20px;
  float: left;
  width: 44px;
  height: 44px;
  background: #136ad5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #ffffff;
}

.contact-location li{
  padding: 0 0 0 30px;
  margin-bottom: 0;
}

.contact-location li div{
  display: flex;
    flex-direction: column; /* Positionner les éléments en colonne */
  }

.contact-location p {
  padding: 0 0 0 30px;
  margin-bottom: 0;
  font-size: 15px;
  color : #000;
  font-family: "Poppins", sans-serif;
}

.contact-location h4 {
  font-size: 16px;
  padding: 0 0 0 30px;
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

@media (max-width: 764px) {

  .container-contact {
    display: flex; 
    flex-direction: column;
  }

  .form-contact {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .bandeau-container {
    width: 100%;
    height: 200px;
    background-image: url('/img/bandeau7.png');
    background-size: cover; /* ou 'contain' selon votre besoin */
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 2rem;
    display: grid;
    place-items: center; 
  }
  
  h2{
    font-family: "Poppins", sans-serif;
    font-size: 26px;
    font-weight: 900;
    margin-top: 1%;
  }

  .bandeau-container h2{
    color: #376ad6;
  }
}