* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none;
  font-family: "Times New Roman", sans-serif;
  list-style: none;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --col-dark-text: #1b1b1b;
  --col-dark: #05030d;
  --col-blue: #7c3dfd;
  --light-text: #f6f6f6;
}
html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}
body {
  overflow-x: hidden;
}
html::-webkit-scrollbar {
  background: var(--col-dark);
  width: 0.5pc;
}
html::-webkit-scrollbar-thumb {
  background: var(--col-blue);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* height: 5pc; */
  padding-top: 2pc;
  z-index: 1111;
}

nav .logo {
  font-size: 1.5rem;
  color: var(--light-text);
}
nav .logo b {
  font-weight: 500;
  color: var(--light-text);
}

nav .items {
  display: flex;
  gap: 2pc;
  align-items: center;
  white-space: nowrap;
}

nav .items a {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--light-text);
  padding: 2px;
  transition: all 0.2s;
  border: solid 1px transparent;
  white-space: nowrap;
}

nav .items a:hover {
  transition: all 0.2s;
  padding: 2px;
  border: solid 1px #fff;
  color: var(--col-blue);
}

nav .btns a {
  padding: 0.5pc 2.4pc 0.4pc 2.4pc;
  color: var(--light-text);
  border: solid;
  border-radius: 12pc;
  white-space: nowrap;
}

