/* 
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 */



/* menu */
.ra.header.menu .e-n-menu-title {
    position: relative;
}
.ra.header.menu .e-n-menu-title:after {
    content: "";
    width: 11px;
    height: 5px;
    background: #118379;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    border-radius: 2.5px;
    opacity: 0;
    transition: .4s ease;
	border:none;
}
.ra.header.menu .e-n-menu-title.e-current:after ,.ra.header.menu .e-n-menu-title:hover:after {
	opacity:1;
	transition:.4s ease;
}
/* button */
.ra.button .elementor-button-icon {
    transition: .4s ease-in-out;
	font-size: larger;
}
.ra.button:hover .elementor-button-icon {
    transform: translateX(-5px);
    transition: .4s ease-in-out;
}
.ra.button.gradiant::before {
content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    padding: 2px;
    background: linear-gradient(130deg, #ffffff66, rgba(244, 244, 244, 0));
    -webkit-mask: linear-gradient(white 0 0) content-box, linear-gradient(white 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: .6s;
}