html,
body {
  font-family: 'Bricolage Grotesque', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-optical-sizing: auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  height: 100%;
  font-style: normal;
  line-height: 1.5;
  font-variation-settings:
    "wdth" 100;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 64px;
  width: auto;
  height: auto;
}

.stack {
  margin-top: 8px;
  margin-bottom: 8px;
  position: relative;
  overflow: visible;
  max-width: 100%;
  width: 900px;
  height: min-content;
  flex: 0 0 auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 125%;
  margin-top: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}

@media (max-width: 992px) {
  .wrapper {
    padding: 16px 32px;
  }
}

@media (max-width: 720px) {
  .wrapper {
    padding: 8px 16px;
  }
}

a {
  text-decoration: none;
  background: -webkit-linear-gradient(#0080FB, #0668E1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

b {
  font-weight: 600;
}

.navbar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 16px;
}

.navbar span {
  width: 100%;
}

.navbar b {
  padding-bottom: 8px;
  font-size: 125%;
}

.navbar a {
  margin-right: 8px;
  color: black;
}

.active {
  font-weight: 600;
}

.banner-img {
  border-radius: 4%;
  width: 16%;
}

@media (max-width: 720px) {
  .banner-img {
    width: 32%;
  }
}

.news-item {
  margin-bottom: -4px;
}

.list-item {
  margin-bottom: 16px;
}

.research-item {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
}

.research-item>.research-info {
  padding-left: 16px;
  width: 100%;
}

.research-item>.research-img {
  width: 20%;
  display: flex;
  align-items: center;
  padding: 0;
  border-radius: 8px;
}

@media (max-width: 720px) {
  .research-item>.research-img {
    width: 30%;
  }
}

.research-item:first-of-type {
  padding-top: 0;
}

.research-item:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.research-item p,
.research-item h4 {
  margin-top: 0;
  margin-bottom: 0;
}

.research-btn {
  margin-right: 16px;
  font-size: 90%;
}

.research-paper {
  background: -webkit-linear-gradient(#0080FB, #0668E1);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.research-website {
  color: #103B42;
}

.research-links {
  margin-top: 8px;
}

.head-item {
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
  padding-top: 8px;
}

th, td {
  padding: 6px 24px 6px 0px !important;
}

th {
  border-bottom: 1px solid #c2c2c2 !important;
}

td {
  border-bottom: 1px solid #e5e5e5 !important;
}

pre {
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
  background-color: #f7f7f7 !important;
  border: 2px solid #e5e5e5 !important;
  padding: 16px;
  border-radius: 8px;
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  line-height: 1.75em;
  font-size: 90%;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(100px, 1fr));
  gap: 4px;
  width: 100%;
  margin: 16px auto;
}

.photo-item {
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1;
  background-color: #ccc;
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  position: relative;
  z-index: 0;
}

.photo-item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.photo-item span {
  position: absolute;
  bottom: 4%;
  left: 4%;
  color: white;
  font-weight: 300;
  font-size: 75%;
  text-transform: uppercase;
  -webkit-text-fill-color: initial !important;
}

@media (max-width: 992px) {
  .photo-item span {
    font-size: 25%;
  }
}

.slides-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
}

.slides-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}