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

body.elementor-editor-active .site-header, body.elementor-editor-active .site-footer, .site-header, .site-footer {
	display: none;
}

@media (min-width: 1366px) {
  body.elementor-editor-active .elementor-hidden-laptop {
    display: none !important;
  }
}	
	
@media (min-width: 1025px) and (max-width: 1366px) {
  body.elementor-editor-active .elementor-hidden-desktop {
    display: none !important;
  }
}


@media (min-width: 768px) and (max-width: 1024px) {
  body.elementor-editor-active .elementor-hidden-tablet {
    display: none !important;
  }
}

@media (max-width: 767px) {
  body.elementor-editor-active .elementor-hidden-mobile {
    display: none !important;
  }
}

span.color-rose {
	color: #F25C5C;
}

span.color-black {
	color: #1A1A1A;
}

.relative {
	position: relative;
}

h1, h2, h3, p, span {
	text-box-trim: trim-both;
}

.cta-button .elementor-button {
	overflow: hidden;
}

.cta-button .elementor-button-content-wrapper {
	display: flex;
	align-items: center;
	position: relative;
	gap: 0.6em;
}

.cta-button .elementor-button-text {
	position: relative;
	transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}

.cta-button .elementor-button-text::before {
	content: "";
	position: absolute;
	top: 50%;
	left: -1.4em;
	width: 18px;
	height: 18px;
	background: currentColor;

	-webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='black' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E")
		center / contain no-repeat;

	mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='black' d='M190.5 66.9l22.2-22.2c9.4-9.4 24.6-9.4 33.9 0L441 239c9.4 9.4 9.4 24.6 0 33.9L246.6 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.2-22.2c-9.5-9.5-9.3-25 .4-34.3L311.4 296H24c-13.3 0-24-10.7-24-24v-32c0-13.3 10.7-24 24-24h287.4L190.9 101.2c-9.8-9.3-10-24.8-.4-34.3z'/%3E%3C/svg%3E")
		center / contain no-repeat;
	transform: translate(-1em, -50%);
	opacity: 0;

	transition:
		transform 0.45s cubic-bezier(0.76, 0, 0.24, 1),
		opacity 0.3s ease;
}

.cta-button .elementor-button-icon {
	transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1),
		opacity 0.3s ease;
}

.cta-button .elementor-button:hover .elementor-button-text {
	transform: translateX(1.2em);
}

.cta-button .elementor-button:hover .elementor-button-text::before {
	transform: translate(0, -50%);
	opacity: 1;
}

.cta-button .elementor-button:hover .elementor-button-icon {
	transform: translateX(1em);
	opacity: 0;
}

.process-item {
	transition: background .3s ease-in-out;
}

.process-item:hover {
	background: red !important;
}