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

.fade:not(.elementor-element-edit-mode) {
  opacity: 0;
  transform: translateY(40px);
  transition: 1s ease-in-out;
  will-change: transform, opacity;
}

.fade.fadeIn {
  opacity: 1;
  transform: translateY(0px);
}
.site-header{
	
	transition: transform 0.3s ease, opacity 0.3s ease;
}

.site-header.fixed_header {
  position: fixed !important;
	top:0;
	width: 100%;
  background: #fff;
	z-index: 1;
  box-shadow: 5px 5px 5px rgb(0, 0, 0, 0.2);
	transform: translateY(-100%);
  opacity: 0;
}
.site-header.fixed_header.visible {
  transform: translateY(0);
  opacity: 1;
}
.site-header .site-navigation ul.menu li a:hover{
	color: #cd0301;
}
.site-footer{
	padding: 32px;
}
.site-footer .site-branding{
	align-items: center;
}
.site-footer.footer-stacked .footer-inner{
	gap: 8px;
}
.site-navigation-toggle-holder .site-navigation-toggle-icon{
	width: 2rem;
}
.ff-el-form-check .ff_t_c{
	color: #ffffff;
    font-family: "Lato", Sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
}
.ff-el-form-check .ff_t_c a:hover{
	color: #cd0301;
	opacity: 0.8;
}
.ff-message-success{
	color: white;
}