/* 
Theme Name: G-team Theme
Description: G-team dev theme is a child theme of Hello Elementor, created by g-team
Author: G-agency
Author URI: https://g-team.org
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
*/

.elementor-button:hover {
    transform: translateY(-2px);
}

.skip-link.screen-reader-text {
    display: none !important;
}

/* Margin bottom for text editor paragraphs */
.elementor-widget-text-editor .elementor-text-editor> :last-child,
.elementor-widget-text-editor .elementor-widget-container> :last-child {
	margin-bottom: 0;
}

/* --- Animations --- */
@keyframes fadeInUpNew {
	from {
		opacity: 0;
		transform: translate3d(0, 20px, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInUp {
	animation-name: fadeInUpNew !important;
}

@keyframes fadeInRightNew {
	from {
		opacity: 0;
		transform: translate3d(20px, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInRight {
	animation-name: fadeInRightNew !important;
}

@keyframes fadeInLeftNew {
	from {
		opacity: 0;
		transform: translate3d(-20px, 0, 0);
	}

	to {
		opacity: 1;
		transform: none;
	}
}

.fadeInLeft {
	animation-name: fadeInLeftNew !important;
}