/* ==========================================================================
   critical.css
   Purpose: This file replaces the inline <style> blocks that used to live in
   index.html (critical-css + fixes-override).

   NOTE ABOUT PATHS:
   - This file uses root-relative URLs like /assets/images/...
   - That assumes your local server serves the project root as "/" (your setup).
   - If you later deploy under a subfolder (e.g. https://site.com/TGlobal/),
     these URLs will need adjustment.
   ========================================================================== */

/* --------------------------------------------------------------------------
   Theme toggle UI (pill + knob)
   -------------------------------------------------------------------------- */
a.theme-switcher-link {
  user-select: none;
  outline: 0;
  display: block;
  width: 24px;
  height: 15px;
  position: relative;
  cursor: pointer;
  transition: all 0.4s ease;
  border-radius: 10px;
  padding: 0;
  margin-top: -4px;
}
a.theme-switcher-link:before {
  position: absolute;
  display: block;
  content: "";
  width: 13px;
  height: 13px;
  opacity: 1;
  top: 0;
  transition: all 0.2s ease;
  border-radius: 50%;
  background: #fff;
}
a.theme-switcher-link:after {
  display: none;
}
.theme-light a.theme-switcher-link {
  border: 1px solid transparent;
}
.theme-light a.theme-switcher-link:before {
  right: 0;
}
/* 1. ON HERO BANNER (Top of Home Page) */
/* Header is Transparent -> Dot needs to be WHITE to be visible */
body.page-home:not(.is-past-hero).theme-dark a.theme-switcher-link:before {
  right: 10px;
  background: #000;
}

/* 2. PAST HERO BANNER (Scrolled Down) OR INNER PAGES */
/* Header is White -> Dot needs to be BLACK to be visible */
body.theme-dark:not(.page-home) a.theme-switcher-link:before,
body.theme-dark.is-past-hero a.theme-switcher-link:before {
  right: 10px;
  background: #000000;
  border: 1px solid white;
}
.theme-switcher-link.mobile-only {
  margin-left: 30px;
  margin-bottom: 5px;
}

/* --------------------------------------------------------------------------
   Header + nav layout (desktop & mobile)
   -------------------------------------------------------------------------- */
#header {
  position: fixed;
  z-index: 998;
  left: 0;
  right: 0;
  top: 0;
}
#header .container,
#header .row {
  height: 100%;
}
#header .logo:after {
  display: none;
}

/* Desktop */
@media (min-width: 820px) {
  #mobile-menu {
    display: none;
  }

  #header .row {
    height: 95px;
  }

  #header .container {
    max-width: 1440px;
    padding-left: 55px;
    padding-right: 55px;
  }

  #header nav ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: flex-end;
  }

  #header nav ul.menu > .menu-item {
    display: block;
    margin: 0 40px 0 0;
    padding: 0;
    font-size: 17px;
  }

  #header nav ul.menu > .menu-item > a {
    display: block;
  }

  #content {
    padding-top: 95px;
  }

  /* Dropdown arrows (uses root-relative assets) */
  .theme-dark #header nav ul.menu > .menu-item-has-children > a,
  .theme-light
    #header
    .midnightHeader.white
    nav
    ul.menu
    > .menu-item-has-children
    > a {
    background-image: url(/assets/images/menu-down-white.svg);
    background-position: right 7px;
    background-repeat: no-repeat;
    padding-right: 20px;
  }

  .theme-dark #header nav ul.menu > .menu-item-has-children.is-active > a,
  .theme-light
    #header
    .midnightHeader.white
    nav
    ul.menu
    > .menu-item-has-children.is-active
    > a {
    background-image: url(/assets/images/menu-up-white.svg);
  }

  .theme-light #header nav ul.menu > .menu-item-has-children > a,
  .is-services-open.theme-light
    #header
    .midnightHeader.white
    nav
    ul.menu
    > .menu-item-has-children
    > a {
    background-image: url(/assets/images/menu-down-dark.svg);
  }

  .theme-light #header nav ul.menu > .menu-item-has-children.is-active > a,
  .is-services-open.theme-light
    #header
    .midnightHeader.white
    nav
    ul.menu
    > .menu-item-has-children.is-active
    > a {
    background-image: url(/assets/images/menu-up-dark.svg);
  }
}

@media (max-width: 1170px) {
  #header .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* Mobile */
@media (max-width: 820px) {
  #mobile-menu {
    display: block;
    position: fixed;
    z-index: 999;
    width: 40%;
    left: 0;
    top: 0;
    bottom: 0;
    padding: 50px;
    display: flex;
    opacity: 0;
    transform: translateX(-100%);
    transition: transform 0.2s;
  }

  #header .row {
    height: 70px;
  }

  #header nav {
    display: none;
  }

  #content {
    padding-top: 70px;
  }
}

