@font-face {
  font-family: 'Montserrat';
  src: url('../assets/fonts/Montserrat/Montserrat-VariableFont_wght.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

@font-face {
  font-family: 'MsMadi';
  src: url('../assets/fonts/Ms_Madi/MsMadi-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
  font-style: normal;
}

html, body {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--navy);
  font-family: "Montserrat", sans-serif;
  overflow: hidden !important;
  overflow-y: scroll !important;
  color: var(--navy);
}

body.context-menu-active {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

section.content {
  margin: 0;
  background: var(--white);
}

/* RIGHT CLICK MENU */

[img-credit],
[explanation],
#custom-context-menu,
#custom-context-menu * {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}

#custom-context-menu {
  position: fixed;
  z-index: 99999999;

  display: none;
  flex-direction: column;

  min-width: 220px;
  padding: 5px;

  background: var(--navy-60);
  border: 1px solid var(--navy-80);
  border-radius: 10px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.12),
    0 2px 8px rgba(0,0,0,0.08);

  touch-action: manipulation;

}

#custom-context-menu button {
  border: none;
  background: transparent;

  padding: 10px 10px;
  border-radius: 10px;

  text-align: left;

  font-size: .8rem;
  cursor: pointer;
  color: var(--white);

  transition: all 0.15s ease;
}

#custom-context-menu button:hover {
  background: var(--navy-60);
}

#custom-context-menu button:disabled {
  display: none;
}

#info-modal {
  position: fixed;
  inset: 0;

  z-index: 99999999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
}

#info-modal.active {
  opacity: 1;
  visibility: visible;
}

.info-modal-backdrop {
  position: absolute;
  inset: 0;

  background: var(--navy-40);

  backdrop-filter: blur(6px);
}

.info-modal-content {
  position: relative;

  width: min(540px, calc(100vw - 32px));
  max-height: calc(100vh - 40px);

  overflow-y: auto;

  padding: 32px;

  border-radius: 28px;

  background: var(--white);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.22);

  transform: translateY(18px);

  transition: transform 0.25s ease;
}

#info-modal.active .info-modal-content {
  transform: translateY(0);
}

.info-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;

  width: 42px;
  height: 42px;

  border: none;
  border-radius: 50%;

  background: var(--navy);
  color: var(--white);

  cursor: pointer;

  font-size: 15px;
}

.info-modal-close:hover {
  background: var(--navy-90);
}

.info-modal-label {
  margin-bottom: 10px;

  font-size: .6rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  color: var(--navy-60);
}

.info-modal-title {
  margin-bottom: 18px;

  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  color: var(--navy);
}

.info-modal-text {
  font-size: .9rem;
  line-height: 1.4;

  color: #3d3d3d;
}

@media(max-width: 768px) {

  .info-modal-content {
    width: 100%;
    max-height: 85vh;

    margin-top: auto;

    border-radius: 28px 28px 0 0;

    padding: 28px;
  }

}

/* RIGHT CLICK MENU END */
/* HEADER */

