@import url('https://fonts.googleapis.com/css2?family=Epilogue:ital,wght@0,100..900;1,100..900&family=Lora:ital,wght@0,400..700;1,400..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  --Epilogue: "Epilogue", sans-serif;
  --Poppins: "Poppins", sans-serif;
  --Lora: "Lora", serif;

  --radius: 1.25em;
  --radius-s: 0.5em;
  --radius-m: 0.75em;
  --padding-s: 1em;

  --pointer: url("assets/cursor/pointer.svg") 2 0, auto;
  --click: url("assets/cursor/click.svg") 2 0, auto;
  --text: url("assets/cursor/text.svg") 7 19, text;

  --navHeight: 90px;
  --navIcon: 100px;
  --title: 68px;
  --subtitle: 42px;
  --header: 48px;
  --fontsize-xs: 16px;
  --fontsize-s: 18px;
  --fontsize-m: 24px;
  --fontsize-l: 32px;
  --icon-s: 30px;
  --icon-m: 36px;
  --card: 300px;

  --primary: #172b74;
  --secondary: #f0befa;
  --selection: var(--secondary);
  --light: #f0ebe6;
  --dark: #000;
  --background: #f0ebe6;

  --animation-default-fast: 0.4s cubic-bezier(0.625, 0.05, 0, 1);
  --animation-default: 0.8s cubic-bezier(0.625, 0.05, 0, 1);
  --animation-bounce-fast: 0.6s cubic-bezier(0.35, 1.75, 0.6, 1);
  --animation-bounce: 0.8s cubic-bezier(0.35, 1.75, 0.6, 1);
  --animation-ease: 0.2s ease;
  --animation-expo: 0.8s cubic-bezier(0.87, 0, 0.13, 1);
  --animation-expo-fast: 0.4s cubic-bezier(0.87, 0, 0.13, 1);
}

::selection {
  background-color: var(--selection);
  color: var(--dark);
  text-shadow: none;
}

&::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.animation-basic {
  transform: translateY(8em) rotate(0.001deg);
  transition: all var(--animation-default);
}

body {
  cursor: var(--pointer);
  position: relative;
  width: 100dvw;
  height: auto;
  background-color: var(--background);
  margin: 0px;
  font-family: var(--Poppins);
  color: var(--dark);
  overflow-x: hidden;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-optical-sizing: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-top: var(--navHeight);
  transition: all var(--animation-default-fast);
}

a {
  cursor: var(--click);
  text-decoration: none;
}

p {
  padding: 0px;
  margin: 0px;
}

h1,
h2,
h3,
p {
  cursor: var(--text);
}

img {
  user-select: none;
}

.hidden {
  display: none;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: black;
  opacity: 0;
  visibility: hidden;
  z-index: -2;
  transition: var(--animation-default-fast) 0s, opacity 0.1s ease 0.15s;
}

