/* ============================================================
   CUSTOM HEADER — Replicates caplinks.ae
   ============================================================ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --hdr-bg: #ffffff;
  --hdr-bg-sticky: #f3f4f4;
  --hdr-text: #1e1b4f;
  --hdr-text-hover: #c9982e;
  --hdr-nav-size: 17px;
  --hdr-nav-weight: 500;
  --hdr-height: 70px;
  --hdr-logo-max-h: 80px;
  --hdr-btn-bg: transparent;
  --hdr-btn-color: #1e1b4f;
  --hdr-btn-border: #1e1b4f;
  --hdr-btn-hover-bg: #c9982e;
  --hdr-btn-hover-clr: #ffffff;
  --hdr-btn-hover-brd: #c9982e;
  --hdr-dropdown-bg: #ffffff;
  --hdr-dropdown-sh: 0 8px 40px rgba(0, 0, 0, 0.10);

  /* Mobile */
  --hdr-mobile-bg: #EDEFF1;
  --hdr-mobile-text: #1e1b4f;
  --hdr-mobile-text-hover: #c9982e;
  --hdr-mobile-size: 30px;
  --hdr-mobile-weight: 700;
  --hdr-mobile-submenu-size: 17px;
  --hdr-mobile-text-light: rgba(255, 255, 255, 0.55);
  --hdr-mobile-border: rgba(255, 255, 255, 0.10);
  --hdr-z: 1000;
  --hdr-height-mobile: 80px;
  --transition: 0.28s ease;

  /* Container Width */
  --container-width: 1320px;
  --padding: 80px 0 0;

  /* Site Settings */
  --primary: #1E1B4F;
  --accent: #C9982E;
  --text-light: #ffffff;
  --text-dark: #656565;
  --heading-dark: #3A3A4C;
  --section-white-bg: #ffffff;
  --overlay: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.85));

  /* Font */
  --site-font: "Maven Pro", sans-serif;



}

body {
  font-family: "DM Sans", sans-serif;
}


/* ── Reset ───────────────────────────────────────────────── */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  line-height: 1.647em;
}

.custom-site-header *,
.menu-mobile-panel *,
.menu-mobile-overlay {
  box-sizing: border-box;
}

.custom-site-header ul,
.menu-mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.custom-site-header a,
.menu-mobile-panel a {
  text-decoration: none;
}

/* ── Visibility helpers ──────────────────────────────────── */
/* Desktop only */
.sc_hide_mobile,
.sc_hide_tablet {
  display: flex !important;
}

/* Mobile/tablet only */
.sc_hide_desktop {
  display: none !important;
}

@media (max-width: 1024px) {
  .sc_hide_mobile {
    display: none !important;
  }

  .sc_hide_tablet {
    display: none !important;
  }

  .sc_hide_desktop {
    display: flex !important;
  }

  .custom-logo-link img {
    max-height: 6em;
    width: auto;
    vertical-align: middle;
  }
}

@media (max-width: 767px) {
  .sc_hide_mobile {
    display: none !important;
  }
}

/* ============================================================
   HEADER WRAPPER
   ============================================================ */
.custom-site-header {
  position: relative;
  width: 100%;
  z-index: var(--hdr-z);
}

/* ============================================================
   HEADER ROWS (shared)
   ============================================================ */
.header-row {
  width: 100%;
  background: var(--hdr-bg);
}

.header-container {
  width: 100%;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--hdr-height);
}

/* ── Columns ─────────────────────────────────────────────── */
.header-col-logo {
  flex-shrink: 0;
}

.header-col-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.header-col-action {
  flex-shrink: 0;
}

.header-col-burger {
  flex-shrink: 0;
}

/* ── Logo ────────────────────────────────────────────────── */
.header-logo-link,
.menu-mobile-logo {
  display: inline-flex;
  align-items: center;
}

.header-logo-link img,
.menu-mobile-logo img,
.header-logo-link .custom-logo,
.menu-mobile-logo .custom-logo {
  max-height: var(--hdr-logo-max-h);
  width: auto;
  display: block;
}

.header-site-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--hdr-text);
}

