/* Header
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.header {
  max-width: 100%;
  position: static;
    top: 0; left: 0; right: 0;
  padding: 1.5em 2em;
  margin: 0;
  background-color: rgba(255,255,255,0.9);
  font-family: mundial, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  z-index: 999;
}
.header__wrapper {
  max-width: 1400px;
  display: flex;
  flex-direction: row;
    align-items: center;
    justify-content: space-between;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  .header {
    position: static;
    padding: 0.5em 1em;
    text-align: center;
    background-color: rgba(255,255,255,1);
  }
  .header__wrapper {
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
  }
}
.header__logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  line-height: 0;
}
.header__logo .desktopHide {
  display: none;
}
.header__nav#nav {
  display: flex;
  flex-direction: column;
}
  @media (max-width: 1000px) {
    .header__logo {
      display: inline-block;
      max-width: 5em;
      padding-top: 0.5em;
      z-index: 999;
    }
    .header__logo .mobileHide {
      display: none;
    }
    .header__logo .desktopHide {
      display: block;
    }
    .header__nav#nav {
      visibility: hidden;
      opacity: 0;
      transition: all 500ms linear;
      position: absolute;
        top: 5em;
        left: 0;
      width: 100%;
      padding-top: 1em;
      background-color: rgba(255, 255, 255, 0.98);
      align-items: center;
      flex-direction: column-reverse!important;
      z-index: 998;
    }
    .header__nav#nav.toggled {
      visibility: visible;
      opacity: 1;
      top: 5.5em;
      z-index: 998;
    }
  }
  .header__nav a {
    margin: 0 .5em;
    padding: 0;
    color: inherit;
  }
  .header__nav__pages a {
    display: inline-block;
  }
  .header__nav__toggle {
    display: none;
  }
  @media (max-width: 1000px) {
    .header__nav__toggle {
      display: inline-block;
      margin-top: 1em;
      padding: 0.5em;
      cursor: pointer;
      background-color: #F1F1F1;
      border-radius: 0.5em;
      z-index: 999;
    }
    .header__nav__pages a {
      display: block;
      line-height: normal;
      margin: 1em 0;
    }
  }
    .header__nav__social {
      text-align: right;
      margin: 0 0 .5em 0;
      font-size: 0.8em;
    }
    @media (max-width: 1000px) {
      .header__nav__social {
        margin-top: 1em!important;
        padding: 1.5em 0.75em;
        border-top: 2px solid #555555;
      }
    }
    .header__nav__social ul {
      margin: 0;
      padding: 0;
    }
    .header__nav__social ul li {
      display: inline-block;
      margin: 0 .25em;
      padding: 0;
      line-height: 0;
    }
    .header__nav__social ul li.social_icon {
      font-size: 1.2em;
      width: 1em;
      height: 1em;
      line-height: 0;
      vertical-align: sub;
    }
    .header__nav__social ul li a {
      padding: 0;
      margin: 0;
      line-height: 0;
    }
    .header__nav__social ul li a.button--signup {
      background-color: #000;
      color: #FFF;
      border-radius: .5em;
        padding: .1em 0.5em 0.25em 0.5em;
        margin: 0;
      text-transform: uppercase;
      line-height: 0;
    }
    .header__dropdown {
      display: none;
    }
@media (min-width: 600px) {
  .header__dropdown {
    background-color: #FFF;
    display: block;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 6.9em;
      left: 0;
    width: 100%;
    height: auto;
      max-width: 100%;
      min-height: 300px;
    padding: 2.5em 0 2em;
    box-sizing: border-box;
    transition: all 250ms ease-in-out;
    transform-origin: top;
    transition-delay: .3s;
    z-index: 998;
  }
  .header__nav__pages a:hover + .header__dropdown, .header__dropdown:hover {
    visibility: visible!important;
    opacity: 1;
  }
  .header__dropdown__subpages {
    margin: 0; padding: 0;
    list-style-type: none;
    display: flex;
      flex-direction: row;
      align-items: flex-start;
      justify-content: space-between;
  }
  .header__dropdown__subpages .blocks {
    width: 100%;

    }
  .header__dropdown__subpages .blocks h2, .header__dropdown__subpages .blocks h4 {
    margin-top: 0;
  }
  .header__dropdown__subpages .blocks p {
    font-family: libertad, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1em;
    font-weight: 300;
    line-height: 1.5;
    letter-spacing: normal;
  }
  .header__dropdown__subpages .blocks figure {
    position: relative;
    height: auto;
    box-sizing: border-box;
    cursor: pointer;
  }

  .header__dropdown__subpages .blocks figure .img {
    margin: 0; padding: 0;
  }

  .header__dropdown__subpages .blocks figure .img img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    background-color: #000;
    -webkit-filter: grayscale(10%); /* Safari 6.0 - 9.0 */
    filter: grayscale(10%);
    transition: 250ms all ease-in-out;
  }
    .header__dropdown__subpages .blocks figure:hover .img img {
      -webkit-filter: grayscale(0%); /* Safari 6.0 - 9.0 */
      filter: grayscale(0%);
    }
  .header__dropdown__subpages .blocks figure .img-caption {
    font-size: 1.6em;
    line-height: normal;
    font-weight: 700;
    color: #FFF;
    position: absolute;
      top: 42%;
      right: 0;
      bottom: 0;
      left: 0;
    text-align: center;
  }

  .header__dropdown__subpages .blocks ul {
    border-left: 2px solid currentColor!important;
    padding: 2em;
  }
  .header__dropdown__subpages .blocks ul li {
      list-style-type: none!important;
      vertical-align: middle;
      margin: 1em 0;
    }
    .header__dropdown__subpages .blocks ul li a {
        list-style-type: none!important;
        margin: 0; padding: 0;
        line-height: normal;
      }

}