@media (max-width: 767px) {
  #mobile-menu {
    width: 75%;
  }
}

@media (max-width: 350px) {
  #mobile-menu {
    width: 85%;
  }
}

/* Mobile menu contents */
@media (max-width: 820px) {
  #mobile-menu .logo-icon {
    margin-bottom: 35px;
  }
  #mobile-menu .logo-icon a:after {
    display: none;
  }

  #mobile-menu ul.menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }

  #mobile-menu ul.menu > .menu-item {
    font-size: 30px;
    line-height: 0.93;
    margin: 0 0 15px 0;
    padding: 0;
    display: block;
  }

  /* Hide desktop toggle slot in mobile menu (matches your existing pattern) */
  #mobile-menu ul.menu .menu-theme-switcher {
    display: none;
  }

  #mobile-menu ul.menu > .menu-item-has-children .sub-menu {
    display: none;
  }

  #mobile-menu ul.menu > .menu-item-has-children > a {
    padding-right: 22px;
    white-space: nowrap;
    background: url(/assets/images/menu-down-dark.svg) right center no-repeat;
  }

  #mobile-menu ul.menu > .menu-item-has-children.is-active > a {
    background-image: url(/assets/images/menu-up-dark.svg);
  }

  #mobile-menu ul.sub-menu {
    margin: 20px 0 20px 15px;
    padding: 0;
  }

  #mobile-menu ul.sub-menu > .menu-item {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 10px 0;
    padding: 0;
    display: block;
  }

  #mobile-menu ul.sub-menu > .menu-item br {
    display: none;
  }

  /* Light theme uses white arrows on dark mobile panel */
  .theme-light #mobile-menu ul.menu > .menu-item-has-children > a {
    background-image: url(/assets/images/menu-down-white.svg);
  }
  .theme-light #mobile-menu ul.menu > .menu-item-has-children.is-active > a {
    background-image: url(/assets/images/menu-up-white.svg);
  }
}

/* Mobile menu open state */
@media (max-width: 820px) {
  body.is-menu-open {
    overflow: hidden;
  }
  body.is-menu-open #mobile-menu {
    transform: translateX(0);
    opacity: 1;
    overflow: auto;
  }
  body.is-menu-open #menu-header-menu {
    padding-bottom: 40px;
  }
}

/* --------------------------------------------------------------------------
   Hamburger
   -------------------------------------------------------------------------- */
a.mobile-menu-toggler {
  width: 30px;
  height: 30px;
  display: none;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 9999;
}
a.mobile-menu-toggler:after {
  display: none;
}
@media (max-width: 820px) {
  a.mobile-menu-toggler {
    display: flex;
  }
}

.hamburger {
  display: none;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  overflow: visible;
  height: 16px;
}
@media (max-width: 700px) {
  .hamburger {
    display: block;
  }
}
.hamburger-box {
  width: 22px;
  height: 16px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 22px;
  height: 1px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -6px;
}
.hamburger-inner::after {
  bottom: -6px;
}

.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze .hamburger-inner::before {
  transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}
.hamburger--squeeze .hamburger-inner::after {
  transition: bottom 0.075s 0.12s ease,
    transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--squeeze.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.075s ease, opacity 0.075s 0.12s ease;
}
.hamburger--squeeze.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.075s ease,
    transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* Mobile-only helper */
@media (min-width: 820px) {
  .mobile-only {
    display: none !important;
  }
}
@media (max-width: 820px) {
  .mobile-only {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   Animations (used by mobile menu list items)
   -------------------------------------------------------------------------- */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* --------------------------------------------------------------------------
   HOME HERO: match the visual hint (header is transparent + white over stars)
   -------------------------------------------------------------------------- */
#header {
  background-color: transparent;
}

/* Header nav links white by default (over hero image) */
#header nav ul.menu > .menu-item > a {
  color: #ffffff;
}

/* Hamburger white by default over hero */
.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: #ffffff;
}

/* Hero text should stay white (matches your screenshots) */
.hero-section,
.hero-section h1,
.hero-section .main-title-tag,
.hero-section .small-text,
.hero-section .sub-head {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Services mega menu contrast (matches your screenshots)
   - Dark theme: black panel + white text
   - Light theme: light panel + dark text
   -------------------------------------------------------------------------- */
body.theme-dark #desktop-services-menu {
  background: #000;
  color: #fff;
}
body.theme-dark #desktop-services-menu a,
body.theme-dark #desktop-services-menu .menu-desc {
  color: #fff;
}

