/*
Theme Name: Hello Elementor Child
Theme URI: https://elementor.com/
Description: Child theme for Hello Elementor.
Author: Your Name
Template: hello-elementor
Version: 1.0.0
Text Domain: hello-elementor-child
*/


.anim-section{
    overflow:hidden;
}

.anim-section .anim-up,
.anim-section .anim-scale,
.anim-section .anim-zoom{

    opacity:0;

    transition:
        transform .85s cubic-bezier(.16,1,.3,1),
        opacity .85s cubic-bezier(.16,1,.3,1),
        filter .85s cubic-bezier(.16,1,.3,1);

    will-change:transform,opacity,filter;
}

/* Fade Up */

.anim-section .anim-up{

    transform:
        translate3d(0,50px,0)
        scale(.98);

}

/* Images */

.anim-section .anim-scale{

    transform:
        scale(.9);

}

/* Icons */

.anim-section .anim-zoom{

    transform:
        scale(.7);

}

/* Active */

.anim-section .anim-active{

    opacity:1;

    transform:none;

    filter:none;

}