/**
 * @file
 * MEGAMENU - shared base stylesheet.
 *
 * The bulk of the header: mobile topbar, desktop strip, overlay layout +
 * transitions, nav accordion, research/IL/sissanet blocks. It was extracted
 * here when two megamenu SDCs shared it byte-for-byte; only `megamenu` is
 * left, and the file stays split so the deltas in megamenu/megamenu.css remain
 * legible as deltas.
 *
 * NOT auto-attached (this directory holds no SDC): it is the
 * `pt_base/megamenu-base` library, pulled in through
 * `libraryOverrides.dependencies` in megamenu.component.yml.
 *
 * Anything more specific belongs in megamenu/megamenu.css, which loads after
 * this one and therefore wins.
 *
 * Relative asset paths resolve from THIS directory (components/_shared/), which
 * sits at the same depth as the component dirs - so ../../images/... still
 * points at the theme's images/ folder.
 */

/* ═══════════════════════════════════════════════════════════
   MEGAMENU — tokens
   ═══════════════════════════════════════════════════════════ */
.megamenu {
  --mm-bg: #0d0e0f;
  --mm-bg-right: #161616;
  --mm-border: #2a2a2a;
  --mm-text: #fff;
  --mm-muted: #a3a3a3;
  --mm-strip-w: 60px;
  --mm-left-w: 300px;
  --mm-bar-h: 60px;
  font-family: "Suisse Int\'l", sans-serif;
  color: var(--mm-text);
}

/* ═══════════════════════════════════════════════════════════
   SHARED — logo
   ═══════════════════════════════════════════════════════════ */
/* .megamenu__logo-link {
    display: inline-flex;
    align-items: flex-start;
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    height: 140px;
    top: 0;
} */

.megamenu__logo-link img,
.megamenu__logo-svg {
  width: var(--mm-strip-w);
  height: var(--mm-strip-w);
  object-fit: contain;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   SHARED — hamburger lines
   ═══════════════════════════════════════════════════════════ */
.megamenu__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--mm-text);
  border-radius: 1px;
}

/* ═══════════════════════════════════════════════════════════
   MOBILE TOP BAR  (< 992 px)
   ═══════════════════════════════════════════════════════════ */
.megamenu__topbar {
  font-family: "Suisse Int\'l";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--mm-bar-h);
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 900;
  box-shadow: 0px 0px 100px 0px #0000001f;
  .megamenu__logo-link {
    top: 10px;
    left: 10px;
    position: relative;
  }
}

.megamenu__hamburger {
  align-items: center;
  gap: 5px;
  width: 60px;
  height: 60px;
  background: skyblue;
  background-color: #fff;

  border: none;
  cursor: pointer;
  padding: 8px;
  right: 10px;
  position: relative;
  > div {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: yellow;
    background-color: #000000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
  }
}

/* Black lines on white topbar (closed state) */
.megamenu__topbar .megamenu__hamburger-line {
  background: #000;
}

/* ── Desktop strip: hidden on mobile ── */
.megamenu__strip {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   OVERLAY — base (mobile = flex-col)
   ═══════════════════════════════════════════════════════════ */
.megamenu__overlay {
  position: fixed;
  inset: 0;
  z-index: 950;
  background: #161616;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  /* hidden state */
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition:
    transform 0.35s ease,
    opacity 0.25s ease;
}

.megamenu__overlay.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* ── Left panel: display:contents on mobile so children join flex ── */
.megamenu__left {
  display: contents;
}

/* ── Left-top: sticky overlay header (mobile) ── */
.megamenu__left-top {
  order: 1;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  z-index: 10;
  background: blue;
  background: rgb(0, 0, 0);

  .megamenu__logo-svg {
    height: 90px;
    width: auto;
    margin-top: 16px;
    margin-bottom: 26px;
  }
}

/* payoff */

.payoff {
  color: var(--accent);
  font-size: 26px;
  line-height: 32px;
  font-weight: 100;
  display: none;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #666666;
}

@media (min-width: 1024px) and (min-height: 640px) {
  .payoff {
    display: block;
  }
}

@media (min-width: 1400px) and (min-height: 640px) {
  .payoff {
    font-size: 32px;
    font-weight: 100;
    margin-right: 50px;
    line-height: 38px;
  }
}

/* /payoff */
.megamenu__left-top-inner {
  display: grid;
  grid-template-columns: auto minmax(160px, auto);
  padding: 0 0px 0 20px;
}

.search-container {
  padding: 20px 20px;
  display: none;
  label {
    font-size: 14px;
    margin-bottom: 2px;
    color: #bdbdbd;
  }
  input {
    border-color: #fff;
    background-color: #202020;
    color: #fff;
  }
}

/* Mobile controls: lang + search + close (visible on mobile) */
.megamenu__mobile-controls {
  display: flex;
  align-items: center;
  gap: 0px;
  background-color: green;
  background: rgb(0, 0, 0);
  height: 60px;
  .megamenu__lang {
    gap: 0;
    margin-right: 10px;
  }
  > button {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    svg {
      width: 28px;
      height: auto;
    }
  }
}

/* Desktop lang (hidden on mobile) */
.megamenu__desktop-lang {
  display: none;
}

/* Left-top children hidden on mobile (tagline, socials) */
.megamenu__left-tagline,
.megamenu__left-socials {
  display: none;
}

/* ── Right panel: nav area (mobile middle) ── */
.megamenu__right {
  order: 2;
  flex: 1;
  padding: 0 20px;
}

/* Search bar hidden on mobile */
.megamenu__search {
  display: none !important;
}

/* ── Left-bottom: research + IL + sissanet (mobile bottom) ── */
.megamenu__left-bottom {
  order: 3;
  background-color: #000;
  flex-shrink: 0;
  padding: 0 20px 2.5rem;
}

/* Desktop close: hidden on mobile */
header .megamenu__close-desktop {
  display: none;
}

/* ═══════════════════════════════════════════════════════════
   OVERLAY — controls (shared)
   ═══════════════════════════════════════════════════════════ */
.megamenu__close,
.megamenu__search-btn,
.megamenu__close-desktop {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mm-text);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
}