main .sec_1 {
  background-color: var(--col-dark);
  background-image: url(/img/backgroung.svg);
  background-position: right;
  background-repeat: no-repeat;
  background-size: cover;
  /* gap: 7pc; */
  padding-left: 17pc;
  padding-right: 17pc;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main .sec_1 h1 {
  color: var(--light-text);
  font-size: 7rem;
  font-weight: 400;
  padding-top: 10pc;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}

main .sec_1 button {
  align-self: center;
  background-color: #7c3dfd;
  height: 6pc;
  border-radius: 100pc;
  border: none;
  width: 6pc;
  position: relative;
  margin-left: 4pc;
}

main .sec_1 button svg {
  width: inherit;
  padding: 2pc;
  height: inherit;
}

main .sec_2 {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 17pc;
  padding-right: 17pc;
  text-align: center;
}

main .sec_2 h2 {
  color: var(--col-dark);
  font-size: 3.1rem;
  font-weight: 400;
}
main .sec_2 h2 b {
  font-weight: 400;
  color: var(--col-blue);
}

main .sec_3 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 17pc;
  padding-right: 17pc;
}
main .sec_3 h2 {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: solid var(--col-blue);
}
main .sec_3 .bottom {
  display: flex;
  gap: 2pc;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

main .sec_3 .bottom .boxs {
  display: flex;
  padding: 1pc;
  border-radius: 1pc;
  height: 11pc;
  flex-basis: calc(50% - 40px);
  align-items: center;
  width: 19pc;
  flex-direction: column;
  justify-content: center;
  gap: 0.5pc;
  background: var(--col-dark);
  cursor: pointer;
  transition: all 0.2s;
}
main .sec_3 .bottom .boxs:hover {
  scale: 101%;
  transition: all 0.2s;
  box-shadow: 0px 29px 70px -11px #7d3dfd71;
}
main .sec_3 .bottom .boxs:nth-child(2) {
  background: var(--light-text);
}
main .sec_3 .bottom .boxs:nth-child(3) {
  background: var(--light-text);
}

main .sec_3 .bottom .boxs:nth-child(2) span {
  color: var(--col-dark);
}
main .sec_3 .bottom .boxs:nth-child(2) p {
  color: var(--col-blue);
}
main .sec_3 .bottom .boxs:nth-child(3) span {
  color: var(--col-dark);
}
main .sec_3 .bottom .boxs:nth-child(3) p {
  color: var(--col-blue);
}

main .sec_3 .bottom .boxs span {
  align-self: flex-start;
  color: var(--col-blue);
}
main .sec_3 .bottom .boxs hr {
  align-self: flex-start;
  width: 13pc;
}
main .sec_3 .bottom .boxs p {
  align-self: flex-start;
  color: var(--light-text);
}

main .sec_4 {
  padding-left: 17pc;
  padding-right: 17pc;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background: var(--col-blue);
  flex-direction: column;
  justify-content: space-around;
}

main .sec_4 p {
  color: var(--light-text);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}
main .sec_4 p b {
  color: var(--col-dark-text);
  font-weight: 400;
  text-transform: capitalize;
}
main .sec_4 hr {
  width: 28pc;
}
main .sec_4 .bottom {
  display: flex;
  flex-direction: row;
}
main .sec_4 .bottom .left {
  display: flex;
  gap: 1pc;
}
main .sec_4 .bottom .left img {
  width: 14pc;
  filter: drop-shadow(3px 10px 30px #17151c48);
}
main .sec_4 .bottom .left h2 {
  align-self: flex-start;
  color: var(--light-text);
  font-size: 2.4rem;
  font-weight: 500;
}

main .sec_4 .bottom .right {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: flex-end;
}
main .sec_4 .bottom .right img {
  width: 16pc;
  filter: drop-shadow(3px 10px 30px #17151c48);
}
main .sec_4 .bottom .right h2 {
  align-self: self-end;
  color: var(--light-text);
  font-size: 2.4rem;
  font-weight: 500;
  text-align: end;
}

main .sec_5 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-evenly;
  padding-left: 17pc;
  padding-right: 17pc;
}
main .sec_5 h2 {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: solid var(--col-blue);
}
main .sec_5 h2 b {
  font-weight: 500;
  color: var(--col-blue);
}
main .sec_5 .bottom {
  display: flex;
  gap: 2pc;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}

main .sec_5 .bottom .boxs {
  display: flex;
  padding: 1pc;
  border-radius: 0.5pc;
  height: 11pc;
  flex-basis: calc(50% - 40px);
  align-items: center;
  width: 19pc;
  flex-direction: column;
  justify-content: center;
  gap: 0.5pc;
  background: var(--col-dark-text);
  cursor: pointer;
  transition: all 0.2s;
}
main .sec_5 .bottom .boxs:hover {
  scale: 101%;
  transition: all 0.2s;
  box-shadow: 0px 29px 70px -11px #7d3dfd71;
}

main .sec_5 .bottom .boxs span {
  align-self: flex-start;
  color: var(--col-blue);
  font-weight: 100;
  font-size: 1.4rem;
}

main .sec_5 .bottom .boxs p {
  align-self: flex-start;
  color: var(--light-text);
  font-size: 1.2rem;
  font-weight: 300;
}

main .sec_6 {
  min-height: 80vh;
  display: flex;
  padding-left: 17pc;
  padding-right: 17pc;
  background-image: url(/img/bg_2.svg);
  align-items: center;
}

main .sec_6 .left {
  gap: 2pc;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
}
main .sec_6 .left h1 {
  color: var(--light-text);
  font-weight: 500;
  font-size: 3rem;
}
main .sec_6 .left h1 b {
  font-weight: 400;
  color: var(--col-blue);
}
main .sec_6 .left p {
  color: var(--light-text);
  font-size: 1.5rem;
}
main .sec_6 .left .social {
  display: flex;
  gap: 1pc;
}
main .sec_6 .left .social a {
  height: 2pc;
  width: 2pc;
  border-radius: 10pc;
  transition: all 0.2s;
}

main .sec_6 .left .social a:hover {
  transition: all 0.2s;
  scale: 110%;
}

main .sec_6 .left .social a i {
  font-size: 2rem;
  color: var(--light-text);
}
main .sec_6 .left .cv {
  background: var(--light-text);
  align-self: flex-start;
  /* padding: 1pc; */
  width: 5pc;
  height: 5pc;
  font-size: 2rem;
  border-radius: 4pc;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--col-blue);
}

main .sec_6 .right img {
  width: 17pc;
}

main .sec_7 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 17pc;
  padding-right: 17pc;
}

main .sec_7 h2 {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: solid var(--col-blue);
}

main .sec_7 h2 b {
  color: var(--col-blue);
  font-weight: 500;
}
main .sec_7 .bottom {
  display: flex;
  gap: 2pc;
  flex-direction: row;
  justify-content: space-evenly;
  flex-wrap: wrap;
}
main #trade div {
}
main #trade .map {
  padding-top: 1pc;
  /* clip-path: polygon(0 10%, 100% 10%, 100% 100%, 0% 100%); */
  /* filter: invert(100%); */
  width: 100%;
  overflow: hidden;
  border-radius: 2pc;
}

