* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: #ffff;
}
html,
body {
  height: 100%;
  width: 100%;
}
/* --------------------------------------------------------- */
nav {
  background-color: #111;
  position: fixed;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  height: 12vh;
  padding: 2vw 9vw;
  z-index: 10;
}
nav .nav-part2 {
  display: flex;
  align-items: center;
  gap: 2vw;
  align-items: flex-start;
  padding: 1vh 0;
  position: relative;
  z-index: 10;
}
nav .nav-part2 h4 {
  font-size: 0.8vw;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 2.6vw;
}
.nav-part2 h5 {
  margin-bottom: 1vw;
  display: none;
  overflow: hidden;
}
.nav-part2 h5 span {
  font-size: 0, 77vw;
  font-weight: 400;
  display: inline-block;
}
nav button {
  text-transform: uppercase;
  background-color: #0da34e;
  display: flex;
  align-items: center;
  border: none;
  border-radius: 50px;
  padding: 14px 20px;
  font-size: 0.85vw;
  font-weight: 700;
}
nav button svg {
  height: 0.85vw;
  margin-left: 1.6vw;
}
#nav-bottom {
  height: 0vh;
  width: 79%;
  position: absolute;
  background-color: #111;
  top: 100%;
  z-index: 9;
  border-bottom: 1px solid #fff;
}

/* ------------------------------------------------ */

#page1 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#page1 h1 {
  font-size: 8.5vw;
  text-transform: uppercase;
  font-weight: 900;
  line-height: 8.5vw;
}
#page1 h1 svg {
  height: 6.5vw;
  width: 6.5vw;
  border-radius: 50%;
  background-color: #0da34e;
}
#page1 p {
  text-align: center;
  font-weight: 400;
  margin-top: 5vh;
}
#page1,
.page1-1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
#page1 .page1-1 h4 {
  font-weight: 400;
  font-size: 1vw;
  text-transform: lowercase;
  border: 1px solid #a5a5a5;
  border-radius: 30px;
  padding: 5px 10px;
  margin-top: 5px;
}
#page1 .page1-1 h4:nth-last-child(2) {
  border: none;
}

/* ----------------------- */
#Moving-div {
  position: absolute;
  bottom: 3%;
  white-space: nowrap;
  padding: 1.2vw;
  overflow: hidden;
  width: 45%;
}
#Moving-div .move {
  display: inline-block;
  animation-name: move;
  animation-duration: 15s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
#Moving-div .move img {
  height: 1vw;
  margin: 0 1vw;
}
@keyframes move {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
#blur-left {
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, #111, transparent);

  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
#blur-right {
  width: 20%;
  height: 100%;
  background: linear-gradient(to right, transparent, #111);
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
}

/* --------------//////////////////////- */
#page2 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  position: relative;
  padding: 0vw 10.5vw;
  padding-bottom: 8vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #eee5e5;
}
#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: 1.2vw;
  width: 70%;
  font-weight: bold;
}
/* ///// */
#page2-right {
  height: 100%;
  width: 50%;
}
.right-elem {
  position: relative;
  padding-top: 2vw;
  padding-bottom: 5vw;
  border-bottom: 1px solid #333;
}

.right-elem img {
  height: 7vw;
  width: 7vw;
  border-radius: 50%;
  object-fit: cover;
  position: absolute;
  opacity: 0;
  scale: 0;
}
/* ------------ */
#page3 {
  height: 100vh;
  width: 100%;
  background-color: #111;
  position: relative;
  background-image: url(video-img.webp);
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page3-circle {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 1vw;
}
.page3-circle h5 {
  font-size: 0.8vw;
  padding: 10px 20px;
  text-transform: uppercase;
  background-color: #fff;
  color: #111;
  margin-top: 0.5vw;
  border-radius: 50px;
  font-weight: 800;
  opacity: 0;
  transition: all ease 0.5s;
  transform: translateY(10%);
}

