@charset "UTF-8";
.serviсe-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -5px;
}


.serviсe-list__link {
  width: calc(20% - 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #faf8f8;
  padding: 30px 0;
  margin: 0 5px 20px;
  transition: transform 0.4s, box-shadow 0.4s;
}


.serviсe-list__link:hover,
.serviсe-list__link:focus {
  text-decoration: none;
}


.serviсe-list__link:hover {
  transform: translateY(-10px);
  box-shadow: 0 13px 15px -1px rgba(0, 0, 0, 0.13);
}


@media only screen and (max-width: 1299px) {
  .serviсe-list__link {
    width: calc(25% - 10px);
  }
}


@media only screen and (max-width: 991px) {
  .serviсe-list__link {
    width: calc(33% - 10px);
  }
}

@media only screen and (max-width: 639px) {
  .serviсe-list__link {
    width: calc(50% - 20px);
    padding: 25px 0;
    margin: 0 10px 18px;
  }
}


.serviсe-list__pic-block {
  width: 68.18%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-bottom: 20px;
}


.serviсe-list__shape {
  padding-top: 83.3%;
}


.serviсe-list__text-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 2;
  margin: 0 20px;
}


.serviсe-list__text {
  font: normal 20px/1.2 "Futura New";
  color: #333333;
  text-align: center;
}


@media only screen and (max-width: 991px) {
  .serviсe-list__text {
    font-size: 18px;
  }
}


@media only screen and (max-width: 639px) {
  .serviсe-list__text {
    font-size: 15px;
  }
}


