* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html,
body {
  height: 100%;
  width: 100%;
  color: #fff;
}

/* ---------- NAVBAR ---------- */
nav {
  position: fixed;
  display: flex;
  background-color: #111;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 12vh;
  padding: 2vw 10.4vw;
  z-index: 10;
}

.menu {
  display: flex;
  gap: 2vw;
  align-items: flex-start;
  padding: 1vh 0;
  position: relative;
  z-index: 10;
}

.menu h4 {
  font-size: 0.73vw;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2.6vw;
}

.menu h5 {
  margin-bottom: 1vw;
  display: none;
  overflow: hidden;
}

.menu h5 span {
  font-size: 0.74vw;
  font-weight: 400;
  transform: translateY(25px);
  display: inline-block;
}

nav button {
  background-color: #0ba34e;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  text-transform: uppercase;
  border-radius: 50px;
  font-size: 0.85vw;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

nav button i {
  margin-left: 1.6vw;
}

.nav-bottom {
  width: 79%;
  height: 0vh;
  position: absolute;
  background-color: #111;
  top: 100%;
  z-index: 9;
  border-bottom: 1px solid white;
}

/* ---------- PAGE 1 ---------- */
.page1 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  position: relative;
}

.page1 h1 {
  font-size: 7.5vw;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 8.5vw;
}

.page1 h1 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 6vw;
  width: 6vw;
  background-color: #0ba34e;
  border-radius: 50%;
}

.page1 h1 span svg {
  height: 100%;
  width: 60%;
  fill: white;
}

.page1 p {
  font-weight: 400;
  margin-top: 3vh;
}

.pera {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1vw;
  flex-wrap: wrap;
  margin-top: 1vw;
}

.pera h4 {
  font-weight: 400;
  font-size: 1vw;
  text-transform: lowercase;
  padding: 5px 10px;
  border: 1px solid gray;
  border-radius: 50px;
}

.pera h4:nth-last-child(2) {
  border: none;
  padding: 2px;
}

.moving-div {
  position: absolute;
  bottom: 3%;
  width: 45%;
  white-space: nowrap;
  overflow: hidden;
  padding: 1.2vw;
}

.moving-div .move {
  display: inline-block;
  animation: run 9s linear infinite;
}

.moving-div .move img {
  height: 2vw;
  margin: 0 1.2vw;
  vertical-align: middle;
}

