.rotating-text #rotating-text {
      transition: opacity 0.5s ease-in-out;
      opacity: 1;
     font-weight: 500;
     color:#f26125;
    }
.rotating-text .fade-out {
      opacity: 0;
    }

.rotating-text h2 {
    font-weight: 400;
   font-size: 1.44rem;
   text-align: center;

 @keyframes slideInTop {
      0% {
        transform: translateY(-30px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
}