.services-page {
  background: var(--gray-300);
}
.services-page .boxes-wrapp {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 50px;
}
.services-page .boxes-wrapp .box {
  position: relative;
  width: 100%;
  max-width: calc(33.3333333333% - 20px);
  overflow: hidden;
}
.services-page .boxes-wrapp .box.two {
  max-width: calc(50% - 15px);
}
@media (max-width: 576px) {
  .services-page .boxes-wrapp .box {
    max-width: calc(50% - 15px);
  }
}
.services-page .boxes-wrapp .box .box-image {
  position: relative;
  display: flex;
}
.services-page .boxes-wrapp .box .box-image:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.services-page .boxes-wrapp .box .box-image img {
  width: 100%;
}
.services-page .boxes-wrapp .box .box-title {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%);
  font-size: 25px;
  color: var(--white-color);
  text-transform: uppercase;
  text-align: center;
}
@media (max-width: 767px) {
  .services-page .boxes-wrapp .box .box-title {
    font-size: 17px;
  }
}
@media (max-width: 576px) {
  .services-page .boxes-wrapp .box .box-title {
    font-size: 15px;
    line-height: 18px;
    top: 30%;
  }
}
.services-page .boxes-wrapp .box:hover img {
  transform: scale(1.1);
}
