@charset "UTF-8";
/** Importing King's Fonts **/
/** King's Bureau Grotesque **/
@font-face {
  font-family: "KingsBureauGrotThreeSeven";
  src: url("../../assets/fonts/KingsBureauGrot/KingsBureauGrot-ThreeSeven.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: normal;
}
@font-face {
  font-family: "KingsBureauGrotThreeSeven";
  src: url("../../assets/fonts/KingsBureauGrot/KingsBureauGrot-ThrSevenItal.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: italic;
}
@font-face {
  font-family: "KingsBureauGrotFiveOne";
  src: url("../../assets/fonts/KingsBureauGrot/KingsBureauGrot-FiveOne.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 300;
}
@font-face {
  font-family: "KingsBureauGrotFiveOne";
  src: url("../../assets/fonts/KingsBureauGrot/KingsBureauGrot-FiveOneItal.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: 300;
  font-style: italic;
}
/** King's Caslon **/
@font-face {
  font-family: "KingsCaslon";
  src: url("../../assets/fonts/KingsCaslon_V1.560/KingsCaslon.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: normal;
}
@font-face {
  font-family: "KingsCaslon";
  src: url("../../assets/fonts/KingsCaslon_V1.560/KingsCaslonItalic.ttf") format("truetype"); /* Safari, Android, iOS */
  font-style: italic;
}
@font-face {
  font-family: "KingsCaslon";
  src: url("../../assets/fonts/KingsCaslon_V1.560/KingsCaslonSemiBold.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: bold;
}
@font-face {
  font-family: "KingsCaslon";
  src: url("../../assets/fonts/KingsCaslon_V1.560/KingsCaslonSemiBoldItalic.ttf") format("truetype"); /* Safari, Android, iOS */
  font-weight: bold;
  font-style: italic;
}
main.faqs article > article > article:first-of-type ul li:after, main.faqs article > article > article:first-of-type ul li:before {
  content: "";
  clear: both;
  display: block;
  width: 100%;
}

:root {
  --pagefind-ui-background: white;
  --pagefind-ui-border: #5a6369;
  --pagefind-ui-font: KingsBureauGrotFiveOne, sans-serif;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  font-family: KingsBureauGrotFiveOne, sans-serif;
  font-weight: 400;
  float: left;
  height: 100%;
  margin: 0;
  width: 100%;
}

* {
  box-sizing: border-box;
}

section {
  width: 100%;
}

.kdl-container {
  max-width: 1220px;
  margin: 0 auto;
}

header {
  width: 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 4em;
}
header .site {
  padding: 0 1em;
  display: block;
  text-align: right;
  position: relative;
  height: 3em;
  background: #5a6369;
  border-bottom: 0.3em solid lightgray;
}
header .site .kdl-container {
  display: flex;
  height: 50px;
  justify-content: space-between;
}
header .site .kdl-container a.sitename {
  font-family: KingsBureauGrotThreeSeven;
  font-weight: 400;
  text-decoration: none;
  color: white;
  font-size: 1.6em;
  padding: 0.4em 0;
  float: left;
}
header .site .kdl-container a.sitename span {
  font-size: 1.2em;
}
header .site .kdl-container a.logo img {
  width: 8em;
  text-align: right;
  position: relative;
  display: inline-block;
}
header nav.main {
  z-index: 1;
  background: #5a6369;
  /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
  color: white;
  padding: 0 1em;
  border-bottom: 0.3em solid lightgray;
  margin-top: -3.2em;
}
header nav.main .kdl-container > ul {
  /* first-level */
  margin: 0 10em 0 auto;
  list-style-type: none;
  float: right;
  /** chevron icon **/
}
header nav.main .kdl-container > ul > li {
  display: block;
  float: left;
  transition: all ease-out 250ms;
  position: relative;
  color: #cccccc;
}
header nav.main .kdl-container > ul > li:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: transform 0.25s ease-out;
}
header nav.main .kdl-container > ul > li.active {
  background: white;
  position: relative;
}
header nav.main .kdl-container > ul > li.active a {
  color: black;
}
header nav.main .kdl-container > ul > li.active:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(1);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  transition: transform 0.25s ease-out;
}
header nav.main .kdl-container > ul > li a,
header nav.main .kdl-container > ul > li label {
  text-decoration: none;
  color: white;
  display: block;
  padding: 0.9em 1em;
  transition: all 0.25s ease-in;
  cursor: pointer;
}
header nav.main .kdl-container > ul > li:focus, header nav.main .kdl-container > ul > li:hover {
  background: #e6ebed;
}
header nav.main .kdl-container > ul > li:focus a,
header nav.main .kdl-container > ul > li:focus label, header nav.main .kdl-container > ul > li:hover a,
header nav.main .kdl-container > ul > li:hover label {
  color: black;
}
header nav.main .kdl-container > ul > li:focus input[type=checkbox] + label.kdl-checkbox, header nav.main .kdl-container > ul > li:hover input[type=checkbox] + label.kdl-checkbox {
  position: relative;
}
header nav.main .kdl-container > ul > li:focus input[type=checkbox] + label.kdl-checkbox:after, header nav.main .kdl-container > ul > li:hover input[type=checkbox] + label.kdl-checkbox:after {
  border-color: black;
}
header nav.main .kdl-container > ul > li:focus ul li a, header nav.main .kdl-container > ul > li:hover ul li a {
  background: #e6ebed;
}
header nav.main .kdl-container > ul > li > ul {
  /* second-level */
  margin-left: -40px;
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  list-style-type: none;
}
header nav.main .kdl-container > ul > li > ul li a,
header nav.main .kdl-container > ul > li > ul li label {
  background: #5a6369;
}
header nav.main .kdl-container > ul > li > ul li a:focus, header nav.main .kdl-container > ul > li > ul li a:hover,
header nav.main .kdl-container > ul > li > ul li label:focus,
header nav.main .kdl-container > ul > li > ul li label:hover {
  background: white;
}
header nav.main .kdl-container > ul > li > ul li > ul {
  /* third-level */
  height: 100%;
  max-height: 0;
  overflow: hidden;
  list-style-type: none;
  transition: max-height 0.5s ease-in-out;
}
header nav.main .kdl-container > ul > li > ul li > ul li a,
header nav.main .kdl-container > ul > li > ul li > ul li label {
  background: #454545;
  box-shadow: inset 0 -1px #575757;
}
header nav.main .kdl-container > ul > li > ul li > ul li a:focus, header nav.main .kdl-container > ul > li > ul li > ul li a:hover,
header nav.main .kdl-container > ul > li > ul li > ul li label:focus,
header nav.main .kdl-container > ul > li > ul li > ul li label:hover {
  background: #333333;
}
header nav.main .kdl-container > ul > li > ul li > ul li > ul {
  /* fourth-level */
  height: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-in-out;
  list-style-type: none;
}
header nav.main .kdl-container > ul > li > ul li > ul li > ul li a,
header nav.main .kdl-container > ul > li > ul li > ul li > ul li label {
  background: #454545;
  box-shadow: inset 0 -1px #575757;
}
header nav.main .kdl-container > ul > li > ul li > ul li > ul li a:focus, header nav.main .kdl-container > ul > li > ul li > ul li > ul li a:hover,
header nav.main .kdl-container > ul > li > ul li > ul li > ul li label:focus,
header nav.main .kdl-container > ul > li > ul li > ul li > ul li label:hover {
  background: #333333;
}
header nav.main .kdl-container > ul input[type=checkbox]:checked + label + ul {
  /* reset the height when checkbox is checked */
  max-height: 1000px;
}
header nav.main .kdl-container > ul input[type=checkbox] + label.kdl-checkbox {
  position: relative;
}
header nav.main .kdl-container > ul input[type=checkbox] + label.kdl-checkbox:after {
  content: "";
  display: inline-block;
  z-index: 1;
  top: 0.15em;
  border-style: solid;
  border-color: white;
  border-width: 1px 1px 0 0;
  height: 0.5em;
  position: relative;
  transform: rotate(135deg);
  transition: 0.35s ease-in-out;
  vertical-align: top;
  width: 0.5em;
  left: 0.5em;
}
header nav.main .kdl-container > ul input[type=checkbox]:checked + label.kdl-checkbox:before, header nav.main .kdl-container > ul input[type=checkbox]:checked + label.kdl-checkbox:after {
  transform: rotate(-45deg);
}
header nav.main .kdl-container > ul input[type=checkbox]:checked + label.kdl-checkbox:before {
  display: none;
}
header nav.main .kdl-menu-button-container {
  display: none;
  height: 100%;
  width: 30px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
header nav.main #menu-toggle {
  display: none;
}
header nav.main .kdl-menu-button,
header nav.main .kdl-menu-button::before,
header nav.main .kdl-menu-button::after {
  display: block;
  background-color: #fff;
  position: absolute;
  height: 2px;
  width: 30px;
  transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 1;
}
header nav.main .kdl-menu-button {
  font-size: 0;
}
header nav.main .kdl-menu-button::before {
  content: "";
  margin-top: -8px;
}
header nav.main .kdl-menu-button::after {
  content: "";
  margin-top: 8px;
}
header nav.main #menu-toggle:checked + .kdl-menu-button-container .kdl-menu-button {
  background: rgba(255, 255, 255, 0);
}
header nav.main #menu-toggle:checked + .kdl-menu-button-container .kdl-menu-button::before {
  margin-top: 0px;
  transform: rotate(45deg);
}
header nav.main #menu-toggle:checked + .kdl-menu-button-container .kdl-menu-button::after {
  margin-top: 0px;
  transform: rotate(-45deg);
}
header nav.sub {
  background: rgb(230, 235, 237);
  padding: 0.5em 1em;
  border-bottom: 0.7em solid rgb(10, 45, 80);
  margin-top: 2.7em;
  margin-bottom: -3em;
}
header nav.sub ol {
  list-style-type: none;
  margin-left: -40px;
}
header nav.sub ol li {
  display: inline-block;
  margin-right: 1em;
}
header nav.sub ol li a {
  color: black;
  text-decoration: none;
}
header nav.sub ol li a:hover {
  text-decoration: underline;
}
header nav.sub ol li a:after {
  content: ">";
  position: absolute;
  padding: 0 0.5em;
}
header nav.sub h1 {
  font-family: KingsBureauGrotThreeSeven, sans-serif;
  margin: 0;
  font-weight: 400;
}
header nav.sub h1 small {
  font-weight: normal;
  font-size: 0.6em;
}
header nav.sub ul {
  display: block;
  list-style-type: none;
  margin: 0.5em 0 0 -40px;
}
header nav.sub ul li {
  padding: 0 1em;
  border-right: 0.1em solid;
  display: inline-block;
}
header nav.sub ul li:active {
  font-family: KingsBureauGrotThreeSeven, sans-serif;
}
header nav.sub ul li a {
  color: black;
  text-decoration: none;
}
header nav.sub ul li:hover {
  text-decoration: underline;
}
header nav.sub ul li:first-child {
  padding-left: 0;
}
header nav.sub ul li:last-child {
  border-right: none;
}

main {
  padding: 0 1em;
}
main a {
  font-weight: 400;
  color: #0e3f70;
  cursor: pointer;
  text-decoration: underline;
}
main a:hover {
  color: #14589d;
}
main p {
  line-height: 1.5;
}
main img {
  width: 100%;
}
main h1,
main h2,
main h3,
main h4 {
  font-family: KingsBureauGrotThreeSeven;
  font-weight: 400;
}
main h1 {
  font-size: 2.2em;
  border-bottom: 4px solid #bababa;
}
main h2 {
  font-size: 1.8em;
}
main h3 {
  font-size: 1.5em;
}
main h4 {
  font-size: 1.2em;
}
main button {
  color: white;
  font-family: KingsBureauGrotThreeSeven;
  margin: 0 auto;
  font-size: 1.2em;
  padding: 0.5em 2em;
  background: #0a2d50;
  border: 0.1em solid #0a2d50;
  cursor: pointer;
  -webkit-transition: all 300ms ease-in;
  -moz-transition: all 300ms ease-in;
  -ms-transition: all 300ms ease-in;
  -o-transition: all 300ms ease-in;
  transition: all 300ms ease-in;
  border-radius: 1.1em;
}
main button:focus, main button:hover {
  background: white;
  color: #0a2d50;
}
main .kdl-member sup {
  font-family: KingsBureauGrotThreeSeven;
  /* text-shadow: rgba(10, 189, 240, 0.25) 2px 2px 0px,
    rgba(254, 1, 1, 0.25) -2px -2px 0px; */
  font-size: 0.7em;
}
main .sibling-pagination {
  margin-top: 5em;
  border-top: 0.01em solid black;
}
main .sibling-pagination ol {
  display: flex;
  justify-content: space-between;
  list-style-type: none;
  margin-left: -40px;
}
main .sibling-pagination ol li {
  max-width: 20em;
}
main .sibling-pagination ol li:last-of-type {
  text-align: right;
}
main .sibling-pagination ol li a {
  text-decoration: none;
}
main .sibling-pagination ol li a ion-icon {
  font-size: 0.8em;
}
main .sibling-pagination ol li a:hover {
  text-decoration: underline;
  text-decoration-style: dashed;
}
main ol,
main ul {
  margin-left: -20px;
  line-height: 1.5;
}
main #search {
  width: 100%;
}
main .kdl-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
main .kdl-container h1 {
  width: 100%;
}
main .kdl-container aside {
  flex: 1;
  background: rgb(237, 241, 242);
  order: 3;
  margin: 0 0 0 5%;
  padding: 0.5em 1em;
}
main .kdl-container aside h2 {
  font-size: 1.3em;
}
main .kdl-container aside ol {
  margin-left: -20px;
  counter-reset: counter;
  list-style: none;
}
main .kdl-container aside ol li {
  line-height: 1.3;
  margin-top: 0.5em;
  font-weight: bold;
  list-style-type: circle;
}
main .kdl-container aside ol li a {
  text-decoration: none;
}
main .kdl-container aside ol li a:hover {
  text-decoration: underline;
}
main .kdl-container > article {
  flex: 3;
  order: 2;
}
main .kdl-container > article figure {
  width: 100%;
  margin: 0;
}
main .kdl-container > article figure img {
  width: 100%;
  display: flex;
  margin: 0 auto;
}
main .kdl-container > article figure figcaption {
  text-align: center;
  padding: 0.5em 0 1em 0;
  font-size: 0.7em;
  color: dimgray;
}
main .kdl-container > article .media-small img {
  width: 300px;
  display: flex;
  margin: 0 auto;
}
main .kdl-container > article .media-medium img {
  max-width: 600px;
  display: flex;
  margin: 0 auto;
}
main .kdl-container > article > article {
  line-height: 1.7;
}
main .kdl-container > article > article h2,
main .kdl-container > article > article h3,
main .kdl-container > article > article h4 {
  margin-bottom: 0;
}
main .kdl-container > article > article h2 {
  border-bottom: 0.03em solid #abbcc2;
}
main .kdl-container > article > article footer {
  background: white;
  color: black;
  padding: 0.3em 0 0.3em 0.5em;
  border-left: 0.25em solid #5a6369;
  border-image: linear-gradient(to bottom, #6ce7db, white) 0 1;
}

.home .kdl-container {
  max-width: 1500px;
  padding: 0 2em;
}
.home h2 {
  font-size: 3em;
  text-decoration: none;
  text-underline-position: under;
  position: relative;
  text-align: center;
  margin-bottom: 100px; /* to add extra spaces after h2 */
}
.home h2::after {
  content: "";
  position: absolute;
  width: 80px;
  height: 5px; /* to fix height of the underline */
  bottom: -30px;
  left: 50%; /* to fix horizontal position */
  margin-left: -40px; /* to center the underline horizontally */
  background-color: rgb(0, 0, 0); /* black underline color, cannot remove */
  box-shadow: rgba(10, 189, 240, 0.25) 3px 3px 0px, rgba(254, 1, 1, 0.25) -3px -3px 0px;
  display: block;
  display: block;
}
.home .hero {
  background-color: #0a2d50;
  background-image: linear-gradient(black, rgba(10, 45, 80, 0.9));
  color: white;
  height: calc(100vh - 55px);
  position: relative;
  width: calc(100% + 2em);
  margin: 0 0 6em -1em;
}
.home .hero video {
  height: 100%;
  left: 0;
  object-fit: cover;
  opacity: 0.5;
  position: absolute;
  top: 0;
  width: 100%;
  -webkit-transition: all 400ms ease-in-out;
  -moz-transition: all 400ms ease-in-out;
  -ms-transition: all 400ms ease-in-out;
  -o-transition: all 400ms ease-in-out;
  transition: all 400ms ease-in-out;
}
.home .hero .hero-content {
  color: white;
  left: 50%;
  position: absolute;
  text-align: center;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.home .hero .hero-content:hover {
  text-shadow: 2px 2px 4px rgb(0, 0, 0);
}
.home .hero .hero-content:hover ~ video {
  opacity: 0.3;
}
.home .hero .hero-content h1 {
  font-size: 2.5em;
  margin: 0;
}
.home .hero .hero-content p {
  font-size: 2.7em;
  font-family: KingsCaslon, serif;
}
.home .hero .hero-content button {
  background: rgba(255, 255, 255, 0.8);
  color: #0a2d50;
  border: 0.05em solid white;
}
.home .hero .hero-content button:hover {
  background: white;
  border: 0.05em solid #0a2d50;
}
.home .hero a.scroll {
  bottom: 1em;
  color: white;
  display: block;
  font-size: 2.4em;
  line-height: 1;
  font-weight: 100;
  position: absolute;
  text-align: center;
  width: 100%;
  z-index: 1;
  opacity: 0.7;
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}
.home .hero a.scroll:focus, .home .hero a.scroll:hover {
  opacity: 1;
  line-height: 0.7;
}
.home .hero a.scroll:focus ~ video, .home .hero a.scroll:hover ~ video {
  opacity: 0.3;
}
.home figcaption {
  display: none;
}
.home .explore section,
.home .discover section,
.home .contact section,
.home .communities section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4em;
}
.home .explore section div,
.home .discover section div,
.home .contact section div,
.home .communities section div {
  flex-basis: calc(33.33% - 0.5em);
  margin-bottom: 1.5em;
  padding: 1.5em 0.7em 1em 0.7em;
  background-color: #f5f7f8;
}
.home .explore section a,
.home .discover section a,
.home .contact section a,
.home .communities section a {
  text-decoration: none;
}
.home .explore section a:hover,
.home .discover section a:hover,
.home .contact section a:hover,
.home .communities section a:hover {
  text-decoration: underline;
  text-decoration-style: dashed;
}
.home .explore figure,
.home .discover figure,
.home .contact figure,
.home .communities figure {
  margin: 0;
}
.home .explore figure img,
.home .discover figure img,
.home .contact figure img,
.home .communities figure img {
  width: 100%;
  height: 15em;
  object-fit: cover;
}
.home .explore a,
.home .discover a,
.home .contact a,
.home .communities a {
  line-height: 1.5;
}
.home .explore a.browse,
.home .discover a.browse,
.home .contact a.browse,
.home .communities a.browse {
  float: right;
  margin-top: 1.7em;
}
.home .explore .research,
.home .explore .activities,
.home .discover .research,
.home .discover .activities,
.home .contact .research,
.home .contact .activities,
.home .communities .research,
.home .communities .activities {
  position: relative;
  padding: 2em 1.5em 0.5em 1.5em;
}
.home .explore .research:before,
.home .explore .activities:before,
.home .discover .research:before,
.home .discover .activities:before,
.home .contact .research:before,
.home .contact .activities:before,
.home .communities .research:before,
.home .communities .activities:before {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background-image: url("/assets/images/general/research.jpg");
  background-repeat: no-repeat;
  background-position: 50% 0;
  background-size: cover;
  background-color: #cccccc;
}
.home .explore .research .research-block,
.home .explore .research .activities-block,
.home .explore .activities .research-block,
.home .explore .activities .activities-block,
.home .discover .research .research-block,
.home .discover .research .activities-block,
.home .discover .activities .research-block,
.home .discover .activities .activities-block,
.home .contact .research .research-block,
.home .contact .research .activities-block,
.home .contact .activities .research-block,
.home .contact .activities .activities-block,
.home .communities .research .research-block,
.home .communities .research .activities-block,
.home .communities .activities .research-block,
.home .communities .activities .activities-block {
  flex-basis: calc(25% - 0.5em);
  background-color: white;
  position: relative;
  padding: 0.1em 0.7em 0.7em 0.7em;
  padding: 0.1em 1em 0.7em 1em;
}
.home .explore .activities h4,
.home .discover .activities h4,
.home .contact .activities h4,
.home .communities .activities h4 {
  padding: 0.3em;
}
.home .explore .activities:before,
.home .discover .activities:before,
.home .contact .activities:before,
.home .communities .activities:before {
  background-image: url("/assets/images/general/activities.jpg");
}
.home .explore .activities .activities-block,
.home .discover .activities .activities-block,
.home .contact .activities .activities-block,
.home .communities .activities .activities-block {
  flex-basis: calc(33.3% - 1.5em);
  padding: 0.1em 0.7em 0.7em 0.7em;
}
.home .explore h3 {
  float: left;
}
.home .communities figure {
  background: white;
  text-align: center;
  height: 12em;
}
.home .communities figure img {
  width: 100%;
  max-width: 15em;
  height: auto;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.home .contact {
  text-align: center;
}

main.projects ul.list li section p {
  margin: 0.2em 0 0 0;
}

.project {
  padding: 5em auto;
}
.project .kdl-container {
  display: flex;
  flex-wrap: wrap;
}
.project .kdl-container h1 {
  width: 100%;
}
.project .kdl-container h1 small {
  color: #5a6369;
  font-size: 0.6em;
  font-family: KingsCaslon, serif;
}
.project .kdl-container h3 {
  margin: 1em 0 0.5em 0;
}
.project .kdl-container article {
  display: flex;
  width: 100%;
}
.project .kdl-container article section {
  margin: 0 5% 0 0;
  width: 65%;
}
.project .kdl-container article section:last-child {
  margin: 0;
  width: 30%;
  background: rgb(237, 241, 242);
  min-width: 20em;
}
.project .kdl-container article section figure {
  margin: 0;
}
.project .kdl-container article section figure img {
  width: 100%;
}
.project .kdl-container article section figure figcaption {
  font-size: 0.7em;
  text-align: center;
}
.project .kdl-container article section #metadata {
  margin: 0 5%;
  padding: 1em 0 2em 0;
  line-height: 1.5;
}
.project .kdl-container article section #metadata dl dt {
  margin-top: 1.5em;
  font-size: 1.2em;
  font-weight: bold;
}
.project .kdl-container article section #metadata dl dd {
  margin-left: 20px;
  margin-top: 0.5em;
}
.project .kdl-container article section #metadata span.status {
  background: #5a6369;
  margin-left: -5%;
  padding: 0.3em 0.5em;
  margin-bottom: 1em;
  color: white;
  font-size: 1.2em;
}
.project .kdl-container article section #metadata #links,
.project .kdl-container article section #metadata .funder,
.project .kdl-container article section #metadata .date,
.project .kdl-container article section #metadata .keywords {
  width: 100%;
  padding: 1em 0;
}
.project .kdl-container article section #metadata #links ul,
.project .kdl-container article section #metadata .funder ul,
.project .kdl-container article section #metadata .date ul,
.project .kdl-container article section #metadata .keywords ul {
  margin: 0 0 0 -20px;
  list-style-type: circle;
}
.project .kdl-container article section #metadata #links ul li,
.project .kdl-container article section #metadata .funder ul li,
.project .kdl-container article section #metadata .date ul li,
.project .kdl-container article section #metadata .keywords ul li {
  margin-bottom: 0.5em;
}
.project .kdl-container article section #metadata #links,
.project .kdl-container article section #metadata .funder,
.project .kdl-container article section #metadata div.date {
  border-bottom: 0.3em solid rgb(220, 227, 230);
}
.project .kdl-container article section .post-meta {
  margin-left: 5%;
}
.project .kdl-container article section #overview {
  border-bottom: 0.01em solid black;
}
.project .kdl-container article section #team {
  width: 100%;
  display: block;
}
.project .kdl-container article section #team h2 {
  width: 100%;
}
.project .kdl-container article section #team ul {
  margin-left: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
}
.project .kdl-container article section #team ul h2 {
  font-size: 1.2em;
}
.project .kdl-container article section #team ul li {
  list-style-type: none;
  flex: 0 0 50%;
  margin-bottom: 1em;
  font-size: 1.1em;
  margin-left: -40px;
}
.project .kdl-container article section #team ul li a {
  text-decoration: none;
}
.project .kdl-container article section #team ul li a:hover {
  text-decoration: underline;
  text-decoration-style: dashed;
}
.project .kdl-container article section #team ul li span {
  font-size: 0.8em;
  display: block;
  color: #5a6369;
}

