.swiper-wrapper {
  transition-timing-function: linear;
}

.glaviro-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.glaviro-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 1;
}

.glaviro-logo-image {
  display: block;
  width: auto;
  height: 38px;
  max-width: 180px;
  object-fit: contain;
}

@media (min-width: 640px) {
  .glaviro-logo-image {
    height: 42px;
    max-width: 205px;
  }
}

.glaviro-logo-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #bfff5a;
  color: #101010;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.glaviro-logo-text {
  color: currentColor;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

/* Animation */
.scrolling {
  animation: fadeInDown 0.9s 1;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 5px 2px rgb(0 0 0 / 10%);
  background: rgba(255, 255, 255, 0.8);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    transform: translateZ(0);
  }
}

.ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple-animation 0.6s linear;
  background: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes ripple-animation {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

.rotate-animate {
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

.up-down-40 {
  animation: up-down 3s linear infinite backwards;
}

@keyframes up-down {
  from {
    transform: translateY(-40px);
  }
  to {
    transform: translateY(40px);
  }
}

.infinite-text-slider {
  animation: infinite-text-slider 8s linear infinite backwards;
}

@keyframes infinite-text-slider {
  from {
    transform: translateX(-100%);
  }
}
