.profits-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--section-padding-vertical);
}
.profit-section-title {
  margin-bottom: 56px;
}
.profits-row {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  row-gap: 92px;
  margin-bottom: 140px;
}
.profit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 472px;
  padding: 16px;
  min-width: 280px;
  flex-basis: 420px;
  flex-grow: 1;
}
.profit-img-wrapper {
  height: 232px;
  width: 100%;
  max-width: 440px;
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}
.profit-card-img {
  max-width: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translate(0px, 20px);
  transition: all 1s ease-in-out;
}
.profit-card-img.active {
  opacity: 1;
  transform: translate(0px, 0px);
}
.profit-card-text {
  max-width: 440px;
}
/* VIDEO */
.profits-video-block {
  width: 924px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.profits-video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  margin-bottom: var(--section-padding-vertical);
}

.profits-responsive-video {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.profits-text {
  text-align: center;
  max-width: 668px;
  margin-bottom: var(--section-padding-vertical);
  font-weight: bold;
  font-style: italic;
}

@media screen and (max-width: 600px) {
  .profit-section-title {
    margin-bottom: 20px;
  }
  .profits-row {
    row-gap: 20px;
    margin-bottom: var(--section-padding-vertical);
  }
  .profit-card {
    width: 280px;
    flex-basis: 280px;
  }
  .profit-card-text {
    text-align: center;
  }
}
