.header {
  background: #c8193c;
  color: #fff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.24), 0 3px 3px 0 rgba(0, 0, 0, 0.12);
  position: relative;
  z-index: 60;
  position: sticky;
  top: 0;
}
.header__wrapper--full {
  display: none;
}
.header__wrapper--mobile {
  line-height: 40px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  font-size: 25px;
  color: #fff;
}
.header__wrapper--mobile a {
  color: inherit;
}

.header__wrapper--mobile h1 {
  white-space: nowrap;
}
.header__wrapper--mobile h1 img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.header__wrapper--mobile h1 a {
  color: inherit;
  text-decoration: none;
}
.header__wrapper--mobile .navigation__items {
  display: none;
  width: 100%;
  margin: 20px 0 0;
}
.header__wrapper--mobile .navigation__items.is-active {
  display: block;
}
.header__wrapper--mobile .navigation__items li {
  text-align: center;
  background: linear-gradient(90deg, rgba(200,200,200,0), rgba(200,200,200,0.5), rgba(200,200,200,0)) no-repeat 50% 100%;
  background-size: 100% 1px;
}
.header__wrapper--mobile .navigation__items a {
  display: block;
  text-decoration: none;
  padding: 5px 0;
}
.header__wrapper--mobile .navigation__items li ul {
  display: none;
}
.header__wrapper--mobile .navigation__items li li {
  font-size: 16px;
  background: transparent;
}
.header__wrapper--mobile .navigation__items li li a {
  padding: 0;
}
.header__wrapper--mobile .navigation__items li:last-child a {
  background: transparent;
}
.header__wrapper--mobile .navigation__items > li:hover ul,
.header__wrapper--mobile .navigation__items > li:focus ul,
.header__wrapper--mobile .navigation__items > li > a:hover + ul,
.header__wrapper--mobile .navigation__items > li > a:focus + ul,
.header__wrapper--mobile .navigation__items .is-active ul {
  display: block;
}
.header__wrapper--mobile .navigation__items .is-active > a {
  font-weight: 500;
}
.header__wrapper--mobile .navigation__items ul .is-active > a {
  text-decoration: underline;
}


.mobile-navigation-toggle {
  appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  display: block;
  width: 40px;
}


@media (min-width: 768px) {
  .header__wrapper--mobile {
    display: none;
  }
  .header__wrapper--full {
    max-width: 960px;
    margin: 0 auto;
    line-height: 100px;
    display: flex;
    flex-flow: column;
    align-items: center;
  }
  .navigation {
    font-size: 18px;
  }
  .navigation a {
    color: inherit;
    text-decoration: none;
  }
  .navigation__home {
    white-space: nowrap;
    font-size: 48px;
    line-height: 80px;
    text-decoration: none;
    margin: 0 10px;
  }
  .navigation__items {
    display: flex;
  }
  .navigation__items li {
    padding: 0;
  }
  .navigation__items a {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    line-height: 60px;
    padding: 0 8px 0;
    font-weight: 400;
  }
  .navigation__items img {
    vertical-align: middle;
  }
  .navigation__items a:hover span, .navigation__items a:focus span, .navigation__items .is-active a span {
    border-bottom: 2px solid #fff;
  }
}
@media (min-width: 960px) {
  .header__wrapper--full {
    flex-flow: row;
    justify-content: space-between;
    align-items: flex-start;
  }
  .navigation__home {
    line-height: 100px;
  }
  .navigation__items a {
    line-height: 80px;
    padding: 20px 8px 0;
  }
}



.sb-awards-bar {
  display: none;
}
@media (min-width: 768px) {
  .sb-awards-bar {
    display: block;
    background: rgb(238,247,253);
    background: #FBF0E4;
    background: #fff;
  }
  .sb-awards-bar ul {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    width: 768px;
    max-width: 98%;
    margin: 0 auto;
  }
  .sb-awards-bar li {
    display: block;
  }
}
