.accueil-infos-container {
  height: fit-content;
  width: 100%;
}

.accueil-infos {
  max-width: 2000px;
  width: 100%;
  height: fit-content;
  margin: auto;
  padding: 2rem 1rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 1rem;
  align-items: center;
}

.accueil-infos-intro {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  border: 3px solid #4ca074;
  border-radius: 5px;
background-color: #addbc922;
}

.accueil-infos-intro h2 {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.accueil-infos-intro p {
  max-width: 600px;
}

.accueil-info-image {
  height: 100%;
  border-radius: 5px;
}

.accueil-info-image-1 {
  background-image: url(../img/hand.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* border-radius: 25% 25% 25% 25% / 25% 75% 25% 75%; */
}

.accueil-info-image-2 {
  background-image: url(../img/psy.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  /* border-radius: 25% 25% 25% 25% / 75% 25% 75% 25%; */
}

/** For mobile devices **/
@media (max-width: 800px) {


  .accueil-infos {
    display: flex;
    justify-content: center;
    
  }

  .accueil-info-image {
    display: none;
  }
}
