@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");

* {
  margin: 0;
  padding: 0;
  color: white;
  font-family: sans-serif;
  box-sizing: border-box;
  font-family: "Space Grotesk", sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* For Firefox */

html,
body {
  width: 100%;
  height: 100%;
  scroll-behavior: smooth;
}

#deskNav {
  width: 100vw;
  height: 11vh;
  background-color: rgb(10, 10, 10);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99;
  padding-top: 5vh;
  position: fixed;
  overflow: hidden;
  top: 0;
}

#deskNav * {
  text-decoration: none;
}

#deskNav > div {
  width: 90%;
  border-bottom: 1px solid rgba(128, 128, 128, 0.589);
  height: 100%;
  display: flex;
  justify-content: space-between;

  position: relative;
}

#deskNav .nav-items {
  display: flex;
  font-size: 0.9vw;
  text-transform: uppercase;
  font-weight: bold;
}

#deskNav .expanded-nav-items {
  display: flex;
  flex-direction: column;
  gap: 4vh;
  padding-right: 20px;
}

#deskNav .expanded-nav-items > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#deskNav .expanded-nav-items > div a {
  overflow-y: hidden;
  font-weight: normal !important;
  text-transform: none !important;
  font-size: 1vw !important;
}

#deskNav .expanded-nav-items > a {
  transition: all 0.3s ease;
}

#deskNav .expanded-nav-items > a:hover {
  color: #7a7878;
  transition: all 0.3s ease;
}

#deskNav .expanded-nav-items > div p {
  transition: all 0.3s ease;
  transform: translateY(100%);
  opacity: 0;
}

#deskNav .expanded-nav-items > div p:hover {
  color: #0da34e !important;
  transition: all 0.3s ease;
}

.nav-cta-btn {
  width: 10%;
}

.nav-cta-btn button {
  width: 100%;
  display: flex;
  background: transparent;
  color: #000000 !important;
  border-radius: 50px;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1vw;
  bottom: 1.5vh;
  border: none;
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
}

.nav-cta-btn button > div {
  position: absolute;
  z-index: -1;
  top: 0%;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-color: #0da34e;
  transition: all 0.3s ease;
}

.nav-cta-btn button:hover > div {
  width: 30%;
  transition: all 0.3s ease;
}

.nav-cta-btn button p {
  flex-grow: 1;
  text-align: left;
}

.nav-cta-btn button i {
  font-size: 0.8vw;
  text-align: center;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  width: 20%;
}

#desklogo {
  font-size: 2vw;
  font-weight: 900;
  position: relative;
  bottom: 1.5vh;
}
.nav-items > a {
  padding-right: 20px;
}

.nav-items > a:hover {
  color: #0da34e;
  transition: all 0.3s ease;
}
/* Loader styles */

/* Spinner styles */
.spinner {
  border: 16px solid #f3f3f3;
  border-top: 16px solid #3498db;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

html,
body {
  width: 100%;
  cursor: default;
  height: 100%;
  background: rgb(10, 10, 10);
}

#page1 {
  height: 100vh;
  width: 100vw;
  background: rgb(10, 10, 10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#hIcon {
  border-radius: 50%;
  width: 5.5vw;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 5.5vw;
  background-color: #0da34e;
}
#hIcon svg {
  height: 3vw;
}

#page1 h1 {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 7vw;
  text-transform: uppercase;
  font-weight: 800;
  line-height: 7vw;
}

#page1 p {
  text-align: center;
  font-weight: 400;
  margin-top: 3vh;
}

#page1btns {
  display: flex;
  align-items: center;
  justify-content: center;
}
#page1btns h4 {
  font-weight: 400;
  font-size: 1vw;
  text-transform: lowercase;
  padding: 5px 12px;
  color: #0da34e;
  border-radius: 20px;
  border: 2px solid #0da34e;
  margin-top: 1vh;
  margin-right: 0.5vw;
}
#page1btns h4:nth-last-child(2) {
  border: none;
  color: white;
}

#page1 {
  position: relative;
}

