:root {
  --background: #17181a;
}

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

body {
  background-color: var(--background);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
  position: relative;
}

#logo {
  color: #fff;
  font-family: "Abril fatFace";
}

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

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

.slide {
  height: 90vh;
  margin: 0 auto 0 auto;
  padding-bottom: 10px;
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  background-color: var(--background);
}

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

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

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

.fashion-span {
  color: rgb(255, 139, 93);
}

.mountain-span {
  color: rgb(86, 124, 228);
}

.hike-span {
  color: rgb(167, 110, 231);
}

.hero-desc h2 {
  font-family: "Abril Fatface";
  font-size: 2.5rem;
}

.hero-desc p {
  padding: 1rem 0rem;
  font-size: 1.3rem;
  color: #fff;
}

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

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

.burger {
  cursor: pointer;
}

.nav-link {
  font-size: 3rem;
  flex-basis: 20rem;
}

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

.contact {
  flex-basis: 20rem;
}

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

.contact p {
  font-size: 1rem;
}

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

.cursor {
  width: 2.5rem;
  height: 2.5rem;
  border: 2px solid #fff;
  border-radius: 50%;
  position: absolute;
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: all 0.5s ease-in-out;
  transition-property: background, transform;
  transform-origin: 75% 75%;
}
.cursor.nav-active {
  background: rgb(86, 124, 228);
  transform: scale(2);
}
.cursor.explore-active {
  background: #fff;
  transform: scale(2);
}
.cursor-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 0.5rem;
  transform: translate(-50%, -50%);
}

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

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

.t-swipe1 {
  background: rgb(86, 124, 228);
}

.t-swipe2 {
  background: rgb(167, 110, 231);
}

.t-swipe3 {
  background: rgb(255, 139, 93);
}

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

.hide {
  overflow: hidden;
}

.fashion1,
.fashion2,
.fashion3 {
  height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 70%;
  margin: auto;
  color: #fff;
  margin-top: 2rem;
  position: relative;
}

.fashion-img {
  height: 75vh;
  flex-basis: 20rem;
}

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

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

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

.fashion1 h1 {
  color: rgb(255, 139, 93);
}

.fashion2 h1 {
  color: rgb(167, 110, 231);
}

.fashion3 h1 {
  color: rgb(86, 124, 228);
}

.fashion-text p {
  font-size: 1.5rem;
  padding: 1rem 1rem 0rem 0rem;
  margin-bottom: 6rem;
}

.fashion-nr {
  font-size: 13rem;
  position: absolute;
  right: 40%;
  bottom: 0;
  color: #fff;
  opacity: 0.2;
}

main {
  position: absolute;
}

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

.swipe1 {
  background: rgb(167, 110, 231);
  z-index: 5;
}

.swipe2 {
  background: rgb(86, 124, 228);
  z-index: 4;
}

.swipe3 {
  background: rgb(255, 139, 93);
  z-index: 3;
}

@media screen and (max-width: 1024px) {
  main {
    width: 100%;
  }
  .slide {
    flex-direction: column;
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .hero-desc {
    padding: 0;
    justify-content: flex-start;
    margin-top: 2rem;
  }
  .hero-desc h2 {
    font-size: 1.5rem;
  }
  .hero-desc p {
    font-size: 0.7rem;
    max-width: 350px;
  }
  .hero-desc .explore {
    align-self: center;
  }
  .hero-desc .reveal-img,
.hero-desc .reveal-text {
    display: none;
  }
  .nav-bar {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav-link {
    font-size: 2rem;
    flex-basis: 0rem;
  }
  .nav-link h3 {
    padding: 1rem 0rem;
  }
  .contact {
    flex-basis: 0rem;
    padding: 0rem 1rem;
  }
  .contact h2 {
    font-size: 2rem;
    padding: 1rem 0rem;
  }
  .contact p {
    font-size: 1rem;
  }
  .fashion1,
.fashion2,
.fashion3 {
    height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    margin-top: 2rem;
    position: relative;
  }
  .fashion-img {
    height: 75vh;
    flex-basis: 20rem;
  }
  .fashion-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .fashion-text {
    flex: 1;
    position: relative;
    flex-basis: 25rem;
  }
  .fashion-text h1 {
    font-size: 2rem;
    padding: 0rem;
  }
  .fashion1 h1 {
    color: rgb(255, 139, 93);
  }
  .fashion2 h1 {
    color: rgb(167, 110, 231);
  }
  .fashion3 h1 {
    color: rgb(86, 124, 228);
  }
  .fashion-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  .fashion-nr {
    display: none;
    font-size: 13rem;
    position: absolute;
    right: 40%;
    bottom: 0;
    color: #fff;
    opacity: 0.2;
  }
}

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