#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;
  gap: 24px;
}
.ai-technology__body-text li {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.ai-technology__body-text li > span:first-child {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pink);
  background-color: #f2f4f8;
  min-width: 80px;
  min-height: 80px;
  max-width: 80px;
  max-height: 80px;
  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: center;
  }
}

@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 ul {
    gap: 60px;
  }
  .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;
  }
}
