.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-75c0a77:#FD0000;--e-global-color-34eb146:#000000;--e-global-color-a41fca1:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;overscroll-behavior:none;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.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-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS *//* Base section */
.smoke-section {
  position: relative;
  height: 100vh;
  background: #000;
  overflow: hidden;
}

/* SMOKE LAYERS */
.smoke-section::before,
.smoke-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Layer 1 */
.smoke-section::before {
  background:
    radial-gradient(circle at 20% 110%, rgba(255,255,255,0.12), transparent 60%),
    radial-gradient(circle at 70% 120%, rgba(255,255,255,0.08), transparent 65%),
    radial-gradient(circle at 40% 130%, rgba(255,255,255,0.06), transparent 70%);
  filter: blur(50px);
  animation: smokeMove1 30s infinite linear;
}

/* Layer 2 */
.smoke-section::after {
  background:
    radial-gradient(circle at 80% 115%, rgba(255,255,255,0.10), transparent 60%),
    radial-gradient(circle at 10% 125%, rgba(255,255,255,0.07), transparent 65%),
    radial-gradient(circle at 50% 140%, rgba(255,255,255,0.05), transparent 70%);
  filter: blur(70px);
  animation: smokeMove2 40s infinite linear;
}

/* Animations */
@keyframes smokeMove1 {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translateY(-40vh) scale(1.2);
    opacity: 0.25;
  }
  100% {
    transform: translateY(-80vh) scale(1.4);
    opacity: 0;
  }
}

@keyframes smokeMove2 {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-50vh) scale(1.3);
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100vh) scale(1.5);
    opacity: 0;
  }
}/* End custom CSS */