/*  ================================
        1. Global Area
    ================================ */

@font-face {
  font-family: "Glowkin";
  src: url("../fonts/glowkin-glowkin-400.ttf");
  font-weight: normal;
  font-style: normal;
}

:root {
  --dark-blue: #13387e;
  --base-color: #2392dc;
  --dark-green: #367014;
  --light-green: #92be32;
  --dark-gray: #101a1d;
  --dark-color: #000000;
  --light-color: #ffff;
  --medium-gray: rgba(255, 255, 255, 0.5);
  --extra-medium-gray: #223035;
  --light-gray: #19272b;
  --very-light-gray: #38464a;
  --font-style: "Glowkin";
  --double-color: linear-gradient(63deg, #13387e -35%, #2392dc 103% 103%);
  --double-color-2: linear-gradient(63deg, #367014 -35%, #92be32 103% 103%);
}

body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Poppins", sans-serif;
  color: #fff;
  letter-spacing: 1px;
  background: #12151f;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
}

a,
a:hover,
a:focus {
  outline: none;
  text-decoration: none;
}

ul,
li,
a {
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 0px;
  font-size: 15px;
  font-weight: 400;
  color: #fff;
}

.all-h4-light {
  columns: var(--light-color);
  text-transform: capitalize;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 100;
  margin-bottom: 0px;
  font-family: var(--font-style);
}

.all-h4-dark {
  color: var(--light-color);
  text-transform: capitalize;
  font-size: 20px;
  line-height: 1.4;
  font-weight: unset;
  margin-bottom: 5px;
  font-family: var(--font-style);
  letter-spacing: 1px;
}

.all-h2-light {
  columns: var(--light-color);
  text-transform: capitalize;
  font-size: 35px;
  line-height: 1.3;
  font-weight: 800;
  margin-bottom: 10px;
}

.all-h2-dark {
  color: var(--light-color);
  text-transform: capitalize;
  font-size: 35px;
  font-weight: unset;
  font-family: var(--font-style);
  margin-bottom: 15px;
  margin-top: 0px;
  line-height: 1.3;
  /* text-shadow: 0px 4px 0px rgb(166 215 25 / 61%); */
}

img {
  max-width: 100%;
}

button:focus,
input:focus {
  outline: none;
}

/***** ----- preloader part end ----- *****/

/***** ----- oxe btn part start ----- *****/

.btn {
  background: var(--base-color) none repeat scroll 0 0;
  border: medium none;
  border-radius: 0px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  font-weight: 100;
  letter-spacing: 2px;
  line-height: 1;
  margin-bottom: 0;
  padding: 20px 30px;
  text-align: center;
  text-transform: uppercase;
  touch-action: manipulation;
  transition: all 0.3s ease-out 0s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  gap: 10px;
  color: var(--light-color);
  --arrow-hover-move-x: -110%;
  font-family: var(--font-style);
}

.btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: var(--double-color) !important;
  border: 1px solid #000000;
  z-index: -1;
  transition: 0.4s;
}

.btn span {
  position: absolute;
  background: #000000;
  display: inline-block;
  transition: height 0.5s ease-out, left 0.3s ease-out;
}

.btn span.line1 {
  height: 13px;
  width: 2px;
  top: 2px;
  left: 0;
}

.btn span.line2 {
  height: 13px;
  width: 2px;
  bottom: 2px;
  right: 0;
}

.btn span.line3 {
  height: 2px;
  width: 18px;
  top: 0px;
  right: 2px;
  transition: width 0.5s ease-out, left 0.3s ease-out;
}

.btn span.line4 {
  height: 2px;
  width: 18px;
  bottom: 0px;
  left: 2px;
  transition: width 0.5s ease-out, left 0.3s ease-out;
}

.btn svg {
  -webkit-transform: translateY(-2.5px);
  -moz-transform: translateY(-2.5px);
  -ms-transform: translateY(-2.5px);
  -o-transform: translateY(-2.5px);
  transform: translateY(-2.5px);
}

.btn svg path {
  transition: transform 0.38s cubic-bezier(0.37, 0.08, 0.02, 0.93),
    opacity 0.18s ease-out;
}

