/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 1.0.1
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
*/

/*
    Add your custom styles here
*/
/* #fixed-header{ padding-bottom: 200px; } */
/*  */
#fixed-header{ background: rgba(255, 255, 255, 0.0); transition: 0.5s all ease-in-out;  }
#fixed-header .logo img { transition: 0.5s all ease-in-out; }
#fixed-header.scroll { background: rgba(255, 255, 255, 0.9); }
#fixed-header.scroll .logo img { height: 50px; width: auto; }



@media only screen and (max-width: 1024px) {
    #fixed-header { padding-bottom: inherit; }
}

/*------------------------------------------------*\
    Improve Elementor Animations
\*------------------------------------------------*/
.elementor-widget.animated {
    animation-timing-function: cubic-bezier(0.29, 0, 0.3, 1);
}
/* FadeInDown */
@keyframes kgFadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -18px, 0); /* Less movement than default */
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.elementor-element .animated.fadeInDown {
    animation-name: kgFadeInDown !important; /* Ensure this takes precedence */
}
/* FadeInLeft */
@keyframes kgFadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-18px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.elementor-element .animated.fadeInLeft {
    animation-name: kgFadeInLeft !important;
}
/* FadeInRight */
@keyframes kgFadeInRight {
    from {
        opacity: 0;
        transform: translate3d(18px, 0, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.elementor-element .animated.fadeInRight {
    animation-name: kgFadeInRight !important;
}
/* FadeInUp */
@keyframes kgFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 18px, 0);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
.elementor-element .animated.fadeInUp {
    animation-name: kgFadeInUp !important;
}