header {
  height: 100px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  border-bottom: 1px solid var(--sky-0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: none;
  z-index: 9999999;
  text-wrap: nowrap;
  transition: all ease .3s;
}

header.scrolled {
  height: 60px;
  background-color: var(--navy-80);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid var(--sky-20);
}

a.header-logo {
  height: 15px;
  width: auto;
}

svg.header-logo {
  fill: var(--sky);
  height: 15px;
  width: auto;
  transition: all ease .3s;
}

svg.header-logo:hover {
  fill: var(--white);
}

.header-left {
  height: 100%;
  width: 30%;
}

.header-right {
  height: 100%;
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-nav-wrapper {
  height: 100%;
  width: calc(100% - 80px);
  padding: 0 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-size: .8rem;
}

.header-left .header-nav-wrapper {
  justify-content: flex-start;
}

.header-right .header-nav-wrapper {
  justify-content: flex-end;
}

.header-nav-single, .header-nav-text {
  all: unset;
  color: var(--sky-60);
  cursor: pointer;
  transition: all ease .3s;
}

.header-nav-text {
  cursor: default;
}

.header-nav-single.current {
  color: var(--white);
}

.header-nav-single:hover {
  color: var(--sky);
}

.header-nav-sep {
  height: 1px;
  width: 100%;
  background-color: var(--sky-20);
  flex-shrink: 0;
}

.hideOnDesktop {
  display: none;
}

.mobileHeader {
  display: none;
  transition: all ease .3s;
}

@media (max-width: 800px) {
  .hideOnMobile {
    display: none;
  }

  .mobileHeaderButton {
    height: 25px;
    width: 25px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    margin-right: 20px;
    gap: 5px;
    cursor: pointer;
  }

  .mobileHeaderButton-lineone {
    height: 1px;
    width: 100%;
    background-color: var(--white);
    box-sizing: border-box;
    transform: rotate(0deg);
    transition: all ease .3s;
  }

  .mobileHeaderButton-linetwo {
    height: 1px;
    width: 75%;
    background-color: var(--white);
    box-sizing: border-box;
    transition: all ease .3s;
  }

  .mobileHeaderButton-linethree {
    height: 1px;
    width: 50%;
    background-color: var(--white);
    box-sizing: border-box;
    transform: rotate(0deg);
    transition: all ease .3s;
  }

  .mobileHeaderButton:hover .mobileHeaderButton-lineone, .mobileHeaderButton:hover .mobileHeaderButton-linetwo, .mobileHeaderButton:hover .mobileHeaderButton-linethree {
    width: 100%;
  }


  .mobileHeaderButton.open .mobileHeaderButton-lineone {
    height: 1px;
    width: 25px;
    background-color: var(--white);
    box-sizing: border-box;
    transform: rotate(45deg) translateY(9px);
  }

  .mobileHeaderButton.open .mobileHeaderButton-linetwo {
    height: 1px;
    width: 0%;
    background-color: var(--white-0);
    box-sizing: border-box;
  }

  .mobileHeaderButton.open .mobileHeaderButton-linethree {
    height: 1px;
    width: 25px;
    background-color: var(--white);
    box-sizing: border-box;
    transform: rotate(-45deg) translateY(-9px);
  }

  img.mobileHeaderIcon {
    height: 13px;
    cursor: pointer;
  }

  .mobileHeader {
    position: fixed;
    left: 0;
    right: 0;
    top: 0px;
    z-index: 999999;
    height: calc(0px);
    width: calc(100svw - 80px);
    padding: 40px;
    padding-top: 0px;
    padding-bottom: 0px;
    background-color: var(--navy-80);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 40px;
    opacity: 0;
  }

  .mobileHeader.open {
    top: 61px;
    height: calc(100vh - 61px - 80px);
    width: calc(100svw - 80px);
    padding: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    opacity: 1;
  }

  .mobileHeaderPrimary {
    height: calc(100svh - 61px - 80px - 40px - 20px);
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .header-nav-single {
    font-size: 1.2rem;
  }

  .mobileHeaderSecondary {
    height: 20px;
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }

  .mobileHeaderSecondary .header-nav-single {
    font-size: .9rem;
  }
}


/* HEADER END */
/* FOOTER */

footer {
  background-color: var(--sky);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  cursor: default;
}

.footer-logo-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

a.footer-logo {
  height: 50px;
  width: 50px;
  border-radius: 100px;
  background-color: var(--sky);
  border: 5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateY(-50%);
  transition: all ease .5s;
}

svg.footer-logo {
  height: 23px;
  width: 100%;
  fill: var(--aqua);
}

.footer-content {
  width: calc(1400px - 80px);
  max-width: calc(100% - 80px);
  padding: 40px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-links {
  width: 100%;
  padding-bottom: 30px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 40px 60px;

  align-items: start;
}

.footer-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.footer-links-title {
  height: 15px;
  font-size: 0.8rem;
  color: var(--navy);
  flex-shrink: 0;
  margin-bottom: 5px;
}

a.footer-link {
  width: fit-content;
  font-size: 0.8rem;
  text-decoration: none;
  color: var(--aqua);
  transition: all ease 0.3s;
}

a.footer-link:hover {
  color: var(--aqua-60);
}

.footer-legal {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid var(--aqua-40);
  color: var(--aqua);
  font-size: .7rem;
}

.footer-legal-links {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0;
  gap: 5px;
  padding-top: 10px;
  padding-bottom: 10px;
  border-top: 1px solid var(--aqua-40);
  color: var(--aqua);
  font-size: .7rem;
}

a.footer-legal-link {
  color: var(--aqua);
  font-size: .6rem;
  text-decoration: none;
  cursor: pointer;
}

a.footer-legal-link:hover {
  color: var(--aqua-80);
  text-decoration: underline;
}

@media (max-width: 800px) {
  .footer-content {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
}

/* FOOTER END */
/* MAIN */

main {
  height: auto;
  min-height: calc(100svh - 588px);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background-color: var(--sand);
}

.content {
  width: calc(1400px - 80px);
  max-width: calc(100% - 80px);
  padding: 40px;
  padding-bottom: calc(40px + 25px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 40px;
}

.content-print-outer {
  width: calc(100% - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--sand);
  padding: 20px;
}

@media print {
  .content-print-outer {
    width: 100%;
    background: transparent !important;
    padding: 0 !important;
  }
}

.content-print {
  width: calc(210mm - 40mm);
  max-width: calc(100% - 40mm);
  padding: 20mm;
  background-color: white;
}

@media (max-width: 800px) {
  .content {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }
}

/* MAIN END */
/* COOKIES */

.cookie-wrapper {
  height: fit-content;
  width: fit-content;
  max-width: 100%;
  position: fixed;
  bottom: 10px;
  left: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 99999999;
}

.cookie-banner {
  width: calc(600px);
  max-width: calc(100% - 80px);
  padding: 20px;
  background-color: var(--navy);
  box-shadow: 0 0 30px var(--aqua-40);
  color: var(--white);
  border-radius: 20px;
}

.cookie-title {
  font-size: .8rem;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--white-40);
  cursor: default;
}

.cookie-text {
  font-size: .6rem;
  margin-bottom: 15px;
  white-space: pre-line;
  cursor: default;
}

.cookie-button-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
}

a.cookie-button {
  height: 20px !important;
  all: unset;
  padding: 5px 10px;
  background-color: var(--white-0);
  color: var(--white);
  font-size: .7rem;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease .3s;
}

a.cookie-button:hover {
  background-color: var(--white-20);
}

button.cookie-button {
  height: 20px !important;
  all: unset;
  padding: 5px 10px;
  background-color: var(--white);
  color: var(--navy);
  font-size: .8rem;
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all ease .3s;
}

button.cookie-button:hover {
  background-color: var(--white-90);
}

/* COOKIES END */
/* HOMEPAGE HERO */

.homepage-hero {
  height: 100svh;
  width: 100%;
  margin-top: 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.homepage-hero-overlay {
  height: calc(100%);
  width: calc(100% - 60vw);
  background: var(--navy);
  background: radial-gradient(circle, var(--navy-80) 0%, var(--navy) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 40vw;
  padding-top: 100px;
  padding-bottom: 40px;
  padding-left: calc(30vw);
  padding-right: calc(30vw);
  overflow: hidden;
  overflow-x: scroll;

  animation: homepageHeroOverlay 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .4s;
}

@keyframes homepageHeroOverlay {
  from {
    gap: 40vw;
  }
  to {
    gap: 20vw;
  }
}

.homepage-hero-overlay {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.homepage-hero-overlay::-webkit-scrollbar {
  display: none;
}

.homepage-hero-single {
  height: 80%;
  width: 40vw;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 20px;
  opacity: .4;
  text-decoration: none;
  color: var(--navy);
  z-index: 1;
  cursor: default;
  transition: all ease .5s;

  transform: translateX(100vw);
  opacity: 0;

  animation: homepageHeroSingle 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .2s;
}

@keyframes homepageHeroSingle {
  from {
    transform: translateX(100vw);
    opacity: 0;
  }
  to {
    transform: translateX(0vw);
    opacity: 1;
  }
}

.homepage-hero-single.centered {
  height: 100%;
  opacity: 1;
  z-index: 2;
  cursor: pointer;
}

.homepage-hero-single.centered:hover {
  box-shadow:
    inset 0 0 30px var(--aqua-40),
    0 0 30px var(--aqua-40);
}

.homepage-hero-single.clicked {
  height: 100vh;
  width: 100vw;
  opacity: 1;
  margin-top: -60px;
  border-radius: 0;
  margin-left: -30vw;
  z-index: 2;
}

.homepage-hero-single-overlay {
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  padding: 20px;
  overflow: hidden;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: all ease .5s;
}

.homepage-hero-single.centered .homepage-hero-single-overlay {
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.homepage-hero-single.clicked .homepage-hero-single-overlay {
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.homepage-hero-single-content {
  height: auto;
  max-height: calc(100% - 30px);
  width: calc(100% - 30px);
  padding: 15px;
  overflow: hidden;
  background-color: var(--white-90);
  border-radius: 15px;
  transform: translateY(100%) scale(.6);
  opacity: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  transition: all ease .8s;
}

.homepage-hero-single.centered .homepage-hero-single-content {
  transform: translateY(0%) scale(1);
  opacity: 1;
}

.homepage-hero-single.clicked .homepage-hero-single-content {
  transform: translateY(150%);
  opacity: 1;
}

.homepage-hero-single-category-wrapper {
  display: flex;
  flex-direction: row;
  gap: 5px;
  text-wrap: nowrap;
  flex-wrap: wrap;
}

.homepage-hero-single-category {
  height: 30px;
  width: fit-content;
  padding: 0px 10px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--sky);
  color: var(--aqua);
  border-radius: 10px;
  gap: 5px;
  font-size: .7rem;
  text-wrap: nowrap;
} 

.homepage-hero-single-category.date {
  background-color: var(--gold);
  color: var(--white);
}

.homepage-hero-single-category.guided {
  background-color: var(--olive);
  color: var(--white);
}

img.homepage-hero-single-category-icon {
  height: 10px;
}

.homepage-hero-single-title {
  font-size: 1rem;
  margin: 5px;
  margin-top: 10px;
  margin-bottom: 0px;
}

.homepage-hero-single-description {
  font-size: .9rem;
  margin: 5px;
  margin-top: 0px;
}

@media (max-width: 1250px) {
  .homepage-hero-overlay {
    width: calc(100% - 20vw);
    gap: 5vw;
  }

  @keyframes homepageHeroOverlay {
    from {
      gap: 20vw;
    }
    to {
      gap: 5vw;
    }
  }

  .homepage-hero-single {
    width: 80vw;
  }

  .homepage-hero-single.clicked {
    margin-left: -10vw;
  }
}

/* HOMEPAGE HERO END */
/* SUBPAGE HERO */

.subpage-hero {
  height: 40svh;
  width: 100%;
  margin-top: 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.subpage-hero-overlay {
  height: calc(100%);
  width:  100%;
  background: var(--navy);
  background: radial-gradient(circle, var(--navy-80) 0%, var(--navy) 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20vw;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
}

.subpage-hero-content {
  width: calc(1400px - 80px);
  max-width: calc(100% - 80px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

.subpage-hero-title {
  font-size: 2rem;
  color: var(--white);

  transform: translateY(40px);
  opacity: 0;

  animation: subpageHeroTitle 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .2s;
}

@keyframes subpageHeroTitle {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0vw);
    opacity: 1;
  }
}

.subpage-hero-title.creative {
  font-family: "MsMadi", sans-serif;
  font-size: 4rem;
  color: var(--white);
}

.subpage-hero-subtitle {
  font-size: .9rem;
  color: var(--white);

  transform: translateY(40px);
  opacity: 0;

  animation: subpageHeroSubtitle 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .3s;
}

@keyframes subpageHeroSubtitle {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0vw);
    opacity: 1;
  }
}

@media (max-width: 800px) {
  .content {
    width: calc(100% - 80px);
    max-width: calc(100% - 80px);
  }

  .subpage-hero-title {
    font-size: 1.6rem;
  }

  .subpage-hero-title.creative {
    font-size: 2.6rem;
  }

  .subpage-hero-subtitle {
    font-size: .8rem;
  }
}

/* SUBPAGE HERO END */
/* ADVENTURE HERO */

.adventure-hero {
  height: 100svh;
  width: 100%;
  margin-top: 0px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  animation: adventureHero 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .2s;
}

@keyframes adventureHero {
  from {height: 100vh;}
  to {height: 60svh;}
}

.adventure-hero-overlay {
  height: calc(100%);
  width:  100%;
  background: var(--navy);
  background: linear-gradient(0deg, var(--navy-20) 0%, var(--navy-40) 60%, var(--navy-80) 90%);
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 20vw;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: hidden;
  position: relative;
  opacity: 0;

  position: relative;

  animation: adventureHeroOverlay 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .2s;
}

@keyframes adventureHeroOverlay {
  from {opacity: 0;}
  to {opacity: 1;}
}

.adventure-hero-overlay-favorites-wrapper {
  all: unset;
  position: absolute;
  right: 20px;
  bottom: 20px;
  height: 40px;
  width: 40px;
  border-radius: 40px;
  background-color: var(--navy-80);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transform: scale(1);
  transition: all ease .3s;
}

.adventure-hero-overlay-favorites-wrapper:hover {
  background-color: var(--navy);
  transform: scale(1.1);
}

.adventure-hero-overlay-favorites-icon {
  height: 15px;
}

.adventure-hero-content {
  width: calc(1400px - 80px);
  max-width: calc(100% - 80px);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
  cursor: default;
}

.adventure-hero-category-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 5px;

  transform: translateY(40px);
  opacity: 0;

  animation: adventureHeroCategoryWrapper 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .1s;
}

@keyframes adventureHeroCategoryWrapper {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.adventure-hero-title {
  font-size: 1.8rem;
  color: var(--white);

  transform: translateY(40px);
  opacity: 0;

  animation: adventureHeroTitle 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .3s;
}

@keyframes adventureHeroTitle {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0px);
    opacity: 1;
  }
}

.adventure-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  column-gap: 20px;
  margin-top: 10px;
}

.adventure-hero-tag {
  width: fit-content;
  font-size: .9rem;
  color: var(--white);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-wrap: nowrap;
  line-height: 1;

  transform: translateY(40px);
  opacity: 0;

  animation: adventureHeroTagShow 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.adventure-hero-tag.show-01 {
  animation-delay: .4s;
}

.adventure-hero-tag.show-02 {
  animation-delay: .5s;
}

.adventure-hero-tag.show-03 {
  animation-delay: .6s;
}

.adventure-hero-tag.show-04 {
  animation-delay: .7s;
}

.adventure-hero-tag.show-05 {
  animation-delay: .8s;
}

.adventure-hero-tag.show-06 {
  animation-delay: .9s;
}

.adventure-hero-tag.show-07 {
  animation-delay: 1s;
}

.adventure-hero-tag.show-08 {
  animation-delay: 1.1s;
}

@keyframes adventureHeroTagShow {
  from {transform: translateY(40px); opacity: 0;}
  to {transform: translateY(0px); opacity: 1;}
}

img.adventure-hero-tag-icon {
  width: 20px;
}

@media (max-width: 800px) {
  @keyframes adventureHero {
    from {height: 100vh;}
    to {height: 40svh;}
  }

  .adventure-hero-category-wrapper {
    margin-bottom: 15px;
  }

  .adventure-hero-title {
    font-size: 1.4rem;
    color: var(--navy);
  }

  .adventure-mobile-hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid var(--navy-40);
    padding-bottom: 30px;
    margin-bottom: 30px;
  }

  .adventure-hero-tags {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
    justify-items: start;
  }

  .adventure-hero-tag {
    color: var(--aqua);
  }
}

/* ADVENTURE HERO */
/* ABOUT HERO */

.about-hero {
  height: calc(100svh - 100px);
  padding-top: 100px;
  width: 100%;
  display: flex;
  flex-direction: row;
}

.about-hero-content {
  height: calc(100%);
  width: calc(100%);
  background-color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;

  animation: aboutHeroContent 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .2s;
}

@keyframes aboutHeroContent {
  from {
    width: calc(100%);
  }
  to {
    width: calc(50%);
  }
}

.about-hero-content-wrapper {
  width: calc(1400px / 2 - 40px);
  max-width: calc(100% - 40px);
  padding: 40px;
  padding-right: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  color: var(--white);
  z-index: 2;
  cursor: default;
}

.about-hero-greeting {
  font-size: 2rem;
  margin-bottom: 10px;
  padding-right: 40px;

  transform: translateY(40px) translateX(20px);
  opacity: 0;

  animation: aboutHeroGreeting 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .6s;
}

@keyframes aboutHeroGreeting {
  from {
    transform: translateY(40px) translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }
}

.about-hero-name {
  font-size: 5.2rem;
  text-wrap: nowrap;

  transform: translateY(40px) translateX(20px);
  opacity: 0;

  animation: aboutHeroName 2.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .7s;
}

@keyframes aboutHeroName {
  from {
    transform: translateY(40px) translateX(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0px) translateX(0px);
    opacity: 1;
  }
}

.about-hero-img {
  height: calc(100%);
  width: calc(0%);
  background-color: var(--navy);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;

  animation: aboutHeroImg 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: .2s;
}

@keyframes aboutHeroImg {
  from {
    width: calc(0%);
  }
  to {
    width: calc(50%);
  }
}

@media (max-width: 800px) {
  .about-hero {
    flex-direction: column-reverse;
  }

  .about-hero-content {
    height: calc(100%);
    width: calc(100%);
  }

  @keyframes aboutHeroContent {
    from {
      height: calc(100%);
      width: calc(100%);
    }
    to {
      height: calc(40%);
      width: calc(100%);
    }
  }

  .about-hero-greeting {
    font-size: 1.2rem;
    margin-bottom: 10px;
    padding-right: 40px;
  }

  .about-hero-name {
    font-size: 2rem;
    padding-right: 40px;
  }

  .about-hero-img {
    height: calc(0%);
    width: calc(0%);
  }

  @keyframes aboutHeroImg {
    from {
      height: calc(0%);
      width: calc(100%);
    }
    to {
      height: calc(60%);
      width: calc(100%);
    }
  }
}

/* ABOUT HERO END */
/* DISCOVER ADVENTURES */

section.discover-adventures {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}

.discover-adventures-title {
  font-family: "MsMadi", sans-serif;
  font-size: 3rem;
  color: var(--navy);
}

.discover-adventures-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-start;
  justify-content: space-between;
}

.discover-adventures-filters {
  height: auto;
  max-height: calc(100vh - 120px);
  width: 300px;
  position: sticky;
  top: 80px;
  background-color: var(--white-60);
  border: 1px solid var(--white);
  border-radius: 20px;
  padding: 20px;
}

.discover-adventures-content {
  width: calc(100% - 300px);
  display: flex;
  flex-direction: column;
}

.discover-adventures-single {
  width: calc(100% - 20px);
  padding: 0px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--navy-40);
  display: flex;
  flex-direction: row;
  cursor: default;
}

.discover-adventures-single-interaction {
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: sticky;
  top: 80px;
}

.discover-adventures-single-image {
  height: 200px;
  width: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.discover-adventures-single-interaction-buttons {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

a.discover-adventures-single-button-details {
  height: 35px;
  width: calc(100% - 32px);
  padding: 0 15px;
  border: 1px solid var(--navy);
  background-color: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: .8rem;
  text-decoration: none;
  cursor: pointer;
  text-wrap: nowrap;
  transition: all ease .3s;
}

a.discover-adventures-single-button-details:hover {
  background-color: var(--navy-90);
}

a.discover-adventures-single-button-schedule {
  height: 35px;
  width: calc(100% - 32px);
  padding: 0 15px;
  border: 1px solid var(--navy);
  background-color: var(--navy-0);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: .8rem;
  text-decoration: none;
  cursor: pointer;
  text-wrap: nowrap;
  transition: all ease .3s;
}

a.discover-adventures-single-button-schedule:hover {
  background-color: var(--navy-10);
}

.discover-adventures-single-content {
  width: calc(100% - 40px);
  padding: 20px;
  padding-top: 0px;
  padding-bottom: 0px;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.discover-adventures-single-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 5px;
}

.discover-adventures-single-description {
  font-size: .9rem;
  font-weight: 400;
  white-space: pre-line;
}

.discover-adventures-single-specifications {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.discover-adventures-single-specification {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 15px;
  background: var(--white-60);
  border: 1px solid var(--navy-10);
  border-radius: 10px;
}

.discover-adventures-single-specification .label {
  font-size: .6rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--gold);
}

.discover-adventures-single-specification .value {
  font-size: .9rem;
  font-weight: 500;
  color: var(--navy);
}

@media (max-width: 1250px) {

  .discover-adventures-title {
    font-size: 2.5rem;
  }

  .discover-adventures-wrapper {
    flex-direction: column;
  }

  .discover-adventures-filters {
    max-height: none;
    width: calc(100% - 40px);
    position: unset;
  }

  .discover-adventures-content {
    width: 100%;
  }

  .discover-adventures-single {
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .discover-adventures-single-interaction {
    width: 100%;
    position: unset;
    gap: 10px;
  }

  .discover-adventures-single-image {
    height: auto;
    width: 100%;
    aspect-ratio: 3/2;
  }

  .discover-adventures-single-interaction-buttons {
    flex-direction: row;
    gap: 10px;
  }

  a.discover-adventures-single-button-details {
    height: 45px;
    width: calc(100% - 32px);
  }

  a.discover-adventures-single-button-schedule {
    height: 45px;
    width: calc(50% - 32px);
  }

  .discover-adventures-single-content {
    width: 100%;
    padding: 0px;
  }

}

/* DISCOVER ADVENTURES END */
/* ADVENTURE LIST */

.adventure-list-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

a.adventure-list-single {
  all: unset;
  cursor: pointer;
  width: calc(100% - 40px);
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  border-radius: 20px;
  background-color: var(--white-60);
  transition: all ease .3s;
}

a.adventure-list-single:hover {
  background-color: var(--white-80);
}

.adventure-list-single-img {
  width: 300px;
  max-width: 100%;
  aspect-ratio: 3/2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

.adventure-list-single-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.adventure-list-single-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 5px;
}

.adventure-list-single-declaration {
  font-size: .8rem;
  font-weight: 400;
  color: var(--navy-40);
}

@media (max-width: 800px) {
  a.adventure-list-single {
    flex-direction: column;
  }

  .adventure-list-single-img {
    width: 100%;
    max-height: 250px;
  }
}

/* ADVENTURE LIST END */
/* ADVENTURE NOTICE */

.adventure-notice {
  width: calc(100% - 30px);
  padding: 15px;
  border-radius: 10px;
  border: 1px solid var(--aqua-20);
  background-color: var(--aqua-10);
  color: var(--aqua);
  cursor: default;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.adventure-notice.gold {
  border: 1px solid var(--gold-20);
  background-color: var(--gold-10);
  color: var(--gold);
}

.adventure-notice.olive {
  border: 1px solid var(--olive-20);
  background-color: var(--olive-10);
  color: var(--olive);
}

.adventure-notice-title {
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: -5px;
}

.adventure-notice-description {
  font-size: .9rem;
}

a.adventure-notice-link {
  font-size: .9rem;
  color: unset;
}

a.adventure-notice-link:hover {
  opacity: .8;
}

@media (max-width: 800px) {
  .adventure-notice {
    width: calc(100%);
    padding: 15px;
    padding-left: 40px;
    padding-right: 40px;
    border-radius: 0px;
    border: 0px solid var(--aqua-20);
    border-bottom: 1px solid var(--aqua-20);
    background-color: var(--aqua-10);
    color: var(--aqua);
    cursor: default;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: -40px;
    margin-top: -40px;
  }
}

/* ADVENTURE NOTICE END */   
/* ADVENTURE DESCRIPTION */

.adventure-description-wrapper {
  width: calc(100% - 40px);
  padding: 0 20px;
  position: relative;
  cursor: default;
}

.adventure-description-title,
.adventure-description {
  position: relative;
  z-index: 2;
}

.adventure-description-title {
  white-space: pre-line;
  font-family: "MsMadi", sans-serif;
  font-size: 2.2rem;
  margin-left: -10px;
  margin-bottom: 10px;
}

.adventure-description {
  white-space: pre-line;
  font-size: .9rem;
}

.adventure-description-background {
  position: absolute;
  z-index: 1;
  left: -20px;
  bottom: -30px;
  height: calc(100% + 50px);
  max-height: 40vh;
  width: auto;
  max-width: 80%;
  display: block;
  opacity: .06;
  filter: blur(6px);
  pointer-events: none;
}

/* ADVENTURE DESCRIPTION END */
/* ADVENTURE ITINERARY */

section.adventure-itinerary {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* ADVENTURE ITINERARY END */
/* SECTION ITINERARY MENU */

.adventure-itinerary-menu {
  height: 60px;
  width: calc(100%);
  border-bottom: 1px solid var(--navy-20);
  position: sticky;
  top: 61px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0px;
  font-size: .8rem;
  overflow: hidden;
  overflow-x: scroll;
  transition: all 0.3s ease;

  z-index: 99999;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.adventure-itinerary-menu::-webkit-scrollbar {
  display: none;
}

.adventure-itinerary-menu.is-sticky {
  box-sizing: border-box;

  height: 40px;
  width: 100vw;
  margin-left: calc(((100vw - min(1400px, 100vw)) / -2) - 40px);
  padding-left: calc(((100vw - min(1400px, 100vw)) / 2) + 40px);
  padding-right: calc(((100vw - min(1400px, 100vw)) / 2) + 40px);

  background-color: var(--sand-80);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border-bottom: 1px solid var(--navy-20);
  font-size: .8rem;
}

.adventure-itinerary-menu-item {
  cursor: pointer;
  padding: 0px;
  border-radius: 10px;
  background-color: var(--aqua-0);
  color: var(--navy);
  text-wrap: nowrap;
  flex-shrink: 0;
  padding: 0px 13px;
  text-decoration: none;
  transition: all ease .3s;
}

.adventure-itinerary-menu-item:hover {
  background-color: var(--aqua);
  color: var(--white);
  padding: 8px 15px;
}

.adventure-itinerary-menu-item.current {
  background-color: var(--aqua);
  color: var(--white);
  padding: 8px 15px;
}

.adventure-itinerary-menu:has(.adventure-itinerary-menu-item:not(.current):hover)
  .adventure-itinerary-menu-item.current:not(:hover) {
  background-color: var(--navy-0);
  color: var(--navy);
  padding: 0px 13px;
}

.adventure-itinerary-menu-sep {
  height: 20px;
  width: 1px;
  flex-shrink: 0;
  box-sizing: content-box;
  background-color: var(--navy-40);
  margin: 0 10px;
}

@media (max-width: 800px) {
  .adventure-itinerary-menu {
    box-sizing: border-box;

    height: 60px;
    width: 100vw;
    margin-left: calc(((100vw - min(1400px, 100vw)) / -2) - 40px);
    padding-left: calc(((100vw - min(1400px, 100vw)) / 2) + 20px);
    padding-right: calc(((100vw - min(1400px, 100vw)) / 2) + 20px);

    background-color: var(--sand-80);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid var(--navy-20);
    font-size: .8rem;
  }

  .adventure-itinerary-menu.is-sticky {
    box-sizing: border-box;

    height: 40px;
    width: 100vw;
    margin-left: calc(((100vw - min(1400px, 100vw)) / -2) - 40px);
    padding-left: calc(((100vw - min(1400px, 100vw)) / 2) + 10px);
    padding-right: calc(((100vw - min(1400px, 100vw)) / 2) + 10px);

    background-color: var(--sand-80);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-bottom: 1px solid var(--navy-20);
    font-size: .8rem;
  }
}

/* SECTION ITINERARY MENU END */
/* ADVENTURE DAY WRAPPER */

.adventure-day-wrapper {
  width: calc(100% - 40px);
  background-color: var(--white-60);
  padding: 20px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  scroll-margin-top: 120px;
}

.adventure-day-header {
  width: 100%;
  border-bottom: 1px solid var(--navy-20);
  margin-left: -20px;
  padding: 0 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  cursor: default;
}

.adventure-day-header-day {
  font-size: .9rem;
  color: var(--navy-60);
}

.adventure-day-header-title {
  font-size: .9rem;
}


/* ADVENTURE DAY WRAPPER END */
/* ADVENTURE DAY WIDGET */

.adventure-day-widget {
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
  cursor: default;
}

.adventure-day-widget-category {
  height: 40px !important;
  width: 40px !important;
  background-color: var(--aqua);
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.adventure-day-widget-category-icon {
  max-height: 20px;
  max-width: 20px;
}

.adventure-day-widget-line {
  height: calc(100% + 20px);
  width: 3px;
  position: absolute;
  top: -20px;
  left: calc(20px - (3px / 2));
  background-color: var(--aqua-10);
  z-index: 1;
}

.adventure-day-widget-line.first {
  height: calc(100% - 40px);
  top: 40px;
}

.adventure-day-widget-line.last {
  height: calc(40px);
  top: -20px;
}

.adventure-day-widget-line-progress {
  height: 0%;
  width: 3px;
  background-color: var(--aqua-60);
}

@media (max-width: 800px) {

  .adventure-day-wrapper {
    width: calc(100% - 20px + 60px);
    padding-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-left: -40px;
  }

  .adventure-day-header {
    width: calc(100% - 20px);
    padding-left: 40px;
  }

  .adventure-day-widget-category {
    border-radius: 10px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }

  .adventure-day-widget-line.last {
    height: calc(40px);
    top: -20px;
  }

}

/* ADVENTURE DAY WIDGET END */
/* ADVENTURE DAY WIDGET SIMPLIFIED */

.adventure-day-widget-simplified-grid {
  min-height: 40px;
  width: calc(100% - 60px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-20);
  font-size: .9rem;

  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "info";

  align-items: center;
  gap: 20px;
}

.adventure-day-widget-simplified-grid:has(.simplified-button) {
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "info button";
}

.simplified-info {
  grid-area: info;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3px;

  min-width: 0;
}

.simplified-info-title {
  font-size: .9rem;
}

.simplified-info-description {
  font-size: .8rem;
  color: var(--navy-60);
  white-space: pre-line;
}

.simplified-button {
  grid-area: button;

  height: 40px;
  background-color: var(--navy);
  color: var(--white);
  padding: 0 20px;
  margin-right: -20px;

  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all .3s ease;
}

.simplified-button:hover {
  padding-right: 30px;
  margin-left: -10px;
}

.simplified-button img {
  height: 18px;
}

@media (max-width: 800px) {
  .adventure-day-widget-simplified-grid,
  .adventure-day-widget-simplified-grid:has(.simplified-button) {
    width: 100%;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info button";
    gap: 12px;
  }

  .adventure-day-widget-simplified-grid:not(:has(.simplified-button)) {
    grid-template-columns: 1fr;
    grid-template-areas:
      "info";
  }

  .simplified-button {
    justify-self: end;
  }
}

/* ADVENTURE DAY WIDGET SIMPLIFIED END */
/* ADVENTURE DAY WIDGET TRANSPORT */

.adventure-day-widget-transport-grid {
  width: calc(100% - 60px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-20);
  font-size: .9rem;

  display: grid;
  grid-template-columns: auto auto 1fr auto;
  grid-template-areas:
    "badge route . info";
  align-items: center;
  gap: 20px;
}

.adventure-day-widget-transport-grid:has(.transport-button) {
  grid-template-columns: auto auto 1fr auto auto;
  grid-template-areas:
    "badge route . info button";
}

.transport-badge.train,
.transport-badge.plane {
  grid-area: badge;
  height: 33px;
  padding: 0 10px;
  border: 1px solid var(--aqua);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  width: fit-content;
  justify-self: start;
}

.transport-route {
  grid-area: route;
  display: grid;
  grid-template-columns: max-content 80px max-content;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 2px;
  align-items: center;
  white-space: nowrap;
  min-width: 0;
}

.transport-route-start {
  grid-column: 1;
  grid-row: 1;
}

.transport-route-connector {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.transport-route-end {
  grid-column: 3;
  grid-row: 1;
}

.transport-route-start-sub {
  grid-column: 1;
  grid-row: 2;
}

.transport-route-connector-sub {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
}

.transport-route-end-sub {
  grid-column: 3;
  grid-row: 2;
}

.transport-route-sub,
.transport-info span {
  font-size: .7rem;
  color: var(--navy-60);
}

.transport-route-connector img {
  width: 40px;
}

.transport-info {
  grid-area: info;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
  min-width: 0;
}

.transport-button {
  grid-area: button;
  height: 40px;
  background-color: var(--navy);
  color: var(--white);
  padding: 0 20px;
  margin-right: -20px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.transport-button:hover {
  padding-right: 30px;
  margin-left: -10px;
}

.transport-button img {
  height: 18px;
}

@media (max-width: 800px) {

  .adventure-day-widget-transport-grid,
  .adventure-day-widget-transport-grid:has(.transport-button) {
    width: 100%;
    grid-template-columns: max-content 1fr auto;
    grid-template-areas:
      "badge info button"
      "route route route";
    gap: 18px 12px;
  }

  .adventure-day-widget-transport-grid:not(:has(.transport-button)) {
    grid-template-columns: max-content 1fr;
    grid-template-areas:
      "badge info"
      "route route";
  }

  .transport-info {
    align-items: flex-start;
    justify-self: start;
  }

  .transport-button {
    justify-self: end;
  }

  .transport-route {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
    column-gap: 12px;
  }

  .transport-route-end,
  .transport-route-end-sub {
    text-align: right;
    justify-self: end;
  }

  .transport-route-connector,
  .transport-route-connector-sub {
    justify-self: center;
  }
}

/* ADVENTURE DAY WIDGET TRANSPORT END */
/* ADVENTURE DAY WIDGET ACTIVE */

.adventure-day-widget-active-grid {
  width: calc(100% - 60px);
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-20);
  font-size: .9rem;

  display: grid;
  grid-template-columns: max-content 1fr auto;
  grid-template-areas:
    "route . info";
  align-items: center;
  gap: 20px;
}

.adventure-day-widget-active-grid:has(.active-button) {
  grid-template-columns: max-content 1fr auto auto;
  grid-template-areas:
    "route . info button";
}

.active-route {
  grid-area: route;
  display: grid;
  grid-template-columns: max-content 80px max-content;
  grid-template-rows: auto auto;
  column-gap: 20px;
  row-gap: 2px;
  align-items: center;
  white-space: nowrap;
  min-width: 0;
}

.active-route-start {
  grid-column: 1;
  grid-row: 1;
}

.active-route-connector {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.active-route-end {
  grid-column: 3;
  grid-row: 1;
}

.active-route-start-sub {
  grid-column: 1;
  grid-row: 2;
}

.active-route-connector-sub {
  grid-column: 2;
  grid-row: 2;
  text-align: center;
}

.active-route-end-sub {
  grid-column: 3;
  grid-row: 2;
}

.active-route-sub {
  font-size: .7rem;
  color: var(--navy-60);
}

.active-route-connector img {
  width: 40px;
}

.active-info {
  grid-area: info;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 15px;
  color: var(--aqua);
  min-width: 0;
}

.active-info-tag {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  font-size: .8rem;
  white-space: nowrap;
}

img.active-info-tag-icon {
  width: 15px;
  height: auto;
}

.active-button {
  grid-area: button;
  height: 40px;
  background-color: var(--navy);
  color: var(--white);
  padding: 0 20px;
  margin-right: -20px;
  border-top-left-radius: 40px;
  border-bottom-left-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s ease;
}

.active-button:hover {
  padding-right: 30px;
  margin-left: -10px;
}

.active-button img {
  height: 18px;
}

.adventure-day-widget-content {
  width: calc(100% - 60px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--navy-20);
}

.adventure-day-widget-content > .adventure-day-widget-active-grid {
  width: 100%;
  padding-bottom: 0;
  border-bottom: 0;
}

.adventure-day-widget-active-grid {
  width: 100%;
}

.active-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.active-content-map {
  height: 100%;
  width: calc(40% - 20px);
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  align-self: flex-start;
  overflow: hidden;
  border-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border: 0px solid var(--navy-40);
  box-shadow: 10px 10px 40px var(--navy-10);
  z-index: 2;
}

.route-marker {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--aqua);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.route-marker-end {
  background: var(--navy);
}

.route-direction-arrow {
  width: 15px;
  height: 15px;
  pointer-events: none;
}

.route-direction-arrow-inner {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--aqua-90);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

.route-direction-arrow-triangle {
  width: 0;
  height: 0;

  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 7px solid var(--white);
  margin-left: 2px;
}

.route-subitem-marker {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid #003445;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  cursor: pointer;
}

.route-subitem-marker-inner {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--aqua);
  margin: 3px;
}

.active-content-images-wrapper {
  height: 100%;
  width: calc(40% - 20px);
  aspect-ratio: 4 / 3;
  flex-shrink: 0;
  align-self: flex-start;
  overflow: hidden;
  border-radius: 10px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border: 0px solid var(--navy-40);
  box-shadow: 10px 10px 40px var(--navy-10);
  z-index: 2;
}

.active-content-images-single {
  height: calc(100%);
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.active-content-images-gallery {
  min-width: fit-content;
  max-width: calc(100% - 20px);
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background-color: var(--white-60);
  margin-bottom: 10px;
  border-radius: 10px;
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  transform: scale(1);
  transition: all ease .3s;
}

.active-content-images-gallery:hover {
  background-color: var(--white);
  transform: scale(1.02);
}

.active-content-images-gallery-single {
  width: 50px;
  aspect-ratio: 4/3;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  cursor: pointer;
  filter: grayscale(.6);
  transition: all ease .3s;
}

.active-content-images-gallery-single:hover {
  filter: grayscale(0);
}

.active-content-images-gallery-single.current {
  filter: grayscale(0);
  transition: all ease .3s;
}

.active-content-images-gallery:has(.active-content-images-gallery-single:not(.current):hover)
  .active-content-images-gallery-single.current:not(:hover) {
  filter: grayscale(.6);
}

.active-content-wrapper {
  width: calc(60% - 20px);
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1;
}

.active-content-description {
  width: calc(100% - 20px);
  background-color: var(--white);
  padding: 20px;
  padding-left: 40px;
  margin-left: -40px;
  font-size: .9rem;
  border-radius: 10px;
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  white-space: wrap;
  white-space-collapse: preserve-breaks;
  user-select: none;
  -webkit-user-select: none;
  line-height: 1.4;
}

.active-content-carousel-title {
  font-family: "MsMadi", sans-serif;
  font-size: 1.8rem;
  margin-left: -10px;
  user-select: none;
  -webkit-user-select: none;
}

.active-content-carousel {
  width: calc(100%);
  padding-left: 40px;
  padding-right: 20px;
  margin-left: -40px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  overflow-x: auto;

  padding-top: 1px;
  padding-bottom: 1px;

  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  scroll-behavior: smooth;

  -ms-overflow-style: none;
  scrollbar-width: none;
}

.active-content-carousel::-webkit-scrollbar {
  display: none;
}

.active-content-carousel.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.active-content-carousel-single {
  height: fit-content;
  width: 30%;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--navy-40);
  padding-bottom: 10px;
  flex-shrink: 0;
  flex-grow: 0;
  user-select: none;
  transition: all ease .3s;
}

.active-content-carousel-single.is-active-location {
  border-color: var(--aqua);
  box-shadow: 0 8px 24px var(--aqua-40);
  transform: translateY(-2px);
}

.active-content-carousel-single-img {
  width: 100%;
  aspect-ratio: 4/2;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.active-content-carousel-single-category {
  display: flex;
  gap: 7px;
  font-size: .8rem;
  align-items: center;
  justify-content: flex-start;
  line-height: 1;
  color: var(--white);
  background-color: var(--aqua);
  padding: 5px 10px;
  user-select: none;
}

img.active-content-carousel-single-category-icon {
  height: 15px;
}

.active-content-carousel-single-title {
  font-size: .9rem;
  padding: 10px;
  padding-bottom: 5px;
  user-select: none;
}

.active-content-carousel-single-description {
  font-size: .8rem;
  padding: 10px;
  padding-top: 0px;
  user-select: none;
}

a.active-content-carousel-single-button {
  width: calc(100% - 40px);
  padding: 5px 10px;
  margin: 0 10px;
  background-color: var(--aqua);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--white);
  text-decoration: none;
  border-radius: 5px;
  user-select: none;
  transition: all ease .3s;
}

a.active-content-carousel-single-button:hover {
  background-color: var(--aqua-80);
}

@media (max-width: 800px) {

  .adventure-day-widget-active-grid,
  .adventure-day-widget-active-grid:has(.active-button) {
    width: 100%;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "info button"
      "route route";
    gap: 14px 12px;
  }

  .active-info {
    justify-self: start;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    max-width: none;
    min-width: 0;
  }

  .active-info-tag {
    min-width: 0;
    white-space: nowrap;
  }

  .active-button {
    justify-self: end;
  }

  .active-route {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
    column-gap: 12px;
  }

  .active-route-end,
  .active-route-end-sub {
    text-align: right;
    justify-self: end;
  }

  .active-route-connector,
  .active-route-connector-sub {
    justify-self: center;
  }

  .active-content {
    flex-direction: column;
    gap: 20px;
  }

  .active-content-map {
    width: 100%;
    aspect-ratio: 4/5;
    flex-shrink: 1;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0px;
  }

  .active-content-wrapper {
    width: calc(100% - 20px);
  }

  .active-content-description {
    width: calc(100% - 20px);
    padding-left: 20px;
    margin-left: 0px;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    margin-top: -20px;
  }

  .active-content-carousel {
    width: calc(100% + 20px);
    padding-left: 37px;
    padding-right: 20px;
    margin-left: -37px;
  }

  .active-content-carousel-single {
    width: 60%;
  }

  .active-content-images-wrapper {
    width: 100%;
    height: auto;
    aspect-ratio: 10/9;
    flex-shrink: 1;
    border-top-right-radius: 10px;
    border-bottom-left-radius: 0;
  }

  .active-content-images-single {
    height: 100%;
    min-height: 0;
  }
}

/* ADVENTURE DAY WIDGET ACTIVE END */
/* PROFILE */

.profile-features {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

a.profile-feature {
  all: unset;
  width: calc(100% / 4 - (30px / 4));
  aspect-ratio: 6/3;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all ease .3s;
}

.profile-feature-content {
  height: calc(100% - 40px);
  width: calc(100% - 40px);
  padding: 20px;
  background-color: var(--navy-60);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  transition: all ease .3s;
}

.profile-feature-content:hover {
  background-color: var(--navy-90);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.profile-feature-title {
  color: var(--white);
  text-decoration: none;
  font-size: .9rem;
}

@media (max-width: 1000px) {
  a.profile-feature {
    width: calc(100% / 3 - (20px / 3));
  }
}

@media (max-width: 800px) {
  a.profile-feature {
    width: calc(100% / 2 - (10px / 2));
  }
}

@media (max-width: 600px) {
  a.profile-feature {
    width: calc(100%);
  }
}

/* PROFILE END */
/* MY SUPPORT */

.mysupport-wrapper {
  width: calc(100% - 40px);
  padding: 20px;
  border-radius:10px;
  background-color: var(--navy-10);
  border: 1px solid var(--navy-40);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 80px;
  cursor: default;
}

.mysupport-content {
  max-width: 60%;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mysupport-title {
  font-size: .9rem;
}

.mysupport-description {
  font-size: .8rem;
  line-height: 1.4;
}

.mysupport-options {
  max-width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.mysupport-options.left {
  max-width: 100%;
  justify-content: flex-start;
  flex-direction: row;
  margin-top: 10px;
}

a.mysupport-option, button.mysupport-option {
  all: unset;
  padding: 10px 15px;
  background-color: var(--navy-80);
  color: var(--white);
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .8rem;
  text-wrap: nowrap;
  border-radius: 5px;
  cursor: pointer;
  transition: all ease .3s;
}

a.mysupport-option:hover,  button.mysupport-option:hover {
  background-color: var(--navy);
}

.mysupport-key {
  padding: 10px 15px;
  border: 1px solid var(--navy-80);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: .8rem;
  text-wrap: nowrap;
  gap: 5px;
  border-radius: 5px;
  cursor: not-allowed;
  overflow-y: scroll;
}

.mysupport-key span {
  font-weight: 800;
  letter-spacing: 1px;
}

.mysupport-key-note {
  font-size: .7rem;
  color: var(--navy-60);
}

@media (max-width: 800px) {
  .mysupport-wrapper {
    flex-direction: column;
    gap: 5px;
  }

  .mysupport-options {
    width: 100%;
    max-width: 100%;
  }

  .mysupport-content {
    width: 100%;
    max-width: 100%;
    gap: 5px;
  }

  .mysupport-options.left {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    gap: 5px;
  }

  a.mysupport-option, button.mysupport-option {
    width: calc(100% - 30px);
  }

  .mysupport-key {
    width: calc(100% - 32px);
    margin-top: -5px;
  }

  .mysupport-key-note {
    width: 100%;
    text-align: center;
  }
}

/* MY SUPPORT END */
/* LEGAL */

.legal-print-logo {
  height: 4mm;
  margin-bottom: 30px;
}

svg.legal-print-logo {
  height: 3.8mm;
  fill: var(--navy);
}

.legal-print-title {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.legal-print-subtitle {
  font-size: .8rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.legal-hero-updated {
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 500;
  text-align: left;
  padding-left: 10px;
  border-left: 1px solid var(--navy);
  padding-top: 10px;
}

.legal-hero-sep {
  width: 60px;
  border-top: 1px solid var(--navy);
}

.legal-section-wrapper {
  height: auto;
  width: calc(100% - 80px);
  background-color: var(--white);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px;
  padding-top: calc(40px + 40px);
}

.legal-section-wrapper.print {
  height: auto;
  width: calc(100%);
  background-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0px;
  padding-top: calc(10px);
  margin-bottom: 20px;
  border-top: 1px solid var(--navy);
}

.legal-section-title {
  height: 40px;
  width: auto;
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 500;
  text-align: left;
  background-color: var(--navy);
  color: var(--white);
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  cursor: default;
}

.legal-section-title.print {
  height: 40px;
  width: auto;
  position: unset;
  top: 0;
  left: 0;
  font-family: "Montserrat", sans-serif;
  font-size: .7rem;
  font-weight: 600;
  text-align: left;
  background-color: transparent;
  color: var(--navy);
  padding-left: 0px;
  padding-right: 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  cursor: default;
}

.legal-section-text {
  font-family: "Montserrat", sans-serif;
  font-size: .8rem;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  color: var(--navy);
  cursor: default;
}

.legal-section-text.print {
  font-family: "Montserrat", sans-serif;
  font-size: .6rem;
  font-weight: 400;
  line-height: 1.4;
  text-align: left;
  color: var(--navy);
  cursor: default;
}

.legal-print-wrapper {
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid var(--aqua-40);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  cursor: default;
  gap: 10px;
}

.legal-print-info {
  font-size: .8rem;
  color: var(--aqua);
}

.legal-print-buttons {
  display: flex;
  flex-direction: row;
  gap: 5px;
}

a.legal-print-button {
  height: 30px;
  padding: 0 10px;
  background-color: var(--white);
  color: var(--aqua);
  font-size: .8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color ease .3s;
}

a.legal-print-button:hover {
  background-color: var(--white-60);
}

@media (max-width: 800px) {
  .legal-print-wrapper {
    flex-direction: column;
  }
  .legal-print-buttons {
    flex-direction: column;
  }
}

/* LEGAL END */
/* HIDE ON */

.hideOnDesktop {
  display: none;
}

.hideOnMobile {
  display: flex;
}

@media (max-width: 800px) {
  .hideOnDesktop {
    display: flex;
  }

  .hideOnMobile {
    display: none;
  }
}

/* HIDE ON END */
/* SEPERATORS */

.sep-line {
  height: 0px;
  width: 100%;
  border-bottom: 1px solid var(--navy);
  flex-shrink: 0;
  margin-top: 5px;
  margin-bottom: 5px;
}

.sep-minus20 {
  height: 0px;
  width: 0px;
  margin-top: -20px;
}

.sep-minus30 {
  height: 0px;
  width: 0px;
  margin-top: -30px;
}

.sep-5 {
  height: 5px;
  width: 5px;
}

.sep-10 {
  height: 10px;
  width: 10px;
}

.sep-20 {
  height: 20px;
  width: 20px;
}

.sep-30 {
  height: 30px;
  width: 30px;
}

.sep-40 {
  height: 40px;
  width: 40px;
}

.sep-50 {
  height: 50px;
  width: 50px;
}

.sep-60 {
  height: 60px;
  width: 60px;
}

.sep-80 {
  height: 80px;
  width: 80px;
}

/* SEPERATORS END */