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

/* ========================================
   Root Variables
   ======================================== */
:root {
  /* Color Palette */
  --brand-darkgreen: #002F30;
  --brand-green: #025A5C ;
  --brand-yellow: #FEEF01 ;
  --brand-gray: #F0F3EF;
  --brand-black: #1E1E1E;
  --brand-secondary: transparent;
  --brand-blackblack: #000;
  --brand-dark-gray: #333;
  --brand-white: #fff;
  --brand-medium-gray: #5b5b5b;
  --brand-light-gray: #ccc;
  --brand-xlight-gray: #eee;
  --brand-slate-333: #333;
  --brand-slate-555: #555;
  --brand-silver-888: #888;
  --brand-subfooter: #cfd0d2;
  --brand-soft-gray: #d8d8d8;

  /* Primary Button */
   --btn-primary-text: var(--brand-dark-gray);
  --btn-primary-bg: var(--brand-gray);
  --btn-primary-hover-bg: var(--brand-dark-gray);
  --btn-primary-hover-text: var(--brand-white);
  --btn-secondary-border: var(--brand-dark-gray);

  /* Secondary Button */
  --btn-secondary-text: var(--brand-white);
  --btn-secondary-bg: var(--brand-darkgreen);
  --btn-secondary-hover-text: var(--brand-white);
  --btn-secondary-hover-bg: var(--brand-green);
  --btn-secondary-border: var(--brand-darkgreen);

  /* Tertiary Button */
  --btn-tertiary-text: var(--brand-darkgreen);
  --btn-tertiary-bg: var(--brand-secondary);
  --btn-tertiary-hover-text: var(--brand-white);
  --btn-tertiary-hover-bg: var(--brand-darkgreen);
  --btn-tertiary-border: var(--brand-darkgreen);	

  /* Link Button */
  --btn-link-text: var(--brand-darkgreen);
  --btn-link-border: var(--brand-darkgreen);
  --btn-link-icon: var(--brand-darkgreen);
  --btn-link-hover-text: var(--brand-green);
  --btn-link-hover-border: var(--brand-green);
  --btn-link-hover-icon: var(--brand-green);

  /* Main Navigation */
  --nav-subarrow-fill: var(--brand-dark-gray);
  --nav-subarrow-hover-fill: var(--brand-green);

  /* Footer */
  --footer-subfooter-link: var(--brand-subfooter);
  --footer-subfooter-link-hover: var(--brand-silver-888);
  --footer-link: var(--brand-white);
  --footer-link-hover: var(--brand-white);

  /* Utility Header */
  --utility-header-link: var(--brand-white);
  --utility-header-link-hover: var(--brand-white);

  /* Back to Top */
  --backtotop-bg: var(--brand-green);
  --backtotop-hover-bg: var(--brand-gray);
  --backtotop-icon-fill: var(--brand-white);
  --backtotop-icon-hover-fill: var(--brand-darkgreen);
	
  /* Timeline */
  --timeline-line-bg: var(--brand-soft-gray);
}

/* Global */
/* .subhead {
    padding-bottom: 1rem !important;
} */

.h1-heading,
.h2-heading,
.h3-heading,
.h4-heading,
.h5-heading,
.h6-heading {
/*	padding-top: 1rem !important; */
/*     padding-bottom: 1rem !important; */
}

.header-accent {
    font-weight: 200;
}

