@charset "UTF-8";
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  font: inherit;
  display: inline-block;
  overflow: visible;
  margin: 0;
  padding: 15px;
  cursor: pointer;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-property: opacity, -webkit-filter;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  text-transform: none;
  color: inherit;
  border: 0;
  background-color: transparent;
}

.hamburger.is-active:hover,
.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner:after,
.hamburger.is-active .hamburger-inner:before {
  background-color: #000;
}

.hamburger-box {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

.hamburger-inner {
  top: 50%;
  display: block;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner:after,
.hamburger-inner:before {
  position: absolute;
  width: 40px;
  height: 4px;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  border-radius: 4px;
  background-color: #000;
}

.hamburger-inner:after,
.hamburger-inner:before {
  display: block;
  content: "";
}

.hamburger-inner:before {
  top: -10px;
}

.hamburger-inner:after {
  bottom: -10px;
}

.hamburger--3dx .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px;
}

.hamburger--3dx .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx .hamburger-inner:after,
.hamburger--3dx .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx.is-active .hamburger-inner {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  background-color: transparent !important;
}

.hamburger--3dx.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dx-r .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px;
}

.hamburger--3dx-r .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dx-r .hamburger-inner:after,
.hamburger--3dx-r .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dx-r.is-active .hamburger-inner {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  background-color: transparent !important;
}

.hamburger--3dx-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dx-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px;
}

.hamburger--3dy .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy .hamburger-inner:after,
.hamburger--3dy .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy.is-active .hamburger-inner {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg);
  background-color: transparent !important;
}

.hamburger--3dy.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dy-r .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px;
}

.hamburger--3dy-r .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dy-r .hamburger-inner:after,
.hamburger--3dy-r .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dy-r.is-active .hamburger-inner {
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
  background-color: transparent !important;
}

.hamburger--3dy-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dy-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px;
}

.hamburger--3dxy .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy .hamburger-inner:after,
.hamburger--3dxy .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy.is-active .hamburger-inner {
  -webkit-transform: rotateX(180deg) rotateY(180deg);
  transform: rotateX(180deg) rotateY(180deg);
  background-color: transparent !important;
}

.hamburger--3dxy.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--3dxy-r .hamburger-box {
  -webkit-perspective: 80px;
  perspective: 80px;
}

.hamburger--3dxy-r .hamburger-inner {
  -webkit-transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1),
    background-color 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.hamburger--3dxy-r .hamburger-inner:after,
.hamburger--3dxy-r .hamburger-inner:before {
  -webkit-transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
  transition: transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s,
    -webkit-transform 0s cubic-bezier(0.645, 0.045, 0.355, 1) 0.1s;
}

.hamburger--3dxy-r.is-active .hamburger-inner {
  -webkit-transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
  transform: rotateX(180deg) rotateY(180deg) rotate(-180deg);
  background-color: transparent !important;
}

.hamburger--3dxy-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--3dxy-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--arrow.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrow.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrow-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowalt .hamburger-inner:before {
  -webkit-transition: top 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt .hamburger-inner:after {
  -webkit-transition: bottom 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s,
    -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -webkit-transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowalt.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s,
    -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -webkit-transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrowalt-r .hamburger-inner:before {
  -webkit-transition: top 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: top 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r .hamburger-inner:after {
  -webkit-transition: bottom 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: bottom 0.1s ease 0.1s, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: top 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s,
    -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -webkit-transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(8px, -10px, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrowalt-r.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  transition: bottom 0.1s ease, transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s,
    -webkit-transform 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22) 0.1s;
  -webkit-transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowturn.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.hamburger--arrowturn.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--arrowturn.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowturn-r.is-active .hamburger-inner {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.hamburger--arrowturn-r.is-active .hamburger-inner:before {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scaleX(0.7);
}

.hamburger--arrowturn-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
  transform: translate3d(-8px, 0, 0) rotate(45deg) scaleX(0.7);
}

.hamburger--boring .hamburger-inner,
.hamburger--boring .hamburger-inner:after,
.hamburger--boring .hamburger-inner:before {
  -webkit-transition-property: none;
  transition-property: none;
}

.hamburger--boring.is-active .hamburger-inner {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger--boring.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--boring.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-delay: 0.13s;
  transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 0.13s;
  transition-duration: 0.13s;
}

.hamburger--collapse .hamburger-inner:after {
  top: -20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

.hamburger--collapse .hamburger-inner:before {
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--collapse.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.hamburger--collapse.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-delay: 0.13s;
  transition-delay: 0.13s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 0.13s;
  transition-duration: 0.13s;
}

.hamburger--collapse-r .hamburger-inner:after {
  top: -20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}

.hamburger--collapse-r .hamburger-inner:before {
  -webkit-transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--collapse-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, -10px, 0) rotate(45deg);
  transform: translate3d(0, -10px, 0) rotate(45deg);
}

.hamburger--collapse-r.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  opacity: 0;
}

.hamburger--collapse-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s,
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hamburger--elastic .hamburger-inner {
  top: 2px;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-duration: 0.275s;
  transition-duration: 0.275s;
}

.hamburger--elastic .hamburger-inner:before {
  top: 10px;
  -webkit-transition: opacity 0.125s ease 0.275s;
  transition: opacity 0.125s ease 0.275s;
}

.hamburger--elastic .hamburger-inner:after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic.is-active .hamburger-inner {
  -webkit-transition-delay: 75ms;
  transition-delay: 75ms;
  -webkit-transform: translate3d(0, 10px, 0) rotate(135deg);
  transform: translate3d(0, 10px, 0) rotate(135deg);
}

.hamburger--elastic.is-active .hamburger-inner:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic.is-active .hamburger-inner:after {
  -webkit-transition-delay: 75ms;
  transition-delay: 75ms;
  -webkit-transform: translate3d(0, -20px, 0) rotate(-270deg);
  transform: translate3d(0, -20px, 0) rotate(-270deg);
}

.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  -webkit-transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  -webkit-transition-duration: 0.275s;
  transition-duration: 0.275s;
}

.hamburger--elastic-r .hamburger-inner:before {
  top: 10px;
  -webkit-transition: opacity 0.125s ease 0.275s;
  transition: opacity 0.125s ease 0.275s;
}

.hamburger--elastic-r .hamburger-inner:after {
  top: 20px;
  -webkit-transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55),
    -webkit-transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hamburger--elastic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 75ms;
  transition-delay: 75ms;
  -webkit-transform: translate3d(0, 10px, 0) rotate(-135deg);
  transform: translate3d(0, 10px, 0) rotate(-135deg);
}

.hamburger--elastic-r.is-active .hamburger-inner:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  opacity: 0;
}

.hamburger--elastic-r.is-active .hamburger-inner:after {
  -webkit-transition-delay: 75ms;
  transition-delay: 75ms;
  -webkit-transform: translate3d(0, -20px, 0) rotate(270deg);
  transform: translate3d(0, -20px, 0) rotate(270deg);
}

.hamburger--emphatic {
  overflow: hidden;
}

.hamburger--emphatic .hamburger-inner {
  -webkit-transition: background-color 0.125s ease-in 0.175s;
  transition: background-color 0.125s ease-in 0.175s;
}

.hamburger--emphatic .hamburger-inner:before {
  left: 0;
  -webkit-transition: top 0.05s linear 0.125s, left 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.125s, left 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic .hamburger-inner:after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s linear 0.125s, right 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.125s, right 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s,
    right 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s,
    right 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic.is-active .hamburger-inner:before {
  top: -80px;
  left: -80px;
  -webkit-transition: left 0.125s ease-out, top 0.05s linear 0.125s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -webkit-transform: translate3d(80px, 80px, 0) rotate(45deg);
  transform: translate3d(80px, 80px, 0) rotate(45deg);
}

.hamburger--emphatic.is-active .hamburger-inner:after {
  top: -80px;
  right: -80px;
  -webkit-transition: right 0.125s ease-out, top 0.05s linear 0.125s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s,
    transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s,
    transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -webkit-transform: translate3d(-80px, 80px, 0) rotate(-45deg);
  transform: translate3d(-80px, 80px, 0) rotate(-45deg);
}

.hamburger--emphatic-r {
  overflow: hidden;
}

.hamburger--emphatic-r .hamburger-inner {
  -webkit-transition: background-color 0.125s ease-in 0.175s;
  transition: background-color 0.125s ease-in 0.175s;
}

.hamburger--emphatic-r .hamburger-inner:before {
  left: 0;
  -webkit-transition: top 0.05s linear 0.125s, left 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.125s, left 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s, left 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r .hamburger-inner:after {
  top: 10px;
  right: 0;
  -webkit-transition: top 0.05s linear 0.125s, right 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: top 0.05s linear 0.125s, right 0.125s ease-in 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s,
    right 0.125s ease-in 0.175s;
  transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s linear 0.125s,
    right 0.125s ease-in 0.175s, -webkit-transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335);
}

.hamburger--emphatic-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: transparent !important;
}

.hamburger--emphatic-r.is-active .hamburger-inner:before {
  top: 80px;
  left: -80px;
  -webkit-transition: left 0.125s ease-out, top 0.05s linear 0.125s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: left 0.125s ease-out, top 0.05s linear 0.125s, transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -webkit-transform: translate3d(80px, -80px, 0) rotate(-45deg);
  transform: translate3d(80px, -80px, 0) rotate(-45deg);
}

.hamburger--emphatic-r.is-active .hamburger-inner:after {
  top: 80px;
  right: -80px;
  -webkit-transition: right 0.125s ease-out, top 0.05s linear 0.125s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s,
    transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  transition: right 0.125s ease-out, top 0.05s linear 0.125s,
    transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s,
    -webkit-transform 0.125s cubic-bezier(0.075, 0.82, 0.165, 1) 0.175s;
  -webkit-transform: translate3d(-80px, -80px, 0) rotate(45deg);
  transform: translate3d(-80px, -80px, 0) rotate(45deg);
}

.hamburger--minus .hamburger-inner:after,
.hamburger--minus .hamburger-inner:before {
  -webkit-transition: bottom 0.08s ease-out 0s, top 0.08s ease-out 0s, opacity 0s linear;
  transition: bottom 0.08s ease-out 0s, top 0.08s ease-out 0s, opacity 0s linear;
}

.hamburger--minus.is-active .hamburger-inner:after,
.hamburger--minus.is-active .hamburger-inner:before {
  -webkit-transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s linear 0.08s;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s linear 0.08s;
  opacity: 0;
}

.hamburger--minus.is-active .hamburger-inner:before {
  top: 0;
}

.hamburger--minus.is-active .hamburger-inner:after {
  bottom: 0;
}

.hamburger--slider .hamburger-inner {
  top: 2px;
}

.hamburger--slider .hamburger-inner:before {
  top: 10px;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.hamburger--slider .hamburger-inner:after {
  top: 20px;
}

.hamburger--slider.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner:before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(-90deg);
  transform: translate3d(0, -20px, 0) rotate(-90deg);
}

.hamburger--slider-r .hamburger-inner {
  top: 2px;
}

.hamburger--slider-r .hamburger-inner:before {
  top: 10px;
  -webkit-transition-timing-function: ease;
  transition-timing-function: ease;
  -webkit-transition-duration: 0.15s;
  transition-duration: 0.15s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
}

.hamburger--slider-r .hamburger-inner:after {
  top: 20px;
}

.hamburger--slider-r.is-active .hamburger-inner {
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--slider-r.is-active .hamburger-inner:before {
  -webkit-transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
  opacity: 0;
}

.hamburger--slider-r.is-active .hamburger-inner:after {
  -webkit-transform: translate3d(0, -20px, 0) rotate(90deg);
  transform: translate3d(0, -20px, 0) rotate(90deg);
}

.hamburger--spin .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 0.22s;
  transition-duration: 0.22s;
}

.hamburger--spin .hamburger-inner:before {
  -webkit-transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner:after {
  -webkit-transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.hamburger--spin.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}

.hamburger--spin.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s,
    -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.hamburger--spin-r .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 0.22s;
  transition-duration: 0.22s;
}

.hamburger--spin-r .hamburger-inner:before {
  -webkit-transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
  transition: top 0.1s ease-in 0.25s, opacity 0.1s ease-in;
}

.hamburger--spin-r .hamburger-inner:after {
  -webkit-transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s ease-in 0.25s, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(-225deg);
  transform: rotate(-225deg);
}

.hamburger--spin-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  transition: top 0.1s ease-out, opacity 0.1s ease-out 0.12s;
  opacity: 0;
}

.hamburger--spin-r.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 0.1s ease-out, transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s,
    -webkit-transform 0.22s cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hamburger--spring .hamburger-inner {
  top: 2px;
  -webkit-transition: background-color 0s linear 0.13s;
  transition: background-color 0s linear 0.13s;
}

.hamburger--spring .hamburger-inner:before {
  top: 10px;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring .hamburger-inner:after {
  top: 20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
  transition-delay: 0.22s;
  background-color: transparent !important;
}

.hamburger--spring.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 10px, 0) rotate(45deg);
  transform: translate3d(0, 10px, 0) rotate(45deg);
}

.hamburger--spring.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333),
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: translate3d(0, 10px, 0) rotate(-45deg);
  transform: translate3d(0, 10px, 0) rotate(-45deg);
}

.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 0.13s;
  transition-duration: 0.13s;
}

.hamburger--spring-r .hamburger-inner:after {
  top: -20px;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0s linear;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0s linear;
}