/* Main
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.row.flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

#homepage .one-half.column {
  padding: 2em 0;
}

#homepage h1, #homepage h2, #homepage h3, #homepage h4, #homepage h5 {
  text-align: center;
  margin: 0;
}

#homepage p {
  font-size: 1.08em;
  margin: 1em 0;
  font-family: mundial, "Helvetica Neue", Helvetica, Arial, sans-serif;
}

@media (max-width: 800px) {
  #homepage {
    flex-direction: column-reverse;
    padding-bottom: 2em;
  }
  #homepage .one-half.column {
    padding: 1em 0;
  }
  #homepage p {
    margin: .5em 0 1em 0;
  }
}

#homepage blockquote em {
  font-size: 1.08em;
  line-height: 1.5;
}
  #homepage blockquote footer {
    margin-top: 0.5em;
  }

.banner, .banner__article, .banner--image {
  max-width: 100%;
  height: auto;
  background-color: #f1f1f1;
  margin: 0; padding: 3em 1em;
}
.banner__article {
  aspect-ratio: 16/9;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: box-shadow .1s ease;
}
.banner--image {
  aspect-ratio: 16/1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: box-shadow .1s ease;
}
.banner__title {
  margin: 0;
  text-align: center;
}
.banner__subNav {
  font-family: mundial, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  max-width: 100%;
  height: auto;
  border-bottom: 2px #f1f1f1 solid;
  margin: 0 0 1em 0; padding: 0;
  overflow-y: hidden;
  overflow-x: auto;
}
  .banner__subNav ul {
    margin: 0; padding: 0.5em;
    list-style-type: none;
    display: flex;
      justify-content: center;
      flex-direction: row;
  }
    .banner__subNav ul li {
      margin: 0 1em; padding: 0;
    }
      .banner__subNav ul li a {
        color: inherit;
        font-weight: 500;
      }
  @media (max-width: 800px) {
    .banner__subNav ul, .banner__subNav ul li {
      display: inline-block;
      white-space: nowrap;
      cursor: grab;
      margin: 0 0.5em;
    }
  }

.material-symbols-sharp {
  vertical-align: sub;
  padding-right: 0.375em;
}

.about_partners {
  display: flex;
  flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    flex: 31.3333333333%;
  width: 100%;
}
.about_portrait_container {
  display: block;
  box-sizing: border-box;
    width: 320px;
    max-width: 31.3333333333%;
    height: auto;
  margin: 0 1% 1em;
}
@media (max-width: 1000px) {
  .about_portrait_container {
    width: 960px;
    max-width: 50%;
    margin: 0;
    padding: 1%;
  }
}
@media (max-width: 740px) {
  .about_portrait_container {
    max-width: 100%;
    padding: 0;
    margin-bottom: 1em;
  }
}
.about_portrait, .about_portrait_noshadow {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 100%;
  width: 100%;
  height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: box-shadow .1s ease;
}
.about_portrait_noshadow {
  margin-bottom: 1.5em;
}

  .about_portrait:hover {
    box-shadow: inset -1em -6em 4em -4em rgba(0,0,0,0.75);
  }
  .about_portrait:hover .about_portrait_title {
    opacity: 1;
  }
  .about_portrait_title {
    opacity: 0;
    position: absolute;
      left: 0;
      bottom: 0;
    margin: 0;
    padding: 0 0.5em 1em;
    transition: opacity .3s ease;
    transition-delay: .1s;
  }
  @media (max-width: 740px) {
    .about_portrait {
      box-shadow: inset -1em -6em 4em -4em rgba(0,0,0,0.75);
    }
    .about_portrait_title {
      opacity: 1;
    }
  }
  .about_portrait_title h4 {
    display: block;
    margin: 0;
    line-height: 1.2em;
    color: #FFF;
  }

  .research_article_container {
    display: flex;
    flex-direction: row;
      flex-wrap: wrap;
      align-items: stretch;
      justify-content: flex-start;
      flex: 31.3333333333%;
    width: 100%;
  }
  .research_article {
    display: block;
    box-sizing: border-box;
      width: 320px;
      max-width: 31.3333333333%;
      height: auto;
    margin: 0 1% 2em;
  }
  @media (max-width: 1000px) {
    .research_article {
      width: 960px;
      max-width: 50%;
      margin: 0 0 2em;
      padding: 1%;
    }
  }
  @media (max-width: 740px) {
    .research_article {
      max-width: 100%;
      padding: 0;
      margin-bottom: 2em;
    }
  }
  .research_article_image_container {
    overflow: hidden;
  }
  .research_article_image {
    position: relative;
    aspect-ratio: 1/1;
    max-width: 100%;
    width: 100%;
    height: auto;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transition: box-shadow .1s ease;
  }
  .research_article_title  {
    margin-top: 0.5em;
  }
  .research_article_title h4 {
    margin: 0; padding: 0;
  }
  .research_article_title h3 {
    text-align: left;
    margin: 0.25em 0;
    line-height: 1em;
  }
  .research_article_image:hover {
    -webkit-transform: scale(1.05);
    -webkit-transition: transform 0.3s ease-in-out;
  }

.engagement_article_container {
  display: flex;
  flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    flex: 31.3333333333%;
  width: 100%;
}
.engagement_article {
  display: block;
  box-sizing: border-box;
    width: 320px;
    max-width: 31.3333333333%;
    height: auto;
  margin: 0 1% 2em;
}
@media (max-width: 1000px) {
  .engagement_article {
    width: 960px;
    max-width: 50%;
    margin: 0 0 2em;
    padding: 1%;
  }
}
@media (max-width: 740px) {
  .engagement_article {
    max-width: 100%;
    padding: 0;
    margin-bottom: 2em;
  }
}

.engagement_article_image_container {
  overflow: hidden;\
}
.engagement_article_image {
  position: relative;
  aspect-ratio: 5/4;
  max-width: 100%;
  width: 100%;
  height: auto;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: box-shadow .1s ease;
}
.engagement_article_title h4 {
  margin: 0; padding: 0;
}
.engagement_article_image:hover {
  -webkit-transform: scale(1.02);
  -webkit-transition: transform 0.3s ease-in-out;
}

.engagement_title, .engagement_title a {
  color: inherit;
  text-decoration: none;
}

.engagement_title {
  border-top: 2px solid black;
  padding: 0.25em 0;
  margin: 0 0 0.5em;
}

.engagement_date {
  background-color: #FFFFFF;
  position: absolute;
  top: 0.5em; left: 0.5em;
  width: 3.5em;
  height: auto;
  text-align: center;
}
.engagement_date h2, .engagement_date h5 {
  margin: 0; padding: 0;
  line-height: 1;
}
.engagement_date h5 {
  padding: 0 0 0.5em;
}
/* Blocks
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.swiper {
  max-width: 100%;
  max-height: 600px;
  box-sizing: content-box;
  text-align: center;
}
.swiper#engagement .swiper-slide {
  aspect-ratio: 3/4;
  transform: scale(.7);
  margin: 0; padding: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 0 0 0 1000px rgba(255, 228, 72, .5);
}
.swiper#engagement .swiper-slide-prev, .swiper#engagement .swiper-slide-next {
  transform: scale();
  aspect-ratio: 3/4;
}
.swiper#engagement .swiper-slide-active {
  box-shadow: inset 0 0 0 1000px rgba(255, 228, 72, 0);
  transform: scale(1);
  transition: transform .3s ease-in-out;
  }
.swiper#engagement .swiper-slide-active .swiper__caption {
  color: #FFFFFF!important;
  top: 0.5em!important;
  left: 0.75em!important;
}
.swiper .swiper-slide img {
  max-width: 100%;
  height: 400px;
}
.swiper__caption {
  position: absolute;
    top: 0.25em;
    left: 0.5em;
  display: block;
  width: 100%;
  text-align: left;
  font-style: italic;
}
.swiper#engagement .swiper-slide .swiper__caption {
    top: -2em;
    left: 0;
}
.swiper#swiper--full {
  width: 100vw!important;
  max-height: 200vh;
  aspect-ratio: 16/9;
}
.swiper#swiper--full .swiper-wrapper {
}
  .swiper#swiper--full .swiper-wrapper .swiper-slide {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
.swiper__blurb {
  position: relative;
  top: -6em;
  z-index: 2;
  width: 100%;
  padding: 2em;
  box-sizing: padding-box;
}
  .swiper__blurb h3 {
    text-align: left!important;
    margin-top: 0!important;
  }
  .swiper__blurb p {
    margin-bottom: 0!important;
  }
  .swiper__blurb a {
    color: inherit; text-decoration: underline;
  }
  @media (max-width: 800px) {
    .swiper__blurb {
      top: 2em;
      margin-bottom: 5em;
    }
  }

.swiper__logos {
  min-width: 100vw;
    margin: 2em 0;
    padding: 0;
}
  .swiper__logos .swiper-wrapper  {
    padding: 1em 0;
    display: flex;
      align-items: center;
  }
  .swiper__logos .swiper-slide img {
    max-width: 100%!important;
    max-height: 10em;
    height: auto!important;
  }

.connect__grid {
  margin-top: 1em;
  display: flex;
    flex-direction: row;
    align-items: center;
}
  .connect__grid__blocks {
    width: 100%;
  }
  @media (max-width: 800px) {
    .connect__grid {
      flex-direction: column;
    }
  }
  .connect__grid__blocks figure img {
    line-height: 0;
    margin: 0 0 1em;
  }
  .connect__grid__blocks p {
    margin: 0 2em;
  }
  @media (max-width: 800px) {
    .connect__grid__blocks p {
      margin: 0;
    }
  }

table#connect__jobboard {
  width: 100%;
  overflow-x: auto;
}
table#connect__jobboard tbody tr:hover {
  background-color: #f1f1f1;
}
table#connect__jobboard .mobileHide {
    display: table-cell;
}
@media (max-width: 800px) {
  table#connect__jobboard .mobileHide {
    display: none;
  }
}
  figure {}
  figcaption, .caption {
    color: grey;
    font-size: smaller
  }
/* Footer
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.footer {
  margin-top: 4em;
  padding: 2em;
  max-width: 100%;
  background-color: #F1F1F1;
  position: static;
    left: 0; right: 0;
    bottom: 0;
}
.footer .footer_nav {
  margin: 0;
  list-style: none;
}
.footer .navlinks {
  color: inherit;
  padding: 1em 1em 0 0;
  display: inline-block;
}
@media (max-width: 1000px) {
  .footer .navlinks {}
}
