.a-propos-presentation {
  width: 100%;
  height: fit-content;
  padding: 80px 0 1rem 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  /* background-color: red; */
}

.a-propos-block-moi-container {
  width: 100%;
  display: flex;
  padding: 1rem;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  gap: 2rem;

}

.a-propos-block-moi-photo {
  width: 40%;
  height: auto;
  border-radius: 5px;
}

.a-propos-block-moi {
  width: fit-content;
  box-sizing: border-box;
  padding: 58px 2rem 2rem 2rem;
  position: relative;
  /* border: 1px solid black; */
  border-radius: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.a-propos-logo {
  width: 100px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #f7f7f7;
  border-radius: 50%;
  padding: 5px;
  /* border: 1px solid black; */
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.a-propos-block-moi h2 {
  font-size: 25px;
  text-align: center;
  margin: 1rem 0;
  font-weight: bold;
}

.a-propos-block-moi p {
  max-width: 600px;
  margin-top: 1rem;
}

.a-propos-bottom {
  width: 100%;
  height: fit-content;
  box-sizing: border-box;
  padding: 90px 2rem 2rem 2rem;
  display: flex;
  background-color: #76c1b5;
  position: relative;
}

.a-propos-bottom h2{
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 1rem;
}

.a-propos-bottom p{
max-width: 600px;
}

.a-propos-bottom-right {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
 
  box-sizing: border-box;
 
}

.a-propos-bottom-left{
  border-right: 1px solid #58585A;
}



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

  .a-propos-presentation {

    padding: 1rem 0 1rem 0;
  
  }

  .a-propos-bottom {
    flex-direction: column;
    padding: 50px 2rem 2rem 2rem;
  }

  .a-propos-bottom-left{
    border-right: none;
    border-bottom: 1px solid #58585A;
  }

  .a-propos-bottom-left, .a-propos-bottom-right {
    width: 100%;
   
  }



  .a-propos-block-moi-container {
   flex-direction: column;
  }
  
  .a-propos-block-moi-photo {
    width: 80%;
    height: auto;
  }

}