﻿/* AL-AHOUD NAVIGATION - ACTIVE + HOVER FIX */

.header .links a {
  position: relative !important;
  text-decoration: none !important;
  color: inherit !important;
}

.header .links a::after {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -12px !important;
  height: 3px !important;
  background: #d9232e !important;
  border-radius: 10px !important;
  transform: scaleX(0) !important;
  transform-origin: center !important;
  transition: transform .2s ease !important;
}

/* Hover = underline the item under the mouse */
.header .links a:hover::after {
  transform: scaleX(1) !important;
}

/* Current page */
.header .links a.nav-current::after {
  transform: scaleX(1) !important;
}

/* Never force underline on first item */
.header .links a:first-child::after {
  transform: scaleX(0) !important;
}

.header .links a:first-child:hover::after {
  transform: scaleX(1) !important;
}

.header .links a.nav-current:first-child::after {
  transform: scaleX(1) !important;
}