.brand-slide {
  position: absolute;
  bottom: 8%;
  display: flex;
  flex-wrap: nowrap;
  width: 60%;
  overflow: hidden;
}

.move {
  min-width: 100vw;
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.move img {
  min-width: 150px;
  height: 25px;
}

#blur-left {
  background: linear-gradient(to right, #111, transparent);
  backdrop-filter: blur(2px);

  position: relative;
  z-index: 9;
  min-width: 100px;
}

#blur-right {
  background: linear-gradient(to right, #11111100, #111);
  backdrop-filter: blur(2px);
  position: absolute;
  left: 85%;
  z-index: 9999;
  min-width: 150px;
  height: 100%;
}

#page2 {
  min-height: 80vh;
  height: 100%;
  width: 100vw;
  background: rgb(10, 10, 10);
  position: relative;
  margin-top: 10vh;
  margin-bottom: 10vh;
}

.page2-item {
  width: 100%;
  min-height: inherit;
  position: sticky;

  padding: 0 8vw;
  display: flex;
  justify-content: space-between;
  gap: 7vw;
  position: relative;
}

.page2-item .item-left {
  flex-shrink: 1;
  /* background-color: #0da34e; */
  width: 30%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-top: 1px solid #dadada7c;
  padding: 3vh 0;
}
.page2-item .item-left p {
  font-size: 1.1vw;
}

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

.page2-item .item-right {
  flex-grow: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4vh;
}

.item-right h2 {
  width: 80%;
  font-size: 2vw;
}

.right-elem img {
  width: 100px;
  display: none;
  height: 100px;
  border-radius: 50%;
  position: absolute;
}

.right-elem {
  position: relative;
  padding-bottom: 3vh;
  cursor: pointer;
  padding-top: 3vh;
  border-top: 1.5px solid #dadada7c;
}

.right-elem:hover {
  border-top: 1.5px solid #ffffff;
  transition: all 0.3s ease;
}

.item-right .icon {
  color: white;
  transform: rotate(-40deg);
  position: absolute;
  right: 0;
  font-size: 1.4rem;
  padding: 0 12px;
  top: 3vh;
  display: inline-flex;
}

#page3 {
  width: 100%;

  height: 100%;
  color: white;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 8vh 0;
}

#page3 video {
  width: 70%;
  border-radius: 22px;
  opacity: 0.6;
}

.page3-center {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page3-center .icon {
  font-size: 2.5rem;
  width: 120px;
  height: 120px;
  padding: 24px;
  background-color: #c4c1c100;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px dashed white;
  animation: rotate 12s infinite linear;
  cursor: pointer;
  transition: all 0.3s ease;
}
.icon div {
  width: 100%;
  height: 100%;
  background-color: #c4c1c14f;
  padding: 50px;
  border-radius: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: antirotate 12s infinite linear;
  transition: all 0.3s ease;
}

.page3-center .icon:hover {
  background-color: #0da34e00;
  border: none;
  transition: all 0.3s ease;
}

.icon:hover div {
  background-color: #0da34e;
  transition: all 0.5s ease;
}

.page3-center h5 {
  padding: 12px 6px;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes antirotate {
  from {
    transform: rotate(360deg);
  }
  to {
    transform: rotate(0deg);
  }
}

.fullvideo {
  width: 100vw;
  overflow: hidden;
  display: none;
  height: 102vh;
  position: absolute;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  opacity: 1;
  background-color: #111111;
  z-index: 999;
}

.fullvideo video {
  width: 100%;
  opacity: 1;
  height: 100%;
}

.page4 {
  background: white;
  min-height: 100vh;
  width: 100vw;
  color: black !important;
  padding: 6rem 5rem;
}

.page4 * {
  color: black !important;
}

.page4 .top-part {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.top-left-part {
  width: 30%;
}

.top-right-part {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 8vh;
}

.top-right-part div p:nth-child(1) {
  font-size: 1.1vw;
  text-transform: uppercase;
  color: #757474be !important;
  margin-bottom: 3vh;
}

.top-right-part div p:nth-child(2) {
  font-size: 1.4vw;
}

.top-left-part h2 {
  text-transform: capitalize;
  font-size: 3.2vw;
}

.bottom-part {
  padding-top: 10vh;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 2vh;
}

.bottom-part > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8vh;
  width: 400px;
  /* height: 200px; */
  background-color: #f5f5f5;
  padding: 35px 30px;
  border-radius: 8px;
}

.bottom-part > div h1 {
  font-size: 3rem;
}

.bottom-part > div div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem !important;
}

.bottom-part > div div p:nth-last-child(1) {
  color: #757474c9 !important;
}

#page5 {
  min-height: 100vh;
  width: 100%;
  background: #111;
  color: #ffffff;
  padding: 6vw;
}

