@font-face {
    font-family: "Inter";
    src: url("/assets/Inter-VariableFont_slnt\,wght.ttf") format("truetype")
  }


/* ---------- FOUNDATION ---------- */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    background-color: #FFFFFF;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #000000;
    overflow-x: hidden;
    overflow-y: scroll;
    margin-left:auto;
    margin-right:auto;
    width: 100vw;
    left: 0;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

  #popup-container {
    position: fixed;
    top: 100px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 90vw;
    background-color: #3257ea2d;
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(20px);
    border-radius: 26px;
    padding-left: 30px;
    padding-right: 20px;
    z-index: 996;
    opacity: 0;
    transform: translate(-0%, -200%);
    transition: opacity 0.2s;
    transition: transform 0.4s;
  }
  #popup-container.active {
    opacity: 1;
    transform: translate(-0%, -32%);
  }


  .clickable {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00398E2b;
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding-left: 15px;
    padding-right: 15px;
    height: 40px;
    transition: 0.2s;
    pointer-events: all;
    font-size: 16px;
    color: #000000;
  }
  .clickable:hover{
    cursor: pointer;
    background-color: #00398E47;
  }

  .tag {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 20px;
    border-width: 1px;
    border-style: solid;
    font-size: 12px;
    margin: 5px;
  }

  .hint {
    position: absolute; 
    pointer-events: none;
    margin-top: 440px;
    margin-left: 720px;
  }

  mark {
    -webkit-animation: 1.5s highlight 1.5s 1 normal forwards;
            animation: 1.5s highlight 1.5s 1 normal forwards;
    background-color: none;
    background: linear-gradient(90deg, #0372BD 50%, #ffffff00 50%);
    background-size: 200% 100%;
    background-position: 100% 0;
    color: #000000;
  }
  
  @-webkit-keyframes highlight {
    to {
      background-position: 0 0;
    }
  }
  
  @keyframes highlight {
    to {
      background-position: 0 0;
    }
  }
  


  
  /* ---------- HEADER ---------- */

  .header {
    position: fixed;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    border-radius: 19px;
    width: 85%;
    max-width: 1350px; 
    height: 55px;
    top: 10px;
    padding-right: 0px;
    padding-left: 35px;
    z-index: 995;
    background-color: #ffffffbd;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(22px);
  }
  
  
  .headerLogo {
    width: 130px;
    margin-top: 10px;
  }
  .headerLogo:hover {
    cursor: pointer;
  }


  .header-ui {
    width: 100%; 
    display: flex; 
    flex-direction: row; 
    align-items: center;

    justify-content: space-between; 
  }


  .desktopMenuItem {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #00000000;
    border-radius: 20px;
    padding-left: 25px;
    padding-right: 25px;
    height: 40px;
    color: #000000;
    transition: 0.3s;
  }
  .desktopMenuItem:hover {
    cursor: pointer;
    background-color: #00000016;
  }


  .desktopMenuButton {
    font-size: 18px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #0372BD;
    border-radius: 20px;
    padding-left: 25px;
    padding-right: 25px;
    height: 40px;
    color: #FFFFFF;
    transition: 0.3s;
  }
  .desktopMenuButton:hover {
    cursor: pointer;
    background-color: #0372BD;
  }



  .mobileMenuContent {
    position: fixed;
    display: flex;
    flex-direction: column;
    top: 0;
    background-color: #d0d0d0;
    width: 100vw;
    height: 75px;
    opacity: 0;
    transition: 0.3s;
    z-index: 994;
  }
  .mobileMenuContent.active {
    opacity: 1;
    height: 100vh;
    transition: 0.3s;
    background-color: #d0d0d0;
  }
  
  .mobileMenuWrapper {
    display: none;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 100px;
    padding-top: 100px;
    overscroll-behavior: none;  
  }
  .mobileMenuWrapper.active {
    display: flex;  
  }

  .mobileMenuItem {
    display: flex;
    flex-direction: row;
    align-items: center;
    opacity: 0;
    font-size: 46px;
    color: #000000;
    line-height: 150%;
    transform: translate(0, 30px);
    transition: opacity 0.3s, transform 0.4s, 0.3s;
  }
  .mobileMenuItem.active {
    opacity: 1;
    transform: translate(0, 0);
  }
  
  .footer {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100%;
    height: 150px;
    /* background: linear-gradient(#48abf7, #219fff ); */
    background-color: #c0c0c082;
    padding-top: 10px;
  }
  .footer a {
    display: flex;
    color: #000000;
    margin: 5px;
  }



/* ---------- MOBILE MENU BUTTON ---------- */
  .menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
}

