/*
 * Responsive font size mixins.
 */
/*
 * Text styling.
 * Also see heading.scss.
 */
.text-bold {
  font-weight: 700;
}

.text-label {
  font-weight: 700;
  margin-right: 5px;
}

.text-centered {
  text-align: center;
}

.text-small-3 {
  font-size: 0.5rem;
}

.text-small-2 {
  font-size: 0.8rem;
}

.text-small-1 {
  font-size: 0.9rem;
}

.text-normal {
  font-size: 1rem;
}

.text-large-1 {
  font-size: 1.1rem;
}

.text-large-2 {
  font-size: 1.3rem;
}

.text-large-3 {
  font-size: 1.5rem;
}

.text-large-4 {
  font-size: 2rem;
}

.text-large-5 {
  font-size: 3rem;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.header-nav-container {
  width: 100%;
  background-color: #4c4c4c;
  height: 65px;
  display: flex;
  position: relative;
  z-index: 20;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .header-nav-container {
    height: 85px;
  }
}

.header-nav-container__inner {
  max-width: 95%;
  width: auto;
  margin: 0 auto;
  width: 110%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
}
@media screen and (min-width: 1540px) {
  .header-nav-container__inner {
    max-width: 1250px;
  }
}
@media screen and (min-width: 1024px) {
  .header-nav-container__inner {
    padding: 0;
    justify-content: flex-start;
  }
}

.header-nav-container__mobile {
  background-color: #4c4c4c;
  padding: 0.5rem;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .header-nav-container__mobile {
    display: none;
  }
}

.header-nav-container__toggled {
  position: absolute;
  width: 100%;
  top: 105px;
  left: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease-in-out;
}
.header-nav-container__toggled.js-open {
  max-height: 100%;
  overflow: visible;
}

.header-nav-container__toggler {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  width: 45px;
  height: 45px;
  text-align: center;
}
.header-nav-container__toggler .bar {
  display: block;
  width: 25px;
  height: 4px;
  margin: 0 auto;
  margin-bottom: 4px;
  background: #fff;
  transition: 300ms ease-in-out;
}
.header-nav-container__toggler .bar:nth-child(3) {
  margin-bottom: 0;
}
.header-nav-container__toggler .toggler__words {
  color: #fff;
  font-size: 0.8rem;
}
.header-nav-container__toggler.js-animate .bar:nth-child(1) {
  transform: translateY(8px) rotate(135deg);
}
.header-nav-container__toggler.js-animate .bar:nth-child(2) {
  opacity: 0;
}
.header-nav-container__toggler.js-animate .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-135deg);
}