.elementor-kit-6{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-d835aa1:#F5F5F5;--e-global-color-2d18d91:#032354;--e-global-color-5370aa0:#005FAA;--e-global-color-e12313a:#D6ECFD;--e-global-color-575688e:#E0E0E0;--e-global-typography-primary-font-family:"Poppins";--e-global-typography-primary-font-size:4rem;--e-global-typography-primary-font-weight:900;--e-global-typography-primary-line-height:4rem;--e-global-typography-secondary-font-family:"Poppins";--e-global-typography-secondary-font-size:2.5rem;--e-global-typography-secondary-font-weight:900;--e-global-typography-secondary-line-height:2.5rem;--e-global-typography-text-font-family:"Poppins";--e-global-typography-text-font-size:1rem;--e-global-typography-text-font-weight:400;--e-global-typography-text-line-height:1rem;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;--e-global-typography-6afee78-font-family:"Poppins Font Family";--e-global-typography-6afee78-font-size:4rem;--e-global-typography-6afee78-font-weight:600;background-color:#032354;font-family:"Poppins", Sans-serif;font-size:0.9rem;line-height:1.5rem;}.elementor-kit-6 button,.elementor-kit-6 input[type="button"],.elementor-kit-6 input[type="submit"],.elementor-kit-6 .elementor-button{background-color:#F5F5F500;font-family:"Poppins", Sans-serif;font-size:1rem;font-weight:300;text-transform:uppercase;line-height:1rem;letter-spacing:1px;color:var( --e-global-color-d835aa1 );border-radius:2px 2px 2px 2px;padding:16px 30px 16px 30px;}.elementor-kit-6 button:hover,.elementor-kit-6 button:focus,.elementor-kit-6 input[type="button"]:hover,.elementor-kit-6 input[type="button"]:focus,.elementor-kit-6 input[type="submit"]:hover,.elementor-kit-6 input[type="submit"]:focus,.elementor-kit-6 .elementor-button:hover,.elementor-kit-6 .elementor-button:focus{background-color:var( --e-global-color-5370aa0 );color:var( --e-global-color-d835aa1 );}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-kit-6 a{color:#008EFF;}.elementor-kit-6 a:hover{color:var( --e-global-color-primary );}.elementor-kit-6 h1{font-family:"Big Shoulders Display", Sans-serif;font-size:5rem;font-weight:900;text-transform:uppercase;line-height:5rem;}.elementor-kit-6 h2{font-family:"Big Shoulders Display", Sans-serif;font-size:4rem;font-weight:900;text-transform:uppercase;line-height:4rem;}.elementor-kit-6 h3{font-family:"Big Shoulders Display", Sans-serif;font-size:3.5rem;font-weight:900;text-transform:uppercase;line-height:3.5rem;}.elementor-kit-6 h4{font-family:"Big Shoulders Display", Sans-serif;font-size:1.75rem;font-weight:900;text-transform:uppercase;line-height:1.75rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){margin-block-end:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-kit-6 h1{font-size:4rem;line-height:4rem;}.elementor-kit-6 h2{font-size:2.75rem;line-height:2.75rem;}.elementor-kit-6 h3{font-size:2.5rem;line-height:2.5rem;}.elementor-kit-6 h4{font-size:1.5rem;line-height:1.5rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-kit-6 h1{font-size:3rem;line-height:3rem;}.elementor-kit-6 h2{font-size:2.5rem;line-height:2.5rem;}.elementor-kit-6 h3{font-size:2.5rem;line-height:2.5rem;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* Base: hidden until scrolled into view */
.reveal { 
  opacity: 0;
  transform: translateY(14px);
  will-change: opacity, transform, filter;
}

/* Prefer reduced motion: show content without animating */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none !important; filter: none !important; }
}

/* Variants (pick one per heading) */
@keyframes subtleFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.reveal-up.in-view { animation: subtleFadeUp 700ms ease-out both; }

/* Gentle letter-spacing reveal */
@keyframes subtleFadeExpand {
  from { opacity: 0; letter-spacing: -0.02em; }
  to   { opacity: 1; letter-spacing: normal; }
}
.reveal-expand { opacity: 0; } /* start hidden without translate */
.reveal-expand.in-view { animation: subtleFadeExpand 800ms ease-out both; }

/* Soft blur-in */
@keyframes subtleBlurIn {
  from { opacity: 0; filter: blur(6px); transform: translateY(8px); }
  to   { opacity: 1; filter: blur(0);   transform: translateY(0); }
}
.reveal-blur { opacity: 0; } /* start hidden without translate */
.reveal-blur.in-view { animation: subtleBlurIn 650ms ease-out both; }

/* Slide + fade (very light) */
@keyframes subtleSlideIn {
  from { opacity: 0; transform: translateX(-18px); }
  to   { opacity: 1; transform: translateX(0); }
}
.reveal-slide { opacity: 0; } /* start hidden without translate */
.reveal-slide.in-view { animation: subtleSlideIn 700ms ease-out both; }

/* Optional: easy staggering for groups (use data-delay or nth-child) */
.reveal[data-delay] { transition-delay: var(--reveal-delay, 0ms); }

/* Reveal delay utilities */
.reveal-delay-1 { animation-delay: 0.1s; }
.reveal-delay-2 { animation-delay: 0.2s; }
.reveal-delay-3 { animation-delay: 0.3s; }
.reveal-delay-4 { animation-delay: 0.4s; }
.reveal-delay-5 { animation-delay: 0.5s; }
.reveal-delay-6 { animation-delay: 0.6s; }
.reveal-delay-7 { animation-delay: 0.7s; }
.reveal-delay-8 { animation-delay: 0.8s; }


/* Subtle button animation */
.button-animate {
  transition: all 0.3s ease;
  transform: translateY(0);
}

.button-animate:hover {
  transform: translateY(-2px);
}

.button-animate:active {
  transform: translateY(0);
}/* End custom CSS */
/* Start Custom Fonts CSS */@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: normal;
	font-display: auto;
	src: url('https://meagleelectricltd.ca/wp-content/uploads/2024/06/poppins-regular-webfont-1.woff2') format('woff2'),
		url('https://meagleelectricltd.ca/wp-content/uploads/2024/06/poppins-regular-webfont.woff') format('woff');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: bold;
	font-display: auto;
	src: url('https://meagleelectricltd.ca/wp-content/uploads/2024/06/poppins-bold-webfont.woff2') format('woff2'),
		url('https://meagleelectricltd.ca/wp-content/uploads/2024/06/poppins-bold-webfont.woff') format('woff');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	font-display: auto;
	src: url('https://meagleelectricltd.ca/wp-content/uploads/2024/06/poppins-semibold-webfont-1.woff2') format('woff2'),
		url('https://meagleelectricltd.ca/wp-content/uploads/2024/06/poppins-semibold-webfont.woff') format('woff');
}
@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 900;
	font-display: auto;
	src: url('https://meagleelectricltd.ca/wp-content/uploads/2024/06/poppins-extrabold-webfont-2.woff2') format('woff2'),
		url('https://meagleelectricltd.ca/wp-content/uploads/2024/06/poppins-extrabold-webfont.woff') format('woff');
}
/* End Custom Fonts CSS */