/*-----------------
* palette
* ----------------
*
*/

/******** Header *********/

img.company-logo {
  height: 60px;
}

.header-wrap--top {
  background-color: var(--stripTwo);
  color: #fff;
  padding: 7.5px 0;
  border-color: transparent;
  border-radius: 0;
  font-family: var(--fontFamilyMain);
  font-weight: 900;

  p {
    padding: 0px;
    margin: 0px;
    font-size: 18px;
    text-align: center;
  }
}

header {
  /* background: var(--stripOne); */
  background-color: #fff;
  z-index: 9;
  width: 100%;

  svg {
    width: 20px;
    height: 20px;
    fill: var(--stripOne);
  }

  svg:hover {
    fill: var(--stripTwo);
  }

  .header-wrap {
    padding: 30px 15px 0px 15px;
  }

  .header-lower--wrap {
    padding: 15px 15px 15px 15px;
    background-color: #fff;


    .navbar-nav {
      border-top: 1px solid rgba(129, 129, 129, 0.2) !important;
      padding-top: 15px !important;
    }
  }

}

.home {
  header {
    position: absolute;
  }
}

ul.header-icons {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
  height: 100%;

  li {
    margin-left: 10px;
  }
}

.container.dropdown-menu-inner-wrapper {
  padding: 0 2px;
}

ul#menu-icons-menu {
  display: flex;
  list-style: none;
  padding: 0px;
  margin: 0px;

  li {
    margin: 0 12.5px;
    position: relative;
  }

  li:after {
    content: "";
    border-left: 1px solid var(--stripOne);
    position: absolute;
    height: 10px;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
  }

  li:first-child:after {
    display: none;
  }

  a {
    text-decoration: none;
    color: var(--stripOne);
    font-family: var(--fontFamilyHeaders);
    font-weight: 700;
  }

  a:hover {
    color: var(--stripTwo);
  }

  .current_page_item a {
    color: var(--stripTwo);
  }
}

.header--social-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

/******** Responsive ***********/

/* XXL > 1400 */

/* XL */
@media (max-width: 1400px) {}

/* L */
@media (max-width: 1200px) {}

/* M */
@media (max-width: 992px) {
  ul#menu-icons-menu {
    a {
      font-size: 12px;
    }
  }
}

/* S */
@media (max-width: 768px) {
  header {
    .header-wrap {
      padding: 30px 15px 30px 15px;
    }
  }
}

/* XS */
@media (max-width: 576px) {
  img.company-logo {
    height: 45px !important;
  }
}