@property --border-angle {
  syntax: "<angle>";
  initial-value: 0turn;
  inherits: false;
}
.carousel {
  position: relative;
  overflow: hidden;
  margin: auto;
  width: 100%;
  height: 100%;
}

.carousel-container {
  width: 95vw;
  height: 90vh;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.carousel-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  overflow-x: scroll;
  /* Allow horizontal scrolling */
  scrollbar-width: none;
  /* Hide scrollbar for Chrome, Safari, and Opera */
}
.carousel-viewport::-webkit-scrollbar {
  display: none;
}
.carousel-viewport {
  /* Hide scrollbar for IE, Edge, and Firefox */
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
  overflow-y: hidden;
  /* Prevent vertical scrolling */
  scroll-snap-type: x mandatory;
  /* Add scroll snapping here */
  scroll-behavior: smooth;
  scroll-snap-stop: always;
  --r: 40px;
  --s: 50px;
  --x: 130px;
  --y: 60px;
  border-radius: var(--r);
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 72%, #0000 72%);
  --_g: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
  --_d: (var(--s) + var(--r));
  mask: calc(var(--_d) + var(--x)) 0 var(--_m), 0 calc(var(--_d) + var(--y)) var(--_m), radial-gradient(var(--s) at 0 0, rgba(0, 0, 0, 0) 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)), var(--_g) calc(var(--_d) + var(--x)) 0, var(--_g) 0 calc(var(--_d) + var(--y));
  mask-repeat: no-repeat;
  --border-angle: 0turn;
  --main-bg: conic-gradient(from var(--border-angle), #213, #112 5%, #112 60%, #213 95%);
  border: solid 2px transparent;
  border-radius: 2em;
  --gradient-border: conic-gradient(from var(--border-angle), transparent 25%, rgb(178, 0, 178), rgb(0, 238, 0) 99%, transparent);
  background: var(--main-bg) padding-box, var(--gradient-border) border-box, var(--main-bg) border-box;
  background-position: center center;
  -webkit-animation: bg-spin 3s linear infinite;
  animation: bg-spin 3s linear infinite;
}
@-webkit-keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
@keyframes bg-spin {
  to {
    --border-angle: 1turn;
  }
}
.carousel-viewport {
  /* Fallback for browsers that don't support @property */
}
@supports not (background: paint(something)) {
  .carousel-viewport {
    animation: none;
    background: var(--main-bg);
    border: 5px solid lime;
  }
}

.carousel-track {
  width: 100%;
  height: 100%;
  display: flex;
}

.carousel-slide {
  min-width: 100%;
  box-sizing: border-box;
  position: relative;
  list-style: none;
  scroll-snap-align: start; /* Now the slides snap to the start of the viewport */
}

.carousel-slide picture img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-drag: none;
  -moz-user-select: none;
  user-select: none;
}

.carousel-caption {
  width: auto;
  position: absolute;
  top: 220px;
  left: 0;
  color: lime;
  padding: 20px 30px 15px 30px;
  line-height: 1.5rem;
  border-radius: 0 15px 15px 0;
  background-color: rgba(0, 0, 0, 0.3333333333);
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  -moz-backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* For Safari */
  backdrop-filter: blur(8px);
}

.carousel-caption h3 {
  margin: 0 130px 5px 0;
  font-size: 1.5rem;
}

.carousel-content {
  width: 35%;
  height: auto;
  position: absolute;
  bottom: 0px;
  right: 0;
  color: #fff;
  padding: 20px 30px 15px 30px;
  line-height: 1.5rem;
  border-radius: 25px 0 25px 0;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.3333333333);
  -moz-backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  /* For Safari */
  backdrop-filter: blur(8px);
}

.carousel-content .sub-title {
  font-size: 1.1em;
  line-height: 1.5em;
  color: lime;
  font-weight: 700;
  margin: 15px 0 15px 0;
}

.carousel-content .content {
  margin-left: 25px;
  text-align: justify;
  font-size: 0.9rem;
  line-height: 1.5rem;
  margin-bottom: 20px;
}

.carousel-controls {
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%); /* Corrected from translateX(0, -50%) */
  display: flex;
  justify-content: space-between;
  z-index: 1000;
}

.carousel-button {
  background-color: rgba(0, 0, 0, 0.3);
  border: none;
  border-radius: 8px;
  color: aqua;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 16px;
}

.carousel-button:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.carousel-button:focus {
  outline: 2px solid aqua;
}

.carousel-button:disabled {
  background-color: rgba(0, 0, 0, 0.2);
  cursor: default;
}

.carousel-button-next {
  right: 10px;
}

