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

/*Moving object*/
@keyframes wiggle {
    0% {
        transform: rotate(0deg) translate(-5px) rotate(0deg);
    }

    100% {
        transform: rotate(360deg) translate(-5px) rotate(-360deg);
    }
}
.magnet {
    animation: wiggle 3s linear infinite;
    z-index: 10 !important;
}

.magnet-slow {
    animation: wiggle 3.5s infinite;
}

/*Loop Items Zoom-In*/
.service-loop .e-loop-item {
    opacity: 0; /* Initially hidden */
    transform: scale(0.8); /* Shrink the size */
    transition: opacity 0.6s ease, transform 0.6s ease; /* Smooth transition */
}

.service-loop .e-loop-item.in-view {
    opacity: 1; /* Fully visible */
    transform: scale(1); /* Return to original size */
}

/*Mark animation*/
mark.highlight {
    color: #000;
    background-color: none;
    background: linear-gradient(90deg, #699eff, #83afff);
    background-size: 0% 80%;
    background-position: left center;
    background-repeat: no-repeat;
    transition: all 1s linear;
}

.animatedBg {
    background-size: 100% 70% !important;
}

/* custom wrapper header */
.c-wrapper-header{
	width: 19% !important;
}
.c-wrapper-header .elementor-widget-wrap{
	flex-direction: row;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap;
	gap:18px;
}

/*switcher custom*/
.language-switcher {
	width: auto;
    display: flex;
    align-items: center;
    gap: 8px;
	font-weight: 600;
	color: #5b5b5b !important;
}
.language-switcher .lang-item {
    text-decoration: none;
	color: #5b5b5b;
    
}
.language-switcher .lang-item.active {
	color: #146ef5;
}

.title-text-page h1 {
	font-size:80px !important;
	line-height: 92px !important;
}
@media (max-width: 1024px) {
    .title-text-page h1 {
        font-size: 50px !important;
        line-height: 60px !important;
    }
}
@media (max-width: 767px) {
   .title-text-page h1 {
        font-size: 35px !important;
        line-height: 40px !important;
    }
	.tabs-slider{
		justify-content: space-between !important;
		overflow-x: auto;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}
	.tabs-slider::-webkit-scrollbar {
  		display: none;
	}
}