.advantages {
  background: #f9fafc;
  padding: 60px 0;
}
.advantages__block {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
  justify-content: center;
}
.advantages__block:nth-child(even) {
  flex-direction: row-reverse;
}
.advantages__block:nth-child(even) .advantages__img img {
  -webkit-animation: breathing 4s ease 3s infinite normal;
          animation: breathing 4s ease 3s infinite normal;
}
.advantages__desc-title {
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 130%;
  margin-bottom: 30px;
  padding-bottom: 20px;
  position: relative;
  color: #263238;
}
.advantages__desc-title::before {
  content: "";
  width: 150px;
  height: 1px;
  display: flex;
  background: rgb(74, 101, 156);
  position: absolute;
  bottom: 0;
  left: 0;
}
.advantages__desc-desc {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 200%;
  color: #263238;
}
.advantages__img img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-animation: breathing 4s ease 1.5s infinite normal;
          animation: breathing 4s ease 1.5s infinite normal;
}

@-webkit-keyframes breathing {
  0% {
    transform: scale(0.95);
  }
  25% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.95);
  }
}

@keyframes breathing {
  0% {
    transform: scale(0.95);
  }
  25% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.95);
  }
}
@media (max-width: 992px) {
  .advantages {
    padding: 30px 0;
  }
}
@media (max-width: 768px) {
  .advantages__block {
    flex-direction: column-reverse !important;
    margin-bottom: 50px;
  }
  .advantages__desc-title {
    text-align: center;
    margin-bottom: 20px;
  }
  .advantages__desc-title::before {
    left: 50%;
    transform: translateX(-50%);
  }
  .advantages__desc-desc {
    text-align: center;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .advantages__desc-title {
    margin-bottom: 10px;
    padding-bottom: 15px;
    font-size: 18px;
    line-height: 140%;
  }
  .advantages__desc-desc {
    font-size: 14px;
    line-height: 140%;
  }
}