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

/* COMMON START */
html {
	/* 11 - 16 px */
	font-size: clamp(0.688rem, 0.063rem + 0.781vw, 1rem);
}
@media screen and (max-width: 767px) {
	html {
		/* 16 - 24 px */
		font-size: clamp(1rem, 0.523rem + 2.036vw, 1.5rem);
	}
}
@media (768px <= width <= 1023px) {
	html {
		/* 16 - 20 px */
		font-size: clamp(1rem, 0.25rem + 1.563vw, 1.25rem);
	}
}
/* button */
.elementor-button {
	cursor: pointer;
}
.btn-icon .elementor-button-icon {
    align-items: flex-start !important;
}
/* title line */
.title--line .elementor-heading-title {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.title--line .elementor-heading-title:before {
    content: "";
    display: block;
    width: 3rem;
    height: 1px;
    background-color: var(--e-global-color-primary);
}
/* COMMON END */

/* HEADER START */
.header {
	transition: all .5s ease !important;
}
/* sticky */
.header.header-hide {
	top: 0 !important;
    transform: translateY(-100%);
}
.header.header-visible,
.header:not(.header-visible):hover {
	top: 0 !important;
	background-color: white !important;
}
/* logo */
.logo .elementor-icon-wrapper {
    display: flex;
}
.logo svg {
	height: auto !important;
}
/* burger menu */
.burger-popup .dialog-widget-content {
    backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}
.burger-popup .elementor-location-popup,
.burger-popup .elementor-location-popup .wrapper {
	height: 100% !important;
}
/* wpml */
.wpml-ls-legacy-dropdown {
    width: auto !important;
    max-width: none !important;
    background-color: transparent !important;
}
.wpml-ls-item-legacy-dropdown * {
	transition: all .3s ease;
}
.wpml-ls-item-legacy-dropdown a {
    color: black;
    border: 1px solid transparent;
	border-bottom: 0 !important;
    font-weight: 500;
    background-color: transparent;
    padding: 8px;
    line-height: 1;
}
.wpml-ls-item-legacy-dropdown:hover a {
	border-color: white !important;
	background: #e6e0dd !important;
}
.wpml-ls-item-legacy-dropdown .wpml-ls-sub-menu a {
    border: none !important;
    background-color: transparent !important;
}
.wpml-ls-item-legacy-dropdown:hover .wpml-ls-sub-menu a {
	color: black;
}
.wpml-ls-item-legacy-dropdown .wpml-ls-sub-menu a:hover {
	color: #a67b5b;
}
.wpml-ls-item-legacy-dropdown .wpml-ls-current-language:hover>a,
.wpml-ls-item-legacy-dropdown a:focus,
.wpml-ls-item-legacy-dropdown a:hover {
    color: #000;
    background: #e6e0dd;
}
.wpml-ls-item-legacy-dropdown a.wpml-ls-item-toggle:after {
	top: 50%;
    transform: translateY(-50%);
    border: none !important;
    width: 12px;
    height: 6px;
	-webkit-mask-image: url(/wp-content/uploads/wpml-arrow-icon.svg);
    mask-image: url(/wp-content/uploads/wpml-arrow-icon.svg);
    -webkit-mask-position: center;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    background-color: black;
}
.wpml-ls-item-legacy-dropdown:hover a.wpml-ls-item-toggle:after {
	background-color: black;
}
.wpml-ls-item-legacy-dropdown .wpml-ls-sub-menu {
	border: 1px solid transparent;
    border-top: none !important;
}
.wpml-ls-item-legacy-dropdown:hover .wpml-ls-sub-menu {
	border-color: white !important;
	background-color: #e6e0dd;
}
/* HEADER END */

/* HOME START */
/* services */
.services .item::before {
	transition: all .3s ease !important;
}
.services .item:hover::before {
	opacity: 0.7;
	scale: 1.04;
}
.services .item .elementor-heading-title {
	text-decoration: underline;
	text-decoration-color: transparent;
	transition: all .3s ease;
}
.services .item:hover .elementor-heading-title {
	text-decoration-color: var(--e-global-color-primary); !important;
}
/* portfolio */
.portfolio .elementor-widget-image a {
    width: 100%;
}
/* partners */
.partners .gallery__wrapper {
    max-width: none !important;
    width: 100% !important;
    flex-shrink: 0;
	animation: scroll 80s linear infinite;
}
@media screen and (max-width: 1365px) {
	.partners .gallery__wrapper {
		width: auto !important;
		animation: scroll 20s linear infinite;
	}
}
@keyframes scroll {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-100% - 2vw));
	}
}
/* HOME END */