.advantages {
  background-color: #F5F5F5;
  padding-top: 80px;
  padding-bottom: 60px;
}

.advantages__item--icon {
  width: 100px;
  height: 100px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin-bottom: 10px;
}

.advantages__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.advantages__item {
  /* margin-bottom: 30px; */
}

.advantages__item--title {
  font-family: 'Manrope';
  font-weight: 500;
  font-size: 24px;
  line-height: 142%;
  color: #333333;
  margin-bottom: 5px;
}

.advantages__item--text {
  font-family: 'Manrope';
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  color: #333333;
}

@media (max-width: 768px) {
  .advantages__inner {
    grid-template-columns: 1fr;
  }
}