.blog ul.list li section p {
  margin-top: 1em;
}

ul.list {
  margin-left: -40px;
}
ul.list li {
  display: flex;
  margin-bottom: 2.5em;
}
ul.list li figure {
  width: auto;
}
ul.list li figure img {
  height: auto;
  width: 400px;
  object-fit: contain;
  display: inline-block;
  vertical-align: top;
  margin: 0 auto;
  transition: transform 1s, filter 0.5s ease-in-out;
  object-fit: cover;
  height: 250px;
}
ul.list li figure img:hover {
  filter: grayscale(100%);
}
ul.list li figure figcaption {
  display: none;
}
ul.list li section {
  margin-left: 2em;
  width: 100%;
}
ul.list li section a h2 {
  margin: 0 0 0.3em 0;
  text-decoration: none;
  line-height: 1.3;
}
ul.list li section a h2 small {
  color: #5a6369;
  font-family: KingsCaslon, serif;
  font-size: 0.7em;
  margin-left: 0.3em;
}
ul.list li section a h2:hover {
  text-decoration: underline;
}
ul.list li section a h2:hover small {
  text-decoration: underline;
  text-decoration-color: white;
}
ul.list li section a h3 {
  margin: 0;
}
ul.list li section a h3 small {
  color: #5a6369;
  font-family: KingsCaslon, serif;
  font-size: 0.7em;
  margin-left: 0.3em;
}
ul.list li section a h3:hover {
  text-decoration: underline;
}
ul.list li section a h3:hover small {
  text-decoration: underline;
  text-decoration-color: white;
}
ul.list li section p {
  color: black;
}
ul.list li section p:hover {
  text-decoration: none;
}
ul.list li section .author a {
  text-decoration: underline;
}
ul.list li section .subtitle {
  margin-top: 1em;
}
ul.list li section .subtitle span {
  background: linear-gradient(to left, lightcyan, #e8fce8);
  padding: 0.5em;
}

main.posts {
  width: 100%;
}

main.people h2,
main.organisations h2 {
  text-transform: uppercase;
  text-shadow: rgba(10, 189, 240, 0.25) 5px 5px 0px, rgba(254, 1, 1, 0.25) -5px -5px 0px;
  font-size: 2.5em;
  border-bottom: 0.03em solid #abbcc2;
  margin-top: 0;
}
main.people ul,
main.organisations ul {
  margin-top: 5em;
  margin-left: -40px;
  list-style-type: none;
  columns: 3;
  -webkit-columns: 3;
  -moz-columns: 3;
}
main.people ul li,
main.organisations ul li {
  padding-bottom: 0.5em;
  padding-right: 2em;
}
main.people ul li ol,
main.organisations ul li ol {
  list-style-type: none;
  margin-left: -40px;
  margin-bottom: 2em;
}
main.people ul li a,
main.organisations ul li a {
  text-decoration: none;
}
main.people ul li a:hover,
main.organisations ul li a:hover {
  text-decoration: underline;
}

main.person h1,
main.organisation h1 {
  margin-bottom: 0;
}
main.person article,
main.organisation article {
  line-height: 1.7;
}
main.person article h2,
main.organisation article h2 {
  border-bottom: 0.03em solid #abbcc2;
}
main.person article img,
main.organisation article img {
  width: 100%;
  display: block;
}
main.person article a,
main.organisation article a {
  text-decoration: none;
}
main.person article a:hover,
main.organisation article a:hover {
  text-decoration: underline;
}
main.person article section,
main.organisation article section {
  display: block;
  width: 100%;
  padding-left: 0;
}
main.person article section h2.jobtitle,
main.organisation article section h2.jobtitle {
  border: none;
  color: #3e4649;
  font-family: KingsBureauGrotFiveOne, sans-serif;
  font-size: 1.3em;
  margin-bottom: 0;
}
main.person article section .description,
main.organisation article section .description {
  margin-bottom: 4em;
  margin-top: 2em;
}
main.person article section > section,
main.organisation article section > section {
  display: flex;
}
main.person article section > section img,
main.organisation article section > section img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin: 3.2em 0 0 2em;
  order: 2;
}
main.person article section > section .description,
main.organisation article section > section .description {
  text-align: justify;
  order: 1;
  margin-right: auto;
}
main.person article section h2,
main.organisation article section h2 {
  margin-top: 0.5em;
}
main.person article section h2 span,
main.organisation article section h2 span {
  display: block;
  font-weight: normal;
  font-size: 0.7em;
  color: #5a6369;
}
main.person article section .part-of,
main.organisation article section .part-of {
  display: block;
}
main.person ul,
main.organisation ul {
  width: 100%;
  margin-left: -40px;
}
main.person ul li,
main.organisation ul li {
  display: inherit;
}
main.person ul li a,
main.organisation ul li a {
  display: block;
  padding: 1em 1.5em 1em 0.5em;
  text-decoration: none;
  border-left: 0.2em solid #e6ebed;
}
main.person ul li a:hover,
main.organisation ul li a:hover {
  background: #f9f9f9;
  border-left: 0.2em solid #14589d;
  text-decoration: none;
}
main.person ul li h3,
main.organisation ul li h3 {
  margin: 0;
}
main.person ul li h3 small,
main.organisation ul li h3 small {
  color: #5a6369;
  font-family: KingsCaslon, serif;
  font-size: 0.7em;
  margin-left: 0.3em;
}
main.person ul li p,
main.organisation ul li p {
  margin: 0;
}