.carousel-indicators {
  position: absolute;
  width: 100%;
  bottom: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-indicator.active {
  background-color: aqua;
}

@media (max-width: 931px) {
  .carousel-caption h3 {
    font-size: 18px;
  }
  .carousel-slide picture img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: 30% 60%;
  }
  .carousel-content {
    width: 100%;
    line-height: 1.3rem;
    border-radius: 45px 45px 0 0;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: closecontent 400ms ease-in-out forwards;
  }
  .carousel-content::after {
    content: "";
    width: 20%;
    height: 2px;
    background-color: aqua;
    position: fixed;
    display: block;
    top: -1px;
    margin-left: 30%;
  }
  .carousel-content:active,
  .carousel-content:hover {
    animation: opencontent 400ms ease-in-out forwards;
  }
  .carousel-content .sub-title {
    margin: 2px 0 50px 0;
    text-align: center;
  }
  @keyframes opencontent {
    0% {
      height: 105px;
    }
    100% {
      height: auto;
    }
  }
  @keyframes closecontent {
    0% {
      height: auto;
    }
    100% {
      height: 105px;
    }
  }
}
details::before {
  color: #afafaf;
  position: absolute;
  top: -16px;
  margin-left: 25px;
  padding: 10px 10px;
  opacity: 0.6;
}

details[open]::before {
  animation: fadeMe 300ms linear forwards;
}

details {
  position: fixed;
  margin: 30px;
  z-index: 1000;
}

summary {
  position: relative;
  /* Anchor for absolute children */
  writing-mode: vertical-lr;
  text-align: center;
  padding: 12px 10px;
  width: 28px;
  height: 25px;
  border: 1px solid aqua;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.4666666667);
  color: aqua;
  cursor: pointer;
  user-select: none;
  outline: none;
  transition: transform 200ms ease-in-out 0s;
  /* Prevents the default text (if any) from wrapping strangely */
  white-space: nowrap;
}

summary::before,
summary::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Centering magic */
}

summary::before {
  content: "";
}

summary::after {
  content: "III";
  letter-spacing: 1px;
}

summary:hover {
  transform: scale(1.1);
}

summary::marker {
  content: " ";
  /* Setting content to space */
  font-size: 0;
  display: none;
  /* Adding display: none for maximum compatibility */
}

summary::-webkit-details-marker {
  display: none;
}

details[open] .menu {
  animation: menuAnim 300ms ease-out forwards;
}

details[open] summary::before {
  content: "X";
}

details[open] summary::after {
  content: "";
}

.menu {
  height: 0;
  width: 300px;
  border-radius: 15px;
  background-color: rgba(0, 0, 0, 0.5647058824);
  box-shadow: 0 1px 7px 0 aqua;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  animation: closeMenu 300ms ease-in-out forwards;
}

.menu a {
  padding: 12px 24px;
  margin: 0 16px;
  color: #fff;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  text-decoration: none;
  text-align: center;
  transition: filter 200ms linear 0s;
}

.menu a:nth-of-type(1) {
  padding-top: 24px;
}

.menu a:nth-last-of-type(1) {
  border-bottom: none;
}

.menu a:hover {
  filter: brightness(200%);
  background-color: aqua;
  color: #000;
  font-weight: 900;
}