.btn svg path:nth-of-type(1) {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

.btn:active,
.btn:focus,
.btn:hover,
.btn:focus-visible {
  background: var(--double-color-2);
  box-shadow: 0px 30px 60px rgba(255, 255, 255, 0.3);
  color: var(--light-color);
}

.btn:active span,
.btn:focus span,
.btn:hover span,
.btn:focus-visible span {
  height: 0px;
}

.btn:active span.line3,
.btn:active span.line4,
.btn:focus span.line3,
.btn:focus span.line4,
.btn:hover span.line3,
.btn:hover span.line4,
.btn:focus-visible span.line3,
.btn:focus-visible span.line4 {
  height: 2px;
  width: 0px;
}

.btn:active:after,
.btn:focus:after,
.btn:hover:after,
.btn:focus-visible:after {
  background: var(--double-color-2) !important;
}

.btn:active svg path:nth-of-type(2),
.btn:focus svg path:nth-of-type(2),
.btn:hover svg path:nth-of-type(2),
.btn:focus-visible svg path:nth-of-type(2) {
  transform: translateX(0) translateY(0);
  opacity: 1;
  transition-delay: 0.15s, 0.15s;
}

/***** ----- section title part start ----- *****/

.section-title h2 {
}

.section-title {
  padding: 0px 0 25px;
  text-align: center;
  margin: 0;
}

/***** ----- section title part end ----- *****/

/*  ================================ 1. Header Area ================================ */
.main-header {
  position: relative;
  z-index: 1;
  background: rgb(255 255 255);
  backdrop-filter: blur(21.30136871px);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0px;
  color: white;
}

.nav-menu {
  display: flex;
  align-items: center;
}

.navbar .logo img {
  width: 150px;
}

.nav-links {
  list-style: none;
  display: flex;
}

.nav-links li {
  margin: 10px 10px;
}

.nav-links a {
  color: var(--dark-color);
  text-decoration: none;
  font-size: 15px;
  font-weight: 100;
  font-family: var(--font-style);
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
}

.right-button {
  position: relative;
  padding: 12px 25px;
  background: var(--double-color);
  transition: 300ms ease-in-out;
  color: var(--light-color);
  font-weight: 100;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1px solid #ffffff00;
  font-family: var(--font-style);
}

.main-btn .right-button {
  padding: 15px 30px;
}

.right-button .lefttop {
  position: absolute;
  inset: 0% auto auto 0%;
  width: 12px;
  height: 20px;
  border-top: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

.right-button .leftdown {
  position: absolute;
  inset: auto auto 0% 0%;
  width: 12px;
  height: 20px;
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
}

.right-button .rightdown {
  position: absolute;
  inset: auto 0% 0% auto;
  width: 12px;
  height: 20px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
}

.right-button .righttop {
  position: absolute;
  inset: 0% 0% auto auto;
  width: 12px;
  height: 20px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
}

.right-button:hover {
  color: var(--light-color);
  transition: 1s all ease;
  background: var(--double-color-2);
  border: 1px solid var(--light-green);
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 85px;
    left: 0;
    background: hsl(0deg 0% 100%);
    text-align: center;
    height: auto;
    padding: 22px 0px;
  }

  .nav-links.active {
    display: block;
    color: var(--base-color) !important;
    background: var(--double-color);
    padding: 10px 0px;
  }

  .hamburger {
    display: block;
    background: var(--double-color);
    padding: 0px 8px;
    z-index: 0;
    width: 38px;
    text-align: center;
  }
}

.main-header .active {
  color: var(--base-color) !important;
}

.all-span {
  color: var(--base-color);
}

/*  ================================  2. slider area Start ================================ */

.main-banner {
  /* padding: 190px 0px 100px; */
  position: relative;
  height: 750px;
  z-index: 1;
  display: flex;
  align-items: center;
}

.main-banner .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.main-banner .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-banner::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: url(..//img/bg/download.webp);
  z-index: 0;
  background-position: center center !important;
  opacity: 0.6;
  background-size: cover;
  filter: contrast(0.5);
}

.main-banner::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  background: #000;
  /* background: url(..//img/bg/main-banner-bg.jpg); */
  z-index: 0;
  background-position: center center !important;
  opacity: 0.4;
  background-size: cover;
}

/**/
.slider-table {
  text-align: center;
}

.main-h1 {
  text-transform: capitalize;
  font-size: 55px;
  font-family: var(--font-style);
  letter-spacing: 3px;
  margin-top: 30px;
  font-weight: 500;
  line-height: 1.4;
  /* text-shadow: 0px 4px 0px rgb(34 138 212); */
}

.slider-table-cell {
  position: relative;
  z-index: 99;
}