.secondary {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.accent {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.page-header {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.page-header h1 {}

/* Optional: Apply to remove underline on link(s) */
.link-no-underline {
	text-decoration: none !important;
}

/* Fix: This overrides the "Link Hover" setting under Settings > Typography.
   The behavior caused issues with social icon effects. */

a:hover {
	text-decoration: none !important;
}

/* Elementor Editor Fix: Text box bottom gap */
.elementor-widget-text-editor p:last-child {
    margin-bottom: 0px;
}

/* Custom Buttons: Implemented to override issues with buggy global styles */
.elementor-button {
    background-color: var(--btn-primary-bg) !important;
    font-family: Syne, sans-serif !important;
    font-weight: 700 !important;
    font-style: normal !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
    font-size: 14px !important;
	border-radius: 20px !important;
}

.elementor-button:hover {
    background-color: var(--btn-primary-hover-bg) !important;
    color: var(--btn-primary-hover-text) !important;
    text-decoration: none !important;
}

.elementor-button-icon {
	font-size: 16px;
}

.btn-secondary a {
    color: var(--btn-secondary-text) !important;
    background-color: var(--btn-secondary-bg) !important;
	border: solid 2px var(--brand-white) !important;
	border: solid 2px var(--btn-secondary-border) !important;
}

.btn-secondary a:hover {
    color: var(--btn-secondary-hover-text) !important;
    background-color: var(--btn-secondary-hover-bg) !important;
	border: solid 2px var(--btn-secondary-hover-bg) !important;
}

.btn-tertiary a {
    color: var(--btn-tertiary-text) !important;
    background-color: var(--btn-tertiary-bg) !important;
	border: solid 2px var(--btn-tertiary-border) !important;
}

.btn-tertiary a:hover {
    color: var(--btn-tertiary-hover-text) !important;
    background-color: var(--btn-tertiary-hover-bg) !important;
	border: solid 2px var(--btn-tertiary-hover-bg) !important;
}

.btn-link .elementor-button-content-wrapper {
    border-bottom: 1px solid var(--btn-link-border) !important;
}

.btn-link .elementor-button-icon {
    fill: var(--btn-link-icon) !important;
}

.btn-link a {
    color: var(--btn-link-text) !important;
    background-color: transparent !important;
    text-transform: uppercase !important;
    padding: 0 !important;
}

.btn-link a:hover {
    color: var(--btn-link-hover-text) !important;
    background-color: transparent !important;
}

.btn-link a:hover .elementor-button-icon {
    fill: var(--btn-link-hover-icon) !important;
}

.btn-link a:hover .elementor-button-content-wrapper {
    border-bottom: 1px solid var(--btn-link-hover-border) !important;
}

/* Main Navigation */
.sub-arrow svg {
    fill: var(--nav-subarrow-fill);
}

.menu-item:hover .sub-arrow svg {
    fill: var(--nav-subarrow-hover-fill);
}

@media screen and (min-width: 1024px) {
    .sub-arrow svg {
        fill: var(--nav-subarrow-fill);
    }
	
	.menu-item:hover .sub-arrow svg {
    	fill: var(--nav-subarrow-hover-fill);
	}
}

/* Footer */
.subfooter a {
    font-size: 12px;
    color: var(--footer-subfooter-link);
}

.subfooter a:hover {
    color: var(--footer-subfooter-link-hover);
}

/* Footer Link Overrides */
.footer-link a {
    color: var(--footer-link) !important;
}

.footer-link a:hover {
    color: var(--footer-link-hover) !important;
}

/* Remove icons on mobile navigation */
@media (max-width: 767px) {
    .main-footer .elementor-icon-list-item .elementor-icon-list-icon {
        display: none;
    }
}

/* Utility Header Link Overrides */
.utility-header-link a {
    color: var(--utility-header-link) !important;
}

.utility-header-link a:hover {
    color: var(--utility-header-link-hover) !important;
}

/* Back to Top */
#back-to-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 30px;
	height: 30px;
	background-color: var(--backtotop-bg);
	border-radius: 5px;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
	text-decoration: none;
	transition: background-color 0.3s;
	font-size: 24px;
}

#back-to-top svg {
	width: 20px;
	height: 20px;
	fill: var(--backtotop-icon-fill);
}

#back-to-top:hover svg {
	width: 20px;
	height: 20px;
	fill: var(--backtotop-icon-hover-fill);
}

#back-to-top:hover {
	background-color: var(--backtotop-hover-bg);
}

/* Icon Emphasis: Reusable bounce animation for any icon */
.icon-bounce {
  display: inline-block;
  animation: floatY 2s ease-in-out infinite;
}

@keyframes floatY {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Form zoom fix on mobile */
input[type="color"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="email"],
input[type="file"],
input[type="month"],
input[type="number"],
input[type="password"],
input[type="range"],
input[type="search"],
input[type="tel"],
input[type="text"],
input[type="time"],
input[type="url"],
input[type="week"],
input[type="checkbox"],
input[type="radio"],
input[type="image"],
input[type="button"],
input[type="submit"],
select:focus,
select,
textarea,
label,
button {
    font-size: 14px !important;
}

/* fixes blue spacer blocks */
.elementor-spacer,
.elementor-spacer-inner,
.elementor-widget-container .elementor-spacer,
.elementor-widget-container .elementor-spacer-inner {
    background: transparent !important;
}

/* Wrapper */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  background: transparent;
}

/* Marquee container */
.marquee {
  white-space: nowrap;
  display: flex;
}

/* Track that scrolls */
.marquee-track {
  display: inline-flex;
  animation: marquee-scroll 15s linear infinite;
}

/* Typography */
.marquee-text {
  font-family: 'JUST Sans Outline', sans-serif;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(102, 102, 102, 0.35);
  color: transparent;
  margin: 0 20px;
}

/* Icon */
.marquee-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #FEEF01; /* yellow circle */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 5px;

  font-size: 40px; /* arrow size inside circle */
  color: #f0f3ef; /* arrow color */
  font-weight: 700;
  letter-spacing: 2.4px;
}

/* Animation */
@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Hover pause */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

#container.cih-flex-row cih-text-large cih-p-20 { display:none; }

.elementor-nav-menu--dropdown,
.elementor-nav-menu--dropdown .sub-menu {
  z-index: 999999 !important;
}


/* Timeline */
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: var(--timeline-line-bg);
  transform: translateX(-50%);
}

p#breadcrumbs a { font-size: 12px !important; font-weight: 500; }
span.breadcrumb_last { color: #FEEF01; }