.services {
  width: 100%;
}

.services .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 30px;
}

.services_row {
  width: 100%;
}

.services_wrap {
  max-width: 516px;
  width: 41%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.services_desc {
  font-size: 14px;
}
.services_items {
  width: calc(59% - 30px);
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.services_item {
  width: calc(100% / 2 - 20px);
  display: flex;
  gap: 10px;
}
.services_item .lozad {
  border-radius: 12px;
  background: var(--Platinum);
  min-width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 20px;
}
.services_item_desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: 0.28px;
}

@media (max-width: 768px) {
  .services_wrap {
    max-width: 100%;
    width: 100%;
    gap: 16px;
  }

  .services_desc br {
    display: none;
  }

  .services_items {
    margin-top: 16px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }

  .services_item {
    width: 100%;
  }
}
