.services-block {
  position: relative;
  background-color: #f6f7f7;
}
.services-block:before {
  content: '';
  display: block;
  width: 100%;
  height: 60px;
  background-image: url("images/rect_top.svg");
  margin-bottom: 40px;
}
.services-block .title {
  margin-bottom: 40px;
}
.services-block .services {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -moz-box-orient: horizontal;
  -moz-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: justify;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-align: stretch;
  align-items: stretch;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
}
.services-block .services .serv-item {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -moz-box-orient: vertical;
  -moz-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
  flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  width: calc(50% - 15px);
  border-radius: 5px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
  position: relative;
  margin-bottom: 30px;
}
.services-block .services .serv-item:before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  border-radius: 5px;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.6) 15.52%, rgba(0,0,0,0.4) 30.38%, rgba(0,0,0,0.2) 46.56%, rgba(0,0,0,0) 63.4%);
  z-index: 1;
}
.services-block .services .serv-item .serv-title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  color: #f6f7f7;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.services-block .services .serv-item .serv-descr {
  font-weight: 400;
  font-size: 16px;
  line-height: 135%;
  color: #f6f7f7;
  position: relative;
  z-index: 1;
}
.services-block .services .serv-item .btn {
  margin-top: 50px;
  position: relative;
  z-index: 1;
  height: 42px;
}
@media screen and (max-width: 1200px) {
  .services-block .services .serv-item .serv-title {
    font-size: 24px;
  }
}
@media screen and (max-width: 993px) {
  .services-block .services .serv-item {
    width: 100%;
  }
  .services-block .services .serv-item:before {
    background: linear-gradient(90deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.6) 15.52%, rgba(0,0,0,0.4) 100%, rgba(0,0,0,0.2) 46.56%, rgba(0,0,0,0) 63.4%);
  }
  .services-block .services .serv-item .serv-descr {
    font-size: 14px;
  }
}
@media screen and (max-width: 667px){
  .services-block .services .serv-item .btn{
    width: 100%;
  }
}