/*====================================
=            GRID GLOBALS            =
====================================*/
/*=====  End of GRID GLOBALS  ======*/
/*===================================
=            TRANSITIONS            =
===================================*/
/*=====  End of TRANSITIONS  ======*/
/*=================================
=            STRUCTURE            =
=================================*/
/*=====  End of STRUCTURE  ======*/
/*==============================
=            COLORS            =
==============================*/
/*=====  End of COLORS  ======*/
/** Import everything from autoload */
/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/** Import theme styles */
/*=====================================
=            MEDIA QUERIES            =
=====================================*/
/*=====  End of MEDIA QUERIES  ======*/
/*==============================
=            MIXINS            =
==============================*/
/*=====  End of MIXINS  ======*/
/*========================================
=            EXTEND SELECTORS            =
========================================*/
/*=====  End of EXTEND SELECTORS  ======*/
/* PROJECT MIXINS */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

.ios input,
.safari input {
  opacity: 1;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.block-section {
  float: left;
  width: 100%;
  clear: both;
  position: relative;
}

html.has-scroll-smooth {
  overflow: hidden;
}
html.has-scroll-dragging {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.has-scroll-smooth body {
  overflow: hidden;
}

.has-scroll-smooth [data-scroll-container] {
  min-height: 100vh;
}
[data-scroll-direction=horizontal] [data-scroll-container] {
  height: 100vh;
  display: inline-block;
  white-space: nowrap;
}

[data-scroll-direction=horizontal] [data-scroll-section] {
  display: inline-block;
  vertical-align: top;
  white-space: nowrap;
  height: 100%;
}

.c-scrollbar {
  position: absolute;
  right: 0;
  top: 0;
  width: 11px;
  height: 100%;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  opacity: 0;
}
.c-scrollbar:hover {
  -webkit-transform: scaleX(1.45);
      -ms-transform: scaleX(1.45);
          transform: scaleX(1.45);
}
.c-scrollbar:hover, .has-scroll-scrolling .c-scrollbar, .has-scroll-dragging .c-scrollbar {
  opacity: 1;
}
[data-scroll-direction=horizontal] .c-scrollbar {
  width: 100%;
  height: 10px;
  top: auto;
  bottom: 0;
  -webkit-transform: scaleY(1);
      -ms-transform: scaleY(1);
          transform: scaleY(1);
}
[data-scroll-direction=horizontal] .c-scrollbar:hover {
  -webkit-transform: scaleY(1.3);
      -ms-transform: scaleY(1.3);
          transform: scaleY(1.3);
}

.c-scrollbar_thumb {
  position: absolute;
  top: 0;
  right: 0;
  background-color: black;
  opacity: 0.5;
  width: 7px;
  border-radius: 10px;
  margin: 2px;
  cursor: -webkit-grab;
  cursor: grab;
}
.has-scroll-dragging .c-scrollbar_thumb {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
[data-scroll-direction=horizontal] .c-scrollbar_thumb {
  right: auto;
  bottom: 0;
}

a {
  text-decoration: none;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 15px auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 15px;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .alignleft {
    float: left;
    margin-right: 15px;
  }
  .alignright {
    float: right;
    margin-left: 15px;
  }
}
@media only screen and (min-device-width: 360px) and (max-device-width: 767px) and (orientation: landscape) {
  .alignleft {
    float: left;
    margin-right: 15px;
  }
  .alignright {
    float: right;
    margin-left: 15px;
  }
}
/** Captions */
/** Text meant only for screen readers */
/*!
Theme Name: Memory architects
Theme URI: https://kutia.net
Author: Kutia Software Company
Author URI: https://kutia.net
Description: Custom Theme
License URI: LICENSE
Text Domain: Memory architects
*/
/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  line-height: 1.6;
  overflow-x: hidden;
  background: #fff;
}

body.home {
  background-color: rgb(31, 27, 32);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1272px;
  margin: 0 auto;
}

/* Header */
.header {
  height: 160px;
  position: fixed;
  width: 100%;
  padding: 32px 0 16px;
  z-index: 999;
}

.header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 32px;
}

.logo {
  width: 82px;
  height: auto;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.nav a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  white-space: nowrap;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-family: "Inter", sans-serif;
  letter-spacing: 0%;
}

.nav a:hover {
  color: rgb(204, 204, 204);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 230px 0 64px;
}

.hero-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 64px;
  margin-bottom: 64px;
  position: relative;
}

.hero-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  mix-blend-mode: difference;
}

.hero-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 96px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  z-index: 12;
}

.label {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin-top: 20px;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}

