<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
======================================================================
HORIZONTAL MENU (Responsive)
======================================================================
*/

/* Reset */
.pf-cssmenu-brands-menu,
.pf-cssmenu-brands-menu ul,
.pf-cssmenu-brands-menu li {
  overflow: visible;
  margin: 0;
  padding: 0;
  list-style: none;
}


/* Clearfix */
.pf-cssmenu-brands-menu-div::after,
.pf-cssmenu-brands-menu::after {
  clear: both;
  display: table;
  content: '';
}


/* Menu Trigger
---------------------------------------------------------------------- */
.menu-trigger {
  display: none;
  cursor: pointer;
}

/* mobile */
@media (max-width: 768px) {
  .menu-trigger {
    display: block;
  }
}


/* Global Styling
---------------------------------------------------------------------- */

/* UL */
.pf-cssmenu-brands-menu {
  position: relative;
  z-index: 10;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.03);
  background-color: #a4ac0b;
}

/* desktops */
@media (min-width: 769px) {
  .pf-cssmenu-brands-menu {
    display: block !important;
  }
}

/* LI */
.pf-cssmenu-brands-menu li {
  position: relative;
}

/* LI - hover */
.pf-cssmenu-brands-menu li:hover {
  background-color: #b5be34;
}

/* LI - has children */
.pf-cssmenu-brands-menu li.sub &gt; a {
  position: relative;
  padding-right: 2em;
}

/* LI - has children - icon */
.pf-cssmenu-brands-menu li.sub &gt; a::after {
  position: absolute;
  top: 50%;
  right: .75em;
  content: "\f107"; /* angle-down */
  font-family: "FontAwesome";
  transform: translateY(-53%);
}

/* Links */
.pf-cssmenu-brands-menu a {
  display: block;
  padding: 1.25em 1em;
  text-decoration: none;
}


/* Level 1                                          (specific styling)
---------------------------------------------------------------------- */

/* UL*/
.pf-cssmenu-brands-menu {
    text-align: center;
}

/* LI */
.pf-cssmenu-brands-menu &gt; li {
  display: inline-block;
  margin-right: -0.275em; /* removes weird "inline-block" gap. Font size affects the gap size so use "em" instead of "px" */
}

/* LI - mobile */
@media (max-width: 767px) {
  .pf-cssmenu-brands-menu &gt; li {
    display: block;
    margin-right: 0;
    border-bottom: 1px solid #ccc;
  }
}

/* LI - Active state */
.pf-cssmenu-brands-menu &gt; li.item-on {
}

/* LI - Hover state */
.pf-cssmenu-brands-menu &gt; li:hover {
}

/* Link */
.pf-cssmenu-brands-menu &gt; li &gt; a {
  text-align: center;
  color: #fff;
  font-weight: bold;
  text-transform: uppercase;
  font-size: .8em;
}

/* Link - Active state */
.pf-cssmenu-brands-menu &gt; li.item-on &gt; a {
  background-color: #456;
  color: #fff;
}

/* Link - Hover state */
.pf-cssmenu-brands-menu &gt; li:hover &gt; a,
.pf-cssmenu-brands-menu &gt; li.item-on:hover &gt; a {
  color: #fff;
}

/* Link - mobile */
@media (max-width: 768px) {
  .pf-cssmenu-brands-menu &gt; li &gt; a {
    text-align: left;
  }
}



/* LEVEL 2                                          (specific styling)
---------------------------------------------------------------------- */

.pf-cssmenu-brands-menu ul {
  position: absolute;
  top: 100%;
  display: none;
  text-align: left;
  background-color: #7f7f7f;
  z-index: 1;
}

/* show the sub menu on hover */
.pf-cssmenu-brands-menu li:hover &gt; ul {
  display: block;
}

/* ensure last-child UL doesn't fall off the screen */
.pf-cssmenu-brands-menu &gt; li:last-child:hover &gt; ul {
  right: 0;
}

/* LI */
.pf-cssmenu-brands-menu ul li {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.pf-cssmenu-brands-menu ul li:last-child {
  border-bottom: none;
}

/* LI - active state */
.pf-cssmenu-brands-menu ul li.item-on {
  background-color: rgba(0,0,0,0.3);
}

/* LI - hover state  */
.pf-cssmenu-brands-menu ul li:hover,
.pf-cssmenu-brands-menu ul li.item-on:hover {
}

/* LI - has children */
.pf-cssmenu-brands-menu ul li.sub &gt; a::after {
  content: "\f105";       /* angle-right */
}

/* Links */
.pf-cssmenu-brands-menu ul li a {
  min-width: 160px;
  color: #fff;
  white-space: nowrap;
}


/* Level 2 - mobile */
@media (max-width: 768px) {
  .pf-cssmenu-brands-menu ul {
    position: static;
  }

  .pf-cssmenu-brands-menu ul li {
    border-color: rgba(255, 255, 255, 0.2);
  }

  .pf-cssmenu-brands-menu ul li:hover {
    background-color: transparent;
    background-image: none;
  }

  .pf-cssmenu-brands-menu ul li.sub &gt; a::after {
    content: "\f107";       /* angle-down */
  }

  .pf-cssmenu-brands-menu ul li a {
    padding-left: 2em;
  }
}


/* LEVEL 3+                                         (specific styling)
----------------------------------------------------------------------
*/

/* UL */
.pf-cssmenu-brands-menu ul ul {
  top: 0;
  left: 100%;
  border-left: 1px solid rgba(255,255,255,0.2);
}

/* LI:last-child UL fly out to the left  (instead of right) */
.pf-cssmenu-brands-menu &gt; li:hover:last-child ul ul {
  right: 100%;
  left: auto;
  border-right: 1px solid rgba(255,255,255,0.8);
}

/* UL - mobile */
@media (max-width: 768px) {
  .pf-cssmenu-brands-menu ul ul {
    background-color: #666;
    border: none;
  }
}

/* Link - mobile */
@media (max-width: 768px) {
  .pf-cssmenu-brands-menu ul ul a {
    padding-left: 3em;
  }
}


</pre></body></html>