.megamenu {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  gap: 100px;
}
.megamenu > .menu-columns {
  width: 45%;
}
.megamenu > .megamenu-image {
  width: 55%;
}
.megamenu .menu-item a {
  justify-content: space-between;
}
@media screen and (max-width: 769px) {
  .megamenu {
    display: flex;
    flex-direction: column;
    width: 100%;
    justify-content: space-between;
    gap: 20px;
  }
  .megamenu > .menu-columns {
    width: 100%;
  }
  .megamenu > .megamenu-image {
    width: 100%;
  }
  .megamenu .menu-item a {
    justify-content: space-between;
  }
}
.download-button-icon svg  {
  fill: var(--e-global-color-accent);
}
/*# sourceMappingURL=style.css.map */