.services {
  padding-top: 6rem;
  margin-bottom: 8rem;
}

.services__title-block {
  margin-bottom: 2.5rem;
}

.services__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.services__item {
  width: calc(33.33% - 1.4rem);
  border: 1px solid #EFEFEF;
  border-radius: .5rem;
  -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.services__item .item-icon {
  width: 3.62rem;
  height: 3.62rem;
  position: relative;
  background: var(--blue-bg);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}

.services__item .item-icon img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.services__item h4 {
  color: var(--primary);
  margin: 0;
  font-weight: 500;
  margin-bottom: .7rem;
  min-height: 52px;
}

.services__item .copy {
  font-size: 1rem;
  color: var(--primary);
}

.services__item .copy p:last-child {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .services__item {
    width: calc(50% - 1rem);
  } 
}

@media screen and (max-width: 767px) {
  .services {
    padding-top: 5rem;
  }
  
  .services__item {
    width: 100%;
  } 
}