.gestion {
  background-color: #91c6d8;
  padding: 64px 0;
}
.gestion .content {
  width: 90%;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.gestion .content .image {
  width: 30%;
}
.gestion .content .image img {
  width: 100%;
  border-radius: 50%;
}
.gestion .content .text {
  width: 70%;
  box-sizing: border-box;
  font-size: 28px;
  line-height: 32px;
  color: #fff;
  font-weight: bold;
  padding: 32px;
}
@media all and (max-width: 640px) {
  .gestion .content .image {
    width: 100%;
    text-align: center;
  }
  .gestion .content .image img {
    max-width: 150px;
  }
  .gestion .content .text {
    width: 100%;
  }
}
