#circle-wrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  box-sizing: border-box;
  gap: 10px; /* минимальный отступ между кругами */
}

/* Один блок с кругом */
#circle-wrapper .circle-innerdiv {
  flex: 1 1 0;
  min-width: 0;
  max-width: 25%; /* 4 в ряд */
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* SVG — уменьшаем размер */
#circle-wrapper svg {
  width: 60px;
  height: 60px;
}

#circle-wrapper circle {
  fill: none;
  stroke: #d3d3d3;
  stroke-width: 4;
}

#circle-wrapper path {
  fill: none;
  stroke-width: 4;
  stroke-linecap: round;
}

#circle-wrapper .text-percent {
  font-size: 12px;
  fill: #000000;
  dominant-baseline: middle;
  text-anchor: middle;
}

#circle-wrapper h6 {
  font-size: 16px;
  color: #000000;
  margin-top: 5px;
  margin-bottom: 0;
  text-align: center;
}

#circle-wrapper svg {
  width: 100px;
  height: 100px;
}

@media (max-width: 768px) {
  #circle-wrapper svg {
    width: 80px;
    height: 80px;
  }
}

@media (max-width: 480px) {
  #circle-wrapper svg {
    width: 70px;
    height: 70px;
  }
}

#circle-wrapper .text-percent {
  font-size: 14px;
}

@media (max-width: 768px) {
  #circle-wrapper .text-percent {
    font-size: 12px;
  }
}

@media (max-width: 768px) {
  #circle-wrapper h6 {
    font-size: 11px;
  }
}

.service-content {
  flex: 1 1 22%;
  box-sizing: border-box;
  padding: 40px 30px;
  background-color: rgba(255, 255, 255, 0.78);
  box-shadow: 0px 0px 20px 0px #dedede;
  margin-bottom: 20px;
  text-align: center;
}

/* Контейнер flex */
.services-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px; /* если хочешь отступы между карточками */
}

/* Медиазапрос для планшета */
@media (max-width: 1024px) {
  .service-content {
    flex: 1 1 45%;
  }
}

/* Медиазапрос для мобильного */
@media (max-width: 600px) {
  .service-content {
    flex: 1 1 100%;
  }
}
