/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme/
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: 1.0.1
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
*/

.blur-bg{
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
}
.text-primary{
	color: #03989e !important;
}
.txt-black{
	color: #000 !important;
}
.txt-pink{
	color: #f6889d !important;
}
.inline-block{
	max-width: max-content !important;
}
.r-top h3{
	margin-top: 0;
}
#btn-submit-form svg *{
	fill: #03989e !important;
}
.marquee-gallery {
  overflow: hidden;
  width: 100%;
}

.marquee-gallery .gallery {
  display: flex;
	align-items: center;
  gap: 100px;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-gallery figure {
  width: 150px !important;
  height: auto;
  flex-shrink: 0;
  border-radius: 10px;
}
.marquee-gallery figure img{
	height: 80px;
	object-fit: contain;
	filter: grayscale(100%);
	transition: filter 0.5s ease; 
}
.marquee-gallery figure img:hover{
	filter: grayscale(0%);
	transition: filter 0.5s ease; 
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}