.pitch {
  font-size: 1.2rem;
}
.round-img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.icon-vue:first-child .round-img {
  border-color: #000;
}
.icon-vue:nth-child(2) .round-img {
  border-color: #fc0;
}
.icon-vue:nth-child(3) .round-img {
  border-color: red;
}
.round-img:hover {
  transform: scale(1.2);
  border: 4px solid;
  transition: 0.3s;
}
.icon-cadre {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 30px;
}
.icon-vue {
  flex: 1 1 90px;
  text-align: center;
  max-width: 120px;
}
.icon-vue h4 {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .icon-cadre {
    gap: 3rem;
  }
}
