:root {
  --navMain-color: $gray-color-darker;
  --navMain-color-hover: $gray-color-dark;
  --navMain-color-active: $gray-color-dark;
  --navMain-bg: #fff;
  --navMain-bg-hover: #fafafa;
  --navMain-bg-sub: #fafafa;
}

#nav-icon-outer {
  padding: 10px;
  width: 50px;
  height: 50px;
  right: 10px;
  top: 10px;
  background: #fff;
  border: solid 1px #f4f4f4;
  position: absolute;
  z-index: 5000;
}

#nav-icon {
  width: 30px;
}

.nav-icon:after,
.nav-icon:before,
.nav-icon:focus,
.nav-icon div {
  background-color: #474749;
  border-radius: 1px;
  content: "";
  display: block;
  height: 2px;
  margin: 6px 0;
  transition: all 0.2s ease-in-out;
}

.nav-icon-outer:hover {
  cursor: pointer;
}

.nav-icon-outer:hover .nav-icon:before {
  transform: translateY(8px) rotate(180deg);
}

.nav-icon-outer:hover .nav-icon:after {
  transform: translateY(-8px) rotate(-90deg);
}

.nav-icon-outer:hover .nav-icon div {
  transform: scale(0);
}

.nav-icon-open:before {
  transform: translateY(8px) rotate(135deg);
}

.nav-icon-open:after {
  transform: translateY(-8px) rotate(-135deg);
}

.nav-icon-open div {
  transform: scale(0);
}

.nav-icon-outer:hover .nav-icon-open:before {
  transform: translateY(8px) rotate(180deg);
}

.nav-icon-outer:hover .nav-icon-open:after {
  transform: translateY(-8px) rotate(-180deg);
}

.nav-icon-outer:hover .nav-icon-open div {
  transform: scale(0);
}

#navigation-main-container {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #fff;
}

.nav-fixed {
  height: 75px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  transition: all 0.1s ease-out;
  -webkit-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.15);
}
.nav-fixed .navigation-body {
  padding-top: 0;
}
.nav-fixed .reverse {
  flex-direction: row-reverse;
}
.nav-fixed .logo-top-container {
  display: none;
}
.nav-fixed .navigation .navigation-body.is-visible {
  height: 100%;
}
.nav_sub {
  max-width: 800px;
}

#navigation-main-container ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#navigation-main-container ul li {
  margin-top: 0;
}

.exo-menu {
  width: 100%;
  list-style-type: none;
  display: flex;
  justify-content: center;
  position: relative;
  background: var(--navMain-bg);
}

.logo-top {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 400;
  width: 100%;
  height: auto;
  background: #fff;
  height: 75px;
  max-width: 250px;
  padding: 10px;
}
.exo-menu > li {
  display: list-item;
}

.exo-menu > li > a {
  color: var(--navMain-color);
  text-decoration: none;
  font-weight: 500;
  background: var(--navMain-bg);
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}

.exo-menu li a {
  font-weight: 500;
  color: var(--navMain-color);
  padding-top: 8px;
  padding-bottom: 8px;
}
.exo-menu li a:hover {
  color: var(--navMain-color-hover);
}

.exo-menu > li > a:hover,
.exo-menu > li > a:focus,
li.drop-down ul > li > a:hover {
  background: var(--navMain-bg-hover);
  color: var(--navMain-color-hover);
}

.exo-menu > li > a.active {
  color: var(--navMain-color-hover);
  font-weight: 500;
}

.exo-menu i {
  float: left;
  font-size: 18px;
  margin-right: 6px;
  line-height: 20px !important;
}

li.mega-drop-down > a,
li.drop-down > a, li.drop-down,
.flyout-right > a, .flyout-right,
.flyout-left > a, .flyout-left {
  position: relative;
  font-weight: 500;
}

li.drop-down > a:before, li.mega-drop-down > a:before {
  content: "\e908";
  color: var(--navMain-color);
  font-family: icomoon;
  font-style: normal;
  display: inline;
  position: absolute;
  right: 4px;
  top: 22px;
  font-size: 16px;
  transform: rotate(90deg);
}

li.drop-down > a.active:before, i.mega-drop-down > a.active:before {
  color: var(--navMain-color-hover);
}

.flyout-right > a:before {
  content: "\e908";
  color: var(--navMain-color);
  font-family: icomoon;
  font-style: normal;
  display: inline;
  position: absolute;
  right: 8px;
  top: 20px;
  font-size: 14px;
}

li.drop-down > ul {
  left: 0px;
  min-width: 230px;
}

.drop-down-ul {
  display: none;
}

