/* 
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 */
/* Colors */
.b-accent{
   position: relative;
z-index: 0;
    
}
.b-accent::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  background: linear-gradient(150deg, var(--e-global-color-f8f6709) 0%, var(--e-global-color-8f41c17) 80%);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  z-index: -1;
}
.menu-top ul li {
position: relative;
}

.menu-top ul li::before {
content: '';
position: absolute;
left: 0;
bottom: 0;
height: 1px;
width: 100%;
background: #f6a302;
transform: scaleX(0);
transform-origin: left;
transition: transform 0.3s ease-in-out;
}

.menu-top ul li:hover::before {
transform: scaleX(1);
}
