* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: poppins;
  color: white;
}
html,
body {
  height: 100%;
  width: 100%;
}
nav {
  position: fixed;
  display: flex;
  align-items: flex-start;
  width: 100%;
  padding: 2vw 10.4vw;
  justify-content: space-between;
  height: 12vh;
  background-color: #111;
  z-index: 99;
}
nav .nav-items {
  display: flex;
  gap: 2vw;
  align-items: flex-start;
  padding: 1vh 0;
  position: relative;
  z-index: 10;
}
nav .nav-items h4 {
  font-size: 0.9vw;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2.5vw;
}
nav .nav-items .nav-elem h5 span {
  font-size: 0.8vw;
  font-weight: 500;
  display: inline-block;
}
nav .nav-items .nav-elem h5 {
  margin-bottom: 1vw;
  display: none;
  overflow: hidden;
}
nav button {
  background-color: #0da34e;
  display: flex;
  align-items: center;
  padding: 12px 14px;
  border-radius: 50px;
  border: none;
  font-size: 0.85vw;
  font-weight: 700;
  text-transform: uppercase;
}
nav button svg {
  background-color: #0da34e;
  height: 1.5vw;
  margin-left: 1vw;
}
nav .nav-bottom {
  width: 79%;
  height: 0;
  position: absolute;
  /* background-color: #dd0000; */
  top: 100%;
  z-index: 9;
  border-bottom: 1px solid white;
  background-color: #111;
}