@keyframes run {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.blur-left {
  height: 100%;
  width: 20%;
  background: linear-gradient(to right, #111, transparent);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.blur-right {
  height: 100%;
  width: 20%;
  background: linear-gradient(to left, #111, transparent);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

/* ---------- PAGE 2 ---------- */
.page2 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  position: relative;
  padding: 0vw 10.4vw;
  padding-bottom: 8vw;
  border-top: 1px solid #333;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.page2-left {
  height: 100%;
  width: 40%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  padding: 3vw 0;
}

.page2-left p {
  font-size: 0.9vw;
}

.page2-left h5 {
  width: 75%;
  font-weight: 400;
  font-size: 1.1vw;
}

.page2-right {
  height: 100%;
  width: 50%;
}

.right-elem {
  position: relative;
  padding-top: 2vw;
  padding-bottom: 5vw;
  border-bottom: 1px solid #333;
}

.right-elem h2 {
  font-size: 1.4vw;
  font-weight: 400;
}

.right-elem img {
  height: 7vw;
  width: 7vw;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  scale: 0;
}

/* ---------- PAGE 3 ---------- */

.page3 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  position: relative;
  background-image: url(https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page3-center {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1vw;
}

.page3-center .icon {
  height: 7vw;
  width: 7vw;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page3-center .icon i {
  font-size: 2vw;
  color: #111;
}

.page3-center h5 {
  font-size: 1vw;
  background-color: #fff;
  color: #000;
  border-radius: 50px;
  padding: 10px 20px;
  margin-top: 0.5vw;
  font-weight: 700;
  opacity: 0;
  transition: all 0.5s ease;
  text-transform: uppercase;
  transform: translateY(10%);
}

.page3-center:hover h5 {
  opacity: 1;
  transform: translateY(0);
}

.page3 video {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  transform: scaleX(0.7) scaleY(0);
  border-radius: 30px;
  opacity: 0;
  z-index: 100;
}

/* ---------- PAGE 4 ---------- */
.page4 {
  height: 90vh;
  width: 100%;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0vw 6vw;
  background-color: #ffffff;
}

.page4-left {
  height: 100%;
  width: 30%;
  padding-top: 5vw;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}

.page4-left h2 {
  font-size: 3vw;
}

.page4-right {
  height: 100%;
  width: 55%;
  padding-top: 5vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}

.right-box p {
  font-size: 0.9vw;
  font-weight: 500;
  color: #484848;
  text-transform: uppercase;
  margin-bottom: 2vw;
}

.right-box h5 {
  font-size: 1.65vw;
  font-weight: 300;
}

/* ---------- PAGE 5 ---------- */

.page5 {
  width: 100%;
  background-color: #fff;
  color: #000;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 4vw 6vw;
  box-sizing: border-box;
}

.page5 .box {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 30px;
  height: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: 20px;
  font-weight: 600;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.page5 .box h1 {
  font-size: 3rem;
}

.page5 .box .bottom {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 150px;
}

.page5 .box .bottom h5 {
  font-weight: 400;
  color: #555555;
}

/* ---------- PAGE 6 ---------- */

.page6 {
  min-height: 100vh;
  width: 100%;
  background-color: #fff;
  position: relative;
  padding-bottom: 10vh;
}

.section {
  width: 100%;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vw 10vw;
  padding-bottom: 0%;
}

.section-left {
  height: 100%;
  width: 25%;
  padding-top: 3vh;
  border-top: 2px solid #000;
}

.section-left h2 {
  font-size: 2.1vw;
  font-weight: 500;
  color: #000;
}

.section-left p {
  color: #000;
  margin-top: 10vh;
  font-size: 1.2vw;
}

.section-right {
  height: 100%;
  width: 60%;
  position: relative;
}

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

.section-right video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ---------- PAGE 7 ---------- */

.page7 {
  min-height: 100vh;
  width: 100%;
  background-color: #111;
  position: relative;
  padding: 5vw 10.5vw;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.page7 button {
  background-color: #0ba34e;
  color: #fff;
  padding: 1vw 2.5vw;
  font-weight: 600;
  font-size: 1vw;
  border-radius: 50px;
  border: none;
  position: sticky;
  top: 15%;
}

.page7-right {
  width: 70%;
}

.page7-right > p {
  font-size: 2.1vw;
}

.page7-right > p span {
  width: 15vw;
  display: inline-block;
}

.page7-content {
  width: 100%;
  margin-top: 5vh;
  padding: 5vh 0;
}

.page7-content h1 {
  font-size: 3vw;
  font-weight: 500;
}

.page7-content .flex {
  display: flex;
  margin-top: 4vh;
  margin-bottom: 4vh;
}

.page7-content .flex h4 {
  border-radius: 50px;
  border: 1px solid #fff;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 0.8vw;
}

.page7-elem {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding-top: 2vh;
  padding-bottom: 9vh;
  border-top: 1px solid #333;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  overflow: hidden;
}

.page7-elem p {
  width: 55%;
  font-size: 0.8vw;
  position: relative;
  z-index: 8;
}

.page7-elem h3 {
  font-size: 1.5vw;
  font-weight: 400;
  position: relative;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  z-index: 8;
}

.page7-elem i {
  font-size: 1vw;
  position: relative;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
  z-index: 8;
}

.over {
  height: 100%;
  width: 100%;
  background-color: #222;
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  opacity: 0;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}

.page7-elem:hover h3 {
  padding-left: 1vw;
}

.page7-elem:hover i {
  padding-right: 1vw;
}

.page7-elem:hover .over {
  transform: translateY(0);
  opacity: 1;
}

.page7-elem:hover {
  border-top: 2px solid #fff;
}

summary::marker {
  display: none;
}

summary::marker {
  content: "";
}

.uiux {
  border-top: 1px solid #333;
  padding: 3vh 0;
}

.product {
  border-top: 1px solid #333;
  padding: 3vh 0;
}

/* ---------- PAGE 8 ---------- */

.page8 {
  min-height: 100vh;
  width: 100%;
  background-color: #fff;
  padding: 10vh 10vw;
}

.page8 > h1 {
  font-size: 5vw;
  color: #000;
  padding-left: 23vw;
  padding-right: 5vw;
  line-height: 5.8vw;
  padding-bottom: 10vh;
  border-bottom: 1px solid #dadada;
}

.page8-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  color: #000;
  padding: 8vh 0;
}

.page8-content .right-8 {
  width: 70%;
}

.page8-content .right-8 p {
  font-size: 1.5vw;
  color: #000;
  margin-bottom: 5vh;
  width: 80%;
}

.blue-btn {
  width: 15vw;
  height: 3.5vw;
  border-radius: 100px;
  background-color: #4f5bff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blue-btn h4 {
  position: absolute;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85vw;
}

.blue-btn h4 i {
  font-size: 1.1vw;
  font-weight: 100;
  margin-left: 0.5vw;
}

.page8-bottom {
  height: 45vh;
  width: 100%;
  border-top: 1px solid #dadada;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.btm8-part1 {
  border-right: 1px solid #dadada;
  width: 30%;
  height: 100%;
}

.btm8-part2 {
  border-right: 1px solid #dadada;
  width: 35%;
  height: 100%;
}

.btm8-part3 {
  border-right: 1px solid #dadada;
  width: 25%;
  height: 100%;
}

.btm8-part4 {
  border-right: 1px solid #dadada;
  width: 25%;
  height: 100%;
}

.btm8-part5 {
  width: 15%;
  height: 100%;
}

.btm8-parts {
  padding: 3vh 1vw;
}

.btm8-parts h5 {
  color: #000;
  font-weight: 500;
  font-size: 0.85vw;
  margin-bottom: 4vh;
}

.btm8-parts h4 {
  background-color: #111;
  width: 75%;
  padding: 5px 10px;
  margin-bottom: 0.3vh;
  border-radius: 50px;
  font-size: 0.85vw;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.btm8-parts h4 span {
  background-color: #333;
  padding: 0.5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5vw;
  height: 1.5vw;
  margin-right: 1vw;
}

.btm8-part2 h4:nth-child(2) {
  transform: translateX(0);
}

.btm8-part2 h4:nth-child(3) {
  transform: translateX(10%);
}

.btm8-part2 h4:nth-child(4) {
  transform: translateX(20%);
}

.btm8-part2 h4:nth-child(5) {
  transform: translateX(30%);
}

.btm8-part2 h4:nth-child(6) {
  transform: translateX(40%);
}

.btm8-part2 h4:nth-child(7) {
  transform: translateX(50%);
}

/* ---------- PAGE 9 ---------- */

.page9 {
  height: 100vh;
}