



.advantages {
  padding-bottom: 0;
  padding-top: 50px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.small-title {
  color: #ec0000;
  font-family: "Inter";
  text-align: center;
  font-size: 20px;
  font-weight: 400;
}

.advantages .title {
  text-align: center;
  margin-bottom: 80px;
}

.advantages .small-title {
  margin-bottom: 32px;
}

.advantages-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, auto);
}

.advantages-steps::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/img/line.svg") no-repeat center / contain;
  background-position: 140px 40px;
  background-size: 70%;
  transform: rotate(0deg);
  z-index: -1;
}

.step img {
  position: relative;
  z-index: 1;
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  max-width: 360px;
}

.step-text {
  padding: 16px;
}

.step-title {
  color: rgb(37, 36, 50);
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.step-desc {
  color: rgb(37, 36, 50);
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 744px) {
  .advantages {
    padding-bottom: 0;
  }

  .advantages-steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step {
    flex-direction: row;
    align-items: flex-start;
    max-width: unset;
    gap: 20px;
  }

  .step-title {
    text-align: left;
  }

  .step-desc {
    text-align: left;
  }

  .advantages-steps::before {
    background: url("/img/line-horizontal.svg") no-repeat center / contain;
    background-position: 40px -110px;
  }
}

@media (max-width: 440px) {
  .advantages {
    padding-bottom: 0;
  }

  .advantages-steps::before {
    background-position: 20px -110px;
  }

  .advantages .title {
    margin-bottom: 40px;
  }

  .advantages .small-title {
    margin-bottom: 16px;
  }

  .step img {
    width: 40px;
  }

  .step-title {
    font-size: 16px;
  }

  .devices {
    padding: 32px 20px;
  }
}