.page5-top-item {
  width: 100%;
  margin-bottom: 3vh;
  display: flex;
  justify-content: space-between;
}

.page5-top-item-left {
  width: 25%;
}

.page5-top-item-right {
  width: 70%;
  padding-bottom: 2vh;
}

.page5-top-item-right div {
  display: inline;
  font-size: 1vw;
  padding: 12px;
  color: #adadadb9;
  width: 32%;
  height: 40%;
  float: left;
}

.page5-top-item-right p {
  display: inline;
  font-size: 2vw;
}

.page5-item-left {
  width: 25%;
  padding-top: 1vh;
  border-top: 1px solid #757474c9;
  display: flex;
  flex-direction: column;
  gap: 4vh;
  position: sticky;
  top: 16vh;
}

.page5-item-right {
  width: 70%;
  padding-top: 2vh;
  border-top: 1px solid #757474c9;
  transition: all 0.2s ease;
  padding-bottom: 8vh;
}

.page5-item-right:hover {
  border-top: 1px solid #ffffff;
  transition: all 0.2s ease;
}

.page5-item-left h1 {
  font-size: 3.5vw;
}

.page5-item-left p {
  font-size: 1.5vw;
}

.page5-item-left button {
  background-color: #4f5bff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4vw;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  width: 90%;
}

.page5-item-left button div {
  display: flex;
}

.page5-item-left button div span {
  display: flex;
  flex-direction: row;
  place-items: center;
  font-size: 1vw;
  text-transform: uppercase;
  font-weight: 600;
  overflow-y: hidden;
}
.page5-item-left button div span:nth-last-child(1) {
  overflow: hidden;
  padding-left: 6px;
}
.page5-item-left button div span i {
  transform: rotate(-40deg);
}

.page5-item-right > div {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.page5-item-right > div .title {
  font-size: 1.8vw;
  width: 30%;
  font-weight: bold;
}

.page5-item-right .tags {
  display: flex;
  margin-top: 2vh;
}

.page5-item-right .other {
  width: 70%;
}

.page5-item-right .other p {
  font-size: 0.9vw;
}

.page5-item-right .tag {
  padding: 5px 12px;
  text-transform: uppercase;
  border: 1px solid #4e4c4cf1;
  border-radius: 12px;
  font-size: 0.8vw;
  font-weight: bold;
}

.page5-vdo {
  width: 100%;
  display: flex;
  padding: 3vh 0;
  justify-content: center !important;
  align-items: center;
  position: relative;
}

.page5-vdo-item {
  max-width: 100%;
  border-radius: 12px;
}
video {
  width: 100%;
  border-radius: inherit;
}

.vdoanimation {
  animation: vdoanimation 0.2s ease;
}

@keyframes vdoanimation {
  from {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}

.vdocursor {
  width: 150px;
  height: 150px;
  background-color: #4f5bff;
  color: white;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  display: none;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  z-index: 999;
}

.showcursor {
  display: flex !important;
  animation: cursorAnim 0.5s ease 0 1;
}

.hidecursor {
  display: none !important;
}

@keyframes cursorAnim {
  from {
    opacity: 0;
    scale: 0;
  }
  from {
    opacity: 1;
    scale: 1;
  }
}

#page6 {
  min-height: 100vh;

  max-height: 300vh;
  width: 100%;
  background-color: #111;
}

#page6 * {
  border: 1px transparent white;
}

