.tools {
  margin: 5rem 0;
}

.tools__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.tools__item {
  width: 50%;
  text-align: center;
}

.tools__item--small {
  width: 24%;
}

.tools__item-img {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

.tools--padding {
  margin-top: 0;
}

@media only screen and (min-width: 480px) {
  .tools__list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }

  .tools__item {
    width: 45%;
  }
}

@media only screen and (min-width: 600px) {
  .tools__item {
    width: 30%;
  }
}

@media only screen and (min-width: 768px) {
  .tools__item {
    width: 23%;
    margin-bottom: 2rem;
  }

  .tools__item-img {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

@media only screen and (min-width: 1280px) {
  .tools {
    margin: 6.5rem 0 11rem;
  }

  .tools .section-title {
    margin-bottom: 8rem;
  }

  .tools__item {
    width: auto;
    margin-bottom: 4rem;
  }

  .tools--padding {
    margin-top: 0;
    margin-bottom: 9.5rem;
  }

  .tools--padding .section-title {
    margin-bottom: 4rem;
  }
}