.text-with-icons-section {
  position: relative;
  width: 100%;
  color: rgb(var(--color-text));
  background-color: rgb(var(--color-background));
}
.text-with-icons__group {
  position: relative;
}
.text-with-icons__track {
  display: flex;
  flex-wrap: wrap;
  column-gap: var(--textwithicon-gap);
  row-gap: var(--textwithicon-gap);
}
.text-with-icons__item {
  display: flex;
  flex-direction: var(--textwithicon-direction);
  align-items: var(--textwithicon-icon-alignment);
  row-gap: 16px;
  column-gap: var(--textwithicon-column-gap, 8px);
  width: calc((100% - (var(--textwithicon-gap) * (var(--textwithicon-grid) - 1))) / var(--textwithicon-grid));
}
.text-with-icons__group .text-with-icons__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--textwithicon-icon-width, 32px);
  height: var(--textwithicon-icon-width, 32px);
  color: rgb(var(--color-foreground));
}
.text-with-icons__group .text-with-icons__icon svg,
.text-with-icons__group .text-with-icons__icon img {
  width: 100%;
  height: 100%;
}
.text-with-icons__group .text-with-icons__icon img {
  object-fit: contain;
  object-position: center;
}
.text-with-icons__content {
  display: flex;
  flex-direction: column;
  align-items: var(--textwithicon-align-items);
  row-gap: 4px;
  text-align: var(--textwithicon-text-align);
}
.text-with-icons__title {
  font-weight: 700;
}
.text-with-icons__description {
  font-size: var(--font-body-base);
  font-weight: 400;
  margin: 0;
  color: rgb(var(--color-light-text));
}
.carousel__pager {
  display: flex;
  gap: 6px;
  justify-content: center;
  align-items: center;
  height: 10px;
  margin-block-start: 24px;
}
.carousel__pager--dot {
  display: block;
  width: 6px;
  height: 6px;
  padding: 0;
  cursor: pointer;
  background-color: rgba(var(--color-text), 0.75);
  border: 0;
  border-radius: 50%;
  opacity: 0.4;
  transition: opacity, width, height, 0.3s;
}
.carousel__pager--dot.is-active {
  width: 15px;
  opacity: 1;
  border-radius: 3px;
}
@media (max-width: 959px) {
  .text-with-icons__track {
    column-gap: var(--m-textwithicon-gap);
    row-gap: var(--m-textwithicon-gap);
  }
  .text-with-icons__group--mobile-slider .text-with-icons__track {
    flex-wrap: nowrap;
  }
  .text-with-icons__item {
    width: calc((100% - (var(--m-textwithicon-gap) * (var(--m-textwithicon-grid) - 1))) / var(--m-textwithicon-grid));
    row-gap: 12px;
  }
  .text-with-icons__group .text-with-icons__icon {
    width: var(--m-textwithicon-icon-width, 24px);
    height: var(--m-textwithicon-icon-width, 24px);
  }
}