div#presentation {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
div#presentation div.presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 0 0 calc(33% - 33.3333px);
}
div#presentation div.presentation:nth-child(2n) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  div#presentation div.presentation {
    flex: 1 0 100%;
  }
  div#presentation div.presentation:nth-child(2n) {
    margin-top: 0px;
  }
}
div#presentation div.presentation div.icon-sizer {
  width: 96px;
  height: 96px;
  position: relative;
  margin-bottom: 25px;
}
div#presentation div.presentation div.icon-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
div#presentation div.presentation span {
  display: block;
  font-size: 22px;
  line-height: 29px;
  font-weight: 500;
  color: white;
  text-align: center;
}
div#presentation div.presentation p {
  font-size: 15px;
  line-height: 23px;
  font-weight: 450;
  color: #ACB7D8;
  text-align: center;
}
