* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Gilroy';
  color: white;

}

html,
body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}

.page1 h1,
.page1 h2 {
  max-width: 100%;
  overflow-wrap: break-word;
}

.page1 video {
  max-width: 100%;
}

.cursor {
  pointer-events: none;
  position: fixed;
  overflow: hidden;
}


html,
body {
  height: 100%;
  width: 100%;
}

.purple {
  height: 100vh;
  width: 100vw;
  top: 0;
  position: fixed;
  z-index: 80;
  background-color: #EDBFFF;
  opacity: 0;
  display: none;
  transition: opacity ease 1s;
}

.cursor {
  height: 15px;
  width: 15px;
  border-radius: 50%;
  position: fixed;
  z-index: 8;
  background-color: #fff;
  mix-blend-mode: difference;
  transition: all ease-out 0.1s, background-image ease-out 0.1s;
}

.main {
  background-color: #0F0D0D;
  cursor: none;
}

.page1 {
  min-height: 100vh;
  width: 100vw;
  position: relative;
  z-index: 10;
  padding-top: 12vw;
}

.nav {
  background-color: transparent;
  height: 70px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  mix-blend-mode: difference;
  z-index: 100;
  padding: 0 30px;
}

.nav img {
  height: 30px;
  margin-left: 30px;
}

.nav2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  transition: text-decoration 0.4s ease-in-out;
}

.nav>h4 {
  font-size: 13px;
  font-weight: 500;
  border-bottom: 2px solid white;
}

.nav2>h4:hover {
  text-decoration: underline;
}

.nav3 {
  height: 20px;
  width: 20px;
  background-color: #fff;
  border-radius: 50%;
  margin-right: 30px;
}

.nav .circle {
  height: 18px;
  width: 18px;
  border-radius: 50%;
  background-color: #fff;
}

.page1 h1,
.page1 h2 {
  font-size: 8vw;
  font-weight: 300;
  font-family: 'pp mori';
}

.page1 h1 {
  margin-left: 7vw;
  transform-origin: left;
}

.page1 h2 {
  margin-left: 34vw;
}

.page1 video {
  width: 60%;
  margin-top: 10vw;
  position: relative;
  border: 2px solid whitesmoke;
  left: 50%;
  transform: translate(-50%, 0);
}

/* Page 2 */
.page2 {
  min-height: 80vh;
  width: 100%;
  padding: 100px 5vw;
  border-bottom: 2px solid #6c6c6c;
  position: relative;
  z-index: 10;
}

.page2 h1 {
  font-size: 7vw;
  font-weight: 500;
  color: #111;
}

