.start_review {
  background-color: rgb(26, 24, 27);
  transition: all 0.5s ease; /* Плавное изменение фона */
}

.start_review .concon {
  display: flex;
  justify-content: space-between;
  padding: 60px;
  gap: 50px;
  transition: all 0.5s ease; /* Плавное изменение layout */
}

.text_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s ease; /* Плавное изменение текстового блока */
}

.text_content img {
  width: 150px;
  height: 150px;
  margin-bottom: 30px;
  transition: all 0.5s ease; /* Плавное изменение логотипа */
}

.text_content p {
  text-align: left;
  margin-bottom: 3vh;
  font-size: 18px;
  color: rgb(232, 225, 219);
  transition: all 0.3s ease; /* Плавное изменение текста */
}

.text_with_pointer {
  display: flex;
  align-items: center;
  transition: all 0.5s ease; /* Плавное изменение блока с указателем */
}

.text_with_pointer img {
  width: 50px;
  height: 50px;
  margin-left: 50px;
  transition: all 0.5s ease; /* Плавное изменение указателя */
}

.slider-re {
  align-self: center;
  transition: all 0.5s ease; /* Плавное изменение слайдера */
}

@media (max-width: 1037px) {
  .start_review .concon {
    padding-top: 50px;
    flex-direction: column;
    gap: 30px; /* Добавляем промежуток между элементами */
  }

  .text_content {
    order: 1; /* Меняем порядок элементов */
  }

  .slider-re {
    order: 2;
    width: 100%; /* Занимает всю ширину */
  }

  .text_with_pointer {
    justify-content: left; /* Центрируем элементы */
    margin-top: 20px;
  }

  .text_with_pointer img {
    transform: rotate(90deg);
    margin-left: 20px; /* Уменьшаем отступ */
    margin-right: 20px;
  }

  .text_content p {
    text-align: left; /* Центрируем текст */
    margin-bottom: 2vh;
  }
}

/* Дополнительные медиа-запросы для более плавных переходов */
@media (max-width: 768px) {
  .start_review .concon {
    padding: 30px 20px; /* Уменьшаем отступы */
  }

  .text_content img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
  }
}

@media (max-width: 480px) {
  .text_content p {
    font-size: 16px; /* Уменьшаем размер шрифта */
  }

  .text_with_pointer img {
    width: 80px;
    height: 80px;
  }
}