.hamburger--spring-r .hamburger-inner:before {
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.1s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s,
    transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spring-r.is-active .hamburger-inner {
  -webkit-transition-delay: 0.22s;
  transition-delay: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: translate3d(0, -10px, 0) rotate(-45deg);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}

.hamburger--spring-r.is-active .hamburger-inner:after {
  top: 0;
  -webkit-transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.22s;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s linear 0.22s;
  opacity: 0;
}

.hamburger--spring-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.15s,
    transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s,
    -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.22s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hamburger--stand .hamburger-inner {
  -webkit-transition: background-color 0s linear 75ms,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  transition: background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
}

.hamburger--stand .hamburger-inner:before {
  -webkit-transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand .hamburger-inner:after {
  -webkit-transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand.is-active .hamburger-inner {
  -webkit-transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  background-color: transparent !important;
}

.hamburger--stand.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger--stand.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger--stand-r .hamburger-inner {
  -webkit-transition: background-color 0s linear 75ms,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  transition: background-color 0s linear 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms;
  transition: transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s, background-color 0s linear 75ms,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0.15s;
}

.hamburger--stand-r .hamburger-inner:before {
  -webkit-transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: top 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand-r .hamburger-inner:after {
  -webkit-transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
  transition: bottom 75ms ease-in 75ms, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s,
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19) 0s;
}

.hamburger--stand-r.is-active .hamburger-inner {
  -webkit-transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: background-color 0s linear 0.15s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s;
  transition: transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s, background-color 0s linear 0.15s,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  background-color: transparent !important;
}

.hamburger--stand-r.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: top 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger--stand-r.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  transition: bottom 75ms ease-out 0.1s, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.15s;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger--squeeze .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  -webkit-transition-duration: 75ms;
  transition-duration: 75ms;
}

.hamburger--squeeze .hamburger-inner:before {
  -webkit-transition: top 75ms ease 0.12s, opacity 75ms ease;
  transition: top 75ms ease 0.12s, opacity 75ms ease;
}

.hamburger--squeeze .hamburger-inner:after {
  -webkit-transition: bottom 75ms ease 0.12s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 75ms ease 0.12s, transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19),
    -webkit-transform 75ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--squeeze.is-active .hamburger-inner {
  -webkit-transition-delay: 0.12s;
  transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamburger--squeeze.is-active .hamburger-inner:before {
  top: 0;
  -webkit-transition: top 75ms ease, opacity 75ms ease 0.12s;
  transition: top 75ms ease, opacity 75ms ease 0.12s;
  opacity: 0;
}

.hamburger--squeeze.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  transition: bottom 75ms ease, transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s,
    -webkit-transform 75ms cubic-bezier(0.215, 0.61, 0.355, 1) 0.12s;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

.hamburger--vortex .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.hamburger--vortex .hamburger-inner:after,
.hamburger--vortex .hamburger-inner:before {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.hamburger--vortex .hamburger-inner:before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}

.hamburger--vortex .hamburger-inner:after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex.is-active .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(765deg);
  transform: rotate(765deg);
}

.hamburger--vortex.is-active .hamburger-inner:after,
.hamburger--vortex.is-active .hamburger-inner:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.hamburger--vortex.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.hamburger--vortex-r .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-duration: 0.2s;
  transition-duration: 0.2s;
}

.hamburger--vortex-r .hamburger-inner:after,
.hamburger--vortex-r .hamburger-inner:before {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}

.hamburger--vortex-r .hamburger-inner:before {
  -webkit-transition-property: top, opacity;
  transition-property: top, opacity;
}

.hamburger--vortex-r .hamburger-inner:after {
  -webkit-transition-property: bottom, -webkit-transform;
  transition-property: bottom, -webkit-transform;
  transition-property: bottom, transform;
  transition-property: bottom, transform, -webkit-transform;
}

.hamburger--vortex-r.is-active .hamburger-inner {
  -webkit-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transform: rotate(-765deg);
  transform: rotate(-765deg);
}

.hamburger--vortex-r.is-active .hamburger-inner:after,
.hamburger--vortex-r.is-active .hamburger-inner:before {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.hamburger--vortex-r.is-active .hamburger-inner:before {
  top: 0;
  opacity: 0;
}

.hamburger--vortex-r.is-active .hamburger-inner:after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"),
    url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 30%;
  display: block;
  width: 50px;
  height: 50px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: url("/themes/boeing/images/backgrounds/bg-vft-archive-btns.png");
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
  background-position: 0 -50px;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 4rem;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide .archived-vid-field--name-video-thumbnail {
  overflow: hidden;
  border: 5px solid #5b9dce;
}

.slick-slide .archived-vid-field--name-video-thumbnail:hover,
.slick-slide .active-archive-video .archived-vid-field--name-video-thumbnail {
  border: 5px solid #1b5293;
}

.slick-arrow,
.slick-arrow:hover {
  opacity: 1;
}

.slick-arrow.slick-disabled {
  opacity: 0.4;
  cursor: auto;
}

.slick-slide img {
  display: block;
  width: 100%;
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-transform: scale(1);
  transform: scale(1);
  zoom: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.slick-slide:hover img,
.slick-slide .active-archive-video .archived-vid-field--name-video-thumbnail img {
  -webkit-filter: grayscale(0%);
  filter: grayscale(0%);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.slick-slide .archived-vid-field--name-video-title {
  color: #666;
  padding: 5px 15px;
  text-align: center;
  font-size: 15px;
  width: 95%;
}

.slick-slide a {
  text-decoration: none;
  outline: 0;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
  padding: 15px 10px;
  max-width: 16.5%;
}

@media (max-width: 900px) {
  .slick-initialized .slick-slide {
    max-width: 12.5%;
  }
}

@media (max-width: 720px) {
  .slick-initialized .slick-slide {
    max-width: 16.5%;
  }
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 18px;
  background-color: #ffffff;
  /* remove if smooth-scroll is not needed */
  scroll-behavior: smooth;
}

*,
*::after,
*::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

body {
  line-height: 1.5;
  font-family: "Helvetica Neue", Helvetica, -apple-system, BlinkMacSystemFont, "Open Sans", "Source Sans Pro",
    "Droid Serif", Arial, "Segoe UI", sans-serif;
  color: #333333;
  font-weight: 400;
  margin: 0 auto;
  overflow-x: hidden;
}

.region-content {
  position: relative;
}

.layout-container {
  position: relative;
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.layout-page {
  position: relative;
}

.layout-content {
  max-width: 1200px;
  position: relative;
  margin: 0 auto;
  width: 100%;
}

.layout-content img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-nodeType-stem-career-videos .layout-page {
  background: linear-gradient(180deg, #ffffff 0%, #e7e7e7 61.46%);
}

.page-nodeType-page #block-boeing-page-title {
  display: none;
}

.page-nodeType-page .fieldName-field-content > .field-item:last-of-type,
.page-nodeType-page .fieldName-field-content > .field-item:last-of-type .paragraph-viewMode-default {
  margin-bottom: 0;
}

.bg-gradient-1 {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eeeff0));
  background: linear-gradient(180deg, #ffffff 0%, #eeeff0 100%);
}

.coming-soon-flag {
  background: url(../images/backgrounds/img-triangle-register-now.svg);
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 36px;
  font-size: 14px;
  line-height: 18px;
  color: #293033;
  padding: 10px;
  width: 100px;
  height: 103px;
  font-family: "Helvetica Neue";
  z-index: 2;
}

@media (max-width: 900px) {
  .coming-soon-flag {
    top: 20px;
  }
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue.woff2") format("woff2"), url("../fonts/HelveticaNeue.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Bold.woff2") format("woff2"), url("../fonts/Helvetica-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica.woff2") format("woff2"), url("../fonts/Helvetica.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "Helvetica Neue";
  src: url("../fonts/HelveticaNeue-Bold.woff2") format("woff2"), url("../fonts/HelveticaNeue-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "Boeingtitlefont";
  src: url("../fonts/Boeingtitlefont-Regular.woff2") format("woff2"),
    url("../fonts/Boeingtitlefont-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

body,
html {
  font-family: "Helvetica";
}

b,
strong {
  font-weight: 700;
}

em {
  font-style: oblique;
}

i {
  font-style: italic;
}

small {
  font-size: 0.8em;
}

big {
  font-size: 1.2em;
}

dl dt {
  font-weight: 700;
}

abbr {
  text-transform: uppercase;
}

pre,
code {
  font-family: Courier, monospace;
}

@media (max-width: 720px) {
  p {
    font-size: 14px;
    line-height: 20px;
  }
}

.node-content ul,
ol {
  line-height: 1.5rem;
}

.node-content ol li,
.node-content ul li {
  margin: 0 0 0.5rem 0;
}

h2 {
  color: #293033;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  font-size: 36px;
  font-weight: normal;
  line-height: 44px;
}

@media (max-width: 900px) {
  h2 {
    font-size: 32px;
    line-height: 40px;
  }
}

@media (max-width: 720px) {
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
}

h3 {
  font-weight: normal;
  color: #333333;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  font-size: 24px;
  line-height: 28px;
}

a.ext {
  font-family: "Helvetica Neue";
  color: #00aae5;
  font-weight: bold;
  display: inline-block;
  padding-right: 30px;
  background: url(../images/icons/external-link-symbol.svg) right center no-repeat;
  background-size: 19px 19px;
  line-height: 19px;
  text-decoration: none;
}

.section-title {
  color: #293033;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  font-size: 1.5rem;
  line-height: 1.8rem;
  margin: 5px 0;
}

@media (min-width: 900px) {
  .section-title {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
}

.arrow-link-1 {
  display: inline-block;
  color: #009ade;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  padding-right: 35px;
  background: url(../images/icons/icon-link-arrow-right.svg) right 10px center no-repeat;
  text-decoration: none;
}

.layout-footer .top-footer {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#eeeff0));
  background: linear-gradient(180deg, #ffffff 0%, #eeeff0 100%);
  padding: 50px 15px 60px;
}

.layout-footer .top-footer .layout-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 900px) {
  .layout-footer .top-footer .layout-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.layout-footer .top-footer .layout-container .arrow01 {
  background: url(../images/backgrounds/footer-triangles1.svg);
  position: absolute;
  top: 60px;
  left: 320px;
  width: 120px;
  height: 18px;
  background-size: 100% 100%;
}

@media (max-width: 900px) {
  .layout-footer .top-footer .layout-container .arrow01 {
    left: 0px;
    top: 55px;
  }
}

.layout-footer .top-footer .layout-container .arrow02 {
  background: url(../images/backgrounds/footer-triangles2.svg);
  position: absolute;
  top: -5px;
  right: 20px;
  width: 17px;
  height: 66px;
  background-size: 100% 100%;
}

@media (max-width: 900px) {
  .layout-footer .top-footer .layout-container .arrow02 {
    top: 185px;
  }
}

.layout-footer .top-footer .layout-container .arrow03 {
  background: url(../images/backgrounds/footer-diag-lines.svg);
  position: absolute;
  top: -50px;
  right: 280px;
  width: 289px;
  height: 36px;
  background-size: 100% 100%;
}

@media (max-width: 900px) {
  .layout-footer .top-footer .layout-container .arrow03 {
    left: auto;
    right: 30px;
  }
}

.layout-footer .top-footer .layout-container .arrow04 {
  background: url(../images/backgrounds/footer-diag-lines-small.svg);
  position: absolute;
  bottom: -60px;
  left: 0px;
  width: 67px;
  height: 36px;
  background-size: auto 100%;
  opacity: 0.6;
}

@media (max-width: 900px) {
  .layout-footer .top-footer .layout-container .arrow04 {
    display: none;
  }
}

.layout-footer .top-footer .layout-container .left {
  width: 65%;
}

@media (max-width: 900px) {
  .layout-footer .top-footer .layout-container .left {
    width: 100%;
  }
}

.layout-footer .top-footer .layout-container .right {
  width: 35%;
  padding-top: 100px;
  padding-bottom: 20px;
  text-align: right;
}

@media (max-width: 900px) {
  .layout-footer .top-footer .layout-container .right {
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
}

.layout-footer .top-footer .layout-container .right .inner {
  border-left: 1px solid #000;
  padding-left: 30px;
  display: inline-block;
}

@media (max-width: 900px) {
  .layout-footer .top-footer .layout-container .right .inner {
    border-left: 0;
    padding: 0;
  }
}

.layout-footer .bottom-footer {
  background-color: #000000;
  color: #ffffff;
  padding: 20px 0;
  font-weight: bold;
  font-size: 15px;
}

.layout-footer .bottom-footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .layout-footer .bottom-footer .region-footerbottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.layout-footer .bottom-footer #block-colophon {
  display: inline-block;
}

@media (max-width: 900px) {
  .layout-footer .bottom-footer #block-colophon {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    padding: 0 15px 10px 15px;
  }
}

.layout-footer .bottom-footer #block-footer {
  display: inline-block;
  float: right;
}

@media (max-width: 900px) {
  .layout-footer .bottom-footer #block-footer {
    display: block;
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}

.layout-footer .bottom-footer #block-footer ul.menu,
.layout-footer .bottom-footer #block-footer ul.menu li {
  display: inline-block;
}

.layout-footer .bottom-footer #block-footer ul.menu a,
.layout-footer .bottom-footer #block-footer ul.menu li a {
  color: #ffffff;
  display: inline-block;
  text-decoration: none;
  border-right: 1px solid #fff;
  padding: 0 15px;
}

.layout-footer .bottom-footer #block-footer ul.menu a:hover,
.layout-footer .bottom-footer #block-footer ul.menu li a:hover {
  color: #fedc00;
}

.layout-footer .bottom-footer #block-footer ul.menu li:last-of-type a {
  border-right: none;
}

.layout-page .layout-header,
body.page-nodeType-page .layout-header,
body.page-nodeType-_60-video .layout-header {
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 11;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0)),
    color-stop(50%, rgba(0, 0, 0, 0.65)),
    to(rgba(0, 0, 0, 0.65))
  );
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0.65) 100%);
}

.layout-header {
  height: 170px;
  padding: 0 15px;
  background: #333;
}

.layout-header .logos {
  padding: 25px 0 0 25px;
  display: inline-block;
  float: left;
}

@media (max-width: 1200px) {
  .layout-header .logos {
    padding: 25px 0 0 0;
    position: relative;
    z-index: 5;
  }
}

.layout-header .logos .future-u {
  display: inline-block;
  height: 40px;
  width: 229px;
  margin-right: 20px;
}

@media (max-width: 1200px) {
  .layout-header .logos .future-u {
    margin-left: 18px;
    display: block;
    margin-bottom: 10px;
  }
}

.layout-header .logos .future-u a {
  height: 40px;
  width: 229px;
  display: inline-block;
  background: url(../images/backgrounds/logo-future-u.png);
}

.layout-header .logos .boeing-discover {
  display: inline-block;
  height: 40px;
  width: 300px;
}

@media (max-width: 1200px) {
  .layout-header .logos .boeing-discover {
    height: 34px;
    width: 260px;
  }
}

.layout-header .logos .boeing-discover a {
  background: url(../images/backgrounds/logo.png);
  display: inline-block;
  height: 40px;
  width: 300px;
}

@media (max-width: 1200px) {
  .layout-header .logos .boeing-discover a {
    height: 34px;
    width: 260px;
    background-size: 100%;
  }
}

.layout-header .header-actions {
  float: right;
  padding-top: 20px;
  text-align: right;
}

.layout-header .header-actions #block-signupforupdates {
  display: none;
}

.layout-header .header-actions #block-share {
  display: inline-block;
}

@media (max-width: 1200px) {
  .layout-header .header-actions .region-header {
    display: none;
    margin-left: -15px;
    top: 0;
    width: calc(100% + 30px);
    left: 0;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    padding: 90px 20px 140px 20px;
  }
}

@media (min-width: 1201px) {
  .layout-header .header-actions .region-header {
    display: block !important;
    opacity: 1 !important;
  }
}

body.path-frontpage .layout-header .logos .future-u {
  display: none;
}

body.path-frontpage .layout-header .header-actions #block-signupforupdates {
  display: inline-block;
}

.gray-panel-header {
  background-color: #333;
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #fff;
  width: 100%;
  padding: 5px 15px;
}

.mt-0 {
  margin-top: 0rem !important;
}

.mt-0\.5 {
  margin-top: 0.5rem !important;
}

.mt-1 {
  margin-top: 1rem !important;
}

.mt-1\.5 {
  margin-top: 1.5rem !important;
}

.mt-2 {
  margin-top: 2rem !important;
}

.mt-3 {
  margin-top: 3rem !important;
}

.mt-4 {
  margin-top: 4rem !important;
}

.mt-5 {
  margin-top: 5rem !important;
}

.mt-6 {
  margin-top: 6rem !important;
}

.mr-0 {
  margin-right: 0rem !important;
}

.mr-0\.5 {
  margin-right: 0.5rem !important;
}

.mr-1 {
  margin-right: 1rem !important;
}

.mr-1\.5 {
  margin-right: 1.5rem !important;
}

.mr-2 {
  margin-right: 2rem !important;
}

.mr-3 {
  margin-right: 3rem !important;
}

.mr-4 {
  margin-right: 4rem !important;
}

.mr-5 {
  margin-right: 5rem !important;
}

.mr-6 {
  margin-right: 6rem !important;
}

.mb-0 {
  margin-bottom: 0rem !important;
}

.mb-0\.5 {
  margin-bottom: 0.5rem !important;
}

.mb-1 {
  margin-bottom: 1rem !important;
}

.mb-1\.5 {
  margin-bottom: 1.5rem !important;
}

.mb-2 {
  margin-bottom: 2rem !important;
}

.mb-3 {
  margin-bottom: 3rem !important;
}

.mb-4 {
  margin-bottom: 4rem !important;
}

.mb-5 {
  margin-bottom: 5rem !important;
}

.mb-6 {
  margin-bottom: 6rem !important;
}

.ml-0 {
  margin-left: 0rem !important;
}

.ml-0\.5 {
  margin-left: 0.5rem !important;
}

.ml-1 {
  margin-left: 1rem !important;
}

.ml-1\.5 {
  margin-left: 1.5rem !important;
}

.ml-2 {
  margin-left: 2rem !important;
}

.ml-3 {
  margin-left: 3rem !important;
}

.ml-4 {
  margin-left: 4rem !important;
}

.ml-5 {
  margin-left: 5rem !important;
}

.ml-6 {
  margin-left: 6rem !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

.pt-0\.5 {
  padding-top: 0.5rem !important;
}

.pt-1 {
  padding-top: 1rem !important;
}

.pt-1\.5 {
  padding-top: 1.5rem !important;
}

.pt-2 {
  padding-top: 2rem !important;
}

.pt-3 {
  padding-top: 3rem !important;
}

.pt-4 {
  padding-top: 4rem !important;
}

.pt-5 {
  padding-top: 5rem !important;
}

.pt-6 {
  padding-top: 6rem !important;
}

.pr-0 {
  padding-right: 0rem !important;
}

.pr-0\.5 {
  padding-right: 0.5rem !important;
}

.pr-1 {
  padding-right: 1rem !important;
}

.pr-1\.5 {
  padding-right: 1.5rem !important;
}

.pr-2 {
  padding-right: 2rem !important;
}

.pr-3 {
  padding-right: 3rem !important;
}

.pr-4 {
  padding-right: 4rem !important;
}

.pr-5 {
  padding-right: 5rem !important;
}

.pr-6 {
  padding-right: 6rem !important;
}

.pb-0 {
  padding-bottom: 0rem !important;
}

.pb-0\.5 {
  padding-bottom: 0.5rem !important;
}

.pb-1 {
  padding-bottom: 1rem !important;
}

.pb-1\.5 {
  padding-bottom: 1.5rem !important;
}

.pb-2 {
  padding-bottom: 2rem !important;
}

.pb-3 {
  padding-bottom: 3rem !important;
}

.pb-4 {
  padding-bottom: 4rem !important;
}

.pb-5 {
  padding-bottom: 5rem !important;
}

.pb-6 {
  padding-bottom: 6rem !important;
}

.pl-0 {
  padding-left: 0rem !important;
}

.pl-0\.5 {
  padding-left: 0.5rem !important;
}

.pl-1 {
  padding-left: 1rem !important;
}

.pl-1\.5 {
  padding-left: 1.5rem !important;
}

.pl-2 {
  padding-left: 2rem !important;
}

.pl-3 {
  padding-left: 3rem !important;
}

.pl-4 {
  padding-left: 4rem !important;
}

.pl-5 {
  padding-left: 5rem !important;
}

.pl-6 {
  padding-left: 6rem !important;
}

.toolbar-vertical {
  margin-left: 0 !important;
}

.toolbar-vertical .toolbar-bar {
  position: fixed;
}

#block-boeing-footerblurb {
  max-width: 680px;
}

