.abs-reveal {
opacity: 0;
transform: translateY(40px);
transition:

        opacity 0.8s ease,

        transform 0.8s ease;
}
.abs-reveal.abs-visible {
opacity: 1;
transform: translateY(0);
}
.abs-fade-in {
opacity: 0;
transition:

        opacity 0.8s ease;
}
.abs-fade-in.abs-visible {
opacity: 1;
}
.abs-slide-up {
opacity: 0;
transform: translateY(60px);
transition:

        opacity 0.8s ease,

        transform 0.8s ease;
}
.abs-slide-up.abs-visible {
opacity: 1;
transform: translateY(0);
}
.abs-slide-left {
opacity: 0;
transform: translateX(-50px);
transition:

        opacity 0.8s ease,

        transform 0.8s ease;
}
.abs-slide-left.abs-visible {
opacity: 1;
transform: translateX(0);
}
.abs-slide-right {
opacity: 0;
transform: translateX(50px);
transition:

        opacity 0.8s ease,

        transform 0.8s ease;
}
.abs-slide-right.abs-visible {
opacity: 1;
transform: translateX(0);
}
.abs-hover-card {
transition:

        transform 0.3s ease,

        box-shadow 0.3s ease;
}
.abs-hover-card:hover {
transform: translateY(-8px);
box-shadow:

        0 15px 35px

        rgba(0, 0, 0, 0.10);
}
.abs-animated-button {
transition:

        transform 0.3s ease,

        box-shadow 0.3s ease,

        background 0.3s ease;
}
.abs-animated-button:hover {
transform: translateY(-3px);
box-shadow:

        0 8px 20px

        rgba(15, 139, 141, 0.25);
}
.abs-stagger > * {
opacity: 0;
transform: translateY(30px);
transition:

        opacity 0.6s ease,

        transform 0.6s ease;
}
.abs-stagger.abs-visible > *:nth-child(1) {
transition-delay: 0.1s;
}
.abs-stagger.abs-visible > *:nth-child(2) {
transition-delay: 0.2s;
}
.abs-stagger.abs-visible > *:nth-child(3) {
transition-delay: 0.3s;
}
.abs-stagger.abs-visible > *:nth-child(4) {
transition-delay: 0.4s;
}
.abs-stagger.abs-visible > *:nth-child(5) {
transition-delay: 0.5s;
}
.abs-stagger.abs-visible > * {
opacity: 1;
transform: translateY(0);
}
.abs-hero-animate {
animation:

        absHeroFade 1s ease forwards;
}
@keyframes absHeroFade {
from {
opacity: 0;
transform: translateY(25px);
}
to {
opacity: 1;
transform: translateY(0);
}

}
@media (prefers-reduced-motion: reduce) {
* {
animation-duration: 0.01ms !important;
animation-iteration-count: 1 !important;
transition-duration: 0.01ms !important;
scroll-behavior: auto !important;
}

}
