:root {
  --white: #fff;
  --offWhite: #dcdcdc;
  --bgColor: #17181a;
  --mountain: #507de6;
  --hike: #aa6ee6;
  --fashion: #ff8c5f;
}

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

body {
  background: var(--bgColor);
  font-family: 'Monstserrat', Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  position: relative;
}

body.hide {
  overflow: hidden;
}

main {
  position: absolute;
}

#logo {
  color: var(--white);
  font-family: 'Abril Fatface';
}

.burger {
  cursor: pointer;
}

.nav-header {
  width: 80%;
  margin: auto;
  padding: 2rem 0;
  min-height: 10vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  font-size: 1rem;
  z-index: 2;
  position: relative;
}

.line1,
.line2 {
  width: 3rem;
  height: 0.2rem;
  margin: 0.4rem;
  background: var(--white);
  pointer-events: none;
}

.slide {
  min-height: 100vh;
  width: 80%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--white);
  background: var(--bgColor);
}

.hero-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  flex-basis: 25rem;
  padding-left: 5rem;
  position: relative;
  overflow: hidden;
}

.hero-desc h2 {
  font-family: 'Abril Fatface';
  font-size: 5rem;
}

.hero-desc p {
  padding: 3rem 0;
  font-size: 1.5rem;
  color: var(--offWhite);
}

.hero-img {
  position: relative;
  flex: 1;
  flex-basis: 25rem;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.explore {
  align-self: flex-start;
  padding: 1rem 2rem;
  background: none;
  border: none;
  color: var(--white);
  border: 1px solid var(--white);
  font-size: 1rem;
  text-decoration: none;
  cursor: pointer;
}

.nav-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  opacity: 1;
  clip-path: circle(50px at 100% -10%);
  -webkit-clip-path: circle(50px at 100% -10%);
}

.nav-links {
  font-size: 3rem;
  flex-basis: 40rem;
}

.nav-links h3 {
  padding: 3rem 0;
}

.contact {
  flex-basis: 30rem;
}

.contact h2 {
  font-size: 3rem;
  padding: 2rem 0;
}

.contact p {
  font-size: 1.5rem;
  line-height: 2rem;
}

.mountain-span {
  color: var(--mountain);
}
.hike-span {
  color: var(--hike);
}
.fashion-span {
  color: var(--fashion);
}

.reveal-img,
.reveal-text {
  position: absolute;
  width: 100%;
  height: 150%;
  background: var(--bgColor);
  left: 0;
}

.cursor {
  width: 3rem;
  height: 3rem;
  border: 2px solid var(--white);
  border-radius: 50%;
  position: absolute;
  transform: translate(-150%, -150%);
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  transition-property: background, transform;
  transform-origin: 75% 75%;
}

.cursor.nav-active {
  background: var(--mountain);
  transform: scale(3);
}

.cursor.explore-active {
  background: var(--white);
  transform: scale(3);
}

.cursor-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.5rem;
  transform: translate(-50%, -50%);
}

.title {
  position: relative;
  overflow: hidden;
}

.title-swipe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  mix-blend-mode: darken;
  transform: translateY(100%);
}

.t-swipe1 {
  background: var(--mountain);
}
.t-swipe2 {
  background: var(--hike);
}
.t-swipe3 {
  background: var(--fashion);
}

.scrollmagic-pin-spacer {
  position: static !important;
}

/* Fashion Page */
.fashion1,
.fashion2,
.fashion3 {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: auto;
  color: var(--white);
  margin-top: 1rem;
  flex-wrap: wrap;
  position: relative;
}

.fashion-img {
  height: 70vh;
  flex-basis: 30rem;
}

.fashion-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fashion-text {
  flex: 1;
  position: relative;
  flex-basis: 25rem;
}

.fashion-text h1 {
  font-size: 6rem;
  padding: 5rem 0;
}

.fashion-text p {
  font-size: 2rem;
  padding: 0 2rem 0 0;
  margin-bottom: 10rem;
}

.fashion-nr {
  font-size: 15rem;
  color: var(--offWhite);
  position: absolute;
  left: 50%;
  bottom: 10%;
  opacity: 75%;
}

.fashion1 h1 {
  color: var(--fashion);
}
.fashion2 h1 {
  color: var(--hike);
}
.fashion3 h1 {
  color: var(--mountain);
}

.swipe {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
}

.swipe1 {
  background: var(--hike);
  z-index: 5;
}
.swipe2 {
  background: var(--mountain);
  z-index: 4;
}
.swipe3 {
  background: var(--fashion);
  z-index: 3;
}

