@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@100;200;300;400;500;600;700&display=swap");
:root {
  --max-content-width: 1000px;
  --large-screen-side-width: 38vw;
}

* {
  box-sizing: border-box;
}

body {
  font-weight: 400;
  font-family: "Inter Tight", Helvetica, Geneva, Tahoma, sans-serif;
  margin: 0;
  color: white;
  background: #777777;
  font-size: 1.2rem;
}
@media (min-width: 1400px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: white;
}

img {
  max-width: 95%;
  max-height: 95%;
}

#sections {
  scroll-snap-type: y proximity;
  overflow-y: scroll;
  scrollbar-width: 0;
  -ms-overflow-style: none;
  --color1: #666;
  --color2: white;
}

#sections::-webkit-scrollbar {
  display: none;
  height: 0 !important;
}

#sections > section {
  width: 100vw;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  background-color: var(--color1);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  scroll-snap-align: start;
  background-attachment: scroll;
}
@media (min-width: 1400px) {
  #sections > section {
    flex-direction: row;
  }
}
#sections > section .title {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: stretch;
  gap: 1vw;
}
@media (min-width: 1400px) {
  #sections > section .title {
    align-items: flex-end;
    text-align: end;
    background: var(--color2);
    flex-shrink: 0;
    flex-basis: var(--large-screen-side-width);
    gap: 0;
  }
}
#sections > section h1,
#sections > section h2,
#sections > section h3,
#sections > section h4 {
  line-height: 100%;
  padding: 0 0.5rem;
  margin: 0;
}
@media (min-width: 1400px) {
  #sections > section h1,
#sections > section h2,
#sections > section h3,
#sections > section h4 {
    letter-spacing: -0.1rem;
    padding: 0.5rem 2rem;
  }
}
#sections > section h1 {
  font-size: min(13vw, 6rem);
  font-weight: 700;
  color: white;
  background: black;
}
@media (min-width: 1400px) {
  #sections > section h1 {
    align-self: stretch;
  }
}
#sections > section h2 {
  font-size: min(4vw, 3rem);
  font-weight: 300;
  color: black;
}
#sections > section h3 {
  background: var(--color2);
  color: var(--color1);
  font-size: min(13vw, 3rem);
  font-weight: 900;
  padding-top: 20vh;
  transition: all 1s;
  line-height: 90%;
}
@media (min-width: 1400px) {
  #sections > section h3 {
    font-size: min(6vw, 10rem);
  }
}
#sections > section h4 {
  font-size: min(4vw, 2.5rem);
  font-weight: 200;
}
@media (min-width: 1400px) {
  #sections > section h4 {
    font-size: min(4vw, 2.5rem);
    color: var(--color1);
  }
}

#sections > section.viewed h3 {
  padding-top: 0.1em;
}
#sections > section.viewed .slides > .slide:first-child {
  opacity: 1;
  padding-top: 3vh;
}

.slides {
  display: flex;
  flex-direction: row;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  flex-grow: 1;
  padding-bottom: 80px;
}
.slides .slide {
  flex-basis: 100%;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  scroll-snap-align: start;
  padding: 2vw;
  gap: 20px;
  transition: all 1s;
  transition-delay: 0.5s;
}
.slides .slide:first-child {
  opacity: 0;
  padding-top: 30%;
}
.slides .slide.layout-1 {
  flex-direction: row;
}
.slides .slide.layout-2 {
  flex-direction: column;
}

/* ---------------- PAGINATION ---------------- */
#pagination {
  position: fixed;
  z-index: 10;
  display: flex;
  height: 80px;
  bottom: 0;
  right: 0;
  left: 0;
  pointer-events: none;
  opacity: 1;
  transition: all 0.3s;
  --pag-color1: white;
  --pag-color2: black;
}
#pagination.hidden {
  opacity: 0;
}
@media (min-width: 1400px) {
  #pagination {
    left: var(--large-screen-side-width);
  }
}
#pagination .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
#pagination .arrow button {
  width: 50px;
  height: 50px;
  color: var(--pag-color1);
  background: var(--pag-color2);
  border: none;
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  pointer-events: all;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 1s;
  margin: 15px;
}
@media (max-width: 800px) {
  #pagination .arrow button {
    visibility: hidden;
  }
}
#pagination #pag-arrows {
  flex-grow: 1;
  display: flex;
  align-items: center;
}
#pagination #pag-dots {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
#pagination #pag-dots div {
  width: 10px;
  height: 10px;
  aspect-ratio: 1;
  background: var(--pag-color2);
  border-radius: 20px;
  opacity: 0.5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  pointer-events: all;
  transition: all 0.3s;
}
#pagination #pag-dots div.active {
  width: 15px;
  height: 15px;
  opacity: 1;
}

@media (max-width: 800px) {
  .slide.layout-1 {
    flex-direction: column;
  }
}

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