/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
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: 2.0.0
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 */

html {
    scroll-behavior: smooth;
}

body:not(.elementor-editor-active) [img-reveal],
body:not(.elementor-editor-active) [text-split] {
	opacity: 0;
}

body {
	cursor: default !important;
}

.cursor {
	cursor: none;
}

.cursor .elementor-heading-title div {
	transition: color 0.25s ease;
}

.cursor .elementor-heading-title div:hover {
    color: var(--e-global-color-5f13cf8) !important;
}

[text-split] .word {
	white-space: nowrap;
}

/* animated heading */

body:not(.elementor-editor-active) .elementor-widget-heading.typing .elementor-heading-title {
    opacity: 0;
}

/* animated button */

.elementor-widget-button.animate .elementor-button {
    transition: all 0.2s;
}

.elementor-widget-button.animate .elementor-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.elementor-widget-button.animate .elementor-button:active {
    transform: translateY(-1px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.elementor-widget-button.animate .elementor-button::after {
    content: "";
    display: inline-block;
    height: 100%;
    width: 100%;
    border-radius: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: all 0.4s;
}

.elementor-widget-button.animate .elementor-button::after {
    background-color: #fff;
}

.elementor-widget-button.animate .elementor-button:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0;
}

/* animated nav-menu */

.elementor-widget-nav-menu.animate .elementor-item {
    position: relative;
    transition: color 0.3s ease-in-out;
}

.elementor-widget-nav-menu.animate .elementor-item::before {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    border-radius: 2px;
    transform: scaleX(0);
    transition: transform 0.3s ease-in-out;
}

.elementor-widget-nav-menu.animate .elementor-item:hover::before {
    transform: scaleX(1);
}

.elementor-widget-nav-menu.animate .elementor-item.inactive {
    color: var(--e-global-color-secondary);
}

.elementor-widget-theme-site-logo.animate a {
    transition: opacity 0.3s ease-in-out;
}

.elementor-widget-theme-site-logo.animate a.inactive {
    opacity: 0.6;
}