main .sec_7 .bottom .boxs {
  display: flex;
  padding: 1pc;
  border-radius: 1pc;
  height: 11pc;
  flex-basis: calc(50% - 40px);
  align-items: center;
  width: 19pc;
  flex-direction: column;
  justify-content: center;
  gap: 0.5pc;
  box-shadow: 0px 29px 70px -11px #7d3dfd71;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
main .sec_7 .bottom .boxs:hover {
  scale: 101%;
  box-shadow: 0px 0px 1px 0px #7d3dfd71;
  transition: all 0.2s;
}

main .sec_7 .bottom .boxs:hover > img {
  scale: 105%;
  transform: translateY(-8px);
  transition: all 0.2s;
  /* border: solid var(--col-blue); */
  filter: drop-shadow(0px 5px 10px #07061222);
}

main .sec_7 .bottom .boxs:hover > span {
  scale: 105%;
  transform: translateY(8px);
  transition: all 0.2s;
}
main .sec_7 .bottom .boxs span {
  align-self: flex-start;
  color: var(--col-blue);
  padding: 0.3pc;
  position: absolute;
  filter: drop-shadow(1px 4px 4px #7d3dfd35);
  background: #fff;
  transition: all 0.2s;
  border-radius: 0.4pc;
}

main .sec_7 .bottom .boxs img {
  position: absolute;
  width: 5pc;
  transition: all 0.2s;
  border-radius: 10pc;
}
main .sec_7 .bottom .boxs:nth-child(1) img {
  right: -2pc;
  top: -3pc;
}

main .sec_7 .bottom .boxs:nth-child(1) span {
  top: -1.6pc;
  margin: auto;
}

main .sec_7 .bottom .boxs:nth-child(2) img {
  right: -2pc;
  bottom: -3pc;
}

main .sec_7 .bottom .boxs:nth-child(2) span {
  top: -1.6pc;
  right: -2pc;
  margin: auto;
}

main .sec_7 .bottom .boxs:nth-child(3) img {
  left: -2pc;
  bottom: -3pc;
}

main .sec_7 .bottom .boxs:nth-child(3) span {
  top: -1pc;
  right: -1pc;
  margin: auto;
}
main .sec_7 .bottom .boxs:nth-child(4) img {
  left: -2pc;
  bottom: -3pc;
}

main .sec_7 .bottom .boxs:nth-child(4) span {
  bottom: -1pc;
  right: -1pc;
  margin: auto;
}

main .sec_7 .bottom .boxs p {
  align-self: flex-start;
  color: #5b5b5b;
}

main .sec_8 {
  min-height: auto;
  display: flex;
  gap: 5pc;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  padding-left: 17pc;
  padding-right: 17pc;
}

main .sec_8 h2 {
  font-size: 2rem;
  font-weight: 500;
  border-bottom: solid var(--col-blue);
}
main .sec_8 .bottom {
  display: flex;
  flex-direction: column;
  gap: 3pc;
}

main .sec_8 .bottom details {
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  gap: 1pc;
  padding: 0.5pc;
  border-radius: 0.5pc;
  color: var(--col-dark-text);
  width: 60pc;
  box-shadow: 3px 9px 20px 0px #1b1b1b2a;
}

main .sec_8 .bottom details li {
  color: var(--col-blue);
  list-style: decimal;
  padding: 0.7pc;
}

main .sec_9 {
  margin-top: 4rem;
  background-image: url(/img/backgroung.svg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 70vh;
  padding: 4rem 2rem;
}

main .sec_9 .content-wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

main .sec_9 .text {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

main .sec_9 .text h1 {
  color: var(--light-text);
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

main .sec_9 .images-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

main .sec_9 .images-box img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

main .sec_9 .images-box img:hover {
  transform: scale(1.05);
}

main .sec_9 .macbook-img {
  flex: 1 1 300px;
  text-align: center;
}

main .sec_9 .macbook-img img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

@media (max-width: 768px) {
  main .sec_9 {
    padding: 2rem 1rem;
  }

  main .sec_9 .content-wrapper {
    flex-direction: column;
    align-items: center;
  }

  main .sec_9 .text h1 {
    font-size: 2rem;
    text-align: center;
  }

  main .sec_9 .images-box {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  }
}

.hide {
  display: none !important;
}
footer {
  padding-bottom: 2pc;
  padding-top: 2pc;
  display: flex;
  background: var(--col-blue);
  padding-left: 17pc;
  padding-right: 17pc;
  flex-direction: column;
  gap: 1pc;
  justify-content: flex-start;
}

footer .box {
  display: flex;
  flex-wrap: wrap;

  align-items: stretch;
  flex-direction: row;
  justify-content: space-between;
}
footer hr {
}
footer .box .startPro {
  align-self: center;
  height: 5pc;
  /* padding: 2.5pc; */
  border-radius: 6pc;
  color: var(--col-dark-text);
  width: 5pc;
  background: var(--light-text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

footer .box .startPro.startPro:hover {
  transform: translateY(-4px);
  transition: all 0.2s;
  box-shadow: 0px 20px 20px -10px #05030d5e;
}
footer .box .boxP {
  color: var(--light-text);
  font-size: 4rem;
}

footer .box .lists {
  display: flex;
  flex-direction: column;
  gap: 0.4pc;
}
footer .box .lists h1 {
  color: var(--light-text);
  font-size: 1.6rem;
  font-weight: 500;
}

footer .box .lists h1 b {
  font-weight: 400;
}
footer .box .lists p {
  color: var(--light-text);
  font-weight: 400;
  letter-spacing: 1px;
}

footer .box .lists span {
  color: var(--light-text);
  font-size: 1.4rem;
}
footer .box .lists .icons {
  display: flex;
  align-items: center;
  gap: 1pc;
}
footer .box .lists .icons i {
  /* font-size: 2rem; */
  /* border-radius: 0.4pc; */
  /* padding: 0.3pc; */
  /* color: var(--light-text); */
  /* transition: all 0.2s; */
  /* cursor: pointer; */
}
footer .box .lists .icons i:hover {
  transition: all 0.2s;
  /* background: var(--light-text); */
  scale: 105%;
  color: var(--col-blue);
}
footer .box .lists .icons a {
  padding-left: 0;
  /* height: 2pc; */
  /* color: var(--col-dark-text); */
  /* width: 2pc; */
  /* background: var(--light-text); */
  /* border-radius: 10pc; */
  display: flex;
  align-items: center;
  justify-content: center;
}

footer .box .icons a {
  transition: none !important;
  padding-left: 0pc !important;
  border-bottom: 0px !important;
  border: none !important;
}

footer .box .lists a {
  color: var(--light-text);
  padding-left: 0.7pc;
  transition: all 0.2s;
  border-bottom: solid transparent;
  border-bottom: solid transparent 2px;
}
footer .box .lists a:hover {
  transition: all 0.2s;
  padding-left: 0.8pc;
  border-bottom: solid var(--col-dark) 2px;
}
footer .box span {
  color: var(--light-text);
}

footer .box b {
  color: var(--light-text);
  font-weight: 500;
}

@media screen and (max-width: 1300px) {
  .paddingsec {
    padding-left: 11pc !important;
    padding-right: 11pc !important;
  }
}

@media screen and (max-width: 1100px) {
  .paddingsec {
    padding-left: 7pc !important;
    padding-right: 7pc !important;
  }
}
.ham {
  color: var(--light-text);
  font-size: 2rem;
  display: none;
}
.Abtns {
  display: none;
}
@media screen and (max-width: 999px) {
  .ham {
    display: block;
  }
  nav .items {
    display: none;
    position: absolute;
    flex-direction: column;
    background: #00000095;
    backdrop-filter: blur(10px);
    padding: 4pc;
    top: 5pc;
    left: 0;
    width: 100%;
  }

  nav .btns {
    display: none;
    top: 5pc;
    left: 0;
  }
  .active {
    display: flex !important;
  }
  .Abtns {
    display: block;
  }
}

@media screen and (max-width: 940px) {
  main .sec_2 h2 {
    font-size: 3.1rem;
  }

  main .sec_2 h2 br {
    display: none;
  }
  main .sec_9 {
    text-align: center;
    flex-direction: column;
    gap: 3pc;
    padding-bottom: 3pc;
    padding-top: 3pc;
  }
  main .sec_5 .bottom .boxs {
    height: auto;
    flex-basis: calc(50% - 40px);
    width: auto;
  }
}

@media screen and (max-width: 902px) {
  main .sec_6 {
    padding-top: 2pc;
    flex-direction: column;
    text-align: center;
    gap: 3pc;
  }
  main .sec_6 .left {
    align-items: center;
  }
  main .sec_1 h1 {
    color: var(--light-text);
    font-size: 8rem;
    font-weight: 400;
    white-space: unset;
  }

  main .sec_8 .bottom details {
    width: 90vw;
  }
  main .sec_4 .bottom {
    flex-wrap: wrap;
    gap: 3pc;
  }
  main .sec_4 {
    padding-top: 3pc;
    padding-bottom: 4pc;
    gap: 4pc;
  }
  main .sec_4 br {
    display: none;
  }
}

@media screen and (max-width: 700px) {
  .paddingsec {
    padding-left: 3pc !important;
    padding-right: 3pc !important;
  }
  main .sec_9 .text h1 {
    font-size: 2rem;
  }
  main .sec_9 .text p {
    font-size: 2rem;
  }
}

@media screen and (max-width: 600px) {
  main .sec_3 {
    padding-top: 3pc;
    padding-bottom: 3pc;
    gap: 4pc;
  }
  main #trade .map {
    width: 100%;
  }
  main .sec_5 {
    padding-top: 4pc;
    padding-bottom: 4pc;
    gap: 4pc;
  }
  main .sec_5 .bottom {
  }
  main .sec_5 .bottom .boxs {
    height: auto;
    flex-basis: auto;
    width: auto;
  }
  .map {
    flex-basis: auto;
    width: 100% !important;
  }
}

.iconSize {
  width: 2.3rem;
  /* height: 2.3rem; */
}

@media screen and (max-width: 600px) {
  main .sec_1 h1 {
    color: var(--light-text);
    font-size: 7rem;
    font-weight: 400;
  }
  main .sec_2 h2 {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 887px) {
  main .sec_7 {
    gap: 6pc;
    padding-top: 4pc;
  }
  main .sec_7 .bottom {
    gap: 6pc;
  }
  main .sec_7 .bottom .boxs {
    flex-basis: auto;
  }
  main .sec_8 {
    padding-top: 6pc;
    min-height: auto;
    display: flex;
    gap: 5pc;
  }
}

@media screen and (max-width: 440px) {
  main .sec_7 .bottom .boxs {
    height: 11pc;
    width: 70vw;
  }
  .paddingsec {
    padding-left: 1pc !important;
    padding-right: 1pc !important;
  }
  /* main .sec_7 .bottom .boxs img {
    position: sticky;
    width: 5pc;
    transition: all 0.2s;
    border-radius: 10pc;
  } */
}

@media screen and (max-width: 490px) {
  main .sec_6 .right img {
    width: 60vw;
  }
  main .sec_9 img {
    width: 80vw;
  }

  main .sec_2 h2 {
    font-size: 2rem;
  }
  main .sec_1 h1 {
    font-size: 6rem;
    padding-top: 5pc;
    gap: 2pc;
  }

  main .sec_4 .bottom {
    align-items: center;
    justify-content: center;
  }

  main .sec_4 .bottom .left {
    gap: 2pc;
    align-items: center;
    justify-content: center;
    flex-direction: column-reverse;
  }

  main .sec_4 .bottom .right {
    align-items: center;
    justify-content: center;
    gap: 2pc;
    flex-direction: column-reverse;
  }
}

@media screen and (max-width: 425px) {
  main .sec_6 .left h1 {
    font-size: 2rem;
  }

  main .sec_6 .left p {
    color: var(--light-text);
    font-size: 1.3rem;
  }

  main .sec_9 .text p {
    font-size: 1.5rem;
  }
  footer .box {
    align-items: center;
    justify-content: center;
    gap: 1pc;
    text-align: center;
  }
  footer .box .boxP {
    font-size: 3rem;
    text-align: center;
  }
  footer .box .lists p br {
    display: none;
  }
}

@media screen and (max-width: 383px) {
  main .sec_1 h1 {
    font-size: 5.3rem;
  }
  main .sec_1 button {
    height: 5pc;
    width: 5pc;
  }
}
