/* 
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 */
button.elementskit-menu-hamburger:hover,
button.elementskit-menu-hamburger:focus,
button.elementskit-menu-close:hover,
button.elementskit-menu-close:focus {
	background:transparent !important;
}


/* Header Css */
.sticky-header {
    transition: transform 0.3s ease;
}

.sticky-header.scrolled {
    transform: translateY(-40px);
}
a.ekit-menu-nav-link{position:relative;}
a.ekit-menu-nav-link::after {
	content: '';
	position: absolute;
	width: 0;
	height: 2px;
	background: var(--e-global-color-primary);
	bottom: 1px;
	left: 0;
	transition: width 0.3s;
}
a.ekit-menu-nav-link.active::after {
	width: 100%;
}
a.ekit-menu-nav-link:hover::after {
	width: 100%;
}

/* Global Button Css */ 
.btn-primary {
 border: unset !important;
 z-index: 1;
 background: var(--e-global-color-primary) !important;
 position: relative;
/*  -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27) !important;
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27) !important; */
 transition: all 250ms ;
 overflow: hidden !important;
	 border-radius: 10px !important;
}

.btn-primary::before {
 content: "" !important;
 position: absolute !important;
 top: 0 !important;
 left: 0 !important;
 height: 100% !important;
 width: 0 !important;
 border-radius: 10px !important;
 background-color: #212121 !important;
 z-index: -1 !important;
 -webkit-box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27) !important;
 box-shadow: 4px 8px 19px -3px rgba(0,0,0,0.27) !important;
 transition: all 250ms !important;
}

.btn-primary:hover {
}

.btn-primary:hover::before {
 width: 100% !important;
}
.fa, .fas {
    font-weight: 900;
}
.cy-box{cursor:pointer;transition:.3s ease all;}
.cy-box .icon {
    background: var(--e-global-color-primary);
    border-radius: 5px;
    align-items: center;
    justify-content: center;
	width: 64px;
    height: 64px;
    display: flex;
    transform-style: preserve-3d;
    transition: .3s ease-out;
}
.cy-box .icon::before{
	position: absolute;
    content: "";
    left: -8px;
    top: -8px;
    height: 100%;
    width: 100%;
    background: #badaf7;
    border-radius: 5px;
    transition: .3s ease-out;
    transform: translateZ(-1px);
}
.cy-box .icon i {
    color: #fff;
    font-size: 28px;
}
.cy-box:hover{  background: var(--e-global-color-primary);}
.cy-box:hover .icon {
    background: #fff;
}
.cy-box:hover .icon i {
    color: var(--e-global-color-primary);
}

.cy-box:hover .cy-text p {
    color: #fff;
}