.reasons {
  border-radius: 32px;
  background: var(--bg-color);
  width: 96%;
  margin-left: 2%;
}

.reasons__content {
  display: flex;
  flex-direction: column;
  width: 92%;
  margin-top: 4%;
  margin-left: 4%;
}

.reasons__title {
  font-size: 58px;
  line-height: 117%;
  color: var(--black-color);
}

.reasons__title-accent {
  color: var(--accent-color);
}

.reasons__items {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-top: 3%;
  margin-bottom: 3%;
}

.reasons__item {
  display: flex;
  flex-direction: column;
  width: 32%;
  border-radius: 20px;
  box-shadow: 0 4px 6px 0 rgba(176, 182, 186, 0.1);
  background: var(--main-color);
  padding: 2%;
  margin-bottom: 2%;
}

.reasons__item-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  background: #e9eff3;
  border-radius: 9px;
}

.reasons__item-title {
  font-weight: 600;
  font-size: 22px;
  line-height: 136%;
  color: var(--black-color);
  margin-top: 5%;
}

.reasons__item-descr {
  font-size: 16px;
  line-height: 163%;
  color: var(--text-color);
  margin-top: 2%;
}

@media (width <=1440px) {
  .reasons__title {
    font-size: 43px;
  }

  .reasons__item-title {
    font-size: 15px;
  }

  .reasons__item-descr {
    font-size: 12px;
    line-height: 160%;
    margin-top: 1%;
  }

  .reasons__item-logo-container {
    width: 36px;
    height: 36px;
  }
}

@media (width <=1280px) {
  .reasons__title {
    font-size: 40px;
  }

  .reasons__item-title {
    font-size: 14px;
  }

  .reasons__item-descr {
    font-size: 11px;
  }

  .reasons__item-logo-container {
    width: 33px;
    height: 33px;
  }
}

@media (width <=1024px) {
  .reasons__title {
    font-size: 38px;
  }

  .reasons__item {
    width: 49%;
  }
}

@media (width <=576px) {
  .reasons__title {
    font-size: 28px;
  }

  .reasons__items {
    flex-direction: column;
    margin-top: 4%;
  }

  .reasons__item {
    width: 100%;
    margin-bottom: 3%;
    padding: 4%;
  }

  .reasons__item-title {
    font-size: 18px;
  }

  .reasons__item-descr {
    font-size: 14px;
    margin-top: 3%;
    margin-bottom: 2%;
  }
}