@font-face {
  font-family: "Fira Sans";
  src: url("/static/fonts/FiraSans-Regular.ttf");
}
@font-face {
  font-family: "Cabin Condensed";
  src: url("/static/fonts/CabinCondensed-Regular.ttf");
  font-weight: normal;
}
@font-face {
  font-family: "Cabin Condensed";
  src: url("/static/fonts/CabinCondensed-Bold.ttf");
  font-weight: bold;
}
@font-face {
  font-family: "Cabin Condensed";
  src: url("/static/fonts/CabinCondensed-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "Cabin Condensed";
  src: url("/static/fonts/CabinCondensed-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "Expletus Sans";
  src: url("/static/fonts/ExpletusSans-VariableFont_wght.ttf");
  font-style: normal;
}
@font-face {
  font-family: "Expletus Sans";
  src: url("/static/fonts/ExpletusSans-Italic-VariableFont_wght.ttf");
  font-style: italic;
}
@font-face {
  font-family: "Funnel Sans";
  src: url("/static/fonts/FunnelSans-VariableFont_wght.ttf");
  font-style: normal;
}
@font-face {
  font-family: "Funnel Sans";
  src: url("/static/fonts/FunnelSans-Italic-VariableFont_wght.ttf");
  font-style: italic;
}
.btn {
  padding: 8px 12px;
  background-color: #f0edee;
  color: #313034;
  border-radius: 8px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  transition: all 0.3s ease-in-out;
  font-size: 1em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: none;
}
.btn:hover {
  background-color: #a4ccd4;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  text-decoration: none;
  color: #313034;
}
.btn.large {
  padding: 12px 20px;
  font-size: 1.25em;
}
.btn.primary {
  background-color: #631B08;
  color: #f0edee;
  border-bottom: 4px solid #380d01;
}
.btn.primary:hover {
  background-color: #380d01;
}
.btn.secondary {
  background-color: #304c64;
  color: #f0edee;
  border-bottom: 4px solid #1a2936;
}
.btn.secondary:hover {
  background-color: #1a2936;
}
.btn.tertiary {
  background-color: #26788e;
  color: #f0edee;
  border-bottom: 4px solid #0a3c49;
}
.btn.tertiary:hover {
  background-color: #0a3c49;
}
.btn.danger {
  background-color: #A50B1F;
  color: #f0edee;
  border-bottom: 4px solid #6d030f;
}
.btn.danger:hover {
  background-color: #6d030f;
}
@media screen and (max-width: 575px) {
  .btn .btn-label {
    display: none;
  }
}

@font-face {
  font-family: "Fira Sans";
  src: url("/static/fonts/FiraSans-Regular.ttf");
}
.explanationmark-branding {
  font-family: "Fira Sans", sans-serif;
  background: rgb(3, 55, 97);
  background: linear-gradient(40deg, rgba(128, 173, 23, 0.2) 10%, rgba(3, 55, 97, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 10px;
  color: white;
  font-size: 14px;
  max-width: 290px;
  border-radius: 20px;
}
.explanationmark-branding a {
  color: white;
  display: flex;
  align-items: center;
}
.explanationmark-branding a:hover {
  color: #f0edee;
  text-decoration: underline;
}
.explanationmark-branding img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Funnel Sans", sans-serif;
  font-size: 18px;
  min-height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto;
}

header {
  background-color: #000000;
  color: #f0edee;
  padding: 0;
  text-align: center;
  font-family: "Expletus Sans", sans-serif;
  height: 5rem;
  position: sticky;
  top: 0;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  z-index: 99;
}
header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/img/neurons_blurred_header.png");
  background-size: cover;
  background-position: center;
  background-repeat: repeat-x;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  z-index: -1;
}
header.stuck::before {
  opacity: 0.8;
}
header .header-site-title {
  margin: 0;
  font-size: 1.45em;
}
header a {
  color: #f0edee;
  text-decoration: none;
}
header nav {
  display: flex;
  position: relative;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  gap: 20px;
  padding: 1rem 1rem;
  height: 5rem;
}
header nav a {
  color: #f0edee;
  transition: color 0.2s ease-in-out;
}
header nav a:hover {
  color: #304c64;
  text-decoration: none;
}
header nav a.main-link {
  font-size: 1.45em;
  font-weight: bold;
}
header nav a.main-link svg {
  width: 51px;
  height: 51px;
  margin-bottom: -12px;
}
header nav a.main-link svg .svg-cls-brain {
  fill: #f0edee;
  transition: fill 0.2s ease-in-out;
}
header nav a.main-link svg .svg-cls-cerebellum {
  fill: #e2480c;
  transition: fill 0.2s ease-in-out;
}
header nav a.main-link:hover svg .svg-cls-brain {
  fill: #304c64;
}
header nav a.main-link:hover svg .svg-cls-cerebellum {
  fill: #8a2700;
}
header nav .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  gap: 15px;
  font-size: 1.25em;
}
@media screen and (min-width: 1000px) {
  header nav .nav-links {
    flex-direction: row;
    padding: 0;
    gap: 15px;
  }
}
@media screen and (min-width: 1000px) {
  header nav .menu-navigation-expand-btn {
    display: none;
  }
}
header nav .menu-navigation-expand-btn .expand-btn-icon-open {
  display: block;
}
header nav .menu-navigation-expand-btn .expand-btn-icon-close {
  display: none;
}
header nav .menu-navigation-expand-btn.open .expand-btn-icon-open {
  display: none;
}
header nav .menu-navigation-expand-btn.open .expand-btn-icon-close {
  display: block;
}
@media screen and (max-width: 999px) {
  header nav .collapsible-menu {
    display: none;
  }
  header nav .collapsible-menu.open {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
    position: absolute;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: #304c64;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    font-size: 1.25em;
    gap: 0;
    padding: 0;
  }
  header nav .collapsible-menu.open li {
    width: 100%;
    text-align: center;
    transition: background-color 0.2s ease-in-out;
  }
  header nav .collapsible-menu.open li a {
    display: block;
    width: 100%;
    color: #f0edee;
    padding: 10px 0;
  }
  header nav .collapsible-menu.open li:hover {
    background-color: #1a2936;
    color: #f0edee;
  }
}

h1,
h2 {
  font-family: "Cabin Condensed", sans-serif;
}

h2 {
  font-size: 2em;
}

main img.content-image {
  object-fit: cover;
}
main section {
  width: 100vw;
  padding: 2rem;
}
main section .container {
  max-width: 1000px;
  margin: 0 auto;
}
main section.hero {
  background-color: #313034;
  color: #f0edee;
  padding: 4rem 2rem;
  text-align: center;
  font-size: 1.2em;
  background-image: url("/static/img/neurons_darker.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
main section.hero .container {
  max-width: unset;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  justify-content: center;
}
main section.hero .container .image-container {
  grid-row: 1;
  grid-column: 1;
  max-height: 600px;
  margin: -1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.hero .container .image-container svg {
  max-height: 600px;
  filter: blur(8px);
}
@media screen and (min-width: 576px) {
  main section.hero .container .image-container svg {
    filter: unset;
  }
}
main section.hero .container .image-container svg .svg-cls-brain {
  fill: #6d030f;
}
main section.hero .container .image-container svg .svg-cls-cerebellum {
  fill: #304c64;
}
main section.hero .container .text-container {
  grid-row: 1;
  grid-column: 1;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  max-width: 460px;
  align-self: start;
  justify-self: center;
  z-index: 1;
}
main section.about {
  background-color: #f0edee;
  color: #313034;
  text-align: left;
}
main section.about .container {
  display: flex;
  flex-direction: column;
}
main section.about .container .two-content-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main section.about .container .two-content-row img.content-image {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
@media screen and (min-width: 768px) {
  main section.about .container .two-content-row {
    flex-direction: row;
    gap: 40px;
    align-items: center;
  }
  main section.about .container .two-content-row img.content-image {
    max-width: unset;
    object-fit: cover;
  }
}
main section.selected-publications {
  background-color: #304c64;
  color: #f0edee;
  text-align: left;
}
main section.selected-publications .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main section.selected-publications .container .publication-item {
  line-height: 1.4;
}
main section.selected-publications .container .publication-item .journal {
  font-style: italic;
  line-height: 1.8;
}
main section.selected-publications .container .publication-item a {
  background-color: #f0edee;
  padding: 1px 5px;
  border-radius: 4px;
  color: #313034;
  font-weight: bold;
  margin-left: 10px;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  font-size: 0.875em;
}
main section.selected-publications .container .publication-item a:hover {
  background-color: #b0a9ac;
}
main section.page-links {
  background-color: #242327;
  color: #f0edee;
  text-align: center;
}
main section.page-links .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  main section.page-links .container {
    flex-direction: row;
    justify-content: center;
    gap: 20px;
  }
}
main section.news {
  background-color: #f0edee;
  color: #313034;
  text-align: left;
  overflow-x: hidden;
}
main section.news .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main section.news .container .news-carousel .flickity-viewport {
  overflow: visible;
}
main section.news .container .news-carousel .news-item {
  background-color: #4b5057;
  color: #f0edee;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  height: 450px;
  width: 95%;
  margin-right: 10px;
  border-top: 5px solid #4b5057;
}
@media screen and (min-width: 768px) {
  main section.news .container .news-carousel .news-item {
    width: 32%;
  }
}
main section.news .container .news-carousel .news-item .news-type {
  position: absolute;
  top: -20px;
  padding: 4px 8px;
  border-radius: 8px;
  background-color: #313034;
  font-weight: lighter;
  font-family: "Expletus Sans", sans-serif;
}
main section.news .container .news-carousel .news-item h3 {
  margin: 0;
  font-weight: 100;
  margin-bottom: 10px;
}
main section.news .container .news-carousel .news-item .news-date {
  font-size: 0.875em;
  color: #a4ccd4;
  margin-bottom: 10px;
}
main section.news .container .news-carousel .news-item.celebration {
  border-top-color: #631B08;
}
main section.news .container .news-carousel .news-item.celebration.full-color {
  background-color: #631B08;
  color: #f0edee;
}
main section.news .container .news-carousel .news-item.celebration.full-color .news-date {
  color: #b0a9ac;
}
main section.news .container .news-carousel .news-item.celebration .news-type {
  background-color: #631B08;
}
main section.news .container .news-carousel .news-item.presentation {
  border-top-color: #304c64;
}
main section.news .container .news-carousel .news-item.presentation.full-color {
  background-color: #304c64;
  color: #f0edee;
}
main section.news .container .news-carousel .news-item.presentation .news-type {
  background-color: #304c64;
}
main section.news .container .news-carousel .news-item.recruitment {
  border-top-color: #a4ccd4;
}
main section.news .container .news-carousel .news-item.recruitment.full-color {
  background-color: #a4ccd4;
  color: #1a191b;
}
main section.news .container .news-carousel .news-item.recruitment.full-color .news-date {
  color: #313034;
}
main section.news .container .news-carousel .news-item.recruitment .news-type {
  background-color: #a4ccd4;
  color: #313034;
}
main section.news .container .news-carousel .news-item .news-image {
  margin-bottom: 15px;
  max-height: 150px;
}
main section.news .container .news-carousel .news-item .news-image.needs-background {
  background-color: #f0edee;
  border-radius: 8px;
}
main section.news .container .news-carousel .news-item .news-image img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  margin: 0 auto;
}
main section.news .container .news-carousel .news-item p {
  flex-grow: 1;
  margin-top: 0;
}
main section.news .container .news-carousel .news-item a {
  color: #b0a9ac;
  text-decoration: none;
  margin-top: 10px;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}
main section.news .container .news-carousel .news-item a:hover {
  color: #a4ccd4;
}
main section.funding {
  background-color: #FFFFFF;
  color: #313034;
  text-align: left;
}
main section.funding .container {
  display: flex;
  flex-direction: column;
}
main section.funding .container p {
  text-align: left;
}
main section.funding .container ul.funding-list {
  list-style: none;
  padding: 0;
}
main section.funding .container ul.funding-list li {
  margin-bottom: 10px;
  font-size: 1.25em;
  font-weight: bold;
  color: #242327;
}
main section.funding .container ul.funding-list li a {
  color: #304c64;
  text-decoration: none;
}
main section.funding .container ul.funding-list li a:hover {
  color: #1a2936;
  text-decoration: none;
}
main section.funding .container .funding-logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
main section.funding .container .funding-logo-grid .funding-logo-item {
  display: flex;
  justify-content: center;
  align-items: center;
}
main section.funding .container .funding-logo-grid .funding-logo-item img {
  max-width: 100%;
  max-height: 100px;
  object-fit: contain;
}
main section.contact {
  background-color: #1a2936;
  color: #f0edee;
  text-align: left;
}
main section.contact .container {
  display: flex;
  flex-direction: column;
}
main section.contact .container p {
  text-align: left;
}
main section.contact .container a {
  color: #a4ccd4;
  text-decoration: underline;
  transition: color 0.2s ease-in-out;
}
main section.contact .container a:hover {
  color: #e2480c;
}
main section.team-hero {
  padding: 0;
}
main section.team-hero .container {
  margin: 0;
  position: relative;
}
main section.team-hero .container img {
  display: block;
  width: 100vw;
  height: 600px;
  object-fit: cover;
}
main section.team-hero .container h1 {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #f0edee;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.9), 4px 4px 8px rgba(0, 0, 0, 0.9);
  font-family: "Expletus Sans", sans-serif;
  font-size: 90px;
  margin: 0;
  line-height: 1;
}
main section.team-members .members-list .member-card {
  margin-bottom: 50px;
}
main section.team-members .members-list .member-card .member-header {
  display: block;
}
main section.team-members .members-list .member-card .member-header img {
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}
main section.team-members .members-list .member-card .member-header img.placeholder {
  filter: grayscale(100%);
  opacity: 0.7;
  width: 100px;
}
main section.team-members .members-list .member-card .member-header p.position {
  color: #631B08;
}
@media screen and (min-width: 576px) {
  main section.team-members .members-list .member-card .member-header {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 20px;
  }
  main section.team-members .members-list .member-card .member-header img {
    margin-bottom: 0;
    grid-row: 1/span 2;
    grid-column: 1;
  }
  main section.team-members .members-list .member-card .member-header h3 {
    margin: 0;
    grid-row: 1;
    grid-column: 2;
  }
  main section.team-members .members-list .member-card .member-header h3 span.member-title {
    font-weight: normal;
  }
  main section.team-members .members-list .member-card .member-header p.position {
    margin: 0;
    grid-row: 2;
    grid-column: 2;
  }
}
main section.team-members .members-list hr {
  border: none;
  border-top: 1px solid #631B08;
  margin: 0 auto 60px auto;
  width: 50%;
}
main section.team-alumni table.alumni-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}
main section.team-alumni table.alumni-table th, main section.team-alumni table.alumni-table td {
  padding: 10px;
  text-align: left;
  border-bottom: 1px solid #b0a9ac;
}
main section.team-alumni table.alumni-table th {
  background-color: #304c64;
  color: #f0edee;
}
main section.team-alumni table.alumni-table td:first-child {
  font-weight: bold;
}
main section.gallery .gallery-carousel .gallery-image {
  height: 350px;
  margin-right: 10px;
  display: block;
}
main section.gallery .gallery-carousel.flickity-enabled.is-fullscreen {
  top: 5rem;
}
main section.gallery .gallery-carousel.flickity-enabled.is-fullscreen .gallery-image {
  top: 1.25rem;
  height: calc(100% - 5rem);
  max-width: 100%;
  object-fit: contain;
}
main section.publications-hero {
  background-color: #304c64;
  color: #f0edee;
}
main section.publications-hero .link-row {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
}
main section.publications-list .publication-item {
  margin-bottom: 30px;
}
main section.publications-list .publication-item a.pub-link {
  margin-left: 0;
  margin-top: 10px;
  display: block;
}
main section.publications-list .publication-item a.pub-link i {
  margin-left: 5px;
}
main section.publications-list .publication-item .publication-image {
  margin-bottom: 15px;
  max-height: 200px;
}
main section.publications-list .publication-item .publication-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
@media screen and (min-width: 768px) {
  main section.publications-list .publication-item {
    display: grid;
    grid-template-columns: 200px auto;
    gap: 20px;
  }
  main section.publications-list .publication-item .publication-image {
    grid-column: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  main section.publications-list .publication-item .publication-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    display: block;
  }
  main section.publications-list .publication-item .publication-details {
    grid-column: 2;
  }
  main section.publications-list .publication-item a.pub-link {
    margin-top: 0;
    margin-left: 10px;
    display: inline-block;
  }
}
main section.publications-list hr {
  border: none;
  border-top: 1px solid #631B08;
  margin: 0 auto 60px auto;
  width: 50%;
}

footer {
  background-color: #1a191b;
  color: #f0edee;
  padding: 1rem;
  font-size: 0.875em;
}
@media screen and (min-width: 768px) {
  footer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }
}
footer a {
  color: #f0edee;
  text-decoration: none;
}
footer a:hover {
  color: #304c64;
  text-decoration: underline;
}

.news-modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 100;
}
.news-modal-bg.open {
  display: flex;
}
.news-modal-bg .news-modal {
  position: relative;
  background-color: #f0edee;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
  max-width: 800px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  margin: 20px;
}
.news-modal-bg .news-modal .news-modal-content h2 {
  margin-top: 0;
  margin-bottom: 5px;
}
.news-modal-bg .news-modal .news-modal-content .news-date {
  font-size: 0.875em;
  color: #1a2936;
  margin-bottom: 10px;
}
.news-modal-bg .news-modal .news-modal-content .news-image {
  margin-top: 10px;
  text-align: center;
}
.news-modal-bg .news-modal .news-modal-content .news-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.news-modal-bg .news-modal .news-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.45em;
  font-weight: bold;
  cursor: pointer;
  color: #313034;
}
.news-modal-bg .news-modal .news-modal-close:hover {
  color: #304c64;
}

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