.page3-circle .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.3vw;
  border-radius: 50%;
  background-color: #fff;
  color: #111;
  cursor: pointer;
}
.page3-circle .icon i {
  color: #111;
  font-size: 3vw;
}
.page3-circle: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: 999;
}
/* --------------page4----------- */
#page4 {
  height: 100vh;
  width: 100%;
  background-color: #fff;
  color: #111;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  margin-top: 8vw;
}
.page4-left {
  width: 45%;
  height: 100vh;
  font-weight: 800;
  font-size: 25px;
}
.page4-left h2 {
  max-width: 22vw;
  color: #111;
  padding-left: 20px;
}
.page4-right {
  width: 45%;
  height: 100vh;
}
.page4-right .heading {
  color: grey;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1vw;
}
.page4-right p {
  color: #111;
  font-weight: 600;
  font-size: 20px;
  margin-top: 15px;
}
.page4-p1 {
  margin-top: 5vw;
}
/* ----------------------page5------------ */
#page5 {
  height: 100vh;
  width: 100%;
  background-color: #fff;
  color: #111;
}
.page5-boxes {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-template-rows: minmax(2);
  align-items: center;
  justify-content: center;
  color: #111;
  gap: 10px;
}
.page5-boxes .box {
  height: 18vw;
  width: 30vw;
  background-color: #f5f5f5;
  padding: 10px 20px;
  padding-left: 30px;
  padding-top: 20px;
}
.page5-boxes h3 {
  font-size: 4vw;
  font-weight: 400;
  color: #111;
}
.page5-boxes p {
  font-weight: 600;
  font-size: 1vw;
  color: #111;
}
#page5 span {
  position: absolute;
  margin-top: 100px;
  font-weight: 80;
  color: #dbcdcd;
}
/* --------Page 6---------- */
.featured-projects {
  max-width: 900px;

  padding: 20px;
  margin-left: 32vw;
  background-color: #fff;
  margin-bottom: 40px;
}

.featured-projects h6 {
  max-width: 150px;
  float: left;
  line-height: 1.3;

  font-size: 14px;
  font-weight: bold;
  margin-top: 0;
  color: #111;
}