.hero-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 946px;
  position: relative;
}

.hero-title {
  font-size: 68px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.04px;
  text-transform: uppercase;
  margin-bottom: 64px;
  color: #fff;
  font-family: "Special Gothic Expanded One", sans-serif;
}

.hero-title .highlight {
  color: white;
}

.hero-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  width: 400px;
  color: rgb(187, 187, 187);
  font-family: "Inter", sans-serif;
}

.hero-image {
  width: 326px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  right: 0;
  top: 90px;
  z-index: -1;
}

.hero-img-1 {
  width: 100%;
  max-width: 700px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 500px;
  left: 0;
  z-index: -1;
}

.hero-img-2-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 240px;
}

.hero-img-2 {
  width: 100%;
  max-width: 620px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Section Styles */
.section-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 96px;
}

.section-label {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  white-space: nowrap;
  font-family: "Inter", sans-serif;
}

.section-label.dark {
  color: rgb(31, 27, 32);
}

.section-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 946px;
}

.section-title {
  font-size: 68px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.04px;
  text-transform: uppercase;
  margin-bottom: 82px;
  font-family: "Special Gothic Expanded One", sans-serif;
}

.section-subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.42;
  margin-bottom: 82px;
  font-family: "Special Gothic Expanded One", sans-serif;
}

.section-description {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: rgb(187, 187, 187);
  width: 400px;
  font-family: "Inter", sans-serif;
}

.section-description.large {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: white;
  width: 730px;
  font-family: "Inter", sans-serif;
}

/* Research Section */
.research {
  padding: 190px 0;
  position: relative;
}
.research .research-bg-image {
  position: absolute;
  right: -50%;
  top: 0;
  width: 1300px;
  height: 1300px;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* Services Section */
.services {
  padding: 64px 0;
}

/* Legal Section */
.legal {
  padding: 160px 0;
  position: relative;
}
.legal .legal-bg-image {
  position: absolute;
  top: -70px;
  right: -70px;
  width: 733px;
  height: 733px;
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 0;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

.legal-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 64px;
}

.legal-text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.legal-intro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 188px;
}

.legal-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 405px;
}

.legal-image {
  width: 415px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Grant Writing Section */
.grant-writing {
  background-color: white;
  color: rgb(31, 27, 32);
  padding: 120px 0;
}

.grant-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 96px;
  margin-bottom: 146px;
}

.grant-header .section-label {
  margin-top: 40px;
}

.grant-title {
  font-size: 68px;
  font-weight: 400;
  text-transform: uppercase;
  color: #1F1B20;
  max-width: 946px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  line-height: normal;
}

.grant-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}

.project-navigator {
  min-width: 235px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 12px;
  color: rgb(56, 48, 57);
  font-weight: 300;
  line-height: 18px;
}

.project-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  padding: 16px 12px;
  margin-bottom: 16px;
  border: 1px solid rgb(222, 225, 235);
}

.project-item.active {
  background-color: rgb(239, 231, 241);
  border: none;
}

.project-item.active .project-text {
  font-weight: 700;
  font-family: "Inter", sans-serif;
}

.project-item img {
  width: 89px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.project-text {
  width: 165px;
  font-weight: 300;
  font-family: "Inter", sans-serif;
}

.project-title-bold {
  font-weight: 700;
  color: rgb(56, 48, 57);
}

.see-all {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 300;
  color: rgb(56, 48, 57);
  font-family: "Inter", sans-serif;
}
.see-all a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 9px;
  text-decoration: none;
  color: rgb(56, 48, 57);
}

.see-all.dark {
  color: rgb(56, 48, 57);
}

.see-all img {
  width: 26px;
  height: auto;
}

.grant-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.grant-project-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.grant-project-image {
  width: 403px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.grant-project-image img {
  width: 100%;
}

.grant-project-title {
  font-size: 38px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.14px;
  color: rgb(31, 27, 32);
  width: 511px;
  font-family: "Special Gothic Expanded One", sans-serif;
}

.grant-text {
  color: rgb(31, 27, 32);
}

.grant-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 16px;
  font-family: "Inter", sans-serif;
}

.concept-section,
.collaborators-section {
  margin-top: 48px;
}

.concept-section h4,
.collaborators-section h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  color: rgb(31, 27, 32);
  margin-bottom: 8px;
}

.collaborators-section p {
  margin-bottom: 4px;
}

.collaborators-section strong {
  font-weight: 700;
}

/* Publications Section */
.publications {
  background-color: white;
  color: rgb(31, 27, 32);
  padding: 96px 0;
}

