.bold {
  font-weight: bold;
}
strong {
  font-weight: bold;
}
.normal {
  font-weight: normal;
}
.font-primary {
  color: #004f7c;
}
.font-white {
  color: #ffffff;
}
.font-grey {
  color: #636363;
}
.font-12 {
  font-size: 12px;
}
.pointer {
  cursor: pointer;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.text-shadow {
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
}
.header {
  position: relative;
  height: 80px;
  z-index: 100;
  align-items: center;
  background-color: transparent;
}
.header .row {
  height: 80px;
}
.header__logo {
  background: url("../assets/images/logo.png") no-repeat;
  background-size: contain;
  width: 189px;
  height: 24px;
}
.header__menu {
  white-space: nowrap;
}
.header__menu ul > li {
  display: inline-block;
  position: relative;
  text-align: center;
  list-style-type: none;
  white-space: normal;
  font-weight: 500;
  font-size: 16px;
  margin-right: 20px;
}
.header__menu ul > li:last-child {
  margin-right: 0;
}
.header__menu ul > li a {
  color: #ffffff;
  display: block;
  text-transform: uppercase;
}
.header__menu .current-menu-item {
  border-bottom: 2px solid #ffffff;
}
.header__menu-toggle {
  display: none;
}
.header__hamburger {
  width: 21px;
  height: 18px;
  background: url("../assets/images/header/hamburger.svg");
}
.header__close {
  width: 16px;
  height: 16px;
  background: url("../assets/images/header/close.svg");
  display: none;
}
@media all and (max-width: 991px) {
  .header__menu,
  .header .social-icon {
    display: none !important;
  }
  .header__menu-toggle {
    display: block;
  }
}