body.theme-light #desktop-services-menu {
  background: #f2f2f2;
  color: #3b3b3b;
}
body.theme-light #desktop-services-menu a,
body.theme-light #desktop-services-menu .menu-desc {
  color: #3b3b3b;
}

/* When Services is open in LIGHT mode, header links should turn dark */
body.theme-light.is-services-open #header nav ul.menu > .menu-item > a {
  color: #3b3b3b;
}
body.theme-light.is-services-open .hamburger-inner,
body.theme-light.is-services-open .hamburger-inner::before,
body.theme-light.is-services-open .hamburger-inner::after {
  background-color: #3b3b3b;
}

/* When Services is open in DARK mode, header links stay white */
body.theme-dark.is-services-open #header nav ul.menu > .menu-item > a {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   Mobile menu theme behavior (matches your screenshots)
   - Dark mode: white panel + dark text
   - Light mode: black panel + white text
   -------------------------------------------------------------------------- */
body.theme-dark #mobile-menu {
  background-color: #ffffff;
}
body.theme-dark #mobile-menu a,
body.theme-dark #mobile-menu .menu-item {
  color: #000000;
}
/* Hamburger turns dark when menu opens on white panel */
body.theme-dark.is-menu-open .hamburger-inner,
body.theme-dark.is-menu-open .hamburger-inner::before,
body.theme-dark.is-menu-open .hamburger-inner::after {
  background-color: #000000;
}

body.theme-light #mobile-menu {
  background-color: #000000;
}
body.theme-light #mobile-menu a,
body.theme-light #mobile-menu .menu-item {
  color: #ffffff;
}
body.theme-light.is-menu-open .hamburger-inner,
body.theme-light.is-menu-open .hamburger-inner::before,
body.theme-light.is-menu-open .hamburger-inner::after {
  background-color: #ffffff;
}

/* --------------------------------------------------------------------------
   Benefits + logo carousel tweaks you had in fixes-override (kept for now)
   Later we can move these into a /pages/home.css file to be more modular.
   -------------------------------------------------------------------------- */
.benefits-section .items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
}
.benefits-section .item-col {
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 10px 25px 10px;
}
.benefits-section .icon {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100%;
  margin-bottom: 28px;
}
.benefits-section .icon img {
  display: block;
  width: 150px;
  height: 150px;
  object-fit: contain;
}
.benefits-section h3 {
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 500;
  line-height: 0.97;
  text-transform: uppercase;
  margin-left: auto;
  margin-right: auto;
}
.benefits-section .item-col:nth-child(1) h3,
.benefits-section .item-col:nth-child(3) h3 {
  max-width: 220px;
}
.benefits-section .item-col:nth-child(2) h3 {
  max-width: 320px;
  font-size: 34px;
}
.benefits-section .text {
  font-size: 16px;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}
.benefits-section .items .item-col:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1px;
}
body.theme-dark .benefits-section .items .item-col:after {
  background: #f2f2f2;
}
body.theme-light .benefits-section .items .item-col:after {
  background: #3b3b3b;
}
.benefits-section .items .item-col:last-child:after {
  display: none;
}
@media (max-width: 994px) {
  .benefits-section .items {
    flex-direction: column;
    align-items: center;
  }
  .benefits-section .items .item-col {
    padding: 0 15px 60px 15px;
    max-width: 100%;
  }
  .benefits-section .items .item-col:after {
    display: none;
  }
  .benefits-section .icon img {
    width: 120px;
    height: 120px;
  }
}

/* ==========================================================================
   BENEFITS SECTION - Mobile Line Break Fix
   ========================================================================== */
@media (max-width: 1024px) {
  .benefits-section h3 br {
    display: block !important; /* Forces the <br> to work */
  }
  .benefits-section h3 {
    font-size: 28px !important;
    line-height: 1.1 !important;
  }
}

/* ==========================================================================
   Logo carousel sizing - UPDATED FOR VISIBILITY
   ========================================================================== */

.section-logos {
  transition: background-color 0.3s ease;
  padding: 80px 0;
}

.section-logos .relative {
  position: relative;
}
.section-logos .carousel {
  margin-bottom: 0 !important;
}

/* 1. This makes the row taller and centers the logos vertically */
.section-logos .slide-item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  height: 140px; /* Adjust this to change the row height */
  /* outline: none; */
}