.megamenu__lang {
  display: flex;
  gap: 8px;
}

.megamenu__lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 0.8rem;
  font-family: inherit;
  padding: 0 14px;
  border-bottom: 2px solid #666;
  width: auto;
  text-decoration: none;
  padding-bottom: 6px;
  font-weight: 500;

  &:hover {
    text-decoration: underline;
    color: #fff;
  }

  &.megamenu__lang-btn--active {
    text-decoration: none;
    border-bottom: 2px solid #fff;
    color: #fff;
  }
}

.megamenu__lang-btn--active {
  color: var(--mm-text);
  text-decoration: underline;
}

/* ═══════════════════════════════════════════════════════════
   NAV ACCORDION
   ═══════════════════════════════════════════════════════════ */
.megamenu__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.megamenu__nav-item {
  border-bottom: 1px solid #4e4e4e;

  &:last-child {
    border-bottom: 0px;
  }
}

.megamenu__nav-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  color: #a8a8a8;
  font-weight: 400;
  font-size: 1.25rem;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  text-decoration: none;
}

.megamenu__nav-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 20px;
}

.megamenu__nav-trigger[aria-expanded="true"] .megamenu__nav-icon {
  transform: rotate(45deg);
  path {
    stroke: #fff;
  }
}

.megamenu__nav-trigger[aria-expanded="true"] {
  color: #fff;
}

.megamenu__nav-panel {
  padding-bottom: 1rem;
}

.megamenu__nav-group {
  margin-bottom: 1.2rem;
}

.megamenu__nav-heading {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #666;
  margin-bottom: 0.5rem;
}

@media (min-width: 1400px) and (min-height: 640px) {
  .megamenu__nav-heading {
    margin-bottom: 15rem;
    background-color: salmon;
  }
}

.megamenu__nav-sub-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.megamenu__nav-sub-link {
  display: block;
  padding: 0.35rem 0;
  color: var(--mm-muted);
  text-decoration: none;
  font-size: 0.9rem;
  position: relative;
  transition: 0.2s ease;

  &:before {
    content: "";
    background-color: #fff;
    width: 16px;
    height: 2px;
    position: absolute;
    transition: 0.2s ease;
    margin-right: 10px;
    top: 17px;
    transform-origin: left;
    left: 0;
    transform: translate3d(0px, 0, 0) scaleX(0);
  }

  &:hover:before {
    transform: translate3d(-30px, 0, 0) scaleX(1);
  }

  &:hover {
    transform: translate3d(30px, 0, 0);
  }
}

.megamenu__nav-sub-link:hover {
  color: var(--mm-text);
}

