.corps {
  margin: 0 10%;
  margin-top: 20px;
}

.card {
  display: flex;
  border-radius: 10px;
  gap: 15px;
}

.card img {
  flex: 1;
  width: 100%;
  height: auto;
  border-radius: 10px;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: bottom;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  text-align: justify;
  margin: 0;
}

.content * {
  margin: 5px 0;
  font-size: 1.2em;
}

.content h3 {
  text-align: center;
  font-size: 25px;
}

.video {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

@media (min-width: 1000px) {
  .card img {
    flex: 1 1 50%;
    max-width: 50%;
  }

  .content {
    flex: 1 1 50%;
    max-width: 50%;
  }
}