@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap");
[data-scroll-container] {
  perspective: 1px;
}

::-moz-selection {
  color: #FDDBB2;
}

::selection {
  color: #FDDBB2;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  font-family: "Inter", sans-serif;
  scroll-behavior: smooth;
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  font-size: 1.6rem;
  background: #16181D;
  overflow: hidden;
}

a,
a:visited,
a:hover {
  text-decoration: none;
}

.logo-sm {
  position: absolute;
  width: 13rem;
  top: 7vh;
  left: 25rem;
  z-index: 9;
  mix-blend-mode: exclusion;
}
@media (orientation: portrait) {
  .logo-sm {
    top: 3.5vh;
    left: 10vw !important;
  }
}
@media (max-width: 1200px) {
  .logo-sm {
    left: 20rem;
    width: 12rem;
  }
}
@media (max-width: 992px) {
  .logo-sm {
    left: 15rem;
  }
}
@media (max-width: 768px) {
  .logo-sm {
    left: 10rem;
  }
}
@media (max-width: 600px) {
  .logo-sm {
    left: 5rem;
  }
}
@media (max-width: 480px) {
  .logo-sm {
    left: 3rem;
    width: 11rem;
  }
}

.menu-button {
  position: fixed;
  background: transparent;
  outline: none;
  border: none;
  border: 0;
  padding: 0;
  top: 7vh;
  right: 25rem;
  width: 33px;
  height: 18px;
  z-index: 99999;
  cursor: pointer;
  mix-blend-mode: exclusion;
}
@media (orientation: portrait) {
  .menu-button {
    top: 3.5vh;
    right: 10vw !important;
  }
}
@media (max-width: 1200px) {
  .menu-button {
    right: 20rem;
  }
}
@media (max-width: 992px) {
  .menu-button {
    right: 15rem;
  }
}
@media (max-width: 768px) {
  .menu-button {
    right: 10rem;
  }
}
@media (max-width: 600px) {
  .menu-button {
    right: 5rem;
  }
}
@media (max-width: 480px) {
  .menu-button {
    right: 3rem;
  }
}
.menu-button .menu-bars {
  display: flex;
  flex-direction: column;
}
.menu-button .menu-bars .bar1,
.menu-button .menu-bars .bar2,
.menu-button .menu-bars .bar3 {
  background-color: #fff;
  height: 2px;
  position: relative;
  transform-origin: center center;
}
.menu-button .menu-bars .bar1 {
  width: 16px;
  margin: 0 0 2px 0;
}
.menu-button .menu-bars .bar2 {
  width: 28px;
  margin: 2px 0;
}
.menu-button .menu-bars .bar3 {
  width: 16px;
  left: 16px;
  margin: 2px 0 0 0;
}

nav {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  right: 0;
  background-color: white;
  z-index: 9999;
  height: 100vh;
  opacity: 0.95;
}
nav section {
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  width: 100%;
  text-align: center;
}
nav section p,
nav section a {
  color: #16181D;
  text-decoration: none;
  padding: 3% 0;
  width: 100%;
  font-size: 3rem;
  font-weight: 500;
  cursor: pointer;
}
@media (max-width: 1200px) {
  nav section p,
nav section a {
    font-size: 2.8rem;
  }
}
@media (max-width: 992px) {
  nav section p,
nav section a {
    font-size: 2.6rem;
  }
}
@media (max-width: 768px) {
  nav section p,
nav section a {
    font-size: 2.3rem;
  }
}
@media (max-width: 600px) {
  nav section p,
nav section a {
    font-size: 2.1rem;
  }
}
@media (max-width: 480px) {
  nav section p,
nav section a {
    font-size: 1.9rem;
  }
}
@media (orientation: portrait) {
  nav section p,
nav section a {
    padding: 12% 0;
  }
}
nav section p:hover,
nav section a:hover {
  color: #84154D;
  transform: scale(1.1);
  transition: 0.4 ease;
}

.skew {
  -webkit-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  -moz-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  -ms-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  -o-clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0 100%);
}

#back-to-top {
  position: fixed;
  bottom: 7vh;
  right: 10vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 100vmin;
  padding: 1rem;
  z-index: 99999;
  border: none;
  outline: none;
  color: #181D25;
  visibility: hidden;
  transition: 0.5;
  cursor: pointer;
  font-size: 2.5rem;
}
@media (max-width: 1200px) {
  #back-to-top {
    right: 20rem;
  }
}
@media (max-width: 992px) {
  #back-to-top {
    right: 15rem;
  }
}
@media (max-width: 768px) {
  #back-to-top {
    right: 10rem;
  }
}
@media (max-width: 600px) {
  #back-to-top {
    right: 5rem;
  }
}
@media (max-width: 480px) {
  #back-to-top {
    right: 3rem;
  }
}
@media (orientation: portrait) {
  #back-to-top {
    font-size: 5vw;
    padding: 2vw;
    right: 10vw;
  }
}
#back-to-top:hover {
  filter: brightness(150%);
  translate: 0 10px;
  transition: translate 0.4s ease;
}

