.open-sans {
  font-family: "Open Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.noto-sans {
  font-family: "Noto Sans", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.noto-sans-fat {
  font-family: "Noto Sans", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: italic;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  font-family: "Noto Sans", serif;
  font-weight: 400;
}
body {
  height: 100%;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    340deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(78, 108, 86, 1) 100%
  );
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-attachment: fixed;
  overscroll-behavior: none;
  color: beige;
}
header {
  width: min(90vw, 1125px);
  border-radius: 15px;
  border: 0.5px solid #28584e;
  height: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
  position: fixed;
  top: 20px;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
  /*background-color: rgba(255, 255, 255, 0.47);*/
}
#header {
  transition: transform 0.8s ease-out 0s;
}
#cabinet {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: beige;
}
#cabinet a {
  display: block;
  color: inherit; /* Inherit color from parent element */
  text-decoration: none; /* Remove underline */
  padding: 0; /* Remove padding */
  margin: 0; /* Remove margin */
  border: none; /* Remove border */
}
#navbar {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1vw;
}
#navbar .transbutton {
  color: rgb(255, 250, 244);
  font-family: "Vollkorn", sans-serif;
  font-weight: 400;
  font-size: 16px;
  background-color: #28584e;
  border: 1px solid #28584e;
  border-radius: 40px;
  justify-content: center;
  align-items: center;
  padding: 6px 12px;
  transition: background-color 1s, color 0.4s;
  display: flex;
}
#navbar button.transbutton:hover,
#navbar button.dropdown:active {
  color: #28584e;
  background-color: beige;
}
#separator {
  border: 0.5px solid #28584e;
  height: 40px;
  margin: 0 6px;
}
#name {
  font-size: 24px;
  font-weight: 500;
}

.main-column {
  width: min(90vw, 1125px);
  overflow: hidden;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  margin-top: 100px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 0.5px solid #28584e;
  margin-bottom: 25px;
}
#header-image {
  height: min(36vw, 450px);
  width: 100%;
  background-image: url("./assets/IMG_5063 2.jpg");
  background-position: center;
  background-size: cover;
  border-bottom: 0.5px solid #28584e;
}
.sector {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  background-color: rgba(245, 245, 220, 0.05);
  padding-bottom: 15px;
  width: 100%;
  padding: 1vw 5vw;
}
.sector.center-alignment {
  align-items: center;
}
.sector.left-alignment {
  align-items: start;
}
.sector-separator {
  width: 100%;
  border-bottom: 0.5px solid #28584e;
}
.timeline {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  color: beige;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.timeline::after {
  content: "";
  position: absolute;
  width: 2px;
  background: rgb(0, 0, 0);
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(245, 245, 220, 1) 47%
  );
  /*background-color: beige;*/
  top: 0;
  left: 50%;
  bottom: 0;
  margin-left: -1px;
}
.timeline-item {
  position: relative;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
}
.timeline-dot {
  content: "";
  background-position: center;
  background-size: cover;
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: rgb(245, 245, 220);
  border-radius: 50%;
  top: 0;
  left: 50%;
  margin-left: -15px;
  z-index: 1;
}
.timeline-dot.aneu {
  background-image: url("./assets/aneu.png");
}
.timeline-dot.comp {
  background-image: url("./assets/computer.png");
}
.timeline-dot.seg {
  background-image: url("./assets/seg4.png");
}
.timeline-dot.lab {
  background-image: url("./assets/lab2.png");
}
.timeline-dot.antib {
  background-image: url("./assets/antib3.png");
}
.timeline-dot.treatment {
  background-image: url("./assets/treatment.png");
}
.timeline-dot.yt {
  background-image: url("./assets/yt.png");
}
.timeline-dot.grant {
  background-image: url("./assets/grant.png");
}
.timeline-dot.kv {
  background-image: url("./assets/kv.png");
}
.timeline-dot.cast {
  background-image: url("./assets/CAST.png");
}
@media (min-width: 500px) {
  .timeline-item.left .timeline-content {
    transform: translateX(-65%);
    opacity: 1;
    transition: transform 0.8s ease-out 0.25s, opacity 0.5s ease-in 0.25s;
  }
  .timeline-item.right .timeline-content {
    transform: translateX(50%);
    opacity: 1;
    transition: transform 0.8s ease-out 0s, opacity 0.5s ease-in 0.25s;
  }
}
@media (max-width: 500px) {
  .timeline {
    align-items: start;
    justify-content: center;
  }
  .timeline::after {
    position: absolute;
    left: 10%;
  }
  .timeline-item .timeline-dot {
    position: absolute;
    left: 10%;
    transform: translateX(-45%);
  }
  .timeline-item div.timeline-content {
    transform: translateX(-50%);
    max-width: min(72vw, 900px);
  }
  .timeline-item.right div.timeline-content {
    transform: translateX(0%);
    opacity: 1;
    transition: transform 0.8s ease-out 0s, opacity 0.5s ease-in 0.25s;
  }
  .timeline-item .timeline-date {
    display: none;
  }
  .timeline-content .timeline-content-date {
    display: block;
  }
}
.timeline-item.left .timeline-date {
  transform: translateX(120%);
  opacity: 1;
  transition: transform 0.8s ease-out 0s, opacity 0.5s ease-in 0.25s;
}
.timeline-item.right .timeline-date {
  transform: translateX(-120%);
  opacity: 1;
  transition: transform 0.8s ease-out 0s, opacity 0.5s ease-in 0.25s;
}
.timeline-date {
  position: relative;
  font-weight: bold;
  opacity: 0;
  width: fit-content;
}
.timeline-content {
  position: relative;
  left: 30px;
  border: 1px solid #28584e;
  border-radius: 10px;
  padding: 10px;
  max-width: min(36vw, 450px);
  opacity: 0;
}
.timeline-content-date {
  font-weight: bold;
  margin-bottom: 10px;
  display: none;
}
.timeline-title {
  margin-bottom: 8px;
  font-weight: 700;
}
.timeline-description {
  margin-bottom: 10px;
}
.title {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-size: 28px;
  margin: 12px 24px;
}
.timeline-image {
  width: 100%;
  background-position: center;
  background-size: cover;
  border-bottom: 0.5px solid #28584e;
}
.timeline-image.biology-cabinet {
  background-image: url("./assets/IMG_0601 2.jpg");
  aspect-ratio: 16 / 10;
}
.timeline-image.acdc {
  background-image: url("./assets/acdc.png");
  aspect-ratio: 16 / 7;
}
.timeline-image.spores {
  background-image: url("./assets/spores.png");
  aspect-ratio: 16 / 7;
}
.timeline-image.youtube {
  background-image: url("./assets/youtube3.png");
  aspect-ratio: 16 / 11;
}
.timeline-image.cogniquiz {
  background-image: url("./assets/cogniquiz2.png");
  aspect-ratio: 16 / 9;
}
.timeline-image.sequence {
  background-image: url("./assets/sequence.png");
  aspect-ratio: 20 / 9;
}
ul {
  list-style-position: inside;
}
li {
  margin: 5px 0;
}
a {
  color: rgba(0, 255, 255, 0.75);
}
.subtitle {
  font-family: "Poppins", serif;
  margin-top: 12px;
  margin-bottom: 8px;
  font-weight: 700;
  font-size: 18px;
}
.span-title {
  font-weight: 700;
  font-size: 16px;
}
.contact-footer {
  margin-bottom: 25px;
}
.indent {
  display: block;
  text-indent: 1.5em;
}