.navBar {
  user-select: none;
  padding: 30px 0 20px;
  margin: 0 auto;
  width: 85%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.navBar section {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  transition: filter 0.3s ease-in-out;
}

/* Transition only for .menu, .contact, and .navLogo inside .navBar */
.navBar .menu,
.navBar .nav-social,
.navBar .navLogo {
  filter: invert(0);
  transition: filter brightness 0.75s ease-in-out;
}

/* Filter applied when over dark background */
.navBar.over-dark .menu,
.navBar.over-dark:not(:has(.open)) .menu-mobile,
.navBar.over-dark .nav-social {
  filter: invert(1);
}

.navBar.over-dark .navLogo {
  filter: invert(1) brightness(100);
}


.navBar.over-dark .menu:hover {
  filter: invert(0);
  color: var(--dark);
}

.navBar section * {
  cursor: var(--click);
}

.navBar section:nth-child(1) {
  justify-content: flex-start;
}

.navBar section:nth-child(3) {
  justify-content: flex-end;
}

.navLogo {
  width: var(--navIcon);
  height: auto;
  color: white;
}

.socials-wrapper {
  display: flex;
  gap: 15px;
}

.nav-social {
  width: var(--icon-s) !important;
  color: var(--dark);
  transition: var(--animation-bounce-fast) 0.15s, opacity 0.1s ease 0.3s;
}

.nav-social:hover {
  transform: rotate(10deg);
  scale: 1.2;
  transition: var(--animation-bounce-fast) 0.15s, opacity 0.1s ease 0.3s;
}

.menu {
  font-size: var(--icon-s) !important;
  position: absolute;
  transition: var(--animation-default-fast) 0.15s, opacity 0.1s ease 0.3s;
}

.menu-mobile {
  position: relative;
  display: none !important;
  font-size: var(--icon-s) !important;
  transition: var(--animation-default-fast) 0.15s, opacity 0.1s ease 0.3s;
}

.menu-modal {
  cursor: var(--pointer) !important;
  background-color: var(--background);
  clip-path: inset(1em calc(100% - (var(--radius-m) * 1) - 1em) calc(100% - (var(--radius-m) * 2) - 1em) 1em round var(--radius-m));
  visibility: hidden;
  opacity: 0;
  z-index: -1;

  position: absolute;
  top: -.5em;
  left: -.5em;
  padding-top: 1.75em;
  padding-bottom: 1em;
  padding-right: .5em;

  border-radius: var(--radius-m);
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  overflow: hidden;
  transition: var(--animation-default-fast) 0s, opacity 0.1s ease 0.3s;
}

.menu-modal a {
  transform: translateY(8em) rotate(0.001deg);
  transition: all var(--animation-default);
}

.menu:hover {
  transform: translate(-0.1em, 0.1em);
  transition: var(--animation-default-fast) 0.15s, opacity 0.1s ease 0.3s;
  color: var(--dark);
}

.menu:hover .menu-modal {
  clip-path: inset(0em 0em 0em 0em round var(--radius-m));
  visibility: visible;
  opacity: 1;
  transition: var(--animation-default-fast) 0.15s, opacity 0.1s ease 0.3s;
}

.menu:hover .menu-modal a {
  transform: translateY(0em) rotate(0deg);
  transition: all var(--animation-default);
}

.menu:hover .menu-modal a:nth-child(2) {
  transition-delay: 0.05s;
}

.menu:hover .menu-modal a:nth-child(3) {
  transition-delay: 0.1s;
}

.navBar:has(.menu:hover) .overlay {
  opacity: .25;
  visibility: visible;
}

.menu-item {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 15px;
  padding: 10px 40px;
  transition: var(--animation-default-fast) 0.15s, opacity 0.1s ease 0.3s;
  width: 100%;
}

.menu-item-image {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
  aspect-ratio: 1/1;
  border-radius: var(--radius-s);
  width: 80px;
}

.menu-item-image img {
  aspect-ratio: 1/1;
  border-radius: var(--radius-m);
  width: 80%;
  object-fit: cover;
}

.menu-item-text {
  display: flex;
  flex-direction: column;
  justify-content: cemter;
  align-items: start;
  gap: 0px;
}

.menu-item-text h1 {
  margin: 0;
  font-family: var(--Lora);
  font-size: var(--fontsize-s);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.4;
}

.menu-item-text h2 {
  margin: 0;
  background-color: var(--dark);
  border-radius: var(--radius-m) var(--radius-m) var(--radius-m) 0;
  font-family: var(--Poppins);
  font-size: var(--fontsize-xs);
  font-weight: 500;
  color: var(--light);
  line-height: 1.4;
  height: 1.5em;
  padding: .1875em .75em;
}



/* ======== Footer ========= */

.footer {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-wrapper {
  position: relative;
  width: calc(100% - var(--padding-s));
  height: calc(100% - var(--padding-s));
  background-color: var(--primary);
  border-radius: var(--radius);
  overflow: hidden;
}

.footer-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: .1;
}

.footer-logo {
  cursor: var(--click);
  width: 10em;
  position: absolute;
  left: 1em;
  bottom: 1em;
  filter: invert(1) brightness(100);
}

.credit {
  position: absolute;
  right: 1.25em;
  bottom: 1.25em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: end;
  gap: 5px;
}

.credit h1 {
  margin: 0;
  font-family: var(--Poppins);
  font-weight: 600;
  font-size: var(--fontsize-xs);
  color: var(--light);
}

.credit h2 {
  margin: 0;
  background-color: var(--secondary);
  border-radius: var(--radius-m) var(--radius-m) var(--radius-m) 0;
  font-family: var(--Poppins);
  font-size: var(--fontsize-xs);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.4;
  height: 1.5em;
  padding: .1875em .75em;
}

.footer-items {
  margin-top: 100px;
  width: 90%;
  margin: 100px auto 0;

  display: flex;
  justify-content: flex-start;
  gap: 50px;
}

.footer-item {
  display: flex;
  flex-direction: column;
  width: 30%;
}

.footer-item h2 {
  margin: 0 0 30px;
  background-color: var(--light);
  border-radius: var(--radius-m) var(--radius-m) var(--radius-m) 0;
  font-family: var(--Poppins);
  font-size: var(--fontsize-s);
  font-weight: 400;
  color: var(--dark);
  line-height: 1.4;
  height: 1.5em;
  padding: .19em .75em;
  width: fit-content;
}

.footer-item h1 {
  margin: 0;
  line-height: 1.2;
  font-family: var(--Epilogue);
  font-weight: 900;
  font-size: var(--fontsize-m);
  color: white;
  letter-spacing: -0.01em;
}

.footer-item:nth-child(1) div {
  margin-top: 30px;
  position: relative;
}

.resource-btn {
  color: var(--light);
  cursor: var(--click);
  position: relative;
}

.resource-btn {
  font-family: var(--Epilogue);
  font-size: var(--fontsize-s);
  font-weight: 700;
  line-height: 1.4;
}

.resource-btn svg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -.7em;
}