.menu {
    --front: #0000001e;
    --back: #0372BD85;
    --icon: white;
    perspective: 600px;
    width: 48px;
    height: 48px;
    position: relative;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}


.menu input {
    display: none;
}

.menu input + div {
    position: relative;
    height: 100%;
}

.menu input + div span {
    --rotateY: 0deg;
    --background: var(--front);
    transform: rotateY(var(--rotateY));
    transform-style: preserve-3d;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    background: var(--background);
    backface-visibility: hidden;
    transition: transform .6s cubic-bezier(.2, .64, .48, 1.24);
}

.menu input + div span:before,
.menu input + div span:after {
    --rotate: 0deg;
    content: '';
    position: absolute;
    width: 16px;
    height: 2px;
    border-radius: 1px;
    top: 50%;
    left: 50%;
    background: var(--icon);
    backface-visibility: hidden;
    transform: translate(-50%, -50%) rotate(var(--rotate)) translateZ(6px);
}

.menu input + div span:first-child {
    --background: var(--back);
}

.menu input + div span:first-child:before {
    --rotate: -90deg;
}
.menu input + div span:last-child:before {
  --rotate: 0deg;
}

.menu input + div span:last-child {
    --rotateY: 180deg;
}

.menu input:checked + div span {
  &:first-child {
      --rotateY: -180deg;
  }
  &:last-child {
      --rotateY: 0deg;
  }
}


/* ---------- IMAGE CAROUSEL ---------- */

.carousel-board {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background-color: #FFFFFF;
}

.card {
  width: 800px;
  height: 500px;
  position: absolute;
  background-position: center;
  background-size: cover;
  top: 50%;
  left: 50%;
  border-radius: 12px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.1);
  background-color: #000000;
  transform: translateX(-50%) translateY(-50%) scale(0.95);
  z-index: 993;
}
.card:hover {
  cursor: pointer;
}

.carousel-caption {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 600px;
  width: 800px;
  height: 80px; 
  border-radius: 12px;
  background-color: #ffffff13;
  z-index: 992;
}





  
/* ----------------- REVEAL ----------------- */
.reveal{
  position: relative;
  transform: scale(0.8) rotateY(-30deg);
  opacity: 0;
  transition: 0.3s all ease-in-out;
}

.reveal.active{
  transform: scale(1) rotateX(0deg);
  opacity: 1;
}


/* ---------- FAQ / COLLAPSIBLES ---------- */
.faq-container {
  border-width: 1.5px;
  border-radius: 30px;
  border-color: #00000000;
  /* background: radial-gradient(circle at top, #c5e6ff, #cde9ff, #d4edff, #dcf0ff, #e3f3ff, #e6f4ff, #eaf6ff, #edf7ff, #edf7ff, #edf7ff, #edf7ff, #edf7ff);   */
  background-color: #00000000;  
  border-style: solid;
  width: 800px;
  margin-bottom: 50px;
  padding: 20px;
  margin-top: 90px;
  font-family: 'Inter', sans-serif;
}

.faq {
  border-width: 1.5px;
  border-radius: 20px;
  border-color: #00000000;
  background-color: #ffffff12;
  border-style: solid;
  width: 795px;
  margin-bottom: 20px;
  box-shadow: 0px 0px 40px #00000015;
  transition: 0.3s;
}
.faq:hover {
  background-color: #ffffff0c;
}


