body {
  font-size: 14px;
}

.container {
  width: 86%;
  max-width: 960px;
}

@media (max-width: 400px) {
  .container {
    width: 100%;
  }
}
h1 {
  font-size: 3.5em;
  margin-bottom: 0;
}

h2 {
  font-size: 3em;
  margin-bottom: 0;
}

h3 {
  font-size: 2.5em;
  margin-bottom: 1em;
}

h4 {
  font-size: 2em;
  margin-bottom: 1em;
}

h5 {
  font-size: 1.5em;
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  color: #004a8f;
}
a:hover {
  color: #0077c8;
}

.u-text-right {
  text-align: right;
}

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

.u-mobile {
  display: none;
}

@media (max-width: 400px) {
  .u-mobile {
    display: block;
  }
  .u-desktop {
    display: none;
  }
}
input {
  max-width: 100%;
}

.header {
  margin: 10px 0 0;
}
.header .issue {
  line-height: 68px;
  font-size: 1.1em;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.header .issue.issue--archive {
  cursor: pointer;
}
.header .issue .issue-archive-icon {
  background-image: url("../assets/images/chevron-down.svg");
  background-position: center;
  background-repeat: no-repeat;
  width: 15px;
  height: 12px;
  display: inline-block;
  margin-left: 5px;
}
body.issue-archive-open .header .issue .issue-archive-icon {
  background-image: url("../assets/images/chevron-up.svg");
}
html.csstransforms .header .issue .issue-archive-icon {
  transform: rotate(0);
  transition: transform 0.4s;
}
html.csstransforms body.issue-archive-open .header .issue .issue-archive-icon {
  background-image: url("../assets/images/chevron-down.svg");
  transform: rotate(-180deg);
}
.header .issue-archive {
  text-align: center;
  display: none;
}
.header .issue-archive ul {
  padding: 0.5em;
  margin: 0;
  list-style: none;
  background: black;
  margin-top: 0.5em;
}
.header .issue-archive ul li {
  margin: 0.5em 0;
}
.header .issue-archive ul li a {
  color: white;
}

h1 {
  font-size: 3.5em;
  margin-bottom: 0;
}

h2 {
  font-size: 3em;
  margin-bottom: 0;
}

h3 {
  font-size: 2.5em;
  margin-bottom: 1em;
}

h4 {
  font-size: 2em;
  margin-bottom: 1em;
}

h5 {
  font-size: 1.5em;
  margin-bottom: 1em;
}

a {
  text-decoration: none;
  color: #004a8f;
}
a:hover {
  color: #0077c8;
}

.header-search {
  position: relative;
  border: 1px solid #d1d1d1;
  overflow: hidden;
  height: 38px;
  margin: 1em 0;
}
.header-search input[type=text] {
  float: left;
  border-radius: 0;
  border: none;
  margin: 0;
  width: 100%;
  padding: 6px;
  padding-right: 48px;
  box-sizing: border-box;
}
.header-search input[type=submit] {
  text-indent: -9999px;
  background: url("../assets/images/search.svg") no-repeat center;
  border: none;
  padding: 16px 19px;
  margin: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 38px;
  position: absolute;
  border-left: 1px solid #d2d2d2;
  border-radius: 0;
}

.nav {
  background: #004a8f;
  /* Sub-nav */
  /* first level */
}
.nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav ul li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.nav ul li a {
  display: block;
  color: #fff;
  padding: 0 20px;
  font-size: 1.5rem;
  line-height: 2.5em;
  white-space: nowrap;
}
.nav ul li.active {
  background: #0077c8;
}
.nav ul li:hover {
  background: #0077c8;
}
.nav ul li:hover > ul {
  display: block;
}
.nav ul ul {
  display: none;
  position: absolute;
  z-index: 100;
}
.nav ul ul li {
  display: block;
}
.nav > div > ul > li {
  float: left;
  /* first level sub-nav */
}
.nav > div > ul > li > ul {
  top: 100%;
  background: #ed1c24;
  /* second level sub-nav */
}
.nav > div > ul > li > ul > li > ul {
  top: 0;
  left: 100%;
  background: #ed1c24;
}

@media (max-width: 400px) {
  .nav-header-mobile-open {
    background: none;
    background-image: url("../assets/icons/menu-highlight.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    overflow: hidden;
    text-indent: 10000px;
    white-space: nowrap;
    display: inline-block;
  }
  .nav {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
  }
  .nav .nav-header-mobile {
    position: relative;
    font-size: 2em;
    padding: 0 20px 0.3em;
    color: white;
  }
  .nav .nav-header-mobile .nav-header-mobile-close {
    background: none;
    background-image: url("../assets/icons/close.png");
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    overflow: hidden;
    text-indent: 10000px;
    white-space: nowrap;
    display: inline-block;
    position: absolute;
    top: 6px;
    right: 6px;
  }
  .nav > .container {
    padding: 0;
  }
  .nav > .container > ul > li > ul {
    display: block;
  }
  .nav > .container > ul > li > ul > li > ul {
    display: none !important;
  }
  .nav ul {
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
  }
  .nav ul li {
    display: block;
    float: none !important;
  }
  body.show-nav .nav {
    display: block;
  }
}
.article-sibling {
  box-sizing: border-box;
  position: fixed;
  top: 25%;
  padding: 10px;
  z-index: 1000;
  background: #333;
  width: 250px;
  transition: 0.3s;
}
.article-sibling .article-sibling-tab {
  position: absolute;
  top: 0;
  width: 30px;
  height: 40px;
  background: #eee;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
.article-sibling.article-sibling--before {
  left: -250px;
}
.article-sibling.article-sibling--before:hover {
  left: 0;
}
.article-sibling.article-sibling--before .article-sibling-tab {
  right: -30px;
  background-image: url("../assets/images/chevron-left.svg");
}
.article-sibling.article-sibling--after {
  right: -250px;
}
.article-sibling.article-sibling--after:hover {
  right: 0;
}
.article-sibling.article-sibling--after .article-sibling-tab {
  left: -30px;
  background-image: url("../assets/images/chevron-right.svg");
}
.article-sibling .article-sibling-content a {
  color: white;
}
.article-sibling .article-sibling-content h3 {
  font-size: 2.2rem;
  letter-spacing: 1px;
  margin: 0.5em 0;
}
.article-sibling .article-sibling-content p:last-child {
  margin-bottom: 0;
  color: white;
}

.hero {
  position: relative;
  overflow: hidden;
  position: relative;
}
.hero:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 30%;
}
.hero > .ratio-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero .ratio-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(/wp-default/wp-content/themes/default/vendor/backgroundsize.min.htc);
}
.hero .hero-play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  margin-left: -35px;
  margin-top: -35px;
  background-size: cover;
  background-position: center;
  background-image: url("../assets/images/play.svg");
  opacity: 0.6;
  cursor: pointer;
}
.hero .hero-video {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  bottom: 0px;
  background: black;
}
.hero .hero-video .mejs-mediaelement {
  text-align: center;
}
.hero .hero-video .mejs-container {
  max-height: 100%;
  background: none;
}
.hero .hero-video video {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
}
.hero .hero-video .mejs-control,
.hero .hero-video .mejs-controls,
.hero .hero-video .mejs-overlay-button,
.hero .hero-video .mejs-layers {
  display: none !important;
}
.hero .hero-video-controls {
  position: absolute;
  top: 10px;
  right: 50px;
  z-index: 100;
}
.hero .hero-video-controls a {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(/wp-default/wp-content/themes/default/vendor/backgroundsize.min.htc);
  background-image: url("../assets/images/close.svg");
  width: 30px;
  height: 30px;
  text-indent: 1000px;
  cursor: pointer;
}
.hero .hero-hype, .hero .hero-hype > div {
  width: 100% !important;
  height: 100% !important;
}