.flyout-right > ul,
.flyout-left > ul {
  top: 0;
  min-width: 230px;
  display: none;
  border-left: 1px solid var(--navMain-color);
}

li.drop-down > ul > li > a,
.flyout-right ul > li > a,
.flyout-left ul > li > a {
  color: var(--navMain-color);
  display: block;
  padding: 20px 22px;
  text-decoration: none;
  background: var(--navMain-bg-sub);
  border-bottom: 1px dotted var(--navMain-color);
  -webkit-transition: color 0.2s linear, background 0.2s linear;
  -moz-transition: color 0.2s linear, background 0.2s linear;
  -o-transition: color 0.2s linear, background 0.2s linear;
  transition: color 0.2s linear, background 0.2s linear;
}

.flyout-right ul > li > a,
.flyout-left ul > li > a {
  border-bottom: 1px dotted #B8C7BC;
}

/*mega menu*/
.mega-menu {
  left: 0;
  right: 0;
  padding: 15px;
  display: none;
  padding-top: 0;
  min-height: 100%;
  background: var(--navMain-bg-sub);
}

/*hover*/
.mega-menu:hover,
.drop-down-ul:hover,
li.flyout-left > ul:hover,
li.flyout-right > ul:hover,
li.flyout-left a:hover + ul,
li.flyout-right a:hover + ul,
li.drop-down > a:hover + .drop-down-ul,
.mega-drop-down a:hover + .mega-menu,
li.flyout-mega > a:hover + .flyout-mega-wrap {
  display: block;
}

/*NAvigation Top*/
ul.nav-top {
  list-style: none;
  margin: 0;
  padding: 0;
}
ul.nav-top li {
  list-style: none;
  display: inline;
}
ul.nav-top li a {
  display: inline-block;
  padding: 10px;
}

/*Overlay*/
.scroll-nav-overlay {
  position: fixed;
  z-index: 1000;
  right: 0;
  top: 30%;
  transition: all 0.5s ease-in-out;
}
.scroll-nav-overlay .anchor {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  text-align: center;
  font-size: 25px;
  line-height: 45px;
  background-color: var(--navMain-color);
  color: var(--navMain-bg-sub);
  transition: background-color 0.5s ease-in-out;
}
.scroll-nav-overlay .anchor:hover {
  text-decoration: none;
  background-color: var(--navMain-color-hover);
  color: var(--navMain-bg-sub);
}

.scroll-nav-overlay-fluid {
  top: 25%;
}

.nav-main-right {
  list-style: none;
  position: absolute;
  right: 0;
  top: 0;
  font-weight: 500;
}
.nav-main-right li {
  list-style: none;
  display: inline-block;
}
.nav-main-right li a {
  display: inline-block;
  padding: 20px 10px;
}

/*responsive*/
@media (min-width: 960px) and (max-width: 1280px) {
  .exo-menu {
    justify-content: right;
  }

  .exo-menu > li > a, .nav-main-right > li > a {
    padding: 22px 20px 22px 8px !important;
    font-size: 0.9em;
  }
}
@media (min-width: 840px) {
  .exo-menu > li > a {
    display: block;
    padding: 20px 20px;
  }

  .mega-menu, .flyout-mega-wrap, .Images, .Blog, .flyout-right > ul,
.flyout-left > ul, li.drop-down > ul {
    position: absolute;
  }

  .flyout-right > ul {
    left: 100%;
  }

  .flyout-left > ul {
    right: 100%;
  }
}
@media (max-width: 960px) {
  .nav-fixed .exo-menu {
    justify-content: right;
  }
}
@media (max-width: 960px) {
  .navigation-main-container {
    background: #fff;
  }

  .exo-menu {
    min-height: 58px;
    display: block;
    width: 100%;
  }

  .exo-menu > li > a {
    width: 100%;
    display: none;
    font-size: 18px;
  }
  .exo-menu > li > a:focus {
    color: #B52A2F;
  }
  .exo-menu > li > a:before {
    right: 9px;
  }

  .mega-menu {
    background: none;
    padding-left: 30px;
    border: solid 1px #f4f4f4;
  }
  .mega-menu a {
    font-size: 18px;
    color: #8c8c8c !important;
  }
  .mega-menu a span.icon {
    display: none;
  }

  .exo-menu > li {
    width: 100%;
  }

  .display.exo-menu > li > a {
    display: block;
    padding: 15px 22px;
  }

  .display.exo-menu {
    height: 100vh;
    -ms-overflow-y: scroll;
    overflow-y: scroll;
  }

  .mega-menu, .Images, .Blog, .flyout-right > ul,
.flyout-left > ul, li.drop-down > ul {
    position: relative;
  }
}

/*# sourceMappingURL=navigation.css.map */
