    .fade-slide {
      opacity: 0;
      transition: opacity 1s ease-in-out;
      pointer-events: none;
      z-index: 0;
    }
    .fade-slide.active {
      opacity: 1;
      pointer-events: auto;
      z-index: 10;
    }
    ::-webkit-scrollbar {
      width: 10px;
    }
    ::-webkit-scrollbar-track {
      background: #f1f1f1;
    }
    ::-webkit-scrollbar-thumb {
      background-color: #3F2275;
      border-radius: 6px;
      border: 2px solid #f1f1f1;
    }
    ::-webkit-scrollbar-thumb:hover {
      background-color: #2C1B57;
    }
    html {
      scroll-behavior: smooth;
    }
    #backToTop {
      display: none;
    }