@font-face {
  font-family: 'Clash Grotesk';
  src: url('./fonts/WEB/fonts/ClashGrotesk-Extralight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
}

.parent-element:after {
  position: absolute;
  width: 100%;
  height: 32px;
  content: '';
}

.simulated-video-bg:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, rgba(4, 4, 11, 0) -2.43%, rgba(4, 4, 11, 0.08) 19.57%, rgba(4, 4, 11, 0.2) 32.03%, rgba(4, 4, 11, 0.5) 48.95%, rgba(4, 4, 11, 0.75) 63.06%, #04040B 83.43%);
}

.mobile-menu.is-open {
  opacity: 1;
  z-index: 10;
  transition: opacity .3s;
}

.mobile-menu.is-open li {
  padding: 12px 0;
}

.charging-content-flex {
  will-change: transform;
}

.burger-menu span {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
  opacity 0.25s ease,
  top 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.burger-menu.is-open span:nth-child(1) {
  top: 7px;
  transform: rotate(45deg);
}

.burger-menu.is-open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-menu.is-open span:nth-child(3) {
  top: 7px;
  transform: rotate(-45deg);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu.is-open {
  max-height: 400px;
}

.item-has-child > a svg {
  transition: transform 0.3s ease;
}

.item-has-child.is-open > a svg {
  transform: rotate(0deg);
}

@media (min-width: 768px) {
  .charging-content-flex.sticky-card {
    position: sticky;
    background: white;
    /* box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08); */
  }
}

.logo-rotator {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-rotator img {
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.logo-rotator img.logo-current {
  position: relative;
  transform: translateY(0);
  opacity: 1;
}

.logo-rotator img.logo-exit {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(-100%);
  opacity: 0;
}

.logo-rotator img.logo-enter {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transform: translateY(100%);
  opacity: 0;
}

.logo-rotator img.logo-enter-active {
  transform: translateY(0);
  opacity: 1;
}
