@charset "UTF-8";
/* Typography */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Roboto:ital,wght@0,400;0,700;1,400;1,700&display=swap");
/* Custom Buttons */
.btn {
  font-weight: 400;
  border-radius: 50px;
  transition: all 0.25s ease-in-out;
  padding: 6px 24px;
  border: none;
  box-shadow: none;
}
.btn-default {
  color: black !important;
}
.btn-border-blk {
  border: 1px solid #000;
}
.btn-border-blk:hover {
  background-color: var(--light-af);
}
.btn-primary {
  color: white !important;
  background: var(--navy-lighter) !important;
  border-color: var(--navy-light);
}
.btn-primary.active, .btn-primary:active, .btn-primary:hover, .open > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: var(--baby-blue);
  border-color: transparent;
  box-shadow: none !important;
}
.btn-primary.btn.focus, .btn-primary:focus, .btn-primary:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
}
.btn-secondary {
  color: #fff !important;
  background: linear-gradient(90deg, var(--flat-red) 0%, var(--fuschia) 100%);
  border-color: transparent;
}
.btn-secondary.active, .btn-secondary:active, .btn-secondary:hover, .open > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #82ffff;
  border-color: transparent;
  box-shadow: none !important;
}
.btn-secondary.btn.focus, .btn-secondary:focus, .btn-secondary:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
}
.btn-navy {
  color: #fff !important;
  background-color: var(--navy);
  border-color: transparent;
}
.btn-navy.active, .btn-navy:active, .btn-navy:hover, .open > .btn-navy.dropdown-toggle {
  color: #fff;
  background-color: var(--navy);
  border-color: transparent;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.btn-navy.btn.focus, .btn-navy:focus, .btn-navy:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
}
.btn-blue {
  color: #fff !important;
  background-color: var(--baby-blue);
  border-color: transparent;
}
.btn-blue.active, .btn-blue:active, .btn-blue:hover, .open > .btn-blue.dropdown-toggle {
  color: #fff;
  background-color: var(--baby-blue);
  border-color: transparent;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.btn-blue.btn.focus, .btn-blue:focus, .btn-blue:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
}
.btn-data {
  color: #fff !important;
  background-color: var(--navy-darkest);
  border-color: transparent;
}
.btn-data.active, .btn-data:active, .btn-data:hover, .open > .btn-data.dropdown-toggle {
  color: #fff;
  background-color: var(--navy);
  border-color: transparent;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.btn-data.btn.focus, .btn-data:focus, .btn-data:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
}
.btn-red {
  color: #fff !important;
  background-color: var(--flat-red);
  border-color: transparent;
}
.btn-red.active, .btn-red:active, .btn-red:hover, .open > .btn-red.dropdown-toggle {
  color: #fff;
  background-color: var(--flat-red);
  border-color: transparent;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.btn-red.btn.focus, .btn-red:focus, .btn-red:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
}
.btn-besci-teal {
  color: #fff !important;
  background-color: var(--besci-teal);
  border-color: transparent;
}
.btn-besci-teal.active, .btn-besci-teal:active, .btn-besci-teal:hover, .open > .btn-besci-teal.dropdown-toggle {
  color: #fff;
  background-color: var(--besci-teal-light);
  border-color: transparent;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.btn-besci-teal.btn.focus, .btn-besci-teal:focus, .btn-besci-teal:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
}
.btn-besci-teal-light {
  color: #fff !important;
  background-color: var(--besci-teal-light);
  border-color: transparent;
}
.btn-besci-teal-light.active, .btn-besci-teal-light:active, .btn-besci-teal-light:hover, .open > .btn-besci-teal-light.dropdown-toggle {
  color: #fff;
  background-color: var(--besci-teal-light);
  border-color: transparent;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.btn-besci-teal-light.btn.focus, .btn-besci-teal-light:focus, .btn-besci-teal-light:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: none !important;
}
.btn-white {
  background-color: white;
  transition: all 0.15s ease-in-out;
}
.btn-white:hover, .btn-white:active, .btn-white:focus, .btn-white .active {
  background-color: var(--light-af);
}
.btn-outline-light {
  border: 1px solid white;
  color: white !important;
}
.btn-outline-light:hover, .btn-outline-light:active, .btn-outline-light:focus {
  border: 1px solid var(--light-af);
  background-color: transparent;
  color: var(--light-af) !important;
}
.btn-outline-dark {
  border: 1px solid var(--navy-darkest);
  color: var(--navy-darkest) !important;
}
.btn-outline-dark:hover, .btn-outline-dark:active, .btn-outline-dark:focus {
  border: 1px solid var(--navy);
  background-color: transparent;
  color: var(--navy) !important;
}
.btn-outline-cyan {
  border: 1px solid var(--teal-deal);
  color: var(--teal-deal) !important;
}
.btn-outline-cyan:hover, .btn-outline-cyan:active, .btn-outline-cyan:focus {
  border: 1px solid var(--baby-blue);
  background-color: transparent;
  color: var(--baby-blue) !important;
}
.btn-fellowship {
  background-color: var(--fellowship-light-af);
  color: var(--navy-dark);
}
/* Colour palette */
:root {
  --navy: #1f3269;
  --navy-light: #243875;
  --navy-lighter: #283e80;
  --navy-dark: #182851;
  --navy-darkest: #10172d;
  --baby-blue: #469ee1;
  --flat-red: #D84E50;
  --fuschia: #D84190;
  --light-af: #d9e9f6;
  --teal-deal: #51e7f2;
  --parca-green: #9fc363;
  --ympact: #FBB040;
  --besci-teal: #055668;
  --besci-teal-light: #0b6d83;
  --fellowship-light-af: #c7e6ff;
  --fellowship-light: #a4d1f5;
  --linear-45-bg: linear-gradient(153deg, #2A448F 12.63%, #182851 86.71%);
  --bg-neutral: #F3F3F6;
  --rec-grey: #d9d9d9;
  --rec-grey-light: #f2f2f2;
  --linear-45-bg: linear-gradient(153deg, #2A448F 12.63%, #182851 86.71%);
  --super-extra-light:#EBF4F7;
}
/* main background  */
.pcocp-container {
  background: var(--bg-neutral);
}
/* Defaults */
body {
  font-family: "Roboto", sans-serif;
  background: var(--bg-neutral);
}
body.toolbar-fixed .toolbar-oriented .toolbar-bar {
  z-index: 10000;
}
.container.narrow {
  max-width: 800px;
}
.container {
  max-width: 969px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  border-bottom: none;
}
h1 {
  font-size: 3em;
  margin-top: 0;
}
.h1-super {
  font-size: 3.5em;
  margin-bottom: 0;
  margin-top: 0;
}
.h1-supertitle {
  display: block;
  font-size: 2rem;
  color: var(--flat-red);
  margin-bottom: 1rem;
}
h2 {
  margin-bottom: 2.5rem;
}
h2.with-line::before {
  content: "";
  display: inline-block;
  margin-bottom: 10px;
  margin-right: 1rem;
  width: 80px;
  height: 3px;
  background-color: var(--flat-red);
}
.h2-bar {
  border-left: 4px var(--flat-red) solid;
  padding-left: 20px;
}
.hero-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: 0%;
  margin-bottom: 10px;
}
@media (max-width: 420px) {
  h1 {
    font-size: 2em;
  }
}
.pt-4, .py-4 {
  padding-top: 30px !important;
}
.pb-4, .py-4 {
  padding-bottom: 30px !important;
}
.brdr-bttm, .brdr-lft, .brdr-rght, .brdr-tp {
  border: solid 0 #ccc;
}
.brdr-bttm {
  border-bottom-width: 1px;
}
img.img-responsive {
  object-fit: cover;
}
main {
  padding-bottom: 0;
}
#wb-cont {
  border-bottom: none;
  margin-top: 0.2em;
  padding-bottom: 0;
}
.d-flex {
  display: flex;
  flex-wrap: wrap;
}
/* Background colors */
.bg-navy {
  background-color: var(--navy);
  color: white;
}
.bg-gray {
  background-color: var(--light-gray);
}
.bg-navy-light {
  background-color: var(--navy-light);
  color: white;
}
.bg-navy-dark {
  background-color: var(--navy-dark);
  color: white;
}
.bg-navy-darkest {
  background-color: var(--navy-darkest);
  color: var(--light-af);
}
.bg-white {
  background-color: white;
  color: var(--navy-darkest);
}
.bg-light {
  background-color: var(--light-af);
  color: var(--navy-darkest);
}
.bg-extra-super-light {
  background-color: var(--super-extra-light);
}
.bg-light-blue {
  background-color: var(--light-af);
}
.bg-blue {
  background-color: var(--baby-blue);
}
.bg-dark {
  background-color: var(--navy-darkest);
  color: white;
}
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark a {
  color: white;
}
.bg-navy-gradient {
  background: var(--linear-45-bg);
}
.bg-besci-teal {
  background-color: var(--besci-teal);
  color: white;
}
.bg-fellowship-light {
  background-color: var(--fellowship-light);
  color: var(--navy-darkest);
}
.bg-fellowship-light-af {
  background-color: var(--fellowship-light-af);
  color: var(--navy-darkest);
}
.bg-besci-teal-light {
  background-color: var(--besci-teal-light);
  color: white;
}
.bg-red {
  background-color: var(--flat-red);
  color: white;
}
.bg-green {
  background-color: var(--parca-green);
}
.bg-fuschia {
  background-color: var(--fuschia);
}
.bg-yellow {
  background-color: var(--ympact);
}
.bg-cyan {
  background-color: var(--teal-deal);
}
/* Borders */
.border {
  border: 2px solid;
}
.border-baby-blue {
  border-color: var(--baby-blue);
}
/* Text colours */
a, a:visited {
  color: var(--navy);
}
.text-white {
  color: white !important;
}
.text-red {
  color: var(--flat-red) !important;
}
.text-blue {
  color: var(--baby-blue) !important;
}
.text-parca-green {
  color: var(--parca-green) !important;
}
.text-teal {
  color: var(--teal-deal) !important;
}
.text-navy {
  color: var(--navy) !important;
}
.text-navy-dark {
  color: var(--navy-dark) !important;
}
.text-dark {
  color: var(--navy-darkest) !important;
}
.text-yellow {
  color: var(--ympact);
}
/*
 Pre-Navigation menu
*/
.pre-nav {
  background-color: var(--navy-light);
  padding: 12px;
  height: 100%;
  z-index: 1068;
}
.pre-nav__items {
  display: flex;
  justify-content: space-between;
}
.pre-nav__items img.back-to-canada {
  display: inline-block;
  width: 220px;
}
.pre-nav__items a {
  color: #fff;
  text-decoration: none;
}
/*
 main navigation menu
*/
#toggle-menu {
  padding: 10px;
}
#toggle-menu:focus, #toggle-menu.tabbed:focus {
  outline: 5px auto var(--baby-blue);
  outline-offset: -2px;
}
.region-navigation {
  background-color: var(--navy);
}
.navbar-nav > li > a {
  line-height: inherit;
}
.nav > li > a:focus, .nav > li > a:hover {
  background-color: inherit;
  outline: none;
}
.nav > li > a:focus {
  outline: 5px auto var(--baby-blue);
  outline-offset: -2px;
}
nav.navigation-bar {
  z-index: 2;
  background-color: var(--navy);
  margin-bottom: 0;
  border-radius: 0;
  border: none;
  padding: 5px 0;
}
nav.navigation-bar .navigation__items {
  display: flex;
  justify-content: space-between;
}
nav.navigation-bar .navigation__items img.logo {
  display: inline-block;
  width: 32px;
  margin-right: 6px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
nav.navigation-bar .navigation__items .menu {
  display: flex;
  justify-content: space-between;
}
nav.navigation-bar .navigation__items .menu li {
  display: flex;
  padding: 0;
}
nav.navigation-bar .navigation__items .menu a {
  color: white;
  text-decoration: none;
  border-radius: 6px;
  margin: auto 2.5px;
}
nav.navigation-bar .navigation__items .menu a:hover, nav.navigation-bar .navigation__items .menu a:active, nav.navigation-bar .navigation__items .menu a:focus, nav.navigation-bar .navigation__items .menu a.active, nav.navigation-bar .navigation__items .menu a.is-active {
  background-color: var(--navy-dark);
  border-color: none;
  color: var(--light-af);
}
nav.navigation-bar .navigation__items .menu > li:last-child > a {
  background-color: var(--flat-red);
  border-radius: 69px;
}
nav.navigation-bar .navigation__items .branding a, nav.navigation-bar .navigation__items .branding a:hover, nav.navigation-bar .navigation__items .branding a:visited {
  color: white;
  text-decoration: none;
  border-radius: 0;
  margin: auto 2.5px;
  font-size: 20px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media (max-width: 767px) {
  nav.navigation-bar .navigation__items {
    flex-direction: column;
  }
  nav.navigation-bar .navigation__items a.mobile-menu-bars {
    color: #fff;
    display: flex !important;
    align-items: center;
    cursor: pointer;
  }
  nav.navigation-bar .navigation__items .branding {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }
  nav.navigation-bar .navigation__items .menu {
    display: none;
    flex-direction: column;
    -webkit-animation-name: loogart;
    -webkit-animation-duration: 0.5s;
    animation-name: loogart;
    animation-duration: 0.5s;
  }
  nav.navigation-bar .navigation__items .menu a {
    justify-content: center;
    margin: 1.5rem auto;
    border-bottom: 0;
    transition: none;
    font-size: 1.5em;
    font-weight: bold;
  }
  nav.navigation-bar .navigation__items .menu-mobile-visible {
    display: flex;
    justify-content: start;
    padding-top: 3em;
    height: calc(100vh - 59px);
    overflow: scroll;
  }
  nav.navigation-bar .navigation__items .body-menu-mobile-visible {
    overflow: hidden !important;
  }
}
@-webkit-keyframes loogart {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes loogart {
  0% {
    opacity: 0;
    transform: translateY(-15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
nav#block-impact-bootstrap-footer h2 {
  color: white;
}
.nav-secondary {
  padding-left: 1.5em;
  border-left: 8px solid var(--flat-red);
}
.nav-secondary__besci {
  border-color: var(--besci-teal);
}
.nav-secondary__fellow {
  border-color: var(--fellowship-light);
}
.nav-secondary__blue {
  border-color: var(--baby-blue);
}
.nav-secondary li {
  list-style: none;
  margin-bottom: 5px;
}
.nav-secondary li a {
  color: var(--navy-darkest);
}
.nav-secondary li a:hover {
  color: var(--navy);
}
/* Main nav dropdown fix */
nav.navigation-bar .menu li {
  position: relative;
}
/* Target the submenu */
nav.navigation-bar .menu li ul {
  display: none;
  position: absolute;
  top: 100%;
  /* appear below the parent */
  right: 0;
  /* align submenu’s right edge with parent’s right edge */
  background-color: var(--navy-dark);
  border-radius: 12px;
  padding: 6;
  margin: 0;
  list-style: none;
  z-index: 1000;
  min-width: 180px;
  flex-direction: column;
}
/* Make sure submenu items are block-level */
nav.navigation-bar .menu li ul li {
  display: block;
}
/* Show submenu on hover or focus */
nav.navigation-bar .menu li:hover > ul, nav.navigation-bar .menu li:focus-within > ul {
  display: block;
}
/* Optional: style child links */
nav.navigation-bar .menu li ul li a {
  width: 100%;
  padding: 10px;
  text-decoration: none;
  display: block;
}
nav.navigation-bar .menu li ul li a:hover {
  background-color: var(--baby-blue);
  color: var(--navy);
}
@media (max-width: 767px) {
  /* Reset submenu styles on mobile */
  nav.navigation-bar .menu {
    flex-direction: column;
  }
  nav.navigation-bar .menu li {
    display: block;
    flex-direction: column;
  }
  nav.navigation-bar .menu li ul {
    display: block !important;
    position: static !important;
    /* remove absolute positioning */
    background: var(--navy-dark);
    box-shadow: none;
    margin: 0 0 0 0;
  }
  nav.navigation-bar .menu li ul li {
    display: block;
    text-align: center;
  }
  nav.navigation-bar .menu li ul li a {
    font-size: 1.25rem;
    padding-left: 1.5rem;
    /* indent further for visual hierarchy */
    display: block;
    color: white;
    /* or your mobile menu text color */
    background: none;
  }
}
.dropdown-toggle.item::after {
  content: "▼";
  /* Downward triangle */
  font-size: 0.6em;
  margin-left: 0.4em;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  /* Adjust for your background */
}
/* details summary */
.accordion details summary {
  border: none;
  border-bottom: 1px dotted var(--navy-darkest);
  border-radius: 0;
  color: var(--impact-navy-dark);
  padding: 20px;
  text-decoration: none;
  list-style-type: "+";
  font-size: 2em;
}
.accordion details[open] {
  border: none;
  border-bottom: 1px dotted var(--navy-darkest);
  border-radius: 0;
  padding-bottom: 1em;
}
.accordion details[open] summary {
  border-bottom: none;
  border-radius: 0;
  list-style-type: "−";
}
/* Main site cards */
a.card {
  text-decoration: none;
  color: var(--navy-darkest);
  overflow: hidden;
  border-radius: 24px;
  background-color: #f9f9f9;
  transition: all 0.15s ease-out;
  border: 1px solid #f3f3f3;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
}
a.card__dark {
  color: var(--light-af);
  background-color: var(--navy-dark);
  border: 1px solid var(--navy-dark);
}
a.card__dark .card-label {
  border: 0.5px solid white;
  margin-bottom: 0.69em;
}
a.card-team {
  text-decoration: none;
  color: var(--navy-darkest);
  overflow: hidden;
  border-radius: 24px;
  transition: all 0.15s ease-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  width: 100%;
}
a.card-publication {
  text-decoration: none;
  color: var(--navy-darkest);
  transition: all 0.15s ease-out;
  display: flex;
  align-items: top;
  background-color: var(--bg-neutral);
  width: 100%;
  gap: 20px;
}
a.card-publication:hover img {
  border: 1px solid var(--light-af);
  box-shadow: 0px 3.5px 5.3px rgba(0, 0, 0, 0.028), 0px 11.6px 17.9px rgba(0, 0, 0, 0.042), 0px 52px 80px rgba(0, 0, 0, 0.07);
}
.img-card {
  display: block;
  width: 100%;
  height: 169px;
  object-fit: cover;
  background-color: #eee;
}
.card__dark .img-card {
  background-color: var(--navy);
}
.img-card-team {
  display: block;
  width: 100%;
  height: 169px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 24px;
}
.img-card-team-modal {
  display: block;
  width: 100%;
  height: 200px;
  object-fit: contain;
  object-position: bottom;
  border-radius: 8px 8px 0 0;
}
.card-publication {
  margin-bottom: 30px;
}
a.card-publication {
  text-decoration: none;
  transition: all 0.15s ease-out;
  display: flex;
  align-items: center;
  width: 100%;
}
.card-publication h3 {
  margin-top: 0px;
  font-size: 1.15em;
}
.img-card-publication {
  display: flex;
  width: 150px;
  height: 200px;
  max-height: 320px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: all 0.15s ease-out;
}
.card__dark .img-card {
  background-color: var(--navy);
}
.card-label {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75em;
  font-weight: 600;
  padding: 5px 15px;
  border-radius: 3em;
  margin-bottom: 0.69em;
}
.card-outlined {
  border: 1px solid var(--navy-dark);
}
.card-label-icon {
  height: 14px;
  margin-right: 6px;
  margin-left: -3px;
}
.card-heading-eyebrow {
  font-size: 0.9em;
  font-weight: 600;
  display: block;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  border-top: 0.5px solid var(--navy-dark);
  margin-top: 1em;
  padding-top: 1em;
  font-size: 0.8em;
}
.card-status__0::before, .card-status__1::before, .card-status__2::before, .card-status__3::before, .card-status__4::before, .card-status__co::before, .card-status__op::before, .card-status__in::before, .card-status__cl::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 20px;
  margin-right: 0.25em;
}
.card-status__0::before, .card-status__co::before {
  background: var(--baby-blue);
}
.card-status__1::before, .card-status__op::before {
  background: var(--parca-green);
}
.card-status__2::before, .card-status__in::before {
  background: var(--ympact);
}
.card-status__3::before, .card-status__cl::before {
  background: var(--flat-red);
}
a.card:hover {
  background-color: #fff;
  color: var(--navy);
  border: 1px solid var(--light-af);
  box-shadow: 0px 3.5px 5.3px rgba(0, 0, 0, 0.028), 0px 11.6px 17.9px rgba(0, 0, 0, 0.042), 0px 52px 80px rgba(0, 0, 0, 0.07);
}
a.card.card__dark:hover {
  color: var(--light-af);
  background-color: var(--navy);
  border: 1px solid var(--navy);
  animation: glowing 5s infinite;
}
/* Main site tiles */
.pagetile {
  border-radius: 24px;
  box-sizing: content-box;
  margin-bottom: 30px;
  color: #000;
  background-color: #F9F9F9;
  overflow: hidden;
  transition: all 0.25s ease-in-out;
}
.pagetile:hover {
  background-color: var(--light-af);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
  margin-top: -5px;
}
.pagetile .title {
  font-size: 1.5em;
  line-height: 1.1em;
  font-weight: 900;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.pagetile .subtitle {
  font-size: 0.8em;
  color: #000;
  margin-bottom: 20px;
}
.pagetile .content {
  padding: 24px;
  margin: 0;
  min-height: 400px;
}
.pagetile .details {
  border-top: 1px solid #000;
  padding-top: 12px;
  margin: 24px;
}
.pagetile a {
  text-decoration: none;
}
.pagetile-image {
  object-fit: cover;
  height: 169px;
  width: 100%;
  display: block;
}
.pagetile-container {
  margin-top: 10px;
  padding: 20px;
}
.pagetile-tag {
  padding: 6px 14px;
  border-radius: 20px;
  background-color: var(--light-gray);
  border: 1px solid #000;
  font-weight: 700;
  font-size: 0.9em;
  margin-bottom: 14px;
  display: inline-block;
}
.pagetile-tag.type_challenge {
  background-color: var(--navy);
  border-color: var(--navy);
  color: #fff;
  background-image: url("/themes/contrib/impact_bootstrap/img/logo-challenges.svg");
  background-position: 10px center;
  padding-left: 34px;
  background-repeat: no-repeat;
}
.pagetile-tag.type_besci {
  background-color: var(--besci-teal);
  border-color: var(--besci-teal);
  color: #fff;
  background-image: url("/themes/contrib/impact_bootstrap/img/logo-besci.svg");
  background-position: 10px center;
  padding-left: 34px;
  background-repeat: no-repeat;
}
/*
 This comment was added to overcome two phpcs errors:
 - Selectors must be on a single line
 - Blank lines are not allowed between class names
*/
.wb-sl {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  padding: 0.75em 1.25em;
  border-radius: 4em !important;
}
.sr-only {
  color: white !important;
}
h2.hl {
  font-size: 34px;
}
body.wb-modal > #wb-tphp {
  z-index: 1070 !important;
}
.wb-eqht {
  display: inline-block;
}
.align-vertical {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .align-vertical {
    display: block;
  }
}
p.leader {
  font-size: 2.5rem;
  font-weight: lighter;
}
p.lead {
  font-weight: 500;
  margin-bottom: 0;
}
p.lead-2 {
  font-size: 20px;
  margin-top: 25px;
  margin-bottom: 25px;
}
p.quote {
  color: var(--navy-dark);
  font-size: 32px;
}
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.15) !important;
}
.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}
.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35) !important;
}
.shadow-card {
  box-shadow: 2px 8px 20px 0 rgba(119, 120, 121, 0.25) !important;
}
.blt {
  display: inline-block;
  width: 1.25em;
  height: 1.25em;
  background: var(--navy);
  border-radius: 0 2em 0 0;
  margin-right: 0.5em;
}
.blt-teal {
  background: #51e7f2;
}
.blt-red {
  background: var(--flat-red);
}
.blt-pink {
  background: #d84190;
}
.blt-blue {
  background: #469ee1;
}
.blt-gray-blue {
  background: #85a7c2;
}
.blt-lg {
  width: 2em;
  height: 2em;
}
.jumbotron {
  position: relative;
  min-height: 50vh;
  background-color: #1c2c5b;
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center 50%;
  margin-bottom: 0;
  color: #fff;
  display: flex;
  align-items: center;
  padding-top: 3.25em;
  padding-bottom: 3.25em;
  overflow: hidden;
}
.jumbotron .above {
  z-index: 1;
}
.jumbotron h1 {
  border-bottom: 0 !important;
  font-size: 3.25em;
  margin-top: 38px;
  margin-bottom: 30px;
}
.jumbotron .grid-line {
  display: inline-block;
  position: absolute;
  top: 0;
  right: 120px;
  bottom: 0;
  border-left: 4px dotted var(--navy);
}
.jumbotron .grid-line:nth-child(2) {
  right: 240px;
}
.jumbotron .grid-line:nth-child(3) {
  right: 360px;
}
.jumbotron .grid-line:nth-child(4) {
  right: 480px;
}
.jumbotron .grid-line:nth-child(5) {
  right: 600px;
  border-color: rgba(31, 49, 105, 0.6);
}
.jumbotron .grid-line:nth-child(6) {
  right: 720px;
  border-color: rgba(31, 49, 105, 0.3);
}
.jumbotron .shape {
  height: 40px;
  width: 40px;
  position: absolute;
}
.jumbotron .shape__1 {
  height: 29px;
  width: 29px;
  top: 80px;
  right: 130px;
}
.jumbotron .shape__2 {
  bottom: 40px;
  left: 100px;
}
.jumbotron .shape__3 {
  left: -40px;
  bottom: -60px;
  height: 100px;
  width: 100px;
}
.jumbotron .shape__4 {
  right: 40px;
  top: 29px;
}
.jumbotron .shape__5 {
  height: 50px;
  width: 50px;
  right: -10px;
  bottom: 29px;
}
.jumbotron .shape__6 {
  height: 100px;
  width: 100px;
  bottom: 69px;
  right: 169px;
}
@media (max-width: 767px) {
  .jumbotron {
    background-position: -60%;
    background-size: cover;
    min-height: 60vh;
  }
  .jumbotron h1 {
    line-height: 1.325;
    font-size: 2em;
  }
}
.largetron {
  display: -ms-grid;
  display: grid;
  grid-template-areas: "title imagery";
  grid-template-columns: 1fr 1fr;
  -ms-grid-columns: 1fr 1fr;
  grid-gap: 0;
  min-height: 320px;
}
.largetron h1 {
  margin-top: 0.25em;
}
.largetron p {
  color: var(--flat-red);
  font-weight: 700;
  margin-top: 0.75em;
  margin-bottom: 0;
}
.largetron a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 500;
}
.largetron__left {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: title;
  background-color: var(--navy-darkest);
  padding: 3.25em;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
}
@media (max-width: 767px) {
  .largetron__left {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    padding: 1.25em;
    margin-left: 0;
  }
}
.largetron__right {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: imagery;
  background-color: var(--navy);
  overflow: hidden;
  position: relative;
  background-color: var(--navy-darkest);
  width: 100%;
}
.largetron__right img {
  object-fit: cover;
  width: 100%;
  height: 420px;
  margin-top: -100px;
}
@media (max-width: 767px) {
  .largetron__right {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
}
@media (max-width: 767px) {
  .largetron {
    -ms-grid-columns: 2f 2fr;
    grid-template-areas: "title title" "imagery imagery";
  }
  .largetron h1 {
    line-height: 1.25;
  }
}
section#challenges {
  padding: 3.25em 0;
  background-size: 110%;
  background-repeat: no-repeat;
  background-position: center;
}
section#challenges a {
  text-decoration: none;
}
section#nonChallenges {
  background-color: #85a7c2;
  color: var(--navy);
  padding: 3.25em 0;
}
section#nonChallenges a {
  text-decoration: none;
}
section#nonChallenges h2.h1 {
  margin-top: 0;
}
section#nonChallenges .card .img-holder {
  height: 240px;
  width: 100%;
  background: #51e7f2;
}
section#nonChallenges .card .img-holder img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}
section#ctaBox {
  background-color: #fff;
  padding: 1.25em;
}
section#ctaBox .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3.25em;
}
section#ctaBox .cta h2 {
  margin: 0.75em 0;
}
section#ctaBox .cta p {
  font-weight: 500;
  margin-bottom: 2em;
  color: var(--navy);
}
section#ctaBox .cta a {
  color: #fff;
}
section#ctaBox .cta__blue {
  background-color: #61a6de;
}
section#ctaBox .cta__blue h2, section#ctaBox .cta__blue p {
  color: var(--navy);
}
section#ctaBox .cta__navy {
  background-color: var(--navy);
}
section#ctaBox .cta__navy h2 {
  color: #469ee1;
}
section#ctaBox .cta__navy p {
  color: #fff !important;
}
section#ctaBox .cta__pink {
  background-color: #d84190;
}
section#ctaBox .cta__pink h2, section#ctaBox .cta__pink p {
  color: #fff !important;
}
section#ctaBox .cta__dark {
  background-color: #10172d;
}
section#ctaBox .cta__dark h2 {
  color: #51e7f2;
}
section#ctaBox .cta__dark p {
  color: #469ee1 !important;
}
@media (max-width: 767px) {
  section#ctaBox .cta {
    padding: 1.25em;
  }
}
section#staticContent h2, section#staticContent h3, section#staticContent .basic-page--content h2, section#staticContent .basic-page--content h3 {
  margin-bottom: 0.75em;
  color: var(--navy);
}
section#staticContent p, section#staticContent li, section#staticContent a {
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: #10172d;
  margin-bottom: 1.25em;
}
section#staticContent a {
  color: var(--navy);
}
section#newsContent .news-cards a {
  text-decoration: none;
}
section#newsContent .news-cards img {
  margin-bottom: 1.25em;
  object-fit: cover;
  width: 100%;
  height: 190px;
}
section#newsContent .news-cards p.department {
  color: var(--flat-red);
  font-weight: 500;
  margin-bottom: 0.75em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section#newsContent .news-cards h2 {
  margin-bottom: 0.75em;
  color: var(--navy);
  margin-top: 0;
  font-size: 1.25em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
