/* 
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
*/
#menu-main-btn .menu-main-btn { cursor: pointer; position: relative; display: block; width: 60px; height: auto; padding: 20px 0; background: #fff; border-radius: 0; }
#menu-main-btn .menu-main-btn span { background: #333; width: 30px; height: 2px; display: block; margin: 0 auto 8px; transition: all 0.5s ease; }
#menu-main-btn .menu-main-btn span:last-of-type { margin-bottom: 0; }
#menu-main-btn .menu-main-btn:before { content: 'Menu'; text-transform: uppercase; position: absolute; left: -60px; color: #fff; }
#main-custom-header.menu--open .menu-main-btn { padding: 10px 0; }
#main-custom-header.menu--open .menu-main-btn span { margin: 0; opacity: 0; padding: 1px; }
#main-custom-header.menu--open .menu-main-btn span:first-of-type { opacity: 1; transform: rotate(45deg) translateY(3px) translateX(3px); }
#main-custom-header.menu--open .menu-main-btn span:last-of-type { opacity: 1; transform: rotate(135deg); }
#menu-main-navigation:not([style]) { display: none; }
.menu--open #menu-main-navigation, .elementor-editor-active.postid-59 #menu-main-navigation { display: flex; }

body .elementor-field-group .elementor-field-textual:focus {
    box-shadow: none !important;
}
/* 
.animated.animated-slow {
    animation-duration: 3s;
} */
/*------------------------------------------------*\
    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;
}