.slider-table-cell h2 {
  color: #fff;
  font-size: 60px;
  font-weight: 700;
  margin: 10px 0;
  font-family: "Shadows Into Light", cursive;
  text-transform: capitalize;
}

.slider-table-cell p {
  margin: 15px 0 0;
  text-transform: capitalize;
}

/*  ================================  2. slider area End  ================================ */

/*  ================================ 3. About Area Start ================================ */
.about-area {
  position: relative;
  padding: 100px 0px 100px;
  z-index: 1;
}

.Abourt-bg {
  position: relative;
  z-index: 1;
}

.Abourt-bg::before {
  content: "";
  position: absolute;
  left: 0;
  top: -10px;
  background: url(../img/about/stick.png);
  width: 100%;
  height: 10px;
  rotate: 180deg;
  filter: grayscale(1);
}

.Abourt-bg::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  background: url(../img/about/stick.png);
  width: 100%;
  height: 10px;
  filter: grayscale(1);
}

.our-mission {
  margin-bottom: 20px;
}

.about-info {
  position: relative;
  z-index: 1;
  border-radius: 10px;
}

.mission-img {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 53px;
}

.about-area .section-title {
  text-align: left;
}

/*  ================================ 3. About Area End ================================ */

/*  ================================  4. services-area Start ================================ */

.services-area {
  position: relative;
  padding: 100px 0px 160px;
  z-index: 1;
  overflow: hidden;
}

.services-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(..//img/services/services-bg.jpg);
  width: 100%;
  height: 100%;
  background-position: top;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
  filter: blur(2px);
  opacity: 0.4;
}

.services-area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(..//img/bg/download.webp);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
  filter: contrast(0.5);
}

.creator-item {
  --icon-rotate: 43.92deg;
  --icon-rotate-minus: -43.92deg;
  text-align: center;
  padding: 25px 15px 25px;
  position: relative;
  z-index: 1;
  height: 100%;
}

.creator-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  /* clip-path: polygon(0 0, 100% 0, 92% 100%, 8% 100%); */
  background-color: #161923;
  border-radius: 15px;
  border: 1px solid var(--base-color);
  /* border-bottom: none; */
  /* border-left: none; */
  /* border-right: none; */
  z-index: -1;
  /* rotate: 180deg; */
}

.creator-item__icon {
  --icon-size: 95px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--icon-size);
  height: var(--icon-size);
  background-color: #13212d;
  border-radius: 15px;
  box-shadow: 4px 4px 4px var(--base-color);
  /* position: absolute; */
  /* top: -100%; */
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  margin-bottom: 21px;
  /* rotate: 45deg; */
}

.creator-item__icon::before {
  --icon-size-two: 100.53px;
  content: "";
  position: absolute;
  /* top: 50%; */
  /* left: 50%; */
  /* transform: translate(-50%, -50%); */
  width: var(--icon-size-two);
  height: var(--icon-size-two);
  background-color: #12151f;
  border-radius: 21px;
}

.creator-item__icon--img {
  /* transform: rotate(var(--icon-rotate-minus)); */
  width: 60px;
  position: relative;
}

.all-h4-dark:hover {
  color: var(--base-color);
}

@media (max-width: 767px) {
  .creator-item__text {
    max-width: 65%;
    margin: 0 auto;
  }
}

@media (max-width: 470px) {
  .creator-item__text {
    max-width: 100%;
    margin: 0 auto 20px auto;
  }
}

/*  ================================  4. services-area End ================================ */

/*  ================================  6. key-featurtes Start ================================ */
.key-featurtes {
  z-index: 1;
  position: relative;
  padding: 100px 0px 100px;
}

.service-item {
  background: #232530;
  border: 2px solid rgba(50, 52, 65, 0.6);
  border-radius: 10px;
  padding: 40px 35px 40px 35px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 20px;
}

.service-item::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  background: var(--double-color);
  width: 220px;
  height: 220px;
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
  filter: blur(35px);
  border-radius: 50%;
}

.service-item::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -50px;
  background: var(--double-color);
  width: 220px;
  height: 220px;
  background-position: center;
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
  filter: blur(35px);
  border-radius: 50%;
}

.service-item__img {
  position: absolute;
  z-index: -1;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
}

.service-item__icon--img {
  margin-bottom: 25px;
}

.service-item__heading {
  margin: 0em 0 20px 0;
  text-transform: capitalize;
}

.service-item__heading--link:hover {
  color: var(--vs-theme-color);
}

.service-item--style2 .service-item__heading {
  display: flex;
  align-items: center;
  gap: 28px;
}