@keyframes menuAnim {
  0% {
    height: 0;
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    height: 330px;
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeMe {
  0% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}
.section {
  width: 100%;
  height: 100vh;
  background-color: transparent;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  scroll-snap-align: start;
  scroll-behavior: smooth;
  scroll-snap-stop: always;
}

.Section-caption {
  display: inline-block;
  width: 225px;
  height: 15vh;
  position: absolute;
  top: 7vh;
  left: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.Section-caption  h2 {
  font-weight: 400;
  padding: 3px;
  margin-top: 5px;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: aqua;
}

.land-intro {
  width: 100%;
  min-height: 100vh;
  height: auto;
}

.land-intro video {
  width: 95vw;
  height: 90vh;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-drag: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  --r: 40px;
  /* the radius */
  --s: 50px;
  /* size of inner curve */
  --x: 130px;
  /* horizontal offset (no percentage) */
  --y: 60px;
  /* vertical offset (no percentage) */
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: var(--r);
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 72%, #0000 72%);
  --_g: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
  --_d: (var(--s) + var(--r));
  mask: calc(var(--_d) + var(--x)) 0 var(--_m), 0 calc(var(--_d) + var(--y)) var(--_m), radial-gradient(var(--s) at 0 0, rgba(0, 0, 0, 0) 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)), var(--_g) calc(var(--_d) + var(--x)) 0, var(--_g) 0 calc(var(--_d) + var(--y));
  mask-repeat: no-repeat;
}

.intro video::-webkit-media-controls {
  display: none !important;
}

.intro video::-moz-media-controls {
  display: none !important;
}

.intro video:focus {
  outline: none;
}

.intro video:hover {
  cursor: pointer;
}

.intro > .Section-caption {
  display: inline-block;
  width: 200px;
  height: 100px;
  position: absolute;
  top: 85px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#main-logo {
  width: 100%;
  height: auto;
}

/* Mobile resize home video */
.port-intro {
  width: 100%;
  height: 35vh;
  min-height: 30vh;
}

.port-intro video {
  width: 95vw;
  height: 30vh;
  display: block;
  object-fit: cover;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -moz-user-drag: none;
  -moz-user-select: none;
  user-select: none;
  border-radius: 25px;
  position: absolute;
  top: 170px;
  left: 50%;
  transform: translate(-50%, -50%);
  --r: 30px;
  /* the radius */
  --s: 50px;
  /* size of inner curve 130 */
  --x: 40px;
  /* horizontal offset (no percentage) 60 */
  --y: 20px;
  /* vertical offset (no percentage) */
  aspect-ratio: 16/9;
  background: #000000;
  border-radius: var(--r);
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 72%, #0000 72%);
  --_g: conic-gradient(at var(--r) var(--r), #000 75%, #0000 0);
  --_d: (var(--s) + var(--r));
  mask: calc(var(--_d) + var(--x)) 0 var(--_m), 0 calc(var(--_d) + var(--y)) var(--_m), radial-gradient(var(--s) at 0 0, rgba(0, 0, 0, 0) 99%, #000 calc(100% + 1px)) calc(var(--r) + var(--x)) calc(var(--r) + var(--y)), var(--_g) calc(var(--_d) + var(--x)) 0, var(--_g) 0 calc(var(--_d) + var(--y));
  mask-repeat: no-repeat;
}

@media (max-width: 931px) {
  .intro>.Section-caption {
    width: 80px;
    height: 40px;
    position: absolute;
    top: 70px;
    left: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 695px) {
  .intro > .Section-caption {
    width: 100px;
    height: 50px;
    position: absolute;
    top: 70px;
    left: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.footer {
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.footer-content {
  max-width: 800px;
  margin: 0 auto;
}

.footer > h3 {
  margin-bottom: 10px;
  font-size: 1.5rem;
  color: aqua;
}

phone, address, email, br {
  margin: 5px 0;
  font-size: 1rem;
  line-height: 1.5rem;
}

email > a:hover {
  color: aqua;
}

phone > a:hover {
  color: aqua;
}

.footer a {
  color: #ffffff;
  text-decoration: none;
}

.carousel-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 20px;
}

#clinic #slide-1 {
  background-image: url(../img/slide-1/01-d.png);
  background-position-x: 0%;
}

#clinic #slide-2 {
  background-image: url(../img/slide-1/02-d.png);
  background-position-x: 15%;
}

#clinic #slide-3 {
  background-image: url(../img/slide-1/03-d.png);
  background-position-x: 15%;
}

#clinic #slide-4 {
  background-image: url(../img/slide-1/04-d.png);
  background-position-x: 60%;
}

#clinic #slide-5 {
  background-image: url(../img/slide-1/05-d.png);
  background-position-x: 40%;
}

#clinic #slide-6 {
  background-image: url(../img/slide-1/06-d.png);
  background-position-x: 35%;
}

#clinic #slide-7 {
  background-image: url(../img/slide-1/07-d.png);
  background-position-x: 60%;
}

#clinic #slide-8 {
  background-image: url(../img/slide-1/08-d.png);
  background-position-x: 5%;
}

#lab #slide-1 {
  background-image: url(../img/slide-2/01-d.jpg);
}

#lab #slide-2 {
  background-image: url(../img/slide-2/02-d.jpg);
}

#lab #slide-3 {
  background-image: url(../img/slide-2/03-d.jpg);
}

#lab #slide-4 {
  background-image: url(../img/slide-2/04-d.png);
}

#imaging-test #slide-1 {
  background-image: url(../img/slide-3/01-d.png);
  background-position-x: 65%;
}

#imaging-test #slide-2 {
  background-image: url(../img/slide-3/02-d.png);
  background-position-x: 70%;
}

#imaging-test #slide-3 {
  background-image: url(../img/slide-3/03-d.png);
}

#imaging-test #slide-4 {
  background-image: url(../img/slide-3/04-d.png);
}

#imaging-test #slide-5 {
  background-image: url(../img/slide-3/05-d.png);
}

#cell #slide-1 {
  background-image: url(../img/slide-4/01-d.png);
}

#biobank #slide-1 {
  background-image: url(../img/slide-6/01-d.png);
}

#biobank #slide-2 {
  background-image: url(../img/slide-6/02-d.png);
}

#ai #slide-1 {
  background-image: url(../img/slide-7/04-d.jpg);
  background-position-x: 30%;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #000;
}

.main-content {
  width: 100vw;
  height: auto;
}

/* Visually hidden but accessible to screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Additional styles can be added here */

/*# sourceMappingURL=style.css.map */
