.softs {
  margin-top: 40px;
  text-align: center;
}
@media (max-width: 767px) {
  .softs {
    margin-top: 16px;
  }
}
.softs h3 {
  font-size: 22px;
  letter-spacing: -0.44px;
}
@media (max-width: 767px) {
  .softs h3 {
    font-size: 20px;
    letter-spacing: -0.4px;
    padding: 0 25px;
  }
}
.softs .images {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
  background-image: url("../img/border-center.svg");
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  padding-bottom: 95px;
}
@media (max-width: 1024px) {
  .softs .images {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .softs .images {
    background-image: none;
    padding-bottom: 0;
    gap: 0;
  }
}
.softs .images .soft {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  padding: 15px;
-webkit-transition: all 0.3s linear;
 transition: all 0.3s linear;
}
.softs .images .soft:hover {
  background: #F3F4F6;
    border-radius: 34px;
}

.softs .images .soft img {
  min-height: 34px;
  max-height: 34px;
}