/* ============================================================
   NORMAL ROW
   ============================================================ */
.header-row-normal {
  position: relative;
  z-index: var(--hdr-z);
}

/* ============================================================
   STICKY ROW
   ============================================================ */
.header-row-sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--hdr-bg-sticky);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s ease;
  z-index: calc(var(--hdr-z) + 1);
}

.header-row-sticky.is-visible {
  transform: translateY(0);
  opacity: 1;
}

/* ============================================================
   DESKTOP NAVIGATION
   ============================================================ */
.header-nav {
  display: flex;
  align-items: center;
}

.header-nav-menu {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

/* Top-level items */
.header-nav-menu>li {
  position: relative;
}

.header-nav-menu>li>a {
  display: block;
  padding: 0 16px;
  height: var(--hdr-height);
  line-height: var(--hdr-height);
  font-size: var(--hdr-nav-size);
  font-weight: var(--hdr-nav-weight);
  color: var(--hdr-text);
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}

/* Zoom-line hover underline effect (matches menu_hover_zoom_line) */
.header-nav-menu>li>a::after {
  content: '';
  position: absolute;
  bottom: 14px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--hdr-text-hover);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.header-nav-menu>li>a:hover::after,
.header-nav-menu>li.current-menu-item>a::after,
.header-nav-menu>li.current-menu-ancestor>a::after {
  transform: scaleX(1);
}

.header-nav-menu>li>a:hover,
.header-nav-menu>li.current-menu-item>a,
.header-nav-menu>li.current-menu-ancestor>a {
  color: var(--hdr-text-hover);
}

/* Dropdown caret */
.dropdown-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  vertical-align: middle;
  margin-left: 5px;
  margin-top: -2px;
  transition: transform 0.2s ease;
}

.has-dropdown:hover .dropdown-caret {
  transform: rotate(180deg);
}

/* ── Dropdown (sub-menu) ─────────────────────────────────── */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 220px;
  background: var(--hdr-dropdown-bg);
  border-radius: 4px;
  box-shadow: var(--hdr-dropdown-sh);
  border-top: 2px solid var(--hdr-text-hover);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition),
    visibility var(--transition),
    transform var(--transition);
  z-index: 999;
  white-space: nowrap;
}

.has-dropdown:hover>.nav-dropdown,
.has-dropdown:focus-within>.nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 400;
  color: var(--hdr-text);
  transition: color var(--transition), padding-left var(--transition);
}

.nav-dropdown li a:hover,
.nav-dropdown li.current-menu-item>a {
  color: var(--hdr-text-hover);
  padding-left: 26px;
}

/* 3rd level */
.nav-dropdown .has-dropdown>.nav-dropdown {
  left: 100%;
  top: -8px;
  transform: translateY(0);
}

.nav-dropdown .has-dropdown:hover>.nav-dropdown {
  transform: none;
}

.custom-site-header .custom-logo-link img {
  max-height: 8.5em;
  width: auto;
  vertical-align: middle;
}

/* ============================================================
   CONTACT US BUTTON
   ============================================================ */
.header-contact-btn {
  display: inline-block;
  padding: 8px 22px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--hdr-btn-color);
  background: var(--hdr-btn-bg);
  border: 1px solid var(--hdr-btn-border);
  border-radius: 3px;
  transition: background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  white-space: nowrap;
}

.header-contact-btn:hover {
  background: var(--hdr-btn-hover-bg);
  color: var(--hdr-btn-hover-clr);
  border-color: var(--hdr-btn-hover-brd);
  box-shadow: 0 4px 20px rgba(20, 100, 160, 0.3);
}

/* ============================================================
   MOBILE HEADER ROW (fixed bar with logo + burger)
   ============================================================ */
.header-row-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--hdr-bg);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  z-index: calc(var(--hdr-z) + 2);
}

.header-row-mobile .header-container {
  height: var(--hdr-height-mobile);
}



