/*------------------------------------------
layout
------------------------------------------*/
/*------------------------------------------
fonts
------------------------------------------*/
/*------------------------------------------
colors
------------------------------------------*/
/*#b2b2b2;*/
/*#666;*/
/*#8c8c8c;*/
.color__black--54 {
  color: #666;
}

body.s-area-center-for-computational-astrophysics {
  --org-color: #ce3232;
  --org-color-dark: #90322a;
}

body.s-area-center-for-computational-biology {
  --org-color: #81ad4a;
  --org-color-dark: #628735;
}

body.s-area-center-for-computational-mathematics {
  --org-color: #f6862d;
  --org-color-dark: #bb6821;
}

body.s-area-center-for-computational-neuroscience {
  --org-color: #007c98;
  --org-color-dark: #005265;
}

body.s-area-center-for-computational-quantum-physics {
  --org-color: #855b8e;
  --org-color-dark: #654767;
}

body.s-area-scientific-computing-core {
  --org-color: #808080;
  --org-color-dark: #808080;
}

/* LINK COLOR VARIABLES */
/* MAIN LANDING PAGE */
body {
  --link-color: #1D2954;
  --org-color: #1D2954;
}

/* FLATIRON LANDING PAGE */
.flatiron, .s-area-flatiron {
  --link-color: #537eba;
  --org-color: #537eba;
}

/* SCIENCE SANDBOX */
.science-sandbox, .s-area-science-sandbox {
  --link-color: #1D2954;
  --org-color: #1D2954;
}

/* SF Presents */
.simons-foundation-presents, .s-area-simons-foundation-presents {
  --org-color: #1D2954;
  --link-color: #1D2954;
}
.simons-foundation-presents .o-area-header--blue, .s-area-simons-foundation-presents .o-area-header--blue {
  background-color: var(--org-color);
}
@media only screen and (max-width: 650px) {
  .simons-foundation-presents .o-area-header--blue, .s-area-simons-foundation-presents .o-area-header--blue {
    background-size: cover;
  }
}
.simons-foundation-presents .btn, .s-area-simons-foundation-presents .btn {
  background-color: var(--link-color);
}

/* SF Presidential Lectures */
.simons-foundation-presidential--lectures, .s-area-simons-foundation-presidential-lectures {
  --org-color: #1D2954;
  --link-color: #1D2954;
}
.simons-foundation-presidential--lectures .o-area-header--blue, .s-area-simons-foundation-presidential-lectures .o-area-header--blue {
  background-color: var(--org-color);
}
.simons-foundation-presidential--lectures .btn, .s-area-simons-foundation-presidential-lectures .btn {
  background-color: var(--org-color);
}

/*------------------------------------------
breakpoint
------------------------------------------*/
/*
  @function get-breakpoint-directions

  Sorts through breakpoints SASS map,
  generates a full SASS map containing all the breakpoint
  variations we'll require

  Parameters:
  none
*/
/*
  @mixin breakpoint

  Inserts a media query

  Parameters:
  $name - name of breakpoint, choose from:

  xsmall, small, medium, large, xlarge, xxlarge  - *just* that breakpoint
  small-, medium-, large-, xlarge-, xxlarge-  - that breakpoint *and* below
  xsmall+, small+, medium+, large+, xlarge+  - that breakpoint *and* up

  NB: the we're mobile up, so the minus values should be avoided..
*/
/*
  @function get-media

  Returns start and stop points of a given media query

  Parameters:
  $bp - the breakpoint you want the stop and stop points of
*/
/*------------------------------------------
buttons
------------------------------------------*/
/*------------------------------------------
forms
------------------------------------------*/
/*
  @mixin placeholder

  Style form placeholder text
*/
/*
  @mixin styled-select

  https://github.com/filamentgroup/select-css

  Parameters:
  - none
*/
/*------------------------------------------
grid
------------------------------------------*/
/*
  @function colspan

  Returns a calc() that represents a column span

  Parameters:
  $number-of-columns - the number of columns you want to span
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number
  $inverse - if you want to return a negative number (to move things backwards)

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin width

  Returns a width and a calc() to correctly span columns
  with breakpoint selection and optional bump value

  Parameters:
  $number-of-columns - the number of columns you want to span
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin width-multi

  A mix of @mixin width and @mixin column. Pass a map of the number
  of columns to span at each breakpoint. Use when you don't need to
  float on the grid.

  Parameters:
  $colspans - scss map detailing how many design columns this column
  needs to span on each breakpoint. Omitting a breakpoint from the
  map will not set a width at that breakpoint.
  $bump - if you want the colspan + an arbitrary number

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include width-multi($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push

  Returns a margin-left and a calc() to correctly push
  a block a number of columns with breakpoint selection
  and optional bump value

  Parameters:
  $number-of-columns - the number of columns you want to push
  $breakpoint - at which breakpoint
  $bump - if you want the colspan + an arbitrary number

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push-multi

  A mix of @mixin push and @mixin column. Pass a map of the number
  of columns to push at each breakpoint.

  Parameters:
  $colspans - scss map detailing how many design columns this column
  needs to push on each breakpoint. Omitting a breakpoint from the
  map will not set a width at that breakpoint.
  $bump - if you want the colspan + an arbitrary number

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include push-multi($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin push-gutter

  Adds gutter margin to the sides passed to the set breakpoints.
  Defaults to left margin across all breakpoints.

  Parameters:
  $sides - the sides you'd like to apply margin to
  $bps - at which breakpoints

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin columns-container

  Sets up columns container

  Parameters:
  none

  ```scss
    .list-articles {
    @include columns-container;
  }
  ```
*/
/*
  @mixin column

  Sets up single column

  Parameters:
  $colspans - scss map detailing how many design columns this column needs to span on each breakpoint

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include column($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*
  @mixin columns-container-flex

  Sets up columns container - flex version

  Parameters:
  none

  ```scss
  .list-articles {
    @include columns-container-flex;
  }
  ```
*/
/*
  @mixin column-flex

  Sets up single column

  Parameters:
  $colspans - scss map detailing how many design columns this column needs to span on each breakpoint

  ```scss
  $column-spans__list-articles: (
    xsmall: 3,
    small: 3,
    medium: 4,
    large: 4,
    xlarge: 3,
    xxlarge: 3
  );

  .list-articles__item {
    @include column-flex($column-spans__list-articles);
  }
  ```

  NB: only works with breakpoint names, not the +/- variants
*/
/*------------------------------------------
links
------------------------------------------*/
.link--black {
  color: #1a1a1a;
}
.link--black:hover {
  color: #666;
}

.link--grey {
  color: #666;
}
.link--grey:hover {
  color: #404040;
}

.link--muted-blue {
  color: #9fa8da;
}
.link--muted-blue:hover {
  color: #fff;
}

.link--blue {
  color: #1D2954;
}
.link--blue:hover {
  color: #192347;
}

/*------------------------------------------
links
------------------------------------------*/
/*------------------------------------------
typography
------------------------------------------*/
/*
Font setup mixins
Use the serif/sans-serif mixins directly in the SCSS,
 do any responsive overwrites with within the breakpoint mixin e.g.
*/
/*
  @mixin font_smoothing

  Set font smoothing ON or OFF
*/
/*
  @mixin text-underline

  Inserts vendor prefixed box shadows

  Parameters:
  $off - color
  $on - color for hover
  $pos - vertical position
*/
/*
  @mixin hide_text
  Hides text in an element
*/
/*
  @mixin tuck
  Baseline tucks elements
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  font-weight: 400;
  font-size: 100%;
  vertical-align: baseline;
  outline: 0;
  line-height: 1.5;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section,
main {
  display: block;
}

html {
  overflow-y: scroll;
  overflow: -moz-scrollbars-vertical;
  box-sizing: border-box;
  touch-action: manipulation;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

body {
  line-height: 1.2;
}

blockquote,
q {
  quotes: none;
}

ul,
ol {
  list-style: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

.svg-sprite {
  position: absolute;
  z-index: -1;
  left: -1px;
  top: -1px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@-ms-viewport {
  width: device-width;
}
input {
  border-radius: 0;
}

input:focus {
  outline: none;
}

input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  display: none;
}

#cookie-notice a.cn-button {
  background: #FFD53D;
}

h1,
h2,
h3 {
  font-weight: 500;
}

img {
  display: block;
  border: 0 none;
  max-width: 100%;
}
img.centered {
  margin: 0 auto;
}

em,
i {
  font-style: italic;
}

b,
strong {
  font-weight: 500;
}

small {
  font-size: 10px;
  line-height: 15px;
}

a {
  color: inherit;
  border-bottom: none;
  text-decoration: none;
  border-bottom-color: inherit;
}

p a,
figcaption a,
.m-block a {
  border-bottom: solid 1px;
  text-decoration: none;
  color: #1D2954;
}
p a.m-block-accordion__trigger,
figcaption a.m-block-accordion__trigger,
.m-block a.m-block-accordion__trigger {
  border: none;
  color: inherit;
}

p a:hover {
  border-color: #808080;
}

.hide {
  display: none;
}

.js-show {
  display: block;
}

.columns-container::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
input,
button {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none;
}

button {
  cursor: pointer;
}

.center-image {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

abbr {
  text-decoration: none;
}

.page__social-media-container {
  display: flex;
  justify-content: flex-end;
}
.page__social-media-container.border-bottom {
  padding-bottom: 3em;
  border-bottom: 1px solid black;
}

.icon--arrow {
  width: 13px;
  height: 12px;
}

.icon--arrow--left {
  width: 13px;
  height: 12px;
}

.icon--arrow-big {
  width: 16px;
  height: 16px;
}

.icon--cal {
  width: 16px;
  height: 16px;
}

.icon--caret {
  width: 8px;
  height: 4px;
}

.icon--chevron-down {
  width: 24px;
  height: 14px;
}

.icon--chevron-down--small {
  width: 14px;
  height: 9px;
}

.icon--chevron-left {
  width: 10px;
  height: 16px;
}

.icon--chevron-left--large {
  width: 14.1px;
  height: 26.7px;
}

.icon--chevron-right {
  width: 10px;
  height: 16px;
}

.icon--chevron-right--large {
  width: 14.1px;
  height: 26.7px;
}

.icon--chevron-up {
  width: 24px;
  height: 14px;
}

.icon--cross {
  width: 14px;
  height: 14px;
}

.icon--cross--large {
  width: 17px;
  height: 17px;
}

.icon--email {
  width: 16px;
  height: 16px;
}

.icon--error {
  width: 8.7px;
  height: 8.7px;
}

.icon--external {
  width: 16px;
  height: 16px;
}

.icon--facebook {
  width: 18px;
  height: 18px;
}

.icon--flatiron-logo {
  width: 230px;
  height: 57px;
}

.icon--flatiron-logo--branded {
  width: 275px;
  height: 67px;
}

.icon--flatiron_horizontal {
  width: 219.7px;
  height: 12px;
}

.icon--forward {
  width: 16px;
  height: 16px;
}

.icon--geo {
  width: 12px;
  height: 16px;
}

.icon--hamburger {
  width: 16px;
  height: 12px;
}

.icon--i {
  width: 5px;
  height: 14px;
}

.icon--linkedin {
  width: 16px;
  height: 14.55px;
}

.icon--lock {
  width: 12px;
  height: 16px;
}

.icon--logo {
  width: 312px;
  height: 18px;
}

.icon--logo-2 {
  width: 221px;
  height: 12px;
}

.icon--logo-sfari {
  width: 406px;
  height: 50.3px;
}

.icon--logo-sfari-no-text {
  width: 147px;
  height: 47.2px;
}

.icon--logo-small {
  width: 27px;
  height: 18px;
}

.icon--long-arrow--left {
  width: 33px;
  height: 16px;
}

.icon--long-arrow--right {
  width: 33.1px;
  height: 16px;
}

.icon--minus--large {
  width: 16px;
  height: 2px;
}

.icon--nav-facebook {
  width: 18px;
  height: 18px;
}

.icon--nav-instagram {
  width: 18px;
  height: 18px;
}

.icon--nav-twitter {
  width: 19px;
  height: 15.8px;
}

.icon--nav-youtube {
  width: 22px;
  height: 15.6px;
}

.icon--play {
  width: 64px;
  height: 64px;
}

.icon--play-round {
  width: 20px;
  height: 20px;
}

.icon--plus {
  width: 12px;
  height: 12px;
}

.icon--plus--large {
  width: 16px;
  height: 16px;
}

.icon--print {
  width: 16px;
  height: 16px;
}

.icon--proposal-central {
  width: 275px;
  height: 28.7px;
}

.icon--reddit {
  width: 18px;
  height: 15px;
}

.icon--rss {
  width: 17px;
  height: 17px;
}

.icon--sam {
  width: 277px;
  height: 59px;
}

#tab-how-to-apply .icon--sam {
  width: 254px;
  max-width: 100%;
  margin-top: 8px;
}
@media screen and (min-width: 650px) {
  #tab-how-to-apply .icon--sam {
    height: 35px;
  }
}

.icon--search {
  width: 18px;
  height: 18px;
}

.icon--sharethis {
  width: 16px;
  height: 20px;
}

.icon--success {
  width: 11.7px;
  height: 9.1px;
}

.icon--twitter {
  width: 18px;
  height: 18px;
}

.sf.icon--external {
  margin-left: 0.625rem;
  color: #808080;
}

/*
@font-face {
  font-family: Graphik;
  src: url('/app/themes/wyss-institute/assets/fonts/Graphik-Bold-Web.eot');
  src: url('/app/themes/wyss-institute/assets/fonts/Graphik-Bold-Web.eot?#iefix') format('embedded-opentype'),
       url('/app/themes/wyss-institute/assets/fonts/Graphik-Bold-Web.woff2') format('woff2'),
       url('/app/themes/wyss-institute/assets/fonts/Graphik-Bold-Web.woff') format('woff');
}
*/
@font-face {
  font-family: "Univers Next W01";
  src: url("../fonts/63aa74f9-a724-4074-85c7-4167c0448227.eot?#iefix");
  src: url("../fonts/63aa74f9-a724-4074-85c7-4167c0448227.eot?#iefix") format("eot"), url("../fonts/97c0f83d-39ac-412b-9d8a-d98208c0ce8d.woff2") format("woff2"), url("../fonts/fc09acb4-f628-4ba0-b648-d2ca30265b20.woff") format("woff"), url("../fonts/3cb4004c-2eea-45d4-a0b5-7af6f817c451.ttf") format("truetype"), url("../fonts/4d6ce461-aa11-472f-af6d-7466479534e1.svg#4d6ce461-aa11-472f-af6d-7466479534e1") format("svg");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Univers Next W01";
  src: url("../fonts/8c7fe4ab-375c-4be5-bba8-2c4d83ac807a.eot?#iefix");
  src: url("../fonts/8c7fe4ab-375c-4be5-bba8-2c4d83ac807a.eot?#iefix") format("eot"), url("../fonts/b37595d7-d2c2-465d-81bd-f5bc289fc565.woff2") format("woff2"), url("../fonts/88e0673d-3db0-4931-ae03-8a4a6eb1bbe6.woff") format("woff"), url("../fonts/957860fc-f472-47cc-afcb-6305b3455894.ttf") format("truetype"), url("../fonts/739dd5f9-b50a-4700-bb3d-77ab01a96697.svg#739dd5f9-b50a-4700-bb3d-77ab01a96697") format("svg");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Univers Next W01";
  src: url("../fonts/07e1641d-6281-4461-827c-f3940fa0d811.eot?#iefix");
  src: url("../fonts/07e1641d-6281-4461-827c-f3940fa0d811.eot?#iefix") format("eot"), url("../fonts/e8921ecc-af32-4c3d-9636-dd82b4225e40.woff2") format("woff2"), url("../fonts/20f7bd07-85c9-4687-ab29-0b87584842ff.woff") format("woff"), url("../fonts/2df6d56e-7f31-4175-88df-47d374d8bb60.ttf") format("truetype"), url("../fonts/9ca9081d-10de-4848-b53a-40ceaa62b2b2.svg#9ca9081d-10de-4848-b53a-40ceaa62b2b2") format("svg");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Univers Next W01";
  src: url("../fonts/7af2167c-efe7-44d7-b2e1-6fdeeaa927c9.eot?#iefix");
  src: url("../fonts/7af2167c-efe7-44d7-b2e1-6fdeeaa927c9.eot?#iefix") format("eot"), url("../fonts/8e26dc86-9708-4a36-89fb-a4416a5b9f5c.woff2") format("woff2"), url("../fonts/c3b66848-d40c-458a-a977-7398cb9c1c82.woff") format("woff"), url("../fonts/ea870cc2-efce-428c-af01-d00573ee4b0e.ttf") format("truetype"), url("../fonts/650a08a0-413e-47e4-a083-617a54b35ab0.svg#650a08a0-413e-47e4-a083-617a54b35ab0") format("svg");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Univers Next W01";
  src: url("../fonts/365d926e-03e5-4406-a883-fd0f9e462339.eot?#iefix");
  src: url("../fonts/365d926e-03e5-4406-a883-fd0f9e462339.eot?#iefix") format("eot"), url("../fonts/043eef6e-81ef-483c-831c-7bfd6628554b.woff2") format("woff2"), url("../fonts/7b11912a-986d-462e-b88a-4a1758eb23f1.woff") format("woff"), url("../fonts/545a8d94-3389-418c-9b0a-bfc16d1f8285.ttf") format("truetype"), url("../fonts/f499fe08-3b8d-4033-a5cf-9089676d1ca5.svg#f499fe08-3b8d-4033-a5cf-9089676d1ca5") format("svg");
  font-weight: 700;
  font-style: italic;
}
sup,
sub {
  display: inline-block;
  padding: 0px;
  font-size: 0.8em;
}
sup a:hover,
sub a:hover {
  color: #1D2954;
}

sup {
  vertical-align: super;
}

sub {
  vertical-align: sub;
}