.service-item--style3 {
  padding: 35px 30px 35px 30px;
}

.service-item--style3 .service-item__img--box {
  padding-top: 35px;
}

.service-item--style3 .service-item__img--box img {
  width: 320px;
}

/*  ================================  6. key-featurtes End ================================ */

/*  ================================ 5. why-choose-area Start  ================================ */
.why-choose-area {
  padding: 100px 0px 150px;
  position: relative;
  z-index: 1;
}

.why-choose-Box {
  position: relative;
  padding: 55px 15px 25px;
  z-index: 1;
  text-align: center;
  height: 100%;
  top: 62px;
}

.why-choose-Box::before {
  border-radius: 10px;
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  right: 0px;
  bottom: 0px;
  border: 2px solid var(--base-color);
  z-index: -1;
}

.why-choose-Box .service-icon {
  background: var(--double-color);
  line-height: 75px;
  width: 85px;
  height: 85px;
  border-radius: 50%;
  border: 2px solid var(--base-color);
  margin: 0 auto 30px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 99999;
}

.choose-img {
  width: 45px;
}

.why-choose-Box .service-icon:before,
.why-choose-Box .service-icon:after {
  /* content: ''; */
  /* background: var(--base-color); */
  height: 40px;
  /* width: 150px; */
  /* transform: translateX(-50%); */
  /* position: absolute; */
  /* top: auto; */
  /* left: 50%; */
  bottom: 0;
  z-index: -9;
}

.why-choose-Box .service-icon:after {
  background: #12151f;
  transform: translateX(-50%) scale(0.9);
  bottom: -32px;
}

.why-choose-Box .service-icon i {
  line-height: inherit;
}

@media only screen and (max-width: 990px) {
  .why-choose-Box {
    margin-top: 60px;
    height: auto;
    top: 0;
  }
}

/*  ================================ 5. why-choose-area End  ================================ */

/*  ================================  7. How-it-work Start ================================ */

.How-it-work {
  padding: 100px 0px 100px;
  position: relative;
  z-index: 1;
}

.How-it-work::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(..//img/services/services-bg.jpg);
  width: 100%;
  height: 100%;
  background-position: top;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
  filter: blur(2px);
  opacity: 0.4;
}

.How-it-work::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(..//img/bg/download.webp);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
  filter: contrast(0.5);
}

