.why-us {
  background-color: transparent; /* Цвет фона для секции */
  padding: 0 5.6%;
  padding-top: 14rem;
}

.why-us-title {
  text-align: center; /* Выравнивание заголовка по центру */
  border-bottom: 3px solid #5a808a;
  margin-bottom: 6rem;
  padding-bottom: 6rem;
  font-family: "Exo", sans-serif;
  line-height: 5rem;
  font-weight: 700;
  font-size: 4rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Три колонки одинаковой ширины */
  grid-gap: 2%; /* Отступы между элементами сетки */
}

.why-us-item {
  display: flex;
  align-items: left; /* Выравнивание элементов по центру */
  position: relative;
  margin-bottom: 11rem;
  padding-left: 5rem;
  margin-left: 3rem;
  height: 8rem;
}

.why-us-icon {
  background-color: #d9ae4f; /* Цвет фона иконки */
  border-radius: 50%; /* Скругление краев иконки */
  width: 8rem; /* Размеры иконки */
  height: 8rem;
  position: relative; /* Позиционирование для вложенного текста */
  margin-right: 1rem; /* Отступ между иконкой и текстом */
  position: absolute;
  top: -2.7rem;
  left: -1.5rem;
  z-index: 1; /* Устанавливаем z-index выше, чем у иконки */
}

.icon-text {
  position: absolute;
  top: 55%;
  left: -35%;
  transform: rotate(-90deg);
  font-weight: bold;
  color: #5a808a;
  font-family: "Exo", sans-serif;
  line-height: 5rem;
  font-weight: 700;
  font-size: 6.5rem;
}

.why-us-text {
  text-align: left;
  line-height: 2.5rem;
  font-weight: 400;
  font-size: 1.8rem;
  z-index: 2; /* Устанавливаем z-index выше, чем у иконки */
}

@media (max-width: 768px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-us-title {
    font-size: 3rem;
  }
  .why-us {
    /* margin: 6rem 0; */
    padding-top: 5rem;
  }
  .why-us-item {
    height: 6rem;
  }
}

@media (max-width: 480px) {
  .why-us-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 8rem;
  }
  .why-us-title {
    font-size: 2.2rem;
    border: none;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .why-us {
    /* margin: 4rem 0; */
    padding-top: 4rem;
  }
  .why-us-item {
    height: 2rem;
    margin-bottom: 3rem;
    padding-left: 2rem;
    margin-left: 1rem;
  }

  .why-us-text {
    line-height: 1.5rem;
    font-size: 1.5rem;
  }

  .why-us-icon {
    width: 3rem; /* Размеры иконки */
    height: 3rem;
    margin-right: 1rem; /* Отступ между иконкой и текстом */
    position: absolute;
    top: -1rem;
    left: 0;
  }

  .icon-text {
    top: 30%;
    left: -20%;
    line-height: 3rem;
    font-size: 2.2rem;
  }
}