.resource-btn svg path {
  stroke-dasharray: 200px;
  stroke-dashoffset: 400px;
  transition: stroke-dashoffset 0.5s ease-in-out;
  animation: stroke-scroll linear forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

.resource-btn:hover svg path {
  animation: stroke .6s ease-in-out forwards;
}

/* .resource-btn svg path:nth-child(2) {
  animation-delay: 0.2s;
} */

/* .footer-item:nth-child(2) div {
  margin-top: 30px;
  position: relative;
} */

.map-btn {
  color: var(--light);
  cursor: var(--click);
  position: relative;
}

.map-btn {
  font-family: var(--Epilogue);
  font-size: var(--fontsize-s);
  font-weight: 700;
  line-height: 1.4;
}

.map-btn svg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -.7em;
}

.map-btn svg path {
  stroke-dasharray: 200px;
  stroke-dashoffset: 400px;
  transition: stroke-dashoffset 0.5s ease-in-out;
  animation: stroke-scroll linear forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes stroke-scroll {
  0% {
    stroke-dashoffset: 200px;
  }

  100% {
    stroke-dashoffset: 400px;
  }
}

.map-btn:hover svg path {
  animation: stroke .6s ease-in-out forwards;
}

/* .map-btn svg path:nth-child(2) {
  animation-delay: 0.2s;
} */

@keyframes stroke {
  0% {
    stroke-dashoffset: 0px;
  }

  50% {
    stroke-dashoffset: -200px;
  }

  100% {
    stroke-dashoffset: -400px;
  }
}

.footer-item:nth-child(2) div {
  margin-top: 30px;
  position: relative;
  display: flex;
  gap: 15px;
}

.footer-social {
  width: var(--icon-m);
  filter: brightness(100) invert(1);
}

/* ================= Hero ================= */

.hero {
  width: 100vw;
  height: calc(100vh - var(--navHeight));
  position: relative;
}

.heroBackground {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: calc(100% - var(--padding-s));
  height: calc(100% - var(--padding-s));
  border-radius: var(--radius);
}

.heroBackground h1 {
  text-align: center;
  margin: 0;
  position: absolute;
  left: 50%;
  bottom: .5em;
  transform: translateX(-50%);
  font-family: var(--Epilogue);
  font-size: var(--title);
  font-weight: 700;
  color: #fff;
  line-height: 0.9em;
  z-index: 2;
}

.heroBackground h1 .dialogue {
  font-family: var(--Lora);
  font-weight: 500;
}

.heroBackground h1 .impact {
  position: relative;
}

.heroBackground h1 .impact .heroLine {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 105%;
}

.heroBackground .overlayHero {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.75));
}

.heroBackground img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ================= Theme ================= */