.vs-service__step--item {
  display: flex;
  gap: 25px;
  margin: 0 0 30px 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.vs-service__step--item span {
  background: #232530;
  border: 3px solid rgba(255, 255, 255, 0.05);
  border-radius: 31.5px;
  padding: 0px 55px;
  min-height: 60px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 20px;
  text-transform: uppercase;
}

.vs-list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.vs-list li {
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  display: flex;
  position: relative;
  gap: 10px;
}

.vs-list li img {
  width: 20px;
}

@media (max-width: 767px) {
  .vs-service__step--item {
    flex-direction: column;
    gap: 15px;
    margin: 0 0 10px 0;
  }
}

/*  ================================  7. How-it-work End ================================ */

/*  ================================  8. roadmap-area Start ================================ */

/* .roadmap-area {
        z-index: 1;
        position: relative;
        padding: 100px 0px 100px;
    }
   
    .roadmap-area::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background: url(..//img/services/services-bg.jpg);
        width: 100%;
        height: 100%;
        background-position: top;
        background-size: cover;
        z-index: -1;
        background-repeat: no-repeat;
        filter: blur(2px);
        opacity: 0.4;
    }
   
    .roadmap-area::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        background: url(..//img/bg/download.webp);
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
        opacity: 0.2;
        z-index: -1;
        filter: contrast(0.5);
    } */

.main-timeline {
  overflow: hidden;
  position: relative;
}

.main-timeline .timeline {
  position: relative;
  margin-top: -55px;
}

.main-timeline .timeline:first-child {
  margin-top: 0;
}

.main-timeline .timeline:before,
.main-timeline .timeline:after {
  content: "";
  display: block;
  width: 100%;
  clear: both;
}

.main-timeline .timeline:before {
  content: "";
  width: 100%;
  height: 100%;
  box-shadow: -8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.main-timeline .timeline-icon {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 2px dotted transparent;
  border-top-color: var(--base-color);
  border-right-color: var(--base-color);
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 1;
  transform: rotate(45deg);
}

.main-timeline .year {
  display: block;
  width: 110px;
  height: 110px;
  line-height: 110px;
  border-radius: 50%;
  background: rgb(18 21 31);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  margin: auto;
  font-size: 22px;
  font-weight: bold;
  color: var(--light-color);
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  transform: rotate(-45deg);
  border: 2px dotted var(--base-color);
}

.main-timeline .timeline-content {
  width: 37%;
  float: right;
  border: 2px dotted var(--base-color);
  padding: 26px 20px;
  margin: 15px 0;
  z-index: 1;
  position: relative;
  background: rgb(18 21 31);
  border-radius: 10px;
}

.main-timeline .timeline-content:before {
  content: "";
  display: block;
  width: 17.5%;
  height: 3px;
  background-image: repeating-radial-gradient(
    circle,
    #a6d819 0,
    #a6d819 1px,
    transparent 1px,
    transparent 5px
  );
  position: absolute;
  top: 50%;
  left: -17.9%;
  z-index: -1;
  transform: translateY(-50%);
}

.main-timeline .timeline:nth-child(2n):before {
  box-shadow: 8px 0 5px -5px rgba(0, 0, 0, 0.5) inset;
}

.main-timeline .timeline:nth-child(2n) .timeline-icon {
  transform: rotate(-135deg);
}

.main-timeline .timeline:nth-child(2n) .year {
  transform: rotate(135deg);
}

.main-timeline .timeline:nth-child(2n) .timeline-content {
  float: left;
}

.main-timeline .timeline:nth-child(2n) .timeline-content:before {
  left: auto;
  right: -17%;
}

@media only screen and (max-width: 1199px) {
  .main-timeline .timeline {
    margin-top: -103px;
  }

  .main-timeline .timeline-content:before {
    left: -18%;
  }

  .main-timeline .timeline:nth-child(2n) .timeline-content:before {
    right: -18%;
  }
}

@media only screen and (max-width: 990px) {
  .main-timeline .timeline {
    margin-top: -127px;
  }

  .main-timeline .timeline-content:before {
    left: -2%;
  }

  .main-timeline .timeline:nth-child(2n) .timeline-content:before {
    right: -2%;
  }
}

@media only screen and (max-width: 767px) {
  .main-timeline .timeline {
    margin-top: 0;
    overflow: hidden;
  }

  .main-timeline .timeline:before,
  .main-timeline .timeline:nth-child(2n):before {
    box-shadow: none;
  }

  .main-timeline .timeline-icon,
  .main-timeline .timeline:nth-child(2n) .timeline-icon {
    margin-top: -30px;
    margin-bottom: 20px;
    position: relative;
    transform: rotate(135deg);
  }

  .main-timeline .year,
  .main-timeline .timeline:nth-child(2n) .year {
    transform: rotate(-135deg);
  }

  .main-timeline .timeline-content,
  .main-timeline .timeline:nth-child(2n) .timeline-content {
    width: 100%;
    float: none;
    border-radius: 0 0 20px 20px;
    text-align: center;
    padding: 25px 20px;
    margin: 0 auto;
  }

  .main-timeline .timeline-content:before,
  .main-timeline .timeline:nth-child(2n) .timeline-content:before {
    width: 15px;
    height: 25px;
    position: absolute;
    top: -22px;
    left: 50%;
    z-index: -1;
    transform: translate(-50%, 0);
  }
}

/*  ================================  8. roadmap-area End ================================ */

/*  ================================ 10.  Faq-area start ================================ */

.Faq-area {
  padding: 50px 0px 100px;
  position: relative;
  z-index: 1;
}

/* .Faq-area ::before {
     content: "";
     position: absolute;
     left: 0;Q
     top: 0;
     background: url(..//img/services/services-bg.jpg);
     width: 100%;
     height: 100%;
     background-position: top;
     background-size: cover;
     z-index: -1;
     background-repeat: no-repeat;
     filter: blur(2px);
     opacity: 0.4;
    }
   
     .Faq-area ::after {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          background: url(..//img/bg/download.webp);
          width: 100%;
          height: 100%;
          background-position: center;
          background-size: cover;
          opacity: 0.2;
          z-index: -2;
          filter: contrast(0.5);
    } */
.faq-img-1 {
  position: relative;
  filter: grayscale(1);
}

.faq-img {
  position: relative;
}

.faq-img-2 {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 20px;
}

.accordion .accordion-item {
  border: 1px solid #ffffff52;
  box-shadow: none;
  margin-bottom: 10px;
  position: relative;
  background: #000;
}

.accordion .accordion-header {
  padding: 0;
  border: none;
  border-radius: 0;
  position: relative;
}

.accordion .accordion-header:before {
  /* content: ""; */
  /* display: block; */
  /* width: 100%; */
  /* height: 100%; */
  /* background: #a6d819; */
  /* position: absolute; */
  /* top: 0px; */
  left: 0;
  /* transform: skew(-30deg, 0deg); */
  /* transform-origin: left bottom 0; */
  /* border-radius: 0px 0px 0px 5px; */
}

.accordion .accordion-button {
  display: block;
  padding: 15px 60px 10px 15px;
  margin: 0;
  background: var(--double-color);
  font-size: 17px;
  font-weight: 100;
  position: relative;
  box-shadow: none;
  color: #fff;
  font-family: var(--font-style);
  /* border-bottom: 1px solid #ffffff30; */
}

.accordion .accordion-button:after {
  content: "\f068";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  width: 55px;
  height: 100%;
  line-height: 50px;
  text-align: center;
  position: absolute;
  top: 0;
  right: 0;
  background-image: unset;
}

.accordion .accordion-button.collapsed:after {
  content: "\f067";
}

.accordion .accordion-body {
  /* padding: 10px 20px; */
  padding: 20px 20px 20px;
  border: none;
  /* outline: 1px solid #ffffff29; */
  outline-offset: -10px;
  color: #000000;
  /* background: rgb(104 105 111 / 28%); */
  /* backdrop-filter: blur(21.30136871px); */
}

.accordion .accordion-body ul {
  padding-left: 16px;
}

.accordion .accordion-body li {
  color: var(--light-color);
}

.accordion .accordion-button:not(.collapsed) {
  background: var(--double-color-2);
  color: #fff;
}

.accordion .accordion-button:focus {
  box-shadow: none;
  /* border: none; */
}

/*  ================================ 10.  Faq-area End ================================ */

/*  ================================  11.Contact Us Area strat ================================ */

.contact-area {
  z-index: 1;
  position: relative;
  padding: 100px 0px 100px;
}

.contact-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(..//img/services/services-bg.jpg);
  width: 100%;
  height: 100%;
  background-position: top;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
  filter: blur(2px);
  opacity: 0.4;
}

.contact-area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(..//img/bg/download.webp);
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  opacity: 0.2;
  z-index: -1;
  filter: contrast(0.5);
}

.contact-form-area {
  background: rgb(0 0 0 / 32%);
  backdrop-filter: blur(2px);
  padding: 35px 25px 25px 25px;
  border-radius: 20px;
  border: 1px solid #ffffff5e;
  text-align: center;
}

.contact-info-content {
  position: relative;
}

.contact-info-content h2 {
  font-size: 26px;
  text-transform: capitalize;
}

.contact-info-content p {
  margin: 10px 0 0;
}

.form-content {
  position: relative;
  margin-bottom: 20px;
}

.form-content span {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--base-color);
  height: 100%;
  border-right: 1px solid #ffffff3d;
  width: 40px;
  line-height: 57px;
  text-align: center;
}

.form-content span i {
  font-size: 20px;
  color: #ffffff;
}

.form-content input {
  height: 50px;
  border: 0.5px solid #ffffff5e;
  padding: 10px 10px 10px 50px;
  background: rgb(0 0 0 / 22%) !important;
  color: #fff !important;
}

textarea {
  height: 150px !important;
  margin: 0 0 30px;
  padding: 15px 10px !important;
  border: 0.5px solid #ffffff5e !important;
  background: rgb(0 0 0 / 22%) !important;
  color: #fff !important;
}

/*  ================================ 10.  Contact Us Area End ================================ */

/*  ================================ 12. Footer Area ================================ */

.Community-area {
  padding: 100px 0px 80px;
  background: var(--double-color);
  z-index: 1;
  position: relative;
  margin-top: 1px;
  clip-path: polygon(
    34.79% 0px,
    65.31% 0px,
    70.15% 4.82%,
    100% 5%,
    100% 100%,
    0px 100%,
    0px 5%,
    30% 5%
  );
}

.Community-area::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  /* background-color: #171e25; */
  width: 100%;
  height: 100%;
  background-position: top;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
}