.publications-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 96px;
}

.publications-content .section-label {
  margin-top: 20px;
  min-width: 235px;
}

.publications-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.home .publications-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 56px;
}

.home .publications-grid img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Journal Section */
.journal {
  padding: 96px 0;
}

.journal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 271px;
  margin-bottom: 16px;
}

.journal-header .section-title {
  width: 647px;
  margin-bottom: 0;
}

.journal-text {
  max-width: 620px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin-top: 15px;
  font-family: "Inter", sans-serif;
}
.journal-text h2 {
  font-family: Special Gothic Expanded One;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0%;
}

.journal-text p {
  margin-bottom: 16px;
}

.why-section {
  margin-top: 32px;
}

.why-section h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin-bottom: 16px;
}

/* Team Section */
.team {
  padding: 96px 0;
}

.team-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 182px;
}

.team-main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.team-members {
  margin-top: 59px;
}

.team-member {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
  margin-bottom: 73px;
  font-size: 16px;
  font-weight: 300;
  line-height: 25px;
}

.member-info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 450px;
}

.member-info h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 34px;
  color: white;
  margin-bottom: 8px;
  font-family: "Inter", sans-serif;
}

.member-info p {
  color: rgb(187, 187, 187);
  font-family: "Inter", sans-serif;
}

.team-member img {
  width: 235px;
  height: auto;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* Footer */
.footer {
  float: left;
  width: 100%;
  background-color: rgb(16, 13, 17);
  padding: 96px 0;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px;
  margin-bottom: 100px;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: rgb(109, 109, 109);
  font-family: "Inter", sans-serif;
  font-style: 300;
}

.footer-middle {
  text-align: center;
  margin-bottom: 109px;
}

.footer-middle p {
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  color: rgb(255, 85, 0);
  max-width: 408px;
  margin: 0 auto;
  font-family: "Inter", sans-serif;
}

.footer-bottom {
  text-align: center;
}

.footer-bottom h3 {
  color: white;
  font-size: 16px;
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 40px;
  font-family: "Inter", sans-serif;
}

.social-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 48px;
  font-size: 89px;
  font-weight: 400;
  letter-spacing: -2.11px;
  line-height: 0.72;
  color: rgb(56, 48, 57);
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-family: "Inter", sans-serif;
}
.social-links a {
  color: #383039;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.social-links a:hover {
  color: #5a4e5b;
}

