/* 
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 */
/* =============================================================================
 * 
 *		FOOTER
 *
 * ===========================================================================*/
.elementor-location-footer a, .elementor-location-footer a:hover {
	color: #585858;
}
/*
 * Animation Tweaks
 * ---------------------------------------------------------------------------------------------------*/
@keyframes fadeInUpNew {
	0% { opacity: 0; -webkit-transform: translate3d(0, 50px, 0); transform: translate3d(0, 50px, 0); }
	100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
.fadeInUp {
	animation-name: fadeInUpNew !important;
}
@keyframes fadeInDownNew {
	0% { opacity: 0; -webkit-transform: translate3d(0, -50px, 0); transform: translate3d(0, -50px, 0); }
	100% { opacity: 1; -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
}
.fadeInDown {
	animation-name: fadeInDownNew !important;
}
@keyframes fadeInLeftNew {
	0% { opacity: 0; transform: translate3d(-50px, 0, 0); }
	100% { opacity: 1; transform: translate3d(0, 0, 0); }
}
.fadeInLeft {
	animation-name: fadeInLeftNew !important;
}
@keyframes fadeInRightNew {
	from { opacity: 0; transform: translate3d(50px, 0, 0) }
	to { opacity: 1; transform: none }
}
.fadeInRight {
	animation-name: fadeInRightNew !important
}
@keyframes zoomInNew {
  from { opacity: 0; -webkit-transform: scale3d(0.95, 0.95, 0.95); transform: scale3d(0.95, 0.95, 0.95);
  }
  50% { opacity: 1; }
}
.zoomIn {
    animation-name: zoomInNew !important;
}
.animated.animated-fast {
	-webkit-animation-duration: 500ms;
	animation-duration: 500ms;
}