.theme {
  position: relative;
  width: 100vw;
  height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.theme h1 {
  position: relative;
  margin: 0;
  font-family: var(--Epilogue);
  font-size: var(--title);
  color: var(--primary);
  line-height: 0.78em;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.theme h2 {
  margin-top: 0.4em;
  font-family: var(--Lora);
  font-size: var(--subtitle);
  font-weight: 500;
  color: #333;
  letter-spacing: -0.05em;
}

.theme .themeLine {
  margin-top: 10px;
  width: 50%;
}

.themeLine path {
  stroke-dasharray: 750px;
  stroke-dashoffset: 750px;
  transition: stroke-dashoffset 0.5s ease-in-out;
  animation: themeLine-scroll var(--animation-default) forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 50%;
}

@keyframes themeLine-scroll {
  0% {
    stroke-dashoffset: 750px;
  }

  100% {
    stroke-dashoffset: 0px;
  }
}

.theme .flower {
  position: absolute;
  width: 15%;
  top: 23%;
  right: 2%;
  rotate: -25deg;
}

/* ================= Timer ================= */

.timer-wrapper {
  position: relative;
  background-color: var(--dark);
  width: 100vw;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px
}

.timer-background {
  pointer-events: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.15;
  position: absolute;
  top: 0;
  left: 0;
}

.timer {
  width: 80vw;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}

.timer div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}

.timer h1 {
  position: relative;
  margin: 0;
  font-family: var(--Epilogue);
  font-size: var(--title);
  color: var(--light);
  line-height: 0.78em;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.timer h2 {
  margin-top: 0.4em;
  font-family: var(--Lora);
  font-size: var(--subtitle);
  font-weight: 500;
  color: var(--light);
  letter-spacing: -0.05em;
}

.timer-btn {
  color: var(--light);
  cursor: var(--click);
  position: relative;
}

.timer-btn {
  font-family: var(--Epilogue);
  font-size: var(--fontsize-m);
  font-weight: 700;
  line-height: 1.4;
}

.timer-btn svg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -.5em;
}

.timer-btn svg path {
  stroke-dasharray: 200px;
  stroke-dashoffset: 400px;
  transition: stroke-dashoffset 0.5s ease-in-out;
  animation: stroke-scroll linear forwards;
  animation-timeline: view();
  animation-range: entry 0% cover 30%;
}

@keyframes stroke-scroll {
  0% {
    stroke-dashoffset: 200px;
  }

  100% {
    stroke-dashoffset: 400px;
  }
}

.timer-btn:hover svg path {
  animation: stroke .6s ease-in-out forwards;
}

.timer-btn svg path:nth-child(2) {
  animation-delay: 0.2s;
}

@keyframes stroke {
  0% {
    stroke-dashoffset: 0px;
  }

  50% {
    stroke-dashoffset: -200px;
  }

  100% {
    stroke-dashoffset: -400px;
  }
}

/* ================= Benefits ================= */

.benefits-wrapper {
  background-color: var(--background);
  width: 100vw;
  padding: 100px 0 150px;
  display: flex;
  gap: 50px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.benefits-title {
  text-align: center;
  font-family: var(--Epilogue);
  font-size: var(--header);
  font-weight: 800;
  color: var(--dark);
  line-height: 0.78em;
  letter-spacing: -0.05em;
}

.benefits-title span {
  font-family: var(--Lora);
  font-weight: 400;
}

.benefits {
  margin-left: 5%;
  width: 110%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.benefit-card {
  position: relative;
  aspect-ratio: 3/4;
  width: var(--card);
  border-radius: var(--radius-m);
  transition: all var(--animation-bounce-fast);

  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: stretch
}

.benefit-card img {
  width: 40%;
  position: absolute;
  right: 5%;
  top: -10%;
}

.benefit-card:nth-child(3) img {
  top: -15%;
}

.benefit-card:nth-child(4) img {
  width: 35%;
}

.benefits-card-title {
  margin: 65px 30px 0;
  text-align: left;
  font-family: var(--Epilogue);
  font-size: var(--fontsize-m);
  font-weight: 800;
  line-height: 0.78em;
  letter-spacing: -0.03em;
}

.benefits-card-line {
  width: 85%;
  margin: 20px auto 20px;
}

.benefits-card-description {
  margin: 0 30px;
  text-align: left;
  font-family: var(--Epilogue);
  font-size: var(--fontsize-s);
  font-weight: normal;
  line-height: 1.1;
}

.benefit-card:nth-child(1) {
  background-color: #f5693c;
  color: var(--dark);
  transform: rotate(5deg);
}

.benefit-card:nth-child(2) {
  background-color: #82a0ff;
  color: var(--dark);
  transform: translate(-10%, 15%) rotate(-7deg);
}

.benefit-card:nth-child(3) {
  background-color: #2d7864;
  color: var(--light);
  transform: translate(-20%, -2%) rotate(6deg);
}

.benefit-card:nth-child(4) {
  background-color: #a0325a;
  color: var(--light);
  transform: translateX(-30%) rotate(-5deg);
}

.benefit-card:hover {
  transform: translate(0, 0) rotate(0deg);
  scale: 1.1;
  margin-right: 10%;
  margin-left: 5%;
  transition: all var(--animation-bounce-fast);
}

/* ================= Past Events ================= */

.past-events {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.past-events-wrapper {
  margin: 0 auto;
  width: 90%;
  display: grid;
  grid-template-columns: 60% 30%;
  gap: 50px;
}

.past-events-item {
  display: flex;
  flex-direction: row;
  gap: 30px;
  /* Hide default scrollbar */
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
}

.past-events-item img {
  aspect-ratio: 16/9;
  min-width: 100%;
  width: 100%;
  object-fit: cover;
  scroll-snap-align: start;
}

.past-desc-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.past-desc {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.past-desc h1 {
  margin: 0;
  line-height: 1.2;
  font-family: var(--Epilogue);
  font-weight: 900;
  font-size: var(--fontsize-l);
  color: var(--primary);
  letter-spacing: -0.01em;
}

.past-desc p {
  margin: 0;
  font-family: var(--Epilogue);
  font-size: var(--fontsize-s);
  color: var(--dark);
  letter-spacing: -0.01em;
}

.past-btns {
  display: flex;
  flex-direction: row;
  gap: 15px;
}

.past-btn {
  background-color: var(--primary);
  width: var(--icon-m);
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light);
  user-select: none;
}

.past-btn span {
  font-size: var(--fontsize-xs);
  font-weight: 600;
}

.past-btn:nth-child(1) span {
  transform: translateX(20%);
}

.past-btn:nth-child(2) span {
  transform: translateX(5%);
}

.past-btn.end {
  background-color: #9ca3af;
  cursor: default;
  pointer-events: none;
  transform: none;
  opacity: 0.7;
}


/* ############### Sub Page ################## */

.header {
  margin-top: -80px;
  padding-top: 60px;
  position: relative;
  width: 100vw;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 10px;
  background-color: var(--dark);
}

.header-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  opacity: 0.15;
}

.header h1 {
  position: relative;
  margin: 0;
  font-family: var(--Epilogue);
  font-size: var(--header);
  font-weight: 900;
  color: var(--light);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.header p {
  font-family: var(--Lora);
  font-size: var(--fontsize-l);
  font-weight: 500;
  color: var(--light);
  letter-spacing: -0.05em;
}

.header .speaker {
  position: absolute;
  width: 15%;
  top: -50%;
  right: -8%;
  translate: (-50%, -50%);
  rotate: 25deg;
}


/* ############### Topic Page ################## */

#topic {
  padding-top: 0 !important;
}

.topics-wrapper {
  width: 100vw;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.topics {
  width: 80%;
  display: flex;
  flex-direction: column;
}

.collapsible {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  cursor: var(--click);
  padding: 15px 30px;
  width: 100%;
  text-align: left;
  outline: none;
  background-color: var(--background);

  border-style: solid solid none solid;
  border-width: .2em;
  border-color: var(--primary);
}

.collapsible div {
  width: 95%;
  display: flex;
  align-items: center;
  gap: 10px
}

.collapsible h1 {
  font-family: var(--Epilogue);
  font-weight: 700;
  font-size: var(--fontsize-m);
  color: var(--dark);
}

.collapsible img {
  height: var(--navIcon);
  width: auto;
  object-fit: cover;
}

/* .active, .collapsible:hover {
  background-color: #555;
} */

.collapsible:after {
  content: '\203A';
  transform: rotate(90deg);
  color: var(--dark);
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 2em;
}

.active:after {
  content: '\2039';
  transform: rotate(90deg);
}

.collapsible-content {
  border-style: none solid solid solid;
  border-color: var(--primary);
  padding: 0px 30px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.collapsible .active .collapsible-content {
  max-height: 100vh !important;
}

.content {
  padding: 5px 20px 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  gap: 30px;
}

.content p span {
  line-height: 1.1;
  font-weight: 700;
  font-size: var(--fontsize-m);
}

.content p {
  font-family: var(--Poppins);
  font-weight: 500;
  font-size: var(--fontsize-s);
  color: var(--dark);
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  display: flex;
  flex-direction: column;
}

.content img {
  width: 45%;
  height: auto;
  object-fit: cover;
}









/* ============ Speakers =============== */

.speakers-wrapper {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.selected-speaker {
  padding-top: 50px;
  position: relative;
  margin: auto;
  width: 90%;
  height: 85%;
  display: grid;
  grid-template-columns: auto 1fr;
  overflow: hidden;
  gap: 5%;
}

.hero-speaker {
  aspect-ratio: 1/1;
  height: 100%;
  background-color: white;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: end;
}

.hero-speaker img {
  height: 95%;
  object-fit: cover;
}

.details-speaker {
  padding-top: 5%;
  display: flex;
  text-align: left;
  flex-direction: column;
  align-items: start;
  gap: 15px;
}

.details-speaker h1 {
  position: relative;
  font-family: var(--Epilogue);
  font-size: 2em;
  font-weight: 800;
  color: var(--dark);
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.details-speaker h1 svg {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -.75em;
}

.details-speaker p {
  font-size: 1.25em;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

.carousel-speaker {
  cursor: var(--click);
  width: calc((3 * 35vh) + 40px);
  /* show 3 cards */
  position: absolute;
  bottom: 2.5%;
  right: 5%;
  display: flex;
  flex-direction: row;
  gap: 20px;
  overflow-x: auto;
  /* horizontal scroll */
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  /* magnetic snapping */
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* hide scrollbar */
  overscroll-behavior: contain;
}

.carousel-speaker::-webkit-scrollbar {
  display: none;
  /* hide scrollbar in Chrome */
}

.topic {
  display: flex;
  flex-direction: row;
  gap: 20px;
  flex-shrink: 0;
}

.topic div {
  height: 35vh;
  aspect-ratio: 1/1;
  background-color: white;
  scroll-snap-align: start;
  /* snap each card */
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: end;
}

.topic div img {
  height: 95%;
  object-fit: cover;
}

.overlay-speaker {
  display: none;
}

.data-speaker {
  display: none;
}

.topic .active {
  background-color: var(--primary);
  justify-content: flex-start;
}


.topic .active img {
  display: none;
}

.topic .active .overlay-speaker {
  text-align: left;
  display: block;
  font-size: 2em;
  font-weight: 700;
  color: var(--light);
  line-height: 0.95;
  letter-spacing: -0.03em;
  padding-bottom: 10px;
}



/* ############### Tentative Page ################## */


.tentatives {
  z-index: -1;
  position: relative;
  max-width: 70%;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 100px;
  display: flex;
  gap: 100px;
}

.tentatives-nav {
  z-index: 99;
  margin-top: 30px;
  position: sticky;
  top: 0;
  height: 100%;
  transition: top 0.3s ease-out;
}

.tentatives-nav ul {
  list-style: none;
  list-style-position: inside;
  margin: 15px 0;
}

.tentatives-nav ul li {
  margin: 15px 0;
  padding-left: 0;
  list-style-type: none;
  color: #bfc1c3;
  cursor: pointer;
  transition: all 0.3s ease-out;

  font-family: var(--Epilogue);
  font-size: 1.25em;
}

.tentatives-nav ul li.active {
  font-weight: 700;
  color: var(--primary);
}

.tentatives-nav ul li.active:after {
  content: '\203A';
  color: var(--dark);
  margin-left: 5px;
  font-size: 1em;
}

.tentatives-nav ul li:hover {
  color: var(--dark);
}

.tentatives-wrapper {
  margin: 0 auto;
  width: 100%;
  padding-bottom: 250px;
}

.tentatives-wrapper h2 {
  font-family: var(--Lora);
  font-weight: 700;
  font-size: 2em;
  color: var(--primary);
}

.tentatives-wrapper p {
  font-family: var(--Epilogue);
  font-weight: 500;
  font-size: 1em;
  color: var(--dark);
  line-height: 1.5;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
  margin-top: -10px;
}