/*
 * Header styles
 */
.header {
  height: 76px;
  background-color: #f42a41;
  box-shadow: 1px 0 2px 0 rgba(0,0,0,0.5);
  color: #FFF;
  position: relative;
  z-index: 99;
}

.header__title {
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.88px;
  line-height: 17px;
  text-transform: uppercase;
}

.header__title__link,
.header__title__link:focus,
.header__title__link:hover {
  color: #fff;
  text-decoration: none;
}

.header__menu {
  margin-bottom: 0;
}

.header__menu__item:not(:last-child) {
  margin-right: 3rem;
}

.header__menu__link {
  border-bottom: 2px solid transparent;
  color: #fff;
  font-weight: bold;
  padding-bottom: 6px;
  text-decoration: none;
  transition: 0.2s ease-in-out border-bottom-color;
}

.header__menu__link:focus,
.header__menu__link:hover,
.header__menu__link--active {
  border-bottom-color: #fff;
  color: #fff;
  text-decoration: none;
}
