.block_services {
    position: relative;
    z-index: 4;
}
.block_services .top-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 44px;
}
.block_services.services_mb_less {
    margin-bottom: -80px;
}
.block_services .top-card {
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 18px;
  width: 170px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.18s;
  cursor: pointer;
  font-size: 1.08rem;
  font-weight: 700;
  color: #2b367c;
  text-align: center;
  line-height: 1.25;
}
.block_services .top-card:hover {
  box-shadow: var(--shadow-hover);
  text-decoration: none;
  cursor: pointer;
}
.block_services .top-card-icon {
  margin-bottom: 18px;
  display: block;
}
@media (max-width: 650px) {
  .block_services .top-cards-row {
      gap: 15px;
  }
  .block_services .top-card {
    width: calc(50% - 15px);
  }
}