.services__load-more {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.services__block {
  /*height: 382px;*/
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
}
.services .service__item__block::before {
  content: "";
  position: absolute;
  top: -12px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/uploads/2026/04/group-2477.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
.services .service__item__block::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -10px;
  width: 20px;
  height: 20px;
  background-image: url(/wp-content/uploads/2026/04/group-2477.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

.service__item img {
  margin-bottom: 20px;
}
.service__item-title {
  margin-bottom: 10px;
}
.service__item__block {
  background-color: rgba(40, 40, 40, 0.5);
  padding: 40px;
  border: 1px solid var(--bg-primary-stroke);
  position: relative;
}

.service__item__block::after {
  content: "";
  position: absolute;
  background-image: url(/wp-content/uploads/2026/04/rectangle-786.png);
  bottom: 0;
  right: 0;
  width: 40px;
  height: 40px;
}

.service-hidden {
  display: none;
}

.service-hidden.show {
  display: block;
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 1200px) {
  .service__item__block {
    padding: 20px;
  }
}
@media screen and (max-width: 600px) {
  .services__block {
    grid-template-columns: repeat(1, 1fr);
  }
}/*# sourceMappingURL=block.css.map */