@import url("https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #17181a;
  overflow-x: hidden;
}

body.hide {
  overflow: hidden;
}

a {
  color: white;
  cursor: pointer;
}

button {
  cursor: pointer;
}

#logo {
  font-family: "Abril Fatface", sans-serif;
  font-weight: 400;
  color: white;
  font-size: 2rem;
}

main {
  background: #17181a;
  color: white;
  overflow: hidden;
}

.burger {
  cursor: pointer;
}

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

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

.slide {
  width: 80%;
  margin: 0rem auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  min-height: 100vh;
  background: #17181a;
  flex-wrap: wrap;
}

.slide-img {
  flex: 1 1 25rem;
  position: relative;
  overflow: hidden;
}
.slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.slide-text {
  flex: 1 1 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-left: 5rem;
  position: relative;
}
.slide-text h1 {
  font-size: 5rem;
  font-weight: 400;
  font-family: "Abril Fatface", sans-serif;
}
.slide-text p {
  font-size: 1.5rem;
  padding: 3rem 0rem;
}

.explore {
  padding: 1rem 3rem;
  border: 1px solid white;
  align-self: flex-start;
  text-decoration: none;
}

.mountain-span {
  color: #567ce4;
}

.hike-span {
  color: #a76ee7;
}

.fashion-span {
  color: #ff8b5d;
}

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

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

.t-swipe1 {
  background: #567ce4;
}

.t-swipe2 {
  background: #a76ee7;
}

.t-swipe3 {
  background: #ff8b5d;
}

.reveal-img, .reveal-text {
  width: 100%;
  height: 100%;
  background: #17181a;
  position: absolute;
  top: 0;
  left: 0;
}

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

.nav-links {
  font-size: 3rem;
  flex-basis: 30rem;
}
.nav-links h3 {
  font-weight: 500;
  padding: 3rem 0rem;
}

.nav-text {
  flex-basis: 30rem;
}
.nav-text h2 {
  font-size: 3rem;
  font-weight: 500;
  padding: 2rem 0rem;
}
.nav-text p {
  font-size: 1.5rem;
  line-height: 1.2;
}

.cursor {
  position: absolute;
  width: 3rem;
  pointer-events: none;
  height: 3rem;
  border: 2px solid white;
  border-radius: 50%;
  transform: translate(-40%, -40%);
  transition: 500ms ease-in-out;
  transition-property: transform, background;
  transform-origin: 70% 70%;
}

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

.cursor.nav-active {
  background-color: #567ce4;
  transform: scale(3);
}

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

.fashion1, .fashion2, .fashion3 {
  min-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: 70%;
  margin: auto;
  margin-top: 5rem;
  color: white;
  flex-wrap: wrap;
  position: relative;
}

.fashion1 h1 {
  color: #ff8b5d;
}

.fashion2 h1 {
  color: #a76ee7;
}

.fashion3 h1 {
  color: #567ce4;
}

.fashion-text {
  flex: 1;
  flex-basis: 25rem;
  position: relative;
}
.fashion-text h1 {
  font-size: 6rem;
  font-weight: 500;
  padding: 5rem 0rem;
}
.fashion-text p {
  font-size: 2rem;
  padding: 2rem 2rem 0 0;
  margin-bottom: 10rem;
}

.fashion-img {
  flex-basis: 30rem;
  height: 70vh;
}
.fashion-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.fashion-nr {
  font-size: 15rem;
  position: absolute;
  bottom: 6%;
  left: 50%;
  color: white;
  opacity: 0.2;
}

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

.swipe1 {
  background: #567ce4;
  z-index: 6;
}

.swipe2 {
  background: #a76ee7;
  z-index: 5;
}

.swipe3 {
  background: #ff8b5d;
  z-index: 4;
}

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

@media screen and (max-width: 1500px) {
  .slide {
    width: 90%;
  }
  .slide-img {
    height: 50vh;
  }
  .fashion-text h1 {
    font-size: 2rem;
    padding: 1rem 0rem;
  }
  .fashion-text p {
    font-size: 1.2rem;
  }
  .fashion-img img {
    height: 50vh;
  }
}
@media screen and (max-width: 1024px) {
  #logo {
    font-size: 1.8rem;
  }
  .line1, .line2 {
    width: 2rem;
  }
  .slide {
    width: 100%;
    text-align: center;
    min-height: 100vh;
    display: block;
  }
  .slide-text {
    padding: 0;
  }
  .slide-text h1 {
    font-size: 1.6rem;
    padding: 1rem 0rem;
  }
  .slide-text p {
    font-size: 1rem;
    padding: 2rem 1rem;
  }
  .slide-img {
    padding-top: 2rem;
  }
  .explore {
    align-self: center;
    width: 60%;
    margin: auto;
  }
  .cursor {
    display: none;
  }
  .nav-bar {
    display: block;
  }
  .nav-links {
    margin-top: 4rem;
    font-size: 2rem;
    text-align: center;
  }
  .nav-links h3 {
    padding: 2rem 3rem;
  }
  .nav-text {
    text-align: center;
  }
  .nav-text h2 {
    font-size: 3rem;
  }
  .nav-text p {
    font-size: 1.2rem;
    padding: 2rem;
  }
  .detail-slide {
    width: 100%;
    text-align: center;
  }
  .fashion-text p {
    margin-bottom: 5rem;
    padding: 0;
  }
  .fashion-text h1 {
    margin: 2rem 0rem;
  }
  .fashion-nr {
    font-size: 8rem;
  }
}/*# sourceMappingURL=style.css.map */