/* ── Burger ──────────────────────────────────────────────── */
.menu-mobile-open {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.burger-line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--hdr-text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================================
   OVERLAY — matches .menu_mobile_overlay (low opacity)
   ============================================================ */
.menu-mobile-overlay {
  display: none;
  /* JS switches to block */
  position: fixed;
  inset: 0;
  z-index: calc(var(--hdr-z) + 3);
  background: var(--hdr-mobile-bg);
  opacity: 0.1;
  /* matches Elementor overlay opacity */
  cursor: pointer;
}

.menu-mobile-overlay.is-visible {
  display: block;
}

/* ============================================================
   FULLSCREEN PANEL — height-based open (matches Elementor)
   ============================================================ */
.menu-mobile-panel {
  position: fixed;
  top: 0;
  left: 0;
  z-index: calc(var(--hdr-z) + 4);
  width: 100%;
  height: 0;
  /* closed state */
  overflow: hidden;
  will-change: height;
  transition: height 0.45s cubic-bezier(0.5, 1, 0.89, 1);
}

.menu-mobile-panel.is-open {
  height: 100%;
}

/* ── Inner — fills full panel, centered text ─────────────── */
.menu-mobile-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
  text-align: center;
  color: var(--hdr-mobile-text);
  background: var(--hdr-mobile-bg);
}

/* ── Header wrap (logo + close) — absolute top ───────────── */
.menu-mobile-header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 40px 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

@media (max-width: 600px) {
  .menu-mobile-header {
    padding: 28px 24px;
  }
}

/* ── Logo inside mobile menu ─────────────────────────────── */
.menu-mobile-logo {
  display: inline-flex;
  align-items: center;
}

.menu-mobile-logo img,
.menu-mobile-logo .custom-logo {
  max-height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

/* ============================================================
   CLOSE BUTTON — matches .menu_mobile_close
   ============================================================ */
.menu-mobile-close {
  position: relative;
  z-index: 1;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--hdr-mobile-text);
  transition: color 0.3s ease;
}

.menu-mobile-close:hover {
  color: var(--hdr-mobile-text-hover);
}

/* Close icon — rotates on hover, matches menu_button_close_icon */
.menu-close-icon {
  font-size: 19px;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  transform: rotate(0deg);
  transition: transform 0.3s ease-out;
  display: inline-block;
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  color: var(--hdr-mobile-text-dark);
}

.menu-close-icon::before,
.menu-close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

.menu-close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.menu-close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.menu-mobile-close:hover .menu-close-icon {
  transform: rotate(180deg);
}

/* ============================================================
   CONTENT WRAP — scrollable nav area
   ============================================================ */
.menu-mobile-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
}

.menu-mobile-nav-area {
  position: absolute;
  top: 27%;
  /* matches .menu_mobile_nav_area top:27% */
  left: 0;
  width: 100%;
  max-height: 65%;
  /* without_socials variant */
  overflow-x: hidden;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.menu-mobile-nav-area::-webkit-scrollbar {
  width: 0;
}

/* ============================================================
   MOBILE NAV — top-level list
   Matches: .menu_mobile_nav_area > ul
   ============================================================ */
.menu-mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

/* All items */
.menu-mobile-nav li {
  margin-bottom: 0;
  width: 100%;
}

/* All links base */
.menu-mobile-nav .menu-item>a {
  display: inline-block;
  width: auto;
  text-align: left;
  padding: 5px 2em;
  position: relative;
  box-sizing: border-box;
  font-size: var(--hdr-mobile-size);
  line-height: 1.5em;
  font-weight: var(--hdr-mobile-weight);
  letter-spacing: 0.6px;
  color: var(--hdr-mobile-text);
  transition: color 0.3s ease;
  text-decoration: none;
}

/* TOP-LEVEL links — large bold  */
.menu-mobile-nav>li>a {
  font-size: 30px;
  line-height: 1.5em;
  font-weight: 700;
  letter-spacing: 0;
  padding: 5px 2em;
}

/* Hover / active states */
.menu-mobile-nav .menu-item>a:hover,
.menu-mobile-nav .current-menu-ancestor>a,
.menu-mobile-nav .current-menu-item>a,
.menu-mobile-nav .menu-item.opened>a {
  color: var(--hdr-mobile-text-hover);
}

/* Sub-level links — indented */
.menu-mobile-nav>li .menu-item>a {
  padding: 0.4em 3.7em;
}

/* 3rd level */
.menu-mobile-nav>li .menu-item .menu-item>a {
  padding: 0.4em 5.7em;
}

/* ============================================================
   OPEN CHILD MENU ARROW
   Matches: .menu_mobile_nav_area .open_child_menu
   ============================================================ */

/* The arrow — uses a CSS triangle instead of icon font */
.open-child-menu::before {
  content: '';
  position: relative;
  display: inline-block;
  right: 10px;
  /* starts offset = hidden */
  opacity: 0;
  /* CSS chevron right arrow */
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  vertical-align: middle;
  transition: right 0.3s ease-out,
    color 0.3s ease,
    opacity 0.3s ease;
}

/* Sub-level arrow — smaller */
.menu-mobile-nav>li .menu-item .open-child-menu::before {
  width: 5px;
  height: 5px;
}

/* Show arrow on hover or when opened */
.menu-mobile-nav li.submenu-open>a>.open-child-menu::before,
.menu-mobile-nav li>a:hover>.open-child-menu::before {
  right: 0;
  opacity: 1;
}


/* ── Arrow on mobile nav items ── */
.open-child-menu {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 2.5em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--hdr-mobile-text);
  transition: color 0.25s ease;
}

