.icon-text-2-section .section-container-half {
  align-items: center;
}
.icon-text-2-section .section-container-half .section-container {
  flex: 3;
}
.icon-text-2-section .section-container-half .icon-text-2-list {
  flex: 7;
  counter-reset: custom-counter;
  background: var(--transparent-card-bg-color);
}
.icon-text-2-section .section-container-half .icon-text-card:before {
  content: counter(custom-counter, decimal-leading-zero);
  counter-increment: custom-counter;
  font-size: 48px;
  font-family: var(--number-font-family);
}

@media (max-width: 1024px) {
  .icon-text-2-section .section-container-half {
    flex-direction: column;
    row-gap: var(--section-space-large);
  }
}

@media (max-width: 767px) {
  .icon-text-2-section .section-container-half .icon-text-card:before {
    font-size: 32px;
  }
}