.Community-area p {
  color: inherit;
}

.socials {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 45px;
  justify-content: center;
}

.socials li {
}

.socials a {
  text-decoration: none;
  color: #fff;
  text-align: center;
}

.socials a i {
  font-size: 20px;
  transition: color 0.4s ease;
  border: 5px Double var(--light-color);
  border-radius: 50%;
  height: 50px;
  width: 50px;
  line-height: 40px;
  color: var(--light-color);
}

.socials a:hover i {
  color: #fff;
}

/* .social-footer {
           display: flex;
           list-style: none;
           justify-content: center;
           gap: 20px;
           margin-top: 20px;
       }
      
       .social-a i {
           color: #fff;
           background: var(--base-color);
           width: 50px;
           height: 50px;
           line-height: 50px;
           text-align: center;
           font-size: 25px;
           color: #000;
           border-radius: 50px;
       } */

.footer-area {
  padding: 10px 0;
  border-top: 1px solid #ffffff24;
  position: relative;
  background: var(--double-color);
}

.bg-trans {
  background-color: transparent !important;
}

.copy-right-text {
  color: #fff;
  letter-spacing: 1.5px;
  padding: 8px 0px;
  font-size: 14px;
  font-weight: 700;
}

.footer-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  /* margin: 30px 0px 0px; */
  align-items: center;
}

