.services__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.services__title-wrap {
  flex-flow: column;
  align-items: flex-start;
  display: flex;
}

.subtitle__wrap {
  margin-bottom: 10px;
}

.subtitle {
  color: #757575;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

.services__grid {
    display: grid;
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 64px;
    margin-bottom: 28px;
    align-items: stretch;
    grid-template-columns: repeat(4, 1fr);
}

@media screen and (max-width: 991px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.services__grid-promo-card {
  grid-column: span 2;
}

.service-item {
  border: 0.5px solid rgba(var(--black-rgb), 0.1);
  border-radius: 24px;
  min-height: 250px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.link-block:hover .service__icon {
  background-color: var(--blue);
  border-color: var(--blue);
  color: var(--_website---white);
}

.service__icon {
  background-color: #fff;
  border-radius: 20%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  display: flex;
  border: 0.5px solid rgba(var(--black-rgb), 0.1);
  color: var(--blue);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}
.service__icon-img {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.service-title-wrap {
  margin-bottom: 8px;
}

.service__short-description {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1.8;
}