* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #09090b;
  font-family: "Open_Sans", sans-serif;
}

@font-face {
  font-family: "Open_Sans";
  font-style: normal;
  font-weight: 800;
  src: url(/assets/fonts/Open_Sans/static/OpenSans-Bold.ttf) format("truetype");
}
@font-face {
  font-family: "Open_Sans";
  font-style: normal;
  font-weight: 400;
  src: url(/assets/fonts/Open_Sans/static/OpenSans-Medium.ttf)
    format("truetype");
}
@font-face {
  font-family: "Open_Sans";
  font-style: normal;
  font-weight: 300;
  src: url(/assets/fonts/Open_Sans/static/OpenSans-Regular.ttf)
    format("truetype");
}
@font-face {
  font-family: "Open_Sans";
  font-style: normal;
  font-weight: 200;
  src: url(/assets/fonts/Open_Sans/static/OpenSans-Light.ttf) format("truetype");
}
@font-face {
  font-family: "Julius_Sans_One";
  font-style: normal;
  font-weight: 100;
  src: url(/assets/fonts/Julius_Sans_One/JuliusSansOne-Regular.ttf)
    format("truetype");
}

::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #242421;
}
::-webkit-scrollbar-thumb {
  background: #0a0a0a;
}
::-webkit-scrollbar-thumb:hover {
  background: #000;
}
html.lenis,
html.lenis body {
  height: auto;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
}

nav {
  position: fixed;
  width: 100%;
  padding: 2.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3em;
}

.nav-item {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.nav-item a {
  position: relative;
  top: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 200;
  opacity: 0.35;
}

.nav-item a#active {
  opacity: 1;
}

.hero {
  position: absolute;
  width: 95%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  color: #fff;
}

.title {
  flex: 2;
  text-align: center;
  font-size: 40px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  font-family: "Julius_Sans_One", sans-serif;
}

.title p {
  position: relative;
  top: 350px;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.preview {
  position: absolute;
  bottom: 2em;
  right: 2em;
  display: flex;
  gap: 0.3em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.preview img {
  position: relative;
  top: 100px;
  width: 80px;
  height: 50px;
}

.slide-num {
  margin: 3em 0;
  text-align: center;
  color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.slide-num p {
  position: relative;
  top: 30px;
}

.container {
  position: fixed;
  width: 100%;
  height: 100%;
  display: flex;
  gap: 1em;
}

.container .col {
  position: relative;
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.col .item {
  position: relative;
  flex: 1;
  width: 100%;
  background: gainsboro;
  overflow: hidden;
}

.c-1,
.c-3,
.c-5 {
  top: 100%;
}

.c-1 .item,
.c-3 .item,
.c-5 .item {
  top: 100%;
}

.c-2 .item,
.c-4 .item {
  top: -100%;
}

.main-img {
  filter: brightness(70%);
}

.hotel-link {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hotel-linked {
  color: #fff;
  font-weight: 200;
  text-decoration: none;
}

.hotel-linked img {
  position: absolute;
  width: 34px;
  margin-top: 5px;
}

@media (max-width: 900px) {
  .slide-num {
    text-align: left;
    padding-left: 2em;
    margin-bottom: 2.5em;
  }

  .hotel-linked img {
    position: absolute;
    width: 30px;
    margin-top: 0px;
  }

  .title {
    font-size: 30px;
  }

  nav {
    padding: 1.8em 0 0 1em;
  }
}
