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

/* Hidden by default */
.hover-card .hover-button {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.35s ease;
}

/* Visible on card hover */
.hover-card:hover .hover-button {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.custom-highlight {
	color: #FACC4D !important;
}

.hero-top-badge-icons svg {
    fill: #FACC4D;
} 

/* Timeline container */
.timeline-list {
  position: relative;
}

/* Vertical line */
.timeline-list::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #cfd8dc;
}

/* Each item */
.timeline-item {
  position: relative;
  padding-left: 40px; /* space for line + dot */
  margin-bottom: 24px;
}

/* Dot */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: #607d8b;
  border-radius: 50%;
  border: 2px solid #fff;
  z-index: 2;
}

