/* 
Theme Name: New Media Relations
Theme URI: -
Description: Child theme of Hello Elementor, created by New Media Relations
Author: New Media Relations
Author URI: https://newmediarelations.nl
Template: hello-elementor
Version: 1.0.21
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Fade In Up with Blur */
.fadeInUpBlur {
    animation: fadeInUpBlur 1s both;
}

@keyframes fadeInUpBlur {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Fade In Right with Blur */
.fadeInRightBlur {
    animation: fadeInRightBlur 1s both;
}

@keyframes fadeInRightBlur {
    0% {
        opacity: 0;
        transform: translateX(20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

/* Fade In Left with Blur */
.fadeInLeftBlur {
    animation: fadeInLeftBlur 1s both;
}

@keyframes fadeInLeftBlur {
    0% {
        opacity: 0;
        transform: translateX(-20px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

.has-text-align-justify {
    text-align: justify;
}