@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:wght@500;700;900&display=swap");
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;
  text-decoration: none;
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

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

body {
  line-height: 1;
}

blockquote,
q {
  quotes: none;
}

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

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

body {
  position: relative;
  font-size: 16px;
  font-family: "Arial", sans-serif;
}

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

button {
  outline: none;
  border: none;
  cursor: inherit;
}

a {
  cursor: pointer;
}

* {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  background-color: #111727;
  -webkit-transition: none;
  transition: none;
}

ol li {
  list-style: disc;
  margin-left: 12px;
  line-height: 2;
}

.color-purple {
  color: #9546e1;
}

.color-magenta {
  color: #e34d6d;
}

p {
  color: #fff;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 18px !important;
  text-align: justify;
}

.main-title {
  font-size: 56px;
  text-align: center;
  color: #818cf7;
  margin-bottom: 24px;
  font-weight: bold;
}

.sub-title {
  color: #fe93ec;
  font-size: 36px;
  font-weight: bold;
  text-align: left;
  margin-bottom: 12px;
}
.sub-title:not(:first-child) {
  margin-top: 24px;
}

.sub-title-2 {
  color: #fe93ec;
  font-size: 28px;
  font-weight: bold;
  text-align: left;
}

.title-desc {
  color: #fff;
  font-size: 28px;
  text-align: center;
}

main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header {
  position: sticky;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  top: 0;
  max-height: 100vh;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: 300px;
  padding: 36px;
  overflow-y: scroll;
}
header .logo {
  margin: 0 auto;
  width: 180px;
  margin-bottom: 36px;
}
header a {
  text-decoration: none;
}
header li {
  list-style: none;
}
header > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header > ul li:not(.sub) {
  margin: 8px 0;
}
header > ul li.sub {
  display: none;
}
header > ul li.sub.open {
  display: block;
}
header > ul li > a {
  min-width: 200px;
  text-align: center;
  display: inline-block;
  border-radius: 9999px;
  background: -webkit-gradient(linear, left top, right top, from(#9546e1), to(#e34d6d));
  background: linear-gradient(90deg, #9546e1 0%, #e34d6d 100%);
  color: #111727;
  padding: 16px 0;
  font-weight: 600;
}
header > ul li > a:hover {
  scale: 1.1;
}
header > ul li > a.active {
  scale: 1.1;
  color: #fff;
}
header > ul li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header > ul li ul li:first-child {
  margin-top: 8px;
}
header > ul li ul li a.sub {
  min-width: 192px;
  background: #d2ff9a;
  -webkit-transform: translateX(12px);
          transform: translateX(12px);
  padding: 12px 0;
  font-size: 14px;
}
header > ul li ul li a.sub:hover {
  scale: 1.05;
}
header > ul li ul li a.sub.active {
  color: #111727;
  scale: 1.15;
}

section.layout {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px 80px;
  color: #fff;
}
section.layout .frame {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
section.layout .frame footer {
  color: #fff;
}
section.layout .frame footer h1 {
  font-size: 56px;
  color: #818cf7;
  margin-bottom: 20px;
  font-weight: bold;
}
section.layout .frame footer > p {
  margin-bottom: 40px;
}
section.layout .frame footer h3 {
  text-align: center;
  margin-bottom: 24px;
}
section.layout .frame footer .info-box .students {
  max-width: 30%;
  min-width: 180px;
}
section.layout .frame footer .info-box .students img {
  width: 100%;
}
section.layout .frame footer .info-box .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 400px;
}
section.layout .frame footer .info-box .info .info-item a {
  color: #fff;
  text-decoration: underline;
}

.badge {
  -webkit-clip-path: polygon(0 0, 88% 0, 100% 30%, 100% 100%, 0 100%, 0% 50%);
          clip-path: polygon(0 0, 88% 0, 100% 30%, 100% 100%, 0 100%, 0% 50%);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
}
.badge.c1 {
  background-color: #f6cbcc;
}
.badge.c2 {
  background-color: #e36267;
}

.doc {
  font-family: "Source Code Pro", monospace;
}
.doc h1 {
  font-size: 65px;
}
.doc h3 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 12px;
}
.doc h4 {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 12px;
}
.doc h5 {
  font-size: 20px;
  margin-bottom: 12px;
}
.doc p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.doc p.in {
  padding-left: 16px;
}
.doc ol {
  padding: 0 28px;
}
.doc ol li {
  margin-bottom: 12px;
  line-height: 1.5;
}
.doc ul {
  list-style-type: disc;
  padding: 0 18px;
}
.doc ul li {
  margin-bottom: 8px;
  line-height: 1.5;
}
.doc a {
  color: #fff;
  display: block;
  margin-bottom: 12px;
}

.mx-auto {
  margin: 0 auto;
}

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

.text-block {
  margin-bottom: 120px;
}
.text-block p {
  line-height: 1.75;
}

h2.title {
  color: #818cf7;
  font-size: 60px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
}

h3.sub-title {
  color: #fe93ec;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

p.purple-paragraph {
  color: #818cf7;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.team .snake-bg {
  width: 100%;
}

.content {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.content.wet-lab .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 40px;
}
.content.wet-lab .box .snake {
  width: 400px;
}
.content.wet-lab .box .badge {
  width: 400px;
  height: 200px;
}
.content.wet-lab > .badge {
  width: 100%;
  height: 300px;
  margin: 0 auto;
}
.content.human-practices {
  position: relative;
}
.content.human-practices .shit {
  padding-top: 60px;
}
.content.human-practices .conversation {
  position: absolute;
  top: 100px;
  border-radius: 16px;
  padding: 36px;
  font-size: 24px;
}
.content.human-practices .conversation::after {
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 10px 10px 0 10px;
}
.content.human-practices .conversation.c1 {
  background-color: #cb8882;
}
.content.human-practices .conversation.c1:after {
  bottom: -10px;
  right: 20px;
  border-color: #cb8882 transparent transparent transparent;
}
.content.human-practices .conversation.c2 {
  background-color: #e36267;
  line-height: 1.5;
  right: 80px;
}
.content.human-practices .conversation.c2:after {
  bottom: -10px;
  left: 30px;
  border-color: #e36267 transparent transparent transparent;
}
.content.interview-video iframe {
  pointer-events: all;
}
.content.interview-video .text {
  padding: 24px;
}
.content.interview-video .text p {
  margin-bottom: 12px;
}
.content.attributions-contributions h2 {
  margin-bottom: 60px;
}
.content.attributions-contributions .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-bottom: 20px;
}
.content.bibliography .text {
  margin-bottom: 36px;
}

@media (prefers-color-scheme: light) {
  .team p {
    filter: invert(1);
  }
}
