/* 
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 */
:root{
		--main-bg:#151515;
		--primary-btn-bg:#F37634;
}
	/*MOBILE NAVIGATION*/
.menu-burger {
  background-color: var(--main-bg);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
  color:var(--primary-btn-bg);
  width:160px;
  border-radius: 6px
}
.menu-burger:hover,.menu-burger:focus,.menu-burger:active{
    background: var(--main-bg);
    color:var(--primary-btn-bg);
    outline: none;
}
.line {
  fill: none;
  stroke: var(--primary-btn-bg);
  stroke-width: 7;
  transition: all 600ms cubic-bezier(0.4, 0, 0.2, 1),
    stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.line1 {
  stroke-dasharray: 60 207;
  stroke-width: 7;
}
.line2 {
  stroke-dasharray: 60 60;
  stroke-width: 7;
}
.line3 {
  stroke-dasharray: 60 207;
  stroke-width: 7;
}
.opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 7;
}
.opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 7;
}
.opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 7;
}



	.mobile_dropdown{
		max-height: 0;
        opacity: 0;
        pointer-events: none;;
        transition: ease all .2s;
/*         top:100px!important; */
       
	}

    .mobile_dropdown.active-mobile{
		max-height: 1900px;
        opacity: 1;
        pointer-events: all;
        transition: max-height 0.5s ease-in-out, opacity 0.5s ease-in-out;
	}

	
.click-only a{
		cursor:pointer!important;
	}