.page1 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.page1 h1 {
  font-size: 8vw;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 8vw;
}
.page1 h1 svg {
  width: 6vw;
  height: 6vw;
  background-color: #0da34e;
  border-radius: 50%;
}
.page1 p {
  text-align: center;
  font-weight: 400;
  margin-top: 3vh;
}
.page1-text {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page1-text h4 {
  font-size: 1vw;
  font-weight: 400;
  text-transform: lowercase;
  padding: 5px 12px;
  border: 1px solid rgb(157, 157, 157);
  border-radius: 50px;
  margin-top: 0.5vw;
}
.page1-text h4:nth-last-child(2) {
  border: none;
  padding: 2px;
}
.moving-text {
  /* background-color: #dd0000; */
  margin-top: 10vh;
  position: absolute;
  bottom: 3%;
  width: 44vw;
  white-space: nowrap;
  padding: 2vw;
  overflow: hidden;
}
.moving-text .move {
  display: inline-block;
  animation-name: move;
  animation-duration: 9s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.moving-text .move img {
  height: 2vh;
  margin: 0 1.2vw;
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.blur-left {
  height: 100%;
  width: 20%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;

  background: linear-gradient(to left, transparent, #111);
}
.blur-right {
  height: 100%;
  width: 20%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to right, transparent, #111);
}
.page2 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  position: relative;
  padding: 0vw 10.5vw;
  display: flex;
  padding-bottom: 7vw;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #333;
}
.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: 1vw;
}
.page2-left h5 {
  font-size: 1vw;
  font-weight: 300;
  width: 75%;
}
.page2-right {
  height: 100%;
  width: 50%;
}
.page2-right .right-elem {
  position: relative;
  padding-top: 2vw;
  padding-bottom: 5vw;
  border-top: 2px solid #333;
}
.page2-right .right-elem h2 {
  font-size: 1.1vw;
  font-weight: 400;
}
.page2-right .right-elem img {
  width: 5vw;
  height: 5vw;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  scale: 0;
}
.page3 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  background-image: url("../images/video-background.webp");
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page3 .page3-center {
  display: flex;
  align-items: center;
  flex-direction: column;
  /* background-color: aqua; */
  padding: 1vw;
}
.page3 .page3-center .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3vw;
  border-radius: 70%;
  background-color: white;
}
.page3 .page3-center .icon i {
  color: #111;
  font-size: 3vw;
}
.page3 .page3-center h5 {
  font-size: 0.8vw;
  padding: 10px 20px;
  color: #111;
  text-transform: uppercase;
  background-color: white;
  border-radius: 50px;
  margin-top: 1vw;
  opacity: 0;
  transition: all ease 0.5s;
  transform: translateY(20%);
}
.page3-center:hover h5 {
  opacity: 1;
  transform: translateY(0%);
}
.page3 video {
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  transform: scaleX(0.7) scaleY(0);
  opacity: 0;
  border-radius: 30px;
  z-index: 99;
}
.page4 {
  width: 100%;
  min-height: 100vh;
  display: flex;
  /* padding: 1vw 0vw; */
}
.page4-left {
  width: 45%;
  height: 100vh;
  /* background-color: #959595; */
  display: flex;
  /* align-items: center; */
  justify-content: center;
}
.page4-left h2 {
  color: #111;
  font-size: 3vw;
  font-weight: 600;
  margin-top: 6vw;
}
.page4-right {
  width: 55%;
  height: 100vh;
  /* background-color: aquamarine; */
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: start;
}
.page4-right h4 {
  font-size: 0.8vw;
  color: #111;
  font-weight: 400;
  margin-top: 7vw;
}
.page4-right p {
  font-size: 1.2vw;
  color: #111;
  font-weight: 400;
  margin-top: 2vw;
}
.page5 {
  width: 100%;
  min-height: 100vh;
  padding: 1vw 10vw;
}
.page5 .data-1 {
  width: 100%;
  height: 50vh;
  display: flex;
}
.page5 .data-1 .page5-text {
  width: 100%;
  height: 50vh;
  /* padding: 5vw 5vw; */
  /* margin: 2vw 2vw; */
  /* background-color: #0da34e; */
}
.page5 .data-1 .page5-text h1 {
  font-size: 4vw;
  font-weight: 400;
  color: #111;
}
.page5 .data-1 .page5-text p {
  color: #111;
  font-weight: 400;
  font-size: 1vw;
}
.page5 .data-1 .page5-text h2 {
  padding-top: 5vw;
  font-size: 1vw;
  font-weight: 400;
  color: #b0b0b0;
}
.page5 .data-2 {
  width: 100%;
  height: 50vh;
  /* background-color: #333; */
  display: flex;
  align-items: center;
  justify-content: end;
}
.page5 .data-2 h2 span {
  /* background-color: #b0b0b0; */
  display: inline-block;
  padding-right: 5vw;
  font-size: 1vw;
  color: #111;
  font-weight: 400;
}
.page5 .data-2 h2 {
  color: #111;
  font-size: 2vw;
  text-align: right;
  font-weight: normal;
}
.page6 {
  width: 100vw;
  min-height: 100vh;
  background-color: #fff;
  padding-bottom: 13vh;
  /* position: relative; */
}
.section {
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5vh 10vw;
}
.sec-left {
  height: 100%;
  width: 25%;
  /* background-color: aqua; */
  border-top: 2px solid black;
  padding-top: 3vh;
}
.sec-left h2 {
  font-size: 2.1vw;
  font-weight: 500;
  color: #000;
}
.sec-left p {
  color: #000;
  margin-top: 10vh;
  font-size: 1vw;
  /* width: 80%; */
}
.sec-right {
  height: 100%;
  width: 70%;
  background-color: blanchedalmond;
  position: relative;
}
.sec-right img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.sec-right video {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity ease 0.3s;
}
.page7 {
  width: 100%;
  min-height: 100vh;
  background-color: #111;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 5vh 10.5vw;
}
.page7 button {
  background-color: #0da34e;
  padding: 0.8vw 2vw;
  font-size: 1vw;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  position: sticky;
  top: 15%;
}
.page7-right {
  width: 70%;
}
.page7-right > p {
  font-size: 2.1vw;
}
.page7-right p span {
  display: inline-block;
  width: 12vw;
  font-size: 0.9vw;
}
.page7-content {
  width: 100%;
  /* background-color: #0da34e; */
  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 white;
  padding: 10px 20px;
  font-weight: 400;
  font-size: 0.8vw;
}
.page7-elem {
  display: flex;
  align-items: start;
  justify-content: space-between;
  /* background-color: #0da34e; */
  /* padding: 1vh 0; */
  border-top: 1px solid #333;
  padding-top: 2vh;
  padding-bottom: 9vh;
  position: relative;
  overflow: hidden;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.page7-elem p {
  width: 60%;
  font-size: 0.9vw;
  position: relative;
  z-index: 8;
}
.page7-elem h3 {
  font-size: 1.5vw;
  font-weight: 400;
  position: relative;
  z-index: 8;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.page7-elem i {
  font-size: 1vw;
  position: relative;
  z-index: 8;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.over {
  height: 100%;
  width: 100%;
  background-color: #111;
  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 white;
}
summary::marker {
  content: "";
}
.uiux {
  border-top: 1px solid rgb(126, 126, 126);
  padding: 3vh 0;
}
.product {
  border-top: 1px solid rgb(126, 126, 126);
  padding: 3vh 0;
}
.page8 {
  min-height: 100vh;
  width: 100%;
  background-color: #fff;
  padding: 5vh 10vw;
}
.page8 > h1 {
  font-size: 6vw;
  font-weight: 600;
  color: black;
  /* background-color: #0da34e; */
  padding-left: 20vw;
  padding-right: 5vw;
  line-height: 6vw;
  padding-bottom: 5vh;
  border-bottom: 1px solid #dadada;
}
.page8-content {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.page8-content .right-8 {
  width: 70%;
}
.page8-content .right-8 p {
  font-size: 1.5vw;
  color: #000;
  margin-bottom: 5vh;
  width: 80%;
}
.blue-btn {
  background-color: #4f5bff;
  width: 15vw;
  height: 4vw;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blue-btn h4 {
  position: absolute;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1vw;
  /* letter-spacing: ; */
}
.blue-btn h4 i {
  font-size: 1.5vw;
  font-weight: 100;
  margin-left: 0.5vw;
}
.page8-bottom {
  height: 50vh;
  width: 100%;
  border-top: 1px solid #969696;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  /* background-color: #0da34e; */
}
.bottom8-part1 {
  border-right: 1px solid #dadada;
  width: 30%;
  /* background-color: #333; */
  height: 100%;
}
.bottom8-part2 {
  border-right: 1px solid #dadada;
  width: 28%;
  /* background-color: #333; */
  height: 100%;
}
.bottom8-part3 {
  border-right: 1px solid #dadada;
  width: 15%;
  /* background-color: #333; */
  height: 100%;
}
.bottom8-part4 {
  border-right: 1px solid #dadada;
  width: 15%;
  /* background-color: #333; */
  height: 100%;
}
.bottom8-part5 {
  width: 15%;
  /* background-color: #333; */
  height: 100%;
}
.bottom8 {
  padding: 4vh 0.6vw;
}
.bottom8 h5 {
  color: #000;
  font-weight: 500;
  font-size: 1vw;
  margin-bottom: 4vh;
}
.bottom8 h4 {
  background-color: #111;
  width: 80%;
  font-size: 0.8vw;
  font-weight: 500;
  padding: 5px 10px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  margin-bottom: 0.3vh;
}
.bottom8 h4 span {
  background-color: #333;
  padding: 0.5vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1vw;
  height: 1vw;
  margin-right: 1vw;
}
.bottom8-part2 h4:nth-child(2) {
  transform: translateX(0);
}
.bottom8-part2 h4:nth-child(3) {
  transform: translateX(10%);
}
.bottom8-part2 h4:nth-child(4) {
  transform: translateX(20%);
}
.bottom8-part2 h4:nth-child(5) {
  transform: translateX(30%);
}
.bottom8-part2 h4:nth-child(6) {
  transform: translateX(40%);
}
.bottom8-part2 h4:nth-child(7) {
  transform: translateX(50%);
}
.bottom8-part2 h4:nth-child(8) {
  transform: translateX(60%);
}
