@media (prefers-reduced-motion: no-preference) { .animation-luxe-up,
.animation-luxe-left,
.animation-luxe-right,
.animation-luxe-down {
z-index: 2;
position: relative;
opacity: 0;
animation-duration: 1.1s;
animation-fill-mode: both;
animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
} .animation-luxe-up {
animation-name: animation-luxe-up;
}
@keyframes animation-luxe-up {
from {
opacity: 0;
transform: translate3d(0, 2.5rem, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
} .animation-luxe-left {
animation-name: animation-luxe-left;
}
@keyframes animation-luxe-left {
from {
opacity: 0;
transform: translate3d(-2.5rem, 0, 0) perspective(600px) rotateY(-5deg);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0) perspective(600px) rotateY(0deg);
}
} .animation-luxe-right {
animation-name: animation-luxe-right;
}
@keyframes animation-luxe-right {
from {
opacity: 0;
transform: translate3d(2.5rem, 0, 0) perspective(600px) rotateY(5deg);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0) perspective(600px) rotateY(0deg);
}
} .animation-luxe-down {
animation-name: animation-luxe-down;
}
@keyframes animation-luxe-down {
from {
opacity: 0;
transform: translate3d(0, -2.5rem, 0);
}
to {
opacity: 1;
transform: translate3d(0, 0, 0);
}
} .entry-content > .wp-block-heading,
.entry-content > .wp-block-cover,
.entry-content > .wp-block-cover .wp-block-heading,
.entry-content > .wp-block-paragraph,
.entry-content > .wp-block-group,
.entry-content .wp-block-columns > .wp-block-column,
.entry-content .wp-block-group > .wp-block-group__inner-container > *,
.entry-content .wp-block-cover__inner-container > *,
.entry-content .wp-block-buttons .wp-block-button,
.entry-content .wp-block-list li,
.entry-content .wp-block-post,
.entry-content [class*="wp-block-uagb"] {
opacity: 0;
}
}