.megamenu__nav-sub-desc {
  display: block;
  font-size: 0.75rem;
  color: #555;
  margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   RESEARCH AREAS, IL, SISSANET in left-bottom
   ═══════════════════════════════════════════════════════════ */
.megamenu__left-research,
.megamenu__left-il {
  margin-top: 2.5rem;
}

.megamenu__left-research .section-title,
.megamenu__left-il .section-title {
  color: var(--mm-muted);
  text-transform: uppercase;
  padding: 10px 0;
  font-size: 12px;
}

.megamenu__left-research a,
.megamenu__left-il a {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.megamenu__left-research a:hover,
.megamenu__left-il a:hover {
  opacity: 0.8;
}

.megamenu__left-research img,
.megamenu__left-il img {
  height: 64px;
  width: auto;
}

/* Degradation when an area term ships no logo media and no theme asset
   matches: the link still names its destination instead of collapsing to a
   zero-size anchor (WCAG 2.4.4). */
.megamenu__area-name {
  color: var(--mm-text);
  font-size: 1.25rem;
  text-transform: uppercase;
}

@media (min-width: 1024px) and (min-height: 640px) {
  .megamenu__left-research a,
  .megamenu__left-il a {
    margin-bottom: 10px;
  }

  .megamenu__left-research img,
  .megamenu__left-il img {
    height: 54px;
  }
}

@media (min-width: 1400px) and (min-height: 640px) {
  .megamenu__left-research a,
  .megamenu__left-il a {
    margin-bottom: 2vh;

    img {
      transition: 0.2s ease;
    }

    &:hover {
      opacity: 1;
      img {
        transform: translateX(10px);
      }
    }
  }

  .megamenu__left-research img,
  .megamenu__left-il img {
    height: 9vh;
  }
}

.megamenu__left-research .corner-arrow,
.megamenu__left-il .corner-arrow {
  width: 38px;
  height: auto;
}

.megamenu__left-sissanet {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
  color: var(--mm-text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  width: 100%;
  background: red;
  background-color: transparent;
  border-top: 1px solid #666666;
  padding: 40px 10px 20px 10px;
}

/* ═══════════════════════════════════════════════════════════
   DESKTOP  (≥ 992 px)
   ═══════════════════════════════════════════════════════════ */
@media (min-width: 1024px) and (min-height: 640px) {
  /* ── Hide mobile bar ── */
  .megamenu__topbar {
    display: none;
  }

  /* ── Desktop strip: fixed left, always visible ── */
  .megamenu__strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: var(--mm-strip-w);
    background: greenyellow;
    background-color: #fff;
    box-shadow: 0px 0px 40px 0px #00000017;
    z-index: 900;

    .megamenu__logo-link {
      position: relative;
      top: 10px;
      left: 10px;
      transition: 0.2s ease;

      &:hover {
        transform: translateX(8px);
      }
    }
    .megamenu__hamburger-line {
      transition: 0.2s ease;
      background: #000;
    }
    .megamenu__strip-menu-label {
      position: absolute;
      top: 40px;
      color: #000;
    }
  }

  .megamenu__strip-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: none;
    position: relative;
    border: none;
    cursor: pointer;
    padding: 16px 0 8px;
    color: var(--mm-text);
    transition: 0.2s ease;

    &:hover .megamenu__hamburger-line:first-child {
      transform: translateY(-2px);
    }
    &:hover .megamenu__hamburger-line:nth-child(3) {
      transform: translateY(2px);
    }
  }

  .megamenu__strip-menu-label {
    font-size: 9px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    margin-top: 4px;
  }

  .megamenu__strip-research {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding-bottom: 8px;
    margin-bottom: 2rem;

    a {
      width: 60px;
      height: 60px;
      position: relative;
      left: 10px;

      img:not(.label) {
        position: absolute;
        width: 100%;
      }

      /* The area's wordmark, parked behind its icon and revealed by the rule
         below. `pointer-events: none` keeps it from covering the icon it
         slides out of, so the hover it depends on never flickers off. */
      img.label {
        position: absolute;
        bottom: 0;
        transform: translateX(20px);
        opacity: 0;
        pointer-events: none;
        height: 30px;

        box-shadow: 0px 0px 33px 0px #0000000f;
      }

      /* :focus-visible rides along with :hover — this wordmark is the only
         thing that names the area on screen, and a keyboard user tabbing into
         the strip has no pointer to reveal it with (WCAG 2.4.7 / 2.1.1). */
      &:hover,
      &:focus-visible {
        img:not(.label) {
          transform: translateX(10px);
        }
        img.label {
          transform: translateX(80px);
          opacity: 1;
        }
      }
    }
  }

  .megamenu__strip-research a img {
    object-fit: contain;
    transition: 0.2s ease;
  }

  /* Hide strip when overlay is open */
  .megamenu--overlay-open .megamenu__strip {
    display: none;
  }

  /* ── Overlay: 2-column grid, no slide animation ── */
  .megamenu__overlay {
    transform: none;
    left: 0;
    display: grid;
    grid-template-columns: minmax(35%, 50%) minmax(50%, 65%);
    grid-template-rows: 1fr auto;
    overflow: hidden;
    transition: opacity 0.25s ease;
  }

  .megamenu__overlay {
    transform: translateX(0%);
    transition:
      opacity 0.2s,
      transform 1s ease;
    opacity: 1;
    background-color: transparent;

    .megamenu__left {
      transform: translateX(-200%);
      transition: transform 1s ease;
    }
    .megamenu__right {
      transform: translateX(-120vw);
      transition: transform 1s ease;
      transition-delay: 0.2s;
      z-index: -1;
    }
  }

  .megamenu__overlay.is-open {
    pointer-events: all;
    opacity: 1;

    .megamenu__left {
      transform: translateX(0%);
    }
    .megamenu__right {
      padding: 0 60px;
      transform: translateX(0%);
      opacity: 1;
    }
  }

  .megamenu__overlay.closing {
    .megamenu__right {
      transition-delay: 0s !important;
    }
  }

  /* ── Left wrapper: restore to normal block ── */
  .megamenu__left {
    display: flex;
    flex-direction: column;
    grid-column: 1;
    grid-row: 1 / 3;
    padding-bottom: 0rem;
    padding-top: 0rem;
    padding-left: 70px;
    background-color: red;
    background-color: rgb(0, 0, 0);

    .megamenu__close-button-container {
      border: 0px;
      color: #fff;
      width: 60px;
      background-color: rgb(0, 0, 0);
      height: 60px;
      position: absolute;
      display: flex;
      flex-direction: column;
      font-size: 12px;
      margin: 0;
      top: 50%;
      transform: translateY(-50%);
      left: 20px;
      svg {
        width: 25px;
        height: auto;
      }
    }
  }

  .megamenu__left-top {
    order: unset;
    position: static;
    flex-shrink: 0;
    border-bottom: none;
    padding: 22px 24px 0px 24px;
  }

  .megamenu__left-top-inner {
    height: auto;
    padding: 0;

    .megamenu__logo-svg {
      margin-bottom: 0px;
      margin-top: 0;
      height: 100px;
    }
  }

  /* Mobile controls hidden on desktop */
  .megamenu__mobile-controls {
    display: none;
  }

  /* Desktop lang shown */
  .megamenu__desktop-lang {
    display: flex;
    align-items: baseline;
    gap: 8px;
  }

  /* Tagline + socials shown on desktop */
  .megamenu__left-tagline {
    display: block;
    font-size: 13px;
    color: var(--mm-muted);
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .phantom-menu-social {
    margin: 3vh 0rem 1vh 0rem;
  }

  .megamenu__left-socials {
    display: flex;
    gap: 12px;
    align-items: center;
  }

  .megamenu__left-socials a {
    color: var(--mm-muted);
    transition: color 0.2s ease;
    display: flex;
    align-items: center;
  }

  .megamenu__left-socials a:hover {
    color: var(--mm-text);
  }

  .megamenu__left-socials .icon,
  .megamenu__left-socials svg {
    width: 4vh;
    height: 4vh;
    fill: #fff;

    &:hover {
      opacity: 0.7;
    }
  }

  /* ── Left bottom: pushed to bottom of left col ── */
  .megamenu__left-bottom {
    order: unset;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0px 30px 24px 24px;

    .megamenu__left-il {
      margin-top: 1vh;
    }

    .megamenu__left-research {
      margin-top: 0;
    }

    .megamenu__left-sissanet {
      margin-top: auto;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .section-title {
      border-top: 1px solid #666666;
      margin-bottom: 0px;
    }

    a {
      position: relative;
      .icon-arrow-corner {
        width: 30px;
        height: 30px;
        svg {
          width: 30px;
        }
      }
    }
  }

  /* Desktop close button */
  .megamenu__close-desktop {
    display: flex !important;
    margin-top: 2rem;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--mm-muted);
    font-family: inherit;
    cursor: pointer;
  }

  .megamenu__close-desktop:hover {
    color: var(--mm-text);
  }

  /* ── Right panel ── */
  .megamenu__right {
    background-color: red;
    background-color: #000;

    background-image: url(/themes/custom/pt_base/images/dark-grey-pattern-bg.png);
    background-size: 200px;
    background-repeat: repeat;
    height: 100vh;
    overflow-y: scroll;
    width: calc(100% + 20px);

    .megamenu__right-inner-container {
      background-color: darkkhaki;
      background-color: transparent;
      order: unset;
      grid-column: 2;
      grid-row: 1 / 3;
      padding: 10px 0px 10px 0px;
      display: flex;
      flex-direction: column;
      margin: 0px auto;
      max-width: 750px;
    }
  }

  /* Search bar shown on desktop */
  .megamenu__search {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 28px 0;
    flex-shrink: 0;
    input[type="search"] {
      border-bottom: 1px solid #4e4e4e;
      color: #7e7e7e;
    }

    input[type="search"]:focus {
      color: #fff;
    }
  }

  .megamenu__search-input {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 1px solid var(--mm-border);
    color: var(--mm-text);
    font-size: 1.5rem;
    font-family: inherit;
    padding: 8px 0;
    outline: none;
  }

  .megamenu__search-input::placeholder {
    color: var(--mm-border);
  }

  .megamenu__search-submit {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--mm-muted);
    padding: 4px;
    flex-shrink: 0;
  }

  /* Nav takes remaining space */
  .megamenu__nav-list {
    flex: 1;
  }

  /* Larger trigger text on desktop */
  .megamenu__nav-trigger {
    font-size: 1.75rem;
    padding: 1.75rem 0;

    &:hover {
      color: #fff;
    }
  }
}

@media (min-width: 1200px) {
  .megamenu__nav-icon {
    width: 25px;
  }

  .megamenu__right {
    .megamenu__right-inner-container {
      padding: 40px 0px 10px 0px;
    }
  }

  .megamenu__nav-sub-link {
    font-size: 1rem;
  }

  .megamenu__nav-trigger {
    font-size: 2rem;
  }

  .megamenu__left-bottom {
    padding: 0px 24px 24px 24px;
  }
  .megamenu__left {
    padding-left: 100px;
  }
  .megamenu__strip .megamenu__logo-link {
    width: 90px;
    height: 90px;
    left: 20px;
    svg,
    img {
      width: 100%;
      height: 100%;
    }
  }

  /* ── Overlay: 2-column grid, no slide animation ── */
  .megamenu__overlay {
    grid-template-columns: minmax(25%, 50%) minmax(50%, 75%);
  }
}

@media (min-width: 1200px) {
  .megamenu__strip .megamenu__logo-link {
    left: 24px;
  }
}
@media (min-width: 1400px) and (min-height: 640px) {
  .megamenu__left-bottom {
    padding: 2vh 74px 2vh 24px;
  }

  .megamenu__left {
    padding-bottom: 1vh;
    padding-top: 1vh;
  }

  .megamenu__left-top-inner {
    .megamenu__logo-svg {
      height: 18vh;
    }
  }
}

@media (min-width: 800px) {
  .megamenu__left-top-inner {
    .megamenu__logo-svg {
      height: 20vh;
    }
  }

  .megamenu__left-socials .icon,
  .megamenu__left-socials svg {
    height: 3.5vh;
    height: 3.5vh;
  }
}

@media (min-width: 1400px) and (min-height: 640px) {
  /* ── Overlay: 2-column grid, no slide animation ── */
  .megamenu__overlay {
    grid-template-columns: minmax(25%, 50%) minmax(50%, 75%);
  }
}

/* override icon */
.megamenu__left-research a:nth-child(2) svg {
  rect {
    fill: var(--phisycs);
  }
  path {
    stroke: var(--phisycs);
  }
}
.megamenu__left-research a:nth-child(3) svg {
  rect {
    fill: var(--math);
  }
  path {
    stroke: var(--math);
  }
}
.megamenu__left-research a:nth-child(4) svg {
  rect {
    fill: var(--neuroscience);
  }
  path {
    stroke: var(--neuroscience);
  }
}
@media (max-width: 991px) {
  .megamenu .icon-arrow-corner {
    transition: none;
    opacity: 1;
    position: relative;
    display: flex;
    justify-content: end;
    align-items: end;
    svg {
      width: 34px;
      height: auto;
    }
  }

  .megamenu .icon-arrow-corner .arrow-body,
  .megamenu .icon-arrow-corner .arrow-corner-h,
  .megamenu .icon-arrow-corner .arrow-corner-v {
    stroke-dasharray: none;
    stroke-dashoffset: 0;
    transition: none;
  }

  .megamenu .icon-arrow-corner .arrow-corner-fill {
    opacity: 1;
    transition: none;
  }
  .megamenu__left-research a,
  .megamenu__left-il a {
    margin-bottom: 2.2vh;
  }
  .megamenu__left-bottom {
    justify-content: space-around;
  }
}
