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



/* 1) Base state: paused animations, width=0 (everything hidden) */
.typewriter .elementor-heading-title {
  display: block;           /* shrink-wrap to text */
  overflow: hidden;                /* hide “untyped” letters */
  white-space: nowrap;             /* prevent wrapping */
  width: 0;                        /* start fully “untyped” */
  border-right: 0.1em solid #000;  /* the “cursor” line; color = #000 */
  /* two animations, both paused by default: */
  animation:
    typing       3s steps(30, end) forwards paused,
    blink-caret  0.75s step-end 4 paused;
}

/* 2) When .animate is added, un-pause both animations */
.typewriter.animate .elementor-heading-title {
  animation-play-state: running;
}

/* 3) “typing” keyframes: widen from 0→100%, then force cursor invisible at end */
@keyframes typing {
  0%   { width: 0;                  border-color: #000; }
  99%  { width: 100%;               border-color: #000; }
  100% { width: 100%;               border-color: transparent; }
}

/* 4) “blink-caret” keyframes: blink on/off, end on transparent */
@keyframes blink-caret {
  0%, 100% { border-color: transparent; }
  50%      { border-color: #000;       }
}




.video-mask-wrapper {
  position: relative;
  width: 100%;
	height:459px;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 34px;
}

.video-mask-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.video-mask-overlay-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 2;
  pointer-events: none; /* allows clicks through the image if needed */
}



.box_1:hover .white_text_hover h2, .box_1:hover .white_text_hover p {
	color:white;
}

.box_1:hover svg {
	fill:white;
}