.rollup .rollup-image {
  width: 100%;
  position: relative;
}
.rollup .rollup-image:before {
  display: block;
  content: "";
  width: 100%;
  padding-top: 56.25%;
}
.rollup .rollup-image > .ratio-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.rollup .rollup-image .ratio-container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(/wp-default/wp-content/themes/default/vendor/backgroundsize.min.htc);
}
.rollup .rollup-content {
  margin: 10px 0;
}
.rollup .rollup-content h3 {
  font-size: 2em;
  margin: 0;
  color: #004a8f;
}
.rollup .rollup-content p {
  color: #333;
}

.container--article {
  margin: 3em auto;
}

.article-content .article-body {
  width: 86%;
  max-width: 960px;
  margin: 0 auto;
}
.article-content .article-body.article-body-narrow_centered .article-body-maincontent {
  float: none;
  margin: 0 auto;
}
.article-content .article-body.article-body-image_slider .image-slider {
  position: relative;
  margin: 40px 0;
}
.article-content .article-body.article-body-image_slider .image-slider .owl-nav {
  position: absolute;
  right: -60px;
  bottom: 0;
  height: 160px;
  background: #ccc;
  width: 60px;
}
.article-content .article-body.article-body-image_slider .image-slider .owl-nav div {
  background: #ccc url(../assets/images/icon-hero-arrow.png);
  background-repeat: no-repeat;
  -webkit-transition: background-color 150ms ease-out;
  transition: background-color 150ms ease-out;
  height: 50%;
  width: 60px;
  z-index: 10;
  text-indent: -9999px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
}
.article-content .article-body.article-body-image_slider .image-slider .owl-nav .owl-prev {
  background-position: 0px -10px;
  bottom: 0;
}
.article-content .article-body.article-body-image_slider .image-slider .owl-nav .owl-prev:hover {
  background-color: #000;
}
.article-content .article-body.article-body-image_slider .image-slider .owl-nav .owl-next {
  background-position: 0 -108px;
  top: 0;
  border-bottom: 1px solid white;
}
.article-content .article-body.article-body-image_slider .image-slider .owl-nav .owl-next:hover {
  background-color: #000;
}
.article-content .article-body.article-body-image_slider .image-slider .image {
  height: 240px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(/wp-default/wp-content/themes/default/vendor/backgroundsize.min.htc);
}

.section-bg-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -ms-behavior: url(/wp-default/wp-content/themes/default/vendor/backgroundsize.min.htc);
}
/*# sourceMappingURL=style.css.map */