main.team article > section {
  border-bottom: 0.01em solid black;
  margin-bottom: 5em;
  padding-bottom: 2em;
}
main.team article ul {
  margin-left: -40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
main.team article ul li {
  margin-bottom: 3em;
  flex-basis: 32.33%;
  margin-right: 1%;
  list-style-type: none;
}
main.team article ul li img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  margin-right: 3%;
}
main.team article ul li section {
  width: 100%;
}
main.team article ul li section h3 {
  margin-bottom: 0;
}
main.team article ul li section h3 a {
  text-decoration: none;
}
main.team article ul li section h3 a:hover {
  text-decoration: underline;
}
main.team article ul li section h2 {
  color: #5a6369;
  font-size: 1.2em;
  font-family: KingsBureauGrotFiveOne, sans-serif;
}

main.faqs {
  line-height: 1.5em;
  font-size: 0.9em;
  color: black;
}
main.faqs *,
main.faqs *:before,
main.faqs *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
}
main.faqs article {
  float: left;
  display: block;
  width: 100%;
}
main.faqs article > article > article:first-of-type {
  margin-bottom: 1.5em;
}
main.faqs article > article > article:first-of-type > h3 {
  width: 100%;
  text-align: center;
  font-size: 1.2em;
  margin-top: 2.5em;
}
main.faqs article > article > article:first-of-type ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 1em 0 4em -40px;
}
main.faqs article > article > article:first-of-type ol li {
  min-width: 10em;
  text-align: center;
  margin: 2%;
  position: relative;
  list-style-type: none;
}
main.faqs article > article > article:first-of-type ol li:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #0a2d50;
  content: "";
  height: 15px;
  position: absolute;
  top: -1.3em;
  width: 15px;
  left: calc(50% - 7px);
}
main.faqs article > article > article:first-of-type ol li:after {
  content: "➝";
  position: absolute;
  top: -50%;
  left: 100%;
  color: #5a6369;
  font-size: 2em;
}
main.faqs article > article > article:first-of-type ol li:nth-child(2):before {
  border: 4px solid #0a2d50;
}
main.faqs article > article > article:first-of-type ol li:nth-child(3):before {
  border: 8px solid #0a2d50;
}
main.faqs article > article > article:first-of-type ol li:nth-child(3):after {
  display: none;
}
main.faqs article > article > article:first-of-type ul {
  margin: 0;
  max-width: 600px;
  padding: 0;
  position: relative;
  width: 100%;
}
main.faqs article > article > article:first-of-type ul li {
  display: block;
  float: left;
  margin: 0;
  position: relative;
  width: 30%;
  height: 14vw;
}
main.faqs article > article > article:first-of-type ul li h3 {
  color: black;
  line-height: 1.5rem;
  text-transform: uppercase;
  width: 100%;
  display: block;
  position: relative;
  margin-bottom: 0;
  font-size: 1.1em;
}
main.faqs article > article > article:first-of-type ul li h3:before {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  background-color: white;
  border: 2px solid #0a2d50;
  content: "";
  height: 15px;
  position: absolute;
  top: -1.3em;
  width: 15px;
}
main.faqs article > article > article:first-of-type ul li p {
  padding-right: 10%;
  width: 95%;
  font-size: 0.9em;
}
main.faqs article > article > article:first-of-type ul li p em {
  font-size: 0.9em;
  line-height: 0.5;
}
main.faqs article > article > article:first-of-type ul li:nth-child(1) {
  margin-left: 10%;
}
main.faqs article > article > article:first-of-type ul li:nth-child(3) p {
  width: 80%;
}
main.faqs article > article > article:first-of-type ul li:nth-child(3):before {
  border: 3px solid #0a2d50;
  border-left: 0;
  border-radius: 0 100% 100% 0;
  width: 15.5vw;
  padding-bottom: 13.8vw;
}
main.faqs article > article > article:first-of-type ul li:nth-child(3):after {
  content: "▸";
  position: absolute;
  top: 47%;
  left: 14.7vw;
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
main.faqs article > article > article:first-of-type ul li:nth-child(4) {
  float: right;
}
main.faqs article > article > article:first-of-type ul li:nth-child(4) p {
  width: 100%;
}
main.faqs article > article > article:first-of-type ul li:nth-child(4):before {
  margin-left: -100%;
}
main.faqs article > article > article:first-of-type ul li:nth-child(4):after {
  margin-left: -100%;
  content: "▸";
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
main.faqs article > article > article:first-of-type ul li:nth-child(5) {
  float: right;
}
main.faqs article > article > article:first-of-type ul li:nth-child(5):before {
  margin-left: -100%;
}
main.faqs article > article > article:first-of-type ul li:nth-child(5):after {
  margin-left: -100%;
  content: "▸";
  -moz-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
main.faqs article > article > article:first-of-type ul li:nth-child(5) h3:before {
  border: 4px solid #0a2d50;
}
main.faqs article > article > article:first-of-type ul li:nth-child(6) {
  float: right;
}
main.faqs article > article > article:first-of-type ul li:nth-child(6):before {
  margin-left: -100%;
  border: 3px solid #0a2d50;
  border-left: 0;
  border-radius: 50%;
  border-right: 0;
  margin-bottom: -3px;
  margin-left: -6.6vw;
  width: 13.8vw;
  padding-bottom: 13.8vw;
}
main.faqs article > article > article:first-of-type ul li:nth-child(6):after {
  margin-left: -100%;
  content: "▸";
  top: 48%;
  -moz-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  left: calc(100% - 7.1vw);
}
main.faqs article > article > article:first-of-type ul li:nth-child(6) h3:before {
  border: 4px solid #0a2d50;
}
main.faqs article > article > article:first-of-type ul li:nth-child(7) {
  margin-left: 10%;
}
main.faqs article > article > article:first-of-type ul li:nth-child(7) h3:before {
  border: 4px solid #0a2d50;
}
main.faqs article > article > article:first-of-type ul li:nth-child(8) h3:before {
  border: 8px solid #0a2d50;
}
main.faqs article > article > article:first-of-type ul li:nth-child(9) h3:before {
  border: 8px solid #0a2d50;
}
main.faqs article > article > article:first-of-type ul li:nth-child(9):before, main.faqs article > article > article:first-of-type ul li:nth-child(9):after {
  display: none;
}
main.faqs article > article > article:first-of-type ul li:before {
  border-top: 3px solid #0a2d50;
  padding-bottom: 100%;
  position: absolute;
  top: 0;
}
main.faqs article > article > article:first-of-type ul li:after {
  content: "▸";
  left: 50%;
  position: absolute;
  top: -15px;
  width: 19px;
  font-size: 1.5em;
  color: #5a6369;
}
main.faqs article > article > article:first-of-type ul li a {
  background: #0a2d50;
  position: relative;
  border: 0;
  color: white;
  display: block;
  margin-top: 10px;
  padding: 5px 15px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
}
main.faqs article > article > article:first-of-type ul li a:hover {
  background: #10477d;
}

main.themes section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 4em;
}
main.themes section .research-block {
  flex-basis: calc(50% - 0.5em);
  margin-bottom: 1.5em;
  padding: 1.5em 1.2em 1em 1.2em;
  background-color: #f5f7f8;
}
main.themes section .research-block h4 {
  margin: 0 0 0.5em 0;
}
main.themes section a {
  text-decoration: none;
  line-height: 1.5;
  cursor: pointer;
}
main.themes section a:hover {
  text-decoration: underline;
}
main.themes section img {
  width: 100%;
  height: 20em;
  object-fit: cover;
  transition: transform 1s, filter 0.5s ease-in-out;
}
main.themes section img:hover {
  filter: grayscale(100%);
}
main.themes section .research {
  position: relative;
  padding: 2em 0;
}
main.themes section .research .research-block {
  flex-basis: calc(50% - 0.5em);
  background-color: #f5f7f8;
  position: relative;
  padding: 0.1em 1em 0.7em 1em;
}

nav.pagination {
  margin-top: 5em;
  border-top: 2px solid #bababa;
  width: 100%;
}
nav.pagination ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 3em;
  margin-left: -40px;
}
nav.pagination ol li {
  border: none;
  flex: 1;
  display: block;
  text-align: center;
  background: white;
  margin: 0 0.1em;
  opacity: 0.9;
}
nav.pagination ol li a {
  padding: 0.5em 0;
  display: block;
}
nav.pagination ol li:nth-child(1), nav.pagination ol li:nth-child(5) {
  max-width: 3em;
  background: #10477d;
}
nav.pagination ol li:nth-child(1):hover, nav.pagination ol li:nth-child(5):hover {
  background: #0a2d50;
}
nav.pagination ol li:nth-child(1) a, nav.pagination ol li:nth-child(5) a {
  color: #e6e6e6;
}
nav.pagination ol li:nth-child(1) a:hover, nav.pagination ol li:nth-child(5) a:hover {
  color: white;
}
nav.pagination ol li:nth-child(2), nav.pagination ol li:nth-child(4) {
  max-width: 5em;
  background: #f5f7f8;
  border: 0.05em solid #f5f7f8;
}
nav.pagination ol li:nth-child(2):hover, nav.pagination ol li:nth-child(4):hover {
  border: 0.05em solid #c8d3d8;
}
nav.pagination ol li:nth-child(3) {
  min-width: 7em;
  max-width: 10em;
}
nav.pagination ol li:hover {
  opacity: 1;
}
nav.pagination ol li .kdl-visually-hidden {
  display: none;
}
nav.pagination ol li a {
  color: #5a6369;
  text-decoration: none;
}
nav.pagination ol li a:hover {
  color: black;
}
nav.pagination ol li a span {
  display: inline-block;
  font-family: "KingsCaslon", serif;
}

main.reveal + footer {
  margin-top: 2em;
}

footer {
  background: #5a6369;
  margin-top: 8em;
  width: 100%;
  color: white;
}
footer .connect {
  padding: 0 1em;
  background: #0a2d50;
  color: white;
  width: 100%;
}
footer .connect .kdl-container {
  display: flex;
  align-items: center;
}
footer .connect .kdl-container h2 {
  font-family: KingsBureauGrotThreeSeven, sans-serif;
  font-weight: 400;
}
footer .connect .kdl-container ul {
  display: flex;
  align-items: center;
  list-style-type: none;
}
footer .connect .kdl-container ul li {
  flex-direction: row;
  justify-content: left;
  text-align: center;
  padding-left: 1em;
}
footer .connect .kdl-container ul li a {
  display: block;
  padding: 0.7em 0.5em;
  border: 0.12em solid #97b0ca;
  border-radius: 50%;
  width: 3em;
  height: 3em;
}
footer .connect .kdl-container ul li a ion-icon {
  color: white;
  font-size: 1.4em;
}
footer .connect .kdl-container ul li a:hover {
  border: 2px solid white;
  background-color: white;
}
footer .connect .kdl-container ul li a:hover ion-icon {
  color: black;
}
footer nav.footer {
  padding: 0 1em;
}
footer nav.footer .kdl-container {
  display: flex;
}
footer nav.footer .kdl-container h2 {
  border-bottom: 0.13em solid rgb(139, 146, 150);
  padding-bottom: 0.5em;
  font-family: KingsBureauGrotFiveOne, sans-serif;
  font-weight: 400;
  font-size: 1.4em;
}
footer nav.footer .kdl-container section {
  margin-right: 2em;
}
footer nav.footer .kdl-container section ul {
  margin-left: -40px;
}
footer nav.footer .kdl-container section ul li {
  list-style-type: none;
  padding-bottom: 1em;
}
footer nav.footer .kdl-container section ul li a {
  color: white;
  min-width: 6em;
  display: block;
  text-decoration: none;
}
footer nav.footer .kdl-container section ul li a:hover {
  text-decoration: underline;
}
footer nav.footer .kdl-container section p,
footer nav.footer .kdl-container section address {
  font-style: normal;
}
footer nav.footer .kdl-container section p.postal,
footer nav.footer .kdl-container section address.postal {
  line-height: 1.5;
  padding: 0.4em 0 0 0;
  margin: 0;
}
footer nav.footer .kdl-container section ion-icon {
  font-size: 0.8em;
}
footer .footer-end {
  background-color: #3e4649;
  color: white;
  padding: 0.3em 1em;
  text-align: center;
}
footer .footer-end a {
  color: white;
  opacity: 0.9;
}
footer .footer-end a:hover {
  text-decoration-style: dashed;
  opacity: 1;
}
footer .footer-end p {
  font-size: 0.9em;
  line-height: 1.5;
}

@media screen and (max-width: 1200px) {
  main.faqs article > article > article:first-of-type > h3 {
    margin-bottom: 2em;
  }
  main.faqs article > article > article:first-of-type ol {
    display: block;
    text-align: center;
    margin-bottom: 1em;
  }
  main.faqs article > article > article:first-of-type ol li {
    height: 5em;
  }
  main.faqs article > article > article:first-of-type ol li:after {
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    top: 25%;
    left: calc(50% - 0.45em);
  }
  main.faqs article > article > article:first-of-type ul {
    width: calc(100% - 3em);
    margin: 0 0 0 3em;
  }
  main.faqs article > article > article:first-of-type ul li {
    display: block;
    float: left;
    width: 100%;
    height: initial;
    padding-bottom: 1em;
  }
  main.faqs article > article > article:first-of-type ul li h3 {
    margin-top: -0.4em;
    margin-bottom: 0;
  }
  main.faqs article > article > article:first-of-type ul li h3:before {
    margin-left: -2.2em;
    top: 0.2em;
  }
  main.faqs article > article > article:first-of-type ul li p {
    width: 100%;
    padding: 0;
    margin-top: 0;
  }
  main.faqs article > article > article:first-of-type ul li:nth-child(3):before {
    border: none;
  }
  main.faqs article > article > article:first-of-type ul li:nth-child(4) {
    margin: 0;
  }
  main.faqs article > article > article:first-of-type ul li:nth-child(1), main.faqs article > article > article:first-of-type ul li:nth-child(2), main.faqs article > article > article:first-of-type ul li:nth-child(3), main.faqs article > article > article:first-of-type ul li:nth-child(4), main.faqs article > article > article:first-of-type ul li:nth-child(5), main.faqs article > article > article:first-of-type ul li:nth-child(6), main.faqs article > article > article:first-of-type ul li:nth-child(7), main.faqs article > article > article:first-of-type ul li:nth-child(8) {
    margin-left: 0;
  }
  main.faqs article > article > article:first-of-type ul li:nth-child(1):before, main.faqs article > article > article:first-of-type ul li:nth-child(2):before, main.faqs article > article > article:first-of-type ul li:nth-child(3):before, main.faqs article > article > article:first-of-type ul li:nth-child(4):before, main.faqs article > article > article:first-of-type ul li:nth-child(5):before, main.faqs article > article > article:first-of-type ul li:nth-child(6):before, main.faqs article > article > article:first-of-type ul li:nth-child(7):before, main.faqs article > article > article:first-of-type ul li:nth-child(8):before {
    border-top: none;
    border-bottom: none;
    border-left: 3px solid #3b5773;
    padding-bottom: 0;
    position: absolute;
    margin-left: -2em;
    top: 0;
    height: 100%;
    display: block;
    border-radius: 0;
  }
  main.faqs article > article > article:first-of-type ul li:nth-child(1):after, main.faqs article > article > article:first-of-type ul li:nth-child(2):after, main.faqs article > article > article:first-of-type ul li:nth-child(3):after, main.faqs article > article > article:first-of-type ul li:nth-child(4):after, main.faqs article > article > article:first-of-type ul li:nth-child(5):after, main.faqs article > article > article:first-of-type ul li:nth-child(6):after, main.faqs article > article > article:first-of-type ul li:nth-child(7):after, main.faqs article > article > article:first-of-type ul li:nth-child(8):after {
    content: "▸";
    position: absolute;
    top: 48%;
    left: -1.69em;
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    margin-left: 0;
    display: none;
  }
  main.faqs article > article > article:first-of-type ul li:nth-child(6) p:before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
    border-top: 3px solid #3b5773;
    border-bottom: 3px solid #3b5773;
    content: "";
    position: absolute;
    top: calc(3px + 8%);
    height: 84%;
    aspect-ratio: 1/1;
    left: -2em;
    opacity: 0.05;
    z-index: -1;
  }
}
@media (max-width: 1000px) {
  header .site .kdl-container a.sitename {
    font-size: 1.3em;
    padding-top: 0.6em;
  }
  header .site .kdl-container a.logo img {
    width: 4em;
    margin-right: -1em;
  }
  header nav.main {
    margin-top: -3.4em;
  }
  header nav.main .kdl-container {
    display: flex;
  }
  header nav.main .kdl-container #menu-toggle ~ ul {
    height: 0;
    width: 0;
    opacity: 1;
    display: none;
    float: none;
    margin-left: -66px;
  }
  header nav.main .kdl-container #menu-toggle:checked ~ ul {
    height: 100%;
    width: calc(100% + 40px);
    opacity: 1;
    margin-top: 3.4em;
    display: block;
  }
  header nav.main .kdl-container .kdl-menu-button-container {
    display: flex;
    position: absolute;
    right: 6em;
    top: 1.3em;
    flex-direction: row;
    justify-content: normal;
    align-items: initial;
  }
  header nav.main .kdl-container > ul {
    margin-top: 50px;
    width: 100%;
    -webkit-transition: all 800ms ease-in;
    -moz-transition: all 800ms ease-in;
    -ms-transition: all 800ms ease-in;
    -o-transition: all 800ms ease-in;
    transition: all 800ms ease-in;
  }
  header nav.main .kdl-container > ul > li {
    margin: 0;
    width: calc(100% + 165px);
    color: white;
    background-color: #42494e;
    margin-left: 10px;
    padding: 0;
  }
  header nav.main .kdl-container > ul > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  header nav.main .kdl-container > ul > li:not(:last-child) > ul {
    margin-left: -40px;
  }
  header nav.main .kdl-container > ul > li:not(:last-child) > ul > li {
    padding-left: 20px;
  }
  header nav.main.kdl-container > ul {
    margin-top: 100px;
    width: 100%;
  }
  header nav.sub {
    opacity: 0;
    height: 2em;
  }
  main .kdl-container article {
    flex: auto;
  }
  main .kdl-container aside {
    margin: 0;
    display: none;
  }
  main.home .kdl-container {
    padding: 0;
  }
  main.home .hero {
    margin: 0 0 0 -1em;
    z-index: -1;
  }
  main.home .hero .hero-content {
    width: 90%;
    top: 40%;
  }
  main.home h2 {
    margin: 1em 0 2em 0;
  }
  main.home .projects div,
  main.home .blog div {
    flex-basis: 100%;
  }
  main.home .discover > .research,
  main.home .discover > .activities {
    display: block;
    padding: 1.5em 1.5em 0.2em 1.5em;
  }
  ul.list li {
    display: block;
  }
  ul.list li figure img {
    width: 100%;
  }
  ul.list li section {
    margin-left: 0;
  }
  ul.list li section a h2 {
    margin: 0.5em 0 0.3em 0;
  }
  main.project .kdl-container {
    display: block;
  }
  main.project .kdl-container article {
    display: block;
  }
  main.project .kdl-container article section {
    width: 100%;
    margin: 0;
  }
  main.project .kdl-container article section:last-child {
    width: 100%;
    margin: 0;
  }
  main.project .kdl-container article section:last-child #metadata {
    margin-top: 1em;
  }
  main.post footer {
    text-align: left;
    margin-top: 3em;
  }
  main.team article {
    display: block;
  }
  main.team article ul {
    text-align: center;
    justify-content: center;
  }
  main.team article ul li {
    display: block;
  }
  main.team article ul li section {
    width: 100%;
  }
  main.people article ul,
  main.organisations article ul {
    columns: 1;
  }
  main.person article section section,
  main.organisation article section section {
    display: block;
  }
  main.themes .research {
    display: block;
  }
  main.themes .research .research-block {
    padding: 1.1em 0.7em 1em 0.7em;
  }
  .sibling-pagination {
    display: none;
  }
  footer {
    text-align: center;
  }
  footer .connect .kdl-container {
    display: block;
    text-align: center;
    padding: 1em 0;
  }
  footer .connect .kdl-container ul {
    justify-content: center;
    margin-left: calc(-40px - 1em);
  }
  footer nav.footer .kdl-container {
    display: block;
  }
  footer nav.footer .kdl-container h2 {
    padding: 0.2em 0;
    border-bottom: 0.05em solid rgb(139, 146, 150);
  }
}