footer {
  background: #16181D;
  padding: 1rem 25rem;
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1200px) {
  footer {
    padding: 1rem 20rem;
  }
}
@media (max-width: 992px) {
  footer {
    padding: 1rem 15rem;
  }
}
@media (max-width: 768px) {
  footer {
    padding: 1rem 10rem;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 1rem 5rem;
  }
}
@media (max-width: 480px) {
  footer {
    padding: 1rem 3rem;
  }
}
@media (orientation: portrait) {
  footer {
    padding: 1rem 10vw;
  }
}
footer p {
  color: rgba(255, 255, 255, 0.3);
  font-weight: 300;
  font-size: 1.1rem;
}
@media (max-width: 600px) {
  footer p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  footer p {
    font-size: 0.9rem;
  }
}
footer p a {
  text-decoration: none;
}
footer p a,
footer p span {
  color: rgba(255, 255, 255, 0.5);
}

.menu-button {
  right: 10vw !important;
}
.logo-sm {
  left: 10vw !important;
}

footer {
  padding: 1rem 10vw;
}

.main-map {
  width: 100%;
  height: 100vh;
  background: linear-gradient(290.13deg, #16181D 0%, #181D25 150.76%);
  transition: 1s linear;
  position: relative;
  isolation: isolate;
}
.main-map .main-map-container,
.main-map .logo-lg-wrapper {
  width: 34vmax;
  height: 34vmax;
  display: flex;
  justify-content: center;
  align-items: center;
}
.main-map .logo-lg-wrapper {
  position: absolute;
  border-radius: 15px;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -65%);
  mix-blend-mode: overlay;
  z-index: -1;
  justify-content: flex-end;
}
.main-map .logo-lg-wrapper img {
  height: 100%;
  opacity: 0.09;
}
@media (orientation: portrait) {
  .main-map .logo-lg-wrapper {
    display: none;
  }
}
.main-map .info-container {
  position: absolute;
  pointer-events: none;
  height: 20vmin;
  width: 60vmax;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-map .info-container .spot {
  width: 2rem;
  height: 2rem;
  background: #fff;
  border-radius: 100vmin;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  transition: 1s;
  -webkit-animation: pulse 1.4s infinite;
          animation: pulse 1.4s infinite;
  z-index: 999;
}
@media (max-width: 1200px) {
  .main-map .info-container .spot {
    width: 1.8rem;
    height: 1.8rem;
  }
}
@media (max-width: 768px) {
  .main-map .info-container .spot {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.main-map .info-container .line {
  width: 55%;
  height: 5px;
  background: #fff;
  margin-right: 5%;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
@media (max-width: 1200px) {
  .main-map .info-container .line {
    height: 4px;
  }
}
@media (max-width: 768px) {
  .main-map .info-container .line {
    height: 3px;
  }
}
.main-map .info-container .info-content {
  color: #fff;
  display: flex;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  height: 100%;
  width: 40%;
}
.main-map .info-container .info-content h1 {
  font-size: 3.5rem;
  padding-bottom: 8%;
}
@media (max-width: 1200px) {
  .main-map .info-container .info-content h1 {
    font-size: 2.3rem;
  }
}
@media (max-width: 992px) {
  .main-map .info-container .info-content h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .main-map .info-container .info-content h1 {
    font-size: 1.5rem;
  }
}
.main-map .info-container .info-content p {
  font-size: 2.2rem;
  font-weight: 400;
  opacity: 0.8;
}
@media (max-width: 1200px) {
  .main-map .info-container .info-content p {
    font-size: 1.6rem;
  }
}
@media (max-width: 992px) {
  .main-map .info-container .info-content p {
    font-size: 1.4rem;
  }
}
@media (max-width: 768px) {
  .main-map .info-container .info-content p {
    font-size: 1.1rem;
  }
}
@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(0, 171, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 171, 0, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 136, 0, 0.4);
  }
  70% {
    box-shadow: 0 0 0 30px rgba(0, 171, 0, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 171, 0, 0);
  }
}
@-webkit-keyframes reveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes reveal {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main-map .main-map-container {
  background: #fff;
  box-shadow: inset 0 0 0 1.1rem #FDDBB2;
  position: absolute;
  border-radius: 15px;
  left: 50%;
  top: 65%;
  transform: translate(-50%, -65%);
}
@media (orientation: portrait) {
  .main-map .main-map-container {
    width: 80vmin;
    height: 80vmin;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.main-map .main-map-container .learn {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  -webkit-animation: 3s hide-learn;
          animation: 3s hide-learn;
  border-radius: 15px;
}
.main-map .main-map-container .learn p {
  font-size: 3vw;
  font-weight: 600;
  line-height: 1.7;
  color: #16181D;
  text-align: center;
  width: 70%;
}
@media (orientation: portrait) {
  .main-map .main-map-container .learn p {
    font-size: 5vw;
  }
}
.main-map .main-map-container img {
  width: 94%;
}
.main-map .main-map-container svg {
  position: absolute;
  width: 94%;
  height: 100%;
}
.main-map .main-map-container svg path {
  opacity: 0;
}
.main-map .main-map-container svg path:hover {
  opacity: 1;
  cursor: pointer;
}
@media (orientation: portrait) {
  .main-map .main-map-container svg path:hover {
    opacity: 0;
  }
}
.main-map .main-map-container .block-view-container {
  width: 30%;
  height: 30%;
  background: #FDDBB2;
  position: absolute;
  top: 0;
  right: 0;
  border-top-right-radius: 15px;
}
.main-map .main-map-container .block-view-container img.block-view {
  height: 100%;
  padding: 1.1rem;
}

.closer-view {
  width: 100vw;
  height: 100vh;
  display: flex;
  background: #16181D;
}
.closer-view:last-child {
  padding-bottom: 20vh;
  height: 120vh;
}
@media (orientation: portrait) {
  .closer-view {
    flex-direction: column;
    height: unset;
  }
  .closer-view:last-child {
    padding-bottom: 20vw;
    height: unset;
  }
}
.closer-view .img-container {
  width: 55%;
  background: #FDDBB2;
  display: flex;
  padding: 1% 0 1% 1%;
}
@media (orientation: portrait) {
  .closer-view .img-container {
    width: 100%;
    height: 50vh;
    flex-direction: column;
    padding: 2%;
    position: relative;
  }
}
.closer-view .img-container .map-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80%;
  background: #fff;
  padding: 5%;
}
@media (orientation: portrait) {
  .closer-view .img-container .map-container {
    width: 100%;
    height: 80%;
    padding: 2%;
  }
}
.closer-view .img-container .map-container img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (orientation: portrait) {
  .closer-view .img-container .map-container img {
    height: 100%;
    width: unset;
  }
}
.closer-view .img-container .block-view-container {
  width: 20%;
  display: flex;
  flex-flow: column nowrap;
}
@media (orientation: portrait) {
  .closer-view .img-container .block-view-container {
    width: 100%;
    height: 20%;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
  }
}
.closer-view .img-container .block-view-container img {
  background: #fff;
  padding: 15%;
  width: 100%;
}
@media (orientation: portrait) {
  .closer-view .img-container .block-view-container img {
    padding: 1%;
    width: unset;
    height: 100%;
  }
}
.closer-view .img-container .block-view-container h1 {
  width: 100%;
  text-align: center;
  color: #fff;
  display: none;
  font-weight: 700;
  font-size: 6vw;
  text-shadow: 3px 2px 5px hsla(0deg, 0%, 0%, 0.1);
}
@media (orientation: portrait) {
  .closer-view .img-container .block-view-container h1 {
    display: block;
  }
}
.closer-view .img-container .block-view-container #show-type-4,
.closer-view .img-container .block-view-container #show-type-3 {
  padding: 2rem;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  width: 100%;
  text-align: center;
}
@media (orientation: portrait) {
  .closer-view .img-container .block-view-container #show-type-4,
.closer-view .img-container .block-view-container #show-type-3 {
    display: none;
  }
}
@media (max-width: 1200px) {
  .closer-view .img-container .block-view-container #show-type-4,
.closer-view .img-container .block-view-container #show-type-3 {
    padding: 1.8rem 1rem;
    font-size: 1.5rem;
  }
}
@media (max-width: 992px) {
  .closer-view .img-container .block-view-container #show-type-4,
.closer-view .img-container .block-view-container #show-type-3 {
    padding: 1.4rem 1rem;
    font-size: 1.3rem;
  }
}
@media (max-width: 768px) {
  .closer-view .img-container .block-view-container #show-type-4,
.closer-view .img-container .block-view-container #show-type-3 {
    padding: 1.2rem 0.8rem;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .closer-view .img-container .block-view-container #show-type-4,
.closer-view .img-container .block-view-container #show-type-3 {
    padding: 0.8rem 0.6rem;
    font-size: 0.7rem;
  }
}
.closer-view .img-container .block-view-container #show-type-4:hover,
.closer-view .img-container .block-view-container #show-type-3:hover {
  filter: saturate(130%);
  translate: 0 -6px;
  transition: translate 0.4s ease;
}
.closer-view .img-container .block-view-container #show-type-4:active,
.closer-view .img-container .block-view-container #show-type-3:active {
  filter: saturate(150%);
}
.closer-view .img-container .show-btn {
  display: none;
}
@media (orientation: portrait) {
  .closer-view .img-container .show-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2vmin;
    color: #fff;
    background: #FDDBB2;
    font-size: 1.8vw;
    font-weight: 500;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    width: 18%;
    text-align: center;
    height: 4vh;
    position: absolute;
    bottom: -4vh;
    left: 50%;
    transform: translate(-50%);
    border-radius: 0 0 2.9vmin 2.9vmin;
    cursor: pointer;
  }
  .closer-view .img-container .show-btn::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 2vh;
    height: 2vh;
    background: transparent;
    left: -2vh;
    top: 0;
    border-top-right-radius: 100%;
    box-shadow: 1.1vh -1.1vh 0 1vh #FDDBB2;
  }
  .closer-view .img-container .show-btn::after {
    content: "";
    position: absolute;
    z-index: -1;
    width: 2vh;
    height: 2vh;
    background: transparent;
    right: -2vh;
    top: 0;
    border-top-left-radius: 100%;
    box-shadow: -1.1vh -1.1vh 0 1vh #FDDBB2;
  }
}
@media (orientation: portrait) {
  .closer-view .special::before {
    content: "";
    position: absolute;
    width: 15%;
    height: 6px;
    background: #FDDBB2;
    left: 50%;
    bottom: -3px;
    translate: -50% 0;
  }
}
.closer-view .info {
  width: 45%;
  color: #fff;
  padding: 5rem 10vw 5rem 6%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
}
@media (orientation: portrait) {
  .closer-view .info {
    width: 100%;
    padding: 0 10vw;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
  }
}
.closer-view .info h1 {
  font-weight: 700;
  font-size: 2.5vw;
  margin-bottom: 12%;
}
@media (orientation: portrait) {
  .closer-view .info h1 {
    display: none;
  }
}
.closer-view .info table {
  width: 100%;
}
@media (orientation: portrait) {
  .closer-view .info table {
    padding: 5% 0;
  }
}
.closer-view .info table tr td {
  font-size: 2vmin;
  line-height: 1.9;
  font-weight: 300;
  opacity: 0.8;
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .closer-view .info table tr td {
    line-height: 1.7;
  }
}
@media (max-width: 768px) {
  .closer-view .info table tr td {
    line-height: 1.6;
  }
}
@media (max-width: 600px) {
  .closer-view .info table tr td {
    line-height: 1.5;
  }
}
@media (max-width: 480px) {
  .closer-view .info table tr td {
    line-height: 1.4;
  }
}
@media (orientation: portrait) {
  .closer-view .info table tr td {
    font-size: 2.5vw;
    line-height: 1.9;
  }
}
.closer-view .info table tr td:last-child {
  text-align: right;
  padding-right: 0;
  padding-left: 0;
}
.closer-view .info table tr.last td,
.closer-view .info table tr.first td {
  padding-bottom: 6%;
}
@media (orientation: portrait) {
  .closer-view .info table tr.last td,
.closer-view .info table tr.first td {
    padding-bottom: 3%;
  }
}
.closer-view .info table tr.bold td {
  font-weight: 400;
  opacity: 0.5;
}

@media (orientation: portrait) {
  .hotspot {
    position: absolute;
    width: 1.6vw;
    height: 1.6vw;
    background: #fff;
    border-radius: 100vmin;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
    transition: 1s;
    -webkit-animation: pulse2 1.4s infinite;
            animation: pulse2 1.4s infinite;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  @-webkit-keyframes pulse2 {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4);
    }
    70% {
      box-shadow: 0 0 0 30px rgba(0, 255, 0, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
  }
  @keyframes pulse2 {
    0% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0.4);
    }
    70% {
      box-shadow: 0 0 0 30px rgba(0, 255, 0, 0);
    }
    100% {
      box-shadow: 0 0 0 0 rgba(0, 255, 0, 0);
    }
  }
}/*# sourceMappingURL=page2.css.map */