/* Style the scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #4A176E;
  border-radius: 6px;
  transition: ease-in-out all .4s;
}

::-webkit-scrollbar-thumb:hover {
  background: #4A176E;
}

#dots{
z-index: 100;
top: calc(100% / 2 - 60px);
position: fixed;
height: auto;
right: 10px;
}

#mobile-menu{
  z-index: 101;
}

#menuAn{
transition: width 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.loading {
width: 100%;
height: 100%;
position: fixed;
top: 0;
left: 0;
background: #ffffff;
z-index: 1000;
}
.loading:after {
content: "";
width: 50px;
height: 50px;
position: absolute;
top: -30px;
right: 0;
left: 0;
bottom: 0;
margin: auto;
border: 6px solid rgb(144, 70, 229);
border-top: 6px dotted rgb(144, 70, 229);
border-bottom: 6px dotted rgb(144, 70, 229);
border-radius: 50%;
animation: loading 2s infinite;
}

@keyframes loading {
0% {
  transform: rotate(0);
}
50% {
  transform: rotate(360deg);
}
}
#dots li{
list-style-type: none;
width: 0.8vh;
height: 0.8vh;
background-color: rgb(224, 224, 224);
border-radius: 0.4vh;
margin: 2vh 1.5vh;
transition: 0.4s ease;
}

.active{
background-color: #7c3fb6 !important;
}

@keyframes fadeInUp {
  from {
      opacity: 0;
      transform: translateY(20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
      opacity: 0;
      transform: translateX(-50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
      opacity: 0;
      transform: translateX(50px);
  }
  to {
      opacity: 1;
      transform: translateX(0);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}

.animate-slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.animate-slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.feature-card {
  transition: all 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-10px);
}
.feature-card:hover .bg-gradient-to-br {
  filter: brightness(1.1);
}