/* 1. Base State: Greyed out and slightly faint */
.section-logos img {
  display: block;
  margin: 0 20px;
  max-width: 180px;
  max-height: 150px;
  width: auto;
  height: auto;
  object-fit: contain;

  /* Default Dark Mode: White Silhouette */
  filter: brightness(0) invert(1);
  opacity: 0.4;

  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.section-logos .slide-item:hover img {
  filter: brightness(0) invert(1) !important;
  opacity: 1;
  transform: scale(1.1);
}

body.theme-light .section-logos img {
  filter: none !important; /* Uses original black color */
  opacity: 0.3; /* Makes black look grey against the bg */
}

body.theme-light .section-logos .slide-item:hover img {
  filter: none !important;
  opacity: 1 !important; /* Brings back full black color */
  transform: scale(1.1);
}

.carousel-pagination {
  position: absolute;
  display: flex;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 1025px) {
  .section-logos .mobile-carousel {
    display: flex;
    width: 100%;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
  }
  .section-logos .carousel-pagination {
    display: none;
  }
}

/* 3. Improved Tablet/Mobile Sizes */
@media (max-width: 1024px) {
  .section-logos .relative {
    padding: 0 50px;
  }
  .section-logos .carousel-pagination {
    display: flex;
  }
  /* Was 35px (too small), now 55px */
  .section-logos img {
    max-height: 105px;
  }
  .section-logos .slide-item {
    height: 100px;
  }
}
/* ==========================================================================
   BUTTONS: project rule -> no filled backgrounds
   This overrides main.css and theme.light.css which set background-color.
   ========================================================================== */

/* Generic */
.button,
a.button,
button,
input[type="submit"],
/* Your footer CTA uses a custom class */
.btn-get-in-touch {
  background: transparent !important;
}

/* Keep them transparent in all states */
.button:hover,
a.button:hover,
button:hover,
input[type="submit"]:hover,
.btn-get-in-touch:hover,
.button:focus,
a.button:focus,
button:focus,
input[type="submit"]:focus,
.btn-get-in-touch:focus,
.button:active,
a.button:active,
button:active,
input[type="submit"]:active,
.btn-get-in-touch:active {
  background: transparent !important;
}

/* Ensure text stays readable even when other CSS tries to invert colors on active/focus */
body.theme-dark .button,
body.theme-dark a.button,
body.theme-dark button,
body.theme-dark input[type="submit"],
body.theme-dark .btn-get-in-touch {
  color: #f2f2f2 !important;
  border-color: #f2f2f2 !important;
}

body.theme-light .button,
body.theme-light a.button,
body.theme-light button,
body.theme-light input[type="submit"],
body.theme-light .btn-get-in-touch {
  color: #3b3b3b !important;
  border-color: #1e1e1e !important;
}
/* ==========================================================================
   BUGFIX OVERRIDES (FINAL)
   Fixes:
   1) Dark mode services menu showing light background
   2) Light theme logo behavior over hero + correct switching after hero/services
   3) Footer text color follows theme
   ========================================================================== */

/* --- 1) SERVICES MENU BACKGROUND MUST MATCH THEME (override bad theme.light.css rules) --- */
body.theme-dark #desktop-services-menu {
  background: #000 !important;
  color: #fff !important;
}
body.theme-dark #desktop-services-menu a,
body.theme-dark #desktop-services-menu .menu-desc {
  color: #fff !important;
}

body.theme-light #desktop-services-menu {
  background: #f2f2f2 !important;
  color: #3b3b3b !important;
}
body.theme-light #desktop-services-menu a,
body.theme-light #desktop-services-menu .menu-desc {
  color: #3b3b3b !important;
}

/* --- 2) LOGO + HEADER COLORS BASED ON HERO/SCROLL STATE --- */
/* Default logo selection outside hero */
body.theme-dark #header .dark-theme-only {
  display: block !important;
}
body.theme-dark #header .light-theme-only {
  display: none !important;
}

body.theme-light #header .dark-theme-only {
  display: none !important;
}
body.theme-light #header .light-theme-only {
  display: block !important;
}

/* On HOME HERO: ALWAYS white logo + white links, regardless of theme
   (until you scroll past hero OR services menu opens) */
body.page-home:not(.is-past-hero):not(.is-services-open)
  #header
  .dark-theme-only {
  display: block !important;
}
body.page-home:not(.is-past-hero):not(.is-services-open)
  #header
  .light-theme-only {
  display: none !important;
}
body.page-home:not(.is-past-hero):not(.is-services-open)
  #header
  nav
  ul.menu
  > .menu-item
  > a {
  color: #ffffff !important;
}
body.page-home:not(.is-past-hero):not(.is-services-open)
  #header
  nav
  ul.menu
  > .menu-item
  > a:after {
  background: #ffffff !important;
}
body.page-home:not(.is-past-hero):not(.is-services-open) .hamburger-inner,
body.page-home:not(.is-past-hero):not(.is-services-open)
  .hamburger-inner::before,