#block-boeing-footerblurb p {
  margin: 0 0 5px 0;
}

#block-boeing-footerblurb a {
  display: inline-block;
  color: #009ade;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  padding-right: 35px;
  background: url(../images/icons/icon-link-arrow-right.svg) right 10px center no-repeat;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

#block-boeing-footerblurb a:hover {
  color: #00aae5;
}

#block-boeing-footerblurb a.active {
  background-position: right center;
}

#block-footerlogos {
  margin-bottom: 20px;
}

@media (max-width: 900px) {
  #block-footerlogos {
    text-align: center;
  }
}

#block-footerlogos a {
  display: inline-block;
  height: 40px;
  width: 300px;
  background: url(../images/backgrounds/footer-logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  margin: 0 0 0 15px;
}

#block-footersignup {
  margin-bottom: 30px;
}

#block-footersignup a {
  background: #1b5293 url(../images/icons/icon-updates_footer.svg) 20px center no-repeat;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 30px 20px 60px;
  font-weight: bold;
  font-family: "Helvetica Neue";
  display: inline-block;
}

#block-footersignup a:hover {
  background: #00aae5 url(../images/icons/icon-updates_footer.svg) 20px center no-repeat;
}

#block-share {
  font-family: "Helvetica Neue";
}

#block-share h2 {
  color: #ffffff;
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 5px 0 0;
}

#block-share .fieldName-body {
  display: inline-block;
}

#block-share .fieldName-body ul,
#block-share .fieldName-body li {
  vertical-align: middle;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#block-share .fieldName-body li {
  display: inline-block;
  margin-left: 9px;
}

#block-share .fieldName-body li a {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-size: 20px 20px;
}

#block-share .fieldName-body li a.fb {
  background-image: url(../images/icons/icon-facebook.svg);
}

#block-share .fieldName-body li a.tw {
  background-image: url(../images/icons/icon-twitter.svg);
}

#block-share .fieldName-body li a.em {
  background-image: url(../images/icons/icon-email.svg);
}

#block-share .fieldName-body li a:hover {
  opacity: 0.8;
}

@media (max-width: 1200px) {
  #block-share {
    position: absolute;
    left: 30px;
    bottom: 30px;
  }
}

#block-share-2 {
  font-family: "Helvetica Neue";
  margin-right: 15px;
}

#block-share-2 h2 {
  display: inline-block;
  font-size: 1rem;
  font-weight: normal;
  margin: 0 5px 0 0;
}

#block-share-2 .fieldName-body {
  display: inline-block;
}

#block-share-2 .fieldName-body ul,
#block-share-2 .fieldName-body li {
  vertical-align: middle;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

#block-share-2 .fieldName-body li {
  display: inline-block;
  margin-left: 9px;
}

#block-share-2 .fieldName-body li a {
  display: inline-block;
  width: 45px;
  height: 45px;
  background-size: 45px 45px;
}

#block-share-2 .fieldName-body li a.fb {
  background-image: url(../images/icons/icon-footer-facebook.svg);
}

#block-share-2 .fieldName-body li a.tw {
  background-image: url(../images/icons/icon-footer-twitter.svg);
}

#block-share-2 .fieldName-body li a.em {
  background-image: url(../images/icons/icon-footer-email.svg);
}

#block-share-2 .fieldName-body li a:hover {
  opacity: 0.8;
}

#block-signupforupdates {
  margin-right: 30px;
}

#block-signupforupdates a {
  background: url(../images/icons/icon-updates.svg) left center no-repeat;
  background-size: 18px 14px;
  background-position: 0px 7px;
  color: #ffffff;
  display: block;
  padding-left: 25px;
  font-size: 1rem;
  font-weight: bold;
  text-decoration: none;
  opacity: 0.75;
}

#block-signupforupdates a:after {
  content: "";
  display: block;
  width: 0;
  height: 4px;
  background: #fedc00;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  position: relative;
  top: 0px;
}

#block-signupforupdates a:hover {
  opacity: 1;
}

@media (max-width: 1200px) {
  #block-signupforupdates {
    position: absolute;
    left: 30px;
    bottom: 80px;
  }
}

.download-link,
.action--download {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #009ade;
  text-decoration: none;
  padding: 2px 30px 2px 0;
  margin: 0 0 5px 0;
  background: url(../images/icons/icon-download.svg) right center no-repeat;
  background-size: 21px 21px;
}

.tabs ul.tabs {
  margin: 10px 0;
  border-bottom: 1px solid #ccc;
}

.tabs ul.tabs li a {
  padding: 0.5em 1em;
  color: #009ade;
  font-size: 16px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  transition: all 0.5s;
}

.tabs ul.tabs li.isActive a,
.tabs ul.tabs li a:hover {
  color: #ffffff;
  background-color: #009ade;
}

#featured-inspirations {
  padding: 1rem;
}

#featured-inspirations h2 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

#featured-inspirations h2.has-arrows {
  font-size: 22px;
  background: url(../images/backgrounds/bg-heading-bottom-blue-arrows.png) left bottom no-repeat;
  padding: 0 0 1rem 0;
  margin: 0 0 0.5rem 0;
  background-size: 120px 20px;
}

#featured-inspirations p {
  margin: 0 0 1rem 0;
}

#featured-inspirations a {
  color: #009ade;
  font-weight: bold;
  text-decoration: none;
}

#featured-inspirations a.download {
  background: url(../images/icons/icon-download.svg) right center no-repeat;
  background-size: 21px 21px;
  padding: 0 1.5rem 0 0;
}

@media (max-width: 720px) {
  #featured-inspirations a.download {
    background-size: 17px 17px;
  }
}

#featured-inspirations .video-promo {
  display: flex;
  margin: 0 0 5rem 0;
}

@media (max-width: 720px) {
  #featured-inspirations .video-promo {
    display: block;
    margin: 0 0 2rem 0;
  }
}

#featured-inspirations .video-promo__video {
  width: 65%;
}

@media (max-width: 720px) {
  #featured-inspirations .video-promo__video {
    width: 100%;
  }
}

#featured-inspirations .video-promo__text {
  width: 35%;
  padding: 0 2rem;
}

@media (max-width: 720px) {
  #featured-inspirations .video-promo__text {
    width: 100%;
    padding: 1rem;
  }
}

#featured-inspirations .educator-activity {
  display: flex;
  margin: 0 0 3rem 0;
}

@media (max-width: 720px) {
  #featured-inspirations .educator-activity {
    display: block;
    margin: 0 0 1.5rem 0;
  }
}

#featured-inspirations .educator-activity__image {
  width: 40%;
}

@media (max-width: 720px) {
  #featured-inspirations .educator-activity__image {
    width: 100%;
  }
}

#featured-inspirations .educator-activity__text {
  width: 60%;
  padding: 0 0 0 2rem;
}

@media (max-width: 720px) {
  #featured-inspirations .educator-activity__text {
    width: 100%;
    padding: 0;
  }
}

#featured-inspirations .activity {
  display: flex;
  margin: 0 0 3rem 0;
}

@media (max-width: 720px) {
  #featured-inspirations .activity {
    display: block;
    margin: 0 0 1.5rem 0;
  }
}

#featured-inspirations .activity__image {
  width: 30%;
}

@media (max-width: 720px) {
  #featured-inspirations .activity__image {
    width: 100%;
  }
}

#featured-inspirations .activity__text {
  width: 70%;
  padding: 0 0 0 2rem;
}

@media (max-width: 720px) {
  #featured-inspirations .activity__text {
    width: 100%;
    padding: 0;
  }
}

.messages,
#block-boeing-local-tasks {
  display: none;
}

.info-content .messages,
.info-content #block-boeing-local-tasks {
  display: block;
}

.user-login-form {
  padding-top: 10rem;
}

.user-login-form label {
  display: block;
  font-size: 16px;
  font-weight: bold;
}

.user-login-form input.form-text {
  max-width: 325px;
  padding: 15px 20px;
  margin: 0 0 3px 0;
  color: #666;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

.user-login-form .description {
  font-size: 12px;
}

.user-login-form input.button {
  font-size: 15px;
  padding: 15px 25px;
  text-transform: uppercase;
  background: #1b5293;
  color: #fff;
  font-weight: bold;
}

.main-page-header {
  margin-left: calc((-50vw - 7.5px) + 50%);
  margin-right: calc((-50vw - 7.5px) + 50%);
  text-align: center;
  overflow: hidden;
}

.main-page-header .inner {
  height: 360px;
  background-position: center center;
  background-size: cover;
  position: relative;
}

@media (max-width: 1200px) {
  .main-page-header .inner {
    height: 300px;
  }
}

@media (max-width: 720px) {
  .main-page-header .inner {
    height: 215px;
  }
}

.main-page-header .inner h1 {
  font-family: "Helvetica Neue";
  color: #ffffff;
  margin: 0;
  font-weight: 700;
  font-size: 3.5rem;
  line-height: 4.22222rem;
  position: absolute;
  z-index: 2;
  bottom: 220px;
  width: 100%;
  -webkit-transition: bottom 1.5s ease, opacity 1.5s ease;
  transition: bottom 1.5s ease, opacity 1.5s ease;
  opacity: 0;
}

@media (max-width: 1200px) {
  .main-page-header .inner h1 {
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 900px) {
  .main-page-header .inner h1 {
    font-size: 46px;
    line-height: 46px;
  }
}

@media (max-width: 720px) {
  .main-page-header .inner h1 {
    font-size: 1.5rem;
    top: 115px;
    bottom: auto;
  }
}

.main-page-header .inner h2,
.main-page-header .inner h1 span {
  color: #ffffff;
  margin: 0;
  font-weight: bold;
  font-size: 24px;
  line-height: 24px;
  position: absolute;
  bottom: 220px;
  display: block;
  width: 100%;
  -webkit-transition: bottom 1.5s ease, opacity 1.5s ease;
  transition: bottom 1.5s ease, opacity 1.5s ease;
  opacity: 0;
  z-index: 3;
}

@media (max-width: 1200px) {
  .main-page-header .inner h2,
  .main-page-header .inner h1 span {
    font-size: 22px;
    line-height: 22px;
  }
}

@media (max-width: 900px) {
  .main-page-header .inner h2,
  .main-page-header .inner h1 span {
    font-size: 18px;
    line-height: 18px;
  }
}

@media (max-width: 720px) {
  .main-page-header .inner h2,
  .main-page-header .inner h1 span {
    font-size: 16px;
    line-height: 16px;
    bottom: 120px;
  }
}

.main-page-header .inner .color-bar {
  height: 125px;
  mix-blend-mode: multiply;
  background-color: rgba(0, 154, 222, 0.7);
  position: absolute;
  z-index: 1;
  width: 100%;
  left: 0;
  bottom: -120px;
  opacity: 0;
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
}

@media (max-width: 720px) {
  .main-page-header .inner .color-bar {
    display: none;
  }
}

.main-page-header .inner .color-bar .inner-color-bar {
  height: 120px;
}

.main-page-header.Large .inner {
  height: 550px;
}

@media (max-width: 1200px) {
  .main-page-header.Large .inner {
    height: 480px;
  }
}

@media (max-width: 900px) {
  .main-page-header.Large .inner {
    height: 400px;
  }
}

@media (max-width: 720px) {
  .main-page-header.Large .inner {
    height: 260px;
  }
}

.main-page-header.Large .inner h1 {
  bottom: 220px;
  font-size: 90px;
  line-height: 90px;
  background: url(../images/backgrounds/logo-future-u.svg) center center no-repeat;
  text-indent: -9999px;
  width: 479px;
  height: 67px;
  left: 50%;
  margin-left: -240px;
}

@media (max-width: 1200px) {
  .main-page-header.Large .inner h1 {
    font-size: 80px;
    line-height: 80px;
  }
}

@media (max-width: 900px) {
  .main-page-header.Large .inner h1 {
    width: 300px;
    height: 42px;
    background-size: 100% 100%;
    margin-left: -150px;
  }
}

@media (max-width: 720px) {
  .main-page-header.Large .inner h1 {
    width: 200px;
    height: 28px;
    margin-left: -100px;
  }
}

.main-page-header.Large .inner .color-bar {
  height: 160px;
  background-color: rgba(254, 220, 0, 0.7);
}

@media (max-width: 720px) {
  .main-page-header.Large .inner .color-bar {
    height: 60px;
  }
}

.main-page-header.Large .inner .color-bar .inner-color-bar {
  height: 160px;
}

@media (max-width: 720px) {
  .main-page-header.Large .inner .color-bar .inner-color-bar {
    height: 60px;
  }
}

body.document-ready .main-page-header .inner h1 {
  bottom: 111px;
  opacity: 1;
}

@media (max-width: 1200px) {
  body.document-ready .main-page-header .inner h1 {
    bottom: 111px;
  }
}

@media (max-width: 900px) {
  body.document-ready .main-page-header .inner h1 {
    bottom: 112px;
  }
}

@media (max-width: 720px) {
  body.document-ready .main-page-header .inner h1 {
    bottom: auto;
    top: 125px;
  }
}

body.document-ready .main-page-header .inner h2,
body.document-ready .main-page-header .inner h1 span {
  bottom: 100px;
  opacity: 1;
}

@media (max-width: 1200px) {
  body.document-ready .main-page-header .inner h2,
  body.document-ready .main-page-header .inner h1 span {
    bottom: 100px;
  }
}

@media (max-width: 900px) {
  body.document-ready .main-page-header .inner h2,
  body.document-ready .main-page-header .inner h1 span {
    bottom: 100px;
  }
}

@media (max-width: 720px) {
  body.document-ready .main-page-header .inner h2,
  body.document-ready .main-page-header .inner h1 span {
    bottom: 22px;
  }
}

body.document-ready .main-page-header.Large .inner h1 {
  bottom: 160px;
  opacity: 1;
}

@media (max-width: 1200px) {
  body.document-ready .main-page-header.Large .inner h1 {
    bottom: 160px;
  }
}

@media (max-width: 900px) {
  body.document-ready .main-page-header.Large .inner h1 {
    bottom: 160px;
  }
}

@media (max-width: 720px) {
  body.document-ready .main-page-header.Large .inner h1 {
    bottom: 60px;
  }
}

body.document-ready .main-page-header .color-bar {
  bottom: 0px;
  opacity: 1;
}

#block-boeing-main-menu {
  padding-top: 25px;
  position: absolute;
  right: 0;
}

#block-boeing-main-menu ul.menu li {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}

#block-boeing-main-menu ul.menu li.menu-item-isExpanded {
  background-image: url(../images/icons/icon-caret-down.svg);
  background-position: right 7px;
  background-repeat: no-repeat;
  background-size: 20px 20px;
  padding-right: 20px;
}

#block-boeing-main-menu ul.menu li.menu-item-isExpanded:hover ul {
  display: block;
}

#block-boeing-main-menu ul.menu li a {
  color: #ffffff;
  opacity: 0.75;
  display: block;
  padding: 5px 5px 15px;
  text-decoration: none;
  font-weight: bold;
  text-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.3);
}

#block-boeing-main-menu ul.menu li a.is-active {
  opacity: 1;
}

#block-boeing-main-menu ul.menu li a.is-active:after {
  content: "";
  display: block;
  height: 6px;
  background: #fedc00;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  position: relative;
  top: 15px;
}

@media (max-width: 1200px) {
  #block-boeing-main-menu ul.menu li a.is-active:after {
    top: 5px;
  }
}

#block-boeing-main-menu ul.menu li a:hover {
  opacity: 1;
}

#block-boeing-main-menu ul.menu li ul.menu {
  position: absolute;
  background: #ffffff;
  top: 100%;
  left: -13px;
  padding: 10px;
  min-width: 190px;
  z-index: 10;
  display: none;
  -webkit-box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.65);
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.65);
}

@media (max-width: 500px) {
  #block-boeing-main-menu ul.menu li ul.menu {
    margin-left: 0;
  }
}

#block-boeing-main-menu ul.menu li ul.menu li {
  display: block;
  margin: 0;
}