.page2-container {
  height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page2-left {
  width: 40%;
}

.page2-right {
  width: 24%;
}

.page2-left h2 {
  font-size: 4vw;
  font-weight: 300;
  color: #111;
  line-height: 4vw;
  overflow: hidden;
}

.page2-right p {
  font-size: 28px;
  color: #111;
  overflow: hidden;
}

.page2-right button {
  width: 100%;
  border-radius: 50px;
  border: none;
  padding: 4px 0;
  background-color: #EDBFFF;
  color: #111;
  margin-top: 20px;
}

/* Page 3 */
.page3 {
  position: relative;
  z-index: 10;
  min-height: 140vh;
  width: 100%;
  padding-top: 100px;
}

.page3 h1 {
  font-size: 6.9vw;
  font-weight: 300;
  color: #111;
  margin-left: 100px;
}

.page3-part1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.page3-part1 img {
  height: 600px;
  margin-top: 150px;
}

.page3-part1 video {
  height: 400px;
  margin-top: 40px;
}

/* Page 4 */
.page4 {
  min-height: 100vh;
  width: 100%;
  position: relative;
  padding: 170px 100px;
}

.ell {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.ell img {
  position: absolute;
  opacity: 0;
  transition: all ease-out 0.5s;
  transform: translateY(10%) rotate(2deg);
}

.ell img:nth-child(1) {
  left: 2%;
}

.ell img:nth-child(3) {
  right: 5%;
}

.text-div {
  color: #ffffff;
  height: 16vh;
  position: relative;
  z-index: 10;
  overflow: hidden;
}

.ell h1 {
  font-size: 7.5vw;
  font-weight: 600;
  transition: all ease-out 0.5s;
}

.ell:hover h1 {
  transform: translateY(-100%);
  color: #ffffff;
}

.ell:hover img {
  opacity: 1;
  transform: translateY(0%) rotate(15deg);
}

/* Page 5 */
.page5 {
  height: 100vh;
  width: 100%;
  z-index: 9;
  position: relative;
  padding: 140px 100px;
}

.page5 h2 {
  font-weight: 400;
  font-size: 4vw;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding: 0 20px;
  border-top: 2px solid rgb(255, 255, 255);
}

.page5 .box:last-child {
  border-bottom: 2px solid rgb(255, 255, 255);
}

/* Footer */
footer {
  height: 150vh;
  width: 100%;
  background-color: #f8b4ff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

footer h1 {
  font-size: 15vh;
  font-weight: 300;
  margin-left: 50px;
  font-family: Arial, Helvetica, sans-serif;
}

footer .round {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  background-color: #fff;
  margin-right: 50px;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1200px) {

  .page1 h1,
  .page1 h2 {
    font-size: 9vw;
  }

  .page1 video {
    width: 80%;
  }

  .page2-container {
    flex-direction: column;
    gap: 40px;
    height: auto;
  }

  .page2-left,
  .page2-right {
    width: 100%;
  }

  .page2-right p {
    font-size: 22px;
  }
}

@media (max-width: 900px) {
  body {
    font-family: Arial, Helvetica, sans-serif;
  }

  .cursor {
    display: none;
  }

  .main {
    cursor: auto;
  }

  .nav {
    padding: 10px 20px;
    justify-content: space-between;
  }

  .nav img {
    height: 24px;
    margin-left: 0;
  }

  .page1 {
    padding-top: 25vw;
    text-align: center;
  }

  .page1 h1,
  .page1 h2 {
    margin: 0;
    font-size: 12vw;
  }

  .page1 video {
    width: 100%;
    margin-top: 10vw;
  }

  .page2 {
    padding: 60px 20px;
    text-align: center;
  }

  .page2 h1 {
    font-size: 8vw;
  }

  .page2-left h2 {
    font-size: 6vw;
    line-height: 7vw;
  }

  .page2-right p {
    font-size: 18px;
  }

  .page2-right button {
    padding: 10px;
  }

  .page3 {
    padding: 60px 20px;
  }

  .page3 h1 {
    font-size: 8vw;
    margin: 0;
    text-align: center;
  }

  .page3-part1 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .page3-part1 img,
  .page3-part1 video {
    width: 100%;
    height: auto;
    margin: 0;
  }

  .page4 {
    padding: 80px 20px;
    text-align: center;
  }

  .ell h1 {
    font-size: 9vw;
  }

  .page5 {
    padding: 60px 20px;
  }

  .page5 h2 {
    font-size: 6vw;
    text-align: center;
  }

  .box {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    height: auto;
    padding: 15px;
  }

  footer {
    flex-direction: column;
    height: auto;
    padding: 60px 20px;
    gap: 30px;
    text-align: center;
  }

  footer h1 {
    font-size: 10vw;
    margin: 0;
  }

  footer .round {
    height: 100px;
    width: 100px;
    font-size: 14px;
    margin: 0 auto;
  }
}

/* For small phones */
@media (max-width: 500px) {

  .page1 h1,
  .page1 h2 {
    font-size: 14vw;
  }

  .page2-left h2 {
    font-size: 7vw;
  }

  .page2-right p {
    font-size: 16px;
  }

  .page3 h1 {
    font-size: 10vw;
  }

  .page5 h2 {
    font-size: 8vw;
  }

  footer h1 {
    font-size: 12vw;
  }
}

@media (max-width: 900px) {
  .page1 {
    padding-top: 20vw;
    text-align: center;
  }

  .page1 h1,
  .page1 h2 {
    font-size: 10vw;
    margin: 0 auto;
    line-height: 1.2em;
    word-wrap: break-word;
  }

  .page1 video {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 8vw;
    left: 0;
    transform: none;
    border: 2px solid whitesmoke;
  }
}

@media (max-width: 500px) {
  .page1 {
    padding-top: 25vw;
  }

  .page1 h1,
  .page1 h2 {
    font-size: 12vw;
  }

  .page1 video {
    width: 95%;
  }
}

/* Hide icons by default */
.nav-icon {
  display: none;
  font-size: 20px;
  cursor: pointer;
  color: white;
}

.nav-text {
  cursor: pointer;
  transition: color 0.3s ease;
}

.nav-text:hover,
.nav-icon:hover {

color: antiquewhite;
}

/* On smaller screens show icons instead of text */
@media (max-width: 900px) {
  .nav-text {
    display: none;
  }

  .nav-icon {
    display: inline-block;
  }
}

/* Extra small screens (mobile phones) */
@media (max-width: 480px) {

  .page1 h1,
  .page1 h2,
  .page2 h1,
  .page2-left h2,
  .page3 h1,
  .ell h1,
  .page5 h2,
  footer h1 {
    font-size: clamp(14px, 7vw, 32px);
    line-height: 1.2;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
}