body.page-home:not(.is-past-hero):not(.is-services-open)
  .hamburger-inner::after {
  background-color: #ffffff !important;
}

/* When SERVICES is open in LIGHT theme: show dark logo + dark links (panel is light) */
body.theme-light.is-services-open #header .dark-theme-only {
  display: none !important;
}
body.theme-light.is-services-open #header .light-theme-only {
  display: block !important;
}
body.theme-light.is-services-open #header nav ul.menu > .menu-item > a {
  color: #3b3b3b !important;
}
body.theme-light.is-services-open #header nav ul.menu > .menu-item > a:after {
  background: #3b3b3b !important;
}
body.theme-light.is-services-open .hamburger-inner,
body.theme-light.is-services-open .hamburger-inner::before,
body.theme-light.is-services-open .hamburger-inner::after {
  background-color: #3b3b3b !important;
}

/* --- 3) FOOTER TEXT COLOR FOLLOWS THEME (strong guarantee) --- */
body.theme-dark .tg-footer {
  color: #f2f2f2 !important;
  border-top-color: #f2f2f2 !important;
}
body.theme-light .tg-footer {
  color: #3b3b3b !important;
  border-top-color: #3b3b3b !important;
}
body.theme-dark .tg-footer a,
body.theme-light .tg-footer a {
  color: inherit !important;
}
/* ==========================================================================
   Services-open text color fixes
   ========================================================================== */

/* DARK theme + services open: force WHITE text everywhere in the services panel */
body.theme-dark.is-services-open #desktop-services-menu,
body.theme-dark.is-services-open #desktop-services-menu .menu-title,
body.theme-dark.is-services-open #desktop-services-menu .menu-title a,
body.theme-dark.is-services-open #desktop-services-menu .menu-desc,
body.theme-dark.is-services-open #desktop-services-menu a {
  color: #ffffff !important;
}

/* LIGHT theme + services open: force DARK text everywhere in the services panel */
body.theme-light.is-services-open #desktop-services-menu,
body.theme-light.is-services-open #desktop-services-menu .menu-title,
body.theme-light.is-services-open #desktop-services-menu .menu-title a,
body.theme-light.is-services-open #desktop-services-menu .menu-desc,
body.theme-light.is-services-open #desktop-services-menu a {
  color: #1a1a1a !important;
}

/* Optional but usually needed: header link color while services is open */
body.theme-dark.is-services-open #header nav ul.menu > .menu-item > a {
  color: #ffffff !important;
}
body.theme-dark.is-services-open #header nav ul.menu > .menu-item > a:after {
  background: #ffffff !important;
}
/* ==========================================================================
   HEADER NAV COLOR — "past hero" behavior (light theme)
   Goal:
   - On home hero: white links (already handled by your hero override rules)
   - After leaving hero: light theme should use dark links
   - Non-home pages (no hero): light theme should use dark links
   ========================================================================== */

/* Light theme on NON-home pages -> dark nav */
body.theme-light:not(.page-home) #header nav ul.menu > .menu-item > a {
  color: #3b3b3b;
}
body.theme-light:not(.page-home) #header nav ul.menu > .menu-item > a:after {
  background: #3b3b3b !important;
}

/* Light theme on home page AFTER hero -> dark nav */
body.theme-light.page-home.is-past-hero:not(.is-services-open)
  #header
  nav
  ul.menu
  > .menu-item
  > a {
  color: #3b3b3b;
}
body.theme-light.page-home.is-past-hero:not(.is-services-open)
  #header
  nav
  ul.menu
  > .menu-item
  > a:after {
  background: #3b3b3b !important;
}

/* Hamburger color in the same states */
body.theme-light:not(.page-home) .hamburger-inner,
body.theme-light:not(.page-home) .hamburger-inner::before,
body.theme-light:not(.page-home) .hamburger-inner::after,
body.theme-light.page-home.is-past-hero:not(.is-services-open) .hamburger-inner,
body.theme-light.page-home.is-past-hero:not(.is-services-open)
  .hamburger-inner::before,
body.theme-light.page-home.is-past-hero:not(.is-services-open)
  .hamburger-inner::after {
  background-color: #3b3b3b !important;
}