#block-boeing-main-menu ul.menu li ul.menu li a {
  color: #00aae5;
  font-weight: normal;
  font-size: 17px;
  opacity: 1;
}

#block-boeing-main-menu ul.menu li.menu-item-isActiveTrail > a:after {
  content: "";
  display: block;
  height: 4px;
  background: #fedc00;
  -webkit-transition: width 0.3s;
  transition: width 0.3s;
  position: relative;
  top: 5px;
}

@media (max-width: 1200px) {
  #block-boeing-main-menu {
    position: static;
  }
  #block-boeing-main-menu ul.menu li {
    margin-left: 0px;
    display: block;
    margin-bottom: 3px;
  }
  #block-boeing-main-menu ul.menu li.menu-item-isExpanded {
    background: none;
  }
  #block-boeing-main-menu ul.menu li a {
    display: inline-block;
  }
}

@media (max-width: 1200px) and (max-width: 500px) {
  #block-boeing-main-menu ul.menu li a {
    color: #fedc00;
  }
}

@media (max-width: 1200px) {
  #block-boeing-main-menu ul.menu li ul.menu {
    display: block;
    position: static;
    background: none;
    padding: 0;
  }
  #block-boeing-main-menu ul.menu li ul.menu li a {
    color: #ffffff;
    opacity: 0.75;
    font-weight: bold;
  }
}

@media (max-width: 1200px) and (max-width: 500px) {
  #block-boeing-main-menu ul.menu li ul.menu li a {
    font-weight: normal;
    padding: 5px 5px 15px 36px;
    font-size: 16px;
  }
}

@media (max-width: 1200px) {
  #block-boeing-main-menu ul.menu li ul.menu li a:hover {
    opacity: 1;
  }
}

.menu-trigger {
  display: none;
  position: absolute;
  top: 14px;
  right: 0;
}

.menu-trigger .hamburger .hamburger-inner,
.menu-trigger .hamburger .hamburger-inner::after,
.menu-trigger .hamburger .hamburger-inner::before,
.menu-trigger .hamburger.is-active .hamburger-inner,
.menu-trigger .hamburger.is-active .hamburger-inner::after,
.menu-trigger .hamburger.is-active .hamburger-inner::before {
  background-color: #ffffff;
  border-radius: 0;
}

@media (max-width: 1200px) {
  .menu-trigger {
    display: block;
  }
}

.page-nodeType-_60-video .main-page-header .inner h1 span {
  top: 0px;
  bottom: auto;
  -webkit-transition: top 1.5s ease, opacity 1.5s ease;
  transition: top 1.5s ease, opacity 1.5s ease;
}

.page-nodeType-_60-video.document-ready .main-page-header .inner h1 span {
  top: 100px;
  bottom: auto;
}

@media (max-width: 720px) {
  .page-nodeType-_60-video.document-ready .main-page-header .inner h1 span {
    top: 22px;
    bottom: auto;
  }
}

.page-nodeType-_60-video .content-box {
  width: 80%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .page-nodeType-_60-video .content-box {
    width: 90%;
  }
}

.page-nodeType-_60-video .videoWrapper {
  position: relative;
  margin-top: 30px;
  padding-bottom: 56.25%;
  height: 0;
}

.page-nodeType-_60-video .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#onetrust-banner-sdk {
  display: none;
}

.page-nodeType-_60-video .fieldName-field-video-heading {
  margin: 30px 0 10px;
  padding: 0.5em 1em;
  background: #293033;
  display: inline-block;
  font-size: 0.65em;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.page-nodeType-_60-video .fieldName-body p {
  margin: 0;
}

.page-nodeType-_60-video .duration {
  padding: 3px 0 3px 22px;
  background: url(../images/icons/icon-time.png) left center no-repeat;
  font-size: 14px;
  color: #666666;
}

.nodeType-_60-video.node-viewMode-teaser {
  height: 100%;
}

.nodeType-_60-video.node-viewMode-teaser .content-box {
  background: #fff;
  border: 1px solid #dbdbdb;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.nodeType-_60-video.node-viewMode-teaser .content-box:hover {
  -webkit-box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.3);
}