#page6 > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 6vw;
  border-top: 1.5px solid #4948488e;
}

.page6-left {
  width: 25%;

  position: relative;
  display: flex;
}
.page6-right {
  width: 70%;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.page6-left button {
  position: -webkit-sticky;
  background-color: #0da34e;
  color: white;
  height: 4vw;
  border: none;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 32px;
  width: 82%;
  font-size: 1vw;
  font-weight: bold;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
  position: sticky !important;
  top: 50vh !important;
  z-index: 1;
}

.page6-top-item-right {
  width: 100%;
  margin-bottom: 12vh;
}

.page6-top-item-right > div {
  float: left;
  display: flex;
  align-items: center;
  font-size: 0.9vw;
  color: #ccc9c9e7;
  font-weight: bold;
  padding-top: 12px;
  width: 25%;
}

.page6-top-item-right > p {
  font-size: 2.4vw;
}

.page6-expandable {
  padding-top: 3vh;
  border-top: 1.5px solid #4948488e;
  display: flex;
  flex-direction: column;
  gap: 6vh;
  padding-bottom: 0vh;

  position: relative;
}

.page6-expandable h1 {
  font-size: 3.5vw;
}

.page6-btns {
  display: flex;
  gap: 1px;
}

.page6-btns button {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(128, 128, 128, 0.548);
  border-radius: 26px;
  text-transform: uppercase;
  padding: 10px 16px;
  font-weight: bold;
  cursor: pointer;
}

.expanded {
  display: flex;
  flex-direction: column;
  gap: 0vh;
}

.expanded-item {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding-top: 2vh;
  border-top: 1.5px solid #444444ec;
  cursor: pointer;
  position: relative;
  padding-bottom: 8vh;
}

.expanded-item div span {
  transition: all 1s ease;
}
.expanded-item:hover div:nth-child(1) span {
  padding-left: 20px;
  transition: all 1s ease;
}

.expanded-item:hover div:nth-child(3) i {
  right: 20px;
  transition: all 1s ease;
}
.expanded-item div:nth-child(3) i {
  transition: all 1s ease;
}

.expanded-item div:nth-child(1) {
  width: 30%;
  font-size: 1.5vw;
  font-weight: 400 !important;
  z-index: 9;
}

.expanded-item div:nth-child(2) {
  width: 60%;
  font-size: 0.8vw;
  font-weight: 600;
  z-index: 9;
}

.expanded-item div:nth-child(3) {
  width: 10%;
  position: relative;
  z-index: 9;
}

.expanded-item div:nth-child(3) i {
  font-size: 1.3vw;
  z-index: 9;
  position: absolute;
  top: 0;
  right: 0px;
  transform: rotate(-40deg);
}

.expanded-item:hover .overlay {
  display: block;
  height: 200%;
  opacity: 1;
  top: 0;
  transform: translateY(0%);
  transition: all 2s cubic-bezier(0.19, 1, 0.22, 1);
}

.opened {
  border-top: 1.5px solid white;
  transition: all 0.3s ease;
}

.expanded-item {
  overflow: hidden;
}

.expanded-item:hover {
  border-top: 1px solid white;
}

.overlay {
  position: absolute;
  display: block;
  opacity: 1;
  min-width: 100%;
  height: 0%;
  background-color: #292929;
  transition: all 0.5s ease;
  top: 100%;
  left: 0;
  transform: translateY(-100%);
}

.page6-expandable summary {
  display: flex;
  flex-direction: column;
  gap: 6vh;
  padding-bottom: 6vh;
}

* {
  user-select: none;
}

.page7 {
  min-height: 100%;
  width: 100%;
  background-color: #111;
  display: flex;
  flex-direction: column;
  gap: 8vh;
  border-top: 2px solid #2e2e2e;
  padding: 12vh;
}

.page7 .para {
  text-align: center;
  font-size: 0.8vw;
  font-weight: bold;
  text-transform: capitalize;
}

.page7 .heading {
  font-size: 2.5vw;
  width: 65%;
  place-self: center;
  font-weight: 400;
  text-align: center;
}

.page7-boxes {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.page7-boxes .box {
  cursor: pointer;
  padding: 36px;
  width: 400px;
  border-radius: 6px;
  height: 250px;
  background-color: #1f1f1f;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page7-boxes .box:nth-last-child(1) {
  background-color: #0da34e;
}

.page7-boxes .box > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page7-boxes .box > div i {
  transform: rotate(-40deg);
  font-size: 1.7vw;
}

.page7-boxes .box > p {
  font-size: 0.8vw;
  font-weight: 400;
}

.page8 {
  width: 100%;

  background-color: #fff;
  padding: 6vw;
  display: flex;
  justify-content: space-between;
}

.page8-left {
  width: 22%;
  height: 100%;
  color: white !important;

  display: flex;
  align-items: center;
}

.page8-left button {
  transform: translateY(450%);
  width: 100%;
  background-color: #4f5bff;
  cursor: pointer;
  border-radius: 36px;
  color: white !important;
  height: 4vw;
  text-transform: uppercase;
  font-size: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  font-weight: bold;
  gap: 1vw;
}

.page8-left button i {
  transform: rotate(-40deg);
  font-size: 1.2vw;
}

.page8-right {
  width: 72%;
  color: #111 !important;
  display: flex;
  flex-direction: column;
  gap: 7vw;
}

.page8-right * {
  color: #111 !important;
}

.page8-right h1 {
  width: 80%;
  text-transform: capitalize;
  font-size: 6.5vw;
  font-weight: 600;
  letter-spacing: -5px;
  line-height: 5.5vw;
}

.page8-right p {
  font-size: 1.6vw !important;
  width: 70%;
}

.page8-right > div {
  position: relative;
}

.page8-right > div .border {
  position: absolute;
  top: 0;
  right: 1vw;
  width: 86vw;
  height: 1px;
  background-color: rgba(78, 78, 78, 0.5);
}

.test {
  color: #4f5bff;
}
.gridcont {
  width: 100%;
  display: grid;
  grid-template-columns: 2fr 1.5fr 1.5fr 1fr;
}

.gridcont > div {
  padding: 3vh 5px;
  border-left: 1px solid rgba(78, 78, 78, 0.5);
}

.gridcont div > p {
  font-size: 0.9vw !important;
  text-transform: capitalize;
}

.lists {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 5vh;
  position: relative;
}

.list-item * {
  color: #fff !important;
}

.list-item {
  position: relative;
  background-color: #111;
  width: 200px;
  max-width: 250px;
  font-size: 0.8vw;
  height: fit-content;
  display: flex;
  gap: 12px;
  padding: 6px 4px;
  align-items: center;
  border-radius: 40px;
  color: #fff;
  text-transform: capitalize;
}

.list-item > span:nth-child(1) {
  background-color: #3d3d3d;
  padding: 6px 9px;
  border-radius: 50%;
}

.list-item:nth-child(2) {
  transform: translateX(20%);
}

.list-item:nth-child(3) {
  transform: translateX(40%);
}
.list-item:nth-child(4) {
  transform: translateX(60%);
}
.list-item:nth-child(5) {
  transform: translateX(80%);
}
.list-item:nth-child(6) {
  transform: translateX(100%);
}

.page9 {
  padding: 10vw 6vw;
  display: flex;
  justify-content: space-between;
}

.page9-left {
  display: flex;
  flex-direction: column;
  width: 38%;
  gap: 6vh;
}

.page9-right {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 4vw;
}

.page9-left h2 {
  font-size: 2.8vw;
}

.page9-left p:nth-child(1) {
  font-size: 0.9vw;
}

.page9-left p:nth-last-child(1) {
  font-size: 0.8vw;
  width: 70%;
  margin-top: 8vh;
}

.client {
  display: flex;
  flex-direction: column;
  padding: 6vh 0;
  gap: 3vw;
  border-top: 1px solid #353535;
}

.client p:nth-child(1) {
  font-size: 0.9vw;
}
.client p:nth-child(2) {
  font-size: 1.55vw;
}

.clientUser {
  display: flex;
  align-items: center;
  gap: 12px;
}

.clientUser .pic {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}

.clientUser img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
}

.clientDtls {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vh;
}

.clientName {
  font-size: 1.2vw !important;
}

.clientDesignation {
  font-size: 0.8vw !important;
  text-transform: capitalize;
}

.page10 {
  width: 100%;
  min-height: fit-content;
  height: fit-content;
  position: relative;
  background: linear-gradient(90deg #111, rgb(1, 20, 0));
  border-top: 1px solid #353535;
  overflow: hidden;
  padding: 6vh 6vw;
  margin-bottom: 10vh;
  border-bottom: 1px transparent #353535;
  display: flex;
  justify-content: space-between;
}

.page10 img {
  position: absolute;
  top: 0%;
  width: 100%;
  height: 100%;
  scale: 1.5;
  z-index: -1;
  transform: rotate(7deg);
}

.page10 h1 {
  font-size: 10vw;
  font-weight: 700;
  padding-top: 3vh;
  color: white;
  width: 60%;
  text-transform: uppercase;
  z-index: 9;
  line-height: 10vw;
  font-weight: bolder;
}

.page10 div {
  height: 100%;
  width: 30%;
  display: flex;
  gap: 10vw;
  flex-direction: column;
  justify-content: space-between;
  text-align: right;
}

.page10 div p {
  place-self: end;
  font-weight: 500;
}

.page10 div i {
  font-size: 10vw;
  padding-top: 6vh;
}

.call {
  background-color: #0da34e;
  opacity: 0;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50%;
  display: flex;
  flex-direction: row !important;
  justify-content: center !important;
  align-items: center !important;
  cursor: pointer;
  position: absolute;
  z-index: 99;
  width: 150px !important;
  height: 150px !important;
}

/* .rotateIcon {
  transform: rotate(180deg) !important;
  transition: all 0.5s ease;
} */

.summary i {
  transition: all 0.5s ease !important;
}

details {
  overflow: hidden;
}

.expanded-item {
  min-height: 16vh;
  max-height: 16vh;
  height: 16vh;
}

.pagge11 {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6vh 0;
}

.pagge11 h1 {
  font-size: 5vw;
  width: 40%;
  text-transform: capitalize;
}

.page12 {
  padding: 6vw;
  display: flex;
  margin-top: 4vh;
  justify-content: space-between;
  border-top: 1px solid #353535;
}

.page12-left {
  width: 25%;
}

.page12-right {
  width: 72%;
}

.page12-right p {
  font-size: 2.2vw;
}

.brands {
  display: flex;
  margin-top: 4vh;
  border-top: 1px dotted rgba(255, 255, 255, 0.603);
  padding-top: 4vh;
  gap: 5px;
}

.brands i {
  font-size: 1.2vw;
  position: relative;
  bottom: 30%;
  margin: 0 8px;
}

.page12-left button {
  position: sticky;
  top: 6vh;
  background-color: #0da34e;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  width: 90%;
  height: 4.3vw;
  font-size: 1vw;
  text-transform: uppercase;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.page12-left button i {
  transform: rotate(-50deg);
  font-size: 1.2rem;
}

.page15 {
  width: 90%;
  border-top: 1px solid #2e2e2e;
  margin-left: 5%;
  padding: 12vh 0;
  margin-top: 6vh;
  display: flex;
}

.page15-left {
  width: 30%;
}

.page15 svg {
  width: 10vw;
  padding: 14px;
  transform: rotate(0deg);
}

.page15-right {
  width: 70%;
  padding-top: 4vh;
}

.page15-right p span {
  float: left;
  width: 30%;
  height: 4vw;
  display: inline;
  font-size: 0.9vw !important;
  font-weight: bold;
  padding-top: 2vh;
}

.page15-right p {
  display: inline;
  font-size: 2.5vw;
}

.page16 {
  border-top: 1px solid #474747;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 6vw;
}

.page16-left {
  width: 50%;
  font-size: 2vw;
  line-height: 4.5vw;
}

.page16-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 6vh;
  position: relative;
}

.page16-right form {
  width: 70%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 3vh;
  margin-top: 6vh;
  display: flex;
  font-family: "Courier New", Courier, monospace;
}

.page16-right form input {
  width: 100%;
  padding: 10px;
  border: none;
  position: relative;
  background: transparent;
  border-bottom: 1px solid white;
}

.page16-right form input:focus {
  outline: none;
}

textarea {
  background: transparent;
  width: 100%;
  padding: 10px;
  border: none;
  height: fit-content;
  outline: none;
  border-bottom: 1px solid white;
  position: relative;
  transition: all 1s ease;
  resize: none;
  height: 16vh;
}

form button {
  height: 5vw;
  border-radius: 50px;
  border: 1px solid white;
  font-size: 1.5vw;
  cursor: pointer;
  text-transform: uppercase;
  background-color: black !important;
  color: white !important;
  transition: all 0.3s ease;

  width: 100%;
}

form button:hover {
  background-color: #fff !important;
  color: #000 !important;
  transition: all 0.3s ease;
  font-weight: bold;
}

form button:hover i {
  background-color: #fff !important;
  color: #000 !important;
  transition: all 0.3s ease;
  font-weight: bold;
}

form button:active {
  scale: 0.9;
}

#responseMessage {
  padding: 6vh 0;
  position: absolute !important;
  display: none;
  flex-direction: column;
  gap: 4vh;
  align-items: center;
  background: rgb(10, 10, 10) !important;
  top: 0;
  left: 0;
  width: 70%;
  z-index: 9999;
  height: fit-content;
}

#responseMessage p {
  color: rgb(255, 255, 255);
  font-size: 2vw !important;
  text-align: center;
}