.typo-h0 {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -1px;
}
.js-sans-loaded .typo-h0 {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .typo-h0 {
    font-size: 32px;
    line-height: 37px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .typo-h0 {
    font-size: 42px;
    line-height: 47px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (min-width: 1160px) {
  .typo-h0 {
    font-size: 48px;
    line-height: 53px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.typo-h1,
.o-area-header--only-title .o-area-header__title {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}
.js-sans-loaded .typo-h1,
.js-sans-loaded .o-area-header--only-title .o-area-header__title,
.o-area-header--only-title .js-sans-loaded .o-area-header__title {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .typo-h1,
  .o-area-header--only-title .o-area-header__title {
    font-size: 30px;
    line-height: 35px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.015em;
  }
}
@media screen and (min-width: 980px) {
  .typo-h1,
  .o-area-header--only-title .o-area-header__title {
    font-size: 36px;
    line-height: 40px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.95px;
  }
}
@media screen and (min-width: 1160px) {
  .typo-h1,
  .o-area-header--only-title .o-area-header__title {
    font-size: 48px;
    line-height: 55px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -1.5px;
  }
}

.typo-h2 {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 30px;
  line-height: 35px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .typo-h2 {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 980px) {
  .typo-h2 {
    font-size: 36px;
    line-height: 40px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (min-width: 1160px) {
  .typo-h2 {
    font-size: 42px;
    line-height: 46px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.typo-h3,
.m-module-header__subtitle,
.m-module-header__title {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}
.js-sans-loaded .typo-h3,
.js-sans-loaded .m-module-header__subtitle,
.js-sans-loaded .m-module-header__title {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 1160px) {
  .typo-h3,
  .m-module-header__subtitle,
  .m-module-header__title {
    font-size: 30px;
    line-height: 35px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.015em;
  }
}

.typo-h4,
.m-post__title {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .typo-h4,
.js-sans-loaded .m-post__title {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) {
  .typo-h4,
  .m-post__title {
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .js-sans-loaded .typo-h4,
  .js-sans-loaded .m-post__title {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}
@media screen and (min-width: 1160px) {
  .typo-h4,
  .m-post__title {
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .js-sans-loaded .typo-h4,
  .js-sans-loaded .m-post__title {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}

.typo-meta {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 25px;
  font-weight: 300;
}
.js-sans-loaded .typo-meta {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.typo-meta-2,
.m-post__cat {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
.js-sans-loaded .typo-meta-2,
.js-sans-loaded .m-post__cat {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.typo-caption,
.m-module-header__aside,
.m-post__meta,
.m-block-video figcaption,
.m-block-text figcaption {
  color: #666;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
.js-sans-loaded .typo-caption,
.js-sans-loaded .m-module-header__aside,
.js-sans-loaded .m-post__meta,
.js-sans-loaded .m-block-video figcaption,
.m-block-video .js-sans-loaded figcaption,
.js-sans-loaded .m-block-text figcaption,
.m-block-text .js-sans-loaded figcaption {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.typo-body--large {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .typo-body--large {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 980px) {
  .typo-body--large {
    font-size: 24px;
    line-height: 30px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.typo-body,
.m-block-text {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
.js-sans-loaded .typo-body,
.js-sans-loaded .m-block-text {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 1160px) {
  .typo-body,
  .m-block-text {
    font-size: 18px;
    line-height: 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

@media screen and (max-width: 413px) {
  .hide\@xsmall {
    display: none !important;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .hide\@small {
    display: none !important;
  }
}
@media screen and (min-width: 414px) {
  .hide\@small\+ {
    display: none !important;
  }
}
@media screen and (max-width: 649px) {
  .hide\@small- {
    display: none !important;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .hide\@medium {
    display: none !important;
  }
}
@media screen and (min-width: 650px) {
  .hide\@medium\+ {
    display: none !important;
  }
}
@media screen and (max-width: 979px) {
  .hide\@medium- {
    display: none !important;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .hide\@large {
    display: none !important;
  }
}
@media screen and (min-width: 980px) {
  .hide\@large\+ {
    display: none !important;
  }
}
@media screen and (max-width: 1159px) {
  .hide\@large- {
    display: none !important;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .hide\@xlarge {
    display: none !important;
  }
}
@media screen and (min-width: 1160px) {
  .hide\@xlarge\+ {
    display: none !important;
  }
}
@media screen and (max-width: 1299px) {
  .hide\@xlarge- {
    display: none !important;
  }
}
@media screen and (min-width: 1300px) {
  .hide\@xxlarge {
    display: none !important;
  }
}
.cf::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(100%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.font-15 {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .font-15 {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.font-1125 {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 35px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .font-1125 {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

@media screen and (max-width: 649px) {
  .font-1125-sm {
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 18px;
    line-height: 35px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .js-sans-loaded .font-1125-sm {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}

.font-09 {
  font-size: 0.9375rem;
}

.font-1-125 {
  font-size: 1.125rem;
  line-height: 1.4;
}

@media screen and (max-width: 979px) {
  .font-09-medium {
    font-size: 0.9375rem;
    line-height: 1.33;
  }
}

@media screen and (max-width: 649px) {
  .font-09-sm {
    font-size: 0.9375rem;
  }
}

.font-1-25 {
  font-size: 1.25rem;
  line-height: 1.25;
}

@media screen and (min-width: 1160px) {
  .font-1-5-xl {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

@media screen and (min-width: 1160px) {
  .font-1-25-xl {
    font-size: 1.25rem;
    line-height: 1.25;
  }
}

.font-wt-300 {
  font-weight: 300;
}

.font-wt-500 {
  font-weight: 500;
}

.text-underline {
  text-decoration: underline;
}

.line-height-1 {
  line-height: 1;
}

.w-100 {
  width: 100%;
}

.mbd-3_mbm-18 {
  margin-bottom: 3rem;
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .mbd-3_mbm-18 {
    margin-bottom: 1.875rem;
  }
}

.mvd-375_mvm-3 {
  margin: 3.75rem 0;
}
@media screen and (max-width: 979px) {
  .mvd-375_mvm-3 {
    margin: 3rem 0;
  }
}

@media screen and (max-width: 649px) {
  .mb-1-8-s- {
    margin-bottom: 1.88rem;
  }
}

.mv-1 {
  margin: 1rem 0;
}

@media screen and (max-width: 649px) {
  .mx-auto-s- {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 414px) and (max-width: 649px) {
  .pt-0-s {
    padding-top: 0;
  }
}

.pt-18 {
  padding-top: 1.875rem;
}

.pb-075 {
  padding-bottom: 0.75rem;
}

@media screen and (min-width: 980px) {
  .pt-075-l {
    padding-top: 0.75rem;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .pt-1-5-m {
    padding-top: 1.5rem;
  }
}

.pt-2-31 {
  padding-top: 2.31rem;
}

@media screen and (min-width: 650px) {
  .pt-3-25-m {
    padding-top: 3.25rem;
  }
}

@media screen and (min-width: 1160px) {
  .pt-3-63-xl {
    padding-top: 3.63rem;
  }
}

.bt-black--15 {
  border-top: 1px solid #d9d9d9;
}

.bb-black--15 {
  border-bottom: 1px solid #d9d9d9;
}

.bb-none,
.o-group-list .m-post.bb-none {
  border-bottom: none;
}

.mt-0,
.o-group-list.mt-0 {
  margin-top: 0;
}

.mt-2-3 {
  margin-top: 2.3rem;
}

@media screen and (max-width: 979px) {
  .mt-1-5-m {
    margin-top: 1.5rem;
  }
}

.mb-0 {
  margin-bottom: 0;
}

.mb-0-75 {
  margin-bottom: 0.75rem;
}

.mb-15 {
  margin-bottom: 1.5rem;
}

.mb-31875 {
  margin-bottom: 3.1875rem;
}

.mb-475 {
  margin-bottom: 4.75rem;
}

@media screen and (min-width: 650px) {
  .mb-1-25-med {
    margin-bottom: 1.25rem;
  }
}

@media screen and (max-width: 979px) {
  .mb-375-med {
    margin-bottom: 3.75rem;
  }
}

@media screen and (max-width: 649px) {
  .mb-3125-sm {
    margin-bottom: 3.125rem;
  }
}

.mr-15 {
  margin-right: 1.5rem;
}

@media screen and (min-width: 1300px) {
  .mr-11-xxl {
    margin-right: 11rem;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .mr-0-87-m {
    margin-right: 0.87rem;
  }
}

@media screen and (min-width: 980px) and (max-width: 1159px) {
  .mr-3-69-l {
    margin-right: 3.69rem;
  }
}

@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .mr-1-62-xl {
    margin-right: 1.62rem;
  }
}

.nowrap {
  white-space: nowrap;
}

.clear-b {
  clear: both;
}

.show-l {
  display: none;
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .show-l {
    display: block;
  }
}

.flex {
  display: flex;
}

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

.column-reverse {
  flex-direction: column-reverse;
}

@media screen and (max-width: 649px) {
  .column-s- {
    flex-direction: column;
  }
}

.gap-1 {
  gap: 1rem;
}

.btn-white {
  display: inline-block;
  padding: 0.94rem 2.25rem 0.75rem;
  border: 1px solid white;
  background: none;
  color: #e8eaf6;
  border-radius: 2px;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 30px;
  font-weight: 300;
  cursor: pointer;
}
.js-sans-loaded .btn-white {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
.btn-white:hover {
  background-color: #fff;
  color: #1D2954;
}
@media screen and (max-width: 1159px) {
  .btn-white {
    padding: 0.69rem 2.25rem;
  }
}

@media screen and (min-width: 1160px) {
  .w-29-xl {
    width: 29rem;
    height: 29rem;
  }
}

@media screen and (min-width: 980px) and (max-width: 1159px) {
  .w-21-5-l {
    width: 21.5rem;
    height: 21.5rem;
  }
}

@media screen and (max-width: 979px) {
  .w-18-m- {
    width: 18rem;
    height: 18rem;
  }
}

@media screen and (min-width: 1160px) {
  .max-w-33-75-xl {
    max-width: 33.75rem;
  }
}

@media screen and (min-width: 980px) and (max-width: 1159px) {
  .max-w-29-3-l {
    max-width: 29.375rem;
  }
}

@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .max-w-64-37-xl {
    max-width: 64.37rem;
  }
}

.container,
html:not(.js-header-context-active) .g-header__inner,
#a17,
.g-nav-mobile__autocomplete,
.g-nav-mobile__subnav,
.g-nav-mobile__inner,
.g-context-nav .g-subnav,
.g-nav {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 413px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  #a17,
  .g-nav-mobile__autocomplete,
  .g-nav-mobile__subnav,
  .g-nav-mobile__inner,
  .g-context-nav .g-subnav,
  .g-nav {
    padding-right: 15px;
    padding-left: 15px;
    width: auto;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  #a17,
  .g-nav-mobile__autocomplete,
  .g-nav-mobile__subnav,
  .g-nav-mobile__inner,
  .g-context-nav .g-subnav,
  .g-nav {
    padding-right: 30px;
    padding-left: 30px;
    width: auto;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  #a17,
  .g-nav-mobile__autocomplete,
  .g-nav-mobile__subnav,
  .g-nav-mobile__inner,
  .g-context-nav .g-subnav,
  .g-nav {
    padding-right: 38px;
    padding-left: 38px;
    width: auto;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  #a17,
  .g-nav-mobile__autocomplete,
  .g-nav-mobile__subnav,
  .g-nav-mobile__inner,
  .g-context-nav .g-subnav,
  .g-nav {
    padding-right: 47px;
    padding-left: 47px;
    width: auto;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  #a17,
  .g-nav-mobile__autocomplete,
  .g-nav-mobile__subnav,
  .g-nav-mobile__inner,
  .g-context-nav .g-subnav,
  .g-nav {
    padding-right: 40px;
    padding-left: 40px;
    width: auto;
  }
}
@media screen and (min-width: 1300px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  #a17,
  .g-nav-mobile__autocomplete,
  .g-nav-mobile__subnav,
  .g-nav-mobile__inner,
  .g-context-nav .g-subnav,
  .g-nav {
    padding-right: 40px;
    padding-left: 40px;
    width: 100%;
    max-width: 1300px;
  }
}

.btn {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 50px;
  font-weight: 300;
  display: block;
  padding: 0px 20px;
  border: 0;
  background-color: #1D2954;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  cursor: pointer;
  border-radius: 2px;
  -webkit-appearance: none;
  transition: all 0.25s;
}
.js-sans-loaded .btn {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) {
  .btn {
    display: inline-block;
  }
}
@media screen and (min-width: 1160px) {
  .btn {
    line-height: 55px;
  }
}
.btn .icon {
  vertical-align: middle;
}
.btn .icon--play-round {
  margin-left: 2px;
}
.btn .icon--arrow:first-child {
  margin-left: -15px;
  margin-right: 5px;
}
.btn .icon--arrow:last-child {
  margin-left: 5px;
  margin-right: -15px;
}
.btn:hover {
  background-color: #192347;
}
.btn.btn--disabled, .btn.js--loading {
  background-color: #d9d9d9;
  color: #666;
  pointer-events: none;
}
.btn.js--loading {
  color: #d9d9d9;
}
.btn.js--loading::before {
  top: 13px;
  border-top-color: #808080;
}
.btn.inactive1 {
  opacity: 0.5;
  text-transform: capitalize;
  pointer-events: none;
  cursor: not-allowed;
}

.btn--block {
  display: block;
}

.btn--wide {
  font-size: 20px;
  font-weight: 500;
  padding-right: 40px;
  padding-left: 40px;
}
.btn--wide.btn--wide--right {
  margin-right: 24px;
}
.btn--wide.btn--wide--right-no-margin {
  margin-right: 0;
}

.btn--outline {
  border: 1px solid;
  background-color: transparent;
  color: inherit;
}
.btn--outline:hover {
  background-color: transparent;
}

.btn--outline--grey {
  border: 1px solid #d9d9d9;
  background-color: transparent;
  color: #666;
}
.btn--outline--grey .icon {
  color: #808080;
}
.btn--outline--grey:hover {
  background-color: #f6f6f6;
}

.btn--small {
  padding-right: 15px;
  padding-left: 15px;
  line-height: 43px;
}

.btn--small .icon {
  margin-top: -6px;
  margin-right: 5px;
}

.lds-ring {
  display: block;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 999;
}

.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: fixed;
  width: 64px;
  height: 64px;
  border: 8px solid #1D2954;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #1D2954 transparent transparent transparent;
  top: 40%;
  left: 45%;
  transform: translate(-50%, -50%);
}

.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}

.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}

.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}

@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.o-strip, .sf-module-container > .o-strip {
  margin-top: 0px;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  position: relative;
  background-color: var(--header-background, #FFD53D);
  color: var(--header-color, #403002);
  background-repeat: no-repeat;
  background-size: inherit;
  background-position-x: 25%;
}
.o-strip::after, .sf-module-container > .o-strip::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.o-strip::before, .sf-module-container > .o-strip::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -15px;
  right: -15px;
  top: 0;
  bottom: 0;
  background-color: inherit;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-strip::before, .sf-module-container > .o-strip::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip::before, .sf-module-container > .o-strip::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-strip::before, .sf-module-container > .o-strip::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-strip::before, .sf-module-container > .o-strip::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-strip::before, .sf-module-container > .o-strip::before {
    left: -99em;
    right: -99em;
  }
}
@media screen and (min-width: 650px) {
  .o-strip, .sf-module-container > .o-strip {
    display: flex;
    align-items: center;
    flex-flow: row wrap;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip, .sf-module-container > .o-strip {
    padding-top: 45px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-strip, .sf-module-container > .o-strip {
    padding-top: 42px;
    padding-bottom: 38px;
  }
}
@media screen and (min-width: 1160px) {
  .o-strip, .sf-module-container > .o-strip {
    padding-top: 71px;
    padding-bottom: 71px;
  }
  .o-strip.mps, .sf-module-container > .o-strip.mps {
    padding-top: 55px;
    padding-bottom: 55px;
  }
}
.o-strip.mps, .sf-module-container > .o-strip.mps {
  background: #1D2954;
  color: #fff;
}
.o-strip.sfari-strip-white, .sf-module-container > .o-strip.sfari-strip-white {
  background-color: transparent;
  padding-top: 17px;
  padding-bottom: 10px;
}
.o-strip.gray, .sf-module-container > .o-strip.gray {
  background: #636363;
  color: #eeeeee;
}
.o-strip.gray a:hover, .sf-module-container > .o-strip.gray a:hover {
  color: #fff;
}
.o-strip.gray .btn--outline, .sf-module-container > .o-strip.gray .btn--outline {
  border-color: #fff;
}
.o-strip.gray .btn--outline svg, .sf-module-container > .o-strip.gray .btn--outline svg {
  color: #fff;
}
.o-strip.gray .btn--outline:hover, .sf-module-container > .o-strip.gray .btn--outline:hover {
  background: #fff;
  color: #636363;
}
.o-strip.gray .btn--outline:hover svg, .sf-module-container > .o-strip.gray .btn--outline:hover svg {
  color: #636363;
}
.o-strip.banner, .sf-module-container > .o-strip.banner {
  color: #eeeeee;
}
.o-strip.banner a:hover, .sf-module-container > .o-strip.banner a:hover {
  color: #fff;
}
.o-strip.banner .btn--outline, .sf-module-container > .o-strip.banner .btn--outline {
  border-color: #fff;
}
.o-strip.banner .btn--outline svg, .sf-module-container > .o-strip.banner .btn--outline svg {
  color: #fff;
}
.o-strip.banner .btn--outline:hover, .sf-module-container > .o-strip.banner .btn--outline:hover {
  background: #fff;
}
.center-for-computational-astrophysics .o-strip.banner, .s-area-center-for-computational-astrophysics .o-strip.banner, .center-for-computational-astrophysics .sf-module-container > .o-strip.banner, .s-area-center-for-computational-astrophysics .sf-module-container > .o-strip.banner {
  background-color: #ce3232;
}
.center-for-computational-astrophysics .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-astrophysics .o-strip.banner .btn--outline:hover, .center-for-computational-astrophysics .sf-module-container > .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-astrophysics .sf-module-container > .o-strip.banner .btn--outline:hover {
  color: #ce3232;
}
.center-for-computational-astrophysics .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-astrophysics .o-strip.banner .btn--outline:hover svg, .center-for-computational-astrophysics .sf-module-container > .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-astrophysics .sf-module-container > .o-strip.banner .btn--outline:hover svg {
  color: #ce3232;
}
.center-for-computational-biology .o-strip.banner, .s-area-center-for-computational-biology .o-strip.banner, .center-for-computational-biology .sf-module-container > .o-strip.banner, .s-area-center-for-computational-biology .sf-module-container > .o-strip.banner {
  background-color: #81ad4a;
}
.center-for-computational-biology .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-biology .o-strip.banner .btn--outline:hover, .center-for-computational-biology .sf-module-container > .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-biology .sf-module-container > .o-strip.banner .btn--outline:hover {
  color: #81ad4a;
}
.center-for-computational-biology .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-biology .o-strip.banner .btn--outline:hover svg, .center-for-computational-biology .sf-module-container > .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-biology .sf-module-container > .o-strip.banner .btn--outline:hover svg {
  color: #81ad4a;
}
.center-for-computational-mathematics .o-strip.banner, .s-area-center-for-computational-mathematics .o-strip.banner, .center-for-computational-mathematics .sf-module-container > .o-strip.banner, .s-area-center-for-computational-mathematics .sf-module-container > .o-strip.banner {
  background-color: #f6862d;
}
.center-for-computational-mathematics .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-mathematics .o-strip.banner .btn--outline:hover, .center-for-computational-mathematics .sf-module-container > .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-mathematics .sf-module-container > .o-strip.banner .btn--outline:hover {
  color: #f6862d;
}
.center-for-computational-mathematics .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-mathematics .o-strip.banner .btn--outline:hover svg, .center-for-computational-mathematics .sf-module-container > .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-mathematics .sf-module-container > .o-strip.banner .btn--outline:hover svg {
  color: #f6862d;
}
.center-for-computational-neuroscience .o-strip.banner, .s-area-center-for-computational-neuroscience .o-strip.banner, .center-for-computational-neuroscience .sf-module-container > .o-strip.banner, .s-area-center-for-computational-neuroscience .sf-module-container > .o-strip.banner {
  background-color: #007c98;
}
.center-for-computational-neuroscience .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-neuroscience .o-strip.banner .btn--outline:hover, .center-for-computational-neuroscience .sf-module-container > .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-neuroscience .sf-module-container > .o-strip.banner .btn--outline:hover {
  color: #007c98;
}
.center-for-computational-neuroscience .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-neuroscience .o-strip.banner .btn--outline:hover svg, .center-for-computational-neuroscience .sf-module-container > .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-neuroscience .sf-module-container > .o-strip.banner .btn--outline:hover svg {
  color: #007c98;
}
.center-for-computational-quantum-physics .o-strip.banner, .s-area-center-for-computational-quantum-physics .o-strip.banner, .center-for-computational-quantum-physics .sf-module-container > .o-strip.banner, .s-area-center-for-computational-quantum-physics .sf-module-container > .o-strip.banner {
  background-color: #855b8e;
}
.center-for-computational-quantum-physics .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-quantum-physics .o-strip.banner .btn--outline:hover, .center-for-computational-quantum-physics .sf-module-container > .o-strip.banner .btn--outline:hover, .s-area-center-for-computational-quantum-physics .sf-module-container > .o-strip.banner .btn--outline:hover {
  color: #855b8e;
}
.center-for-computational-quantum-physics .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-quantum-physics .o-strip.banner .btn--outline:hover svg, .center-for-computational-quantum-physics .sf-module-container > .o-strip.banner .btn--outline:hover svg, .s-area-center-for-computational-quantum-physics .sf-module-container > .o-strip.banner .btn--outline:hover svg {
  color: #855b8e;
}
.o-strip.no-desc, .sf-module-container > .o-strip.no-desc {
  justify-content: space-between;
}
.o-strip.no-desc::after, .sf-module-container > .o-strip.no-desc::after {
  content: none;
}
.o-strip p, .sf-module-container > .o-strip p {
  font-size: 24px;
  text-align: center;
}

.sf-module-container > .o-strip {
  justify-content: center;
}

@media screen and (min-width: 1160px) {
  .o-strip--tight {
    margin-top: 60px;
  }
}

.o-strip--snug {
  margin-top: 0;
}
.o-strip--snug.no-desc {
  margin-top: 0;
  padding-left: 40px;
}

.sfari-strip-white-divider {
  height: 1px;
  background-color: #d9d9d9;
  border: none;
}
.sfari-strip-white-divider.bottom {
  margin-top: 2.75rem;
}

.o-strip__header {
  float: none;
}

.o-strip__content {
  float: none;
  margin-top: 23px;
  margin-left: 0 !important;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
@media screen and (max-width: 413px) {
  .o-strip__content {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-strip__content {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip__content {
    float: left;
    width: calc((((100vw - 406px) / 12) * 5) + 120px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-strip__content {
    float: left;
    width: calc((((100vw - 424px) / 12) * 5) + 120px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-strip__content {
    float: left;
    width: calc((((100vw - 520px) / 12) * 5) + 160px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-strip__content {
    float: left;
    width: 485px;
    margin-left: 40px;
  }
}
.js-sans-loaded .o-strip__content {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) {
  .o-strip__content {
    margin-top: 0;
  }
}
@media screen and (min-width: 980px) {
  .o-strip__content {
    font-size: 18px;
    line-height: 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.o-strip__content.mps input[type=email] {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: none;
  color: #fff;
  font-weight: 300;
}
.o-strip__content.mps input[type=email]::-webkit-input-placeholder {
  color: #fff;
}
.o-strip__content.mps input[type=email]:-moz-placeholder {
  color: #fff;
}
.o-strip__content.mps input[type=email]::-moz-placeholder {
  color: #fff;
}
.o-strip__content.mps input[type=email]:-ms-input-placeholder {
  color: #fff;
}

.o-strip__content form {
  position: relative;
}
@media screen and (min-width: 414px) {
  .o-strip__content form.sfari-strip-white-form {
    width: 102%;
  }
}

.o-strip__content input[type=email] {
  width: 100%;
  padding: 0 20px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  background: none;
  color: #806104;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 53px;
}
.js-sans-loaded .o-strip__content input[type=email] {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
.o-strip__content input[type=email]::-webkit-input-placeholder {
  color: #806104;
}
.o-strip__content input[type=email]:-moz-placeholder {
  color: #806104;
}
.o-strip__content input[type=email]::-moz-placeholder {
  color: #806104;
}
.o-strip__content input[type=email]:-ms-input-placeholder {
  color: #806104;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip__content input[type=email] {
    line-height: 48px;
  }
}
@media screen and (min-width: 980px) {
  .o-strip__content input[type=email] {
    line-height: 58px;
  }
}
.o-strip__content input[type=email].sfari-strip-white-input {
  width: 70%;
  line-height: 55px;
  padding-left: 21px;
  border: 1px solid #d9d9d9;
}
.o-strip__content input[type=email].sfari-strip-white-input::-webkit-input-placeholder {
  color: #1a1a1a;
}
.o-strip__content input[type=email].sfari-strip-white-input:-moz-placeholder {
  color: #1a1a1a;
}
.o-strip__content input[type=email].sfari-strip-white-input::-moz-placeholder {
  color: #1a1a1a;
}
.o-strip__content input[type=email].sfari-strip-white-input:-ms-input-placeholder {
  color: #1a1a1a;
}
@media screen and (max-width: 979px) {
  .o-strip__content input[type=email].sfari-strip-white-input {
    width: 73%;
  }
}
@media screen and (max-width: 649px) {
  .o-strip__content input[type=email].sfari-strip-white-input {
    width: 80%;
  }
}

.o-strip__content button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 10px;
  border: 1px solid transparent;
  background: none;
  color: #806104;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 53px;
  cursor: pointer;
}
.js-sans-loaded .o-strip__content button {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
.o-strip__content button.mps {
  color: white;
  border-left-color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}
.o-strip__content button.mps:hover {
  background-color: #fff;
  color: #1D2954;
}
.o-strip__content button.sfari-strip-white-button {
  width: 27%;
  line-height: 55px;
  background-color: #1D2954;
  color: #fff;
  border: none;
}
.o-strip__content button.sfari-strip-white-button:hover {
  background-color: #192347;
  color: #fff;
}
@media screen and (max-width: 979px) {
  .o-strip__content button.sfari-strip-white-button {
    width: 25%;
  }
}
@media screen and (max-width: 649px) {
  .o-strip__content button.sfari-strip-white-button {
    width: 13%;
  }
}
@media screen and (min-width: 650px) {
  .o-strip__content button {
    border-left-color: rgba(0, 0, 0, 0.5);
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip__content button {
    width: 110px;
    line-height: 48px;
  }
}
@media screen and (min-width: 980px) {
  .o-strip__content button {
    width: 170px;
    line-height: 58px;
  }
}
.o-strip__content button .icon {
  position: relative;
  top: 5px;
  width: 18px;
  height: 17px;
}
.o-strip__content button.sfari:hover {
  background-color: #1D2954;
  color: #fff;
}
.o-strip__content button.sfari-strip-white {
  background-color: #1D2954;
  color: #fff;
  border: none;
}
.o-strip__content button.sfari-strip-white:hover {
  background-color: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.o-strip__btn-wrapper {
  float: none;
  margin-top: 24px;
}
@media screen and (max-width: 413px) {
  .o-strip__btn-wrapper {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-strip__btn-wrapper {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip__btn-wrapper {
    float: left;
    width: calc((((100vw - 406px) / 12) * 4) + 90px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-strip__btn-wrapper {
    float: left;
    width: calc((((100vw - 424px) / 12) * 4) + 90px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-strip__btn-wrapper {
    float: left;
    width: calc((((100vw - 520px) / 12) * 3) + 80px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-strip__btn-wrapper {
    float: left;
    width: 275px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) {
  .o-strip__btn-wrapper {
    margin-top: 0;
  }
}

.o-strip__btn-wrapper .btn--outline {
  border-color: #806104;
}
.o-strip__btn-wrapper .btn--outline:hover {
  background-color: #1D2954;
  color: #fff;
  border-color: #1D2954;
}
.o-strip__btn-wrapper .btn--outline:hover svg {
  color: #fff;
}

.o-strip__btn-wrapper .btn--outline svg {
  transition: 0.4s;
  color: #806104;
}

.o-strip__title {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
}
.js-sans-loaded .o-strip__title {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) {
  .o-strip__title {
    text-align: left;
  }
}
@media screen and (min-width: 1160px) {
  .o-strip__title {
    font-size: 30px;
    line-height: 30px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.o-strip__title.sfari-strip-white-title {
  color: #1a1a1a;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .o-strip__title.sfari-strip-white-title {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip--2col .o-strip__header {
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-strip--2col .o-strip__header {
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-strip--2col .o-strip__header {
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
  }
}
@media screen and (min-width: 1300px) {
  .o-strip--2col .o-strip__header {
    width: 590px;
  }
}
.o-strip--2col .o-strip__header.sfari-strip-white-head {
  width: 40%;
}
@media screen and (max-width: 979px) {
  .o-strip--2col .o-strip__header.sfari-strip-white-head {
    width: 85%;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip--2col .o-strip__content {
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-strip--2col .o-strip__content {
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-strip--2col .o-strip__content {
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
  }
}
@media screen and (min-width: 1300px) {
  .o-strip--2col .o-strip__content {
    width: 590px;
  }
}
.o-strip--2col .o-strip__content.sfari-strip-white-content {
  width: 52%;
}
@media screen and (max-width: 979px) {
  .o-strip--2col .o-strip__content.sfari-strip-white-content {
    width: 80%;
    padding-top: 3%;
  }
}
@media screen and (max-width: 649px) {
  .o-strip--2col .o-strip__content.sfari-strip-white-content {
    width: 95%;
  }
}

@media screen and (min-width: 980px) {
  .o-strip--after-2collist {
    margin-top: 5px;
  }
}

.export-button-wrapper {
  margin: 33px 0 0;
}
.export-button-wrapper button {
  margin: 0;
  width: 100%;
}
.export-button-wrapper button:hover {
  background-color: #1D2954;
  color: #fff;
  border-color: #1D2954;
}
.export-button-wrapper .export-fine-print,
.export-button-wrapper .error-message {
  font-size: 15px;
  line-height: 1;
  margin-top: 25px;
}
.export-button-wrapper .error-message {
  display: none;
}
.export-button-wrapper .error-message.active {
  display: block;
  color: #ee263e;
}

.m-bg-stripe {
  position: relative;
  padding-top: 57px;
}
.m-bg-stripe::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -15px;
  right: -15px;
  top: 0;
  bottom: 0;
  background-color: inherit;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-bg-stripe::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-bg-stripe::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-bg-stripe::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-bg-stripe::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .m-bg-stripe::before {
    left: -99em;
    right: -99em;
  }
}
@media screen and (min-width: 650px) {
  .m-bg-stripe {
    padding-top: 77px;
  }
}
@media screen and (min-width: 1160px) {
  .m-bg-stripe {
    padding-top: 102px;
  }
}
.m-bg-stripe::before {
  bottom: auto;
  height: 210px;
  background-color: #FFD53D;
}
@media screen and (min-width: 980px) {
  .m-bg-stripe::before {
    height: 282px;
  }
}
@media screen and (min-width: 1160px) {
  .m-bg-stripe::before {
    height: 365px;
  }
}

.m-bg-stripe--short::before {
  height: 210px;
}
@media screen and (min-width: 980px) {
  .m-bg-stripe--short::before {
    height: 270px;
  }
}

.m-bg-stripe--tiny {
  padding-top: 30px;
}
@media screen and (min-width: 980px) {
  .m-bg-stripe--tiny {
    padding-top: 60px;
  }
}
.m-bg-stripe--tiny::before {
  height: 170px;
}
@media screen and (min-width: 980px) {
  .m-bg-stripe--tiny::before {
    height: 230px;
  }
}

.m-bg-stripe--micro {
  padding-top: 30px;
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-bg-stripe--micro {
    padding-top: 40px;
  }
}
@media screen and (min-width: 1160px) {
  .m-bg-stripe--micro {
    padding-top: 45px;
  }
}
.m-bg-stripe--micro::before {
  height: 160px;
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-bg-stripe--micro::before {
    height: 170px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-bg-stripe--micro::before {
    height: 240px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-bg-stripe--micro::before {
    height: 130px;
  }
}
@media screen and (min-width: 1160px) {
  .m-bg-stripe--micro::before {
    height: 155px;
  }
}

.m-bg-stripe--keyline {
  position: relative;
  padding-top: 35px;
}
.m-bg-stripe--keyline::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -15px;
  right: -15px;
  top: 0;
  border-top: 1px solid #d9d9d9;
  pointer-events: none;
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-bg-stripe--keyline::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-bg-stripe--keyline::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-bg-stripe--keyline::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-bg-stripe--keyline::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .m-bg-stripe--keyline::before {
    left: -99em;
    right: -99em;
  }
}

@media screen and (max-width: 979px) {
  .m-bg-stripe--tight\@medium- {
    padding-top: 40px;
  }
}

.m-bg-stripe--blue::before {
  background-color: #1D2954;
}

.o-area-header + .m-bg-stripe {
  margin-top: 0;
}

.accordion .accordion-item {
  border-bottom: 1px solid #d9d9d9;
}
.accordion button {
  position: relative;
  display: block;
  text-align: left;
  width: 100%;
  padding: 1em 0;
  font-size: 1.15rem;
  font-weight: 400;
  border: none;
  background: none;
  outline: none;
}
.accordion button:hover, .accordion button:focus {
  cursor: pointer;
}
.accordion button:hover::after, .accordion button:focus::after {
  cursor: pointer;
  border: 1px solid #1D2954;
}
.accordion button .accordion-title {
  padding: 1em 1.5em 1em 0;
}
.accordion button .icon {
  display: inline-block;
  position: absolute;
  top: 18px;
  right: 0;
  width: 22px;
  height: 22px;
  border: 1px solid;
  border-radius: 22px;
}
.accordion button .icon::before {
  display: block;
  position: absolute;
  content: "";
  top: 9px;
  left: 5px;
  width: 10px;
  height: 2px;
  background: currentColor;
}
.accordion button .icon::after {
  display: block;
  position: absolute;
  content: "";
  top: 5px;
  left: 9px;
  width: 2px;
  height: 10px;
  background: currentColor;
}
.accordion button[aria-expanded=true] {
  color: #1D2954;
}
.accordion button[aria-expanded=true] .icon::after {
  width: 0;
}
.accordion button[aria-expanded=true] + .accordion-content {
  opacity: 1;
  max-height: 20rem;
  transition: all 200ms linear;
  will-change: opacity, max-height;
}
.accordion .accordion-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 200ms linear, max-height 200ms linear;
  margin-bottom: 1rem;
  will-change: opacity, max-height, margin-bottom;
}
.accordion .accordion-content p {
  font-size: 1rem;
  margin-top: 1rem;
}

.m-block-text > h1, .m-block-text > h2, .m-block-text > h3 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .m-block-text > h1, .js-sans-loaded .m-block-text > h2, .js-sans-loaded .m-block-text > h3 {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
.m-block-text > h4, .m-block-text > h5, .m-block-text > h6 {
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .m-block-text > h4, .js-sans-loaded .m-block-text > h5, .js-sans-loaded .m-block-text > h6 {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
.m-block-text > p,
.m-block-text > div:not(.m-block-info__wrapper):not(.m-block-info),
.m-block-text > ul,
.m-block-text > ol {
  /* @include width-multi($m-block-text); */
  width: 100%;
  margin-bottom: 0;
}
.m-block-text p.indent-level-1 {
  padding-left: 1.25rem;
}
.m-block-text ul {
  list-style-type: disc;
}
.m-block-text ul ul {
  list-style-type: circle;
}
.m-block-text ul ul ul {
  list-style-type: square;
}
.m-block-text ol {
  list-style-type: decimal;
}
.m-block-text ol ol {
  list-style-type: lower-alpha;
}
.m-block-text ol ol ol {
  list-style-type: lower-latin;
}
.m-block-text ul ul, .m-block-text ul ol, .m-block-text ul.indent-level-1 {
  margin: 5px 0 0 30px;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-block-image--right + .m-block-text {
    margin-top: -20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-blocks__left + .m-block-image--right + .m-block-text {
    margin-top: 0;
  }
}
.m-block-text.m-block-text--no-push > p,
.m-block-text.m-block-text--no-push > div:not(.m-block-info__wrapper):not(.m-block-info),
.m-block-text.m-block-text--no-push > ul,
.m-block-text.m-block-text--no-push > ol {
  margin-left: 0;
}
.m-block-text.m-block-text--right {
  float: right;
}
.m-block-text > *,
.m-block-text > div > p, .m-block-text:first-of-type > .m-block-info:first-child {
  margin-top: 0;
}
.m-block-text em {
  font-style: italic;
}
.m-block-text strong {
  font-weight: 500;
}
.m-block-text > ol {
  list-style-type: decimal;
  padding-left: 25px;
}
.m-block-text ul {
  padding-left: 20px;
}
.m-block-text ul li {
  position: relative;
  margin-top: 5px;
}
.m-block-text ul li .icon-content {
  display: flex;
  align-items: start;
}
.m-block-text ul li .icon-content svg {
  margin-right: 10px;
  margin-top: 4px;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.m-block-text ul li:first-child {
  margin-top: 0px;
}
.m-block-text ul.no-list-style {
  list-style-type: none;
}
.m-block-text > div:not(.m-block-info__wrapper):not(.m-block-info) a,
.m-block-text > p a,
.m-block-text ul a,
.m-block-text > ol a,
.m-block-text .wp-caption a {
  color: #1a1a1a;
}
.m-block-text > div:not(.m-block-info__wrapper):not(.m-block-info) a:hover,
.m-block-text > p a:hover,
.m-block-text ul a:hover,
.m-block-text > ol a:hover,
.m-block-text .wp-caption a:hover {
  color: #1D2954;
}
.m-block-text sup a {
  border: 0;
}
.m-block-text sup span {
  display: block;
}
.m-block-text sup span::before {
  content: " ";
  display: block;
  margin-top: -120px;
  padding-top: 120px;
  height: 0;
  visibility: hidden;
}
.has-admin-bar .m-block-text sup span::before {
  margin-top: -150px;
  padding-top: 150px;
}
@media screen and (min-width: 650px) {
  .m-block-text .alignright {
    float: right;
    clear: right;
  }
}
@media screen and (min-width: 650px) and (max-width: 413px) {
  .m-block-text .alignright {
    margin-left: 15px;
  }
}
@media screen and (min-width: 650px) and (min-width: 414px) and (max-width: 649px) {
  .m-block-text .alignright {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (min-width: 650px) and (max-width: 979px) {
  .m-block-text .alignright {
    margin-left: 30px;
  }
}
@media screen and (min-width: 650px) and (min-width: 980px) and (max-width: 1159px) {
  .m-block-text .alignright {
    margin-left: 30px;
  }
}
@media screen and (min-width: 650px) and (min-width: 1160px) and (max-width: 1299px) {
  .m-block-text .alignright {
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) and (min-width: 1300px) {
  .m-block-text .alignright {
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) {
  .m-block-text .alignleft {
    float: left;
    clear: left;
  }
}
@media screen and (min-width: 650px) and (max-width: 413px) {
  .m-block-text .alignleft {
    margin-right: 15px;
  }
}
@media screen and (min-width: 650px) and (min-width: 414px) and (max-width: 649px) {
  .m-block-text .alignleft {
    margin-right: 20px;
  }
}
@media screen and (min-width: 650px) and (min-width: 650px) and (max-width: 979px) {
  .m-block-text .alignleft {
    margin-right: 30px;
  }
}
@media screen and (min-width: 650px) and (min-width: 980px) and (max-width: 1159px) {
  .m-block-text .alignleft {
    margin-right: 30px;
  }
}
@media screen and (min-width: 650px) and (min-width: 1160px) and (max-width: 1299px) {
  .m-block-text .alignleft {
    margin-right: 40px;
  }
}
@media screen and (min-width: 650px) and (min-width: 1300px) {
  .m-block-text .alignleft {
    margin-right: 40px;
  }
}
.m-block-text figure {
  display: table;
  width: auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 980px) {
  .m-block-text figure {
    margin-bottom: 30px;
  }
}
.m-block-text .m-block-text__image--full {
  clear: both;
}
.m-block-text figcaption {
  display: table-caption;
  margin-top: 20px;
  caption-side: bottom;
}
.m-block-text figcaption em,
.m-block-text figcaption strong {
  color: #1a1a1a;
}
.m-block-text figcaption em::after,
.m-block-text figcaption strong::after {
  content: " ";
}
.m-block-text.mt-30 p {
  margin-top: 1.875rem;
}

.m-block-text + .m-block-accordion {
  margin-top: 52px;
}

@media screen and (min-width: 650px) {
  .o-blocks--tight .m-block-text {
    font-size: 18px;
    line-height: 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.o-blocks > .m-block > p:first-of-type {
  margin-top: 0;
}

.m-block-text--author img {
  display: none;
}

.o-videos-grid__wrapper .m-filters {
  margin-bottom: 5.556rem;
}
.o-videos-grid__wrapper .m-block-title {
  max-width: 100%;
}

.o-videos-filters {
  display: flex;
  justify-content: space-between;
  margin-top: 0.556rem;
  margin-bottom: 2.67rem;
  font-size: 0.833em;
}
.o-videos-filters > div {
  flex: 1 1 0;
}
.o-videos-filters .a-control__search {
  max-width: 15.222rem;
}
.o-videos-filters .a-control__search input[type=search] {
  background: white;
}

.gdpr-disqus-notice--vimeo {
  position: absolute;
  bottom: 20%;
  left: 0;
  right: 0;
  margin: -15px auto;
  text-align: center;
  width: 220px;
  color: #fff;
  font-size: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 649px) {
  .gdpr-disqus-notice--vimeo {
    font-size: 12px;
    margin: 0 auto;
  }
}

.gdpr-disqus-notice--vimeo a {
  color: #fff;
  font-weight: 500;
  border-bottom: none;
  display: inline;
}
.gdpr-disqus-notice--vimeo a:hover {
  color: #2196f3;
}

.video-overlay {
  background-color: #000;
  opacity: 0.6;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
}

.m-block-video-holder {
  margin-top: 60px;
}
.m-block-video-holder:nth-child(2) {
  margin-top: 0;
}
.m-block-video-holder .m-block-accordion .m-block-title {
  margin-top: 60px;
}

.m-block-video {
  position: relative;
  clear: both;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-block-video {
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-block-video {
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
  }
}
@media screen and (min-width: 1300px) {
  .m-block-video {
    width: 590px;
  }
}
.m-block-video a {
  display: block;
  position: relative;
  border-bottom: none;
}
.m-block-video.m-post {
  clear: none;
}
.video-events .m-block-video h3 {
  font-size: 2em;
  line-height: 1.4;
  margin-top: 1em;
}
.video-events .m-block-video a.video-thumbnail {
  position: relative;
}
.video-events .m-block-video a.video-thumbnail .count {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #666;
  color: white;
  padding: 0 5px;
}

.o-blocks > .m-block-video:nth-of-type(1) {
  clear: none;
  margin-top: 0;
}

.m-block-video__container {
  position: relative;
  margin-bottom: 1.5%;
}

.m-block-video .placeholder {
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  background: var(--org-color-dark);
}
.m-block-video .icon--play {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
  width: 50px;
  height: 50px;
  margin: 0 auto;
  color: #fff;
  filter: drop-shadow(1px 2px 2px #1a1a1a);
  transform: translateY(-50%);
}
@media screen and (min-width: 650px) {
  .m-block-video .icon--play {
    width: 120px;
    height: 120px;
  }
}
@media screen and (min-width: 650px) {
  .m-block-video.m-post .icon--play {
    width: 50px;
    height: 50px;
  }
}

.m-block-video img {
  display: block;
  width: 100%;
  max-width: none;
}

.m-block-video iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 649px) {
  .m-block-video iframe {
    right: 40px;
    left: auto;
    width: calc(100% - 40px);
  }
}

.m-block-video figcaption {
  display: block;
  color: #fff;
  position: relative;
  text-align: center;
}
.m-block-video figcaption h4 {
  margin-top: 0;
}
.m-block-video figcaption .m-share {
  position: absolute;
  top: 1.875rem;
  right: 2.1875rem;
}
.m-block-video figcaption .m-share a {
  background: black;
  opacity: 1;
  color: white;
}
.m-block-video figcaption .m-share a:hover {
  background: #333;
}
.m-block-video figcaption .m-share .m-share__fold {
  background: linear-gradient(to left, rgb(0, 0, 0) 85%, rgba(0, 0, 0, 0) 110%);
}
.m-block-video figcaption .m-share a.m-share__forward__trigger.toggle-active {
  background: none;
  color: white;
}
.m-block-video figcaption .m-share a.m-share__forward__trigger.toggle-active:hover {
  background: #333;
}

.m-block-video figcredit {
  color: #fff;
}

.m-block-video em {
  color: #1a1a1a;
}

.m-block-video em:after {
  content: " ";
}

.o-blocks--generic-page .m-block-video {
  margin-left: 0;
}

.single-tribe_events .m-block-video {
  clear: none;
}

.roadmap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: column;
  padding-top: 20px;
}
@media screen and (min-width: 650px) {
  .roadmap {
    flex-direction: row;
  }
}
.roadmap__column {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-right: 0;
}
@media screen and (min-width: 650px) {
  .roadmap__column {
    margin-right: 10px;
    width: 50%;
  }
}
@media screen and (min-width: 980px) {
  .roadmap__column {
    width: 25%;
  }
}
.roadmap__column:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 650px) {
  .roadmap__column:not(:last-child) {
    margin-bottom: 0;
  }
}
.roadmap__column:last-child {
  margin-right: 0;
}
.roadmap__column--box {
  border: 2px solid #000;
  padding: 30px;
  text-align: center;
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 10px;
}
.roadmap__column--box-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  padding: 10px 16px;
  background-color: #1D2954;
  border-radius: 2px;
  font-weight: 600;
}
.roadmap__column--box-title {
  font-size: 18px;
  line-height: 20px;
  font-weight: 400;
  margin: 5px;
  flex: 1;
}
.roadmap__column--box-subtitle {
  font-size: 15px;
  line-height: 21px;
  font-weight: 300;
  color: #666;
  flex: 1;
}

.o-default-list {
  margin: 30px 0;
}
.o-default-list.no-top-margin {
  margin-top: 0 !important;
}
.o-default-list.no-bottom-margin {
  margin-bottom: 0 !important;
}
.o-default-list.left-float {
  float: left;
}

@media screen and (min-width: 1160px) {
  .s-grid__two-thirds .o-default-list {
    margin-bottom: 98px;
  }
  .s-grid__two-thirds .o-default-list.sfari-home {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .s-grid__two-thirds .o-default-list.sfari-home .m-module-header, .s-grid__two-thirds .o-default-list.sfari-home div {
    display: none;
  }
  .s-grid__two-thirds .o-default-list.sfari-home .m-module-footer--no-border {
    border-top: 1px solid #d9d9d9;
  }
}

.s-grid__full {
  padding-left: 3%;
}

@media screen and (min-width: 1160px) {
  .s-grid__full .o-default-list.sfari-home {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .s-grid__full .o-default-list.sfari-home .m-module-header, .s-grid__full .o-default-list.sfari-home div {
    display: none;
  }
  .s-grid__full .o-default-list.sfari-home .m-module-footer--no-border {
    border-top: 1px solid #d9d9d9;
  }
}

@media screen and (max-width: 649px) {
  .o-area-header + .o-default-list {
    margin-top: 35px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header + .o-default-list {
    margin-top: 50px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header + .o-default-list {
    margin-top: 50px;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip + .o-default-list {
    margin-top: 53px;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-strip + .s-grid .o-default-list {
    margin-top: 72px;
  }
}

.o-default-list--tight {
  margin-top: 17px;
}
@media screen and (min-width: 650px) {
  .o-default-list--tight {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.o-default-list--tight-grant-policies {
  margin-top: 17px;
  border-top: 1px solid #d9d9d9;
}
@media screen and (min-width: 650px) {
  .o-default-list--tight-grant-policies {
    margin-top: 75px;
    margin-bottom: 20px;
  }
}

.o-default-list--tight:first-of-type {
  border-top: none;
}
@media screen and (min-width: 650px) {
  .o-default-list--tight:first-of-type {
    margin-top: 0px;
  }
}

.o-default-list--snug {
  margin-top: 0;
}
.o-default-list--snug .wrapper {
  display: grid;
}
@media screen and (max-width: 649px) {
  .o-default-list--snug .wrapper {
    grid-template-columns: repeat(auto-fill, minmax(20.9375rem, 1fr));
  }
  .o-default-list--snug .wrapper .m-post.m-post--avatar {
    margin-top: 0;
    padding-top: 1.875rem;
    padding-bottom: 2.5rem;
  }
  .o-default-list--snug .wrapper .m-post.m-post--avatar .m-post__inner .m-post__image {
    margin-left: 0;
    width: min-content;
  }
  .o-default-list--snug .wrapper .m-post.m-post--avatar .m-post__inner .m-post__image img {
    width: 4.4375rem;
    max-width: 4.4375rem;
    margin-top: 0;
  }
  .o-default-list--snug .wrapper .m-post.m-post--avatar .m-post__inner .m-post__header {
    margin-left: 1.5rem;
    width: calc(100% - 5.9375rem);
  }
  .o-default-list--snug .wrapper .m-post.m-post--avatar .m-post__inner .m-post__header .m-post__title--medium {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 979px) {
  .o-default-list--snug .wrapper .m-post--avatar .m-post__inner {
    margin-left: 0;
  }
}
@media screen and (min-width: 650px) {
  .o-default-list--snug .wrapper {
    grid-template-columns: repeat(auto-fill, minmax(35.875rem, 1fr));
  }
  .o-default-list--snug .wrapper a {
    display: flex;
    flex-direction: row;
  }
  .o-default-list--snug .wrapper .m-post--avatar {
    padding: 1.875rem 0 2.5rem 0;
  }
  .o-default-list--snug .wrapper .m-post--avatar .m-post__image {
    margin-left: 0;
    width: 7.5rem;
  }
  .o-default-list--snug .wrapper .m-post--avatar .m-post__image img {
    margin-left: 0;
    margin-top: 0;
    width: 7.5rem;
    max-width: 7.5rem;
  }
  .o-default-list--snug .wrapper .m-post--avatar .m-post__header {
    width: max-content;
    margin-left: 1.5rem;
    align-self: center;
  }
  .o-default-list--snug .wrapper .m-post--avatar .m-post__header .m-post__title--medium {
    margin-bottom: 0.5rem;
  }
}
@media screen and (min-width: 980px) {
  .o-default-list--snug .wrapper {
    grid-template-columns: repeat(auto-fit, minmax(26.6875rem, 1fr));
    grid-column-gap: 1.875rem;
  }
  .o-default-list--snug .wrapper a {
    display: flex;
    flex-direction: row;
  }
  .o-default-list--snug .wrapper .m-post--avatar .m-post__inner {
    margin-left: 0;
  }
  .o-default-list--snug .wrapper .m-post--avatar:nth-of-type(2) {
    border-top: 0;
  }
  .o-default-list--snug .wrapper .m-post--avatar:nth-last-child(2):nth-of-type(2n) {
    border-bottom: solid 1px #d9d9d9;
  }
}
@media screen and (min-width: 1160px) {
  .o-default-list--snug .wrapper {
    grid-template-columns: repeat(auto-fit, minmax(32.5rem, 1fr));
    grid-column-gap: 2.5rem;
  }
}

.o-default-list--border-top {
  margin-top: 0px;
  padding-top: 57px;
  border-top: 1px solid #b2b2b2;
}
.m-tabs + .o-default-list--border-top {
  border-top: 0;
}
@media screen and (min-width: 980px) {
  .o-default-list--border-top {
    padding-top: 72px;
  }
}

.o-default-list--border-bottom {
  border-bottom: 1px solid #808080;
}

@media screen and (min-width: 650px) {
  .o-default-list .m-post--avatar:last-of-type {
    padding-bottom: 0px;
  }
}

.o-default-list.ssof-past {
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.o-default-list.ssof-past h1.year {
  margin-top: 2.5rem;
  font-size: 1.5rem;
  line-height: 1.9375rem;
}
.o-default-list.ssof-past h1.year:first-of-type {
  margin-top: 1.5rem;
}
.o-default-list.ssof-past .subtitle {
  font-size: 0.9375rem;
  line-height: 0.9375rem;
}
.o-default-list.ssof-past .subtitle span {
  font-style: italic;
}
.o-default-list.ssof-past article {
  margin-top: 0;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-top: none;
  border-bottom: 2px solid #d9d9d9;
}
.o-default-list.ssof-past article h4 {
  font-size: 1.25rem;
  line-height: 1.875rem;
}
.o-default-list.ssof-past article:last-child {
  padding-bottom: 1.5rem;
}
.o-default-list.ssof-past ul.tablet-desktop {
  display: none;
}
.o-default-list.ssof-past .people-list {
  opacity: 1;
}
.o-default-list.ssof-past .people-list.pass-through {
  opacity: 0.3;
}
.o-default-list.ssof-past .filter {
  margin-top: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.25rem;
  position: relative;
}
.o-default-list.ssof-past .filter button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0.625rem;
  gap: 0.625rem;
  background: #fff;
  border: 1px solid #4051B5;
  border-radius: 0.5rem;
  width: 7.25rem;
  height: 2.5rem;
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: #4051B5;
  flex: none;
  order: 0;
  flex-grow: 0;
}
.o-default-list.ssof-past .filter button span {
  font-size: 0.9375rem;
  line-height: 1.25rem;
}
.o-default-list.ssof-past .filter ul {
  display: none;
}
.o-default-list.ssof-past .filter.open ul {
  position: absolute;
  display: block;
  width: 5.125rem;
  border: 1px solid #d9d9d9;
  box-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.25);
  border-radius: 0.25rem;
  margin-top: 1rem;
  background: #fff;
  z-index: 100;
}
.o-default-list.ssof-past .filter.open ul li {
  margin-top: 1.5rem;
  text-align: center;
}
.o-default-list.ssof-past .filter.open ul li:last-child {
  margin-bottom: 1.5rem;
}
.o-default-list.ssof-past .filter.open button {
  background: #4051B5;
  border-radius: 0.5rem;
  color: white;
}
@media screen and (min-width: 650px) {
  .o-default-list.ssof-past {
    display: flex;
    flex-direction: row;
    gap: 5.625rem;
  }
  .o-default-list.ssof-past > div {
    flex-grow: 1;
  }
  .o-default-list.ssof-past ul.tablet-desktop {
    flex-grow: 0;
    display: block;
    margin-top: 2.125rem;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    color: #666;
    width: 2.125rem;
  }
  .o-default-list.ssof-past ul.tablet-desktop.senior {
    visibility: hidden;
  }
  .o-default-list.ssof-past ul.tablet-desktop li {
    margin-bottom: 1rem;
  }
  .o-default-list.ssof-past ul.tablet-desktop li:hover {
    color: #1a1a1a;
  }
  .o-default-list.ssof-past ul.tablet-desktop li.active {
    text-decoration: underline;
  }
  .o-default-list.ssof-past .subtitle.light {
    opacity: 0.2;
  }
  .o-default-list.ssof-past article.m-post--avatar {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .o-default-list.ssof-past article.m-post--avatar .m-post__header {
    width: 100%;
  }
  .o-default-list.ssof-past article.m-post--avatar .m-post__header h4 {
    font-size: 1.5rem;
  }
  .o-default-list.ssof-past .filter {
    display: none;
  }
  .o-default-list.ssof-past .people-list.pass-through {
    opacity: 1;
  }
}
@media screen and (min-width: 980px) {
  .o-default-list.ssof-past {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 1300px) {
  .o-default-list.ssof-past {
    margin-top: 2.5rem;
  }
}

.o-feature-list {
  margin-top: 70px;
}
@media screen and (min-width: 650px) {
  .o-feature-list {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1160px) {
  .o-feature-list {
    margin-top: 100px;
  }
}

@media screen and (min-width: 1160px) {
  .o-default-list + .o-feature-list {
    margin-top: 100px;
  }
}

.o-feature-list__list {
  margin-top: 33px;
  border-top: 1px solid #d9d9d9;
}
@media screen and (min-width: 650px) {
  .o-feature-list__list {
    margin-top: 54px;
  }
}
.m-module-header--border + .o-feature-list__list, .m-module-header--flush-border + .o-feature-list__list {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.o-feature-list__list--feature {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.o-feature-list__list--feature::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (min-width: 980px) {
  .o-feature-list__list--feature {
    padding-bottom: 20px;
  }
}
.o-feature-list__list--feature.sfari-strip-white {
  padding-bottom: 50px;
  margin-left: 0;
}

.o-feature-list__list--feature .m-post {
  float: left;
  width: 44%;
  margin-left: 3%;
}
@media screen and (min-width: 650px) {
  .o-feature-list__list--feature .m-post {
    position: relative;
    margin-top: 0;
    padding-top: 0;
  }
  .o-feature-list__list--feature .m-post::before {
    content: "";
    position: absolute;
    top: 0;
    left: -30px;
    right: 0;
    border-top: 1px solid #d9d9d9;
  }
  .o-feature-list__list--feature .m-post:nth-child(2n+1)::before {
    left: 0;
  }
  .o-feature-list__list--feature .m-post:nth-child(1), .o-feature-list__list--feature .m-post:nth-child(2) {
    margin-top: 0;
    padding-top: 0;
  }
  .o-feature-list__list--feature .m-post:nth-child(1)::before, .o-feature-list__list--feature .m-post:nth-child(2)::before {
    display: none;
  }
}
@media screen and (max-width: 649px) {
  .o-feature-list__list--feature .m-post:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-feature-list__list--feature .m-post::before {
    left: -30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-feature-list__list--feature .m-post::before {
    left: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-feature-list__list--feature .m-post::before {
    left: -40px;
  }
}

.first_feature-row {
  display: inline-block;
  margin-top: 33px;
  padding-top: 22px;
}

@media screen and (max-width: 649px) {
  .o-feature-list__list--feature .m-post:nth-child(2) .m-post__leading {
    position: relative;
    padding-top: 40px;
  }
  .o-feature-list__list--feature .m-post:nth-child(2) .m-post__leading::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -15px;
    right: -15px;
    top: 0;
    bottom: 0;
    background-color: inherit;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 649px) and (min-width: 414px) and (max-width: 649px) {
  .o-feature-list__list--feature .m-post:nth-child(2) .m-post__leading::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (max-width: 649px) and (min-width: 650px) and (max-width: 979px) {
  .o-feature-list__list--feature .m-post:nth-child(2) .m-post__leading::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (max-width: 649px) and (min-width: 980px) and (max-width: 1159px) {
  .o-feature-list__list--feature .m-post:nth-child(2) .m-post__leading::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (max-width: 649px) and (min-width: 1160px) and (max-width: 1299px) {
  .o-feature-list__list--feature .m-post:nth-child(2) .m-post__leading::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (max-width: 649px) and (min-width: 1300px) {
  .o-feature-list__list--feature .m-post:nth-child(2) .m-post__leading::before {
    left: -99em;
    right: -99em;
  }
}
@media screen and (max-width: 649px) {
  .o-feature-list__list--feature .m-post:nth-child(2) .m-post__leading::before {
    bottom: auto;
    height: 210px;
    background-color: #FFD53D;
  }
}

.o-feature-list__list--feature .m-post--group:before {
  left: 0;
}

.o-feature-list__footer {
  margin-top: 35px;
}
@media screen and (min-width: 650px) {
  .o-feature-list__footer {
    margin-top: 0;
  }
}

.o-feature-list .m-module-header--border, .o-feature-list .m-module-header--flush-border {
  margin-bottom: 0;
}

.o-feature-list--snug {
  margin-top: 0;
}

.o-feature-list--hero {
  margin-top: 0;
  padding-top: 0;
}
@media screen and (min-width: 1160px) {
  .o-feature-list--hero {
    padding-top: 0;
  }
}

.o-feature-list--hero .m-module-header__title {
  font-size: 35px;
  line-height: 35px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 649px) {
  .o-feature-list .m-post:first-child:not(.m-post--full) {
    padding-bottom: 33px;
  }
}

.o-feature-list--hero .o-feature-list__list--feature {
  margin-top: 0;
}

.o-feature-list--hero.m-bg-stripe::before {
  height: 120px;
}
@media screen and (min-width: 980px) {
  .o-feature-list--hero.m-bg-stripe::before {
    height: 205px;
  }
}

.o-feature-list__list--inblock {
  font-size: 0px;
}

@media screen and (min-width: 650px) {
  .o-feature-list__list--inblock .m-post {
    display: inline-block;
    float: none;
    vertical-align: top;
  }
}

.news-listing-post + .m-module-footer {
  border: none;
}

.news-listing-post {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 30px 0;
  min-height: 155px;
  border-top: 1px solid #d9d9d9;
  z-index: 1;
}
.news-listing-post:last-of-type {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 1em;
}
.news-listing-post.with-image {
  justify-content: space-between;
}
.news-listing-post a.news-label, .news-listing-post a:hover {
  color: var(--link-color);
}
.news-listing-post a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 979px) {
  .news-listing-post {
    position: relative;
  }
}

.special-report-list > p {
  font-size: 1.5rem;
  line-height: 1.875rem;
}
.special-report-list.o-default-list {
  margin-top: 3.4375rem;
}
.special-report-list .news-listing-post {
  flex-direction: column;
}
.special-report-list .news-listing-post a,
.special-report-list .news-listing-post img {
  width: 100%;
}
.special-report-list .news-listing-post .news-listing-post__text {
  margin-top: 1.25rem;
}
.special-report-list .news-listing-post .news-title {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.special-report-list .news-listing-post .news-date,
.special-report-list .news-listing-post .news-date--medium,
.special-report-list .news-listing-post .news-title-authors {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  margin-top: 1.25rem;
  color: #666;
}
.special-report-list .news-listing-post .news-date--medium {
  display: none;
}
.special-report-list .news-listing-post .news-title-authors {
  margin-top: 0.125rem;
  margin-bottom: 1.25rem;
}
.special-report-list .news-listing-post .news-listing-intro {
  font-size: 0.9375rem;
  line-height: 1.25rem;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .special-report-list > p {
    margin-bottom: 1.25rem;
  }
  .special-report-list .news-listing-post {
    flex-direction: row-reverse;
  }
  .special-report-list .news-listing-post .news-listing-post__text {
    max-width: 50%;
    margin-top: 0;
  }
  .special-report-list .news-listing-post > a,
  .special-report-list .news-listing-post picture,
  .special-report-list .news-listing-post img {
    width: 14.0625rem;
    max-width: 14.0625rem;
  }
  .special-report-list .news-listing-post img {
    margin-top: 2.5rem;
  }
  .special-report-list .news-listing-post .news-date {
    display: none;
  }
  .special-report-list .news-listing-post .news-date--medium {
    display: block;
    margin-top: 0;
    margin-bottom: 1.25rem;
  }
  .special-report-list .news-listing-post .news-title-authors {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 980px) {
  .special-report-list.o-default-list {
    margin-top: 6.25rem;
  }
  .special-report-list .o-default-list__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 3.3125rem;
    margin-top: 0.625rem;
  }
  .special-report-list .o-default-list__list .news-listing-post {
    flex-direction: column;
    justify-content: flex-start;
    border-top: 0;
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .special-report-list .news-date {
    display: block;
  }
  .special-report-list .news-date--medium {
    display: none;
  }
}
@media screen and (min-width: 1160px) {
  .special-report-list.o-default-list {
    margin-top: 5px;
  }
  .special-report-list.o-default-list > p {
    font-size: 1.875rem;
    line-height: 2.1875rem;
  }
  .special-report-list.o-default-list .news-title {
    font-size: 1.5rem;
    line-height: 1.875rem;
  }
  .special-report-list.o-default-list .o-default-list__list {
    column-gap: 3.75rem;
  }
}

.o-default-list--tight .news-listing-post:first-of-type,
.o-default-list__items .news-listing-post:first-of-type {
  border-top: none;
}

.o-default-list.archive-list {
  overflow: visible;
}

.archive-list .o-feature-list__list {
  height: 0;
  margin: 0;
  padding: 0;
}
.archive-list .o-default-list {
  border-top: 1px solid #d9d9d9;
}

.news-thumbnail {
  display: none;
  min-width: 275px;
  margin-left: calc((100vw - 424px) / 12 * 1 + 0px + 60px);
}
.news-thumbnail.ml-30 {
  margin-left: 1.875rem;
}
@media screen and (max-width: 979px) {
  .news-thumbnail {
    min-width: 210px;
    margin-left: 30px;
  }
}
@media screen and (max-width: 649px) {
  .news-thumbnail {
    min-width: 105px;
  }
}

.news-links-wrapper {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 979px) {
  .news-links-wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 649px) {
  .news-links-wrapper {
    width: 100%;
  }
}

.news-title {
  font-size: 24px;
  max-width: 485px;
  width: 100%;
  line-height: 1.25;
}
.news-title.title-hover {
  color: var(--link-color);
  text-decoration: underline;
}
@media screen and (max-width: 1159px) {
  .news-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 649px) {
  .news-title {
    font-size: 18px;
  }
}

.news-title-authors {
  width: 100%;
}
@media screen and (max-width: 979px) {
  .news-title-authors {
    margin-top: 20px;
  }
}
@media screen and (max-width: 649px) {
  .news-title-authors {
    margin-top: 15px;
  }
}
.news-title-authors.title-hover a {
  color: var(--link-color);
  text-decoration: underline;
}

.news-details {
  font-size: 15px;
  max-width: 170px;
  width: 100%;
  line-height: 1.2;
  margin-right: 40px;
}
@media screen and (max-width: 979px) {
  .news-details {
    display: flex;
    max-width: none;
    flex-direction: column;
  }
}

.news-date {
  margin-top: 5px;
  color: #666;
}

@media screen and (min-width: 1160px) {
  .news .no-image .news-details {
    margin-right: 145px;
  }
}

@media screen and (min-width: 1160px) {
  .with-image .news-details {
    margin-right: 145px;
  }
}
.with-image .news-thumbnail {
  display: block;
}
.with-image .news-links-wrapper {
  justify-content: space-between;
}
@media screen and (max-width: 649px) {
  .with-image .news-links-wrapper {
    max-width: 300px;
  }
}
@media screen and (max-width: 649px) {
  .with-image .news-thumbnail {
    margin: 0;
  }
}

.category-news-feature {
  display: flex;
}
.category-news-feature .news-listing-post {
  width: 50%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
  margin-left: 40px;
  border: none;
}
.category-news-feature .news-links-wrapper {
  display: flex;
  flex-direction: column;
}
.category-news-feature .news-links-wrapper,
.category-news-feature .news-title-authors {
  margin-top: 15px;
}
.category-news-feature .news-thumbnail,
.category-news-feature img {
  width: 100%;
  margin: 0;
}
.category-news-feature .news-details {
  max-width: none;
  margin: 0;
}
@media screen and (max-width: 649px) {
  .category-news-feature {
    flex-direction: column;
    margin: 0;
  }
  .category-news-feature .news-listing-post {
    width: unset;
    margin: 0;
  }
  .category-news-feature .news-links-wrapper {
    max-width: none;
  }
}

.g-subnav__title a {
  text-overflow: ellipsis;
  white-space: nowrap;
  display: block;
  overflow: hidden;
}

.g-context-nav {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  height: 70px;
}
@media screen and (min-width: 1160px) {
  .g-context-nav {
    height: 90px;
  }
}

@media screen and (min-width: 980px) {
  .g-context-nav__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    transition: padding 0.4s ease;
  }
}

.g-context-nav.is-sticky .g-subnav__inner {
  padding-right: 0px !important;
}

/* 
html:not(.js-g-nav-flyout-show):not(.js-g-search-show):not(.gb-nav-open) .g-context-nav__inner,
.g-context-nav.is-sticky .g-context-nav__inner {
  z-index: 100;
} 


.g-context-nav.is-sticky .g-context-nav__inner {
  position: fixed;

  &:after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
}
*/
.has-admin-bar .g-context-nav.is-sticky .g-context-nav__inner {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .has-admin-bar .g-context-nav.is-sticky .g-context-nav__inner {
    top: 32px;
  }
}

.g-context-nav__header,
.g-context-nav__search {
  position: absolute;
  top: 0;
  bottom: 0;
  transition: transform 0.15s ease-out, visibility 0s 0.4s;
  visibility: hidden;
  z-index: 101;
}

.g-context-nav.is-sticky .g-context-nav__header,
.g-context-nav.is-sticky .g-context-nav__search {
  transition: transform 0.15s ease-out, visibility 0s;
  transform: none;
  visibility: visible;
}

.g-context-nav__title {
  transition: opacity 0.4s ease, visibility 0s 0.4s;
  opacity: 0;
  visibility: hidden;
}

.g-context-nav.is-sticky .g-context-nav__title {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s;
}

.g-context-nav__title.full_title {
  display: none;
}

.s-area-flatiron .g-context-nav__title.full_title {
  display: block;
  padding-left: 0;
  position: absolute;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0s;
}
@media screen and (max-width: 979px) {
  .s-area-flatiron .component-built .g-context-nav__title {
    opacity: 1;
    visibility: visible;
  }
  .s-area-flatiron .component-built .g-context-nav__title.full_title {
    display: none;
  }
}
.s-area-flatiron .g-context-nav.is-sticky .g-context-nav__title.full_title {
  transition: opacity 0.4s ease, visibility 0s 0.4s;
  opacity: 0;
  visibility: hidden;
}
.s-area-flatiron .g-context-nav.is-sticky .g-subnav__header {
  padding-left: 0;
}
.s-area-flatiron .g-context-nav.is-sticky .g-subnav {
  max-width: 1300px;
}

@media screen and (max-width: 1449px) {
  .s-area-flatiron .g-context-nav.is-sticky .g-subnav__header {
    padding-left: 15%;
  }
}
@media screen and (min-width: 1450px) and (max-width: 1660px) {
  .s-area-flatiron .g-context-nav.is-sticky .g-subnav__header {
    padding-left: 6%;
  }
}
.g-context-nav__header {
  left: 0;
  transform: translateX(-100%);
  background-color: #fff;
  color: #808080;
  font-size: 0;
  border-bottom: 1px solid #d9d9d9;
}

.g-context-nav__header a {
  display: inline-block;
  vertical-align: top;
  border-left: 1px solid #d9d9d9;
  position: relative;
  width: 70px;
  height: 70px;
}
.g-context-nav__header a:first-child {
  border-left: 0;
}
@media screen and (min-width: 1160px) {
  .g-context-nav__header a {
    width: 90px;
    height: 90px;
  }
}

.g-context-nav__search .icon,
.g-context-nav__header a .icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.g-context-nav__search {
  right: 0;
  transform: translateX(100%);
  background-color: #FFD53D;
  color: #40330E;
  display: none;
  width: 70px;
}
@media screen and (min-width: 1160px) {
  .g-context-nav__search {
    width: 90px;
  }
}

.g-context-nav .g-subnav {
  padding-top: 0;
  padding-bottom: 0;
}

.g-context-nav .g-subnav__inner {
  margin-left: 0px !important;
}

@media screen and (min-width: 1300px) {
  .g-context-nav .g-subnav__header {
    padding-left: 0;
  }
}

/*
.g-context-nav.is-sticky .g-subnav__header {

  @include breakpoint('large') {
    padding-left: 126px;
  }

  @include breakpoint('xlarge+') {
    padding-left: 175px;
  }
}
*/
.g-context-nav .g-subnav__menu {
  padding-left: 38px;
}
@media screen and (min-width: 980px) {
  .g-context-nav .g-subnav__menu {
    padding-left: 15px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-context-nav .g-subnav__menu {
    padding-right: 47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-context-nav .g-subnav__menu {
    padding-right: 40px;
  }
}
@media screen and (min-width: 1160px) {
  .g-context-nav .g-subnav__menu {
    padding-left: 20px;
  }
}

.g-context-nav.is-sticky .g-subnav__menu {
  padding-left: 15px;
  padding-right: 100px;
}
@media screen and (min-width: 1160px) {
  .g-context-nav.is-sticky .g-subnav__menu {
    padding-left: 20px;
  }
}

@media (min-width: 1400px) {
  .g-context-nav.is-sticky .g-subnav__menu {
    padding-right: 50px;
  }
  .g-context-nav.is-sticky .g-subnav__menu > ul {
    min-width: 0;
  }
}
.g-nav {
  display: none;
  margin: 0 auto;
}
@media screen and (min-width: 980px) {
  .g-nav {
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 15px;
    line-height: 70px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  .js-sans-loaded .g-nav {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}
@media screen and (min-width: 1160px) {
  .g-nav {
    font-size: 18px;
    line-height: 90px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.g-nav > ul {
  float: right;
  white-space: nowrap;
  padding-right: 70px;
}
@media screen and (min-width: 1300px) {
  .g-nav > ul {
    margin-left: 630px;
  }
}
@media screen and (min-width: 1300px) {
  .g-nav > ul {
    margin-left: 630px;
    padding-right: 0;
    float: none;
  }
}

.g-nav > ul > li {
  display: inline-block;
  position: relative;
  margin-left: 33px;
  vertical-align: top;
  cursor: default;
}
.g-nav > ul > li:first-child {
  margin-left: 0;
}
.g-nav > ul > li:hover {
  color: #1D2954;
  text-decoration: underline;
}

.g-nav a,
.g-nav span {
  display: block;
}

.g-nav > ul > li > a,
.g-nav > ul > li > span {
  position: relative;
  overflow: hidden;
}

.g-nav > ul > li:hover > a:after,
.g-nav > ul > li:hover > span:after {
  transform: none;
}

.g-nav .is-active {
  color: #1D2954;
}

.g-nav > .is-active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -10px;
  right: -10px;
  border-bottom: 2px solid #1D2954;
}

.g-nav__sub {
  position: absolute;
  top: 100%;
  left: -38px;
  background-color: #192347;
  color: rgba(255, 255, 255, 0.7);
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 20px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  opacity: 0;
  visibility: hidden;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 195ms cubic-bezier(0.4, 0, 0.2, 1);
}
.js-sans-loaded .g-nav__sub {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
li:hover .g-nav__sub {
  opacity: 1;
  visibility: visible;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.g-nav__sub li {
  display: block;
  padding: 5px 30px 5px 30px;
  white-space: nowrap;
}
.g-nav__sub li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.g-nav__sub li:first-child {
  margin-top: 20px;
}
.g-nav__sub li:last-child {
  margin-bottom: 20px;
}

.g-nav__sub .is-active a,
.g-nav__sub a:hover {
  color: #fff;
}

.g-subnav {
  width: 100%;
  white-space: nowrap;
  position: relative;
  z-index: 10;
  color: #fff;
  background-color: var(--org-color);
}
.g-subnav:before, .g-subnav:after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  margin-left: -9999px;
  margin-right: -9999px;
}
.g-subnav:before {
  top: -1px;
  bottom: 0;
  background-color: inherit;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

@media screen and (min-width: 650px) {
  .g-subnav--border-bottom:after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

.o-area-header--fill .g-subnav,
.o-area-header--blue .g-subnav {
  background-color: transparent;
}

.is-sticky .g-subnav {
  background-color: var(--org-color);
}

.o-area-header__inner + .g-subnav {
  display: none;
}
@media screen and (min-width: 980px) {
  .o-area-header__inner + .g-subnav {
    display: block;
  }
}

.g-subnav__inner {
  position: relative;
  font-size: 0;
}
.g-subnav__inner::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}

.g-subnav__header,
.g-subnav__menu {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  line-height: 70px;
  height: 70px;
}
@media screen and (min-width: 1160px) {
  .g-subnav__header,
  .g-subnav__menu {
    line-height: 90px;
    height: 90px;
  }
}

.g-subnav__header {
  float: left;
  width: auto;
}
.g-subnav__header.left-align {
  width: 50%;
}

.g-subnav__menu {
  float: right;
  width: auto;
}
.g-subnav__menu.left-align {
  float: none;
}

.g-subnav__header .icon {
  margin-right: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.g-subnav__title {
  font-size: 18px;
  line-height: 70px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: block;
  overflow: hidden;
}
.g-subnav__title:before, .g-subnav__title:after {
  content: "";
  display: block;
}
.g-subnav__title:before {
  margin-top: -2px;
}
.g-subnav__title:after {
  margin-bottom: 2px;
}
@media screen and (min-width: 980px) {
  .g-subnav__title {
    font-size: 20px;
    line-height: 70px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (min-width: 1160px) {
  .g-subnav__title {
    font-size: 24px;
    line-height: 90px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    overflow: hidden;
  }
  .g-subnav__title:before, .g-subnav__title:after {
    content: "";
    display: block;
  }
  .g-subnav__title:before {
    margin-top: -3px;
  }
  .g-subnav__title:after {
    margin-bottom: 3px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1150px) {
  .is-sticky .g-subnav__title {
    max-width: 265px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1279px) {
  .is-sticky .g-subnav__title {
    max-width: 355px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 649px) {
  .g-subnav__title a {
    width: calc(100vw - 30px);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

.g-subnav__title a:hover {
  color: rgba(255, 255, 255, 0.7);
}

.g-subnav__title--small {
  color: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 650px) {
  .g-subnav__title--small {
    font-size: 18px;
  }
}

.g-subnav__title--small a:hover,
.g-subnav__title--small a:hover .icon {
  color: #fff;
}

.g-subnav__menu {
  display: none;
  color: rgba(255, 255, 255, 0.7);
  transition: max-height 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 980px) {
  .g-subnav__menu {
    display: inline-block;
  }
}

@media screen and (max-width: 649px) {
  .component-built .g-subnav__header {
    width: 4.375rem;
  }
}
.component-built .g-subnav__inner {
  overflow: scroll hidden;
}
@media screen and (max-width: 649px) {
  .component-built .g-subnav__inner {
    display: flex;
  }
}
.component-built .g-subnav__menu {
  display: inline-block;
  padding-left: 0;
}
@media screen and (max-width: 649px) {
  .component-built .g-subnav__menu {
    float: left;
  }
  .component-built .g-subnav__menu ul {
    display: flex;
  }
  .component-built .g-subnav__menu li {
    margin-top: 0;
    margin-left: 2.1875rem;
    padding-top: 0;
    border-top: none;
  }
  .component-built .g-subnav__menu li:first-of-type {
    margin-left: 0;
  }
}

.g-subnav__menu a:hover, .g-subnav__menu span:hover {
  color: #fff;
}

.g-subnav__menu > ul {
  font-size: 0;
}

.g-subnav__menu > ul > li {
  font-size: 15px;
  position: relative;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  float: left;
}
.g-subnav__menu > ul > li:first-child {
  border-top: 0;
}
@media screen and (min-width: 650px) {
  .g-subnav__menu > ul > li {
    display: inline-block;
    vertical-align: top;
    margin-top: 0;
    margin-left: 26px;
    padding-top: 0;
    border-top: 0;
  }
  .g-subnav__menu > ul > li:first-child {
    margin-left: 0;
  }
}
@media screen and (min-width: 980px) {
  .g-subnav__menu > ul > li {
    margin-left: 34px;
  }
}
@media screen and (min-width: 1160px) {
  .g-subnav__menu > ul > li {
    font-size: 18px;
  }
}

@media screen and (min-width: 650px) {
  .g-subnav__menu > ul > li:before,
  .g-subnav__menu > ul > li:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #FFD53D;
    transition: transform 0.1s ease;
    transform: scale(1, 0);
    transform-origin: bottom center;
  }
}

.g-subnav__menu > ul > li > a,
.g-subnav__menu > ul > li > span {
  display: block;
}
@media screen and (min-width: 980px) {
  .g-subnav__menu > ul > li > a,
  .g-subnav__menu > ul > li > span {
    display: block;
    overflow: hidden;
  }
  .g-subnav__menu > ul > li > a:before, .g-subnav__menu > ul > li > a:after,
  .g-subnav__menu > ul > li > span:before,
  .g-subnav__menu > ul > li > span:after {
    content: "";
    display: block;
  }
  .g-subnav__menu > ul > li > a:before,
  .g-subnav__menu > ul > li > span:before {
    margin-top: -1px;
  }
  .g-subnav__menu > ul > li > a:after,
  .g-subnav__menu > ul > li > span:after {
    margin-bottom: 1px;
  }
}
@media screen and (min-width: 1160px) {
  .g-subnav__menu > ul > li > a,
  .g-subnav__menu > ul > li > span {
    display: block;
    overflow: hidden;
  }
  .g-subnav__menu > ul > li > a:before, .g-subnav__menu > ul > li > a:after,
  .g-subnav__menu > ul > li > span:before,
  .g-subnav__menu > ul > li > span:after {
    content: "";
    display: block;
  }
  .g-subnav__menu > ul > li > a:before,
  .g-subnav__menu > ul > li > span:before {
    margin-top: -3px;
  }
  .g-subnav__menu > ul > li > a:after,
  .g-subnav__menu > ul > li > span:after {
    margin-bottom: 3px;
  }
}

@media screen and (min-width: 650px) {
  .g-subnav__menu > ul > li:hover:before,
  .g-subnav__menu > ul > li:hover:before,
  .g-subnav__menu > ul > li.is-active:before,
  .g-subnav__menu > ul > li.is-active:before {
    transform: none;
  }
}

.g-subnav__menu > ul > li:hover > span,
.g-subnav__menu > ul > li:hover > a {
  color: #fff;
}

.g-subnav__menu li span {
  cursor: default;
}

.g-subnav__sub-menu {
  background-color: #192347;
  white-space: normal;
}
.g-subnav__sub-menu.bg__blue {
  background-color: #1D2954;
}
@media screen and (min-width: 650px) {
  .g-subnav__sub-menu {
    transform: translateZ(0px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 195ms cubic-bezier(0.4, 0, 0.2, 1);
    position: absolute;
    top: 100%;
    left: -40px;
    text-align: left;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-subnav__sub-menu {
    margin-top: 20px;
  }
}

@media screen and (min-width: 650px) {
  .g-subnav__menu li:hover .g-subnav__sub-menu,
  .g-subnav__menu li:active .g-subnav__sub-menu {
    opacity: 1;
    visibility: visible;
    transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
  }
}

.g-subnav__sub-menu li {
  display: block;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 30px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-left: 0;
  padding: 5px 30px 5px 30px;
  white-space: nowrap;
}
.js-sans-loaded .g-subnav__sub-menu li {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
.g-subnav__sub-menu li:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.g-subnav__sub-menu li:first-child {
  margin-top: 20px;
}
.g-subnav__sub-menu li:last-child {
  margin-bottom: 20px;
}

.g-subnav__menu ul > li:last-child > .g-subnav__sub-menu {
  right: -50px;
  left: auto;
}

.g-subnav__sub-menu a:hover,
.g-subnav__sub-menu .is-active a {
  color: #fff;
}

.g-subnav__menu .g-subnav__social {
  float: right;
}

.g-subnav__menu .g-subnav__social::before {
  display: none;
}

.g-subnav__menu .g-subnav__social a {
  display: block;
  overflow: hidden;
  position: relative;
  display: inline-block;
  opacity: 0.2;
}
.g-subnav__menu .g-subnav__social a:before, .g-subnav__menu .g-subnav__social a:after {
  content: "";
  display: block;
}
.g-subnav__menu .g-subnav__social a:before {
  margin-top: 0;
}
.g-subnav__menu .g-subnav__social a:after {
  margin-bottom: 0;
}

.g-subnav__menu .g-subnav__social a::before,
.g-subnav__menu .g-subnav__social a::after {
  display: none;
}

.g-subnav__menu .g-subnav__social .icon {
  display: block;
}
.g-subnav__menu .g-subnav__social .icon :hover {
  color: white;
}

.g-subnav__menu .g-subnav__social .icon,
.g-subnav__menu .g-subnav__social--facebook a {
  top: 2px;
}

.g-subnav__menu .g-subnav__social--instagram a {
  top: 2px;
}

.g-subnav__menu .g-subnav__social--twitter a {
  top: 1px;
}

@media screen and (min-width: 650px) {
  .g-subnav__menu .g-subnav__dd-right ul {
    left: auto;
    right: -40px;
  }
}

.g-subnav__header,
.g-subnav__menu {
  transition: 0.15s ease-out;
}

.g-nav-mobile {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background-color: #fff;
  -webkit-overflow-scrolling: touch;
  overflow: scroll;
  opacity: 0;
  visibility: hidden;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 195ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 980px) {
  .g-nav-mobile {
    display: none;
  }
}

.has-admin-bar .g-nav-mobile__close,
.has-admin-bar .g-nav-mobile__search {
  top: 46px;
}

.g-nav-mobile a {
  cursor: pointer;
}
.g-nav-mobile__close {
  position: fixed;
  top: 0px;
  right: 0;
  z-index: 99;
  width: 70px;
  height: 70px;
  padding: 30px 0;
  background-color: #1D2954;
  color: #fff;
}

.g-nav-mobile__close--autocomplete {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
  background-color: #fff;
  color: #1a1a1a;
}

.g-nav-mobile__close .icon {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
}

.g-nav-mobile__inner {
  background: #ffffff;
}

.g-nav-mobile__search {
  position: relative;
  margin-right: 70px;
  position: fixed;
  z-index: 99;
  background: #ffffff;
  width: 100%;
  left: 0;
  padding-left: 22px;
  top: 0;
}
.g-nav-mobile__search::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -15px;
  right: -15px;
  bottom: 0;
  border-top: 1px solid #d9d9d9;
  pointer-events: none;
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-nav-mobile__search::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-nav-mobile__search::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-nav-mobile__search::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-nav-mobile__search::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-nav-mobile__search::before {
    left: -99em;
    right: -99em;
  }
}

.g-nav-mobile__search form {
  position: relative;
}

.g-nav-mobile__search input[type=search] {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 70px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  padding: 0 20px 0 30px;
  border: 0;
  background: none;
  margin: 0px;
}
.js-sans-loaded .g-nav-mobile__search input[type=search] {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.g-nav-mobile__search button {
  position: absolute;
  top: 50%;
  left: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  transform: translateY(-50%);
  color: #808080;
}

.g-nav-mobile__nav {
  margin-top: 74px;
}

.g-nav-mobile__nav .icon {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #808080;
  transform: translateY(-50%) rotate(0deg);
  transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1);
}

.g-nav-mobile__nav .icon--minus--large {
  transform: translateY(-50%) rotate(-90deg);
  opacity: 0;
}

.g-nav-mobile__nav > ul > li,
.g-nav-mobile__subnav > ul > li {
  margin-left: -40px;
  margin-right: -40px;
  padding-left: 40px;
  padding-right: 40px;
  border-top: 1px solid #d9d9d9;
}
.g-nav-mobile__nav > ul > li:first-child,
.g-nav-mobile__subnav > ul > li:first-child {
  border-top: 0;
}

.g-nav-mobile__back,
.g-nav-mobile__nav > ul > li > a,
.g-nav-mobile__subnav ul > li > a {
  display: block;
  position: relative;
  padding: 16px 0 19px;
}

.g-nav-mobile__subnav {
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  overflow-x: hidden;
  background: #fff;
  transform: translateX(100%);
  transition: transform 225ms cubic-bezier(0.4, 0, 0.2, 1);
}

.g-nav-mobile__subnav .g-nav-mobile__subnav {
  top: 0;
}

.g-nav-mobile__back {
  position: relative;
  position: relative;
  background-color: #f2f2f2;
  text-align: center;
}
.g-nav-mobile__back::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -15px;
  right: -15px;
  top: 0;
  bottom: 0;
  background-color: inherit;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-nav-mobile__back::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-nav-mobile__back::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-nav-mobile__back::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-nav-mobile__back::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-nav-mobile__back::before {
    left: -99em;
    right: -99em;
  }
}
.g-nav-mobile__back::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -15px;
  right: -15px;
  bottom: 0;
  border-top: 1px solid #d9d9d9;
  pointer-events: none;
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-nav-mobile__back::after {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-nav-mobile__back::after {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-nav-mobile__back::after {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-nav-mobile__back::after {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-nav-mobile__back::after {
    left: -99em;
    right: -99em;
  }
}

.g-nav-mobile__back .icon {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.g-nav-mobile__expander {
  max-height: 0;
  color: #666;
  overflow: hidden;
  transition: max-height 225ms cubic-bezier(0.4, 0, 0.2, 1);
}

.g-nav-mobile__expander ul {
  margin-top: -5px;
  margin-bottom: 24px;
}

.g-nav-mobile__expander ul li a {
  display: block;
  padding: 7px 0 8px;
}

.g-nav-mobile__subnav .g-nav-mobile__expander ul > li > a.level_2, .g-nav-mobile__subnav .g-nav-mobile__expander ul > li > a.level_3 {
  padding: 0 0 10px 0;
}
.g-nav-mobile__subnav .g-nav-mobile__expander ul > li > a.level_4 {
  padding: 10px 0 10px 30px;
}

.g-nav-mobile__social {
  position: relative;
  padding-top: 32px;
  color: #808080;
  text-align: center;
}
.g-nav-mobile__social::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -15px;
  right: -15px;
  top: 0;
  border-top: 1px solid #d9d9d9;
  pointer-events: none;
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-nav-mobile__social::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-nav-mobile__social::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-nav-mobile__social::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-nav-mobile__social::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-nav-mobile__social::before {
    left: -99em;
    right: -99em;
  }
}

.g-nav-mobile__social a:hover {
  color: #666;
}

.g-nav-mobile__social li {
  display: inline-block;
  margin: 0 17px;
}

.g-nav-mobile__footer {
  padding: 36px 0;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  text-align: center;
}
.js-sans-loaded .g-nav-mobile__footer {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.g-nav-mobile__footer li {
  margin-top: 10px;
}
.g-nav-mobile__footer li:first-child {
  margin-top: 0;
}

.g-nav-mobile__autocomplete {
  position: absolute;
  top: 69px;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  padding-top: 30px;
  background-color: #fff;
  border-top: 1px solid #d9d9d9;
  opacity: 0;
  visibility: hidden;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-search-focus .g-nav-mobile__autocomplete {
  opacity: 1;
  visibility: visible;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-is-open + .g-nav-mobile__expander {
  max-height: 9999px;
}

.nav-is-open .icon--plus--large {
  opacity: 0;
  transform: translateY(-50%) rotate(90deg);
}

.nav-is-open .icon--minus--large {
  opacity: 1;
  transform: translateY(-50%) rotate(0deg);
}

.nav-is-open + .g-nav-mobile__subnav {
  transform: translateX(0);
}

.nav-is-open + .g-nav-mobile__subnav ul.current {
  position: absolute;
  width: 100%;
  padding-right: 30px;
}

.nav-open .g-nav-mobile {
  opacity: 1;
  visibility: visible;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-open .g-header__hamburger {
  background-color: #FFD53D;
  color: #806104;
}

@keyframes bulge {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
table {
  width: 100%;
  display: table;
  border-top: 1px solid #d9d8d9;
  border-bottom: 1px solid #d9d8d9;
  margin: bottom 2rem;
}
table thead {
  background-color: transparent;
}
table thead tr {
  background-color: transparent !important;
}
table tr.even {
  background-color: #f6f5f4;
  background-color: transparent !important;
}
table tr.alt {
  background-color: #f6f5f4;
  background-color: transparent !important;
}
table tr:nth-of-type(odd) {
  background-color: #f6f5f4;
}
table tr:nth-of-type(even) {
  background-color: transparent !important;
}

.main-wrapper {
  font-size: 14px;
  position: relative;
}
.main-wrapper .pagination .btn {
  white-space: nowrap;
  margin-left: 4px;
  padding: 4px;
  display: inline-flex;
  justify-content: center;
  font-size: 20px;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  border: 1px solid #1D2954;
  border-radius: 100%;
}
.main-wrapper .pagination .btn:hover {
  background-color: #f6f5f4;
  color: #1D2954;
}
.main-wrapper .pagination .btn > .fa {
  font-size: 18px;
}
.main-wrapper .pagination .btn.disabled {
  pointer-events: none;
  cursor: not-allowed;
  color: #d9d9d9;
  opacity: 0.65;
  border-color: rgba(217, 216, 217, 0.65);
}
.main-wrapper .sleep-table table .header {
  font-weight: 600;
}
.main-wrapper .sleep-table table th {
  padding: 15px;
}
.main-wrapper .sleep-table table td {
  padding: 10px 15px;
}
.main-wrapper .pagination {
  display: flex;
  justify-content: end;
  margin: 10px 0 5px 0;
}
.main-wrapper .pagination a:last-child {
  margin-right: 5px;
}

h3 {
  margin-top: 20px;
  margin-bottom: 30px;
}

input[type=date] {
  float: none;
}
input[type=date]:first-of-type + input {
  margin-top: 10px;
}

input[type=email] {
  float: none;
}
input[type=email]:first-of-type + input {
  margin-top: 10px;
}

input[type=number] {
  float: none;
}
input[type=number]:first-of-type + input {
  margin-top: 10px;
}

input[type=password] {
  float: none;
}
input[type=password]:first-of-type + input {
  margin-top: 10px;
}

input[type=text] {
  float: none;
}
input[type=text]:first-of-type + input {
  margin-top: 10px;
}

input[type=time] {
  float: none;
}

.custom-dd {
  max-width: 50%;
}
.custom-dd:first-of-type + .custom-dd {
  margin-top: 20px;
}

ol li:not(:last-child) {
  margin-bottom: 20px;
}

.bold-text {
  font-weight: bold;
}

ul.sleep-table-list {
  display: flex;
  list-style-type: none;
  border-top: 1px solid #1D2954;
  border-bottom: 1px solid #1D2954;
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  position: relative;
}

.sleep-table-list > li:first-child {
  flex: 0 0 50px;
  border-right: 1px solid #d9d8d9;
}
.sleep-table-list li {
  flex: 0 0 130px;
}
.sleep-table-list li:not(:first-child) {
  cursor: pointer;
}
.sleep-table-list li .table-item:hover {
  background: #f5f7fa;
}
.sleep-table-list li .table-item.highlight {
  background: #1D2954;
  color: #fff;
}
@media screen and (min-width: 1160px) {
  .sleep-table-list li {
    flex: 0 0 160px;
  }
}
.sleep-table-list::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  border-top: 1px solid #d9d8d9;
}

.horizontal-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80px;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.horizontal-header > div:first-child {
  font-size: 16px;
}
.horizontal-header > div:last-child {
  opacity: 0.6;
}

.vertical-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  padding: 1rem;
  font-size: 16px;
}

.table-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 12px;
  margin: 4px;
}

[id^=date-] {
  font-size: 12px;
  margin-top: 5px;
}

.complete {
  color: #8bb34a;
  text-transform: capitalize;
}

.incomplete {
  color: #f6862d;
  text-transform: capitalize;
}

.inactive {
  opacity: 0.5;
  text-transform: capitalize;
  pointer-events: none;
  cursor: not-allowed;
}

#past-due {
  margin: 0;
  padding-left: 1rem;
  background: #ffeb3b;
  position: relative;
  padding: 1rem 0.5rem 1rem 4rem;
  margin-top: 1rem;
  border-radius: 5px;
}
#past-due:before {
  content: url(/static/images/error-icon.png);
  position: absolute;
  margin-left: -29px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

.tick-slider-wrapper {
  background-color: #fff;
}

.tick-slider-header {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.tick-slider-header > h5 {
  margin: 0;
  font-size: 18px;
  font-weight: 300;
}

.tick-slider {
  position: relative;
  width: 100%;
  margin-top: 10px;
}

.tick-slider-value-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.tick-slider-value {
  position: absolute;
  top: -2px;
  font-weight: bold;
  padding: 2px 10px;
  border: 1px solid #d9d8d9;
  border-radius: 4px;
  font-size: 16px;
}
.tick-slider-value > div {
  animation: bulge 0.3s ease-out;
}

.tick-slider-background {
  position: absolute;
  bottom: 5px;
  left: 0;
  height: 16px;
  pointer-events: none;
  border-radius: 100px;
  width: 100%;
  background-color: #c4c4c4;
}

.tick-slider-tick-container {
  position: absolute;
  bottom: 5px;
  left: 0;
  height: 16px;
  pointer-events: none;
  border-radius: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2px;
}

.tick-slider-tick {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
}

.tick-slider-label {
  opacity: 0.85;
  transition: opacity 0.1s ease;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 16px;
  margin-top: -2px;
  font-weight: 100;
}

.tick-slider-label.hidden {
  opacity: 0;
}

input[type=range] {
  -webkit-appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 5px 0;
}
input[type=range]:focus {
  outline: none;
}
input[type=range]:focus::-webkit-slider-thumb {
  transform: scale(1.2);
}
input[type=range]:focus::-moz-range-thumb {
  transform: scale(1.2);
}
input[type=range]:focus::-webkit-slider-runnable-track {
  background: none;
}
input[type=range]::-moz-focus-outer {
  border: 0;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  background: #1D2954;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  margin-top: -8px;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
input[type=range]:hover::-webkit-slider-thumb {
  transform: scale(1.2);
}
input[type=range]:hover::-moz-range-thumb {
  transform: scale(1.2);
}
input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  background: #c1c0c1;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 12px;
  cursor: pointer;
  background: none;
  border-radius: 4px;
}
input[type=range]::-moz-range-track {
  width: 100%;
  height: 12px;
  cursor: pointer;
  background: none;
  border-radius: 4px;
}
input[type=range]:active::-webkit-slider-runnable-track {
  background: none;
}

.xdsoft_datetimepicker {
  padding: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px !important;
  border: 1px solid #d9d9d9 !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker {
  width: 120px !important;
  margin: 0 auto !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_prev {
  margin: 5px auto !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_next {
  margin: 5px auto !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box {
  border: none !important;
  height: 250px !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_time {
  background-color: transparent !important;
  font-size: 14px !important;
  height: 30px !important;
  line-height: 30px !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_time:hover {
  background: #1D2954 !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  background: #1D2954 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_datepicker.active {
  background: transparent !important;
}
.xdsoft_datetimepicker .xdsoft_timepicker.active {
  background: transparent !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover {
  background: #1D2954 !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default {
  background: #1D2954 !important;
  box-shadow: none;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current {
  background: #1D2954 !important;
  box-shadow: none !important;
}

@media screen and (max-width: 979px) {
  .sleep-table-list li {
    flex: 0 0 140px;
  }
  .single-page .survey-section {
    padding: 0 1rem;
  }
}
@media screen and (max-width: 649px) {
  .custom-dd {
    max-width: 100%;
  }
  .sleep-table-list li {
    flex: 0 0 100px;
  }
  .horizontal-header {
    padding: 0.5rem;
  }
  .single-page .survey-section .survey-section-header {
    min-height: 85px;
  }
  .single-page .survey-section .survey-section-header.fixed {
    top: 70px;
    float: left;
  }
  .sub-header span.error-message {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}
.g-newsletter {
  position: relative;
  margin-top: 53px;
  background-color: var(--org-color);
  color: #fff;
  background-size: contain, 590px;
  background-repeat: no-repeat;
  float: left;
  width: 100%;
  margin-left: 0 !important;
  padding-top: 34px;
  padding-bottom: 40px;
  /*
    @include breakpoint('xlarge+') {
      margin-top: 75px;
      padding: {
        top: 65px;
        bottom: 70px;
      }
      min-height: 400px;
    }
    */
}
.g-newsletter::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -15px;
  right: -15px;
  top: 0;
  bottom: 0;
  background-color: inherit;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-newsletter::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-newsletter::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-newsletter::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-newsletter::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-newsletter::before {
    left: -99em;
    right: -99em;
  }
}
.g-newsletter::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-newsletter {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 980px) {
  .g-newsletter {
    margin-top: 55px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-newsletter {
    padding-top: 40px;
    padding-bottom: 50px;
  }
}

.g-newsletter--muted {
  color: #9fa8da;
}

@media screen and (max-width: 413px) {
  .g-newsletter__logo {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-newsletter__logo {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-newsletter__logo {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-newsletter__logo {
    float: left;
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-newsletter__logo {
    float: left;
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-newsletter__logo {
    float: left;
    width: 590px;
    margin-left: 40px;
  }
}
.g-newsletter__logo svg {
  width: 106px;
  height: 30px;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-newsletter__logo {
    display: block;
    overflow: hidden;
  }
  .g-newsletter__logo:before, .g-newsletter__logo:after {
    content: "";
    display: block;
  }
  .g-newsletter__logo:before {
    margin-top: 2px;
  }
  .g-newsletter__logo:after {
    margin-bottom: -2px;
  }
}
@media screen and (min-width: 980px) {
  .g-newsletter__logo {
    display: block;
    overflow: hidden;
    padding-top: 10px;
  }
  .g-newsletter__logo:before, .g-newsletter__logo:after {
    content: "";
    display: block;
  }
  .g-newsletter__logo:before {
    margin-top: -2px;
  }
  .g-newsletter__logo:after {
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1160px) {
  .g-newsletter__logo {
    padding-top: 15px;
  }
  .g-newsletter__logo svg {
    width: 120px;
    height: 34px;
  }
}

.g-newsletter__main {
  padding-top: 15px;
}
@media screen and (max-width: 413px) {
  .g-newsletter__main {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-newsletter__main {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-newsletter__main {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-newsletter__main {
    float: left;
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-newsletter__main {
    float: left;
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-newsletter__main {
    float: left;
    width: 590px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) {
  .g-newsletter__main {
    padding-top: 0;
    float: right;
  }
}
@media screen and (min-width: 1160px) {
  .g-newsletter__main {
    top: 50%;
    position: absolute;
    transform: translateY(-50%);
    right: 0;
  }
}

.g-newsletter__title,
.g-newsletter__subtitle {
  display: block;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  display: block;
  overflow: hidden;
}
.js-sans-loaded .g-newsletter__title,
.js-sans-loaded .g-newsletter__subtitle {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
.g-newsletter__title:before, .g-newsletter__title:after,
.g-newsletter__subtitle:before,
.g-newsletter__subtitle:after {
  content: "";
  display: block;
}
.g-newsletter__title:before,
.g-newsletter__subtitle:before {
  margin-top: 2px;
}
.g-newsletter__title:after,
.g-newsletter__subtitle:after {
  margin-bottom: -2px;
}
@media screen and (max-width: 649px) {
  .g-newsletter__title,
  .g-newsletter__subtitle {
    max-width: 376px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-newsletter__title,
  .g-newsletter__subtitle {
    font-size: 30px;
    line-height: 35px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (min-width: 650px) {
  .g-newsletter__title,
  .g-newsletter__subtitle {
    display: block;
    overflow: hidden;
  }
  .g-newsletter__title:before, .g-newsletter__title:after,
  .g-newsletter__subtitle:before,
  .g-newsletter__subtitle:after {
    content: "";
    display: block;
  }
  .g-newsletter__title:before,
  .g-newsletter__subtitle:before {
    margin-top: -2px;
  }
  .g-newsletter__title:after,
  .g-newsletter__subtitle:after {
    margin-bottom: 2px;
  }
}
@media screen and (min-width: 1160px) {
  .g-newsletter__title,
  .g-newsletter__subtitle {
    font-size: 36px;
    line-height: 40px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-newsletter__title {
    padding-right: calc((((100vw - 406px) / 12) * 1) + 0px);
  }
}

.g-newsletter__subtitle span,
.g-newsletter__title span {
  display: inline-block;
}

.g-newsletter__subtitle {
  color: rgba(255, 255, 255, 0.5);
}

.g-newsletter__form {
  margin-top: 25px;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-newsletter__form {
    margin-top: 30px;
  }
}
@media screen and (min-width: 980px) {
  .g-newsletter__form {
    margin-top: 30px;
  }
}

@media screen and (max-width: 649px) {
  .g-newsletter--pa {
    background-image: none;
  }
}

.m-post {
  margin-top: 33px;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
.js-sans-loaded .m-post {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
.m-post:first-child {
  margin-top: 0;
}
@media screen and (min-width: 650px) {
  .m-post {
    margin-top: 0;
  }
}

.m-post.m-post--mega {
  margin-bottom: 30px;
}

.m-post.m-post--no-border {
  border: 0;
}

.m-post__block-link {
  display: block;
}

.m-post__info a,
.m-post__title a:hover,
a.m-post__block-link:hover .m-post__title {
  color: #1D2954;
  text-decoration: underline;
}

a.m-post__block-link:hover .m-post__flip .m-post__title {
  color: #1a1a1a;
}

.m-post__aside {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
  min-height: 1px;
}
.js-sans-loaded .m-post__aside {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.center-module-three .m-post__title {
  font-size: 1.125rem;
  line-height: 1.5625rem;
}

.m-post__title {
  display: block;
  margin-top: 0.75rem;
  font-weight: 400;
}
@media screen and (min-width: 980px) {
  .m-post__title {
    margin-top: 1.5625rem;
  }
}
@media screen and (min-width: 1160px) {
  .m-post__title {
    margin-top: 1.875rem;
    display: block;
    overflow: hidden;
  }
  .m-post__title:before, .m-post__title:after {
    content: "";
    display: block;
  }
  .m-post__title:before {
    margin-top: -2px;
  }
  .m-post__title:after {
    margin-bottom: 2px;
  }
}
.m-post__title:first-child {
  margin-top: 0;
}
.m-post__title.underline {
  border-bottom: 1px solid #d9d9d9;
}

@media screen and (min-width: 1160px) {
  .center-module .m-post__title {
    margin-top: 1.5625rem;
  }
}
@media screen and (max-width: 979px) {
  .center-module .m-post__title {
    margin-top: 1.5625rem;
  }
}
.m-post__title em {
  font-style: italic;
}

@media screen and (min-width: 1160px) {
  .m-post__title--small {
    font-size: 18px;
    line-height: 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.m-post__title--small-block {
  display: block;
  margin-bottom: 15px;
}
@media screen and (min-width: 1160px) {
  .m-post__title--small-block {
    font-size: 18px;
    line-height: 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.m-post__title--small-block.top-margin {
  margin-top: 15px;
}

.m-post__inner__truncate_more,
.m-post__inner__truncate_less {
  font-size: 16px;
  line-height: 20px;
  font-weight: 800;
  cursor: pointer;
}

.m-post__inner__truncate .truncate-hide {
  display: none;
}

.m-post__title--large {
  margin-top: 15px;
}
@media screen and (min-width: 1160px) {
  .m-post__title--large {
    margin-top: 25px;
    font-size: 30px;
    line-height: 35px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.m-post__title--xlarge {
  margin-top: 23px;
  letter-spacing: -0.95px;
}
@media screen and (min-width: 980px) {
  .m-post__title--xlarge {
    margin-top: 18px;
  }
}
@media screen and (min-width: 1160px) {
  .m-post__title--xlarge {
    margin-top: 35px;
    font-size: 36px;
    line-height: 40px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.o-feature-list__list--feature .m-post__title--xlarge {
  max-width: 580px;
}

.m-post__title--icon {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1160px) {
  .m-post__title--icon::before, .m-post__title--icon::after {
    display: none;
  }
}

.m-post__cat + .m-post__title,
.m-post__meta + .m-post__title {
  margin-top: 7px;
}
@media screen and (min-width: 650px) {
  .m-post__cat + .m-post__title,
  .m-post__meta + .m-post__title {
    margin-top: 13px;
  }
}

.m-post__meta {
  display: none;
}
@media screen and (min-width: 650px) {
  .m-post__meta {
    display: block;
    margin-top: 13px;
  }
}
@media screen and (min-width: 980px) {
  .m-post__meta {
    margin-top: 15px;
  }
}

.m-post__image + .m-post__meta {
  margin-top: 22px;
}

.m-post__image-annual-report {
  border: 1px #d9d9d9 solid;
}
.m-post__image-annual-report:hover {
  border-color: #b2b2b2;
}

.m-post__meta:first-child {
  margin-top: 0;
}

ul.m-post__meta {
  margin-left: -30px;
}
ul.m-post__meta::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}

ul.m-post__meta li {
  padding-left: 30px;
  float: left;
}

.m-post__cat {
  display: block;
  margin-top: 15px;
  color: #1D2954;
}
@media screen and (min-width: 650px) {
  .m-post__cat {
    margin-top: 18px;
  }
}

.m-post__cat--dark {
  color: #404040;
}

.m-post__meta .m-post__cat {
  display: inline;
  margin-top: 0;
  margin-right: 15px;
}

.m-post__image {
  position: relative;
}
.m-post__image a {
  color: #fff;
}
.m-post__image a:hover {
  color: #1a1a1a;
}
.m-post__image .icon {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  transform: translateY(-50%);
}
.m-post__image .icon--play--large {
  width: 65px;
  height: 65px;
}

.o-feature-list__list--feature .m-post__image .icon--play {
  display: block;
}
@media screen and (min-width: 414px) {
  .o-feature-list__list--feature .m-post__image .icon--play {
    display: none;
  }
}

.o-feature-list__list--feature .m-post__image .icon--play--large {
  width: 96px;
  height: 96px;
  display: none;
}
@media screen and (min-width: 414px) {
  .o-feature-list__list--feature .m-post__image .icon--play--large {
    display: block;
  }
}
@media screen and (min-width: 650px) {
  .o-feature-list__list--feature .m-post__image .icon--play--large {
    width: 48px;
    height: 48px;
  }
}

.m-post__image iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.m-post__image--curtains:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: #000;
  opacity: 0.2;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.6, 1);
}

a:hover .m-post__image--curtains:before {
  opacity: 0.3;
}

.m-post__image--border img {
  border: 1px solid #d9d9d9;
}

.m-post__excerpt {
  font-size: 16px;
  display: block;
  margin-top: 17px;
}
@media screen and (min-width: 1160px) {
  .m-post__excerpt {
    margin-top: 25px;
    display: block;
    overflow: hidden;
  }
  .m-post__excerpt:before, .m-post__excerpt:after {
    content: "";
    display: block;
  }
  .m-post__excerpt:before {
    margin-top: -2px;
  }
  .m-post__excerpt:after {
    margin-bottom: 2px;
  }
}

.m-post__excerpt--large {
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.m-post__leading {
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-end;
  justify-content: space-between;
}

.m-post__leading-title {
  padding-bottom: 20px;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 600;
}
@media screen and (max-width: 413px) {
  .m-post__leading-title {
    width: calc((((100vw - 105px) / 6) * 2) + 15px);
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-post__leading-title {
    width: calc((((100vw - 160px) / 6) * 2) + 20px);
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-post__leading-title {
    width: calc((((100vw - 406px) / 12) * 3) + 60px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-post__leading-title {
    width: calc((((100vw - 424px) / 12) * 3) + 60px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-post__leading-title {
    width: calc((((100vw - 520px) / 12) * 3) + 80px);
  }
}
@media screen and (min-width: 1300px) {
  .m-post__leading-title {
    width: 275px;
  }
}
.js-sans-loaded .m-post__leading-title {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 1160px) {
  .m-post__leading-title {
    padding-bottom: 25px;
  }
}

.m-post__leading-image-spacer,
.m-post__leading-image {
  height: 70px;
}
@media screen and (min-width: 650px) {
  .m-post__leading-image-spacer,
  .m-post__leading-image {
    height: 80px;
  }
}
@media screen and (min-width: 1160px) {
  .m-post__leading-image-spacer,
  .m-post__leading-image {
    height: 100px;
  }
}

.m-post__leading-image {
  position: relative;
  overflow: hidden;
  vertical-align: bottom;
  border: 1px solid #bb8d05;
  border-bottom: 0;
}
@media screen and (max-width: 413px) {
  .m-post__leading-image {
    width: calc((((100vw - 105px) / 6) * 3) + 30px);
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-post__leading-image {
    width: calc((((100vw - 160px) / 6) * 3) + 40px);
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-post__leading-image {
    width: calc((((100vw - 406px) / 12) * 3) + 60px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-post__leading-image {
    width: calc((((100vw - 424px) / 12) * 3) + 60px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-post__leading-image {
    width: calc((((100vw - 520px) / 12) * 3) + 80px);
  }
}
@media screen and (min-width: 1300px) {
  .m-post__leading-image {
    width: 275px;
  }
}
.m-post__leading-image img {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  max-width: 85%;
  max-height: 33%;
  transform: translateY(-50%);
}

.m-post__more {
  display: none;
  margin-top: 10px;
  color: #1D2954;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
}
.js-sans-loaded .m-post__more {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) {
  .m-post__more {
    display: block;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1160px) {
  .m-post__more {
    margin-top: 18px;
  }
}

.m-post__muted {
  color: #666;
}

.m-post__muted-right {
  color: #666;
  float: right;
}

.m-post__muted .icon {
  color: #808080;
}

.m-post__more .icon {
  margin-left: 9px;
  vertical-align: top;
}

.m-post__muted--dark {
  color: #404040;
}

.m-post__icon {
  text-align: right;
}

.m-post__table {
  margin: 15px 0;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 25px;
  vertical-align: top;
}
.js-sans-loaded .m-post__table {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.m-post__table th {
  padding-right: 25px;
  text-align: left;
}

.m-post__table td {
  color: #666;
}

.m-post__info a:not(.btn):not(.m-post__muted),
.m-post__aside a:not(.btn):not(.m-post__muted) {
  color: #1D2954;
}
.m-post__info a:not(.btn):not(.m-post__muted) .icon,
.m-post__aside a:not(.btn):not(.m-post__muted) .icon {
  margin-left: 5px;
}
.m-post__info a:not(.btn):not(.m-post__muted) .icon:first-child,
.m-post__aside a:not(.btn):not(.m-post__muted) .icon:first-child {
  margin-left: 0;
}
.m-post__info a:not(.btn):not(.m-post__muted):hover,
.m-post__aside a:not(.btn):not(.m-post__muted):hover {
  color: #192347;
}

.m-post__people {
  color: #666;
}
@media screen and (min-width: 650px) {
  .m-post__people {
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 15px;
    line-height: 25px;
    display: block;
    margin-top: 20px;
  }
  .js-sans-loaded .m-post__people {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}
.m-post__people a {
  color: #1a1a1a;
}

.m-post__people a:hover {
  color: #1D2954;
}

#a17 {
  position: relative;
  padding-top: 70px;
}
@media screen and (max-width: 1159px) {
  #a17 {
    overflow-x: hidden;
  }
}
@media screen and (min-width: 1160px) {
  #a17 {
    padding-top: 90px;
  }
}

html {
  position: relative;
  left: 50%;
  right: 50%;
  width: 100vw;
  margin-left: -50vw;
  margin-right: -50vw;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    top: -46px;
  }
}

.js-g-lightbox-show,
.js-g-autocomplete-show,
.js-filters-show {
  overflow: hidden;
}

.main:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 11;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.js-g-nav-flyout-show .main:before,
.js-g-search-show .main:before {
  opacity: 1;
  visibility: visible;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

body {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #fff;
  color: #1a1a1a;
  font-feature-settings: "kern";
  font-kerning: normal;
  text-rendering: optimizeLegibility;
  font-variant-ligatures: common-ligatures;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* overflow-x: hidden; */
}
.js-sans-loaded body {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
body::after {
  position: absolute;
  left: -1px;
  top: -1px;
  width: 1px;
  height: 1px;
  margin: -1px 0 0 -1px;
  color: transparent;
  font: 0/0 a;
  text-shadow: none;
}

@media screen and (max-width: 413px) {
  head {
    font-family: "xsmall";
  }
  body::after {
    content: "xsmall";
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  head {
    font-family: "small";
  }
  body::after {
    content: "small";
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  head {
    font-family: "medium";
  }
  body::after {
    content: "medium";
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  head {
    font-family: "large";
  }
  body::after {
    content: "large";
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  head {
    font-family: "xlarge";
  }
  body::after {
    content: "xlarge";
  }
}
@media screen and (min-width: 1300px) {
  head {
    font-family: "xxlarge";
  }
  body::after {
    content: "xxlarge";
  }
}
.js--loading {
  position: relative;
}
.js--loading > * {
  opacity: 0.25;
}
.js--loading::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 30px;
  height: 30px;
  border: 5px solid transparent;
  border-top-color: #d9d9d9;
  border-radius: 50%;
  animation-name: loader;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-direction: normal;
  animation-timing-function: 195ms;
  animation-fill-mode: forwards;
}

@keyframes loader {
  100% {
    transform: rotate(360deg);
  }
}
#MathJax_Message {
  display: none;
}

.container,
html:not(.js-header-context-active) .g-header__inner,
.g-nav,
.g-context-nav .g-subnav,
.g-nav-mobile__inner,
.g-nav-mobile__subnav,
.g-nav-mobile__autocomplete,
#a17 {
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 413px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  .g-nav,
  .g-context-nav .g-subnav,
  .g-nav-mobile__inner,
  .g-nav-mobile__subnav,
  .g-nav-mobile__autocomplete,
  #a17 {
    padding-right: 15px;
    padding-left: 15px;
    width: auto;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  .g-nav,
  .g-context-nav .g-subnav,
  .g-nav-mobile__inner,
  .g-nav-mobile__subnav,
  .g-nav-mobile__autocomplete,
  #a17 {
    padding-right: 30px;
    padding-left: 30px;
    width: auto;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  .g-nav,
  .g-context-nav .g-subnav,
  .g-nav-mobile__inner,
  .g-nav-mobile__subnav,
  .g-nav-mobile__autocomplete,
  #a17 {
    padding-right: 38px;
    padding-left: 38px;
    width: auto;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  .g-nav,
  .g-context-nav .g-subnav,
  .g-nav-mobile__inner,
  .g-nav-mobile__subnav,
  .g-nav-mobile__autocomplete,
  #a17 {
    padding-right: 47px;
    padding-left: 47px;
    width: auto;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  .g-nav,
  .g-context-nav .g-subnav,
  .g-nav-mobile__inner,
  .g-nav-mobile__subnav,
  .g-nav-mobile__autocomplete,
  #a17 {
    padding-right: 40px;
    padding-left: 40px;
    width: auto;
  }
}
@media screen and (min-width: 1300px) {
  .container,
  html:not(.js-header-context-active) .g-header__inner,
  .g-nav,
  .g-context-nav .g-subnav,
  .g-nav-mobile__inner,
  .g-nav-mobile__subnav,
  .g-nav-mobile__autocomplete,
  #a17 {
    padding-right: 40px;
    padding-left: 40px;
    width: 100%;
    max-width: 1300px;
  }
}

.s-grid__inner::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.s-grid__inner.s-grid__inner__spacer {
  margin-bottom: 15px;
}
.s-grid__inner .s-grid__two-thirds {
  padding-bottom: 15px;
  border-bottom: 1px solid #d9d9d9;
}
.s-grid__inner .s-grid__two-thirds.no-bottom-border {
  border-bottom: none;
}

.s-grid--flex .s-grid__inner, .s-flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.s-grid--flex .s-grid__two-thirds,
.s-grid--flex .s-grid__one-third {
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 413px) {
  .s-grid__two-thirds {
    float: left;
    width: calc(100vw - 30px);
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .s-grid__two-thirds {
    float: left;
    width: calc(100vw - 60px);
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid__two-thirds {
    float: left;
    width: calc(100vw - 76px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .s-grid__two-thirds {
    float: left;
    width: calc((((100vw - 424px) / 12) * 8) + 210px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .s-grid__two-thirds {
    float: left;
    width: calc((((100vw - 520px) / 12) * 8) + 280px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .s-grid__two-thirds {
    float: left;
    width: 800px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 413px) {
  .s-grid__one-third {
    float: left;
    width: calc(100vw - 30px);
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .s-grid__one-third {
    float: left;
    width: calc(100vw - 60px);
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid__one-third {
    float: left;
    width: calc(100vw - 76px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .s-grid__one-third {
    float: left;
    width: calc((((100vw - 424px) / 12) * 4) + 90px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .s-grid__one-third {
    float: left;
    width: calc((((100vw - 520px) / 12) * 4) + 120px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .s-grid__one-third {
    float: left;
    width: 380px;
    margin-left: 40px;
  }
}
.s-grid__one-third:last-child {
  margin-top: 0;
}
@media screen and (min-width: 650px) {
  .s-grid__one-third:last-child {
    padding-top: 0;
  }
}
@media screen and (max-width: 649px) {
  .s-grid__one-third:last-child .o-module {
    margin-top: 40px;
  }
}

.s-grid__one-quarter {
  width: 100%;
}
@media screen and (min-width: 650px) {
  .s-grid__one-quarter {
    width: 50%;
  }
}
@media screen and (min-width: 980px) {
  .s-grid__one-quarter {
    width: 25%;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid--medium-half .s-grid__one-third,
  .s-grid--medium-half .s-grid__two-thirds {
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
  }
  .s-grid--medium-half .s-grid__one-third .o-events,
  .s-grid--medium-half .s-grid__two-thirds .o-events {
    margin-top: 52px;
    padding-top: 0;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid--medium-half .m-post--simple .m-post__block-link {
    padding-top: 20px;
    padding-bottom: 24px;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid--medium-half .m-post--simple .m-post__block-link {
    padding-top: 10px;
  }
}

.s-grid--border-top {
  margin-top: 35px;
  border-top: 1px solid #808080;
}
@media screen and (min-width: 650px) {
  .s-grid--border-top {
    margin-top: 66px;
  }
}
@media screen and (min-width: 1160px) {
  .s-grid--border-top {
    margin-top: 76px;
  }
}

.s-grid__one-third .m-post {
  margin-top: 33px;
}
.s-grid__one-third .m-post:first-child {
  margin-top: 0;
}

@media screen and (max-width: 413px) {
  .s-grid__two-thirds .m-post--two-col .m-post__image {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .s-grid__two-thirds .m-post--two-col .m-post__image {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid__two-thirds .m-post--two-col .m-post__image {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .s-grid__two-thirds .m-post--two-col .m-post__image {
    float: left;
    width: calc((((100vw - 424px) / 12) * 4) + 90px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .s-grid__two-thirds .m-post--two-col .m-post__image {
    float: left;
    width: calc((((100vw - 520px) / 12) * 4) + 120px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .s-grid__two-thirds .m-post--two-col .m-post__image {
    float: left;
    width: 380px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 413px) {
  .s-grid__two-thirds .m-post--two-col .m-post__main {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .s-grid__two-thirds .m-post--two-col .m-post__main {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid__two-thirds .m-post--two-col .m-post__main {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .s-grid__two-thirds .m-post--two-col .m-post__main {
    float: left;
    width: calc((((100vw - 424px) / 12) * 4) + 90px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .s-grid__two-thirds .m-post--two-col .m-post__main {
    float: left;
    width: calc((((100vw - 520px) / 12) * 4) + 120px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .s-grid__two-thirds .m-post--two-col .m-post__main {
    float: left;
    width: 380px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid__two-thirds .m-post--two-col .m-post__main {
    margin-top: 15px;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid--alt .s-grid__one-third,
  .s-grid--alt .s-grid__two-thirds {
    position: relative;
    float: none;
    width: auto;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid--alt .s-grid__one-third {
    margin-left: 0;
    padding-top: 30px;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid--alt .s-grid__one-third .m-post {
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    float: left;
    margin-top: 0;
    margin-left: 30px;
  }
}

@media screen and (max-width: 413px) {
  .s-grid--border-top\@xsmall {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (max-width: 413px) and (min-width: 650px) {
  .s-grid--border-top\@xsmall {
    margin-top: 66px;
  }
}
@media screen and (max-width: 413px) and (min-width: 1160px) {
  .s-grid--border-top\@xsmall {
    margin-top: 76px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .s-grid--border-top\@small {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) and (min-width: 650px) {
  .s-grid--border-top\@small {
    margin-top: 66px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) and (min-width: 1160px) {
  .s-grid--border-top\@small {
    margin-top: 76px;
  }
}
@media screen and (min-width: 414px) {
  .s-grid--border-top\@small\+ {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 414px) and (min-width: 650px) {
  .s-grid--border-top\@small\+ {
    margin-top: 66px;
  }
}
@media screen and (min-width: 414px) and (min-width: 1160px) {
  .s-grid--border-top\@small\+ {
    margin-top: 76px;
  }
}
@media screen and (max-width: 649px) {
  .s-grid--border-top\@small- {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (max-width: 649px) and (min-width: 650px) {
  .s-grid--border-top\@small- {
    margin-top: 66px;
  }
}
@media screen and (max-width: 649px) and (min-width: 1160px) {
  .s-grid--border-top\@small- {
    margin-top: 76px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .s-grid--border-top\@medium {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) and (min-width: 650px) {
  .s-grid--border-top\@medium {
    margin-top: 66px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) and (min-width: 1160px) {
  .s-grid--border-top\@medium {
    margin-top: 76px;
  }
}
@media screen and (min-width: 650px) {
  .s-grid--border-top\@medium\+ {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 650px) and (min-width: 650px) {
  .s-grid--border-top\@medium\+ {
    margin-top: 66px;
  }
}
@media screen and (min-width: 650px) and (min-width: 1160px) {
  .s-grid--border-top\@medium\+ {
    margin-top: 76px;
  }
}
@media screen and (max-width: 979px) {
  .s-grid--border-top\@medium- {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (max-width: 979px) and (min-width: 650px) {
  .s-grid--border-top\@medium- {
    margin-top: 66px;
  }
}
@media screen and (max-width: 979px) and (min-width: 1160px) {
  .s-grid--border-top\@medium- {
    margin-top: 76px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .s-grid--border-top\@large {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) and (min-width: 650px) {
  .s-grid--border-top\@large {
    margin-top: 66px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) and (min-width: 1160px) {
  .s-grid--border-top\@large {
    margin-top: 76px;
  }
}
@media screen and (min-width: 980px) {
  .s-grid--border-top\@large\+ {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 980px) and (min-width: 650px) {
  .s-grid--border-top\@large\+ {
    margin-top: 66px;
  }
}
@media screen and (min-width: 980px) and (min-width: 1160px) {
  .s-grid--border-top\@large\+ {
    margin-top: 76px;
  }
}
@media screen and (max-width: 1159px) {
  .s-grid--border-top\@large- {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (max-width: 1159px) and (min-width: 650px) {
  .s-grid--border-top\@large- {
    margin-top: 66px;
  }
}
@media screen and (max-width: 1159px) and (min-width: 1160px) {
  .s-grid--border-top\@large- {
    margin-top: 76px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .s-grid--border-top\@xlarge {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) and (min-width: 650px) {
  .s-grid--border-top\@xlarge {
    margin-top: 66px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) and (min-width: 1160px) {
  .s-grid--border-top\@xlarge {
    margin-top: 76px;
  }
}
@media screen and (min-width: 1160px) {
  .s-grid--border-top\@xlarge\+ {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 1160px) and (min-width: 650px) {
  .s-grid--border-top\@xlarge\+ {
    margin-top: 66px;
  }
}
@media screen and (min-width: 1160px) and (min-width: 1160px) {
  .s-grid--border-top\@xlarge\+ {
    margin-top: 76px;
  }
}
@media screen and (max-width: 1299px) {
  .s-grid--border-top\@xlarge- {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (max-width: 1299px) and (min-width: 650px) {
  .s-grid--border-top\@xlarge- {
    margin-top: 66px;
  }
}
@media screen and (max-width: 1299px) and (min-width: 1160px) {
  .s-grid--border-top\@xlarge- {
    margin-top: 76px;
  }
}
@media screen and (min-width: 1300px) {
  .s-grid--border-top\@xxlarge {
    margin-top: 35px;
    border-top: 1px solid #808080;
  }
}
@media screen and (min-width: 1300px) and (min-width: 650px) {
  .s-grid--border-top\@xxlarge {
    margin-top: 66px;
  }
}
@media screen and (min-width: 1300px) and (min-width: 1160px) {
  .s-grid--border-top\@xxlarge {
    margin-top: 76px;
  }
}
.s-grid--listing + .o-module--border-top {
  margin-top: 0px;
}

.s-grid--listing .m-post__aside {
  padding-bottom: 5px;
  display: flex;
  flex-direction: column;
}
.s-grid--listing .m-post__aside .m-post__meta {
  margin: 0;
  padding: 0;
}

.s-flex-wrap .s-grid__three-quarts {
  max-width: 44.125rem;
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .s-flex-wrap .s-grid__three-quarts {
    max-width: 38.75rem;
  }
}
.s-flex-wrap .s-grid__three-quarts > div:last-child {
  margin-bottom: 0;
}
.s-flex-wrap .s-grid__one-quart {
  width: 13.75rem;
}
@media screen and (max-width: 979px) {
  .s-flex-wrap .s-grid__one-quart {
    margin-top: 1.875rem;
  }
}

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

.justify-center {
  justify-content: center;
}

.align-center {
  align-items: center;
}

.g-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 12;
  height: 70px;
  background-color: #fff;
}
@media screen and (min-width: 1160px) {
  .g-header {
    height: 90px;
  }
}
.g-header:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid #d9d9d9;
}

.has-admin-bar .g-header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .has-admin-bar .g-header {
    top: 32px;
  }
}

.g-header__inner {
  font-size: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.g-header__logo {
  position: relative;
  display: inline-block;
  width: 106px;
  height: 70px;
  color: #1D2954;
  vertical-align: top;
}
.g-header__logo svg {
  position: absolute;
  top: 20px;
  left: 0;
}
@media screen and (min-width: 1160px) {
  .g-header__logo {
    width: 120px;
    height: 90px;
    z-index: 1;
  }
  .g-header__logo svg {
    top: 28px;
  }
}

.g-header__logo--full {
  opacity: 1;
  visibility: visible;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
  width: 106px;
  height: 30px;
  transition-delay: 125ms;
}
@media screen and (min-width: 1160px) {
  .g-header__logo--full {
    width: 120px;
    height: 34px;
  }
}

.g-header__logo--small {
  opacity: 0;
  visibility: hidden;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.g-header__menu {
  display: none;
  margin-top: 19px;
  padding-top: 0;
  font-size: 18px;
  line-height: 25px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
@media screen and (min-width: 980px) {
  .g-header__menu {
    display: inline-block;
    height: 70px;
    margin-left: 18px;
    border-left: 1px solid transparent;
    color: #1D2954;
    text-align: center;
    vertical-align: top;
    transition: border 195ms 0.1s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
  }
  .g-header__menu .icon {
    transition: transform 195ms cubic-bezier(0.4, 0, 0.2, 1);
  }
  .g-header__menu.toggle-active .icon {
    transform: rotate(180deg);
  }
}
@media screen and (min-width: 1160px) {
  .g-header__menu {
    height: 90px;
    margin-left: 24px;
    padding-top: 0;
    margin-top: 29px;
  }
}

.g-header__search,
.g-header__hamburger {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 70px;
}
.g-header__search .icon,
.g-header__hamburger .icon {
  position: absolute;
  top: 50%;
  left: 1px;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%);
}
@media screen and (min-width: 1160px) {
  .g-header__search,
  .g-header__hamburger {
    width: 90px;
    height: 90px;
  }
}

.g-header__search {
  display: none;
  background-color: #FFD53D;
  color: #40330E;
  transition: background-color 195ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 12;
  position: fixed;
  top: 0;
  right: 0;
}
.g-header__search:hover {
  background-color: #E8C239;
}
@media screen and (min-width: 980px) {
  .g-header__search {
    display: block;
  }
}

.home .g-header__search.has-announcement {
  background-color: #808080;
  color: white;
}
.home .g-header__search.has-announcement:hover {
  background-color: #999;
}

.has-admin-bar .g-header__search {
  top: 32px;
}

.g-header__search-on,
.g-header__search-off {
  opacity: 0;
  visibility: hidden;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

.g-header__search-on {
  color: #806104;
}

html:not(.js-g-search-show) .g-header__search .g-header__search-off {
  opacity: 1;
  visibility: visible;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

html.js-g-search-show .g-header__search .g-header__search-on {
  opacity: 1;
  visibility: visible;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
}

html.js-g-search-show .g-search {
  z-index: 1;
}

.g-header__hamburger {
  color: #1D2954;
  transition: all 225ms cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 980px) {
  .g-header__hamburger {
    display: none;
  }
}

.g-header__loader {
  top: 88px;
  position: fixed;
  left: 0;
  height: 0;
  width: 0;
  background: #1D2954;
}

.js-header-context-active .g-header__menu {
  width: 69px;
  border-left-color: #d9d9d9;
  animation: fade-in-out 195ms cubic-bezier(0.4, 0, 0.2, 1);
  margin-left: 0;
}
@media screen and (min-width: 1160px) {
  .js-header-context-active .g-header__menu {
    padding-top: 31px;
    width: 90px;
  }
}
.js-header-context-active .g-header__logo {
  width: 70px;
}
@media screen and (min-width: 1160px) {
  .js-header-context-active .g-header__logo {
    width: 90px;
  }
}
.js-header-context-active .g-header__logo svg {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin-top: -2px;
  margin-left: 2px;
}
.js-header-context-active .g-header__logo--small {
  opacity: 1;
  visibility: visible;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0ms;
}
.js-header-context-active .g-header__logo--full {
  opacity: 0;
  visibility: hidden;
  transition: opacity 195ms cubic-bezier(0.4, 0, 0.2, 1), visibility 0s 195ms cubic-bezier(0.4, 0, 0.2, 1);
  transition-delay: 0ms;
}
.js-header-context-active .g-header__hamburger {
  color: #fff;
}

@keyframes fade-in-out {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.g-footer {
  padding-top: 20px;
  padding-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  margin-top: 20px;
  position: relative;
}
@media screen and (min-width: 650px) {
  .g-footer {
    margin-top: 40px;
  }
}
.g-footer:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -99em;
  right: -99em;
  top: 0;
  border-top: 1px solid #d9d9d9;
  pointer-events: none;
}

.g-footer__bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-left: 0 !important;
  padding-top: 1rem;
  flex-direction: column;
  align-items: center;
}
.g-footer__bottom::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (min-width: 650px) {
  .g-footer__bottom {
    margin-top: 40px;
    line-height: 100px;
    flex-direction: row;
    align-items: start;
  }
}
@media screen and (min-width: 980px) {
  .g-footer__bottom {
    margin-top: 50px;
    line-height: 90px;
  }
}
@media screen and (min-width: 1160px) {
  .g-footer__bottom {
    margin-top: 65px;
  }
}
.g-footer__bottom:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -99em;
  right: -99em;
  top: 0;
  border-top: 1px solid #d9d9d9;
  pointer-events: none;
}
.g-footer__bottom:after {
  content: none;
}
.g-footer__bottom ul {
  display: flex;
}
.g-footer__bottom ul li:not(:last-child) {
  margin-right: 10px;
}
.g-footer__bottom ul li a:hover {
  text-decoration: underline;
}

.g-footer__nav {
  margin-left: 0;
  text-align: center;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__nav {
    margin-top: 0px;
  }
}
@media screen and (min-width: 650px) {
  .g-footer__nav {
    padding-top: 5px;
    display: block;
    overflow: hidden;
    text-align: right;
  }
  .g-footer__nav:before, .g-footer__nav:after {
    content: "";
    display: block;
  }
  .g-footer__nav:before {
    margin-top: -2px;
  }
  .g-footer__nav:after {
    margin-bottom: 2px;
  }
}

.g-footer__inner {
  line-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 650px) {
  .g-footer__inner {
    flex-direction: row;
  }
}

@media screen and (max-width: 413px) {
  .g-footer__legal {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-footer__legal {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__legal {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-footer__legal {
    float: left;
    width: calc((((100vw - 424px) / 12) * 8) + 210px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-footer__legal {
    float: left;
    width: calc((((100vw - 520px) / 12) * 8) + 280px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-footer__legal {
    float: left;
    width: 800px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 649px) {
  .g-footer__legal {
    padding-top: 0;
    line-height: 20px;
    margin-top: -20px;
  }
  .g-footer__legal:before {
    display: none;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__legal {
    padding-top: 0px;
    margin-top: 0px;
  }
}

@media screen and (max-width: 649px) {
  .g-footer__legal li {
    margin-top: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__legal li {
    display: inline-block;
    margin-left: 25px;
    vertical-align: top;
    margin-top: 0px;
  }
}

.g-footer__legal,
.g-footer__social {
  color: #404040;
  white-space: nowrap;
  display: flex;
  justify-content: end;
}

.g-footer__logo {
  margin: 0 !important;
}
@media screen and (max-width: 413px) {
  .g-footer__logo {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-footer__logo {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__logo {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-footer__logo {
    float: left;
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-footer__logo {
    float: left;
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-footer__logo {
    float: left;
    width: 590px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) {
  .g-footer__logo svg {
    width: 106px;
    height: 30px;
  }
}
@media screen and (min-width: 1160px) {
  .g-footer__logo svg {
    width: 120px;
    height: 34px;
  }
}
.g-footer__logo a {
  text-align: center;
  width: 100%;
  display: inline-block;
  margin-bottom: 10px;
  line-height: initial;
}
@media screen and (min-width: 650px) {
  .g-footer__logo a {
    text-align: left;
    width: auto;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 650px) {
  .g-footer__logo {
    padding-top: 10px;
  }
}

.g-footer__nav ul {
  margin-top: -15px;
  display: block;
  overflow: hidden;
}
.g-footer__nav ul::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__nav ul {
    padding-top: 40px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-footer__nav ul {
    padding-top: 50px;
  }
}
@media screen and (min-width: 1160px) {
  .g-footer__nav ul {
    padding-top: 55px;
  }
}
.g-footer__nav ul:before, .g-footer__nav ul:after {
  content: "";
  display: block;
}
.g-footer__nav ul:before {
  margin-top: -2px;
}
.g-footer__nav ul:after {
  margin-bottom: 2px;
}

.g-footer__nav ul li {
  margin-top: 15px;
  line-height: 20px;
  height: 20px;
  overflow: visible;
}
@media screen and (max-width: 413px) {
  .g-footer__nav ul li {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-footer__nav ul li {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__nav ul li {
    float: left;
    width: calc((((100vw - 406px) / 12) * 3) + 60px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-footer__nav ul li {
    float: left;
    width: calc((((100vw - 424px) / 12) * 2) + 30px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-footer__nav ul li {
    float: left;
    width: calc((((100vw - 520px) / 12) * 2) + 40px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-footer__nav ul li {
    float: left;
    width: 170px;
    margin-left: 40px;
  }
}

@media screen and (max-width: 413px) {
  .g-footer__social {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-footer__social {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__social {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-footer__social {
    float: left;
    width: calc((((100vw - 424px) / 12) * 4) + 90px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-footer__social {
    float: left;
    width: calc((((100vw - 520px) / 12) * 4) + 120px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-footer__social {
    float: left;
    width: 380px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 649px) {
  .g-footer__social {
    padding-top: 0;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-footer__social {
    margin-top: 0px;
    padding-top: 0px;
    text-align: right;
  }
}

.g-footer__social li {
  vertical-align: middle;
}
@media screen and (max-width: 649px) {
  .g-footer__social li {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .g-footer__social li:first-child {
    margin-right: 26px;
  }
}

.g-footer__social .icon {
  position: relative;
  border: 1px solid #808080;
  border-radius: 50%;
  padding: 15px;
  box-sizing: content-box;
  display: inline-block;
  vertical-align: middle;
  margin-left: 26px;
}

.g-footer__social a:hover {
  color: #1D2954;
}
.g-footer__social a:hover .icon {
  background-color: #1D2954;
  color: #fff;
  border-color: #1D2954;
}

.g-footer__text {
  max-width: 540px;
  display: inline-block;
  font-size: 20px;
}

.o-module--no-margin {
  margin-top: 0px;
  margin-bottom: 0px;
}

.o-module--no-margin-top {
  margin-top: 0px;
}

.o-module--no-margin-bottom {
  margin-bottom: 0px;
}

.o-module--small-margin-bottom {
  margin-bottom: 35px;
}

.o-margin-l-top {
  margin-top: 1.5rem;
}

.o-margin-xl-bottom {
  margin-bottom: 2rem;
}

@media screen and (max-width: 649px) {
  .o-margin-m-bottom--small {
    margin-bottom: 1rem;
  }
}

/*
.page-template-22_our_team {
  .o-area-header+.o-default-list {
    margin-top: 0;

  }
  .o-area-header--small {
    .o-area-header__inner {
        margin-bottom: 0;
    }
  }
}

.o-area-header--home {
  margin-bottom: -30px;

  @include breakpoint('xlarge+') {
    margin-bottom: -36px;
  }

}
.o-area-header--home + section {
  @include breakpoint('medium-'){
    .s-grid__two-thirds img {
      margin-top: 10px;
    }
  }
} */
.o-area-header--home .o-area-header__inner {
  position: relative;
  color: #fff;
}
.o-area-header--home .o-area-header__inner::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -99em;
  right: -99em;
  top: 0;
  bottom: 0;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
  background-color: #1D2954;
}

.o-area-header .o-area-header__main h1.logo,
.g-subnav + .o-area-header .o-area-header__main h1.logo {
  color: #fff;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  max-width: 600px;
  margin-bottom: 20px;
}
@media screen and (min-width: 650px) {
  .o-area-header .o-area-header__main h1.logo,
  .g-subnav + .o-area-header .o-area-header__main h1.logo {
    font-size: 42px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header .o-area-header__main h1.logo,
  .g-subnav + .o-area-header .o-area-header__main h1.logo {
    font-size: 48px;
  }
}
.o-area-header .o-area-header__main p,
.g-subnav + .o-area-header .o-area-header__main p {
  font-size: 22px;
  line-height: 30px;
}
.o-area-header .o-area-header__main__btn-wrapper,
.g-subnav + .o-area-header .o-area-header__main__btn-wrapper {
  margin-left: 0;
  margin-top: 16px;
}
@media screen and (min-width: 980px) {
  .o-area-header .o-area-header__main,
  .g-subnav + .o-area-header .o-area-header__main {
    padding-top: 2.5rem;
    padding-bottom: 4.875rem;
  }
}

/*
.o-area-header--border {
  margin-bottom: 40px;
}

.o-area-header__intro {
  @include breakpoint('xlarge+') {
    padding-bottom: 114px;
  }
}

.o-area-header--small .o-area-header__main {
  @include breakpoint('small-') {
    padding-top: 30px;
    padding-bottom: 0;
  }
  @include breakpoint('medium') {
    padding-top: 35px;
    @include tuck(-1px);
  }
  @include breakpoint('large+') {
    @include tuck(2px);
  }
  @include breakpoint('large') {
    padding-top: 40px;
  }
  @include breakpoint('xlarge+') {
    padding-top: 35px;
  }
}

.o-area-header--small .o-area-header__intro {
  @include breakpoint('small-') {
    padding-top: 15px;
    padding-bottom: 40px;
    @include tuck(-2px);
  }

  @include breakpoint('medium') {
    padding-top: 25px;
    padding-bottom: 35px;
    @include tuck(2px);
  }
  @include breakpoint('large-') {
    @include font-style(15, 25);
  }
  @include breakpoint('large') {
    @include font-style(15, 25);
    padding-bottom: 45px;
  }
}

.o-area-header--small .o-area-header__inner {
    min-height: 100px;
    margin-bottom: 16px;

    .o-filters {
      margin-top: 2.5rem;
      margin-left: 0.9375rem;

      .m-filter-panel__group {
        color: $color__black--60;
        font-size: 0.9375rem;
        line-height: 1.4375rem;
        font-weight: 300;
        position: relative;
        min-height: 4.25rem;
        h2 {
          display: none;
        }

        ul {
          position: absolute;
          overflow: auto;
          display: block;
          max-height: 30.625rem;
          width: 100%;
          background-color: white;
          z-index: 1;
          border: 1px solid $color__black--15;
          box-shadow: 0px 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
        }

        &.collapse {
          ul {
            display: none;
          }

          h2 {
            height: 3rem;
            width: 100%;
            border: 1px solid $color__black--15;
            display: block;
            padding-top: 0.8125rem;
            padding-left: 1.25rem;
            position: relative;

            &:after {
              position: absolute;
              content: "";
              top: 1.25rem;
              right: 1.25rem;
              height: 0.4375rem;
              width: 0.4375rem;
              border: 2px solid black;
              border-top: none;
              border-left: none;
              transform: rotate(45deg);
            }
          }
        }

        li {
          margin-top: 1.5rem;

          &:first-child {
            margin-top: 1rem;
            position: relative;

            &:after {
              position: absolute;
              content: "";
              top: 0.625rem;
              right: 1.25rem;
              height: 0.4375rem;
              width: 0.4375rem;
              border: 2px solid black;
              border-top: none;
              border-left: none;
              transform: rotate(225deg);
            }
          }

          &:last-child {
            margin-bottom: 2.0625rem;
          }

          &.indent-level-1 {
            padding-left: 1.25rem;
          }

          &.indent-level-2 {
            padding-left: 1.875rem;
          }
        }

        h2,
        .active {
          color: $color__black--90;
          font-weight: 500;
        }

      }

      .m-filter-panel__title {
        font-size: 1.5rem;
        line-height: 1.875rem;
        font-weight: 300;
        border-bottom: 1px solid $color__black--14;
        padding-bottom: 1rem;
        span{
          display: block;
          margin-top: 1.875rem;
        }
      }

    }

  @include breakpoint('medium+'){
    .o-area-header__main {
      padding-bottom: 1.25rem;
    }
    .o-filters {
      clear: left;
      margin-left: 1.875rem;
      margin-top: 0;
      .m-filter-panel__group{
        width: 19.375rem;
        float: right;
        padding-bottom: 1.875rem;
        min-height: 4.875rem;
        h2 {
          padding-left: 1.6875rem;
        }
      }
      .m-filter-panel__title{
        clear: right;
        span {
          margin-top: 0;
        }
      }
    }
  }
  @include breakpoint('large+') {
    .o-filters {
      .m-filter-panel__title{
        span {
          font-size: 1.875rem;
          line-height: 2.5rem;
        }
      }
    }
  }
  @include breakpoint('xlarge+') {
    .o-filters {
      margin-left: 2.5rem;
      .m-filter-panel{
        .m-filter-panel__group {
          padding-top: 0;
        }
      }
    }
  }
}

.o-area-header__intro p {
  margin-top: 25px;
}

$o-area-header--home__intro: (
  medium: 12,
);

.o-area-header--home .o-area-header__main {
  @include breakpoint('small-') {
    padding-bottom: 0;
    padding-top: 40px;
    svg {
      width: 62px;
      height: 20px;
    }
  }

  @include breakpoint('medium') {
    padding-top: 40px;
    padding-bottom: 0;
    svg {
      width: 79px;
      height: 26px;
    }
  }

  @include breakpoint('large') {
    padding-top: 40px;
    svg {
      width: 339px;
      height: 40px;
    }
  }

  @include breakpoint('xlarge+') {
    padding-top: 50px;
  }
}

.o-area-header--home .o-area-header__intro {
  @include width-multi($o-area-header--home__intro);

  @include breakpoint('small-') {
    padding-bottom: 33px;
  }

  @include breakpoint('medium-') {
    padding-top: 15px;
    @include font-style(18, 25);
  }

  @include breakpoint('medium') {
    padding-bottom: 45px;
  }

  @include breakpoint('large+') {
    padding-top: 35px;
    padding-bottom: 55px;
  }

  @include breakpoint('xlarge+') {
    padding-top: 40px;
    padding-bottom: 80px;
    @include tuck(1px);
  }
}

.o-area-header--border-contained--light {
  border-bottom: 1px solid $border__grey;
}

.o-area-header--wtmin {
  min-height: 210px;
}

.o-area-header--medium .o-area-header__inner {
  padding-bottom: 25px;
}

*/
.o-area-header {
  background-size: contain;
  background-repeat: no-repeat;
}

.o-area-header__inner::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.o-area-header--blue .o-area-header__inner,
.o-area-header--fill .o-area-header__inner {
  min-height: 140px;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header--blue .o-area-header__inner,
  .o-area-header--fill .o-area-header__inner {
    min-height: 190px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header--blue .o-area-header__inner,
  .o-area-header--fill .o-area-header__inner {
    min-height: 255px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header--blue .o-area-header__inner,
  .o-area-header--fill .o-area-header__inner {
    min-height: 275px;
    max-height: 320px;
  }
}

@media screen and (min-width: 980px) {
  .o-area-header--fill.o-area-header--short .o-area-header__inner {
    min-height: 12.0625rem;
  }
}

@media screen and (min-width: 980px) {
  .o-area-header--before-feature-list.o-area-header--before-feature-list .o-area-header__inner {
    min-height: 170px;
  }
}

@media screen and (min-width: 650px) {
  .o-area-header__nav {
    padding-top: 10px;
  }
}
@media screen and (min-width: 980px) {
  .o-area-header__nav {
    padding-top: 20px;
  }
}

@media screen and (max-width: 649px) {
  .o-area-header--nav-below {
    background-color: #fff;
  }
}

.o-area-header__inner .o-area-header__main {
  padding-top: 22px;
  padding-bottom: 16px;
  margin-left: 0 !important;
}
@media screen and (max-width: 413px) {
  .o-area-header__inner .o-area-header__main {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-area-header__inner .o-area-header__main {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header__inner .o-area-header__main {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header__inner .o-area-header__main {
    float: left;
    width: calc((((100vw - 424px) / 12) * 5.95) + 148.5px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-area-header__inner .o-area-header__main {
    float: left;
    width: calc((((100vw - 520px) / 12) * 5.95) + 198px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-area-header__inner .o-area-header__main {
    float: left;
    width: 584.75px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) {
  .o-area-header__inner .o-area-header__main {
    padding-top: 33px;
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header__inner .o-area-header__main {
    padding-top: 38px;
    padding-bottom: 65px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header__inner .o-area-header__main {
    padding-top: 48px;
    padding-bottom: 70px;
  }
  .o-area-header__inner .o-area-header__main.padding-bottom-less {
    padding-bottom: 2.7rem;
  }
}

.special-report-header hr {
  border: 0;
  border-top: 1px solid #d9d9d9;
  margin: 0;
  margin-top: 2.5rem;
}
.special-report-header .hero-area .o-area-header__hero-image {
  width: 100vw;
  margin-left: -1.875rem;
}
.special-report-header .hero-area .o-area-header__hero-text p, .special-report-header .hero-area .o-area-header__hero-text div {
  display: block;
  width: 16.25rem;
  margin-right: 5.9375rem;
  margin-top: 0.9375rem;
  margin-bottom: 2.1875rem;
  font-size: 1rem;
  line-height: 1.5625rem;
}
.special-report-header .hero-area .o-area-header__hero-text div {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  line-height: 2.0625rem;
}
.special-report-header .hero-area .o-area-header__hero-text hr {
  margin-top: 2.1875rem;
}
.special-report-header .o-area-header__inner {
  position: relative;
}
.special-report-header .o-area-header__inner .o-area-header__main {
  padding-top: 0.9375rem;
  padding-bottom: 2.5rem;
}
.special-report-header .o-area-header__inner .o-area-header__main a:hover {
  text-decoration: underline;
}
.special-report-header .o-area-header__inner .o-area-header__main .m-meta__muted {
  color: #1a1a1a;
  margin-bottom: 1.25rem;
}
.special-report-header .o-area-header__inner .o-area-header__main .m-meta strong {
  padding-bottom: 0.625rem;
}
.special-report-header .o-area-header__inner .o-area-header__intro {
  font-size: 0.9375rem;
  line-height: 1.25rem;
  padding-bottom: 0;
}
.special-report-header .o-area-header__inner .o-page-header__download {
  display: none;
}
.special-report-header .o-area-header__inner .o-page-header__aside-right {
  position: absolute;
  right: 0;
  top: 0.9375rem;
}
@media screen and (max-width: 649px) {
  .special-report-header .hero-area .o-area-header__hero-image {
    margin-left: -0.9375rem;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .special-report-header .hero-area .o-area-header__hero-image {
    margin-left: -1.875rem;
  }
}
@media screen and (min-width: 650px) {
  .special-report-header .hero-area {
    color: white;
    background: black;
    display: flex;
    flex-direction: row-reverse;
    width: 100vw;
    margin-left: -2.375rem;
  }
  .special-report-header .hero-area .o-area-header__hero-image {
    width: 50%;
    margin-left: 0;
    flex-grow: 1;
  }
  .special-report-header .hero-area .o-area-header__hero-text {
    width: 50%;
    flex-grow: 1;
  }
  .special-report-header .hero-area .o-area-header__hero-text div {
    margin-top: 25%;
    margin-left: 1.875rem;
  }
  .special-report-header .hero-area .o-area-header__hero-text p {
    margin-left: 1.875rem;
    margin-top: 1.875rem;
  }
  .special-report-header .hero-area hr {
    display: none;
  }
  .special-report-header .o-area-header__inner .o-area-header__main,
  .special-report-header .o-area-header__inner .o-area-header__intro {
    float: none;
    width: calc(100% - 1.875rem);
  }
  .special-report-header .o-area-header__inner .o-area-header__main {
    padding-top: 1.5625rem;
  }
  .special-report-header .o-area-header__inner .o-area-header__intro {
    padding-top: 0.9375rem;
  }
  .special-report-header .o-area-header__inner hr {
    margin-top: 3.4375rem;
  }
  .special-report-header .o-area-header__inner .o-page-header__aside-right {
    top: 1.5625rem;
  }
}
@media screen and (min-width: 980px) {
  .special-report-header .hero-area {
    margin-left: -2.9375rem;
  }
  .special-report-header .hero-area .o-area-header__hero-text div {
    font-size: 2.25rem;
    line-height: 3.125rem;
    width: auto;
    margin-left: 2.9375rem;
    margin-bottom: 3.125rem;
  }
  .special-report-header .hero-area .o-area-header__hero-text p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    width: auto;
    margin-left: 2.9375rem;
  }
  .special-report-header .o-area-header__inner {
    display: flex;
    flex-direction: row;
    margin-top: 4.0625rem;
  }
  .special-report-header .o-area-header__inner .o-area-header__main {
    width: 20%;
    padding-top: 0.9375rem;
  }
  .special-report-header .o-area-header__inner .o-area-header__main .m-meta__muted {
    margin-bottom: 2.3125rem;
  }
  .special-report-header .o-area-header__inner .o-area-header__intro {
    width: 50%;
  }
  .special-report-header .o-area-header__inner .o-page-header__download {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3.25rem;
    border: 1px solid #d9d9d9;
    text-align: center;
    font-size: 0.9375rem;
    line-height: 1.25rem;
    color: #666;
  }
  .special-report-header .o-area-header__inner .o-page-header__download:hover {
    background: #f6f6f6;
  }
  .special-report-header .o-area-header__inner .m-share {
    margin-top: 1.875rem;
    text-align: right;
  }
  .special-report-header .o-area-header__inner hr {
    display: none;
  }
  .special-report-header .o-area-header__inner .o-page-header__aside-right {
    position: static;
    padding-top: 0.9375rem;
  }
  .special-report-header .o-area-header__inner .o-page-header__aside-right .icon--arrow {
    transform: rotate(90deg);
    margin-right: 0.3125rem;
  }
}
@media screen and (min-width: 1160px) {
  .special-report-header .hero-area {
    margin-left: -2.5rem;
  }
  .special-report-header .hero-area .o-area-header__hero-text div {
    font-size: 3rem;
    line-height: 3.4375rem;
    width: auto;
    height: auto;
    margin-left: 5rem;
  }
  .special-report-header .hero-area .o-area-header__hero-text p {
    font-size: 1.5rem;
    line-height: 1.875rem;
    width: auto;
    margin-left: 5rem;
  }
  .special-report-header.o-area-header.o-area-header--small .o-area-header__inner .o-area-header__main,
  .special-report-header.o-area-header.o-area-header--small .o-area-header__inner .o-area-header__intro {
    padding-top: 0.9375rem;
  }
  .special-report-header.o-area-header.o-area-header--small .o-area-header__inner .o-area-header__intro {
    font-size: 1.125rem;
    line-height: 1.5625rem;
  }
  .special-report-header.o-area-header.o-area-header--small .o-area-header__inner .o-area-header__intro a {
    text-decoration: underline;
  }
}
@media screen and (min-width: 1300px) {
  .special-report-header .hero-area {
    margin-left: calc(610px - 50vw);
    padding-left: calc(50vw - 610px);
    padding-right: calc(50vw - 610px);
  }
}

/* Code for header image for Series in template single-series-articles.php */
.o-area-header__main.with_image {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.o-area-header__main.with_image .o-area-header__title {
  padding: 20px 15px 0 0;
}

.g-context-nav + .o-area-header__inner .o-area-header__main {
  padding-top: 22px;
  padding-bottom: 16px;
}
@media screen and (max-width: 413px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    float: left;
    width: calc((((100vw - 424px) / 12) * 5.95) + 148.5px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    float: left;
    width: calc((((100vw - 520px) / 12) * 5.95) + 198px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    float: left;
    width: 584.75px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    padding-top: 33px;
    padding-bottom: 32px;
  }
}
@media screen and (min-width: 980px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    padding-top: 38px;
    padding-bottom: 65px;
  }
}
@media screen and (min-width: 1160px) {
  .g-context-nav + .o-area-header__inner .o-area-header__main {
    padding-bottom: 60px;
  }
}

.o-area-header__main .o-area-header__logo {
  display: inline-block;
  margin-top: 2px;
}
@media screen and (min-width: 650px) {
  .o-area-header__main .o-area-header__logo {
    margin-top: -4px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header__main .o-area-header__logo {
    margin-top: 16px;
  }
}

.o-area-header .g-context-nav .g-subnav:after {
  bottom: 0;
}
@media screen and (min-width: 980px) {
  .o-area-header .g-context-nav .g-subnav:after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
}

.o-area-header__inner + .g-context-nav .g-subnav:after {
  border-bottom: 0;
}

.o-area-header__inner + .g-context-nav {
  display: none;
}
.o-area-header__inner + .g-context-nav.component-built {
  display: block;
}
@media screen and (min-width: 980px) {
  .o-area-header__inner + .g-context-nav {
    display: block;
  }
}

@media screen and (min-width: 1160px) {
  .g-subnav + .o-area-header .o-area-header__main {
    padding-top: 38px;
    padding-bottom: 0;
  }
}

.o-area-header__social,
.o-area-header__intro {
  margin-left: 0 !important;
  padding-bottom: 63px;
  padding-top: 63px;
}
@media screen and (max-width: 413px) {
  .o-area-header__social,
  .o-area-header__intro {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-area-header__social,
  .o-area-header__intro {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header__social,
  .o-area-header__intro {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header__social,
  .o-area-header__intro {
    float: left;
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-area-header__social,
  .o-area-header__intro {
    float: left;
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-area-header__social,
  .o-area-header__intro {
    float: left;
    width: 590px;
    margin-left: 40px;
  }
}
@media screen and (min-width: 650px) {
  .o-area-header__social,
  .o-area-header__intro {
    padding-top: 59px;
    padding-bottom: 59px;
    margin-left: 15px;
  }
}

.o-area-header--landing .o-area-header__intro {
  padding-top: 4px;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .o-area-header--landing .o-area-header__intro {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) {
  .o-area-header--landing .o-area-header__intro {
    padding-top: 31px;
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .js-sans-loaded .o-area-header--landing .o-area-header__intro {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}
@media screen and (min-width: 980px) {
  .o-area-header--landing .o-area-header__intro {
    padding-top: 41px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header--landing .o-area-header__intro {
    padding-top: 52px;
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .js-sans-loaded .o-area-header--landing .o-area-header__intro {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}

.o-area-header__intro {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 20px;
  font-weight: 300;
}
.js-sans-loaded .o-area-header__intro {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 1160px) {
  .o-area-header__intro {
    float: right;
    font-size: 18px;
    line-height: 25px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
.o-area-header__intro p {
  margin-top: 20px;
}
.o-area-header__intro p:first-child {
  margin-top: 0;
}
.o-area-header__intro li {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.o-area-header__intro .btn {
  margin-top: 45px;
}

/*For styling links in the blue header*/
.o-area-header--blue .o-area-header__inner .o-area-header__intro p > a {
  color: #ffffff;
}

@media screen and (min-width: 980px) {
  .o-area-header__social {
    text-align: right;
  }
}

.o-area-header__title,
.o-area-header__subtitle {
  letter-spacing: -0.015em;
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 30px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .o-area-header__title,
.js-sans-loaded .o-area-header__subtitle {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header__title,
  .o-area-header__subtitle {
    letter-spacing: -0.015em;
    font-size: 30px;
    line-height: 35px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (min-width: 980px) {
  .o-area-header__title,
  .o-area-header__subtitle {
    letter-spacing: -0.95px;
    font-size: 36px;
    line-height: 40px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header__title,
  .o-area-header__subtitle {
    letter-spacing: -1px;
    font-size: 42px;
    line-height: 45px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.o-area-header--only-title .o-area-header__title {
  width: calc(100vw - 30px);
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-area-header--only-title .o-area-header__title {
    width: calc((((100vw - 160px) / 6) * 5) + 80px);
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header--only-title .o-area-header__title {
    width: calc((((100vw - 406px) / 12) * 8.5) + 225px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header--only-title .o-area-header__title {
    width: calc((((100vw - 424px) / 12) * 9) + 240px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-area-header--only-title .o-area-header__title {
    width: calc((((100vw - 520px) / 12) * 9) + 320px);
  }
}
@media screen and (min-width: 1300px) {
  .o-area-header--only-title .o-area-header__title {
    width: 1115px;
  }
}

@media screen and (min-width: 650px) {
  .o-area-header__title span {
    display: inline-block;
  }
}

.o-area-header__title--large {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 1160px) {
  .o-area-header__title--large {
    padding-right: 25%;
    font-size: 49px;
    line-height: 55px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.o-area-header__subtitle {
  color: #9BA4D6;
}

.o-area-header__form {
  margin-top: 35px;
}

.o-area-header__meta {
  font-size: 15px;
  line-height: 25px;
  margin-top: 15px;
}

.o-area-header__meta a {
  color: #1D2954;
}

.o-area-header__more {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 15px;
  line-height: 25px;
  display: inline-block;
  margin-top: 15px;
  color: #666;
}
.js-sans-loaded .o-area-header__more {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.o-area-header--blue,
.o-area-header--fill {
  position: relative;
  background-color: #1D2954;
  color: #fff;
}
.o-area-header--blue::before,
.o-area-header--fill::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -15px;
  right: -15px;
  top: 0;
  bottom: 0;
  background-color: inherit;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-area-header--blue::before,
  .o-area-header--fill::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header--blue::before,
  .o-area-header--fill::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header--blue::before,
  .o-area-header--fill::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-area-header--blue::before,
  .o-area-header--fill::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-area-header--blue::before,
  .o-area-header--fill::before {
    left: -99em;
    right: -99em;
  }
}

.o-area-header--fill .btn--outline {
  border-color: #fff;
  color: #fff;
}

.o-area-header--small .o-area-header__title {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 24px;
  line-height: 25px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .o-area-header--small .o-area-header__title {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) {
  .o-area-header--small .o-area-header__title {
    font-size: 30px;
    line-height: 35px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
@media screen and (min-width: 980px) {
  .o-area-header--small .o-area-header__title {
    font-size: 36px;
    line-height: 40px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

@media screen and (min-width: 1160px) {
  .o-area-header--small:not(.o-area-header--fill):not(.o-area-header--has-bg) .o-area-header__main {
    padding-top: 35px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header--small:not(.o-area-header--fill):not(.o-area-header--has-bg) .o-area-header__intro {
    padding-top: 35px;
    padding-bottom: 95px;
  }
  .o-area-header--small:not(.o-area-header--fill):not(.o-area-header--has-bg) .o-area-header__intro p {
    display: block;
    overflow: hidden;
  }
  .o-area-header--small:not(.o-area-header--fill):not(.o-area-header--has-bg) .o-area-header__intro p:before, .o-area-header--small:not(.o-area-header--fill):not(.o-area-header--has-bg) .o-area-header__intro p:after {
    content: "";
    display: block;
  }
  .o-area-header--small:not(.o-area-header--fill):not(.o-area-header--has-bg) .o-area-header__intro p:before {
    margin-top: 2px;
  }
  .o-area-header--small:not(.o-area-header--fill):not(.o-area-header--has-bg) .o-area-header__intro p:after {
    margin-bottom: -2px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header--small:not(.o-area-header--fill):not(.o-area-header--has-bg) .o-area-header__title {
    font-size: 42px;
    line-height: 45px;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

.o-area-header__intro--large {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .o-area-header__intro--large {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 650px) {
  .o-area-header__intro--large {
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 20px;
    line-height: 25px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  .js-sans-loaded .o-area-header__intro--large {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}
@media screen and (min-width: 980px) {
  .o-area-header__intro--large {
    padding-top: 41px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header__intro--large {
    font-family: Helvetica, Ariel, sans-serif;
    font-size: 24px;
    line-height: 30px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: 52px;
  }
  .js-sans-loaded .o-area-header__intro--large {
    font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
  }
}

.o-area-header__intro--small,
.o-area-header--small .o-area-header__intro {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 25px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .o-area-header__intro--small,
.js-sans-loaded .o-area-header--small .o-area-header__intro {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}
@media screen and (min-width: 980px) {
  .o-area-header__intro--small,
  .o-area-header--small .o-area-header__intro {
    padding-top: 24px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header__intro--small,
  .o-area-header--small .o-area-header__intro {
    padding-top: 35px;
  }
}

@media screen and (min-width: 980px) {
  .o-area-header--group-landing .o-area-header__inner {
    min-height: 270px;
  }
}

.o-area-header--border {
  position: relative;
  margin-bottom: 35px;
}
.o-area-header--border::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -15px;
  right: -15px;
  bottom: 0;
  border-top: 1px solid #d9d9d9;
  pointer-events: none;
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-area-header--border::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header--border::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header--border::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-area-header--border::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-area-header--border::before {
    left: -99em;
    right: -99em;
  }
}

.o-area-header--border-contained:before {
  display: none;
}

.o-area-header--tight .o-area-header__inner {
  padding-bottom: 30px;
}
@media screen and (min-width: 980px) {
  .o-area-header--tight .o-area-header__inner {
    padding-bottom: 30px;
  }
}

.o-area-header--large .o-area-header__inner {
  padding-bottom: 105px;
}

@media screen and (max-width: 649px) {
  .o-area-header--nav-above .o-area-header__inner:not(.flatiron-people) {
    position: relative;
    background-color: #fff;
    min-height: 0;
    color: #1a1a1a;
  }
  .o-area-header--nav-above .o-area-header__inner:not(.flatiron-people)::before {
    content: "";
    position: absolute;
    z-index: -1;
    left: -15px;
    right: -15px;
    top: 0;
    bottom: 0;
    background-color: inherit;
    pointer-events: none;
    transform: translate3d(0, 0, 0);
  }
}
@media screen and (max-width: 649px) and (min-width: 414px) and (max-width: 649px) {
  .o-area-header--nav-above .o-area-header__inner:not(.flatiron-people)::before {
    left: -30px;
    right: -30px;
  }
}
@media screen and (max-width: 649px) and (min-width: 650px) and (max-width: 979px) {
  .o-area-header--nav-above .o-area-header__inner:not(.flatiron-people)::before {
    left: -38px;
    right: -38px;
  }
}
@media screen and (max-width: 649px) and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header--nav-above .o-area-header__inner:not(.flatiron-people)::before {
    left: -47px;
    right: -47px;
  }
}
@media screen and (max-width: 649px) and (min-width: 1160px) and (max-width: 1299px) {
  .o-area-header--nav-above .o-area-header__inner:not(.flatiron-people)::before {
    left: -40px;
    right: -40px;
  }
}
@media screen and (max-width: 649px) and (min-width: 1300px) {
  .o-area-header--nav-above .o-area-header__inner:not(.flatiron-people)::before {
    left: -99em;
    right: -99em;
  }
}
.o-area-header--nav-above .o-area-header__inner .a-control__search {
  margin-left: 1.25rem;
  margin-top: 0;
  margin-bottom: 1.375rem;
}
.o-area-header--nav-above .o-area-header__inner .a-control__search button {
  right: unset;
  left: 1.25rem;
}
.o-area-header--nav-above .o-area-header__inner .a-control__search button svg.icon--search {
  color: white;
}
.o-area-header--nav-above .o-area-header__inner .a-control__search input {
  color: white;
  background: none;
  z-index: 100;
  padding-left: 3.25rem;
}
.o-area-header--nav-above .o-area-header__inner .a-control__search input::placeholder {
  color: white;
  opacity: 1;
}
.o-area-header--nav-above .o-area-header__inner .a-control__search .search-icon-close {
  display: block;
  position: absolute;
  top: 50%;
  right: 1.25rem;
  border: 0;
  background: none;
  outline: none;
  cursor: pointer;
  transform: translateY(-50%);
  padding: 0;
}
.o-area-header--nav-above .o-area-header__inner .a-control__search .search-icon-close svg.icon {
  transform: rotate(45deg);
}
@media screen and (min-width: 650px) {
  .o-area-header--nav-above .o-area-header__inner .a-control__search {
    margin-left: 1.875rem;
    margin-bottom: 1.6875rem;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header--nav-above .o-area-header__inner .a-control__search {
    width: 26.6875rem;
    margin-bottom: 3.25rem;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header--nav-above .o-area-header__inner .a-control__search {
    width: 32.5rem;
    margin-left: 2.5rem;
    margin-bottom: 3.125rem;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header--nav-above .o-area-header__inner {
    min-height: 160px;
  }
  .o-area-header--nav-above .o-area-header__inner.flatiron-people .o-area-header__main {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header--nav-above .o-area-header__inner {
    min-height: 210px;
  }
  .o-area-header--nav-above .o-area-header__inner.flatiron-people .o-area-header__main {
    padding-top: 36px;
    padding-bottom: 30px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header--nav-above .o-area-header__inner {
    min-height: 275px;
  }
  .o-area-header--nav-above .o-area-header__inner.flatiron-people {
    min-height: unset;
  }
  .o-area-header--nav-above .o-area-header__inner.flatiron-people .o-area-header__main {
    padding-bottom: 2.5rem;
    padding-top: 2.375rem;
  }
}

@media screen and (max-width: 649px) {
  .o-area-header--nav-above .o-area-header__inner:not(.flatiron-people) .o-area-header__main {
    float: none;
    width: auto;
    min-height: 7.1875rem;
    border-bottom: 1px solid #d9d9d9;
  }
}
@media screen and (min-width: 980px) {
  .o-area-header--nav-above .o-area-header__inner .o-area-header__main {
    padding-top: 1.6875rem;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header--nav-above .o-area-header__inner .o-area-header__main {
    padding-top: 3.4375rem;
  }
}

@media screen and (min-width: 414px) {
  body.s-area-flatiron[class*=s-area-center-for-computational] .page-template-people_listed_by_program_with_categories .o-area-header--nav-above.flatiron-center .o-area-header__inner .o-area-header__main,
  body.s-area-flatiron[class*=s-area-scientific-computing-core] .page-template-people_listed_by_program_with_categories .o-area-header--nav-above.flatiron-center .o-area-header__inner .o-area-header__main {
    min-height: unset;
    border-bottom: none;
    padding-bottom: 1.5625rem;
  }
}
@media screen and (min-width: 650px) {
  body.s-area-flatiron[class*=s-area-center-for-computational] .page-template-people_listed_by_program_with_categories .o-area-header--nav-above.flatiron-center,
  body.s-area-flatiron[class*=s-area-scientific-computing-core] .page-template-people_listed_by_program_with_categories .o-area-header--nav-above.flatiron-center {
    margin-bottom: 2.5rem;
  }
}

.o-area-header--nav-above .o-area-header__social,
.o-area-header--nav-above .o-area-header__intro {
  display: none;
}
@media screen and (min-width: 650px) {
  .o-area-header--nav-above .o-area-header__social,
  .o-area-header--nav-above .o-area-header__intro {
    display: block;
    padding-top: 25px;
    padding-bottom: 60px;
  }
}

@media screen and (min-width: 1160px) {
  .o-area-header--nav-below .o-area-header__inner {
    min-height: 210px;
  }
}

.o-area-header--nav-below .o-area-header__main {
  padding-bottom: 0;
}

.o-area-header--nav-below .g-subnav:before {
  border-color: rgba(255, 255, 255, 0.25);
}

.o-area-header .icon--flatiron-logo {
  margin-top: 2px;
}

.o-area-header + .m-tabs {
  padding-top: 0;
  border-top: 0;
  margin-top: 0;
}

.o-area-header + .m-tabs a {
  padding-bottom: 0;
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header--landing .o-area-header__inner {
    min-height: 190px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-area-header--landing .o-area-header__inner {
    min-height: 255px;
  }
}
@media screen and (min-width: 1160px) {
  .o-area-header--landing .o-area-header__inner {
    min-height: 320px;
  }
}

.o-area-header--border-contained--light {
  border-bottom: 1px solid #d9d9d9;
}

@media screen and (min-width: 1160px) {
  .o-area-header--medium .o-area-header__main {
    padding-top: 37px;
  }
}

@media screen and (min-width: 1160px) {
  .o-area-header--with-table .o-area-header__main {
    padding-top: 35px;
    padding-bottom: 0px;
  }
}

@media screen and (min-width: 1160px) {
  .o-area-header--with-table .o-area-header__inner {
    min-height: 125px;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-area-header--medium .m-share {
    float: right;
  }
}

.flatiron-landing-image-metadata-container {
  position: absolute;
  display: flex;
  width: 100%;
  bottom: 5px;
  font-size: 14px;
  left: 0;
  line-height: 1.2;
}
.flatiron-landing-image-metadata-container .description-link-wrapper {
  width: 200px;
  margin-right: 144px;
  margin-bottom: 15px;
}
.flatiron-landing-image-metadata-container.text-to-right {
  text-align: right;
  justify-content: flex-end;
}
.flatiron-landing-image-metadata-container p {
  margin-bottom: 10px;
}
.flatiron-landing-image-metadata-container a:hover {
  color: #d9d9d9;
}

.o-area-header--medium {
  min-height: 115px;
  display: flex;
  align-items: center;
}
.o-area-header--medium .o-area-header__main {
  padding: 0;
}

.o-area-header--small-border {
  border-bottom: 1px solid #d9d9d9;
}

section.sfari-funding {
  padding: 35px 0 0;
}

.o-area-header__intro--small.sfari-funding {
  padding-bottom: 59px;
}

.col-subheader-funding {
  display: flex;
  flex-direction: row;
  border-bottom: 1px solid grey;
  justify-content: space-evenly;
}
@media screen and (max-width: 649px) {
  .col-subheader-funding {
    flex-direction: column;
  }
}

.col-subheader-funding-item {
  padding: 30px;
}
@media screen and (max-width: 649px) {
  .col-subheader-funding-item {
    padding: 10px;
  }
}

.m-module-header {
  position: relative;
  padding-bottom: 7px;
  font-size: 0;
}
.m-module-header::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
@media screen and (min-width: 650px) {
  .m-module-header {
    padding-bottom: 12px;
  }
}
@media screen and (min-width: 1160px) {
  .m-module-header {
    padding-bottom: 17px;
  }
}
.m-module-header.pb-24 {
  padding-bottom: 1.5rem;
}

.m-module-header__title-wrap {
  display: inline-block;
}
@media screen and (max-width: 413px) {
  .m-module-header__title-wrap {
    width: calc((((100vw - 105px) / 6) * 3) + 30px);
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-module-header__title-wrap {
    width: calc((((100vw - 160px) / 6) * 3) + 40px);
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-module-header__title-wrap {
    width: calc((((100vw - 406px) / 12) * 8) + 210px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-module-header__title-wrap {
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-module-header__title-wrap {
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
  }
}
@media screen and (min-width: 1300px) {
  .m-module-header__title-wrap {
    width: 590px;
  }
}

.m-module-header__aside {
  float: right;
  display: inline-block;
  vertical-align: baseline;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-module-header__aside {
    width: calc((((100vw - 406px) / 12) * 4) + 90px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-module-header__aside {
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-module-header__aside {
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
  }
}
@media screen and (min-width: 1300px) {
  .m-module-header__aside {
    width: 590px;
  }
}
@media screen and (max-width: 413px) {
  .m-module-header__aside {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-module-header__aside {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-module-header__aside {
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-module-header__aside {
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-module-header__aside {
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .m-module-header__aside {
    margin-left: 40px;
  }
}
@media screen and (max-width: 649px) {
  .m-module-header__aside {
    float: right;
  }
}
@media screen and (min-width: 650px) {
  .m-module-header__aside {
    float: right;
  }
}

.m-module-header__aside > .link--grey, .m-module-header__aside > .a-highlight {
  padding-top: 12px;
  float: right;
}
.m-module-header__aside > .link--grey:hover, .m-module-header__aside > .a-highlight:hover {
  text-decoration: underline;
}

@media screen and (max-width: 649px) {
  .m-module-header__aside > .a-highlight {
    position: absolute;
    bottom: 15px;
    right: 0;
    width: 50%;
    text-align: right;
  }
}
.m-module-header__aside > .a-highlight:hover {
  text-decoration: underline;
}

.m-module-header__aside p {
  display: none;
  text-align: left;
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-module-header__aside p {
    width: calc((((100vw - 424px) / 12) * 4) + 90px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-module-header__aside p {
    width: calc((((100vw - 520px) / 12) * 4) + 120px);
  }
}
@media screen and (min-width: 1300px) {
  .m-module-header__aside p {
    width: 380px;
  }
}
@media screen and (min-width: 980px) {
  .m-module-header__aside p {
    float: left;
    display: block;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-module-header__aside .btn {
    width: calc((((100vw - 406px) / 12) * 3) + 60px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-module-header__aside .btn {
    width: calc((((100vw - 424px) / 12) * 2) + 30px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-module-header__aside .btn {
    width: calc((((100vw - 520px) / 12) * 2) + 40px);
  }
}
@media screen and (min-width: 1300px) {
  .m-module-header__aside .btn {
    width: 170px;
  }
}
@media screen and (min-width: 650px) {
  .m-module-header__aside .btn {
    float: right;
  }
}

.m-module-header__aside .m-tabs {
  float: right;
  margin-bottom: -10px;
}
@media screen and (min-width: 980px) {
  .m-module-header__aside .m-tabs {
    margin-bottom: -20px;
  }
}

.m-module-header--border .m-module-header__aside .m-tabs, .m-module-header--flush-border .m-module-header__aside .m-tabs,
.m-module-header--flush-border.m-module-header__aside .m-tabs {
  margin-bottom: -6px;
  margin-top: -20px;
}
@media screen and (min-width: 650px) {
  .m-module-header--border .m-module-header__aside .m-tabs, .m-module-header--flush-border .m-module-header__aside .m-tabs,
  .m-module-header--flush-border.m-module-header__aside .m-tabs {
    margin-bottom: -24px;
  }
}
@media screen and (min-width: 980px) {
  .m-module-header--border .m-module-header__aside .m-tabs, .m-module-header--flush-border .m-module-header__aside .m-tabs,
  .m-module-header--flush-border.m-module-header__aside .m-tabs {
    margin-bottom: -24px;
  }
}
@media screen and (min-width: 1160px) {
  .m-module-header--border .m-module-header__aside .m-tabs, .m-module-header--flush-border .m-module-header__aside .m-tabs,
  .m-module-header--flush-border.m-module-header__aside .m-tabs {
    margin-bottom: -29px;
  }
}
@media screen and (min-width: 1160px) {
  .m-module-header--border .m-module-header__aside .m-tabs, .m-module-header--flush-border .m-module-header__aside .m-tabs,
  .m-module-header--flush-border.m-module-header__aside .m-tabs {
    margin-bottom: -29px;
  }
}

.m-module-header__aside .m-tabs li {
  margin-left: 20px;
}

.m-module-header__title {
  display: inline-block;
}
@media screen and (min-width: 980px) {
  .m-module-header__title {
    padding-right: calc(50% - 505px);
  }
}

.m-module-header__title a:hover {
  color: var(--link-color);
  text-decoration: underline;
}

@media screen and (max-width: 413px) {
  .m-module-header__title--with-more {
    width: calc((((100vw - 105px) / 6) * 3) + 30px);
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-module-header__title--with-more {
    width: calc((((100vw - 160px) / 6) * 3) + 40px);
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-module-header__title--with-more {
    width: calc((((100vw - 406px) / 12) * 8) + 210px);
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-module-header__title--with-more {
    width: calc((((100vw - 424px) / 12) * 6) + 150px);
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-module-header__title--with-more {
    width: calc((((100vw - 520px) / 12) * 6) + 200px);
  }
}
@media screen and (min-width: 1300px) {
  .m-module-header__title--with-more {
    width: 590px;
  }
}

.m-module-header__title-wrap .m-module-header__title {
  display: block;
}

.m-module-header__title--small {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 18px;
  line-height: 30px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .m-module-header__title--small {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.m-module-header__title--medium {
  font-family: Helvetica, Ariel, sans-serif;
  font-size: 22px;
  line-height: 28px;
  font-weight: 300;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.js-sans-loaded .m-module-header__title--medium {
  font-family: "Univers Next W01", Helvetica, Ariel, sans-serif;
}

.m-module-header__title-wrap .m-module-header__title {
  float: none;
  width: auto;
  margin-left: 0;
}

.m-module-header__subtitle {
  color: #666;
}

.m-module-header--border, .m-module-header--flush-border {
  margin-bottom: 22px;
  padding-bottom: 6px;
  border-bottom: 1px solid #d9d9d9;
}
.m-module-header--border.collab-module, .collab-module.m-module-header--flush-border {
  margin-bottom: 15px;
}
@media screen and (min-width: 650px) {
  .m-module-header--border, .m-module-header--flush-border {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 1160px) {
  .m-module-header--border, .m-module-header--flush-border {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}

.m-module-header--border + .m-post-tabular-header--programs, .m-module-header--flush-border + .m-post-tabular-header--programs {
  padding-bottom: 13px;
  padding-top: 32px;
}

.m-module-header--border + .m-post-tabular-header--programs + div .m-post--tabular:first-child, .m-module-header--flush-border + .m-post-tabular-header--programs + div .m-post--tabular:first-child {
  border-top: 0;
}

.m-module-header--flush-border {
  margin-bottom: 0;
}

@media screen and (max-width: 413px) {
  .m-module-header--border\@xsmall {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@xsmall.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 413px) and (min-width: 650px) {
  .m-module-header--border\@xsmall {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 413px) and (min-width: 1160px) {
  .m-module-header--border\@xsmall {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .m-module-header--border\@small {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@small.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) and (min-width: 650px) {
  .m-module-header--border\@small {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) and (min-width: 1160px) {
  .m-module-header--border\@small {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 414px) {
  .m-module-header--border\@small\+ {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@small\+.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 414px) and (min-width: 650px) {
  .m-module-header--border\@small\+ {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 414px) and (min-width: 1160px) {
  .m-module-header--border\@small\+ {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 649px) {
  .m-module-header--border\@small- {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@small-.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 649px) and (min-width: 650px) {
  .m-module-header--border\@small- {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 649px) and (min-width: 1160px) {
  .m-module-header--border\@small- {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .m-module-header--border\@medium {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@medium.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) and (min-width: 650px) {
  .m-module-header--border\@medium {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) and (min-width: 1160px) {
  .m-module-header--border\@medium {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 650px) {
  .m-module-header--border\@medium\+ {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@medium\+.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 650px) and (min-width: 650px) {
  .m-module-header--border\@medium\+ {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 650px) and (min-width: 1160px) {
  .m-module-header--border\@medium\+ {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 979px) {
  .m-module-header--border\@medium- {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@medium-.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 979px) and (min-width: 650px) {
  .m-module-header--border\@medium- {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 979px) and (min-width: 1160px) {
  .m-module-header--border\@medium- {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-module-header--border\@large {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@large.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) and (min-width: 650px) {
  .m-module-header--border\@large {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) and (min-width: 1160px) {
  .m-module-header--border\@large {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 980px) {
  .m-module-header--border\@large\+ {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@large\+.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 980px) and (min-width: 650px) {
  .m-module-header--border\@large\+ {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 980px) and (min-width: 1160px) {
  .m-module-header--border\@large\+ {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 1159px) {
  .m-module-header--border\@large- {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@large-.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1159px) and (min-width: 650px) {
  .m-module-header--border\@large- {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 1159px) and (min-width: 1160px) {
  .m-module-header--border\@large- {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .m-module-header--border\@xlarge {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@xlarge.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) and (min-width: 650px) {
  .m-module-header--border\@xlarge {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) and (min-width: 1160px) {
  .m-module-header--border\@xlarge {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1160px) {
  .m-module-header--border\@xlarge\+ {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@xlarge\+.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1160px) and (min-width: 650px) {
  .m-module-header--border\@xlarge\+ {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 1160px) and (min-width: 1160px) {
  .m-module-header--border\@xlarge\+ {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (max-width: 1299px) {
  .m-module-header--border\@xlarge- {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@xlarge-.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 1299px) and (min-width: 650px) {
  .m-module-header--border\@xlarge- {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 1299px) and (min-width: 1160px) {
  .m-module-header--border\@xlarge- {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 1300px) {
  .m-module-header--border\@xxlarge {
    margin-bottom: 22px;
    padding-bottom: 6px;
    border-bottom: 1px solid #d9d9d9;
  }
  .m-module-header--border\@xxlarge.collab-module {
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 1300px) and (min-width: 650px) {
  .m-module-header--border\@xxlarge {
    margin-bottom: 26px;
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 1300px) and (min-width: 1160px) {
  .m-module-header--border\@xxlarge {
    margin-bottom: 27px;
    padding-bottom: 16px;
  }
}
.m-module-header--image-border {
  margin-bottom: 40px;
  padding-bottom: 6px;
  border-bottom: 1px solid #d9d9d9;
}
@media screen and (min-width: 650px) {
  .m-module-header--image-border {
    padding-bottom: 11px;
  }
}
@media screen and (min-width: 1160px) {
  .m-module-header--image-border {
    padding-bottom: 16px;
  }
}

@media screen and (max-width: 649px) {
  .m-module-header--alt {
    padding-bottom: 5px;
  }
}

@media screen and (max-width: 649px) {
  .m-module-header--alt .m-module-header__title {
    font-size: 15px;
    line-height: 25px;
    font-weight: 500;
  }
}

.m-bg-stripe--blue .m-module-header__title {
  color: #fff;
}

.m-module-header--sub {
  margin-top: 27px;
  margin-bottom: 20px;
  padding-bottom: 6px;
  border-color: #ececec;
}

.m-module-header--sub .m-module-header__title {
  font-size: 15px;
  line-height: 25px;
  font-weight: 500;
}

.m-module-header--wwr {
  padding-bottom: 13px;
}
@media screen and (min-width: 414px) {
  .m-module-header--wwr {
    padding-bottom: 16px;
  }
}
@media screen and (min-width: 650px) {
  .m-module-header--wwr {
    padding-bottom: 27px;
  }
}
@media screen and (min-width: 980px) {
  .m-module-header--wwr {
    padding-bottom: 15px;
  }
}

.m-module-header--wwr .m-module-header__title-wrap {
  vertical-align: top;
}

.m-module-header--wwr .m-module-header__aside {
  padding-top: 7px;
}
@media screen and (min-width: 980px) {
  .m-module-header--wwr .m-module-header__aside {
    padding-top: 0;
  }
}

@media screen and (min-width: 980px) and (max-width: 1159px) {
  .m-module-header--wwr .m-module-header__aside p {
    width: calc((((100vw - 424px) / 12) * 4.25) + 97.5px);
  }
}

@media screen and (min-width: 650px) {
  .m-module-header--border + .m-post-tabular-header, .m-module-header--flush-border + .m-post-tabular-header {
    padding-top: 25px;
  }
}
@media screen and (min-width: 1160px) {
  .m-module-header--border + .m-post-tabular-header, .m-module-header--flush-border + .m-post-tabular-header {
    padding-top: 30px;
  }
}

.m-module-header__aside .a-highlight:hover {
  color: #192347;
}

.full-width .o-area-header__inner {
  position: relative;
}
.full-width .o-area-header__title {
  position: absolute;
  top: 0;
  padding: 50px 0;
}
.full-width .m-module-header--flush-border {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.full-width .m-module-header {
  border-bottom: 1px solid #d9d9d9;
}
.full-width .m-module-header::after {
  content: none;
}
.full-width .m-sidebar-box {
  padding-top: 0;
}
.full-width .m-sidebar-box .m-sidebar-box__title {
  margin-bottom: 10px;
}
@media screen and (max-width: 979px) {
  .full-width .o-events-grid__aside-item {
    display: none;
  }
}

.m-bg-stripe::before {
  background-color: #1D2954;
}

.o-strip {
  margin-top: 42px;
  color: white;
  background-color: #1D2954;
}
@media screen and (max-width: 649px) {
  .o-strip {
    padding-top: 32px;
  }
}
@media screen and (min-width: 650px) {
  .o-strip {
    margin-top: 33px;
  }
}

@media screen and (min-width: 1160px) {
  .o-strip--tight {
    margin-top: 60px;
  }
}

.o-strip__content input,
.o-strip__content button {
  font-weight: 300;
  color: white;
  border-color: white;
}

.o-strip__content input[type=email] {
  border-color: white;
}
.o-strip__content input[type=email]::-webkit-input-placeholder {
  color: white;
}
.o-strip__content input[type=email]:-moz-placeholder {
  color: white;
}
.o-strip__content input[type=email]::-moz-placeholder {
  color: white;
}
.o-strip__content input[type=email]:-ms-input-placeholder {
  color: white;
}

.o-strip--tight button:hover {
  background-color: #192347;
  border-color: #192347;
  color: #fff;
}

.o-strip__btn-wrapper .btn--outline, .o-strip__btn-wrapper .s-text-overflow__btn, .o-strip__content button {
  border-color: white;
}
.o-strip__btn-wrapper .btn--outline:hover, .o-strip__btn-wrapper .s-text-overflow__btn:hover, .o-strip__content button:hover {
  background-color: white;
  color: #1D2954;
}

.o-three-col, .o-two-col {
  margin-top: 60px;
}
@media screen and (min-width: 650px) {
  .o-three-col, .o-two-col {
    margin-top: 60px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-three-col, .o-two-col {
    margin-top: 75px;
  }
}
@media screen and (min-width: 1160px) {
  .o-three-col, .o-two-col {
    margin-top: 85px;
  }
}
.o-three-col .columns-container, .o-two-col .columns-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(20.3125rem, 100%), 1fr));
}
.o-three-col .columns-container.center-module, .o-two-col .columns-container.center-module {
  column-gap: 1.875rem;
  margin-left: 0;
  margin-right: 0;
}
@media screen and (min-width: 980px) {
  .o-three-col .columns-container.center-module, .o-two-col .columns-container.center-module {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-three-col .columns-container.center-module, .o-two-col .columns-container.center-module {
    grid-template-columns: repeat(2, 1fr);
  }
}
.o-three-col .columns-container .m-post__image img, .o-two-col .columns-container .m-post__image img {
  min-height: 220px;
}
@media screen and (max-width: 413px) {
  .o-three-col .m-center, .o-two-col .m-center {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-three-col .m-center, .o-two-col .m-center {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-three-col .m-center, .o-two-col .m-center {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-three-col .m-center, .o-two-col .m-center {
    float: left;
    width: calc((((100vw - 424px) / 12) * 4) + 90px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-three-col .m-center, .o-two-col .m-center {
    float: left;
    width: calc((((100vw - 520px) / 12) * 4) + 120px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-three-col .m-center, .o-two-col .m-center {
    float: left;
    width: 380px;
    margin-left: 40px;
  }
}

.o-three-col--tight {
  margin-top: 30px;
}
@media screen and (min-width: 650px) {
  .o-three-col--tight {
    margin-top: 40px;
  }
}
@media screen and (min-width: 980px) {
  .o-three-col--tight {
    margin-top: 50px;
  }
}

.o-three-col--snug,
.g-subnav + .o-three-col.m-bg-stripe {
  margin-top: 0;
}

.o-three-col__list::after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  line-height: 0;
  overflow: hidden;
  visibility: hidden;
}
.m-module-header + .o-three-col__list {
  margin-top: 40px;
}

.o-three-col .m-module-header__aside {
  float: right;
}
@media screen and (max-width: 649px) {
  .o-three-col .m-module-header__aside {
    padding-top: 0;
    line-height: 15px;
  }
}

@media screen and (min-width: 650px) {
  .o-three-col .m-module-header--border, .o-three-col .m-module-header--flush-border {
    margin-bottom: 30px;
  }
}

.o-three-col--border-top {
  margin-top: 25px;
  padding-top: 45px;
  border-top: 1px solid #808080;
}
@media screen and (min-width: 650px) {
  .o-three-col--border-top {
    margin-top: 50px;
    padding-top: 40px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-three-col--border-top {
    margin-top: 60px;
  }
}
@media screen and (min-width: 1160px) {
  .o-three-col--border-top {
    margin-top: 90px;
    padding-top: 88px;
  }
}

.o-three-col .m-post,
.o-three-col .m-bullets {
  margin-top: 35px;
}
.o-three-col .m-post.center-module-three,
.o-three-col .m-bullets.center-module-three {
  width: auto;
  margin-left: 0;
}
@media screen and (max-width: 413px) {
  .o-three-col .m-post,
  .o-three-col .m-bullets {
    margin-left: 15px;
  }
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .o-three-col .m-post,
  .o-three-col .m-bullets {
    margin-left: 20px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-three-col .m-post,
  .o-three-col .m-bullets {
    float: left;
    width: calc((((100vw - 406px) / 12) * 6) + 150px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 980px) and (max-width: 1159px) {
  .o-three-col .m-post,
  .o-three-col .m-bullets {
    float: left;
    width: calc((((100vw - 424px) / 12) * 4) + 90px);
    margin-left: 30px;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-three-col .m-post,
  .o-three-col .m-bullets {
    float: left;
    width: calc((((100vw - 520px) / 12) * 4) + 120px);
    margin-left: 40px;
  }
}
@media screen and (min-width: 1300px) {
  .o-three-col .m-post,
  .o-three-col .m-bullets {
    float: left;
    width: 380px;
    margin-left: 40px;
  }
}
.o-three-col .m-post:first-child,
.o-three-col .m-bullets:first-child {
  margin-top: 0;
}
@media screen and (max-width: 979px) {
  .o-three-col .m-post,
  .o-three-col .m-bullets {
    /* margin-bottom: 3.125rem; */
  }
  .o-three-col .m-post.center-module-three:last-child,
  .o-three-col .m-bullets.center-module-three:last-child {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 650px) {
  .o-three-col .m-post:nth-child(2),
  .o-three-col .m-bullets:nth-child(2) {
    margin-top: 0;
  }
}
@media screen and (min-width: 980px) {
  .o-three-col .m-post:nth-child(3),
  .o-three-col .m-bullets:nth-child(3) {
    margin-top: 0;
  }
  .o-three-col .m-post:nth-child(3n+1),
  .o-three-col .m-bullets:nth-child(3n+1) {
    clear: both;
  }
}

@media screen and (min-width: 980px) {
  .o-three-col .m-bullets:first-child, .o-three-col .m-bullets:nth-child(2), .o-three-col .m-bullets:nth-child(3) {
    margin-top: 12px;
  }
}

.o-three-col .m-post.m-post--publication {
  padding-top: 0;
}
.o-three-col .m-post .m-post__meta {
  display: block;
}
.o-three-col .m-post .m-post__title + .m-post__meta {
  padding-top: 11px;
}
.o-three-col .m-post .m-post__excerpt {
  margin-top: 10px;
}
@media screen and (max-width: 649px) {
  .o-three-col .m-post:not(:first-child) {
    margin-top: 35px;
    padding-top: 17px;
    border-top: 1px solid #d9d9d9;
  }
  .o-three-col .m-post.center-module {
    border: none;
    width: 100%;
    margin-top: 3.125rem;
    padding-top: 0;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .o-three-col .m-post.center-module:first-of-type {
    margin-top: 0;
  }
  .o-three-col .m-post.center-module.width-calc {
    width: calc(100vw - 60px);
  }
  .o-three-col .m-post.center-module-three {
    border: none;
    padding-top: 0;
    margin-top: 0;
  }
  .o-three-col .m-post.center-module-three:first-child {
    margin-top: 0.9375rem;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-three-col .m-post {
    width: calc((((100vw - 406px) / 12) * 5) + 120px);
    float: left;
    margin-top: 0;
  }
}
@media screen and (min-width: 650px) {
  .o-three-col .m-post .m-post__image + .m-post__meta {
    margin-top: 25px;
  }
  .o-three-col .m-post .m-post__meta + .m-post__title {
    margin-top: 16px;
  }
  .o-three-col .m-post .m-post__title + .m-post__meta {
    padding-top: 6px;
  }
  .o-three-col .m-post .m-post__meta + .m-post__excerpt {
    margin-top: 20px;
  }
  .o-three-col .m-post .m-post__title + .m-post__excerpt {
    margin-top: 15px;
  }
}

.o-three-col .m-post--avatar-small {
  margin-top: 15px;
  margin-bottom: 30px;
}

.o-three-col--divided .m-post {
  position: relative;
  padding-top: 30px;
}
@media screen and (max-width: 649px) {
  .o-three-col--divided .m-post:first-child {
    padding-top: 0;
  }
}
@media screen and (min-width: 650px) {
  .o-three-col--divided .m-post {
    padding-top: 55px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-three-col--divided .m-post:nth-child(1), .o-three-col--divided .m-post:nth-child(2) {
    padding-top: 0;
  }
  .o-three-col--divided .m-post:nth-child(1)::before, .o-three-col--divided .m-post:nth-child(2)::before {
    display: none;
  }
  .o-three-col--divided .m-post:nth-child(2n+1)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 76px);
    border-top: 1px solid #d9d9d9;
  }
}
@media screen and (min-width: 980px) {
  .o-three-col--divided .m-post:nth-child(1), .o-three-col--divided .m-post:nth-child(2), .o-three-col--divided .m-post:nth-child(3) {
    padding-top: 0;
  }
  .o-three-col--divided .m-post:nth-child(1)::before, .o-three-col--divided .m-post:nth-child(2)::before, .o-three-col--divided .m-post:nth-child(3)::before {
    display: none;
  }
  .o-three-col--divided .m-post:nth-child(3n+1)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: calc(100vw - 94px);
    border-top: 1px solid #d9d9d9;
  }
}
@media screen and (min-width: 1160px) and (max-width: 1299px) {
  .o-three-col--divided .m-post:nth-child(3n+1)::before {
    width: calc(100vw - 80px);
  }
}
@media screen and (min-width: 1300px) {
  .o-three-col--divided .m-post:nth-child(3n+1)::before {
    width: 1220px;
  }
}

.o-three-col--singular-divided .m-post {
  border-top: 1px solid #d9d9d9;
  padding-top: 35px;
}
@media screen and (min-width: 650px) {
  .o-three-col--singular-divided .m-post:nth-child(-n+3) {
    border-top: 0;
    padding-top: 0;
  }
}

.o-three-col .m-module-footer {
  margin-top: 30px;
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-three-col .m-module-footer {
    margin-top: 40px;
  }
}
@media screen and (min-width: 980px) {
  .o-three-col .m-module-footer {
    margin-top: 60px;
  }
}

@media screen and (min-width: 650px) and (max-width: 979px) {
  .o-three-col.o-default-list .columns-container {
    display: flex;
    flex-wrap: wrap;
  }
  .o-three-col.o-default-list .m-post:nth-child(2) .m-post__block-link {
    margin-top: 0px;
    padding-top: 0px;
    border-top: 0;
  }
}

.outreach.o-three-col {
  margin-top: 0px;
}
@media screen and (max-width: 649px) {
  .outreach.o-three-col .m-module-header__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .outreach.o-three-col .m-module-header__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 980px) {
  .outreach.o-three-col .m-module-header__title {
    font-size: 24px;
  }
}
.outreach.o-three-col .m-post__image {
  margin-top: 0px;
}
@media screen and (min-width: 414px) {
  .outreach.o-three-col .m-post__block-link {
    display: grid;
  }
  .outreach.o-three-col .m-module-header {
    order: 2;
  }
  .outreach.o-three-col .m-post__image {
    order: 1;
  }
  .outreach.o-three-col .m-post__main {
    order: 3;
  }
}
@media screen and (max-width: 649px) {
  .outreach.o-three-col .m-post--large {
    border-top: none;
    padding-top: 0px;
    margin-top: 24px;
  }
  .outreach.o-three-col .m-post__block-link {
    display: grid;
  }
  .outreach.o-three-col .m-post__block-link .m-post__image {
    order: 1;
  }
  .outreach.o-three-col .m-post__block-link .m-module-header {
    order: 2;
  }
  .outreach.o-three-col .m-post__block-link .m-post__main {
    order: 3;
    font-size: 16px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .outreach.o-three-col {
    grid-template-columns: 1fr 1fr;
    display: grid;
    row-gap: 60px;
  }
  .outreach.o-three-col .m-post {
    margin-top: 0px;
    width: auto;
  }
  .outreach.o-three-col .m-post__block-link .m-post__main {
    font-size: 16px;
  }
  .outreach.o-three-col .m-post__image {
    margin-top: 0px;
  }
}
.outreach.o-three-col .m-post__main.m-post__excerpt--large {
  margin-top: -5px;
}
@media screen and (min-width: 414px) and (max-width: 649px) {
  .outreach.o-three-col .m-post__main.m-post__excerpt--large {
    margin-top: 0px;
    font-size: 16px;
  }
}
.outreach.o-three-col .m-module-header__title {
  margin-top: 25px;
}
.outreach.o-three-col .m-module-header {
  padding-bottom: 8px;
}
@media screen and (max-width: 649px) {
  .outreach.o-three-col .m-module-header {
    margin-bottom: 16px;
  }
}

.col_heading {
  font-size: 30px;
  margin-top: 60px;
  font-weight: 300;
  border-bottom: 1px solid #d9d9d9;
  padding-bottom: 16px;
  margin-bottom: 30px;
}
@media screen and (max-width: 649px) {
  .col_heading {
    padding-bottom: 16px;
    margin-bottom: 24px;
    font-size: 24px;
  }
}
@media screen and (max-width: 979px) {
  .col_heading {
    margin-top: 40px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .col_heading {
    padding-bottom: 19px;
    margin-bottom: 26px;
  }
}

@media screen and (max-width: 649px) {
  .bottom_module .m-module-header__title {
    font-size: 18px;
  }
}
@media screen and (min-width: 650px) and (max-width: 979px) {
  .bottom_module .m-module-header__title {
    font-size: 20px;
  }
}
@media screen and (min-width: 980px) {
  .bottom_module .m-module-header__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 979px) {
  .bottom_module {
    font-size: 16px;
  }
  .bottom_module .desc,
  .bottom_module .m-post__main {
    font-size: 16px;
  }
}
@media screen and (min-width: 650px) {
  .bottom_module .o-section-grid {
    margin-top: 0px;
  }
  .bottom_module .o-section-grid .m-post {
    margin-top: 60px;
  }
}
@media screen and (max-width: 649px) {
  .bottom_module .m-post__block-link {
    display: grid;
  }
  .bottom_module .m-post__block-link .m-post__image {
    order: 1;
    margin-top: 0px;
  }
  .bottom_module .m-post__block-link .m-module-header {
    order: 2;
    margin-top: 25px;
  }
  .bottom_module .m-post__block-link .m-post__main {
    order: 3;
    font-size: 16px;
    margin-top: 0px;
  }
}

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