.nodeType-_60-video.node-viewMode-teaser .content-box:hover .video-image {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.nodeType-_60-video.node-viewMode-teaser .video-title {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  padding: 15px;
  background: #4a4a4a;
  font-family: "Helvetica Neue";
  cursor: pointer;
}

.nodeType-_60-video.node-viewMode-teaser .video__image-container {
  overflow: hidden;
}

.nodeType-_60-video.node-viewMode-teaser .video__image-container .video-image {
  height: 175px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.nodeType-_60-video.node-viewMode-teaser .video__image-container .video-image .play-icon {
  background: url(../images/icons/play_btn.png);
  height: 60px;
  width: 60px;
  opacity: 0.8;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.nodeType-_60-video.node-viewMode-teaser .video__image-container .video-image:hover .play-icon {
  opacity: 1;
}

.nodeType-_60-video.node-viewMode-teaser .inner {
  padding: 10px 15px 15px 15px;
  font-family: "Helvetica Neue";
}

.nodeType-_60-video.node-viewMode-teaser .inner .fieldName-field-subject {
  color: #666666;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 22px;
}

.nodeType-_60-video.node-viewMode-teaser .inner h3 {
  color: #1b5293;
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
  margin: 0;
}

.nodeType-_60-video.node-viewMode-teaser .inner .fieldName-field-grade-level {
  font-size: 16px;
  font-style: italic;
  line-height: 22px;
  color: #666666;
  padding: 5px 0;
}

.nodeType-_60-video.node-viewMode-teaser .inner .duration {
  padding: 3px 0 3px 22px;
  background: url(../images/icons/icon-time.png) left center no-repeat;
  font-size: 14px;
  color: #666666;
}

.nodeType-_60-video.node-viewMode-teaser .inner .fieldName-body {
  color: #666666;
  font-size: 16px;
  line-height: 22px;
}

.nodeType-_60-video.node-viewMode-teaser .inner .fieldName-body p {
  margin-top: 5px;
}

.nodeType-_60-video.node-viewMode-teaser .inner .fieldName-field-youtube-video-id {
  display: none;
}

.nodeType-_60-video.node-viewMode-teaser .inner .watch-video,
.nodeType-_60-video.node-viewMode-teaser .inner .download {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #009ade;
  text-decoration: none;
  padding: 2px 30px 2px 0;
  margin: 0 0 5px 0;
}

.nodeType-_60-video.node-viewMode-teaser .inner .watch-video:hover,
.nodeType-_60-video.node-viewMode-teaser .inner .download:hover {
  color: #06a8ef;
  text-decoration: underline;
}

.nodeType-_60-video.node-viewMode-teaser .inner .watch-video {
  background: url(../images/icons/icon-watch-video.svg) right center no-repeat;
  background-size: 21px 21px;
}

.nodeType-_60-video.node-viewMode-teaser .inner .download {
  background: url(../images/icons/icon-download.svg) right center no-repeat;
  background-size: 21px 21px;
}

.popup {
  display: none;
}

.popup .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  cursor: pointer;
}

.popup .overlay .popup-box {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  max-width: 960px;
  width: 100%;
}

.popup .overlay .popup-box .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.popup .overlay .popup-box .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nodeType-activity.node-viewMode-teaser {
  height: 100%;
}

.nodeType-activity.node-viewMode-teaser .content-box {
  background: #fff;
  border: 1px solid #dbdbdb;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.nodeType-activity.node-viewMode-teaser .content-box:hover {
  -webkit-box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.3);
}

.nodeType-activity.node-viewMode-teaser .activity-title {
  color: #ffffff;
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
  padding: 5px 15px;
  background: #4a4a4a;
  font-family: "Helvetica Neue";
}

.nodeType-activity.node-viewMode-teaser .activity-image {
  height: 175px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.nodeType-activity.node-viewMode-teaser .inner {
  padding: 10px 15px 15px 15px;
  font-family: "Helvetica Neue";
}

.nodeType-activity.node-viewMode-teaser .inner .fieldName-field-subject {
  color: #666666;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 22px;
}

.nodeType-activity.node-viewMode-teaser .inner h3 {
  color: #1b5293;
  font-size: 22px;
  font-weight: bold;
  line-height: 28px;
  margin: 0;
}

.nodeType-activity.node-viewMode-teaser .inner .fieldName-field-grade-level {
  font-size: 16px;
  font-style: italic;
  line-height: 22px;
  color: #666666;
  padding: 5px 0;
}

.nodeType-activity.node-viewMode-teaser .inner .duration {
  padding: 3px 0 3px 22px;
  background: url(../images/icons/icon-time.png) left center no-repeat;
  font-size: 14px;
  color: #666666;
}

.nodeType-activity.node-viewMode-teaser .inner .fieldName-body {
  color: #666666;
  font-size: 16px;
  line-height: 22px;
}

.nodeType-activity.node-viewMode-teaser .inner .fieldName-body p {
  margin-top: 5px;
}

.nodeType-activity.node-viewMode-teaser .inner .fieldName-field-youtube-video-id {
  display: none;
}

.nodeType-activity.node-viewMode-teaser .inner .watch-video,
.nodeType-activity.node-viewMode-teaser .inner .download a {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #009ade;
  text-decoration: none;
  padding: 2px 30px 2px 0;
  margin: 0 0 5px 0;
}

.nodeType-activity.node-viewMode-teaser .inner .watch-video:hover,
.nodeType-activity.node-viewMode-teaser .inner .download a:hover {
  color: #06a8ef;
  text-decoration: underline;
}

.nodeType-activity.node-viewMode-teaser .inner .download .file {
  background: none;
  padding: 0;
}

.nodeType-activity.node-viewMode-teaser .inner .watch-video {
  background: url(../images/icons/icon-watch-video.svg) right center no-repeat;
  background-size: 21px 21px;
}

.nodeType-activity.node-viewMode-teaser .inner .download a {
  background: url(../images/icons/icon-download.svg) right center no-repeat;
  background-size: 21px 21px;
}

.challenge-kits-cta {
  padding: 2% 3% 2% 40%;
  width: 120%;
  margin: 0 auto 25px auto;
  max-width: 97%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fedc00 top left no-repeat url(../images/backgrounds/bg-challenge-kits.jpg);
  background-size: contain;
}

@media (max-width: 900px) {
  .challenge-kits-cta {
    padding: 5%;
  }
}

.challenge-kits-cta h4 {
  margin: 0;
  font-size: 24px;
  padding: 0;
  font-weight: 300;
}

.challenge-kits-cta p {
  margin: 0 0 10px 0;
}

.challenge-kits-cta .challenge-kits-ctaBtn a {
  display: inline-block;
  background: #fff;
  padding: 10px 20px;
  text-decoration: none;
  font-weight: 700;
  color: #009ade;
}

.challenge-kits-cta .challenge-kits-ctaBtn a:hover {
  text-decoration: underline;
}

.popup {
  display: none;
}

.popup .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  cursor: pointer;
}

.popup .overlay .popup-box {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  max-width: 960px;
  width: 100%;
}

.popup .overlay .popup-box .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.popup .overlay .popup-box .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.paragraphType-two-large-boxes {
  margin-left: calc((-50vw - 7.5px) + 50%);
  margin-right: calc((-50vw - 7.5px) + 50%);
}

.paragraphType-two-large-boxes .box-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 900px) {
  .paragraphType-two-large-boxes .box-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper {
  overflow: hidden;
  width: 100%;
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper .box {
  padding-top: 400px;
  background-size: cover;
  background-position: center center;
}

@media (max-width: 900px) {
  .paragraphType-two-large-boxes .box-container .box__image-wrapper .box {
    width: 100%;
    padding-top: 300px;
  }
}

@media (max-width: 720px) {
  .paragraphType-two-large-boxes .box-container .box__image-wrapper .box {
    padding-top: 250px;
  }
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper .box .content {
  position: relative;
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper .box .color-overlay {
  mix-blend-mode: multiply;
  background: -webkit-gradient(linear, left bottom, left top, from(#1b5293), to(#009ade));
  background: linear-gradient(0deg, #1b5293 0%, #009ade 100%);
  width: 100%;
  height: 100%;
  position: absolute;
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper .box .inner {
  color: #ffffff;
  padding: 40px;
  position: relative;
  z-index: 2;
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper .box .inner .limiter {
  max-width: 510px;
  display: inline-block;
  text-align: left;
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper .box .inner .limiter h4 {
  font-size: 48px;
  font-family: "Helvetica Neue";
  line-height: 48px;
  max-width: 400px;
  font-weight: normal;
  margin: 0;
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper .box .inner .limiter h4 span {
  font-weight: normal;
  font-family: "Boeingtitlefont";
  display: block;
}

@media (max-width: 720px) {
  .paragraphType-two-large-boxes .box-container .box__image-wrapper .box .inner .limiter h4 {
    font-size: 38px;
    line-height: 38px;
  }
}

.paragraphType-two-large-boxes
  .box-container
  .box__image-wrapper
  .box
  .inner
  .limiter
  .fieldName-field-left-box-content,
.paragraphType-two-large-boxes
  .box-container
  .box__image-wrapper
  .box
  .inner
  .limiter
  .fieldName-field-right-box-content {
  font-size: 18px;
  line-height: 26px;
  font-family: "Helvetica Neue";
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper .box .inner .limiter .fieldName-field-left-box-link a,
.paragraphType-two-large-boxes
  .box-container
  .box__image-wrapper
  .box
  .inner
  .limiter
  .fieldName-field-right-box-link
  a {
  display: inline-block;
  color: #fedc00;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  padding-right: 35px;
  background: url(../images/icons/icon-link-arrow-right.svg) right 10px center no-repeat;
  text-decoration: none;
}

.paragraphType-two-large-boxes
  .box-container
  .box__image-wrapper
  .box
  .inner
  .limiter
  .fieldName-field-left-box-link
  a:hover,
.paragraphType-two-large-boxes
  .box-container
  .box__image-wrapper
  .box
  .inner
  .limiter
  .fieldName-field-right-box-link
  a:hover {
  color: #00aae5;
}

.paragraphType-two-large-boxes
  .box-container
  .box__image-wrapper
  .box
  .inner
  .limiter
  .fieldName-field-left-box-link
  a.active,
.paragraphType-two-large-boxes
  .box-container
  .box__image-wrapper
  .box
  .inner
  .limiter
  .fieldName-field-right-box-link
  a.active {
  background: url(../images/icons/icon-link-arrow-right.svg) right center no-repeat;
}

.paragraphType-two-large-boxes .box-container .box__image-wrapper.box-left .content {
  text-align: right;
}

@media (max-width: 900px) {
  .paragraphType-two-large-boxes .box-container .box__image-wrapper.box-left .content {
    text-align: left;
  }
}

.paragraphItem-column-container .fieldName-field-column-container-title {
  color: #293033;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  font-size: 38px;
  line-height: 46px;
  margin: 10px 0 10px 5px;
}

@media (max-width: 1200px) {
  .paragraphItem-column-container .fieldName-field-column-container-title {
    margin-left: 20px;
  }
}

@media (max-width: 720px) {
  .paragraphItem-column-container .fieldName-field-column-container-title {
    font-size: 32px;
  }
}

.paragraphItem-column-container .fieldName-field-columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.paragraphItem-column-container .fieldName-field-columns video {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .paragraphItem-column-container .fieldName-field-columns {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 15px;
  }
}

.paragraphItem-column-container .fieldName-field-columns .paragraphItem-column {
  width: 100%;
}

@media (max-width: 1200px) {
  .paragraphItem-column-container .fieldName-field-columns .paragraphItem-column {
    width: calc(50% -20px);
    margin-right: 20px;
  }
}

@media (max-width: 900px) {
  .paragraphItem-column-container .fieldName-field-columns .paragraphItem-column {
    width: 100%;
    margin-right: 0px;
  }
}

.paragraphItem-column-container .fieldName-field-columns .paragraphItem-column .paragraphType-column {
  padding: 0 40px 0 0;
}

@media (max-width: 900px) {
  .paragraphItem-column-container .fieldName-field-columns .paragraphItem-column .paragraphType-column {
    padding: 0;
  }
}

/* Community Engagement Content Listing */
.community__engagement .fieldName-field-comm-custom-class,
.community__engagement .nodeType-community-engagement > h2 {
  display: none;
}

.community__engagement .fieldName-field-content-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

@media (max-width: 1200px) {
  .community__engagement .fieldName-field-content-listing {
    display: block;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
}

.community__engagement .fieldName-field-content-listing > .field-item,
.community__engagement .fieldName-field-content-listing > .field-item:nth-child(3) {
  margin: 0 4% 0 0;
  max-width: 22%;
}

.community__engagement .fieldName-field-content-listing > .field-item:last-child {
  margin: 0 0 0 4%;
}

.community__engagement .fieldName-field-content-listing > .field-item .fieldType-image {
  overflow: hidden;
}

.community__engagement .fieldName-field-content-listing > .field-item img {
  -webkit-transform: scale(1);
  transform: scale(1);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.community__engagement .fieldName-field-content-listing > .field-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.community__engagement .fieldName-field-content-listing .fieldName-field-comm-engagement-url {
  display: block;
  margin: 10px 0 0 0;
}

@media (max-width: 500px) {
  .community__engagement .fieldName-field-content-listing .fieldName-field-comm-engagement-url a {
    font-weight: normal;
    line-height: 14px;
    background: none;
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .community__engagement .fieldName-field-content-listing .fieldName-body p {
    font-size: 12px;
    line-height: 16px;
  }
}

.path-frontpage .paragraphItem-content-listing {
  padding: 25px 0;
}

.path-frontpage .paragraphItem-content-listing .nodeType-activity.node-viewMode-teaser .content-box {
  border: none;
}

.path-frontpage .paragraphItem-content-listing .nodeType-activity.node-viewMode-teaser .content-box .cta-link a {
  display: inline-block;
  color: #009ade;
  font-size: 16px;
  font-weight: bold;
  padding-right: 35px;
  background: url(../images/icons/btn-arrow-lead.svg) right 10px center no-repeat;
  background-size: 20px 20px;
  text-decoration: none;
  transition: all 0.5s;
}

.path-frontpage .paragraphItem-content-listing .nodeType-activity.node-viewMode-teaser .content-box .cta-link a:hover {
  padding-right: 45px;
}

.paragraphItem-content-listing {
  padding: 0 15px;
  /* Center Aligned Layout For Educators Pages */
}

.paragraphItem-content-listing .center {
  text-align: center;
}

.paragraphItem-content-listing .center .cl__title {
  font-weight: 800;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 20px 0;
}

.paragraphItem-content-listing .center .cl__description {
  padding: 0 0 2rem 0;
}

.paragraphItem-content-listing .center .cl__description a {
  color: #009ade;
  text-decoration: none;
}

.paragraphItem-content-listing .center .cl__description a.download {
  background: url(../images/icons/icon-download.svg) right center no-repeat;
  background-size: 25px 25px;
  padding: 5px 30px 5px 0;
}

.paragraphItem-content-listing .center .cl__description .quick-links {
  max-width: 50%;
  margin: 0 auto;
}

@media (max-width: 1200px) {
  .paragraphItem-content-listing .center .cl__description .quick-links {
    max-width: 60%;
  }
}

@media (max-width: 900px) {
  .paragraphItem-content-listing .center .cl__description .quick-links {
    max-width: 75%;
  }
}

@media (max-width: 720px) {
  .paragraphItem-content-listing .center .cl__description .quick-links {
    max-width: 50%;
  }
}

@media (max-width: 500px) {
  .paragraphItem-content-listing .center .cl__description .quick-links {
    max-width: 100%;
  }
}

.paragraphItem-content-listing .center .cl__description .quick-links ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 720px) {
  .paragraphItem-content-listing .center .cl__description .quick-links ul {
    padding-left: 4rem;
  }
}

@media (max-width: 500px) {
  .paragraphItem-content-listing .center .cl__description .quick-links ul {
    padding: 0;
  }
}

.paragraphItem-content-listing .center .cl__description .quick-links ul li {
  list-style: none;
  font-size: 15px;
  border-right: 1px solid #000;
  padding: 0 15px;
}

.paragraphItem-content-listing .center .cl__description .quick-links ul li.label {
  padding: 0;
  font-weight: normal;
  text-transform: uppercase;
}

.paragraphItem-content-listing .center .cl__description .quick-links ul li:first-child,
.paragraphItem-content-listing .center .cl__description .quick-links ul li:last-child {
  border-right: none;
}

.paragraphItem-content-listing .center .cl__description .quick-links ul li a {
  text-decoration: none;
  color: #009ade;
}

.paragraphItem-content-listing .center .fieldName-field-content-listing .field-item {
  text-align: left;
}

.paragraphItem-content-listing h2.cl__title {
  color: #293033;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  font-size: 38px;
  line-height: 46px;
  margin: 5px 0 20px 0;
}

@media (max-width: 720px) {
  .paragraphItem-content-listing h2.cl__title {
    font-size: 24px;
  }
}

.paragraphItem-content-listing .cl__description {
  margin-left: 5px;
  padding: 1rem 0;
}

@media (max-width: 720px) {
  .paragraphItem-content-listing .cl__description {
    padding: 0 0 1rem 0;
  }
}

.paragraphItem-content-listing .cl__description p {
  margin: 0 0 10px 0;
}

.paragraphItem-content-listing .fieldName-field-content-listing {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.paragraphItem-content-listing .fieldName-field-content-listing > .field-item {
  width: 28%;
  margin-right: 8%;
  margin-bottom: 40px;
}

.paragraphItem-content-listing .fieldName-field-content-listing > .field-item:nth-child(3),
.paragraphItem-content-listing .fieldName-field-content-listing > .field-item:nth-child(6),
.paragraphItem-content-listing .fieldName-field-content-listing > .field-item:nth-child(9),
.paragraphItem-content-listing .fieldName-field-content-listing > .field-item:nth-child(12),
.paragraphItem-content-listing .fieldName-field-content-listing > .field-item:nth-child(15),
.paragraphItem-content-listing .fieldName-field-content-listing > .field-item:nth-child(18) {
  margin-right: 0;
}

@media (max-width: 1200px) {
  .paragraphItem-content-listing .fieldName-field-content-listing > .field-item {
    width: 30%;
    margin-right: 5%;
  }
}

@media (max-width: 900px) {
  .paragraphItem-content-listing .fieldName-field-content-listing > .field-item {
    width: 48%;
    margin-right: 4%;
  }
}

@media (max-width: 720px) {
  .paragraphItem-content-listing .fieldName-field-content-listing > .field-item {
    width: 100%;
    margin-right: 0%;
  }
}

/* Experience Space Region Specific */
.experience__space .paragraphItem-content-listing .cl__description {
  padding: 2rem 0;
}

.experience__space .paragraphItem-content-listing .field-item:nth-child(3),
.experience__space .paragraphItem-content-listing .field-item:nth-child(6),
.experience__space .paragraphItem-content-listing .field-item:nth-child(9),
.experience__space .paragraphItem-content-listing .field-item:nth-child(12),
.experience__space .paragraphItem-content-listing .field-item:nth-child(15) {
  margin-right: 0;
}

@media (max-width: 900px) {
  .experience__space .paragraphItem-content-listing .field-item:nth-child(3),
  .experience__space .paragraphItem-content-listing .field-item:nth-child(6),
  .experience__space .paragraphItem-content-listing .field-item:nth-child(9),
  .experience__space .paragraphItem-content-listing .field-item:nth-child(12),
  .experience__space .paragraphItem-content-listing .field-item:nth-child(15) {
    margin-right: 4%;
  }
}

/* Community Engagement Specific */
.community__engagement h2.cl__title {
  margin: 5px 0 0 0;
}

.community__engagement .fieldName-field-content-listing > .field-item {
  margin-right: 4%;
}

.paragraphItem-call-to-action a {
  text-decoration: none;
}

.paragraphItem-call-to-action a.download {
  position: relative;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  color: white;
  text-decoration: underline;
}

.paragraphItem-call-to-action a.download::after {
  content: "";
  position: absolute;
  top: 0;
  right: -35px;
  width: 25px;
  height: 25px;
  z-index: 20;
  background-image: url(../images/icons/icon-download-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.paragraphItem-call-to-action a.download:hover {
  text-decoration: none;
}

.paragraphItem-call-to-action a.download:hover::after {
  top: 5px;
}

.paragraphItem-call-to-action .paragraphType-call-to-action {
  margin-left: calc((-50vw - 7.5px) + 50%);
  margin-right: calc((-50vw - 7.5px) + 50%);
  /* Call to Action | Medium */
  /* Call to Action | Large */
}

@media (max-width: 1200px) {
  .paragraphItem-call-to-action .paragraphType-call-to-action {
    margin: 0 !important;
    width: 100%;
  }
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small {
  /* background: url(../images/backgrounds/cta_small.png) center top repeat-y; */
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, from(#0062a7), to(#00a3dc));
  background: linear-gradient(270deg, #0062a7 0%, #00a3dc 100%);
  position: relative;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small:hover .cta-container-small-inner {
  opacity: 1;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .cta-container-small-inner {
  background: -webkit-gradient(linear, right top, left top, from(#0080c2), to(#00a3dc));
  background: linear-gradient(270deg, #0080c2 0%, #00a3dc 100%);
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
  opacity: 0;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container {
  z-index: 2;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2 {
  background: url(../images/backgrounds/cta_small_arrows.png) right 20px center no-repeat;
  color: #ffffff;
  font-weight: bold;
  font-size: 24px;
  padding: 23px 15px;
  margin: 0;
  line-height: 28px;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2 span.download {
  background: url(../images/icons/icon-download-white.png);
  background-size: 100% 100%;
  display: inline-block;
  margin-left: 10px;
  width: 30px;
  height: 30px;
  position: relative;
  top: 3px;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2.active {
  background: url(../images/backgrounds/cta_small_arrows.png) right 0px center no-repeat;
}

@media (max-width: 720px) {
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2.active {
    background-size: auto 100%;
  }
}

@media (max-width: 1200px) {
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2 {
    font-size: 22px;
    line-height: 24px;
    padding: 20px 15px;
  }
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2 span.download {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 900px) {
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2 {
    font-size: 20px;
    line-height: 22px;
  }
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2 span.download {
    width: 26px;
    height: 26px;
  }
}

@media (max-width: 720px) {
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2 {
    font-size: 18px;
    line-height: 30px;
    text-align: left;
    padding: 30px 40px;
    background-size: auto 100%;
  }
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-small .layout-container h2 span.download {
    width: 24px;
    height: 24px;
  }
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-medium {
  background: #0062a7;
  background: -webkit-gradient(linear, left top, right top, from(#00a3dc), to(#0062a7));
  background: linear-gradient(90deg, #00a3dc 0%, #0062a7 100%);
  padding: 0;
  margin: 0 0 2rem 0;
  background-size: cover;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-medium .layout-container {
  background-image: url(../images/backgrounds/bg-cta-medium-triangles2.svg);
  background-repeat: no-repeat;
  background-position: 90% 50%;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-medium h2 {
  position: relative;
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 25px;
  padding: 50px 0;
  background-image: url(../images/backgrounds/bg-cta-medium-arrows.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
}

@media (max-width: 900px) {
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-medium h2 {
    padding: 50px 15px 90px;
  }
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-medium h2::before {
  content: "";
  position: absolute;
  bottom: 25px;
  left: 100px;
  width: 125px;
  height: 30px;
  background-image: url(../images/backgrounds/bg-cta-triangles1.svg);
  background-repeat: no-repeat;
  background-position: center bottom;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-medium h2::after {
  content: "";
  position: absolute;
  margin: 10px 0 0 20px;
  width: 30px;
  height: 30px;
  background-image: url(../images/icons/icon-link-arrow-right-white.png);
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-medium h2:hover::after {
  content: "";
  margin: 10px 0 0 30px;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-large {
  color: #ffffff;
  padding: 25px 0 90px;
  background-size: cover;
}

@media (max-width: 1200px) {
  .paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-large {
    padding: 50px 15px 90px;
  }
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-large h2 {
  color: #ffffff;
  margin-bottom: 10px;
  font-weight: normal;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-large .fieldName-field-content {
  max-width: 660px;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-large .normal-link .fieldName-field-links a {
  display: inline-block;
  color: #fedc00;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  padding-right: 35px;
  background: url(../images/icons/icon-link-arrow-right.svg) right 10px center no-repeat;
  text-decoration: none;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.paragraphItem-call-to-action .paragraphType-call-to-action .cta-container-large .normal-link a {
  display: inline-block;
  color: #fedc00;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  text-decoration: none;
}

.paragraphItem-call-to-action
  .paragraphType-call-to-action
  .cta-container-large
  .normal-link
  .fieldName-field-links
  a:hover {
  color: #00aae5;
}

.paragraphItem-call-to-action
  .paragraphType-call-to-action
  .cta-container-large
  .normal-link
  .fieldName-field-links
  a.active {
  background-position: right center;
}

.paragraphItem-call-to-action
  .paragraphType-call-to-action
  .cta-container-large
  .download-link
  .fieldName-field-links
  a {
  display: inline-block;
  color: #fedc00;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  padding-right: 35px;
  background: url(../images/icons/icon-download-yellow.png) right center no-repeat;
  background-size: 24px 24px;
  text-decoration: none;
  position: relative;
  top: 3px;
}

.paragraphItem-call-to-action
  .paragraphType-call-to-action
  .cta-container-large
  .download-link
  .fieldName-field-links
  a:hover {
  color: #00aae5;
}

.paragraphItem-call-to-action .employee-guide-webinar .cta-container-large {
  padding: 5px 15px 90px 15px;
}

.paragraphItem-call-to-action .employee-guide-webinar .fieldName-field-content {
  max-width: 100% !important;
}

.paragraphItem-call-to-action .employee-guide-webinar .fieldName-field-content .webinar-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1200px) {
  .paragraphItem-call-to-action .employee-guide-webinar .fieldName-field-content .webinar-container {
    display: block;
  }
}

.paragraphItem-call-to-action
  .employee-guide-webinar
  .fieldName-field-content
  .webinar-container
  .webinar-container__left {
  width: 50%;
  padding: 0 5rem 0 1rem;
}

@media (max-width: 1200px) {
  .paragraphItem-call-to-action
    .employee-guide-webinar
    .fieldName-field-content
    .webinar-container
    .webinar-container__left {
    width: 100%;
    padding: 0;
  }
}

.paragraphItem-call-to-action
  .employee-guide-webinar
  .fieldName-field-content
  .webinar-container
  .webinar-container__left
  p,
.paragraphItem-call-to-action
  .employee-guide-webinar
  .fieldName-field-content
  .webinar-container
  .webinar-container__left
  ul {
  -webkit-font-smoothing: antialiased;
}

@media (max-width: 900px) {
  .paragraphItem-call-to-action
    .employee-guide-webinar
    .fieldName-field-content
    .webinar-container
    .webinar-container__left
    p,
  .paragraphItem-call-to-action
    .employee-guide-webinar
    .fieldName-field-content
    .webinar-container
    .webinar-container__left
    ul {
    font-size: 14px;
  }
}

.paragraphItem-call-to-action
  .employee-guide-webinar
  .fieldName-field-content
  .webinar-container
  .webinar-container__right {
  width: 50%;
  padding: 0 1rem 0 0;
}

@media (max-width: 1200px) {
  .paragraphItem-call-to-action
    .employee-guide-webinar
    .fieldName-field-content
    .webinar-container
    .webinar-container__right {
    width: 100%;
    padding: 0;
  }
}

.paragraphItem-call-to-action
  .employee-guide-webinar
  .fieldName-field-content
  .webinar-container
  .webinar-container__right
  .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.paragraphItem-call-to-action
  .employee-guide-webinar
  .fieldName-field-content
  .webinar-container
  .webinar-container__right
  .embed-container
  iframe,
.paragraphItem-call-to-action
  .employee-guide-webinar
  .fieldName-field-content
  .webinar-container
  .webinar-container__right
  .embed-container
  object,
.paragraphItem-call-to-action
  .employee-guide-webinar
  .fieldName-field-content
  .webinar-container
  .webinar-container__right
  .embed-container
  embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* -- DIGITAL LESSON BUNDLE ALL STYLES -- */
/* Original BOEING Unity Team Handoff Styles */
.webgl-content * {
  border: 0;
  margin: 0;
  padding: 0;
}

.webgl-content .logo,
.progress {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.webgl-content .logo {
  background: url("../images/unity/progressLogo.Light.png") no-repeat center/contain;
  width: 154px;
  height: 130px;
}

.webgl-content .progress {
  height: 18px;
  width: 141px;
  margin-top: 90px;
}

.webgl-content .progress .empty {
  background: url("../images/unity/progressEmpty.Light.png") no-repeat right/cover;
  float: right;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.webgl-content .progress .full {
  background: url("../images/unity/progressFull.Light.png") no-repeat left/cover;
  float: left;
  width: 0%;
  height: 100%;
  display: inline-block;
}

.webgl-content .logo.Dark {
  background-image: url("../images/unity/progressLogo.Dark.png");
}

.webgl-content .progress.Dark .empty {
  background-image: url("../images/unity/progressEmpty.Dark.png");
}

.webgl-content .progress.Dark .full {
  background-image: url("../images/unity/progressFull.Dark.png");
}

.webgl-content .footer {
  margin-top: 5px;
  height: 38px;
  line-height: 38px;
  font-family: Helvetica, Verdana, Arial, sans-serif;
  font-size: 18px;
}

@media (max-width: 500px) {
  .webgl-content .footer {
    display: none;
  }
}

.webgl-content .footer .webgl-logo {
  display: block;
  height: 100%;
  text-indent: -9999px;
  display: inline-block;
  background: transparent center no-repeat;
  background-image: url("../images/unity/webgl-logo.png");
  width: 150px;
  background-size: contain;
}

.webgl-content .footer .fullscreen__options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  margin: 0 5px 0 0;
}

.webgl-content .footer .fullscreen__options .title {
  margin-right: 10px;
  font-size: 15px;
}

.webgl-content .footer .fullscreen__options .fullscreen {
  height: 40px;
  width: 40px;
  background-image: url(../images/unity/fullscreen.png);
  background-repeat: no-repeat;
}

.webgl-content .footer .fullscreen__options .fullscreen:hover {
  cursor: pointer;
}

.vid-container {
  background-color: #4a4a4a;
  width: 100vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: calc((-50vw - 7.5px) + 50%);
  margin-right: calc((-50vw - 7.5px) + 50%);
  padding: 1rem 2rem;
  display: block;
}

.vid-button-wrapper {
  text-align: center;
}

.vid-grade {
  color: #dbdbdb;
  line-height: 14px;
  font-size: 15px;
  padding-bottom: 15px;
  text-align: center;
}

.vid-button {
  background: none;
  border: none;
  margin: 5px 10px 5px 0;
}

.vid-button a {
  background-color: #ffffff;
  color: #009ade;
  padding: 7px 25px;
  text-decoration: none;
  border: none;
  border-radius: 20px;
  font-size: 0.94444rem;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.vid-button:hover,
.vid-button.active {
  color: #ffffff;
}

.vid-button:hover a,
.vid-button.active a {
  color: #ffffff;
  background-color: #009ade;
}

.fullscreen {
  height: 100%;
  display: inline-block;
  background: transparent center no-repeat;
}

/* Additional Styles for DLB Container Layout */
body.page-_60°-extended-reality-videos--boeing--discovery-education.document-ready .main-page-header .inner h1 {
  font-size: 3.4rem;
  bottom: 107px;
}

@media (max-width: 500px) {
  body.page-_60°-extended-reality-videos--boeing--discovery-education.document-ready .main-page-header .inner h1 {
    font-size: 1.5rem;
    bottom: 50px;
    line-height: 1.5rem;
  }
}

/* Digital Lesson Bundle | Intro Title & Description */
.intro__title {
  font-weight: 800;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  margin: 20px 0;
  font-size: 38px;
  text-align: center;
}

.intro__description {
  max-width: 960px;
  padding: 0 1.25rem 1.25rem 1.25rem;
  margin: 0 auto;
  text-align: center;
}

/* Digital Lessom Bundle | Main Container */
.dlb-container {
  background-color: #ffffff;
  -webkit-box-shadow: 1px 3px 6px #ccc;
  box-shadow: 1px 3px 6px #ccc;
  margin: 0 20px 25px 20px;
}

.dlb-container > h2 {
  background-color: #333333;
  color: #ffffff;
  margin: 0;
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: uppercase;
}

.dlb-container .column-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px;
}

@media (max-width: 1200px) {
  .dlb-container .column-container {
    display: block;
  }
}

.dlb-container .column-container .left-column {
  width: 60%;
  padding: 0 75px 0 0;
}

@media (max-width: 1200px) {
  .dlb-container .column-container .left-column {
    width: 100%;
    padding: 0;
  }
}

.dlb-container .column-container .left-column .webgl-content {
  position: relative;
}

.dlb-container .column-container .left-column .embed-code {
  background-size: contain;
  background-repeat: no-repeat;
  height: 300px;
  position: relative;
  z-index: 1;
}

@media (max-width: 720px) {
  .dlb-container .column-container .left-column .embed-code {
    height: 170px;
    width: 330px;
  }
}

@media (max-width: 500px) {
  .dlb-container .column-container .left-column .embed-code {
    height: 147px;
    width: 285px;
  }
}

.dlb-container .column-container .right-column {
  width: 40%;
}

@media (max-width: 1200px) {
  .dlb-container .column-container .right-column {
    width: 100%;
    padding: 0;
  }
}

@media (max-width: 1200px) {
  .dlb-container .column-container {
    display: block;
  }
}

.dlb-container .column-container .content {
  padding: 0 5% 5% 0;
}

.dlb-container .column-container .content h4 {
  font-size: 15px;
  color: #666666;
  margin: 10px 0 0 0;
  font-weight: 300;
}

.dlb-container .column-container .content h2 {
  font-size: 22px;
  margin: 0;
  padding: 0;
  color: #1b5293;
  font-weight: 700;
  line-height: 1.5rem;
}

.dlb-container .column-container .content .grades {
  color: #293033;
  font-size: 17px;
  font-style: italic;
}

.dlb-container .column-container .content .time {
  padding: 3px 0 3px 22px;
  background: url("/sites/default/files/media-icons/generic/icon-time.png") left center no-repeat;
  font-size: 0.77778rem;
  color: #666666;
  margin: 0 0 5px 0;
}

.dlb-container .column-container .content p,
.dlb-container .column-container .content ul {
  font-size: 16px;
  color: #666666;
  margin: 0 0 10px 0;
}

@media (max-width: 720px) {
  .dlb-container .column-container .content p,
  .dlb-container .column-container .content ul {
    font-size: 14px;
  }
}

.dlb-container .column-container .content .files-container .file {
  background: none;
  padding: 0 0 0.5rem 0;
}

.dlb-container .column-container .content .files-container a {
  font-size: 16px;
  position: relative;
  color: #009ade;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  padding: 0 0 0 30px;
}

.dlb-container .column-container .content .files-container a::before {
  content: url("/sites/default/files/media-icons/generic/icon-download-link.png");
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.dlb-container .column-container .content .files-container a:hover::before {
  content: url("/sites/default/files/media-icons/generic/icon-download-link.png");
  top: 4px;
}

.dlb-container .column-container .content .files-container .file-info {
  position: relative;
  color: #5f6a72;
  font-size: 13px;
  margin: 0 0 0 5px;
  top: -2px;
}

.dlb-container .column-container .content a.clickFullScreen {
  position: relative;
  font-size: 18px;
  color: #009ade;
  font-weight: 700;
  background-position: right 7px;
  padding: 5px 25px 5px 0;
  background-size: 100%;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.dlb-container .column-container .content a.clickFullScreen::after {
  content: url("/sites/default/files/media-icons/generic/bgZoomClickBtn.png");
  position: absolute;
  top: 7px;
  right: -2px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.dlb-container .column-container .content a.clickFullScreen:hover::after {
  content: url("/sites/default/files/media-icons/generic/bgZoomClickBtn.png");
  top: 11px;
}

/* Freeform HTML | Boeing Connections */
#boeing-connections {
  padding: 2rem 0.75rem 4rem 0.75rem;
}

@media (max-width: 720px) {
  #boeing-connections {
    padding: 1rem 0.75rem 2rem 0.75rem;
  }
}

#boeing-connections a {
  color: #009ade;
  text-decoration: none;
}

#boeing-connections h2,
#boeing-connections h3,
#boeing-connections p {
  margin: 0 0 0.5rem 0;
}

#boeing-connections h3 a {
  background: url(../images/icons/external-link-symbol.svg) right center no-repeat;
  background-size: 19px 19px;
  padding: 0 1.5rem 0 0;
}

#boeing-connections .art-stars {
  display: flex;
  margin: 2rem 0;
}

@media (max-width: 720px) {
  #boeing-connections .art-stars {
    display: block;
    margin: 1rem 0;
  }
}

#boeing-connections .art-stars .left {
  width: 45%;
  padding: 0 3rem 0 0;
}

@media (max-width: 720px) {
  #boeing-connections .art-stars .left {
    width: 100%;
    padding: 0;
  }
}

#boeing-connections .art-stars .right {
  width: 55%;
}

@media (max-width: 720px) {
  #boeing-connections .art-stars .right {
    width: 100%;
  }
}

#boeing-connections .columns {
  display: flex;
}

@media (max-width: 720px) {
  #boeing-connections .columns {
    display: block;
  }
}

#boeing-connections .columns .column {
  width: 34.5%;
  padding: 0 1.5rem 0 0;
}

@media (max-width: 720px) {
  #boeing-connections .columns .column {
    width: 100%;
    padding: 1rem 0;
  }
}

#boeing-connections .columns .column:last-child {
  width: 32%;
  padding: 0;
}

@media (max-width: 720px) {
  #boeing-connections .columns .column:last-child {
    width: 100%;
    padding: 1rem 0;
  }
}

#boeing-connections .columns .column h3 {
  padding: 0 2rem 0 0;
  margin: 1rem 0 0.5rem 0;
  color: #009ade;
}

.paragraphItem-grey-container {
  margin-left: calc((-50vw - 7.5px) + 50%);
  margin-right: calc((-50vw - 7.5px) + 50%);
  /* Child paragraph modifiers */
}

@media (max-width: 1200px) {
  .paragraphItem-grey-container {
    margin: 0 !important;
    width: 100%;
  }
}

.paragraphItem-grey-container .grey-container.solid {
  background: #f1f1f1;
  padding-top: 20px;
  padding-bottom: 20px;
}

.paragraphItem-grey-container .grey-container.gradient {
  background: -webkit-gradient(linear, left top, left bottom, from(#ffffff), to(#e7e7e7));
  background: linear-gradient(180deg, #ffffff 0%, #e7e7e7 100%);
  padding-bottom: 40px;
}

@media (max-width: 720px) {
  .paragraphItem-grey-container .grey-container.gradient {
    padding-bottom: 0px;
  }
}

.paragraphItem-grey-container .paragraphType-call-to-action {
  margin: 0 auto !important;
  width: 100%;
}

.paragraphItem-grey-container .paragraphType-call-to-action .cta-container-small .layout-container h2 {
  background: url(../images/backgrounds/cta_small_arrows.png) right 50px center no-repeat;
}

@media (max-width: 720px) {
  .paragraphItem-grey-container .paragraphType-call-to-action .cta-container-small .layout-container h2 {
    background-size: auto 100%;
  }
}

.paragraphItem-grey-container .paragraphType-call-to-action .cta-container-small .layout-container h2.active {
  background: url(../images/backgrounds/cta_small_arrows.png) right 30px center no-repeat;
}

@media (max-width: 720px) {
  .paragraphItem-grey-container .paragraphType-call-to-action .cta-container-small .layout-container h2.active {
    background-size: auto 100%;
  }
}

.paragraphItem-grey-container .paragraphType-title- {
  padding: 0 15px 10px;
}

.paragraphType-image-text .imgtextContainer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 0 60px;
}

.paragraphType-image-text .imgtextContainer .image {
  width: 25%;
  padding: 0 40px;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer .image {
    width: 40%;
    padding: 0 15px;
  }
}

@media (max-width: 720px) {
  .paragraphType-image-text .imgtextContainer .image {
    width: 50%;
  }
}

.paragraphType-image-text .imgtextContainer .content {
  width: 75%;
  color: #333333;
  font-size: 18px;
  line-height: 26px;
  padding: 0 15px;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer .content {
    width: 100%;
  }
}

@media (max-width: 720px) {
  .paragraphType-image-text .imgtextContainer .content {
    width: 100%;
  }
  .paragraphType-image-text .imgtextContainer .content p {
    font-size: 15px;
  }
}

.paragraphType-image-text .imgtextContainer .content h1,
.paragraphType-image-text .imgtextContainer .content h2,
.paragraphType-image-text .imgtextContainer .content h3,
.paragraphType-image-text .imgtextContainer .content h4,
.paragraphType-image-text .imgtextContainer .content h5,
.paragraphType-image-text .imgtextContainer .content h6 {
  margin-top: 0;
  margin-bottom: 16px;
}

.paragraphType-image-text .imgtextContainer .content .fieldName-field-links a {
  display: inline-block;
  color: #009ade;
  font-family: "Helvetica Neue";
  font-size: 18px;
  font-weight: bold;
  line-height: 40px;
  padding-right: 35px;
  background: url(../images/icons/icon-link-arrow-right.svg) right 10px center no-repeat;
  text-decoration: none;
}

.paragraphType-image-text .imgtextContainer .content .fieldName-field-links a:hover {
  color: #00aae5;
}

.paragraphType-image-text .imgtextContainer .content .fieldName-field-links a.active {
  background: url(../images/icons/icon-link-arrow-right.svg) right center no-repeat;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer .content .fieldName-field-links a {
    line-height: 30px;
    padding-top: 5px;
    padding-bottom: 5px;
  }
}

@media (max-width: 720px) {
  .paragraphType-image-text .imgtextContainer .content .fieldName-field-links a {
    line-height: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer.medium {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.paragraphType-image-text .imgtextContainer.medium .image {
  width: 45%;
  padding: 0 40px 0 0;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer.medium .image {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 15px;
  }
}

.paragraphType-image-text .imgtextContainer.medium .content {
  width: 55%;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer.medium .content {
    width: 100%;
    padding: 0 15px;
  }
}

.paragraphType-image-text .imgtextContainer.large {
  padding: 0 0 60px;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer.large {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.paragraphType-image-text .imgtextContainer.large .image {
  width: 60%;
  padding: 0 15px;
  position: relative;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer.large .image {
    width: 100%;
    margin-bottom: 30px;
    padding: 0 15px;
  }
}

.paragraphType-image-text .imgtextContainer.large .image .register-now-flag {
  background: url(../images/backgrounds/img-triangle-register-now.svg);
  background-size: 100% 100%;
  position: absolute;
  right: -10px;
  top: 30px;
  font-size: 17px;
  line-height: 20px;
  color: #293033;
  padding: 10px;
  width: 106px;
  height: 103px;
  font-family: "Helvetica Neue";
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer.large .image .register-now-flag {
    display: none;
  }
}

.paragraphType-image-text .imgtextContainer.large .content {
  width: 45%;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer.large .content {
    width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 720px) {
  .paragraphType-image-text .imgtextContainer.large .content p {
    font-size: 16px;
  }
}

.paragraphType-image-text .imgtextContainer.large .content .fieldName-field-links {
  display: inline-block;
  background: #1b5293;
  padding: 20px;
}

.paragraphType-image-text .imgtextContainer.large .content .fieldName-field-links:hover {
  background: #00aae5;
}

@media (max-width: 900px) {
  .paragraphType-image-text .imgtextContainer.large .content .fieldName-field-links {
    display: block;
    width: 220px;
    margin: 30px auto 0;
    padding: 8px 20px;
  }
}

.paragraphType-image-text .imgtextContainer.large .content .fieldName-field-links a {
  display: inline-block;
  font-size: 22px;
  line-height: 34px;
  color: #ffffff;
  padding-right: 50px;
  font-weight: normal;
  background: url(../images/icons/btn-arrow-lead.svg) right 10px center no-repeat;
}

.paragraphType-image-text .imgtextContainer.large .content .fieldName-field-links a.active {
  background: url(../images/icons/btn-arrow-lead.svg) right center no-repeat;
}

.paragraphType-image-text .imgtextContainer.large .content .fieldName-field-links a.active:hover {
  background: url(../images/icons/btn-arrow-lead_hover.svg) right center no-repeat;
}

.paragraphType-image-text .imgtextContainer.large .content .fieldName-field-links a:hover {
  background: url(../images/icons/btn-arrow-lead_hover.svg) right 10px center no-repeat;
}

.paragraphItem-title- {
  margin-top: 40px;
}

.paragraphType-title- {
  padding: 0 30px 10px;
}

@media (max-width: 720px) {
  .paragraphType-title- {
    padding: 0 15px 10px;
  }
}

.paragraphType-title- .fieldName-field-title {
  color: #293033;
  font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande",
    sans-serif;
  font-size: 38px;
  line-height: 46px;
  margin: 5px 0;
}

@media (max-width: 900px) {
  .paragraphType-title- .fieldName-field-title {
    font-size: 32px;
    line-height: 42px;
  }
}

@media (max-width: 720px) {
  .paragraphType-title- .fieldName-field-title {
    font-size: 26px;
    line-height: 32px;
  }
}

.paragraphType-title- .fieldName-field-content {
  max-width: 960px;
  margin-left: 5px;
}

.page-_60°-extended-reality-videos--boeing--discovery-education .fieldName-field-title {
  font-size: 38px;
  line-height: 43px;
  text-align: center;
  font-weight: bold;
}

.paragraphItem-video-archive-text {
  padding: 0 30px 75px 30px;
}

.paragraphItem-video-archive-text article h2 {
  display: none;
}

.paragraphItem-video-archive-text .fieldName-field-content {
  max-width: 960px;
}

#gameContainer {
  width: 585px;
  height: 300px;
  border: solid 1px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

@media (max-width: 720px) {
  #gameContainer {
    height: 170px;
    width: 330px;
  }
}

@media (max-width: 500px) {
  #gameContainer {
    height: 147px;
    width: 285px;
  }
}

#gameContainer.discovery-mars {
  background: url(/sites/default/files/unity/placeholder-images/img-discovery-mars-interactive-placeholder.jpg);
  background-size: cover;
}

#gameContainer.echo-voyager {
  background: url(/sites/default/files/unity/placeholder-images/img-echo-voyager-interactive-placeholder.jpg);
  background-size: cover;
}

.page-nodeType-stem-career-videos .main-page-header .inner {
  background-position: top center;
}

.career-video-profiles {
  padding: 0 1rem;
}

.career-video-profiles .career-profile__vidcontainer {
  position: relative;
  padding: 0 5rem;
}

@media (max-width: 720px) {
  .career-video-profiles .career-profile__vidcontainer {
    padding: 0 0 5rem 0;
  }
}

.career-video-profiles .career-profile__vidcontainer a {
  position: absolute;
  top: 40%;
  display: block;
  width: 75px;
  height: 75px;
  text-indent: -9999px;
  border-radius: 100px;
}

@media (max-width: 720px) {
  .career-video-profiles .career-profile__vidcontainer a {
    top: auto;
    bottom: 0;
  }
}

.career-video-profiles .career-profile__vidcontainer .career-video__previous a {
  left: -10px;
  background: url(../images/icons/icon-left-blue-arrow.jpg) #ffffff 18px 18px no-repeat;
  background-size: 50%;
}

@media (max-width: 720px) {
  .career-video-profiles .career-profile__vidcontainer .career-video__previous a {
    left: 30%;
  }
}

.career-video-profiles .career-profile__vidcontainer .career-video__next a {
  right: -10px;
  background: url(../images/icons/icon-right-blue-arrow.jpg) #ffffff 18px 18px no-repeat;
  background-size: 50%;
}

@media (max-width: 720px) {
  .career-video-profiles .career-profile__vidcontainer .career-video__next a {
    right: 30%;
  }
}

.career-video-profiles .bottom-section-cont {
  display: flex;
  padding: 2rem 0 2rem 0;
  margin: 0 0 2rem 0;
}

@media (max-width: 720px) {
  .career-video-profiles .bottom-section-cont {
    display: block;
  }
}

.career-video-profiles .bottom-section-cont .left-column {
  width: 65%;
  padding: 1.5rem 7rem 0 0;
}

@media (max-width: 720px) {
  .career-video-profiles .bottom-section-cont .left-column {
    width: 100%;
    padding: 1.5rem 0 0 0;
  }
}

.career-video-profiles .bottom-section-cont .left-column .career-sub-title {
  margin: 0;
}

.career-video-profiles .bottom-section-cont .left-column .career-additional-title {
  margin: 5px 0 0 0;
}

.career-video-profiles .bottom-section-cont .left-column .career-description {
  margin: 1rem 0 0 0;
}

.career-video-profiles .bottom-section-cont .left-column .career-files .file {
  background: none;
  padding: 0;
}

.career-video-profiles .bottom-section-cont .left-column .career-files .file a {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #009ade;
  text-decoration: none;
  padding: 2px 30px 2px 0;
  margin: 0 0 5px 0;
  background: url(../images/icons/icon-download.svg) right center no-repeat;
  background-size: 21px 21px;
}

.career-video-profiles .bottom-section-cont .left-column .career__dropdown-container a {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #009ade;
  text-decoration: none;
  padding: 2px 30px 2px 0;
  margin: 0 0 5px 0;
  background: url(../images/icons/icon-download.svg) right center no-repeat;
  background-size: 21px 21px;
  cursor: pointer;
}

.career-video-profiles .bottom-section-cont .right-column {
  width: 35%;
  margin: 2rem 0 0 0;
}

@media (max-width: 720px) {
  .career-video-profiles .bottom-section-cont .right-column {
    width: 100%;
  }
}

.career-video-profiles .bottom-section-cont .right-column .career-quote {
  font-size: 34px;
  margin: 0;
  border-left: 3px solid #009ade;
  padding: 0 0 0 1rem;
  line-height: 2.5rem;
}

.career-video-profiles .bottom-section-cont .right-column .career-quote p {
  margin: 0;
}

@media (max-width: 720px) {
  .career-video-profiles .bottom-section-cont .right-column .career-quote p {
    margin: 0;
    font-size: 26px;
    line-height: 2rem;
  }
}

@media (max-width: 720px) {
  .page-stem-career-videos--boeing--discovery-education .paragraphItem-freeform-html {
    margin: 0 0.5rem;
  }
}

.career-profile-references {
  padding: 0 0 3rem 0;
}

.career-profile-references .career-profile-ref-label {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.career-profile-references .career-profiles > .field {
  display: flex;
}

@media (max-width: 720px) {
  .career-profile-references .career-profiles > .field {
    display: block;
  }
}

.career-profile-references .career-profiles > .field .field-item {
  width: 30%;
  margin: 0 2rem 0 0;
}

@media (max-width: 720px) {
  .career-profile-references .career-profiles > .field .field-item {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}

.career-profile-references .career-profiles > .field .field-item .career-ref-name {
  font-size: 24px;
  font-weight: 700;
  margin: 0.5rem 0;
}

.career-profile-references .career-profiles > .field .field-item .career-ref-job-title {
  font-size: 16px;
  font-style: italic;
}

.career-profile-references .career-profiles > .field .field-item .career-ref-description p {
  margin: 0.5rem 0 1rem 0;
  font-size: 16px;
}

.career-profile-references .career-profiles > .field .field-item .career-ref-link a {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: #009ade;
  text-decoration: none;
}

@media (max-width: 720px) {
  .page-stem-career-videos--boeing--discovery-education .paragraphItem-freeform-html {
    margin: 0 0.5rem;
  }
}

.paragraphItem-view-reference .viewsreference--view-title {
  font-size: 32px;
  margin: 0 0 1.5rem 0;
}

@media (max-width: 720px) {
  .paragraphItem-view-reference .viewsreference--view-title {
    font-size: 26px;
    margin: 0 0.5rem;
  }
}

.view-stem-career-videos .view-content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 0 -0.5rem;
}

@media (max-width: 720px) {
  .view-stem-career-videos .view-content {
    display: block;
    flex-wrap: nowrap;
    margin: 0;
  }
}

.view-stem-career-videos .view-content .views-row {
  position: relative;
  flex: 0 0 31%;
  padding: 0.5rem;
  margin: 0 1rem 2rem 0;
  transition: all 0.5s;
}

@media (max-width: 720px) {
  .view-stem-career-videos .view-content .views-row {
    flex: 100%;
    margin: 0 1rem 2rem 0;
  }
}

.view-stem-career-videos .view-content .views-row:hover {
  -webkit-box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 9px rgba(0, 0, 0, 0.3);
}

.view-stem-career-videos .view-content .views-row .views-field-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0.5rem 0 0 0;
}

.view-stem-career-videos .view-content .views-row .views-field-field-stemcv-video-thumbnail {
  position: relative;
  overflow: hidden;
}

.view-stem-career-videos .view-content .views-row .views-field-field-stemcv-video-thumbnail img {
  transform: scale(1);
  transition: all 0.3s ease;
}

.view-stem-career-videos .view-content .views-row:hover .views-field-field-stemcv-video-thumbnail img {
  transform: scale(1.08);
}

.view-stem-career-videos .view-content .views-row .views-field-field-stemcv-career-prof-job {
  font-size: 16px;
  font-style: italic;
}

.view-stem-career-videos .view-content .views-row .views-field-field-stemcv-intro-text p {
  margin: 0.25rem 0 1rem 0;
  font-size: 15px;
}

.view-stem-career-videos .view-content .views-row .views-field-view-node a {
  font-weight: bold;
  text-decoration: none;
  color: #009ade;
}

.contact-popup {
  position: absolute;
  left: 0;
  z-index: 9999;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.contact-popup .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  cursor: pointer;
}

.contact-popup .popup-box {
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  top: 100px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  z-index: 1000;
}

.contact-popup .popup-box .popup-inner {
  background: #ffffff;
}

.contact-popup .popup-box .popup-inner #block-webform {
  padding: 30px 60px;
}

.contact-popup .popup-box .popup-inner #block-webform h2 {
  color: #293033;
  margin-top: 0;
  font-weight: normal;
}

.contact-popup .popup-box .popup-inner #block-webform .form-email,
.contact-popup .popup-box .popup-inner #block-webform select {
  width: 100%;
  height: calc(1em + 32px);
  padding: 15px 20px;
  font-size: 1em;
  color: inherit;
  border: 1px solid #666666;
}

.contact-popup .popup-box .popup-inner #block-webform .form-email {
  width: 100%;
}

.contact-popup .popup-box .popup-inner #block-webform .form-item-age-gate-birthdate {
  margin-bottom: 40px;
}

.contact-popup .popup-box .popup-inner #block-webform [id^="edit-age-gate-birthdate"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin: 0;
}

.contact-popup .popup-box .popup-inner #block-webform [id^="edit-age-gate-birthdate"] .form-item {
  width: 31%;
  margin: 0;
}

.contact-popup .popup-box .popup-inner #block-webform .formType-checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.contact-popup .popup-box .popup-inner #block-webform .formType-checkbox input {
  margin: 5px 5px 0 0;
}

.contact-popup .popup-box .popup-inner #block-webform .formType-checkbox a {
  color: #00aae5;
  text-decoration: none;
  font-weight: bold;
}

.contact-popup .popup-box .popup-inner #block-webform .form-actions {
  text-align: center;
}

.contact-popup .popup-box .popup-inner #block-webform .form-actions input {
  background: #1b5293 url(../images/icons/icon-updates_footer.svg) 20px center no-repeat;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 30px 20px 60px;
  font-weight: bold;
  font-family: "Helvetica Neue";
  display: inline-block;
  border: 0;
}

.contact-popup .popup-box .popup-inner #block-webform .form-actions input:hover {
  background: #00aae5 url(../images/icons/icon-updates_footer.svg) 20px center no-repeat;
}

.contact-popup button.close {
  position: absolute;
  bottom: 100%;
  right: 0;
  border: 0;
  font-size: 0;
  padding: 0;
  background: transparent;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}

.contact-popup button.close::after {
  content: "\00D7";
  color: #ffffff;
  line-height: 1;
  font-size: 40px;
}

.contact-popup button.close:hover::after {
  opacity: 0.75;
}

.contact-popup .webform-confirmation__message {
  color: #ffffff;
  font-weight: bold;
  font-size: 22px;
  line-height: 28px;
  padding: 20px 40px;
  background: #009ade;
}

.path-frontpage .webform-popup {
  position: absolute;
}

.webform-popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
  padding: 4% 25px 0 25px;
}

.webform-popup .overlay {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  cursor: pointer;
}

.webform-popup .popup-inner {
  max-width: 750px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 25px 50px;
  position: relative;
  z-index: 9999;
}

@media (max-width: 900px) {
  .webform-popup .popup-inner {
    padding: 15px 30px;
    width: 95%;
    top: 5%;
  }
}

@media (max-width: 720px) {
  .webform-popup .popup-inner h2 {
    font-size: 1.5rem;
    line-height: 1.5rem;
  }
}

.webform-popup button.close {
  position: absolute;
  bottom: 100%;
  right: 0;
  border: 0;
  font-size: 0;
  padding: 0;
  background: transparent;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  cursor: pointer;
}

.webform-popup button.close::after {
  content: "\00D7";
  color: #fff;
  line-height: 1;
  font-size: 40px;
}

.webform-popup button.close:hover::after {
  opacity: 0.75;
}

.webform-popup .alert {
  font-size: 14px;
}

.webform-popup .messages {
  display: block;
  border-width: 1px;
}

.webform-popup .messages ul {
  padding: 0;
  margin: 20px 10px;
}

.webform-popup .messages li {
  margin: 0 0 5px 0;
}

.webform-popup .webform-flexbox {
  clear: both;
}

.webform-popup .form-item label {
  display: block;
  font-size: 16px;
  margin: 0 0 5px 0;
  font-weight: 700;
}

.webform-popup .form-item input.form-text,
.webform-popup .form-item input.form-email {
  max-width: 350px;
  padding: 15px 20px;
  font-size: 14px;
  color: #666;
  border: 1px solid #ccc;
  border-radius: 5px;
}

@media (max-width: 720px) {
  .webform-popup .form-item input.form-text,
  .webform-popup .form-item input.form-email {
    max-width: 100%;
  }
}

.webform-popup .form-item input.form-email {
  max-width: 320px;
}

@media (max-width: 720px) {
  .webform-popup .form-item input.form-email {
    max-width: 100%;
  }
}

.webform-popup .form-item .formType-datelist {
  float: left;
  width: 50%;
  margin: 0 10px 0 0;
}

.webform-popup .form-item .form-item-email-address {
  float: left;
  width: 47%;
  margin: 0;
}

.webform-popup .form-item input.form-item-email-address {
  max-width: 320px;
}

.webform-popup .form-item #edit-age-gate-birthdate--description,
.webform-popup .form-item #edit-age-gate-birthdate--2--description {
  font-size: 12px;
}

.webform-popup .form-item .layout-containerInline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 5px 0;
}

.webform-popup .form-item .formType-webform-markup {
  margin: 0;
  font-size: 14px;
}

.webform-popup .form-item.formType-datelist {
  float: left;
  width: 50%;
  margin: 0 15px 0 0;
}

.webform-popup .form-item.form-item-email-address {
  float: left;
  width: 48%;
  margin: 0;
}

.webform-popup .formType-select {
  margin: 0 10px 0 0;
}

.webform-popup .formType-select select {
  width: 160px;
  height: calc(1em + 32px);
  padding: 15px 20px;
  cursor: pointer;
  border: 1px solid #ccc;
}

.webform-popup .formType-select select#edit-state {
  width: 300px;
}

@media (max-width: 720px) {
  .webform-popup .formType-select select#edit-state {
    max-width: 100%;
  }
}

.webform-popup .form-managedFile .description {
  font-size: 12px;
}

.webform-popup .form-actions .webform-button--submit {
  background-color: #1b5293;
  color: #ffffff;
  text-decoration: none;
  padding: 20px 30px 20px 30px;
  font-weight: bold;
  font-family: "Helvetica Neue";
  display: inline-block;
  border: 0;
}

.webform-popup .webform-button--submit:hover {
  background-color: #009ade;
}

.webform-popup .form-item .form-file {
  display: inline;
  width: auto;
  font-size: 13px;
  border-radius: 5px;
}

.webform-popup .webform-popup .form-item .form-managedFile {
  margin: -5px 0 0 0;
}

.webform-popup .webform-confirmation__message {
  color: #fff;
  font-weight: bold;
  font-size: 1.22222rem;
  line-height: 1.55556rem;
  padding: 20px 40px;
  background: #009ade;
}

.page-nodeType-virtual-site-tours #block-boeing-page-title {
  display: none;
}

.vst-container {
  padding: 0 1rem;
}

.vst-container .vst-intro-text {
  width: 85%;
}

@media (max-width: 720px) {
  .vst-container .vst-intro-text {
    width: 100%;
  }
}

.vst-container .vst-vidcontainer {
  padding: 0 8%;
}

@media (max-width: 720px) {
  .vst-container .vst-vidcontainer {
    padding: 0;
  }
}

.vst-container .bottom-section-cont {
  display: flex;
  margin: 0 0 2rem 0;
}

@media (max-width: 720px) {
  .vst-container .bottom-section-cont {
    display: block;
  }
}

.vst-container .bottom-section-cont .left-column {
  width: 65%;
  padding: 1.5rem 7rem 0 0;
}

@media (max-width: 720px) {
  .vst-container .bottom-section-cont .left-column {
    width: 100%;
    padding: 1.5rem 0 0 0;
  }
}

.vst-container .bottom-section-cont .left-column .cst-description-title {
  margin: 0;
}

.vst-container .bottom-section-cont .left-column .vst-description {
  margin: 1rem 0 0 0;
}

.vst-container .bottom-section-cont .left-column .vst-activity .file {
  background: none;
  padding: 0;
}

.vst-container .bottom-section-cont .left-column .vst-activity .file a {
  display: inline-block;
  font-weight: bold;
  font-size: 18px;
  color: #009ade;
  text-decoration: none;
  padding: 2px 30px 2px 0;
  margin: 0 0 5px 0;
  background: url(../images/icons/icon-download.svg) right center no-repeat;
  background-size: 21px 21px;
}

.vst-container .bottom-section-cont .right-column {
  width: 35%;
  margin: 2rem 0 0 0;
}

@media (max-width: 720px) {
  .vst-container .bottom-section-cont .right-column {
    width: 100%;
  }
}

.vst-container .bottom-section-cont .right-column .vst-quote h3 {
  font-size: 34px;
  margin: 0;
  border-left: 3px solid #009ade;
  padding: 0 0 0 1rem;
  line-height: 2.5rem;
}

@media (max-width: 720px) {
  .vst-container .bottom-section-cont .right-column .vst-quote h3 {
    font-size: 22px;
  }
}

.vft__cta-banner {
  position: relative;
  max-width: 1128px;
  min-height: 400px;
  color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
  margin: 0 auto;
  padding: 1.75rem 15% 1.75rem 2rem;
}

@media (max-width: 900px) {
  .vft__cta-banner {
    padding: 1.75rem 10% 1.75rem 2rem;
  }
}

@media (max-width: 500px) {
  .vft__cta-banner {
    background-position: 55% 0;
  }
}

.vft__cta-banner:before {
  content: "";
  opacity: 1;
  position: absolute;
  min-height: 400px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  background: #fedc00;
  mix-blend-mode: multiply;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.vft__cta-banner:hover:before {
  opacity: 0;
}

.vft__content {
  position: relative;
  z-index: 3;
}

.vft__category {
  text-transform: uppercase;
  font-size: 1.25rem;
  color: #fff;
  font-weight: 700;
  margin: 0;
  padding: 0;
}

@media (max-width: 500px) {
  .vft__category {
    font-size: 1rem;
  }
}

.vft__title {
  font-size: 2rem;
  margin: 0.75rem 0 1rem 0;
  color: #fff;
}

@media (max-width: 500px) {
  .vft__title {
    font-size: 1.75rem;
  }
}

.vft__assets {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 720px) {
  .vft__assets {
    font-size: 0.8rem;
  }
}

.vft__assets a {
  text-decoration: none;
  color: #fedc00;
}

.vft__link {
  position: relative;
  margin: 0 35% 0 0;
}

@media (max-width: 720px) {
  .vft__link {
    margin: 0 5rem 0 0;
  }
}

.vft__link:after {
  content: " ";
  position: absolute;
  top: 3px;
  right: -35px;
  width: 25px;
  height: 30px;
  display: block;
  background-image: url(../images/icons/icon-link-arrow-right.svg);
  background-repeat: no-repeat;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.vft__link:hover:after {
  content: " ";
  right: -40px;
}

.vft__guide {
  position: relative;
}

.vft__guide .file--application-pdf {
  background: none;
}

.vft__guide:before {
  content: url(/sites/default/files/media-icons/generic/icon-download-link-yellow.png);
  position: absolute;
  top: 0px;
  left: -25px;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.vft__guide:hover:before {
  top: 10px;
}

.vft__guide-dropdown {
  padding: 0px 8px;
}

.vft__guide-dropdown .file--application-pdf {
  background: none;
}

.vft__guide-dropdown .file {
  padding-left: 0;
}

/* VFT Pre-Registration Page */
.pre-vft__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 0 35px;
}

@media (max-width: 900px) {
  .pre-vft__wrapper {
    display: block;
    padding: 0;
  }
}

.pre-vft__wrapper .left-column {
  position: relative;
  width: 50%;
}

@media (max-width: 900px) {
  .pre-vft__wrapper .left-column {
    width: 100%;
  }
}

.pre-vft__wrapper .left-column .register-now-flag {
  background: url(../images/backgrounds/img-triangle-register-now.svg);
  background-size: 100% 100%;
  position: absolute;
  right: -50px;
  top: 25px;
  font-size: 17px;
  line-height: 20px;
  color: #293033;
  padding: 10px;
  width: 106px;
  height: 103px;
  font-family: "Helvetica Neue";
}

@media (max-width: 900px) {
  .pre-vft__wrapper .left-column .register-now-flag {
    display: none;
  }
}

.pre-vft__wrapper .right-column {
  width: 50%;
  padding: 0 0 50px 75px;
}

@media (max-width: 900px) {
  .pre-vft__wrapper .right-column {
    width: 100%;
    padding: 35px;
  }
}

.pre-vft__wrapper .right-column .pre-vft__heading {
  margin: 0;
  padding: 0 75px 0 0;
  font-size: 35px;
}

@media (max-width: 900px) {
  .pre-vft__wrapper .right-column .pre-vft__heading {
    font-size: 26px;
    padding: 0;
  }
}

.pre-vft__wrapper .right-column .pre-vft__link a {
  background-color: #1b5293;
  display: inline-block;
  padding: 20px 30px;
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.pre-vft__wrapper .right-column .pre-vft__link a:hover {
  background-color: #009ade;
}

/* Only exists on new VFT page */
.page-virtual-field-trips--boeing--discovery-education .paragraphItem-two-large-boxes {
  margin-top: 3rem;
}

@media (max-width: 720px) {
  .page-virtual-field-trips--boeing--discovery-education .paragraphItem-two-large-boxes {
    margin-top: 0;
  }
}

.VFT-intro {
  padding: 0;
}

@media (max-width: 900px) {
  .VFT-intro {
    padding: 0 15px;
  }
}

.vft-callout {
  display: flex;
  margin: 1rem;
  background-color: rgba(74, 74, 74, 0.08);
}

@media (max-width: 720px) {
  .vft-callout {
    display: block;
  }
}

.vft-callout .left {
  width: 45%;
}

@media (max-width: 720px) {
  .vft-callout .left {
    width: 100%;
  }
}

.vft-callout .right {
  width: 55%;
  padding: 25px 50px;
}

@media (max-width: 720px) {
  .vft-callout .right {
    width: 100%;
    padding: 25px;
  }
}

.vft-callout .right h2 {
  margin: 0 0 15px 0;
}

.vft-callout .right a {
  font-weight: bold;
  color: #009ade;
  text-decoration: none;
}

/* Partner's Block View */
.view-partners .view-header {
  padding: 20px 0;
  max-width: 80%;
}

@media (max-width: 720px) {
  .view-partners .view-header {
    padding: 20px 40px;
    max-width: 100%;
  }
}

.view-partners .view-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .view-partners .view-content {
    display: block;
  }
}

.view-partners .view-content .views-row {
  width: 33%;
  padding: 0 2rem 2rem 0;
}

@media (max-width: 720px) {
  .view-partners .view-content .views-row {
    width: 100%;
    padding: 0 2rem 2rem 2rem;
  }
}

.view-partners .view-content .views-row .views-field-field-partner-logo {
  border: 1px solid #c7c7c7;
}

.view-partners .view-content .views-row .views-field-field-partner-logo img {
  width: 105%;
}

.view-partners .view-content .views-row .views-field-field-partner-website-url {
  margin: 0.5rem 0 0 0;
}

.view-partners .view-content .views-row .views-field-field-partner-website-url a {
  font-size: 24px;
  color: #009ade;
  text-decoration: none;
  display: inline-block;
  padding-right: 30px;
  background: url(../images/icons/external-link-symbol.svg) right center no-repeat;
  background-size: 19px 19px;
}

.view-partners .view-content .views-row .views-field-body p {
  margin: 0 0 10px 0;
  font-size: 16px;
}

.episode__thumbnail-wrapper {
  padding: 4px;
  border-width: 3px;
  border-style: solid;
  border-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  margin-right: 4px;
}

.episode-player {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  margin-right: auto;
}

.episode-player .episode-player__video-wrapper {
  position: relative;
  padding-top: 56.25%;
  margin-bottom: 1.5rem;
}

.episode-player .episode-player__video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.episode-player .episode-player__display-area {
  margin-bottom: 2rem;
}

.episode-player .episode-player__display-area .episode-player__subject {
  text-transform: uppercase;
  font-size: 0.9rem;
  color: #666;
  margin: 0.7rem 0;
}

.episode-player .episode-player__display-area h5 {
  font-size: 1.5rem;
  margin: 0.7rem 0;
  font-weight: normal;
}

.episode-player .episode-player__display-area .episode-player__grades {
  display: block;
  font-size: 1.1rem;
  color: #293033;
  font-style: italic;
  margin: 0.7rem 0;
}

.episode-player .episode-player__display-area .episode-player__duration {
  display: block;
  position: relative;
  font-size: 0.9rem;
  color: #666;
  margin: 0.7rem 0;
  padding-left: 1.5rem;
}

.episode-player .episode-player__display-area .episode-player__duration:before {
  content: "";
  background-image: url("/themes/boeing/images/icons/bg-clock.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  left: -0.1rem;
  top: 0;
  width: 1.1rem;
  height: 1.1rem;
}

.episode-player .episode-player__display-area .episode-player__subtitle {
  display: none;
}

.episode-player .episode-player__selector {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.episode-player .episode-player__selector:before {
  content: "Related Videos";
  display: block;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.episode-player .episode-player__selector ul {
  list-style-type: none;
  padding-left: 0;
}

.episode-player .episode-player__selector ul li button {
  display: block;
  border: none;
  padding: 3px;
  background-color: #fff;
  -webkit-box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0.6rem;
  width: 100%;
  outline: none;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  position: relative;
  border: none;
  height: calc(5rem + 8px);
  /* img height plus top/bottom borders */
  padding-left: calc(5rem / 0.5625 + 12px);
  border-style: solid;
  border-width: 4px;
  border-color: #fff;
  margin-bottom: 0.5rem;
  cursor: pointer;
  z-index: 0;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper:before {
  content: "";
  display: block;
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  z-index: -1;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper h5 {
  font-family: "Helvetica Neue";
  color: #009ade;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper:hover .episode__thumbnail-wrapper {
  border-color: #fedc00;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper img {
  height: 5rem;
  width: calc(5rem / 0.5625);
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__subject,
.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__grades,
.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__duration,
.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__subtitle,
.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode__activity,
.episode-player .episode-player__selector ul li button .button-inner-wrapper .action__dropdown {
  display: none;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper h5,
.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__subtitle {
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  padding-left: 0.8rem;
  padding-right: 1.5rem;
  text-align: left;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__description {
  margin-bottom: 0;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  padding-left: 0.8rem;
  font-size: 0.8rem;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__subtitle,
.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__description {
  font-size: 1rem;
  width: 100%;
  font-weight: normal;
  margin-top: 0.3em;
}

.episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__subtitle {
  font-size: 0.8rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.episode-player .episode-player__selector ul li button.episode--active .episode__thumbnail-wrapper {
  border-color: #fedc00;
}

@media (min-width: 900px) {
  .episode-player {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    max-width: 100%;
  }
  .episode-player .episode-player__display-area {
    width: 100%;
    margin-right: 1rem;
    padding-top: 0.3em;
    /* should match border with of episode buttons */
  }
  .episode-player .episode-player__selector {
    width: 450px;
  }
  .episode-player .episode-player__selector:before {
    display: none;
  }
  .episode-player .episode-player__selector ul {
    margin: 0;
  }
  .episode-player .episode-player__selector ul li button .button-inner-wrapper {
    height: calc(4rem + 20px);
    /* img height plus top/bottom borders */
    padding-left: calc(4rem / 0.5625 + 14px);
    /* img width */
    margin-bottom: 0rem;
  }
  .episode-player .episode-player__selector ul li button .button-inner-wrapper img {
    height: 4rem;
    width: calc(4rem / 0.5625);
  }
  .episode-player .episode-player__selector ul li button .button-inner-wrapper h5,
  .episode-player .episode-player__selector ul li button .button-inner-wrapper p {
    padding-left: 0.8rem;
    font-size: 1rem;
  }
  .episode-player .episode-player__selector ul li button .button-inner-wrapper .episode-player__description {
    padding-left: 0.8rem;
    font-size: 0.9rem;
  }
}

/* Grid Component Styles */
section.padded {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

@media (min-width: calc($max-content-width + 2 * $grid-gutter-size)) {
  .container {
    padding-right: 0;
    padding-left: 0;
  }
}

.row {
  margin: 1.2rem 0;
}

.row:last-child {
  margin-bottom: 0;
}

.row:first-child {
  margin-top: 0;
}

.row--vertical-align {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
}

.row--multi-line {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.row .column {
  position: relative;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 2rem;
}

.row .column h1:first-child,
.row .column h2:first-child,
.row .column h3:first-child,
.row .column h4:first-child,
.row .column h5:first-child,
.row .column p:first-child,
.row .column .blue-header:first-child {
  margin-top: 0;
}

.row .column h1:last-child,
.row .column h2:last-child,
.row .column h3:last-child,
.row .column h4:last-child,
.row .column h5:last-child,
.row .column p:last-child,
.row .column .blue-header:last-child {
  margin-bottom: 0;
}

.row .column:last-child {
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .row .column {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 0;
  }
  .row .column:first-child {
    margin-left: 0;
  }
  .row .column:last-child {
    margin-right: 0;
  }
}

@media (min-width: 720px) {
  .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .row.row--reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .row.row--reverse .column {
    margin-bottom: 0;
  }
  .row.row--reverse .column:first-child {
    margin-left: 1rem;
    margin-right: 0;
  }
  .row.row--reverse .column:last-child {
    margin-right: 1rem;
    margin-left: 0;
  }
}

@media (min-width: 720px) {
  .column.is-1 {
    width: 8.33333%;
  }
  .row .column.is-offset-1 {
    margin-left: 8.33333%;
  }
  .column.is-2 {
    width: 16.66667%;
  }
  .row .column.is-offset-2 {
    margin-left: 16.66667%;
  }
  .column.is-3 {
    width: 25%;
  }
  .row .column.is-offset-3 {
    margin-left: 25%;
  }
  .column.is-4 {
    width: 33.33333%;
  }
  .row .column.is-offset-4 {
    margin-left: 33.33333%;
  }
  .column.is-5 {
    width: 41.66667%;
  }
  .row .column.is-offset-5 {
    margin-left: 41.66667%;
  }
  .column.is-6 {
    width: 50%;
  }
  .row .column.is-offset-6 {
    margin-left: 50%;
  }
  .column.is-7 {
    width: 58.33333%;
  }
  .row .column.is-offset-7 {
    margin-left: 58.33333%;
  }
  .column.is-8 {
    width: 66.66667%;
  }
  .row .column.is-offset-8 {
    margin-left: 66.66667%;
  }
  .column.is-9 {
    width: 75%;
  }
  .row .column.is-offset-9 {
    margin-left: 75%;
  }
  .column.is-10 {
    width: 83.33333%;
  }
  .row .column.is-offset-10 {
    margin-left: 83.33333%;
  }
  .column.is-11 {
    width: 91.66667%;
  }
  .row .column.is-offset-11 {
    margin-left: 91.66667%;
  }
  .column.is-12 {
    width: 100%;
  }
  .row .column.is-offset-12 {
    margin-left: 100%;
  }
  .column.col-padding-r-sm {
    padding-right: 1.5rem;
  }
  .column.col-padding-l-sm {
    padding-left: 1.5rem;
  }
  .column.col-padding-r-md {
    padding-right: 2.5rem;
  }
  .column.col-padding-l-md {
    padding-left: 2.5rem;
  }
}

/* 4-2-1 Responsive profiles */
@media (min-width: 500px) {
  .row.g4-2-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .row.g4-2-1 .column {
    margin-left: 1rem;
    margin-right: 1rem;
  }
}

@media (min-width: 500px) and (max-width: 900px) {
  .row.g4-2-1 .column {
    width: calc((100% - 2rem) * 0.5);
  }
  .row.g4-2-1 .column:nth-child(odd) {
    margin-left: 0;
  }
  .row.g4-2-1 .column:nth-child(even) {
    margin-right: 0;
  }
}

@media (min-width: 900px) {
  .row.g4-2-1 .column {
    width: calc((100% - 3 * 2rem) * 0.25);
  }
  .row.g4-2-1 .column:nth-child(4n + 1) {
    margin-left: 0;
  }
  .row.g4-2-1 .column:nth-child(4n + 0) {
    margin-right: 0;
  }
}

/* 3-2-1 Responsive profiles */
@media (min-width: 600px) {
  .row.g3-2-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .row.g3-2-1 .column {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-bottom: 1.2rem;
  }
}

@media (min-width: 600px) and (max-width: 900px) {
  .row.g3-2-1 .column {
    width: calc((100% - 2rem) * 0.5);
  }
  .row.g3-2-1 .column:nth-child(odd) {
    margin-left: 0;
  }
  .row.g3-2-1 .column:nth-child(even) {
    margin-right: 0;
  }
}

@media (min-width: 900px) {
  .row.g3-2-1 .column {
    width: calc((100% - 2 * 2rem) * 0.3333);
  }
  .row.g3-2-1 .column:nth-child(3n + 1) {
    margin-left: 0;
  }
  .row.g3-2-1 .column:nth-child(3n + 0) {
    margin-right: 0;
  }
}

.row .column img {
  display: block;
  width: 100%;
}

.controller-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
}
