/*# sourceMappingURL=http://localhost/nexusco2025/Files/Assets/Css/Animation.scss.map*/.cw1 {
  --cw:1;
}
.cw2 {
  --cw:2;
}
.cw3 {
  --cw:3;
}
.cw4 {
  --cw:4;
}
.cw5 {
  --cw:5;
}
.cw6 {
  --cw:6;
}
.cw7 {
  --cw:7;
}
.cw8 {
  --cw:8;
}
.cw9 {
  --cw:9;
}
.cw10 {
  --cw:10;
}
.cw11 {
  --cw:11;
}
.cw12 {
  --cw:12;
}
@media (min-width: 692px) {
  .animation-block:not(.has-started) {
    opacity: 0;
  }
}
.animation-block[data-animation-type*="animation-fade"][class*="animation-fade"]:not(.has-started), .animation-block[data-animation-type*="animation-fade"]:not(.has-started) [class*="animation-fade"] {
  opacity: 0;
  animation: none;
}
.animation-fade-in, .animation-fade-up, .animation-fade-right, .animation-fade-down, .animation-fade-left {
  opacity: 0;
}
.animation-fade-in {
  animation: fade-in 0.7s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation-fade-up {
  animation: fade-up 0.7s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes fade-up {
  0% {
    transform: translate(0, 10%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.animation-fade-right {
  animation: fade-right 0.7s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes fade-right {
  0% {
    transform: translate(-10%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.animation-fade-down {
  animation: fade-down 0.7s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes fade-down {
  0% {
    transform: translate(0, -10%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.animation-fade-left {
  animation: fade-left 0.7s forwards cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
@keyframes fade-left {
  0% {
    transform: translate(10%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
