.benefit-cards {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 40px 222px 64px;
  display: flex;
  position: relative;
  align-self: stretch;
  width: 100%;
}

.benefit-cards .card-group-title {
  color: var(--color-accent-2);
}

.benefit-cards .card-group-description {
  color: var(--color-accent-4);
}

.benefit-cards .card-group {
  display: flex;
  flex-direction: column;
  max-width: 947px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.benefit-cards .card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  flex: 1;
  align-self: stretch;
}

.benefit-cards .index-circle {
  display: flex;
  flex-direction: column;
  min-width: 140px;
  height: 140px;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: -10px -50px -10px -10px;
  background-color: var(--color-accent-2);
  border-radius: 50%;
  border: 10px solid;
  border-color: var(--color-background-1);
  z-index: 1;
}

.benefit-cards .index-circle img {
  max-width: 100%;
  height: 100%;
  z-index: 2;
}

.benefit-cards.hexagonal .index-circle {
  border: none;
  border-radius: 0;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  width: 140px;
  height: 121px;
  min-width: unset;
  flex-shrink: 0;
  margin: 0 -50px 0 0;
  background-color: var(--color-background-1);
}

.benefit-cards.hexagonal .index-circle::after {
  content: "";
  position: absolute;
  border: none;
  border-radius: 0;
  clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
  width: 120px;
  height: 104px;
  min-width: unset;
  flex-shrink: 0;
  background-color: var(--color-accent-2);
}

.benefit-cards .card-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 12px;
  padding: 40px 40px 40px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  z-index: 0;
  background-color: var(--color-background-2);
}

.benefit-cards .list-title {
  align-self: stretch;
  font-weight: 700;
  color: var(--color-accent-4);
  font-size: 24px;
  letter-spacing: 0;
  line-height: normal;
}

.benefit-cards .description-text {
  color: var(--color-accent-4);
}

@media only screen and (max-width: 1280px) {
  .benefit-cards .card-group {
    gap: 32px;
  }

  .benefit-cards .card {
    flex-direction: column;
  }

  .benefit-cards .index-circle {
    border-width: 8px;
    min-width: unset;
    width: 116px;
    height: 116px;
    margin: 0 0 -50px;
  }

  .benefit-cards.hexagonal .index-circle {
    border: none;
    border-radius: 0;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    width: 120px;
    height: 104px;
    min-width: unset;
    flex-shrink: 0;
    margin: 0 0 -40px 0;
    background-color: var(--color-background-1);
  }

  .benefit-cards.hexagonal .index-circle::after {
    content: "";
    position: absolute;
    border: none;
    border-radius: 0;
    clip-path: polygon(25% 0, 75% 0, 100% 50%, 75% 100%, 25% 100%, 0 50%);
    width: 100px;
    height: 87px;
    min-width: unset;
    flex-shrink: 0;
    background-color: var(--color-accent-2);
  }

  .benefit-cards .card-text-container {
    padding: 64px 24px 24px;
  }
}
