.services {
  text-align: center;
  padding: 5rem 0;
}
.services .title-thc {
  margin: auto;
  margin-bottom: 2rem;
  max-width: 600px;
}
.services .title {
  font-size: 1.5rem;
  color: #000000;
  font-family: "Lora", Sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin: auto;
  margin-bottom: 1.5rem;
}
.services .desc {
  margin: auto;
  max-width: 600px;
  margin-bottom: 3rem;
}
.services .item {
  padding: 0 2rem;
  text-align: center;
}
.services .item .img-wrap {
  height: 100px;
  width: 100px;
  padding: 1rem;
  margin: auto;
  position: relative;
  display: inline-block;
}
.services .item .img-wrap img {
  object-fit: contain;
}
.services .item .img-wrap:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary_color);
  mix-blend-mode: screen;
  opacity: 0.7;
  pointer-events: none;
}
@media only screen and (max-width: 769px) {
  .services {
    padding: 2rem 0;
  }
}