@media screen and (max-width: 1760px) {
  .hero-desc h2 {
    font-size: 4rem;
  }

  .hero-desc p {
    padding-top: 1.5rem;
    padding-bottom: 3rem;
    font-size: 1.5rem;
  }

  .detail-slide {
    padding-top: 5rem;
  }

  .fashion3 {
    margin-bottom: 6rem;
  }

  .fashion-text p {
    margin-bottom: 5rem;
    padding: 0;
  }

  .fashion-text h1 {
    margin: 1.5rem 0;
  }

  .fashion-nr {
    font-size: 10rem;
    left: 48%;
    bottom: 5%;
  }
}

@media screen and (max-width: 1635px) {
  .fashion-text h1 {
    margin: 0;
    font-size: 4.5rem;
  }

  .fashion-text p {
    font-size: 1.8rem;
  }

  .nav-links {
    flex-basis: 30rem;
  }
}

@media screen and (max-width: 1450px) {
  .hero-desc {
    padding: 3rem;
  }

  .hero-desc h2 {
    font-size: 2.5rem;
  }

  .detail-slide {
    padding-top: 0;
  }

  .fashion-text p {
    font-size: 1.7rem;
  }

  .fashion-img img {
    float: right;
  }

  .fashion-nr {
    left: 38%;
  }

  .nav-links {
    flex-basis: 30rem;
  }

  .contact {
    padding: 0 4rem;
  }
}

@media screen and (max-width: 1300px) {
  .hero-desc {
    padding: 2rem;
  }

  .hero-desc h2 {
    font-size: 3rem;
  }

  .hero-desc p {
    font-size: 1.2rem;
    padding: 1rem 0;
  }

  .hero-img {
    position: relative;
    flex: 1;
    flex-basis: 20rem;
    overflow: hidden;
  }

  .hero-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .fashion-text {
    flex-basis: 10rem;
  }

  .fashion-text h1 {
    font-size: 3rem;
    margin: 0;
  }

  .fashion-text p {
    font-size: rem;
    margin: 0;
    padding: 0;
  }

  .fashion-img img {
    height: 70vh;
    width: 80%;
    object-position: top;
  }

  .fashion-nr {
    left: 40%;
    bottom: 10%;
  }

  .nav-links {
    font-size: 2.4rem;
    flex-basis: 10rem;
  }
}

@media screen and (max-width: 1024px) {
  main {
    width: 100%;
    margin: 0;
  }

  .hero-img img {
    height: 45vh;
    object-fit: cover;
  }

  .slide {
    display: block;
    width: 100%;
    text-align: center;
  }

  .hero-img {
    padding-top: 5rem;
  }

  .hero-desc {
    padding: 0;
  }

  .hero-desc h2 {
    font-size: 3rem;
    margin: 1rem 0 0 0;
  }

  .hero-desc p {
    font-size: 1.4rem;
    padding: 1.5rem 1rem;
    line-height: 1.5rem;
    text-align: center;
  }

  .explore {
    width: 60%;
    margin: 2rem auto;
  }

  .detail-slide {
    width: 100%;
    display: block;
    padding-top: 0;
    text-align: center;
  }

  .fashion3 {
    margin: 0;
  }

  .fashion-text p {
    font-size: 1.6rem;
    margin: 0 2rem 5rem 2rem;
    padding: 0;
  }

  .fashion-text h1 {
    font-size: 4rem;
  }

  .fashion-img img {
    height: 50vh;
    width: 100%;
    object-position: top;
  }

  .fashion-nr {
    font-size: 8rem;
    left: 5%;
    bottom: 12%;
  }

  .nav-bar {
    display: block;
    text-align: center;
  }

  .nav-links {
    font-size: 2.4rem;
    margin-top: 7rem;
  }

  .nav-links h3 {
    padding: 2.4rem 0;
  }

  .contact h2 {
    font-size: 4rem;
  }

  .contact p {
    font-size: 1.2rem;
    padding: 1rem;
    width: 80%;
    margin: auto;
  }
}

@media screen and (max-width: 720px) {
  .hero-desc h2 {
    font-size: 2.5rem;
    margin: 1rem 0 0 0;
  }

  .hero-desc p {
    font-size: 1.2rem;
    padding: 1.5rem 1rem;
    line-height: 2rem;
    text-align: center;
  }

  .explore {
    width: 90%;
    margin: auto;
  }

  .hero-img {
    padding-top: 5rem;
  }

  .hero-img img {
    height: 30vh;
  }

  .fashion-text h1 {
    font-size: 3rem;
    padding: 2rem 0 1rem 0;
  }

  .fashion-text p {
    font-size: 1.4rem;
    margin: 0 0 3rem 0;
    padding: 0 1rem;
  }

  .fashion-nr {
    left: 5%;
    bottom: 12%;
  }

  .nav-bar {
    display: block;
    text-align: center;
  }

  .nav-links h3 {
    font-size: 1.5rem;
    padding: 1rem 0;
  }

  .contact h2 {
    font-size: 3rem;
    padding: 1rem 0;
  }
}
