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

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

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

header {
  z-index: 9;
  width: 100%;

  .header-wrap {
    padding: 30px 0;
    background: #15253e;
  }

  svg {
    width: 20px;
    height: 20px;
    fill: #fff;
  }

  svg:hover {
    fill: #dd985f;
  }

  .navbar-nav {
    list-style: none;
    text-align: center;
    float: none;
    margin: auto;
    display: block;
    height: 100%;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: center;

    li {
      margin: 0 10px;
    }
  }

}

.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;
  }
}

.header-nav--strip {
  background-color: #0F1A2B;
  padding: 15px 0;
  position: relative;
}

.header-right--wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
}

.header-white--strip {
  padding: 15px 0;
  background-color: #fff;

  .header-strip--logo {
    height: 26px;
    width: auto;
    margin-right: 15px;
  }

  .header-white--content {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    font-size: 14px;
  }

  a {
    color: #840725;
  }

  a:hover {
    color: #15253e;
  }
}

.header--second {
  ul#menu-secondary {
    list-style: none;
    padding: 0px;
    margin: 0px 0 0 0;
    display: flex;
    justify-content: flex-end;

    li {
      margin-left: 10px;
    }

    a {
      color: #fff;
    }

    a:hover {
      color: #dd985f;
    }
  }
}

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

/* XXL > 1400 */

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

/* L */
@media (max-width: 1200px) {
  header {
    .navbar-nav {
            display: flex;
            flex-direction: row;
            align-content: center;
            justify-content: center;
            flex-wrap: nowrap;
            align-items: center;
    }
}
}

/* M */
@media (max-width: 992px) {
  .header--second {
    & ul#menu-secondary {
        a {
            color: #fff;
            font-size: 14px;
        }
    }
}
}

/* S */
@media (max-width: 768px) {
      header {
        .navbar-nav {
            display: flex;
            flex-direction: column;
            align-content: center;
            justify-content: center;
            flex-wrap: nowrap;
            align-items: center;
        }
    }
}

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