/* ── Sub-menu: height slide — JS drives the height value ── */
.menu-mobile-nav .sub-menu {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  transition: height 0.38s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-mobile-nav .sub-menu a {
  font-size: var(--hdr-mobile-submenu-size);
  line-height: 1.4em;
  font-weight: 400;
  letter-spacing: 0.4px;
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeInAnim {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeOutAnim {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

@keyframes fadeInAnimScale {
  from {
    opacity: 0;
    transform: scale(0.2) rotate(0deg);
  }

  to {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }
}

@keyframes fadeOutAnimScale {
  from {
    opacity: 1;
    transform: scale(1) rotate(180deg);
  }

  to {
    opacity: 0;
    transform: scale(0.2) rotate(0deg);
  }
}

/* ============================================================
   CLOSE BUTTON ANIMATIONS
   ============================================================ */
/* ── Fade IN when panel opens ── */
.menu-mobile-panel.is-open .menu-mobile-close .menu-close-text {
  animation: fadeInAnim 0.6s 0.3s both;
  visibility: visible;
}

.menu-mobile-panel.is-open .menu-mobile-close .menu-close-icon {
  animation: fadeInAnim 0.6s 0.3s both;
  /* ← was fadeInAnimScale, that's the bug */
  visibility: visible;
}

/* ── Close button base ── */
.menu-mobile-close {
  position: relative;
  z-index: 1;
  margin: 0 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--hdr-mobile-text-dark);
  transition: color 0.3s ease;
}

.menu-mobile-close:hover {
  color: var(--hdr-mobile-text-dark);
}

/* Close label */
.menu-close-text {
  font-size: 17px;
  line-height: 1em;
  font-weight: 400;
  margin-right: 0.9em;
  color: var(--hdr-mobile-text);
}

/* Close icon — CSS X shape */
.menu-close-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  box-sizing: border-box;
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  transition: transform 0.3s ease-out;
  color: var(--hdr-mobile-text-dark);
}

.menu-close-icon::before,
.menu-close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
}

.menu-close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.menu-close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

/* Hover — clean CSS transition, no animation conflict */
.menu-mobile-close:hover .menu-close-icon {
  transform: rotate(180deg);
}

/* Fade IN */
.menu-mobile-panel.is-open .menu-mobile-close .menu-close-text {
  animation: fadeInAnim 0.6s 0.3s both;
  visibility: visible;
}

.menu-mobile-panel.is-open .menu-mobile-close .menu-close-icon {
  animation: fadeInAnim 0.6s 0.3s both;
  visibility: visible;
}

/* Fade OUT */
.menu-mobile-panel.out-anim .menu-mobile-close .menu-close-text {
  animation: fadeOutAnim 0.3s both;
  visibility: visible;
}

.menu-mobile-panel.out-anim .menu-mobile-close .menu-close-icon {
  animation: fadeOutAnim 0.3s both;
  visibility: visible;
  pointer-events: none;
}

/* Fully closed — reset */
.menu-mobile-panel:not(.is-open):not(.out-anim) .menu-mobile-close .menu-close-icon {
  transform: none;
  animation: none;
}

/* ============================================================
   NAV ITEMS STAGGERED ANIMATION
   ============================================================ */

/* Hidden by default */
.menu-mobile-nav>li {
  visibility: hidden;
  opacity: 0;
}

/* Animate in when panel is open */
.menu-mobile-panel.is-open .menu-mobile-nav>li {
  animation: fadeInAnim 0.6s both;
  visibility: visible;
}

/* Stagger delays (open) */
.menu-mobile-panel.is-open .menu-mobile-nav>li:nth-child(1) {
  animation-delay: 0.40s;
}

.menu-mobile-panel.is-open .menu-mobile-nav>li:nth-child(2) {
  animation-delay: 0.50s;
}

.menu-mobile-panel.is-open .menu-mobile-nav>li:nth-child(3) {
  animation-delay: 0.60s;
}

.menu-mobile-panel.is-open .menu-mobile-nav>li:nth-child(4) {
  animation-delay: 0.70s;
}

.menu-mobile-panel.is-open .menu-mobile-nav>li:nth-child(5) {
  animation-delay: 0.80s;
}

.menu-mobile-panel.is-open .menu-mobile-nav>li:nth-child(6) {
  animation-delay: 0.90s;
}

.menu-mobile-panel.is-open .menu-mobile-nav>li:nth-child(7) {
  animation-delay: 1.00s;
}

.menu-mobile-panel.is-open .menu-mobile-nav>li:nth-child(8) {
  animation-delay: 1.10s;
}

/* Animate OUT (.out-anim added by JS) */
.menu-mobile-panel.out-anim .menu-mobile-nav>li {
  animation: fadeOutAnim 0.3s both;
  visibility: visible;
}

/* Reverse stagger (out — fastest items last to first) */
.menu-mobile-panel.out-anim .menu-mobile-nav>li:nth-child(1) {
  animation-delay: 0.20s;
}

.menu-mobile-panel.out-anim .menu-mobile-nav>li:nth-child(2) {
  animation-delay: 0.16s;
}

.menu-mobile-panel.out-anim .menu-mobile-nav>li:nth-child(3) {
  animation-delay: 0.12s;
}

.menu-mobile-panel.out-anim .menu-mobile-nav>li:nth-child(4) {
  animation-delay: 0.08s;
}

.menu-mobile-panel.out-anim .menu-mobile-nav>li:nth-child(5) {
  animation-delay: 0.04s;
}

.menu-mobile-panel.out-anim .menu-mobile-nav>li:nth-child(6) {
  animation-delay: 0.00s;
}

/* Sub-menu items also start hidden, appear normally once sub-menu opens (no stagger) */
.menu-mobile-nav .sub-menu>li {
  visibility: visible;
  opacity: 1;
  animation: none !important;
}

/* ============================================================
   SCROLL LOCK + OFFSETS
   ============================================================ */
body.menu-mobile-open-body {
  overflow: hidden;
}

/* Admin bar compensation */
.admin-bar .menu-mobile-panel {
  top: 32px;
}

.admin-bar .menu-mobile-panel.is-open {
  height: calc(100% - 32px);
}

@media (max-width: 782px) {
  .admin-bar .menu-mobile-panel {
    top: 46px;
  }

  .admin-bar .menu-mobile-panel.is-open {
    height: calc(100% - 46px);
  }
}

@media (max-width: 600px) {
  .admin-bar .menu-mobile-panel {
    top: 0;
  }

  .admin-bar .menu-mobile-panel.is-open {
    height: 100%;
  }

  .custom-site-header .custom-logo-link img {
    max-height: 4.5em;
  }

  .header-row-mobile .header-container {
    height: 50px;
  }

}