.featured-projects p {
  line-height: 1;
  font-size: 28px;
  font-weight: 600;
  color: #111;
}
/* -------page 7------------------------------- */
#page7 {
  min-height: 100vh;
  width: 100%;
  background-color: #fff;
  color: #111;
  position: relative;
  padding-bottom: 13vh;
}
.section {
  height: 80vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #111;
  padding: 15vh 10vw;
  padding-bottom: 0;
}
.sec-left {
  height: 100%;
  width: 25%;
  padding-top: 1.5vw;
  color: #111;
  border-top: 2px solid #111;
}
.sec-left h2 {
  font-size: 2.1vw;
  font-weight: 500;
  color: #111;
}
.sec-left p {
  color: #111;
  margin-top: 10vh;
  font-size: 1.2vw;
  font-weight: 502;
}
.sec-right {
  height: 100%;
  width: 70%;
  background-color: #a5a5a5;
  color: #111;
  position: relative;
}
.sec-right img {
  height: 100%;
  width: 100%;
  background-size: cover;
}
.sec-right video {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  opacity: 0;
  transition: opacity ease 0.1s;
}
/* ---------page8----- */
#page8 {
  display: flex;
  position: relative;
  padding: 5vh 10.5vw;
  min-height: 100vh;
  width: 100%;
  background-color: #111;
  align-items: flex-start;
  justify-content: space-between;
}
#page8 > button {
  background-color: #0da34e;
  padding: 0.9vw 2.5vw;
  font-size: 1vw;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  position: sticky;
  top: 15%;
}
#page8-right {
  width: 70%;
}
#page8-right > p {
  font-size: 2.1vw;
}
#page8-right > p span {
  width: 15vw;
  display: inline-block;
}
#page8-content {
  border-top: 1px solid #333;
  margin-top: 5vh;
  padding: 5vh 0;
  width: 100%;
}
#page8-content h1 {
  font-size: 3vw;
}
#page8-content #flex {
  display: flex;
  align-items: center;
  margin-top: 4vh;
  margin-bottom: 7vh;
  /* gap: 20px; */
}
#page8-content #flex h4 {
  font-weight: 605;
  padding: 5px 15px;
  border-radius: 50px;
  border: 1px solid #fff;
  font-size: 13px;
}
/* ------------------------s */
.page8-elem {
  padding-top: 3vh;
  padding-bottom: 8vh;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border-top: 1px solid #fff;
  position: relative;
  overflow: hidden;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.page8-elem > p {
  width: 60%;
  font-size: 1vw;
  font-weight: 500;
  position: relative;
  z-index: 8;
}
.page8-elem h3 {
  font-size: 1.5vw;
  font-weight: 600;
  position: relative;
  z-index: 8;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.page8-elem > i {
  font-size: 1vw;
  position: relative;
  z-index: 8;
  transition: all cubic-bezier(0.19, 1, 0.22, 1) 1s;
}
.page8-elem .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;
}
.page8-elem:hover h3 {
  padding-left: 1vw;
}
.page8-elem:hover i {
  padding-right: 1vw;
}
.page8-elem:hover .over {
  opacity: 1;
  transform: translateY(0);
}
.page8-elem:hover {
  border-top: 2px solid #fff;
}

summary::marker {
  content: "";
}

.productDesgin {
  border-top: 1px solid #333;
  padding-top: 2vw;
}
/* ------------/////////-------- */
#page9 {
  min-height: 100vh;
  width: 100%;
  /* background-color: #111; */
  background-color: #fff;
  padding: 10vh 10vw;
}
#page9 h1 {
  font-size: 5.1vw;
  color: #111;
  padding-left: 23vw;
  padding-right: 5vw;
  line-height: 5.8vw;
  padding-bottom: 14vh;
  border-bottom: 1px solid #dadada;
}
#page9-content {
  color: #111;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 8vh 0;
}
#right-9 {
  width: 70%;
}
#right-9 > p {
  font-size: 1.5vw;
  color: #111;
  margin-bottom: 5vh;
  width: 80%;
}
.blue-btn {
  background-color: #4f5bff;
  width: 14vw;
  height: 3.5vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
}
.blue-btn h4 {
  position: absolute;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 0.85vw;
}
.blue-btn h4 i {
  font-size: 1.2vw;
  font-weight: 100;
  margin-left: 0.5vw;
}
/* ---------- */
#page9-bottom {
  height: 45vh;
  width: 100%;

  border-top: 1px solid #dadada;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.btm9-part1 {
  border-right: 1px solid #dadada;
  height: 100%;
  width: 20%;
}
.btm9-part2 {
  border-right: 1px solid #dadada;
  height: 100%;
  width: 28%;
}
.btm9-part3 {
  border-right: 1px solid #dadada;
  height: 100%;
  width: 20%;
}
.btm9-part4 {
  border-right: 1px solid #dadada;
  height: 100%;
  width: 20%;
}
.btm9-part5 {
  height: 100%;
  width: 15%;
}
#btm9-parts {
  padding: 3vh 0.6vw;
}
#btm9-parts h5 {
  color: #000;
  font-weight: 400;
  font-size: 0.9vw;
  margin-bottom: 4vh;
}
#btm9-parts h4 {
  background-color: #111;
  width: 75%;
  padding: 5px 10px;
  border-radius: 50px;
  font-size: 0.85vw;
  font-weight: 500;
  display: flex;
  align-items: center;
  margin-bottom: 0.3vh;
}
#btm9-parts h4 span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5vw;
  height: 1.5vw;
  background-color: #333;
  border-radius: 50%;
  padding: 0.5vw;
  margin-right: 1vw;
}
