@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&display=swap");
.noto-sans-regular {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.noto-sans-bold {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.noto-sans-black {
  font-family: "Noto Sans", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.noto-sans-regular-italic {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.noto-sans-bold-italic {
  font-family: "Noto Sans", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.noto-sans-black-italic {
  font-family: "Noto Sans", sans-serif;
  font-weight: 900;
  font-style: italic;
}

* {
  font-family: "Noto Sans", sans-serif;
}

.wow {
  visibility: hidden;
}

.rays-animate {
  animation: spin-rays 5s linear infinite;
}

@keyframes spin-rays {
  to {
    transform: rotate(360deg);
  }
}
/* Define the floating animation */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px); /* Moves up by 20px */
  }
  100% {
    transform: translateY(0px); /* Returns to starting point */
  }
}
/* Apply it to your element */
.floating-element {
  animation: float 3s ease-in-out infinite;
}

/* Define the zoom and fade lifecycle */
@keyframes zoomFade {
  0% {
    transform: scale(0.6);
    opacity: 0.3;
  }
  100% {
    transform: scale(3.4); /* Expands past its original size */
    opacity: 0; /* Fades completely out */
  }
}
/* Apply it to your element */
.pulse-out-element {
  animation: zoomFade 2.5s ease-out infinite;
}

/* One button animation */
.one-button-animate {
  position: relative;
  overflow: hidden;
  cursor: pointer; /* Ensures user knows it's clickable */
  /* The sliding background element */
}
.one-button-animate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Original position (hidden off-screen to the left) */
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
  /* Crucial: Tells the browser to animate the 'left' property both ways */
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.one-button-animate {
  /* Button Text State */
}
.one-button-animate span {
  position: relative;
  z-index: 1;
  color: var(--color-onone);
  /* Smooth transition for the text color change both ways */
  transition: color 0.3s ease;
}
.one-button-animate:hover::before {
  left: 0;
}
.one-button-animate:hover span {
  color: var(--color-one);
}

/* Two button animation */
/* Button Base State */
.two-button-animate {
  position: relative;
  overflow: hidden;
  cursor: pointer; /* Ensures user knows it's clickable */
  /* The sliding background element */
}
.two-button-animate::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%; /* Original position (hidden off-screen to the left) */
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 0;
  /* Crucial: Tells the browser to animate the 'left' property both ways */
  transition: left 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.two-button-animate {
  /* Button Text State */
}
.two-button-animate span {
  position: relative;
  z-index: 1;
  color: var(--color-ontwo);
  /* Smooth transition for the text color change both ways */
  transition: color 0.3s ease;
}
.two-button-animate:hover::before {
  left: 0;
}/*# sourceMappingURL=style.css.map */