.only-mobile {
  display: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 60px;
  }
  .hero-title,
  .section-title {
    font-size: 48px;
  }
  .grant-title {
    font-size: 48px;
  }
  .hero-intro {
    gap: 48px;
  }
  .section-content {
    gap: 48px;
  }
  .legal-intro {
    gap: 96px;
  }
  .legal {
    padding-top: 60px;
  }
  .legal .section-subtitle {
    font-family: Special Gothic Expanded One;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0%;
    margin: 40px 0;
  }
}
@media (max-width: 768px) {
  .logo {
    width: 62px;
  }
  .container {
    padding: 0 16px;
  }
  .header {
    background: #1f1b20;
    padding: 10px 0;
    z-index: 999;
    height: auto;
    top: 0;
  }
  .header .container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24px;
    max-width: 100%;
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .nav {
    gap: 24px;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
    background: #1f1b20;
    position: absolute;
    left: 0;
    top: 86px;
    padding-top: 60px;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    height: 100vh;
    padding-left: 16px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    width: 100%;
  }
  .nav a {
    font-family: Special Gothic Expanded One;
    font-weight: 400;
    font-size: 24px;
    line-height: 34px;
    letter-spacing: 0%;
    color: white !important;
  }
  .hero {
    padding-top: 140px;
  }
  .hero-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
    margin-bottom: 0;
  }
  .hero-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .hero-title,
  .section-title {
    font-size: 36px;
  }
  .hero-title {
    margin-bottom: -76px;
    z-index: 9;
    position: relative;
    font-size: 38px;
    line-height: normal;
    letter-spacing: 3%;
  }
  .grant-title {
    font-size: 36px;
    letter-spacing: 3%;
  }
  .section-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .legal-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 32px;
  }
  .legal-intro {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .legal-image {
    width: 100%;
  }
  .grant-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
    margin-bottom: 42px;
  }
  .grant-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .project-navigator {
    width: 100%;
  }
  .grant-project-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .grant-project-image {
    width: 100%;
  }
  .grant-project-title {
    width: 100%;
    font-size: 28px;
  }
  .publications-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .publications-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .journal {
    padding: 60px 0;
  }
  .journal-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .journal-header .section-title {
    width: 100%;
  }
  .team {
    padding: 60px 0;
  }
  .team-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .team-member {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .team-member img {
    width: 100%;
    margin: 0 auto;
  }
  .footer-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .social-links {
    gap: 24px;
    font-size: 24px;
    margin-top: 90px;
  }
  .section-main {
    max-width: 100%;
  }
  .section-description.large {
    max-width: 100%;
  }
  .section-description {
    width: 100%;
  }
  .research {
    padding-top: 60px;
    overflow: hidden;
    background-position: top;
  }
  .legal {
    overflow: hidden;
  }
  .hero-img-1 {
    display: none;
  }
  .hero-main {
    max-width: 100%;
  }
  .hero-image {
    width: 326px;
    width: 90%;
    position: relative;
    top: auto;
    left: auto;
    margin: 0 auto;
    z-index: 1;
  }
  .hero-image img {
    margin: auto;
  }
  .hero-text {
    width: 100%;
  }
  .hero-description {
    width: 100%;
    margin-top: 40px;
  }
  .only-mobile {
    display: block;
  }
  .only-desktop {
    display: none;
  }
  .hero-img-2-container {
    margin-top: 40px;
  }
  .section-subtitle {
    font-family: Inter;
    font-weight: 300;
    font-size: 16px;
    line-height: 28px;
    margin-top: 60px;
  }
  .services .section-subtitle {
    margin-top: 24px;
    margin-bottom: 20px;
  }
  .section-description.large {
    font-weight: 300;
  }
  .section-description.large p {
    font-size: 16px;
  }
  .research-bg-image {
    display: none;
  }
  .legal-bg-image {
    display: none;
  }
  .grant-writing {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .grant-header .section-label {
    margin-top: 0;
  }
  .grant-header .section-label br {
    display: none;
  }
  .home .publications-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .publications {
    padding: 60px 0;
  }
  .section-label {
    font-weight: 700;
  }
  .member-info {
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .grant-title {
    font-size: 32px;
  }
  .grant-project-title {
    font-size: 24px;
  }
  .social-links {
    font-size: 24px;
  }
}
.home .publication-card {
  background-color: #F2F4FB;
  height: 639px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.home .publication-card:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.home .publication-image {
  height: 222px;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 16px;
}
.home .publication-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.home .publication-card:hover .publication-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.home .publication-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
}
.home .publication-author-date {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #181818;
  vertical-align: middle;
}
.home .publication-author-date strong {
  font-weight: 700;
}
.home .publication-title {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 34px;
  color: rgb(31, 27, 32);
  margin: 0 0 16px 0;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.home .publication-title a {
  color: rgb(31, 27, 32);
  text-decoration: none;
}
.home .publication-description {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: rgb(31, 27, 32);
  margin: 0 0 14px 0;
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-bottom: 1px solid rgb(222, 225, 235);
}
.home .publication-download {
  margin-top: auto;
}
.home .download-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: rgb(31, 27, 32);
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.home .download-text:hover {
  color: rgb(109, 109, 109);
}
.home .load-more-container {
  text-align: center;
}
.home .load-more-btn {
  background-color: rgb(242, 244, 251);
  border: 1px solid rgb(109, 109, 109);
  color: rgb(31, 27, 32);
  padding: 16px 32px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
.home .load-more-btn:hover {
  background-color: rgb(31, 27, 32);
  color: white;
  border-color: rgb(31, 27, 32);
}
.home .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.home .loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
}

#js-scroll {
  padding-bottom: 620px;
}

[data-scroll] .hero-title {
  mix-blend-mode: difference;
}

/* Projects Page Styles */
.projects {
  padding: 230px 0 96px;
  background-color: white;
  color: rgb(31, 27, 32);
}

/* Projects page specific header styling */
body.single .header,
body.projects-page .header {
  background-color: #1F1B20;
}

body.single .header .container,
body.publications-page .header .container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

body.single .nav a,
body.projects-page .nav a {
  color: white;
}

.single-article {
  padding-top: 220px;
}

body.projects-page .nav a:hover {
  color: rgb(204, 204, 204);
}

.projects-header {
  margin-bottom: 64px;
}

.projects-title {
  font-family: Inter;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: rgb(109, 109, 109);
}

.projects-subtitle {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: rgb(109, 109, 109);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}

.project-card {
  background-color: #F2F4FB;
  height: 432px;
  padding: 16px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.project-card:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
}

.project-image {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  overflow: hidden;
  margin-top: 16px;
}

.project-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.project-card:hover .project-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.project-content {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: white;
  padding: 16px;
  border-radius: 8px;
  margin-top: auto;
}

.project-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.project-category {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 18px;
  color: rgb(56, 48, 57);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.project-date {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: rgb(109, 109, 109);
  margin-top: 16px;
}

.project-title {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 24px;
  line-height: 34px;
  letter-spacing: 0%;
  color: rgb(31, 27, 32);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.load-more-container {
  text-align: center;
}

.load-more-btn {
  background-color: transparent;
  border: 1px solid rgb(109, 109, 109);
  color: rgb(31, 27, 32);
  padding: 16px 32px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}

.load-more-btn:hover {
  background-color: rgb(31, 27, 32);
  color: white;
  border-color: rgb(31, 27, 32);
}

.load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
}

.spinner {
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* Responsive Design */
@media (max-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .projects {
    padding: 180px 0 64px;
  }
  .projects-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .project-card {
    height: auto;
    min-height: 400px;
  }
  .single-article {
    padding-top: 120px;
  }
}
@media (max-width: 480px) {
  .project-title {
    font-size: 20px;
    line-height: 28px;
  }
}
/* Publications Page Styles */
body.publications-page {
  /* Publications page specific header styling */
  /* Responsive Design */
}
body.publications-page .publications {
  padding: 230px 0 96px;
  background-color: white;
  color: rgb(31, 27, 32);
}
body.publications-page .header {
  background-color: #1F1B20;
}
body.publications-page .nav a {
  color: white;
}
body.publications-page .header .container {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
body.publications-page .nav a:hover {
  color: rgb(204, 204, 204);
}
body.publications-page .publications-header {
  margin-bottom: 32px;
}
body.publications-page .publications-title {
  font-family: Inter;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
}
body.publications-page .publications-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 64px;
}
body.publications-page .publication-card {
  background-color: #F2F4FB;
  height: 639px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
body.publications-page .publication-card:hover {
  -webkit-transform: translateY(-4px);
      -ms-transform: translateY(-4px);
          transform: translateY(-4px);
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
body.publications-page .publication-image {
  min-height: 222px;
  overflow: hidden;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  margin-bottom: 16px;
}
body.publications-page .publication-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
body.publications-page .publication-card:hover .publication-image img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
body.publications-page .publication-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 16px;
}
body.publications-page .publication-author-date {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  letter-spacing: 0%;
  color: #181818;
  vertical-align: middle;
}
body.publications-page .publication-author-date strong {
  font-weight: 700;
}
body.publications-page .publication-title {
  font-family: "Special Gothic Expanded One", sans-serif;
  font-weight: 400;
  font-size: 21px;
  line-height: 34px;
  letter-spacing: 0%;
  margin: 0 0 16px 0;
  color: rgb(31, 27, 32);
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.publications-page .publication-title a {
  color: rgb(31, 27, 32);
  text-decoration: none;
}
body.publications-page .publication-description {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 28px;
  color: rgb(31, 27, 32);
  vertical-align: middle;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
body.publications-page .publication-download {
  border-top: 1px solid rgb(222, 225, 235);
  padding-top: 10px;
}
body.publications-page .download-text {
  font-family: "Inter", sans-serif;
  font-weight: 300;
  font-style: Light;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0%;
  color: rgb(31, 27, 32);
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
body.publications-page .download-text:hover {
  color: rgb(109, 109, 109);
}
body.publications-page .load-more-container {
  text-align: center;
}
body.publications-page .load-more-btn {
  background-color: rgb(242, 244, 251);
  border: 1px solid rgb(109, 109, 109);
  color: rgb(31, 27, 32);
  padding: 16px 32px;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  border-radius: 8px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
body.publications-page .load-more-btn:hover {
  background-color: rgb(31, 27, 32);
  color: white;
  border-color: rgb(31, 27, 32);
}
body.publications-page .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
body.publications-page .loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
}
body.publications-page .spinner {
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  -webkit-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@media (max-width: 1200px) {
  body.publications-page .publications-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 1024px) {
  body.publications-page .publications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  body.publications-page .publications-title {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  body.publications-page .publications {
    padding: 180px 0 64px;
  }
  body.publications-page .publications-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body.publications-page .publication-card {
    height: auto;
    min-height: 500px;
  }
  body.publications-page .publications-title {
    font-size: 36px;
  }
}
@media (max-width: 480px) {
  body.publications-page .publications-title {
    font-size: 28px;
  }
  body.publications-page .publication-title {
    font-size: 18px;
    line-height: 28px;
  }
}