.footer-links li a {
  color: var(--light-color);
  font-weight: 100;
  font-size: 14px;
  padding: 13px 20px;
  font-family: var(--font-style);
  border: 2px solid var(--light-color);
  border-radius: 50px;
}

@media (max-width: 500px) {
  .footer-menu ul {
    display: flex;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

.all-btn {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 15px;
}

/*  ================================ footer css End  ================================ */

.creator-item:hover .creator-item__shape--second {
  opacity: 1;
  visibility: visible;
  transform: scaleY(1);
}

/* fdjkfxdkfgxdjkgxgdfgv  */
.tab {
  font-family: "Poppins", sans-serif;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

.tab .nav-tabs {
  margin-bottom: 20px;
  gap: 15px;
  border: none;
}

.tab .nav-tabs li a {
  color: #333;
  margin-bottom: 0px;
  background: #fff;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
  padding: 17px 25px;
  line-height: 1;
  border: none;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  transition: all 0.3s ease 0s;
  clip-path: polygon(
    0 5%,
    15% 15%,
    5% 0,
    95% 0,
    85% 15%,
    100% 5%,
    100% 95%,
    85% 85%,
    95% 100%,
    5% 100%,
    15% 85%,
    0 95%
  );
  font-family: var(--font-style);
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  color: var(--light-dark);
  background: var(--double-color) !important;
  border-color: #dee2e6 #dee2e6 #fff;
}

.tab .nav-tabs li:last-child a {
  margin-right: 0;
}

.tab .nav-tabs li a:hover,
.tab .nav-tabs li.active a {
  color: var(--light-green);
  background: #fff;
  border: none;
}

.tab .nav-tabs li a:before {
  content: "";
  /* background: var(--base-color) !important; */
  height: 100%;
  width: 100%;
  opacity: 0;
  filter: blur(10px);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  color: var(--dark-color);
  transition: all 0.3s ease;
}

.tab .nav-tabs li.active a:before,
.tab .nav-tabs li a:hover:before {
  border-radius: 10px;
  opacity: 1;
  filter: blur(0);
  transform: scale(0.9, 0.8);
}

.tab .tab-content {
  letter-spacing: 1px;
  line-height: 25px;
  padding: 40px 25px;
  position: relative;
  background: #232530;
  border: 1px solid var(--base-color);
  z-index: 1;
  overflow: hidden;
}

.tab .tab-content::before {
  content: "";
  position: absolute;
  right: -50px;
  top: -50px;
  background: var(--double-color);
  width: 220px;
  height: 220px;
  background-position: center;
  background-size: cover;
  opacity: 0.34;
  z-index: -1;
  filter: blur(35px);
  border-radius: 50%;
}

.tab .tab-content::after {
  content: "";
  position: absolute;
  left: -50px;
  bottom: -50px;
  background: var(--double-color);
  width: 220px;
  height: 220px;
  background-position: center;
  background-size: cover;
  opacity: 0.4;
  z-index: -1;
  filter: blur(35px);
  border-radius: 50%;
}

.tab .tab-content .about-span-1 {
  content: "";
  position: absolute;
  left: -3px;
  top: -5px;
  background: #fff;
  width: 10px;
  height: 10px;
  z-index: -1;
  border-radius: 50%;
}

.tab .tab-content .about-span-2 {
  content: "";
  position: absolute;
  right: -3px;
  top: -5px;
  background: #fff;
  width: 10px;
  height: 10px;
  z-index: -1;
  border-radius: 50%;
}

.tab .tab-content .about-span-3 {
  content: "";
  position: absolute;
  left: -3px;
  bottom: -5px;
  background: #fff;
  width: 10px;
  height: 10px;
  z-index: -1;
  border-radius: 50%;
}

.tab .tab-content .about-span-4 {
  content: "";
  position: absolute;
  right: -3px;
  bottom: -5px;
  background: #fff;
  width: 10px;
  height: 10px;
  z-index: -1;
  border-radius: 50%;
}

.tab .tab-content h3 {
  color: var(--base-color) !important;
  background-color: #e7e7e7;
  padding: 10px 10px;
  text-transform: capitalize;
  font-size: 22px;
  font-weight: unset;
  margin-bottom: 20px;
  font-family: var(--font-style);
  letter-spacing: 1px;
}

.about-area .section-title .all-h4-dark {
  font-size: 25px;
}

@media only screen and (max-width: 479px) {
  .tab .nav-tabs li {
    width: 100%;
  }

  .tab .nav-tabs li a {
    margin: 0 0 10px;
  }

  .tab .nav-tabs li:last-child a {
    margin-bottom: 0;
  }

  .tab .tab-content h3 {
    font-size: 18px;
  }
}

/* how it works */
.outer-box {
  position: relative;
  padding: 60px 0 10px;
  border-radius: 30px;
  background: #23253094;
  border: 2px solid #ffffff14;
  overflow: hidden;
  z-index: 1;
}

.outer-box::before {
  content: "";
  position: absolute;
  left: -6%;
  bottom: -6%;
  background: var(--double-color);
  width: 250px;
  height: 250px;
  background-position: top;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
  filter: blur(20px);
  opacity: 0.2;
  border-radius: 50%;
}

.outer-box::after {
  content: "";
  position: absolute;
  right: -6%;
  top: -6%;
  background: var(--double-color);
  width: 250px;
  height: 250px;
  background-position: top;
  background-size: cover;
  z-index: -1;
  background-repeat: no-repeat;
  filter: blur(20px);
  opacity: 0.2;
  border-radius: 50%;
}

.process-block {
  margin-bottom: 50px;
}

.process-block .inner-box {
  position: relative;
  padding: 0 20px;
  display: block;
  text-align: center;
  transition: 300ms ease-in-out;
}

.process-block .inner-box:before {
  content: "";
  position: absolute;
  top: 50px;
  right: -120px;
  width: 218px;
  height: 34px;
  background: url(../img/how-wroks/a-1.png);
}

.process-block .inner-box .icon-box .icon:after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 1px dashed var(--light-color);
  transition: all 0.3s ease;
}

.process-block .inner-box .icon-box .icon img {
  width: 70px;
  /* filter: invert(1); */
}

.process-block:nth-child(2) .inner-box:before {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.process-block .inner-box .icon-box {
  position: relative;
  display: inline-block;
}

.process-block .inner-box .icon-box .icon {
  position: relative;
  display: block;
  width: 118px;
  height: 118px;
  line-height: 118px;
  border-radius: 50%;
  color: var(--base-color);
  background: var(--double-color);
  margin: 0 auto 30px;
  text-align: center;
  transition: 300ms ease-in-out;
  z-index: 3;
}

.process-block .inner-box .icon-box .count {
  position: absolute;
  top: 0;
  right: -15px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  font-size: 18px;
  font-family: var(--font-style);
  font-weight: 700;
  border-radius: 50%;
  color: var(--light-color);
  background-color: var(--dark-color);
  text-align: center;
  transition: all 0.3s ease;
  z-index: 3;
  border: 1px dashed var(--light-color);
}

.process-block .inner-box:hover .icon-box .icon {
  transform: scaleX(-1);
  background: var(--double-color-2);
  transition: 300ms ease-in-out;
}

.process-block .inner-box:hover .icon-box .count {
  background-color: var(--light-color);
  color: var(--base-color);
}

.process-block:last-child .inner-box:before {
  display: none;
}

.footer-logo {
  margin-bottom: 45px;
}

.footer-logo img {
  /* background: #fff; */
  width: 250px;
  padding: 10px;
  border-radius: 10px;
}

#topBtn {
  display: none;
  /* Default hidden */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background: var(--double-color);
  color: white;
  cursor: pointer;
  padding: 12px 16px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

#topBtn:hover {
  background: var(--double-color-2);
  transform: translateY(-3px);
}
