.ai-technology .container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.ai-technology h2 {
  text-align: center;
}
.ai-technology__body {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.ai-technology__body-text ul {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  gap: 24px;
}
.ai-technology__body-text li {
  flex: 1 1 30%;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  border-radius: var(--brad);
  background-color: var(--innerBg);
  padding: 10px;
}
.ai-technology__body-text li > span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  /* color: var(--pink); */
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.2px;
  font-family: 'Inter', serif;
}
.ai-technology__body-text li > span:first-child {
  position: relative;
  z-index: 0; /* чтобы сам span был поверх псевдоэлемента */
}

.ai-technology__body-text li > span:first-child::before {
  content: '';
  position: absolute;
  z-index: 1; /* фон будет позади текста, но не под всем блоком */
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 190%;
  height: 100%;
  background-image: url('/assets/Vector.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  min-height: 50px;
  min-width: 50px;
}

/* .ai-technology__body-text li > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pink);
  background-image: url(/assets/Vector.png);
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  font-size: 20px;
  font-weight: 700;
  line-height: 24.2px;
  font-family: 'Inter', serif;
} */
.ai-technology__body-text li > div {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.ai-technology__body-text li > div span {
  font-weight: 600;
  font-size: 24px;
  line-height: 31.2px;
}
@media (min-width: 900px) {
  .ai-technology__body-text li {
    width: 100%;
    display: flex;
    align-items: start;
  }
}

@media (min-width: 1200px) {
  .ai-technology__body > div:first-child,
  .ai-technology__body > div:last-child {
    width: 50%;
  }
  .ai-technology__body {
    flex-wrap: nowrap;
    align-items: center;
  }
  .ai-technology__body-text li > div {
    align-items: start;
    text-align: start;
  }
  .ai-technology__body-text li {
    width: 100%;
    flex-direction: row;
    /* align-items: center; */
    gap: 24px;
  }
}
