.services {
  position: relative;
  padding: 60px 0;
  background-color: #fff;
}
.services .container {
  position: relative;
}
.services__holder {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 40px;
  border-bottom: 1px solid #E2E2E2;
  margin-bottom: 30px;
}
.services__title {
  margin-top: 0;
  margin-bottom: 0;
}
.services__link {
  font-weight: 700;
  font-size: 18px;
  line-height: 144%;
  color: #272822;
  display: flex;
  align-items: center;
}
.services__link svg {
  margin-left: 5px;
}
.services__link svg path {
  transition: fill 0.3s ease-in;
}
.services__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.services .item__img {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  background-color: #FFF;
  margin-bottom: 15px;
  height: 340px;
}
.services .item__img img {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.services .item__img-hover {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  background: rgba(229, 64, 68, 0.6);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: all 0.3s ease-in;
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  text-align: center;
  color: #FFFFFF;
}
.services .item__img-hover svg {
  display: block;
}
.services .item__img:hover .item__img-hover {
  opacity: 1;
  transition: all 0.3s ease-in;
}
.services .item__img:hover .item__svg {
  transform: scale(1);
  transition: all 0.3s ease-in;
}
.services .item__svg {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  transform: scale(0.3);
  transition: all 0.3s ease-in;
}
.services .item__title {
  font-weight: 500;
  font-size: 24px;
  line-height: 133%;
  color: #272822;
}

@media (max-width: 1220px) {
  .services__content {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 905px) {
  .services__content {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .services__link {
    font-size: 16px;
  }
}
@media (max-width: 620px) {
  .services .item__title {
    font-size: 18px;
  }
  .services .item__img {
    height: 280px;
  }
  .services__holder {
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media (max-width: 500px) {
  .services {
    padding: 40px 0;
  }
}
@media (max-width: 400px) {
  .services__content {
    grid-template-columns: repeat(1, 1fr);
  }
  .services::before {
    display: none;
  }
}/*# sourceMappingURL=block.css.map */