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

/* Header */
.page-header {
	display: none;
}

.mutza-header {
    position: sticky;
    top: 0;
    background: rgba(238, 198, 103, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
}

.mutza-circles-parent {
	position: relative !important;
}

#mutza-circle-1 .mutza-back-circle-1 {
  position: absolute;
  z-index: -1;	
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
	width: 600px !important;
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(6); }
}

#mutza-circle-2 .mutza-back-circle-2 {
  position: absolute;
  z-index: -1;	
  backdrop-filter: blur(10px);
  animation: float2 8s ease-in-out infinite;
}

@keyframes float2 {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(3px); }
  100% { transform: translateY(-4); }
}