/* Style the button that is used to open and close the collapsible content */
.collapsible {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #eeeeee00;
  color: #000000;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}



.collapsibleExtra {
  display: none;
  flex-direction: column;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */
.active, .collapsible:hover {
  background-color: #cccccc00;
}


/* Style the collapsible content. Note: hidden by default */
.collapsible-content {
  padding: 0 18px;
  background-color: #ffffff00;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  text-align: left;
  font-family: 'Inter', sans-serif;
}

.collapsible-icon {
  margin-left: 5px;
}



/* ---------- CONTENT BASE ---------- */

.content-div {
  width: 100vw;
  max-width: 1440px;
  height: 100vh;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow-x: hidden;
}
.content-div h1 {
  margin: 10px;
  font-size: 50px;
  font-weight: 500;
  color: #00398E;
  text-align: center;
}
.content-div h2 {
  margin: 10px;
  font-size: 70px;
  font-weight: 500;
  color: #000000;
  text-align: center;
}
.content-div h3 {
  margin: 10px;
  font-size: 40px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  width: 90%;
}
.content-div h4 {
  margin: 10px;
  font-size: 25px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  width: 70%;
}



.double-div {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: center;
}
.double-div h4 {
  width: 350px; 
  text-align: left;
  margin-left: 40px;
}




.image-div {
  background-size: cover; 
  background-position: center; 
  width: 350px; 
  height: 400px; 
  border-radius: 12px;
}



.card1 {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 150%;
  width: 300px;
  height: 400px;
  background-color: #ffffff13;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 20px;
  box-shadow: 0px 0px 15px 0px #0000000c;
  /* transform: translate(0) rotate(10deg); */
  z-index: 881;
  transition: 1s ease-in-out;
}
/* .card1:hover {
  cursor: pointer;
} */
.card1 div {
  pointer-events: none;
}

.card2 {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 150%;
  width: 300px;
  height: 400px;
  background-color: #ffffff13;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 20px;
  box-shadow: 0px 0px 15px 0px #0000000c;
  /* transform: rotate(1deg); */
  z-index: 883;
  transition: 1s ease-in-out;
}
/* .card2:hover {
  cursor: pointer;
} */
.card2 div {
  pointer-events: none;
}


.card3 {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 150%;
  width: 300px;
  height: 400px;
  background-color: #ffffff13;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 20px;
  box-shadow: 0px 0px 15px 0px #0000000c;
  /* transform: translate(0) rotate(-8deg); */
  z-index: 882;
  transition: 1s ease-in-out;
}
/* .card3:hover {
  cursor: pointer;
} */
.card3 div {
  pointer-events: none;
}

.simpleCards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}


.optionCard {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 340px;
  height: 300px;
  background-color: #ffffff10;
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff28;
  border-radius: 18px;
}

.optionButton {
  background-color: #ffffff1c;
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff26;
  border-radius: 12px;
}
.optionButton:hover {
  background-color: #ffffff28;
}
.optionButton.selected {
  border-style: solid;
  border-color: #ffffffae;
}

.info {
  width: 100%;
  height: 100%;
}

.infoDiv {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  text-align: center;
  line-height: normal;
}



@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  25% {
    transform: scale(1);
  }
  40% {
    transform: scale(0.95);
  }
  50% {
    transform: scale(1.05);
  }
  60% {
    transform: scale(1);
  }
  75% {
    transform: scale(1);
  }
}

.pulsing {
  animation: pulse 4s ease-in-out infinite;
}






/* ---------- CUSTOM CONTENT ---------- */



.logoContainer {
  display: flex; 
  justify-content: center; 
  align-items: center;
  margin-top: 30px; 
  margin-bottom: 10px;
}

@keyframes rotateCross {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}

#cross {
  animation: rotateCross 2s ease-in-out;
}














/* ---------- GENERAL ---------- */
.over1250px {
    display: flex;
  }
  
  .over992px {
    display: flex;
  }
  .under992px {
    display: none;
  }


  .over772px {
    display: flex;
  }
  .under772px {
    display: none;
  }

  
  .over570px {
    display: flex;
  }
  .under570px {
    display: none;
  }
  
  
  
  
  a:link { text-decoration: none;  }
  a:visited { text-decoration: none;  }
  a:hover { text-decoration: none; }
  a:active { text-decoration: none; }
  
  
  
  
  /* Hide scrollbar for Chrome, Safari and Opera */
  .hideBar::-webkit-scrollbar {
      display: none;
  }
  
  
  input[type="file"] {
      display: none;
  }