section#newsContent .news-cards p.small {
  color: slategray;
  font-weight: 500;
}
section#newsContent .pagination {
  margin: auto;
}
section#newsContent .pagination a, section#newsContent .pagination span {
  background-color: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
section#newsContent .pagination a:hover, section#newsContent .pagination a:focus, section#newsContent .pagination span:hover, section#newsContent .pagination span:focus {
  color: #469ee1;
  background-color: var(--navy);
}
section#challengePage h1, section#challengePage h2, section#challengePage h3 {
  color: var(--navy);
}
section#challengePage h2 {
  margin-bottom: 1.25em;
}
section#challengePage h3 {
  margin-top: 0.75em;
}
section#challengePage h4 {
  color: var(--flat-red);
  margin-top: 0.75em;
}
section#challengePage ul {
  margin-bottom: 2em;
}
section#challengePage p, section#challengePage li, section#challengePage a {
  font-family: "Roboto Slab", Georgia, Cambria, "Times New Roman", Times, serif;
  color: #222;
}
section#challengePage a {
  color: #469ee1;
}
main.narrow-page .region-header, main.narrow-page .region-content, main.narrow-page .basic-page--content, main.narrow-page .challenge-page--content {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
main.narrow-page .container {
  max-width: 800px;
}
.view-news img {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
}
#user-login-form {
  width: 50%;
  margin: 0 auto;
  padding: 2em;
}
.field--name-field-homepage-header {
  display: none;
}
#wb-info {
  background-color: var(--navy);
}
#wb-info nav {
  padding: 2em 0 0;
}
#wb-info a {
  font-size: inherit;
}
#wb-info h3 {
  margin-top: 0;
}
#block-impact-languageswitcher h2 {
  display: none;
}
#block-impact-languageswitcher ul {
  margin: 0;
}
#block-impact-languageswitcher ul li {
  padding: 0;
}
#block-impact-bootstrap-footer {
  display: block;
}
.cta {
  padding: 3.25em;
}
.cta__gray {
  background-color: #d8d8d8;
}
.cta__gray h2 {
  color: var(--navy) !important;
  margin-top: 0;
}
.cta__gray p {
  color: #10172d !important;
}
.cta__navy {
  background-color: var(--navy);
}
.cta__navy h2 {
  color: #469ee1 !important;
  margin-top: 0;
}
.cta__navy p {
  color: #fff !important;
}
.card {
  transition: all 0.5s ease;
  margin-bottom: 3.25em;
}
.card .img-holder {
  height: 369px;
  background: #e5e5e5;
  overflow: hidden;
}
.card .img-holder img {
  transition: all 0.5s ease;
  overflow: hidden;
  object-fit: cover;
  height: 369px;
  width: 100%;
}
.card .img-holder img:hover {
  transform: scale(1.1);
}
.card .card-body {
  height: 100%;
  padding: 1.25em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card .card-body .sts {
  position: absolute;
  top: 300px;
  right: 50px;
  z-index: 3;
  background: var(--navy);
  color: white;
  padding: 0.5em 1.5em;
  font-weight: 500;
  border-radius: 1.25em;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.35) !important;
}
.card .card-body .sts.sts-open {
  background: var(--navy-lighter);
  color: white;
}
.card .card-body .sts.sts-closed {
  background: var(--flat-red);
  color: #fff;
}
.card .card-body .sts.sts-selection {
  animation: none;
  -webkit-animation: none;
  background: white;
  color: var(--navy);
}
.card .card-body .blt {
  flex: 0 0 1.25em;
  height: 1.25em;
  width: 1.25em;
  border-radius: 0 1.25em 0 0;
  margin-right: 0.75em;
  transition: all 0.25s ease;
}
.card .card-body .blt:hover {
  transform: translateY(-15px) scale(1.1) rotate(-45deg);
}
.card .card-body p {
  margin-bottom: 4px;
  font-weight: 500;
}
.card:hover {
  box-shadow: 2px 8px 20px 0 rgba(119, 120, 121, 0.25) !important;
}
@media (max-width: 767px) {
  .card .img-holder {
    height: 269px;
  }
  .card .img-holder img {
    height: 269px;
    width: 100%;
  }
  .card .card-body .sts {
    top: 210px;
    right: 30px;
  }
}
ul.process {
  margin-top: 3.25em;
  margin-bottom: 3.25em;
}
ul.process li {
  border-left: 8px solid #469ee1;
  padding-left: 2em;
  padding-bottom: 1em;
  padding-top: 1em;
}
ul.process li:first-child {
  padding-top: 0;
}
ul.process li::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--flat-red);
  position: absolute;
  margin-left: -3em;
  margin-top: 1em;
  border-radius: 4px;
}
ul.process li:first-child::before {
  margin-top: 0;
}
ul.process li:last-child::after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  background-color: var(--flat-red);
  position: absolute;
  margin-left: -3em;
  margin-top: 1em;
  border-radius: 4px;
}
.b-card {
  display: flex;
  margin-bottom: 1.25em;
}
.b-card img {
  flex: 0 0 1.25em;
  max-width: 120px;
  max-height: 120px;
  background: #ddd;
  margin-right: 1.25em;
}
.b-card .b-card__body a {
  text-decoration: none;
  color: var(--navy);
}
.b-card .b-card__body h3 {
  margin-top: 0;
}
.b-card .b-card__body p {
  font-size: 1em !important;
}
@media (max-width: 767px) {
  .b-card {
    flex-direction: column;
  }
  .b-card img {
    margin-bottom: 1.25em;
  }
}
.prize {
  display: flex;
  align-items: center;
  background: #ddd;
  margin: 1.25em 0;
  border-radius: 1em;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.175) !important;
  transition: all 0.5s ease;
  border-bottom: 1px solid #ddd;
}
.prize h3 {
  padding: 1em;
  text-align: center;
  font-size: 2em;
}
.prize h3 i {
  margin-bottom: 0.25em;
}
.prize .prize-body {
  padding: 1.5em;
}
.prize:hover {
  transform: translateY(-5px);
}
.prize__1 {
  background: linear-gradient(90deg, var(--flat-red) 0%, #d84190 100%);
}
.prize__1 h3, .prize__1 h4, .prize__1 p, .prize__1 a {
  color: #fff !important;
}
.prize__2 {
  background: linear-gradient(90deg, #51e7f2 0%, #469ee1 100%);
}
.prize__2 h3, .prize__2 h4, .prize__2 p, .prize__2 a {
  color: var(--navy) !important;
}
.prize__3 {
  background: var(--navy);
}
.prize__3 h3 {
  color: #469ee1 !important;
}
.prize__3 h4 {
  color: #d84190 !important;
}
.prize__3 p, .prize__3 a {
  color: #fff !important;
}
.prize__4 {
  background: #85a7c2;
}
.prize__4 h3, .prize__4 h4, .prize__4 p, .prize__4 a {
  color: var(--navy) !important;
}
.prize .fn-lnk, .prize .wb-fnote .fn-rtn a {
  background-color: var(--navy) !important;
  border: 1px solid #ccc;
  display: inline-block;
  padding: 2px 10px;
  white-space: nowrap;
  color: #fff !important;
}
#block-booknavigation {
  float: right;
  max-width: 600px;
  padding: 30px;
}
/* Webforms */
.webform-submission-form {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.webform-submission-form textarea {
  width: 100%;
}
.panel-default > .panel-heading {
  background-color: var(--rec-grey-light);
  font-weight: 900;
}
.form-actions {
  margin-top: 20px;
  margin-bottom: 40px;
}
.help-block, .control-group .help-inline {
  color: #000;
  font-size: 16px;
  margin: 5px 0 10px;
  padding: 0;
}
.webform-submission-form .input-group-addon {
  border: none;
  background-color: #fff;
  color: inherit;
  text-align: left;
  white-space: wrap;
}
.webform-submission-form .description {
  margin-top: 12px;
}
.webform-submission-form .webform-options-display-buttons input:checked + label.webform-options-display-buttons-label {
  background-color: #D9E9F6;
}
.webform-submission-form .control-label, .form-composite legend {
  font-size: 18px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.webform-submission-form .btn {
  margin-right: 10px;
  border-color: var(--navy);
}
.webform-submission-form .btn-success {
  background-color: var(--light-af);
  color: var(--navy);
}
/* new challenge pages */
.img-challenge-hero, .img-besci-hero {
  display: block;
  width: 100%;
  height: 369px;
  object-fit: cover;
  border-radius: 24px;
}
/* about page */
section#staticContent a, section.basic-page--content a {
  color: #144e7a;
}
section#ctaBox .cta__pink {
  background-color: #11172B;
}
/*partners */
h3.red {
  color: #79191b !important;
}
/* news */
section#newsContent .news-cards p.department {
  color: #79191b;
}
section#newsContent .news-cards p.small {
  color: #48535d;
}
/* challenges */
/* make font sans-serif*/
section#challengePage p, section#challengePage li, section#challengePage a {
  font-family: "Roboto", sans-serif;
}
.largetron p, section#challengePage h4 {
  color: var(--flat-red);
}
.largetron a {
  color: var(--navy);
  font-family: "Roboto Slab", Georgia, Cambria, "Times New Roman", Times, serif;
}
section#challengePage a {
  color: var(--baby-blue);
}
.prize__2 {
  background: linear-gradient(90deg, #a1fcfc 0%, #88c9ff 100%);
}
.prize__2 h3, .prize__2 h4, .prize__2 p, .prize__2 a {
  color: var(--navy) !important;
}
.prize__3 h4 {
  color: white !important;
}
.box-indigenous {
  background-color: #475c27 !important;
}
section#nonChallenges {
  background-color: #b3c8d9;
}
/* focus tiles css*/
a:focus .card, a:hover .card {
  box-shadow: 2px 8px 20px 0 rgba(119, 120, 121, 0.25) !important;
}
a:focus .card .card-body .blt {
  transform: translateY(-15px) scale(1.1) rotate(-45deg) !important;
}
/* block hide */
.block-hide {
  display: none;
}
/* unstyled list update */
.list-details summary {
  padding: 20px;
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--navy-darkest);
  color: var(--navy-darkest) !important;
  border-radius: 0;
}
.list-details details[open] > summary {
  border: none;
  border-radius: 0;
}
.list-details details[open] {
  border-top: none;
  border-left: none;
  border-right: none;
  border-bottom: 1px solid var(--navy-darkest);
}
/* footer */
.footer-primary-nav a {
  color: white;
  text-decoration: none;
}
.footer-primary-nav a:hover {
  color: white;
  text-decoration: underline;
}
.gc-sub-footer {
  background: white;
  color: #333;
  padding: 1.5em 0 2em;
}
.gc-sub-footer a {
  text-decoration: none;
}
footer ul.list-inline li:not(:first-child)::before {
  content: "•";
}
footer ul.list-inline li:not(:first-child) a {
  margin-left: 10px;
}
.footer__right .region-footer-right h2.block-title {
  color: white;
}
.gc-sub-footer-alignment {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gc-sub-footer-links {
  list-style: none;
  padding-top: 20px;
}
.footer-wordmark {
  width: 140px;
  text-align: right;
}
.footer-wordmark > img {
  width: 100%;
}
.footer__right .region-footer-right h2.block-title {
  color: white;
}
footer h3 {
  font-size: 1.25em;
  font-weight: 600;
}
footer li a {
  text-decoration: none;
}
.gc-main-footer {
  padding-top: 3em;
  padding-bottom: 1em;
}
.footer-brand img {
  width: 36px;
  height: 36px;
}
.footer-artwork {
  width: 100%;
  height: 400px;
  object-fit: contain;
  object-position: bottom;
}
a.footer-brand {
  color: white;
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
@media (max-width: 991px) {
  .gc-main-footer {
    text-align: center;
  }
  .gc-sub-footer-alignment {
    align-items: flex-end;
  }
  .footer-wordmark {
    width: 120px;
    margin-top: 1em;
  }
  footer .list-inline li {
    display: block;
    margin-bottom: 10px !important;
  }
  footer ul.list-inline li:not(:first-child)::before {
    content: none;
  }
  footer ul.list-inline li:not(:first-child) a {
    margin-left: 0;
  }
  .footer-artwork {
    width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: bottom;
  }
}
@media (max-width: 767px) {
  .footer-artwork {
    width: 100%;
    height: 269px;
    object-fit: cover;
    object-position: bottom;
  }
}
/* OLD Business Listing */
.business-hero {
  padding: 7em 0;
  background-color: var(--navy);
}
@media (max-width: 767px) {
  .business-hero {
    padding: 2.5em 0;
  }
}
.business-hero h1, .business-hero p {
  color: white;
}
.business-hero a {
  color: var(--baby-blue);
}
.business-hero .logo-fellowship {
  width: 120px;
}
.business-process {
  padding: 7em 0;
}
.business-process .icon-search-fellow {
  width: 69px;
}
.timeline-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.timeline-bar p.day {
  color: #E25456;
  font-weight: 600;
  margin-bottom: 0;
}
.timeline-bar .line-red {
  content: "";
  display: block;
  height: 2px;
  flex-grow: 1;
  background-color: #E25456;
  margin: auto 1rem;
}
.timeline-bar p.step {
  color: #1F3169;
  font-weight: 600;
  font-size: 2rem;
  margin-bottom: 0;
}
.shadow-1 {
  box-shadow: 0 16px 24px rgba(0, 0, 0, 0.16);
}
.timeline-process {
  padding: 3.5em 0;
}
.timeline-process ul.list-unstyled li {
  padding-left: 3rem;
}
.timeline-process ul.list-unstyled li::before {
  content: "";
  display: block;
  position: absolute;
  width: 14px;
  height: 14px;
  margin-left: -3rem;
  margin-top: 4px;
  border-radius: 20px;
  background-color: #469EE1;
}
.business-benefits {
  padding: 7rem 0;
  background-color: #F8F8F8;
  border-bottom: 10px solid white;
  background-image: url(/sites/default/files/rectangle-teal.svg), url(/sites/default/files/circle-blue.svg);
  background-size: 469px, 469px;
  background-position: 96% 5%, -30% 110%;
  background-repeat: no-repeat, no-repeat;
}
@media (max-width: 767px) {
  .business-benefits {
    background-image: none;
  }
}
.business-benefits.v2 {
  background-image: url(/sites/default/files/circle-teal.svg);
  background-size: 469px;
  background-position: -30% 50%;
  background-repeat: no-repeat;
}
@media (max-width: 767px) {
  .business-benefits.v2 {
    background-image: none;
  }
}
.business-cta {
  padding: 7rem 0;
  background-color: white;
}
@media (max-width: 767px) {
  .business-cta {
    padding: 1.5em 0;
  }
}
.business-cta .img-frame {
  position: relative;
  padding: 0;
}
.business-cta .frame-photo {
  display: block;
  position: absolute;
  top: 10px;
  left: 25px;
  bottom: -10px;
  width: calc(100% - 25px);
  border: 3px solid var(--flat-red);
}
.business-cta .frame-photo.blue {
  border: 3px solid var(--baby-blue);
}
.business-cta .padding-left {
  padding-left: 5rem;
}
@media (max-width: 767px) {
  .business-cta .padding-left {
    padding-left: 15px;
  }
}
.row-flex {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .row-flex {
    flex-direction: column;
  }
}
.row-flex div[class^="col-"] {
  display: inline-block;
  max-width: 100%;
}
.featurette-grid {
  padding: 3rem 0;
  background-color: #F8F8F8;
  border: 10px solid white;
}
.featurette-grid.bg-navy-blue {
  background-color: var(--navy);
}
.featurette-grid.bg-navy-blue h2, .featurette-grid.bg-navy-blue h3, .featurette-grid.bg-navy-blue p, .featurette-grid.bg-navy-blue a {
  color: white;
}
.icon-title {
  width: 0.69em;
  height: 0.69em;
  margin-right: 0.25em;
}
.icon-1 {
  width: 69px;
  height: 69px;
}
.icon-2 {
  width: 99px;
  height: 99px;
}
@media (max-width: 767px) {
  .icon-2 {
    margin-top: 15px;
    margin-bottom: 30px;
  }
}
.icon-challenge-type {
  max-width: 36px;
  max-height: 36px;
}
.img-hero-runners {
  background-image: url("./challenges/img/artwork-race.svg");
  background-size: 269px;
  background-repeat: no-repeat;
  background-position: 90% 90%;
}
@media (max-width: 767px) {
  .img-hero-runners {
    background-image: none !important;
  }
}
@media (max-width: 767px) {
  .h1-super {
    font-size: 2em;
  }
}
.h1-super .logomark-before {
  width: 60px;
  padding-bottom: 20px;
  margin-right: 12px;
}
@media (max-width: 767px) {
  .h1-super .logomark-before {
    width: 36px;
    padding-bottom: 12px;
  }
}
.shadow-smaf {
  box-shadow: 0 2.8px 2.2px rgba(0, 0, 0, 0.014), 0 6.7px 5.3px rgba(0, 0, 0, 0.02), 0 12.5px 10px rgba(0, 0, 0, 0.025), 0 22.3px 17.9px rgba(0, 0, 0, 0.03), 0 41.8px 33.4px rgba(0, 0, 0, 0.036), 0 100px 80px rgba(0, 0, 0, 0.05);
}
.no-padding-bottom {
  padding-bottom: 0;
}
.red-floor {
  display: block;
  width: 100%;
  height: 69px;
  background-color: var(--flat-red);
}
.row__hero-challenges {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 990px) {
  .row__hero-challenges {
    display: block;
  }
}
.row__vertical-align {
  display: flex;
  align-items: center;
}
@media (max-width: 990px) {
  .row__vertical-align {
    display: block;
  }
}
.border-section-thick {
  border: 12px solid white;
}
@media (max-width: 767px) {
  .border-section-thick {
    border: 8px solid white;
  }
}
.border-section-rounded {
  border-radius: 32px;
}
.bs-grid-item {
  padding-right: 60px;
  margin-bottom: 80px;
}
@media (max-width: 767px) {
  .bs-grid-item {
    padding-right: 0;
    margin-bottom: 60px;
  }
}
.bs-grid-item ul li {
  margin-bottom: 20px;
}
.bs-icon {
  height: 45px;
}
.bs-line {
  border: 1px solid var(--navy);
}
.dark-cta {
  padding: 5rem 0;
  background-color: #10172D;
  color: white;
}
.dark-cta h1, .dark-cta h2, .dark-cta h3 {
  color: white;
}
.dark-cta p, .dark-cta a {
  color: white;
}
.dark-cta .table {
  background-color: transparent;
  border: 0;
}
.dark-cta.border-bottom {
  border-bottom: 10px solid white;
}
.dark-cta .ic-pagination a.active, .dark-cta .ic-pagination a:hover {
  color: #51E7F2;
}
/*  TEAM Listing */
.bg-hero-team {
  background-image: url(/sites/default/files/team-bg.svg);
  background-position: center bottom;
  background-size: 60%;
  background-repeat: no-repeat;
  background-attachment: scroll;
}
.team-title-line {
  border: 2px solid var(--flat-red);
  width: 120px;
  margin: auto;
  margin-top: 23px;
  margin-bottom: 23px;
}
a.team-card {
  display: inline-block;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  opacity: 1;
  margin-bottom: 20px;
  width: 100%;
  overflow: hidden;
}
.team-card h3.h2 {
  border: none;
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0.7rem;
}
a.team-card:hover {
  opacity: 0.9;
}
.team-card-img {
  object-fit: cover;
  width: 100%;
  height: 320px;
  border-radius: 16px;
}
.modal-team-photo {
  width: 100%;
  border-radius: 12px;
}
.overlay-def .mfp-close {
  color: black;
}
.overlay-def .modal-title {
  color: #fff;
}
.modal-body-padding {
  padding: 30px;
}
@media (max-width: 767px) {
  .bg-hero-team {
    background-size: 150%;
  }
  .team-card-img {
    object-fit: cover;
    width: 100%;
    height: 220px;
  }
  .modal-body-padding {
    padding: 20px;
  }
}
@media (max-width: 990px) {
  .media .media-item {
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
  }
  #block-views-block-admin-resources-block-1 {
    padding-left: 14px;
    padding-right: 14px;
  }
}
/* Maintenance mode */
#maintenancemode h2 {
  color: #fff;
}
.img-maintenance-desktop {
  width: 100%;
  height: 200px;
  margin: auto;
  object-fit: contain;
  object-position: bottom;
}
.img-maintenance-mobile {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: bottom;
}
/* equal height rows */
.row-eq-height {
  display: flex;
  flex-wrap: wrap;
}
.row-eq-height [class*="col-"] {
  display: flex;
  flex-direction: column;
}
/* charts */
.chartblock {
  background: white;
  border-radius: 20px;
  margin-top: 30px;
  padding-left: 18px;
  padding-right: 18px;
  padding-top: 6px;
  padding-bottom: 6px;
  margin-bottom: 30px;
}
.sticky-nav {
  position: sticky;
  top: 40px;
}
@media (max-width: 767px) {
  .sticky-nav {
    display: block;
    position: relative;
    top: 0;
  }
}
/* Pager colors */
.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
  background-color: var(--navy);
  color: #fff;
}
/* staff bg styles */
.bg_0f1a52 {
  background-color: #0f1a52;
}
a.project-card .project-type {
  display: block;
  color: #10172D;
  font-size: 1.5rem;
  font-weight: normal;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .block-views-blockchallenge-listing-block-1 {
    margin-left: 15px;
    margin-right: 15px;
  }
}
.row-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .row-wrap {
    justify-content: center;
  }
  .img-panorama {
    width: 100%;
    height: 300px;
    object-fit: cover;
    object-position: 20%;
  }
}
.heading-eyebrow {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  font-weight: 600;
  display: block;
}
#drupal-off-canvas {
  background-color: var(--light-af);
  color: #000;
}
/* video player controls CSS WCAG contrast - issue #528 */
.wb-mm-ctrls {
  background: transparent;
}
.wb-mm-ctrls .btn-group .btn {
  padding-top: 1.5em;
}
.wb-mm-ctrls .wb-mm-txtonly {
  margin-top: -3em !important;
}
.wb-mm-ctrls p, .wb-mm-ctrls span {
  color: black !important;
}
.breadcrumb > .active {
  color: #333;
}
/* email TFA */
.email-tfa-email-tfa-verify-login {
  text-align: center;
  padding: 40px;
}
.email-tfa-email-tfa-verify-login input.form-text {
  margin-left: auto;
  margin-right: auto;
}
.email-tfa-email-tfa-verify-login button {
  margin: 10px;
}
/* may 2025 updates */
#projects, #media, #apply, #publications {
  scroll-margin-top: 160px;
}
.text-narrow {
  max-width: 569px;
  margin: auto;
}
.step-fellowship {
  display: flex;
  align-items: center;
  column-gap: 1em;
  row-gap: 1em;
}
.icon-step {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 24px;
}
.img-rounded-24 {
  border-radius: 24px;
}
.img-rounded-12 {
  border-radius: 12px;
}
.img-rounded, img-rounded-20 {
  border-radius: 20px;
}
.cta-box {
  padding: 4em;
  border-radius: 24px;
}
.pcocp-container .form-group {
  margin-bottom: 0px;
}
.icon-and-text {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #385bbf;
}
.gap-20 {
  gap: 20px;
}
.gap-15 {
  gap: 15px;
}
.icon-and-text:last-of-type {
  border-bottom: none;
}
.smooth-shadow {
  box-shadow: 0px 3.5px 5.3px rgba(0, 0, 0, 0.028), 0px 11.6px 17.9px rgba(0, 0, 0, 0.042), 0px 52px 80px rgba(0, 0, 0, 0.07);
}
blockquote {
  border-color: var(--navy);
  border-width: 8px;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  color: var(--navy);
  margin-bottom: 40px;
}
.blockquote-name {
  display: inline-block;
  font-weight: 600;
  font-size: 0.9em;
  margin-top: 8px;
  color: var(--navy);
}
blockquote.red {
  border-color: var(--flat-red);
}
.blockquote-photo {
  border-radius: 100px;
  border: 2px solid white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.28);
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
section.base {
  padding-top: 69px;
  padding-bottom: 69px;
}
.table > thead > tr > th {
  border-bottom: 1px solid #1f3269 !important;
}
.table > tbody > tr > td {
  border-top: 1px solid #1f3269 !important;
}
@media (max-width: 767px) {
  .icon-and-text {
    flex-direction: column;
    gap: 20px;
  }
  .row-wrap {
    justify-content: center;
  }
  section.base {
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