#responseMessage i {
  color: white;
  text-align: center;
  font-size: 8vw !important;
}

#responseMessage i.success {
  color: green;
}

#responseMessage i.warn {
  color: red;
}

.page17 {
  border-top: 1px solid #474747;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 6vw;
}

.page17-left {
  font-size: 3.5vw;
  line-height: 7vw;
  width: 35%;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  gap: 12vh;
}

.page17-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  gap: 6vh;
  position: relative;
}

.page17-left button {
  cursor: pointer;
  width: 18vw;
  height: 4.5vw;
  border-radius: 50px;
  background-color: #0633ad;
  color: white;
  position: relative;
  border: none;
  display: flex;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: scale 0.3s ease;
}
.page17-left button:hover {
  transition: scale 0.3s ease;
}
.page17-left button:hover span {
  font-size: 1vw;
}
.page17-left button > div {
  display: flex;
  gap: 1px;
  height: 1.1vw;
  font-size: 1vw;
  text-transform: uppercase;
  font-weight: 600;
  overflow: hidden;
}
.letter-container {
  display: flex;
  position: relative;
  font-size: 1vw;

  flex-direction: column;
}

.page17-left button i {
  transform: rotate(-50deg);
  font-size: 1.1vw;
}

.page17-right {
  padding-top: 3vh;
}

.page17-right .socials {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  row-gap: 6px;
  column-gap: 6px;
}

.page17-right a {
  color: #0da34e;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  border-radius: 36px;
  padding: 12px 24px;
  font-size: 0.8vw;
  border: 1.5px solid #0da34e;
  transition: all 0.3s ease;
}

.page17-right a:hover {
  color: rgb(10, 10, 10);
  background-color: #0da34e;
  transition: all 0.3s ease;
}

footer {
  border-top: 1px solid rgba(128, 128, 128, 0.527);
  padding: 6vh;
}

footer > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

footer a {
  text-decoration: none;
  color: #0da34e;
}

footer span {
  margin-left: 12px;
  font-size: 0.8vw;
  border-left: 1px solid white;
  padding-left: 6px;
}
