/* ====================================
General Styles
==================================== */


html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #000000;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  color: #ffffff;
  margin: 0;
  padding: 0;
}


#logo-svg path {
  position: absolute;
  left: 10%;
  fill-opacity: 0; /* Initially hide the logo */
  animation: logo-appear 1.5s forwards; /* Animation duration and fill mode */
  animation-delay: calc(250ms * var(--order));
}

@keyframes logo-appear {
  from {
    fill-opacity: 0; /* Start with transparent fill */
  }
  to {
    fill-opacity: 1; /* Gradually increase fill opacity to fully visible */
  }
}

@keyframes rotate1 {
  from {
    rotate: 0deg;
  }
  
  50% {
    scale: 1.25 1.25;
  }
  
  to {
    rotate: 360deg;
  }
}

@keyframes rotate2 {
  from {
    rotate: 360deg;
  }

  25% {
    scale: 1.5 1.5;
  }
  
  50% {
    scale: 1.5 1;
    opacity: 0.6;
  }

  75% {
    scale: 1.5 0.75;
  }
  
  to {
    rotate: 0deg;
  }
}

#blob {
  background-color: white;
  height: 30vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 10%;
  translate: -50% -50%;
  border-radius: 50%;
  background: linear-gradient(to right, rgb(25, 255, 178), rgb(157, 255, 0));
  animation: rotate1 25s infinite;
  opacity: 1;
  z-index: -3;
  filter: blur(12vmax)

}

#blob_2 {
  background-color: white;
  height: 20vmax;
  aspect-ratio: 1;
  position: absolute;
  left: 50%;
  top: 10%;
  translate: -50% -50%;
  border-radius: 30%;
  background: linear-gradient(to right, rgb(0, 26, 255), rgb(119, 0, 255));
  animation: rotate2 20s infinite;
  opacity: 0.5;
  z-index: -2;
  filter: blur(12vmax)
}

ul {
  display: list-item;
  list-style: none;
}


ul li a {
  color: #ffffff;
  font-weight: 500;
  font-size: normal;
  transition: all 0.3s ease;
}

ul li a:hover {
  color: #000000;
  text-decoration: underline;
  text-underline-position: above;
  transition: all 0.3s ease;
}

.container h2 {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(-100%);
  transition: all 1.5s;
}

.container p, .container ul, .container li {
  opacity: 0;
  filter: blur(5px);
  transform: translateX(150%);
  transition: all 1.5s;
  transition-delay: calc(250ms * var(--order))
}

.swiper-slide-active h2, .swiper-slide-active h1 {
  opacity: 1;
  filter: blur(0);
  transform: translate(0%, 0%);
  scale: 1;
}

.swiper-slide-active p,.swiper-slide-active ul, .swiper-slide-active li {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
.swiper {
  width: 100%;
  height: 100%;
}
.swiper-pagination {
top: 15% !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #00000000;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* target all bullets */
.swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0);
  color:#ffffff;
  opacity: 1;
  padding: 5px 10px;
	border-radius: 0;
	width: 80px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 12px;
}


/* target the active bullet */
span.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgba(0, 0, 0, 0);
  color:#ffffff;
  opacity: 1;
  padding: 5px 10px;
	border-radius: 20px;
  width: 80px;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 18px;
  font-weight: bold;

}

