.hide-scrollbar::-webkit-scrollbar {
    display: none;
  }

  /* Hide scrollbar in Firefox */
  .hide-scrollbar {
    scrollbar-width: none; /* Firefox */
  }
  
  .fade-in {
    opacity: 0;
    animation: fadeIn 1s forwards;
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
.scroll-container {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  white-space: nowrap;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.textlogo {
  height: 85px;
}