/* 
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 */
/* #dow-btn {
	position:relative;
}
#dow-btn:before{
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #df4c18;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
#dow-btn:hover:before{
	transform: scaleX(1);
	transition: transform 0.3s ease-in-out;
} */
html  {
    scroll-behavior: auto !important; /* Disables default smooth scrolling */
}
#contact-btn{
	position: relative;
/* 	background:#e85424; */
	padding: 14px 40px;
	border-bottom: 1px solid;
	border-radius: 8px;
/* 	margin-left:25px; */
	font-weight: bold;
	font-size: 14px;
}
#contact-btn .elementor-button-content-wrapper{
	position:relative;
	
}
#contact-btn span.elementor-button-text {
	display: inline-block;
    position: relative;
    transition: .5s ease-out;
    will-change: transform;
}
#contact-btn:hover span.elementor-button-text{
    transform: translate3d(-1rem, 0, 0);
}
#contact-btn span.elementor-button-icon{
    height: 20px;
    width: 20px;
    position: absolute;
    right: 0;
    opacity: 0;
    transform: translateY(-50%);
    will-change: right, opacity;
	top: 50%;
    transition: .5s ease-out;
	justify-content:center;
}
#contact-btn:hover span.elementor-button-icon {
    opacity: 1;
    right: -1.3rem;
}