@charset "UTF-8";
:root {
  --dark-text: #1a1b20;
  /* --orange-color: #ff6247; */
  --orange-color: #34ffe7;
  --para-text: #5b5f6a;
  --white: #fff;
  --ring-size: calc(min(120px, 14vw));
  --ring-border-size: calc(var(--ring-size) * 0.1);
  --logo-size-w: calc(
    (var(--ring-size) * 4 + var(--ring-border-size) * 2) * 1.5
  );
  --logo-size-h: calc(
    (var(--ring-size) * 1.5 - var(--ring-border-size) * 0.5) * 2
  );
  --logo-bg-color: #f1f1f1;
  --numberBoxShadow: 0px 70px 65px rgba(0, 0, 0, 0.039),
    0px 30px 30px rgba(0, 0, 0, 0.037), 0px 15px 15px rgba(0, 0, 0, 0.036),
    0px 10px 8px rgba(0, 0, 0, 0.035), 0px 4px 4px rgba(0, 0, 0, 0.034),
    0px 2px 2px rgba(0, 0, 0, 0.033);
  --numberBoxBorder: 0 0 0 1px hsla(0, 0%, 100%, 0.6);
  --numberBoxBackground: #fff;
}
body {
  font-family: "Inter", sans-serif;
  color: var(--dark-text);
  margin: 0 auto;
  overflow-x: hidden;
  top: 0 !important;
  height: 100%;
}
a {
  text-decoration: none;
}

section {
  position: relative;
  width: 100%;
}
img {
  width: 100%;
}

.preloader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  z-index: 999999999;
  background-image: url("../image/spinner-1.gif");
  background-repeat: no-repeat;
  background-color: #fff;
  background-position: center;
}
.banner-section {
  height: 100vh;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-image: url(../image/bg-new.png);
  background-color: #000;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.banner-section h1 {
  font-size: 70px;
  font-weight: 800;
  color: white;
  margin-top: 0px;
}

.banner-section .inner-container {
  min-width: 60%;
  max-width: 60%;
  margin: 20px auto;
}

.banner-section p {
  font-size: 20px;
  line-height: 40px;
  margin: 10px 0;
  color: white;
}

.banner-section .btn-scroll-down {
  position: absolute;
  left: 49%;
  bottom: 60px;
  padding: 1px;
  z-index: 10;
}

.banner-section .btn-scroll-down .scroll-down {
  height: 50px;
  width: 30px;
  border: 2px solid #fff;
  border-radius: 50px;
  left: 50%;
  cursor: pointer;
}

.banner-section .btn-scroll-down .scroll-down:after,
.banner-section .btn-scroll-down .scroll-down:before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  height: 10px;
  width: 10px;
  -webkit-transform: translate(-50%, -100%) rotate(45deg);
  -ms-transform: translate(-50%, -100%) rotate(45deg);
  transform: translate(-50%, -100%) rotate(45deg);
  border: 2px solid #fff;
  border-top: transparent;
  border-left: transparent;
  -webkit-animation: scroll-down 1s ease-in-out infinite;
  animation: scroll-down 1s ease-in-out infinite;
}

.banner-section .btn-scroll-down .scroll-down:before {
  top: 30%;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

@keyframes scroll-down {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  to {
    top: 90%;
    opacity: 0;
  }
}

@-webkit-keyframes scroll-down {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  to {
    top: 90%;
    opacity: 0;
  }
}

@-moz-keyframes scroll-down {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  60% {
    opacity: 1;
  }

  to {
    top: 90%;
    opacity: 0;
  }
}

.py-9 {
  padding: 90px 0;
}
.py-11 {
  padding: 110px 0;
}
.py-15 {
  padding: 150px 0;
}

.friction-section {
  background-color: #f4f7fb;
}

.friction-section .circle-svg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.friction-section .circle-svg svg {
  fill: currentColor;
  height: auto;
  max-width: 66vmin;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 50s;
  animation-duration: 50s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }

  to {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

.friction-section .circle-logo {
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.friction-section h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  color: var(--dark-text);
}

.friction-section p {
  font-size: 20;
  color: #5b5f6a;
  line-height: 40px;
  margin: 10px 0;
  text-align: justify;
}

.friction-section .aboutbtn {
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-weight: 400;
  border: 1px solid transparent;
  background: -o-linear-gradient(left, #775aea 30%, var(--orange-color));
  background: -o-linear-gradient(350deg, #775aea 30%, var(--orange-color));
  background: linear-gradient(100deg, #775aea 30%, var(--orange-color));
  font-size: 16px;
  line-height: 35px;
}

.friction-section .aboutbtn:hover {
  background: var(--orange-color);
  color: #fff;
}

.newservices-section h2 {
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  color: var(--dark-text);
  text-align: center;
}

.newservices-section .title-para {
  font-size: 20px;
  color: #5b5f6a;
  line-height: 34px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: clamp(1px, 1000px, 100%);
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 30px;
}

.newservices-section .video {
  width: 80%;
  height: 80%;
  position: relative;
  margin: auto;
  padding-bottom: 25px;
}

.newservices-section .video .video__size {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.newservices-section .video .video__text h3 {
  color: var(--dark-text);
  text-decoration: none;
  font-weight: 800;
  font-size: 23px;
  margin-bottom: 6px;
  text-decoration: none;
}

.newservices-section .video .video__text p {
  font-size: 16px;
  line-height: 30px;
  color: #a7a7a7;
  text-decoration: none;
  margin-bottom: 0px;
  text-decoration: none;
}

.solutions-section {
  background-color: var(--dark-text);
}

.solutions-section h2 {
  color: white;
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 30px;
  text-align: center;
}

.solutions-section .solution-list .solution-img {
  background: #3f4045;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}

.solutions-section .solution-list .solution-img img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin: 17px auto;
}

.solutions-section .solution-list:hover .solution-img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.solutions-section .solution-list .solution-content h3 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 30px;
  line-height: 35px;
  color: white;
}

.solutions-section .solution-list .solution-content p {
  font-size: 16px;
  line-height: 30px;
  color: #5b5f6a;
  text-align: center;
}

.development-stage {
  margin-bottom: 90px;
}
.development-stage .container {
  position: relative;
}
.development-stage h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 30px;
  color: var(--dark-text);
}

.text-gradient {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(30%, #775aea),
    to(var(--orange-color))
  );
  background: -o-linear-gradient(left, #775aea 30%, var(--orange-color));
  background: linear-gradient(90deg, #775aea 30%, var(--orange-color));
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  font-weight: 900;
  display: inline-block;
}

.development-stage .development-card {
  background: #fff;
  height: 100%;
  position: relative;
  z-index: 1;
}

.development-stage .development-card .big-num {
  font-size: 140px;
  font-weight: 700;
  line-height: 140px;
  color: #3a3c441a;
}

.development-stage .development-card h3 {
  font-weight: 500;
  font-size: 40px;
  margin-top: 0;
  line-height: 52px;
  width: 80%;
  color: #0d0f18;
}

.development-stage .development-card p {
  font-size: 18px;
  line-height: 36px;
  color: #63656d;
  margin-top: 40px;
}

.development-stage .col-md-4 {
  position: relative;
}

.development-stage .dotted-line3 {
  position: absolute;
  top: 86%;
  left: 52%;
}

.development-stage .dotted-line3 .path {
  -webkit-animation: reversedashed 4s infinite linear;
  animation: reversedashed 4s infinite linear;
}

@-webkit-keyframes reversedashed {
  to {
    stroke-dashoffset: -1000;
  }
}

@keyframes reversedashed {
  to {
    stroke-dashoffset: -1000;
  }
}

.development-stage .dotted-line {
  position: absolute;
  top: 34%;
  width: 81%;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(50%, var(--dark-text)),
      color-stop(50%, transparent)
    ),
    -webkit-gradient(linear, left top, right top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent)),
    -webkit-gradient(linear, left bottom, left top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent)),
    -webkit-gradient(linear, left bottom, left top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent));
  background: -o-linear-gradient(left, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(left, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(bottom, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(bottom, var(--dark-text) 50%, transparent 50%);
  background: linear-gradient(90deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(90deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(0deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(0deg, var(--dark-text) 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y;
  background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
  background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px;
  padding: 3px;
  -webkit-animation: dash 4s infinite linear;
  animation: dash 4s infinite linear;
}

@keyframes dash {
  0% {
    background-position: 0px 0px, 300px 116px, 0px 150px, 216px 0px;
  }

  100% {
    background-position: 300px 0px, 0px 116px, 0px 0px, 216px 150px;
  }
}

.development-stage .dotted-line4 {
  position: absolute;
  top: -47px;
  left: 45%;
}

.development-stage .dotted-line4 .path {
  -webkit-animation: reversedashed 4s infinite linear;
  animation: reversedashed 4s infinite linear;
}

.development-stage .dotted-line1 {
  position: absolute;
  bottom: 18%;
  width: 81%;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(50%, var(--dark-text)),
      color-stop(50%, transparent)
    ),
    -webkit-gradient(linear, left top, right top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent)),
    -webkit-gradient(linear, left bottom, left top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent)),
    -webkit-gradient(linear, left bottom, left top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent));
  background: -o-linear-gradient(left, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(left, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(bottom, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(bottom, var(--dark-text) 50%, transparent 50%);
  background: linear-gradient(90deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(90deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(0deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(0deg, var(--dark-text) 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y;
  background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
  background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px;
  padding: 3px;
  -webkit-animation: dash 4s infinite linear;
  animation: dash 4s infinite linear;
}

.development-stage .dotted-line2 {
  position: relative;
  width: 70.4%;
  top: 0;
  left: 15.2%;
  background: -webkit-gradient(
      linear,
      left top,
      right top,
      color-stop(50%, var(--dark-text)),
      color-stop(50%, transparent)
    ),
    -webkit-gradient(linear, left top, right top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent)),
    -webkit-gradient(linear, left bottom, left top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent)),
    -webkit-gradient(linear, left bottom, left top, color-stop(50%, var(--dark-text)), color-stop(50%, transparent));
  background: -o-linear-gradient(left, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(left, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(bottom, var(--dark-text) 50%, transparent 50%),
    -o-linear-gradient(bottom, var(--dark-text) 50%, transparent 50%);
  background: linear-gradient(90deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(90deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(0deg, var(--dark-text) 50%, transparent 50%),
    linear-gradient(0deg, var(--dark-text) 50%, transparent 50%);
  background-repeat: repeat-x, repeat-x, repeat-y;
  background-size: 15px 4px, 15px 4px, 4px 15px, 4px 15px;
  background-position: 0px 0px, 200px 100px, 0px 100px, 200px 0px;
  padding: 3px;
  -webkit-animation: reversedash 4s infinite linear;
  animation: reversedash 4s infinite linear;
}

@-webkit-keyframes reversedash {
  0% {
    background-position: 0px 0px, -300px 116px, 0px 150px, 216px 0px;
  }

  100% {
    background-position: -300px 0px, 0px 116px, 0px 0px, 216px 150px;
  }
}

@keyframes reversedash {
  0% {
    background-position: 0px 0px, -300px 116px, 0px 150px, 216px 0px;
  }

  100% {
    background-position: -300px 0px, 0px 116px, 0px 0px, 216px 150px;
  }
}

.why-choose {
  background: var(--dark-text);
  overflow-x: hidden;
}

.why-choose .choose-center {
  padding-bottom: 60px;
}

.why-choose .center-choose-content {
  margin-bottom: 45px;
}

.why-choose .center-choose-content h2 {
  color: white;
  font-size: 70px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 30px;
}

.why-choose .center-choose-content h2 span {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(30%, #775aea),
    to(var(--orange-color))
  );
  background: -o-linear-gradient(left, #775aea 30%, var(--orange-color));
  background: linear-gradient(90deg, #775aea 30%, var(--orange-color));
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  font-weight: 800;
  display: block;
}

.why-choose .center-choose-content .subtopic {
  font-size: 20px;
  line-height: 40px;
  margin: 10px 0;
}

.why-choose .center-choose-content p {
  font-size: 18px;
  line-height: 36px;
  color: #ffffff;
}

.enquiry-content .lined-btn,
.why-choose .lined-btn {
  color: white !important;
  margin: 30px 0;
  padding: 10px 40px;
}

.why-choose .choose-common {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  position: absolute;
}

.why-choose .choose-common div {
  background: #444854;
  padding: 1.5px 30px;
  border-radius: 30px;
  margin: 0 10px;
  color: #9fa0a1;
  font-weight: 600;
  font-size: 18px;
}

.why-choose .choose-common div span {
  color: white;
}

.why-choose .choose-one,
.why-choose .choose-five {
  position: absolute;
  left: -35px;
}

.why-choose .choose-three {
  top: 240px;
  left: -60px;
}

.why-choose .choose-four {
  top: 360px;
  left: -35px;
}

.why-choose .choose-five {
  right: 0;
  left: inherit;
}

.why-choose .choose-two,
.why-choose .choose-six {
  top: 120px;
}

.why-choose .choose-six {
  right: -30px;
}

.why-choose .choose-seven {
  top: 240px;
  right: -13px;
}

.why-choose .choose-eight {
  top: 360px;
}

.why-choose .left-choose-list,
.why-choose .right-choose-list {
  width: 33%;
}

.why-choose .grid-bg {
  display: block;
  background-color: var(--dark-text);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}

.why-choose .grid-bg .grid-inner {
  background-image: -o-linear-gradient(
    315deg,
    rgba(14, 115, 204, 0.1882352941),
    rgba(98, 75, 187, 0.1882352941),
    rgba(243, 88, 21, 0.1882352941),
    rgba(254, 213, 74, 0.1882352941) 100%
  );
  background-image: linear-gradient(
    135deg,
    rgba(14, 115, 204, 0.1882352941),
    rgba(98, 75, 187, 0.1882352941),
    rgba(243, 88, 21, 0.1882352941),
    rgba(254, 213, 74, 0.1882352941) 100%
  );
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}

.why-choose .grid-bg .grid-line {
  background: url(../image/grid-bg.svg) top -1px center;
  height: 100%;
  position: relative;
}

.why-choose .grid-bg .grid-fade {
  --tw-gradient-to: #18181821;
  --tw-gradient-from: #1a1b21;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, hsla(0, 0%, 100%, 0));
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--tw-gradient-stops))
  );
  background-image: -o-linear-gradient(bottom, var(--tw-gradient-stops));
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
  display: block;
  width: 100%;
  top: 50%;
  z-index: 2;
  left: 0;
  position: absolute;
}

.why-choose .slider-section {
  position: relative;
  z-index: 9;
  padding-top: 110px;
  padding-bottom: 0;
}

.why-choose .slider-section .carousel-inner {
  margin: 0 auto;
  width: 75%;
  color: white;
}

.why-choose .slider-section .item {
  height: 100%;
  width: 100%;
}

.why-choose .slider-section .carousel-card {
  background: -o-linear-gradient(left, #281a64, #775aea 85%),
    -o-linear-gradient(315deg, #4d3d87, #ac96fd);
  background: linear-gradient(90deg, #281a64, #775aea 85%),
    linear-gradient(135deg, #4d3d87, #ac96fd);
  border-radius: 10px;
  min-height: 300px;
  padding: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 3s ease-in-out;
  -o-transition: 3s ease-in-out;
  transition: 3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0 50px;
}

.why-choose .slider-section .carousel-card p {
  text-align: left;
  font-size: 16px;
  line-height: 30px;
  font-family: "Inter", sans-serif;
}

.why-choose .slider-section .carousel-control.right,
.why-choose .slider-section .carousel-control.left {
  background-image: none;
}

.why-choose .slider-section .glyphicon-chevron-right:before,
.why-choose .slider-section .glyphicon-chevron-left:before {
  color: #444854;
}

.why-choose .slider-section .carousel-indicators {
  display: none;
}

.lined-btn {
  background: transparent;
  border: 2px solid var(--orange-color);
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: var(--dark-text);
  font-weight: 600;
  display: inline-block;
}

.lined-btn:hover {
  text-decoration: none;
  color: var(--orange-color);
  background-color: var(--orange-color);
}

.why-choose .choose-common div {
  background: #444854;
  padding: 15px 30px;
  border-radius: 30px;
  margin: 0 10px;
  color: #9fa0a1;
  font-weight: 600;
  font-size: 18px;
}

/*animation element*/
.animation-element {
  opacity: 0;
}

/*animation element sliding left*/
.animation-element.slide-left {
  opacity: 0;
  -webkit-transition: all 700ms linear;
  -o-transition: all 700ms linear;
  transition: all 700ms linear;
  -webkit-transform: translate3d(-100px, 0px, 0px);
  transform: translate3d(-100px, 0px, 0px);
}

.animation-element.slide-left.in-view {
  opacity: 1;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.animation-element.slide-right {
  opacity: 0;
  -webkit-transition: all 700ms linear;
  -o-transition: all 700ms linear;
  transition: all 700ms linear;
  -webkit-transform: translate3d(100px, 0, 0);
  transform: translate3d(100px, 0, 0);
}

.animation-element.slide-right.in-view {
  opacity: 1;
  -webkit-transform: translate3d(0px, 0px, 0px);
  transform: translate3d(0px, 0px, 0px);
}

.testimonials-section {
  position: relative;
  padding-bottom: 0 !important;
}

.testimonials-section h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 0;
  color: var(--dark-text);
}

.testimonials-section #customers-testimonials .testimonial-content {
  margin-left: 40px;
  padding-right: 16px;
}

.testimonials-section #customers-testimonials .testimonial-content h3 {
  font-weight: 600;
  font-size: 40px;
  margin-top: 0;
}

.testimonials-section #customers-testimonials .testimonial-content p {
  font-size: 16px;
  line-height: 30px;
  color: #5b5f6a;
}

.testimonials-section #customers-testimonials .testimonial-name {
  margin-top: 30px;
}

.testimonials-section #customers-testimonials .testimonial-name h3 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 0;
}

.testimonials-section #customers-testimonials .testimonial-img {
  margin-bottom: 100px;
  position: relative;
}

.testimonials-section #customers-testimonials .testimonial-img img {
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonials-section #customers-testimonials .testimonial-img:before {
  content: "";
  position: absolute;
  background-image: url(../image/dotted-circle.svg);
  width: 250px;
  height: 250px;
  top: -120px;
  left: -120px;
}

.testimonials-section #customers-testimonials .testimonial-img:after {
  content: "";
  position: absolute;
  background-image: url(../image/dotted-circle.svg);
  width: 250px;
  height: 250px;
  bottom: -120px;
  right: -120px;
}

.testimonials-section .owl-carousel .owl-item {
  margin-top: 100px;
}

.owl-carousel .owl-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 83%;
  margin: 0 auto;
  position: relative;
  top: -40px;
}

.owl-carousel .owl-nav [class*="owl-"] {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.owl-carousel .owl-next,
.owl-carousel .owl-prev {
  position: relative;
  font-size: 20px;
  text-align: center;
}

.owl-carousel .owl-next.disabled {
  background-image: url(../image/right-arrow.svg) !important;
  background-repeat: no-repeat !important;
  width: 21px;
  height: 17px;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  cursor: no-drop;
}

.owl-carousel .owl-next.disabled img {
  display: none;
}

.owl-carousel .owl-prev.disabled {
  background-image: url(../image/left-arrow.svg) !important;
  background-repeat: no-repeat !important;
  width: 21px;
  height: 17px;
  cursor: no-drop;
}

.owl-carousel .owl-prev.disabled img {
  display: none;
}

.feature-blog h2 {
  color: var(--dark-text);
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  margin-top: 0px;
}

.feature-blog a {
  text-decoration: none;
}

.feature-blog a:hover,
.feature-blog a:focus {
  color: var(--white);
}

.feature-blog .lined-btn {
  float: right;
}

.feature-blog .blog-card {
  border: 2px solid #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 0px 8px #e8ebff;
  box-shadow: 0px 0px 8px #e8ebff;
  display: inline-block;
  height: 100%;
}

.feature-blog .blog-card:hover {
  text-decoration: none;
}

.feature-blog .blog-card:hover .blog-content h3 {
  color: var(--orange-color);
}

.feature-blog .blog-card:focus {
  text-decoration: none;
}

.feature-blog .blog-card .blog-img img {
  border-radius: 10px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}

.feature-blog .blog-card .blog-content {
  padding: 30px;
}

.feature-blog .blog-card .blog-content h3 {
  font-weight: 600;
  font-size: 24px;
  margin-top: 30px;
  line-height: 35px;
  margin-top: 0;
  color: var(--dark-text);
}

.feature-blog .blog-card .blog-content p {
  font-size: 16px;
  line-height: 30px;
  color: #5b5f6a;
}

.black-btn {
  background: var(--dark-text);
  border: 2px solid var(--dark-text);
  color: white;
}

.black-btn:hover {
  background-color: var(--orange-color);
  border: 2px solid var(--orange-color);
  color: #fff;
}

.newsletter .benefits-gradient {
  background: -o-linear-gradient(
    272deg,
    rgba(119, 90, 234, 0.4196078431),
    rgba(255, 98, 71, 0.4196078431)
  );
  background: linear-gradient(
    178deg,
    rgba(119, 90, 234, 0.4196078431),
    rgba(255, 98, 71, 0.4196078431)
  );
  border-radius: 20px;
  padding: 30px 0;
  position: relative;
}

.newsletter .subscribtionform {
  padding: 60px 300px 60px 100px;
}

.newsletter .subscribtionform h2 {
  display: block;
  font-size: 38px;
  font-weight: 700;
  line-height: 30px;
  color: var(--dark-text);
  margin-bottom: 20px;
  text-transform: capitalize;
}

.newsletter .subscribtionform p {
  margin-bottom: 10px;
}

.newsletter .benigitsbg {
  position: absolute;
  right: 10px;
  left: 0;
  top: -50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.newsletter .benigitsbg img {
  width: 250px;
}

.newsletter .subscribtionform p {
  line-height: 27px;
}

.newsletter .form-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.newsletter .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  flex: 1;
}

.newsletter .width-120 {
  width: 100%;
}

.newsletter .width-120 input {
  width: 100%;
  margin-bottom: 10px;
  height: 48px;
  margin-right: 10px;
  border-radius: 0;
}

.newsletter .form-check {
  color: var(--dark-text);
  font-size: 16px;
}

.faq-section h2 {
  color: var(--dark-text);
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  text-align: center;
}

.faq-section .faq-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.faq-section .accordion-list {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  list-style: none;
  padding-left: 0;
}

.faq-section .accordion-list .accordion-li {
  position: relative;
  padding: 20px;
  cursor: pointer;
  background-color: #ffffff;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #ecf3ff;
  border-radius: 10px;
  margin-bottom: 30px;
  width: 100%;
  height: 100%;
}

.faq-section .accordion-list .accordion-li h3:after {
  content: "";
  background-image: url(../image/accordion-arrowup.svg);
  position: absolute;
  right: -40px;
  top: 8px;
  -webkit-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out;
  width: 35px;
  height: 35px;
  margin: 0 auto;
  background-repeat: no-repeat;
}

.faq-section .accordion-list .accordion-li h3 {
  position: relative;
  display: block;
  width: 90%;
  height: auto;
  margin: 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 18px;
  line-height: 35px;
  color: #775aea;
}

.faq-section .accordion-list .accordion-li a.collapsed h3:after {
  background-image: url(../image/accordion-arrow.svg);
}

.faq-section .accordion-list .accordion-li .answer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 0;
  cursor: pointer;
  font-size: 16px;
  line-height: 30px;
  color: #5b5f6a;
  border-top: 0;
}

.faq-section .accordion-list .accordion-li .answer ul {
  padding-left: 20px;
}

.faq-section .accordion-list .accordion-li .answer ul li {
  list-style-type: disc;
}

.faq-section .panel-title a {
  font-weight: 600;
  font-size: 18px;
  line-height: 35px;
  color: #775aea;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.faq-section .panel-title a svg {
  width: 25px;
  height: 25px;
  background: #ece7ff;
  border-radius: 50px;
  padding: 6px;
  margin-left: 10px;
}

.faq-section .panel-title .iconchange svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.faq-section .panel-title .collapsed svg {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}

.faq-section .panel-default > .panel-heading + .panel-collapse > .panel-body {
  font-size: 16px;
  line-height: 30px;
  color: #5b5f6a;
  border-top: 0;
}

.faq-section .panel-group .panel + .panel {
  margin-top: 0;
}

.faq-section .panel-title > a:hover,
.faq-section .panel-title > a:active,
.faq-section .panel-title > a:focus {
  text-decoration: none;
}

.faq-section .panel-heading {
  padding: 20px 15px;
  background: transparent;
}

.faq-section .panel-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.faq-section .panel {
  background-color: #ffffff;
  border: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 2px solid #ecf3ff;
  border-radius: 10px;
  margin-bottom: 30px;
  width: 48%;
  height: 100%;
  margin-left: 10px;
  margin-right: 10px;
}

.faq-section .panel ul {
  padding-left: 20px;
}

.faq-section .panel ul li {
  list-style-type: disc;
}

.faq-section .jumbotron {
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  color: inherit;
  background-color: #00bcd4;
  text-align: center;
  color: #fff;
}

.tech-partners h4 {
  font-size: 23px;
  text-align: center;
  font-weight: 700;
  color: #5b5f6a;
  margin-bottom: 30px;
}

.tech-partners .highway-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
}

.tech-partners .highway-slider .highway-barrier {
  overflow: hidden;
  position: relative;
}

.tech-partners .highway-slider .highway-lane {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
}

.tech-partners .highway-slider .highway-lane .highway-car {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  color: #343434;
}

.tech-partners .highway-slider .highway-lane .highway-car img {
  width: 100px;
  height: auto;
}

@-webkit-keyframes translateinfinite {
  100% {
    -webkit-transform: translateX(-2160px);
    transform: translateX(-2160px);
  }
}

@keyframes translateinfinite {
  100% {
    -webkit-transform: translateX(-2160px);
    transform: translateX(-2160px);
  }
}

.tech-partners #infinite .highway-barrier::before,
.tech-partners #infinite .highway-barrier::after {
  content: " ";
  position: absolute;
  z-index: 9;
  width: 180px;
  height: 100%;
}

.tech-partners #infinite .highway-barrier::before {
  top: 0;
  left: 0;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgb(255, 255, 255)),
    to(rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(
    left,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to right,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.tech-partners #infinite .highway-barrier::after {
  top: 0;
  right: 0;
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgb(255, 255, 255)),
    to(rgba(255, 255, 255, 0))
  );
  background: -o-linear-gradient(
    right,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  background: linear-gradient(
    to left,
    rgb(255, 255, 255) 0%,
    rgba(255, 255, 255, 0) 100%
  );
}

.tech-partners #infinite .highway-barrier .highway-lane {
  width: 4060px;
}

.tech-partners #infinite .highway-barrier .highway-lane .highway-car {
  width: 180px;
  -webkit-animation: translateinfinite 25s linear infinite;
  animation: translateinfinite 25s linear infinite;
}

.tech-partners #infinite .highway-barrier .highway-lane .highway-car span.fab {
  font-size: 65px;
}

.contact-bg {
  background: #1a1919;
}

.contact-bg .grid-bg {
  display: block;
  background-color: var(--dark-text);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
}

.contact-bg .grid-bg .grid-inner {
  background-image: -o-linear-gradient(
    315deg,
    rgba(14, 115, 204, 0.1882352941),
    rgba(98, 75, 187, 0.1882352941),
    rgba(243, 88, 21, 0.1882352941),
    rgba(254, 213, 74, 0.1882352941) 100%
  );
  background-image: linear-gradient(
    135deg,
    rgba(14, 115, 204, 0.1882352941),
    rgba(98, 75, 187, 0.1882352941),
    rgba(243, 88, 21, 0.1882352941),
    rgba(254, 213, 74, 0.1882352941) 100%
  );
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  position: absolute;
}

.contact-bg .grid-bg .grid-line {
  background: url(../image/grid-bg.svg) top -1px center;
  height: 100%;
  position: relative;
}

.contact-bg .grid-bg .grid-fade {
  --tw-gradient-to: #18181821;
  --tw-gradient-from: #1a1b21;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, hsla(0, 0%, 100%, 0));
  background-image: -o-linear-gradient(bottom, var(--tw-gradient-stops));
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(var(--tw-gradient-stops))
  );
  background-image: linear-gradient(to top, var(--tw-gradient-stops));
  display: block;
  width: 100%;
  top: 50%;
  z-index: 2;
  left: 0;
  position: absolute;
}

.contact-bg .enquiry-content h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 70px;
  color: white;
}
.enquiry-content p {
  font-size: 18px;
  line-height: 40px;
  color: #dddddd;
}
.enquiry-content {
  padding-top: 50px;
}
.enquiry {
  padding: 50px 40px;
  background-color: rgba(36, 37, 44, 0.6196078431);
  display: block;
  margin: 0 auto;
  z-index: 100000;
  border-radius: 6px;
}
.enquiry form input {
  padding: 12px 10px;
  color: #fff;
  background-color: #2d2e36;
  border: 1px solid #2d2e36;
  border-radius: 0;
  margin-bottom: 24px;
  width: 100%;
  height: 50px;
  outline: 0;
}
.enquiry form input:focus {
  color: #fff;
  background-color: #2d2e36;
}
.enquiry select {
  padding: 12px 10px;
  color: #fff;
  background-color: #2d2e36;
  border: 1px solid #2d2e36;
  margin-bottom: 24px;
  width: 100%;
  outline: 0;
  height: 48px;
  font-size: 16px;
  border-radius: 0;
  -webkit-appearance: none;
  background: url(../image/chevron-down.svg), #2d2e36;
  background-repeat: no-repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 14px;
  text-align: left;
  direction: ltr;
}
.enquiry select:focus {
  color: #fff;
  background-color: #2d2e36;
}
.enquiry select option {
  color: #fff;
  background-color: #2d2e36;
}
.country-code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 24px;
}
.country-code .select {
  position: relative;
  margin-bottom: 15px;
  width: 120px;
  padding: 0px 10px;
  color: #fff;
  height: 50px;
  background-color: #2d2e36;
  border: 1px solid #2d2e36;
  margin-bottom: 18px;
}
.enquiry .select select {
  padding: 0;
  margin: 0;
  font-size: 12px;
}
.number {
  position: relative;
  width: 100%;
}
.toast {
  z-index: 100000;
  position: absolute;
  color: #f57862;
  bottom: -19px;
  left: -5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
}
.enquiry form textarea {
  min-height: 100px !important;
  background-color: #2d2e36;
  border: 1px solid #2d2e36;
  border-radius: 0;
  resize: none;
  width: 100%;
  outline: 0;
  padding: 21px 10px;
  color: white;
  margin-bottom: 16px;
}
.enquiry form textarea:focus {
  background-color: #2d2e36;
  color: white;
}
.footer-section {
  background: #000000;
  padding: 120px 0;
}

.footer-section .footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  width: 98%;
  margin: 0 auto;
}

.footer-section .footer-container .footer-one,
.footer-section .footer-container .footer-two,
.footer-section .footer-container .footer-three {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer-section .footer-container .footer-two .footer-emails {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-section .footer-container .footer-two .footer-emails a {
  text-decoration: none;
}

.footer-section .footer-container .footer-three .footer-address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-section .footer-container .footer-three .footer-address .footer-place {
  font-size: 14px;
  line-height: 30px;
  font-weight: 600;
  background: -o-linear-gradient(
    297.87deg,
    var(--orange-color) 1523.93%,
    #e64c32 1733.39%,
    #eb5840 1969.02%,
    #f06852 2178.48%
  );
  background: linear-gradient(
    152.13deg,
    var(--orange-color) 1523.93%,
    #e64c32 1733.39%,
    #eb5840 1969.02%,
    #f06852 2178.48%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-section .footer-container .footer-three .arabic-flow {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer-section .footer-para {
  font-size: 14px;
  line-height: 30px;
  color: #707070;
  margin-top: 30px;
}

.footer-section h3 {
  font-weight: 600;
  font-size: 20px;
  margin-top: 30px;
  line-height: 35px;
}

.footer-section h5 {
  font-weight: 600;
  font-size: 16px;
  margin-top: 30px;
  line-height: 19px;
  color: #18181e;
}

.footer-section .footer-para-copyright {
  font-size: 12px;
  line-height: 30px;
  color: #707070;
  margin-top: 30px;
}

.footer-section ul {
  list-style: none;
  padding-left: 0;
}

.footer-section .email-links span {
  color: #707070;
  font-weight: 500;
  font-size: 14px;
}

.footer-section .footer-list div {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #606060;
  margin-top: 8px;
}

.footer-section .footer-list p {
  font-size: 14px;
  line-height: 30px;
  color: var(--para-text);
}

.footer-section .footer-list a {
  text-decoration: none;
}

.footer-section .footer-list span {
  font-size: 14px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 8px;
  display: block;
  color: var(--orange-color);
}

.footer-section .footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-section .footer-social img {
  width: 32px;
}

.footer-section .footer-social li {
  width: 35px;
}

.footer-section .footer-social li:hover {
  color: var(--orange-color);
}

.footer-section .img-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  margin-top: 26px;
}

.footer-section .img-block a {
  display: block;
  text-decoration: none;
}
.navbar-bitprotos {
  padding: 0;
}
.navbar-bitprotos .nav-item {
  padding: 8px;
}
.navbar-bitprotos .nav-item .nav-link {
  color: #b6b7bd;
  font-weight: 400;
  padding: 10px 15px;
  position: relative;
  font-size: 17px;
}
.navbar-bitprotos .nav-item .nav-link.active {
  color: #34ffe7;
  font-weight: 600;
}
.navbar-bitprotos .nav-item .nav-link.active:before {
  content: "";
  /* border-bottom: 3px solid var(--white); */
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.navbar-bitprotos-light {
  background-color: #000000;
  box-shadow: 4px 4px 8px #00000012;
}
.navbar-bitprotos-light .nav-item .nav-link {
  color: #b6b7bd;
}
.navbar-bitprotos-light .nav-item .nav-link.active,
.navbar-bitprotos-light .nav-item:hover .nav-link {
  color: #34ffe7;
}
.navbar-bitprotos .navbar-toggler,
.navbar-bitprotos .navbar-toggler:focus {
  border: none;
  width: 56px;
  height: 44px;
  text-align: center;
  position: relative;
  color: rgb(255 255 255 / 55%);
}
.navbar-bitprotos .navbar-toggler .navbar-toggler-icon {
  width: 36px;
  height: 45px;
  color: var(--orange-color);
}
.navbar-bitprotos .navbar-toggler i {
  font-size: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: 0 0;
}
.navbar-bitprotos .navbar-toggler i.fa-bars {
  opacity: 0;
  scale: 0;
  transition: opacity 0.2s, scale 0.2s;
}
.navbar-bitprotos .navbar-toggler i.fa-xmark {
  opacity: 1;
  scale: 1;
  transition: opacity 0.2s 0.2s, scale 0.2s 0.2s;
}
.navbar-bitprotos .navbar-toggler.collapsed i.fa-bars {
  opacity: 1;
  scale: 1;
  transition: opacity 0.2s 0.2s, scale 0.2s 0.2s;
}
.navbar-bitprotos .navbar-toggler.collapsed i.fa-xmark {
  opacity: 0;
  scale: 0;
  transition: opacity 0.2s, scale 0.2s;
}
.navbar-bitprotos .dropdown-menu-large {
  padding: 10px 20px;
  top: 100%;
  left: 0;
  margin-top: 0px;
}
.menu-list ul li a:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  display: inline-block;
  margin-left: 0;
  margin-right: 10px;
  width: 13px;
  color: #000;
}
.menu-list ul li {
  list-style-type: none;
}
.navbar-bitprotos .dropdown-menu-large ul {
  padding: 0;
}
.navbar-bitprotos .dropdown-menu-large ul li {
  padding: 8px 5px;
}
.navbar-bitprotos .dropdown-menu-large ul li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark-text);
  white-space: nowrap;
}
.navbar-bitprotos .dropdown-menu-large ul li:hover a,
.navbar-bitprotos .dropdown-menu-large ul li a.active,
.navbar-bitprotos .dropdown-menu-large ul li:hover a:before,
.navbar-bitprotos .dropdown-menu-large ul li a.active:before {
  color: var(--orange-color);
}
.navbar-bitprotos .btn-nav {
  background: linear-gradient(to right, #0a97fa, #34ffe7);
  border-radius: 36px;
  border: none;
}
.navbar-bitprotos .btn-nav:hover {
  background: linear-gradient(100deg, #775aea 30%, var(--orange-color));
  color: #fff;
}
.navbar-bitprotos.navbar-bitprotos-light .btn-nav {
  background-color: var(--orange-color);
  color: #ffffff;
}
.navbar-bitprotos.navbar-bitprotos-light .btn-nav:hover {
  background: #ffffff;
  color: var(--orange-color);
}
.navbar-bitprotos .logo-light {
  display: block;
  height: 35px;
}
.navbar-bitprotos .logo-dark {
  display: none;
  height: 35px;
}
.navbar-bitprotos.navbar-bitprotos-light .logo-light {
  display: none;
}
.navbar-bitprotos.navbar-bitprotos-light .logo-dark {
  display: block;
}
@media (min-width: 992px) {
  .navbar-bitprotos .dropdown:hover .dropdown-menu,
  .navbar-bitprotos .dropdown .dropdown-menu.show {
    display: flex;
    width: max-content;
  }
}
#back-to-top {
  display: inline-block;
  background-color: #34ffe7;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 22px;
  right: 22px;
  -webkit-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  -o-transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#back-to-top:after {
  content: "\f0d8";
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 28px;
  color: #fff;
}
#back-to-top:hover {
  cursor: pointer;
  background-color: #333;
}

#back-to-top:active {
  background-color: #555;
}

#back-to-top.show {
  opacity: 1;
  visibility: visible;
}
.about-banner {
  background-image: url(../image/about-us/about-bg.svg);
  background-color: var(--dark-text);
  color: var(--white);
  padding: 90px 0;
}
.about-banner h1 {
  font-size: 48px;
  font-weight: 700;
}
.about-banner p {
  font-size: 30px;
  margin-bottom: 0;
}
.about-us-section h1 {
  color: var(--dark-text);
  font-size: 40px;
  font-weight: 800;
  line-height: 70px;
}
.about-us-section p {
  color: var(--para-text);
  line-height: 35px;
  margin: 10px 0;
  font-size: 18px;
  margin-bottom: 30px;
}
.about-us-section .underline {
  display: block;
  width: 208px;
  height: 4px;
  background: var(--dark-text);
  margin-top: 40px;
  margin-bottom: 40px;
}
.about-us-section h6 {
  font-size: 33px;
  font-weight: 700;
  line-height: 50px;
  font-style: italic;
}
.second-bg-1 {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.second-bg-1 img {
  width: 450px;
  border-radius: 20px;
}
.about-content p {
  color: var(--para-text);
  line-height: 35px;
  margin: 10px 0;
  font-size: 18px;
  margin-bottom: 30px;
}
.about-content .aboutbg-grid {
  --tw-gradient-to: transparent;
  --tw-gradient-from: #a18bf5;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, hsla(0, 0%, 100%, 0));
  background-image: radial-gradient(closest-side, var(--tw-gradient-stops));
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  z-index: -1;
}
.about-content .aboutbg-grid .aboutinner-grid {
  background: url(../image/about-us/about-grid.svg) top -1px center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.header-wrapper {
  position: relative;
}

.header-wrapper .gallery {
  height: calc(var(--logo-size-h) * 1.25);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr calc(var(--logo-size-w) * 0.6) 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-areas: "p6 p6 p6 p6 . p5 p5 p4 p4" "p6 p6 p6 p6 . p5 p5 p4 p4" "p1 p1 p7 p7 . p2 p2 p2 p3" "p1 p1 p8 p8 . p2 p2 p2 p3";
}

.header-wrapper .gallery .i1 {
  background: url("../image/about-us-new/5.jpg");
  grid-area: p1;
}

.header-wrapper .gallery .i2 {
  background: url("../image/about-us-new/8.jpg");
  grid-area: p2;
}

.header-wrapper .gallery .i3 {
  background: url("../image/about-us-new/9.jpg");
  grid-area: p3;
}

.header-wrapper .gallery .i4 {
  background: url("../image/about-us-new/4.jpg");
  grid-area: p4;
}

.header-wrapper .gallery .i5 {
  background: url("../image/about-us-new/3.jpg");
  grid-area: p5;
}

.header-wrapper .gallery .i6 {
  background: url("../image/about-us-new/2.jpg");
  grid-area: p6;
}

.header-wrapper .gallery .i7 {
  background: url("../image/about-us-new/6.jpg");
  grid-area: p7;
}

.header-wrapper .gallery .i8 {
  background: url("../image/about-us-new/7.jpg");
  grid-area: p8;
}

.header-wrapper .gallery .photo {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(0.9);
}

.header-wrapper .logo {
  -webkit-clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
  background: linear-gradient(to bottom, #fff, #fff);
  width: calc(var(--logo-size-w) * 1);
  height: calc(var(--logo-size-h) * 1.25);
  margin: 0 auto;
  padding: 10px 30px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.header-wrapper h2 {
  color: var(--dark-text);
  font-size: 40px;
  font-weight: 800;
  line-height: 70px;
  text-align: center;
  margin-bottom: 20px;
}

.header-wrapper p {
  color: var(--para-text);
  line-height: 35px;
  margin: 10px 00px;
  font-size: 18px;
  margin-bottom: 30px;
  padding: 0 80px;
  text-align: center;
}
.global-section .sectionClass {
  position: relative;
  display: block;
}

.global-section .fullWidth {
  width: 100% !important;
  display: table;
  float: none;
  padding: 0;
  min-height: 1px;
  height: 100%;
  position: relative;
}

.global-section .sectiontitle {
  background-position: center;
  text-align: center;
  min-height: 20px;
  background: #131316;
}

.global-section .sectiontitle h2 {
  color: var(--white);
  font-size: 40px;
  font-weight: 600;
  line-height: 70px;
  padding: 20px 0;
  margin: 0;
}

.global-section .projectFactsWrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.global-section #projectFacts .fullWidth {
  padding: 0;
}

.global-section .projectFactsWrap .item {
  width: 20%;
  padding: 50px 0px;
  text-align: center;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.global-section .projectFactsWrap .item:nth-child(1) {
  background: var(--dark-text);
}

.global-section .projectFactsWrap .item:nth-child(2) {
  background: #1f2126;
}

.global-section .projectFactsWrap .item:nth-child(3) {
  background: var(--dark-text);
}

.global-section .projectFactsWrap .item:nth-child(4) {
  background: #1f2126;
}

.global-section .projectFactsWrap .item:nth-child(5) {
  background: var(--dark-text);
}

.global-section .projectFactsWrap .item p.number {
  font-size: 40px;
  padding: 0;
  font-weight: bold;
}

.global-section .projectFactsWrap .item p {
  color: var(--white);
  font-size: 18px;
  margin: 0;
  text-transform: capitalize;
  padding: 30px 20px;
}

.global-section .projectFactsWrap .item span {
  width: 60px;
  background: rgba(255, 255, 255, 0.8);
  height: 2px;
  display: block;
  margin: 10px auto;
}

.global-section .projectFactsWrap .item i {
  vertical-align: middle;
  font-size: 50px;
  color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 786px) {
  .projectFactsWrap .item {
    flex: 0 0 50%;
  }
  .projectFactsWrap .item:nth-child(5) {
    flex: 0 0 100%;
  }
  .global-section .projectFactsWrap .item {
    padding: 20px 0;
  }
  .global-section .projectFactsWrap .item p {
    padding: 20px 10px;
    font-size: 16px !important;
  }
  .about-banner {
    top: 50px;
  }
}
.special-section h2 {
  color: var(--dark-text);
  font-size: 40px;
  font-weight: 800;
  line-height: 60px;
}

.special-section .special-card {
  padding: 30px;
  border: 1px solid #ededed;
  border-bottom: 5px solid var(--dark-text);
  height: 100%;
}

.special-section .special-card h3 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 0;
  line-height: 35px;
}

.special-section .special-card p {
  font-size: 16px;
  line-height: 30px;
  color: var(--para-text);
  margin-top: 30px;
}
.award-section .highway-slider {
  height: 180px !important;
}

.award-section #infinite .highway-barrier .highway-lane {
  width: 5270px;
}

.award-section a {
  color: var(--dark-text);
  font-size: 18px;
  font-weight: 500;
}

.award-section a p {
  margin-top: 30px;
}

.award-section a div {
  height: 90px;
  display: flex;
  align-items: center;
}

.award-section a div img {
  filter: contrast(1) !important;
}
.banner-section-nft {
  background-image: url("../image/services-banner/NFT-Marketplace-Development.jpg");
}
.nft-section h2 {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  color: var(--dark-text);
  margin-bottom: 30px;
}

.nft-section p {
  color: var(--para-text);
  line-height: 28px;
  margin: 10px 0;
  font-size: 16px;
  text-align: justify;
}

.nft-section .nftbg-grid {
  --tw-gradient-to: transparent;
  --tw-gradient-from: #a18bf5;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, hsla(0, 0%, 100%, 0));
  background-image: radial-gradient(closest-side, var(--tw-gradient-stops));
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
  right: 0;
}

.nft-section .nftbg-grid .nftinner-grid {
  background: url(../image/about-us/about-grid.svg) top -1px center;
  position: absolute;
  width: 100%;
  height: 100%;
}

.nft-section .aboutbtn {
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-weight: 400;
  border: 1px solid transparent;
  background: linear-gradient(100deg, #775aea 30%, var(--orange-color));
  font-size: 16px;
  line-height: 35px;
}

.nft-section .aboutbtn:focus {
  border: none !important;
}

.nft-section .aboutbtn:hover {
  background: var(--orange-color);
  color: #fff;
}

.nft-section .aboutbtn a {
  color: #fff;
  text-decoration: none;
}
.nft-section .main-title {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  color: var(--dark-text);
  margin-bottom: 30px;
}
.nft-section h1 {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: var(--dark-text);
}
.highlight {
  color: var(--para-text);
}
.videoblog {
  padding: 0px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 16px;
  position: relative;
}

.videoblog h4 {
  display: inline-block;
  text-align: left;
  font-style: italic;
  line-height: 28px;
  font-weight: 600;
  font-size: 18px;
}

.videoblog:after {
  content: "";
  background-image: url(../image/arrow-about.svg);
  width: 55px;
  height: 72px;
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 47px;
  right: 16px;
}
.second-bg {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-bg img {
  border-radius: 20px;
}

.second-bg-1 {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.second-bg-1 img {
  width: 450px;
  border-radius: 20px;
}
.video-play-button {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  box-sizing: content-box;
  display: block;
  border-radius: 50%;
  padding: 18px 20px 18px 28px;
  cursor: pointer;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: linear-gradient(100deg, #775aea 30%, var(--orange-color));
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 80px;
  height: 80px;
  background: linear-gradient(100deg, #775aea 30%, var(--orange-color));
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: #da0528;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 26px solid #fff;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
}
@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  to {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.content_img .img-text {
  position: absolute;
  bottom: 30px;
  background: rgba(0, 0, 0, 0.65);
  border-top-right-radius: 0.5em;
  border-bottom-right-radius: 0.5em;
  font-size: 12px;
  color: white;
  opacity: 0;
  text-transform: capitalize;
  visibility: hidden;
  -webkit-transition: visibility 0s, opacity 0.5s linear;
  -o-transition: visibility 0s, opacity 0.5s linear;
  transition: visibility 0s, opacity 0.5s linear;
}

.content_img:hover .img-text {
  padding: 8px 15px;
  visibility: visible;
  opacity: 1;
  max-width: 80%;
}
.section-title h2 {
  font-size: 55px;
  line-height: 70px;
  font-weight: bold;
  color: var(--dark-text);
}

.section-title span {
  font-size: 55px;
  line-height: 70px;
  font-weight: bold;
  color: var(--dark-text);
}
.holderCircle {
  width: 500px;
  height: 500px;
  border-radius: 100%;
  margin: 60px auto;
  position: relative;
}

.dotCircle {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  z-index: 20;
}

.dotCircle .itemDot {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  background: #ffffff;
  color: #7d4ac7;
  border-radius: 20px;
  text-align: center;
  line-height: 80px;
  font-size: 30px;
  z-index: 3;
  cursor: pointer;
  border: 2px solid #e6e6e6;
}

.dotCircle .itemDot .forActive {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.dotCircle .itemDot .forActive::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 3px solid #7d4ac7;
  bottom: -31px;
  left: -14px;
  filter: blur(1px);
  position: absolute;
  border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
  content: "";
  width: 6px;
  height: 6px;
  filter: blur(5px);
  top: -15px;
  position: absolute;
  transform: rotate(-45deg);
  border: 6px solid #a733bb;
  right: -39px;
}

.dotCircle .itemDot.active .forActive {
  display: block;
}

.round {
  position: absolute;
  left: 40px;
  top: 45px;
  width: 410px;
  height: 410px;
  border: 2px dotted #a733bb;
  border-radius: 100%;
  -webkit-animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
  color: #ffffff;
  transition: 0.5s;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#7d4ac7+0,a733bb+100 */
  background: #7d4ac7;
  /* Old browsers */
  /* FF3.6-15 */
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right, #7d4ac7 0%, #a733bb 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#7d4ac7", endColorstr="#a733bb", GradientType=1);
  /* IE6-9 */
  border: 2px solid #ffffff;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
}

.dotCircle .itemDot {
  font-size: 40px;
}

.contentCircle {
  width: 250px;
  border-radius: 100%;
  color: #222222;
  position: relative;
  top: 118px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
  border-radius: 100%;
  color: #222222;
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  font-size: 15px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  margin: auto;
  line-height: 250px;
}

.CirItem.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  transition: 0.5s;
}

.contentCircle .CirItem i {
  font-size: 180px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -90px;
  color: #000000;
  opacity: 0.1;
}

@media only screen and (min-width: 300px) and (max-width: 599px) {
  .holderCircle {
    width: 300px;
    height: 300px;
    margin: 110px auto;
  }
  .holderCircle::after {
    width: 100%;
    height: 100%;
  }
  .dotCircle {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

.title-box .title {
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  z-index: -1;
}

.title-box span {
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  font-weight: 800;
  color: var(--orange-color);
}

.title-box p {
  font-size: 17px;
  line-height: 2em;
}

.holderCircle {
  width: 500px;
  height: 500px;
  border-radius: 100%;
  margin: 30px auto;
  position: relative;
}

.dotCircle {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100%;
  z-index: 20;
}

.dotCircle .itemDot {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  background: #000;
  color: #7d4ac7;
  border-radius: 20px;
  text-align: center;
  line-height: 80px;
  font-size: 30px;
  z-index: 3;
  cursor: pointer;
  border: 2px solid #e6e6e6;
}

.dotCircle .itemDot .forActive {
  width: 56px;
  height: 56px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}

.dotCircle .itemDot .forActive::after {
  content: "";
  width: 5px;
  height: 5px;
  border: 3px solid #7d4ac7;
  bottom: -31px;
  left: -14px;
  filter: blur(1px);
  position: absolute;
  border-radius: 100%;
}

.dotCircle .itemDot .forActive::before {
  content: "";
  width: 6px;
  height: 6px;
  filter: blur(5px);
  top: -15px;
  position: absolute;
  transform: rotate(-45deg);
  border: 6px solid #a733bb;
  right: -39px;
}

.dotCircle .itemDot.active .forActive {
  display: block;
}

.round {
  position: absolute;
  left: 40px;
  top: 45px;
  width: 410px;
  height: 410px;
  border: 2px dotted var(--orange-color);
  border-radius: 100%;
  -webkit-animation: rotation 100s infinite linear;
}

.dotCircle .itemDot:hover,
.dotCircle .itemDot.active {
  color: #ffffff;
  transition: 0.5s;
  background: var(--orange-color);
  background: linear-gradient(112deg, #775aea 30%, var(--orange-color));
  filter: progid: DXImageTransform.Microsoft.gradient(startColorstr="#7d4ac7", endColorstr="#a733bb", GradientType=1);
  border: 2px solid #ffffff;
  box-shadow: 0 30px 30px 0 rgba(0, 0, 0, 0.13);
}

.dotCircle .itemDot {
  font-size: 40px;
}

.itemDot img {
  width: 35px;
  vertical-align: unset !important;
}

.contentCircle {
  width: 250px;
  border-radius: 100%;
  color: #222222;
  position: relative;
  top: 150px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.contentCircle .CirItem {
  border-radius: 100%;
  color: #222222;
  position: absolute;
  text-align: center;
  bottom: 0;
  left: 0;
  opacity: 0;
  transform: scale(0);
  transition: 0.5s;
  font-size: 15px;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  margin: auto;
  line-height: 250px;
}

.CirItem.active {
  z-index: 1;
  opacity: 1;
  transform: scale(1);
  transition: 0.5s;
}

.contentCircle .CirItem i {
  font-size: 180px;
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -90px;
  color: #000000;
  opacity: 0.1;
}

.title-box .title {
  font-weight: 600;
  letter-spacing: 2px;
  position: relative;
  z-index: -1;
  background: linear-gradient(90deg, #775aea 30%, var(--orange-color));
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  font-weight: 800;
}

.title-box span {
  text-shadow: 0 10px 10px rgba(0, 0, 0, 0.15);
  font-weight: 800;
  color: var(--orange-color);
}

.title-box p {
  font-size: 17px;
  line-height: 30px;
  font-size: 16px;
}

.title-box h2 {
  margin-top: 0px;
  margin-bottom: 10px;
}

@media only screen and (min-width: 300px) and (max-width: 599px) {
  .holderCircle {
    width: 280px;
    height: 280px;
    box-sizing: border-box;
    overflow: hidden;
  }
  .holderCircle::after {
    width: 100%;
    height: 100%;
  }
  .dotCircle {
    width: 100%;
    height: 100%;
    top: -2px;
    right: 0;
    bottom: 0;
    left: -4px;
    margin: auto;
  }
  .dotCircle .itemDot {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
  .itemDot img {
    width: 16px;
  }
  .dotCircle .itemDot .forActive {
    width: 9px;
    height: 9px;
  }
  .round {
    left: 15px;
    top: 18px;
    width: 245px;
    height: 245px;
  }
  .contentCircle {
    width: 170px;
    top: 76px;
  }
  .title-box h2 {
    font-size: 16px;
  }
  .title-box p {
    line-height: 22px;
    font-size: 12px;
  }
  .dotCircle .itemDot .forActive::before {
    display: none;
  }
  .dotCircle .itemDot .forActive::after {
    display: none;
  }
}
.social-box {
  background-color: #f3f3f5;
}
.social-box .box {
  background: var(--white);
  border-radius: 10px;
  padding: 30px;
  margin: 20px 0px;
  transition: all 0.5s ease-out;
  box-shadow: 0 0 6px var(--white);
  height: 100%;
  border-bottom: 4px solid transparent;
  -o-border-image: linear-gradient(90deg, #775aea 30%, var(--orange-color));
  border-image: linear-gradient(90deg, #775aea 30%, var(--orange-color));
  border-image-slice: 1;
  width: 100%;
}

.social-box .box .card-icon {
  width: 50px;
  height: 50px;
  border-radius: 2px;
  background-color: #f3f3f5;
  text-align: center;
  padding: 14px;
  margin-bottom: 15px;
}

.social-box .box .box-text {
  font-size: 16px;
  line-height: 30px;
  color: var(--para-text);
}

.social-box .box .box-title h3 {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 26px;
  margin-top: 00px;
  line-height: 36px;
}
.social-box .box-shadow-none {
  box-shadow: none !important;
  background-color: transparent;
}
.product-view {
  background: var(--dark-text);
}

.product-view:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 13%;
  background-color: var(--white);
}

.product-view h2 {
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
  margin-bottom: 30px;
  color: var(--white);
}

.product-view p {
  font-size: 16px;
  line-height: 30px;
  color: var(--white);
}

.product-view .productview-img {
  position: relative;
  z-index: 1;
}

.product-view .productview-img .gradient-circle {
  width: auto;
  position: absolute;
  right: 0;
}

.product-view .productview-img .webimage {
  position: relative;
  top: 120px;
}

.product-view .productview-content {
  margin-top: 60px;
  margin-left: 50px;
}

.product-view ul {
  list-style-type: none;
  line-height: 36px;
  padding-top: 20px;
  color: white;
}

.product-view ul li:before {
  content: "\f178";
  font-family: "Font Awesome 6 Free";
  font-display: swap;
  display: inline-block;
  margin-left: -0.3em;
  width: 1.3em;
  color: white;
}
.listoffeatures__innerbox {
  display: block;
  height: 100%;
  border-radius: 1px;
  width: 100%;
  margin: 10px auto;
  padding: 20px;
  border: 1px solid #ededed;
  border-bottom: 5px solid var(--dark-text);
  height: 100%;
}

.listoffeatures__innerbox h3 {
  font-weight: 600;
  font-size: 21px;
  line-height: inherit;
  margin-top: 0px;
}

.listoffeatures__innerbox p {
  font-size: 14px;
  line-height: 24px;
  color: var(--para-text);
  letter-spacing: 0;
}
.phaseproject {
  background: var(--dark-text);
}

.phaseproject .section-title {
  margin-bottom: 40px;
}

.phaseproject .section-title h2 {
  color: var(--white);
}

.phaseproject .section-title h2 span {
  background: linear-gradient(90deg, #775aea 30%, var(--orange-color));
  background-size: 100%;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  font-weight: 800;
  display: inline-block;
}

.phaseproject .card {
  border-radius: 14px;
  box-shadow: 0 0 35px 0 rgba(0, 0, 0, 0.1);
  padding: 50px;
  height: 100%;
  background-color: #7e5ae2;
  /* For browsers that do not support gradients */
  background-image: linear-gradient(to bottom right, #7e5ae2, #e15f6a);
  color: var(--white);
}

.phaseproject .card img {
  width: 100px;
  height: 100px;
  position: absolute;
  right: 15px;
  top: 0;
  opacity: 0.4;
}

.phaseproject .card__icon {
  display: block;
  margin-bottom: 15px;
}

.phaseproject .card__body {
  margin-top: 60px;
}

.phaseproject .card__body ul {
  list-style-type: none;
  line-height: 36px;
  padding-top: 20px;
  padding-left: 0;
}

.phaseproject .card__body ul li {
  padding-left: 20px;
}

.phaseproject .card__body ul li::before {
  content: "\f30b";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  margin-left: -1.3em;
  width: 1.3em;
}

.phaseproject .card__body h3 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 30px;
  line-height: 35px;
}
.devlop-approach .container-small {
  min-width: 65%;
  max-width: 65%;
}

.devlop-approach .develop-listwrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 300px;
}

.devlop-approach .develop-listwrap:nth-child(even) {
  flex-direction: row-reverse;
}

.devlop-approach .develop-listwrap:nth-child(even) p {
  text-align: right;
}

.devlop-approach .develop-listwrap:nth-child(even) .center-list::after {
  transform: scaleX(-1);
  left: 15px;
}

.devlop-approach .develop-listwrap:nth-child(even) .left-list {
  justify-content: start;
}

.devlop-approach .develop-listwrap:nth-child(even) .left-list h4 {
  left: 0;
}

.devlop-approach .develop-listwrap:nth-child(even) .left-list h3 {
  left: 10px;
}

.devlop-approach .develop-listwrap:nth-child(even) .circle-img {
  transform: scaleX(-1);
}

.devlop-approach .develop-listwrap:last-child .center-list::after {
  display: none;
}

.devlop-approach .flex-width {
  flex-basis: 35%;
  position: relative;
}

.devlop-approach .left-list {
  display: flex;
  justify-content: end;
  align-items: center;
  position: relative;
}

.devlop-approach .left-list h4 {
  font-size: 90px;
  font-weight: 900;
  position: relative;
  color: #dfdfdf;
  left: -10px;
  margin: 0;
}

.devlop-approach .left-list h3 {
  font-size: 33px;
  font-weight: 800;
  position: relative;
  margin: 0;
}

.devlop-approach .center-list {
  display: flex;
  margin: 0 auto;
  flex-basis: 30%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.devlop-approach .center-list img {
  width: 70px;
  margin: 0 auto;
}

.devlop-approach .center-list .circle-img {
  position: absolute;
}

.devlop-approach .center-list .circle-img img {
  width: 150px;
}

.devlop-approach .center-list::after {
  content: "";
  background-image: url(../image/develop-app/arrow.svg);
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 61px;
  height: 100%;
  z-index: 4;
  bottom: -142px;
  right: 26px;
  background-size: contain;
}

.devlop-approach .right-list p {
  color: var(--dark-text);
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  background-color: #fff;
}

.devlop-approach .progressbar {
  display: inline-block;
  width: 200px;
}

.devlop-approach .circlep {
  width: 100%;
  margin: 0 auto;
  margin-top: 10px;
  display: inline-block;
  position: relative;
  text-align: center;
}

.devlop-approach .circlep .circlep-img {
  position: absolute;
  top: 35px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 40px;
  font-size: 20px;
}

.devlop-approach .circlep canvas {
  vertical-align: middle;
}

.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

/* show objects being animated */

.animated {
  visibility: visible;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-play-state: running;
  animation-play-state: running;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@media (min-width: 320px) and (max-width: 480px) {
  .devlop-approach .text-gradient {
    display: initial;
  }
  .devlop-approach .container-small {
    min-width: 100%;
    max-width: 100%;
  }
  .devlop-approach .develop-listwrap {
    display: block;
    margin-top: 50px;
  }
  .devlop-approach .develop-listwrap:nth-child(even) p {
    text-align: center;
  }
  .devlop-approach .develop-listwrap:nth-child(even) .left-list h4 {
    left: -10px;
  }
  .devlop-approach .left-list {
    justify-content: center !important;
    margin-bottom: 30px;
    margin-right: 20px;
  }
  .devlop-approach .left-list h4 {
    left: -10px;
    font-size: 40px;
  }
  .devlop-approach .left-list h3 {
    left: 0 !important;
    font-size: 20px;
    text-align: center;
  }
  .devlop-approach .center-list {
    margin-bottom: 30px;
  }
  .devlop-approach .center-list::after {
    display: none;
  }
  .devlop-approach .right-list {
    text-align: center;
  }
}

@media (min-width: 481px) and (max-width: 767px) {
  .devlop-approach .text-gradient {
    display: initial;
  }
  .devlop-approach .container-small {
    min-width: 100%;
    max-width: 100%;
  }
  .devlop-approach .develop-listwrap {
    display: block;
    margin-top: 50px;
  }
  .devlop-approach .develop-listwrap:nth-child(even) p {
    text-align: center;
    padding-right: 30px;
    padding-left: 30px;
  }
  .devlop-approach .develop-listwrap:nth-child(even) .left-list h4 {
    left: -10px;
  }
  .devlop-approach .left-list {
    justify-content: center !important;
    margin-bottom: 30px;
    align-items: center;
  }
  .devlop-approach .left-list h4 {
    left: -10px;
    font-size: 40px;
  }
  .devlop-approach .left-list h3 {
    left: 0 !important;
    font-size: 25px;
    text-align: center;
  }
  .devlop-approach .center-list {
    margin-bottom: 70px;
  }
  .devlop-approach .center-list::after {
    display: none;
  }
  .devlop-approach .right-list {
    text-align: center;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .devlop-approach .text-gradient {
    display: initial;
  }
  .devlop-approach .container-small {
    min-width: 100%;
    max-width: 100%;
  }
  .devlop-approach .develop-listwrap {
    display: block;
    margin-top: 50px;
  }
  .devlop-approach .develop-listwrap:nth-child(even) p {
    text-align: center;
  }
  .devlop-approach .develop-listwrap:nth-child(even) .left-list h4 {
    left: -10px !important;
  }
  .devlop-approach .left-list {
    justify-content: center !important;
    margin-bottom: 30px;
    margin-right: 20px;
  }
  .devlop-approach .left-list h4 {
    left: -10px;
    font-size: 40px;
  }
  .devlop-approach .left-list h3 {
    left: 0 !important;
    font-size: 20px;
    text-align: center;
  }
  .devlop-approach .center-list {
    margin-bottom: 30px;
  }
  .devlop-approach .center-list::after {
    display: none;
  }
  .devlop-approach .right-list {
    text-align: center;
  }
  .devlop-approach .right-list p {
    width: 70%;
    margin: 0 auto;
  }
}
.exchangebanner {
  background-image: url("../image/crypto-exchange/Cryptocurrency-Exchange-Development.jpg");
}
#services .center-heading {
  padding-top: 172px;
  padding-bottom: 50px;
}
#services h2 {
  font-size: 55px;
  line-height: 70px;
  display: block;
  margin-bottom: 13px;
}
.bg-image-bot {
  background-image: url(../image/crypto-trading-bot-development/Crypto-Trading-Bot-banner.jpg);
}
.bot-development-container {
  position: relative;
  z-index: 1;
}
#bot-development .section-title h2 {
  color: #fff;
}
#bot-development .section-title p {
  color: #fff;
}
#bot-development .bot-box {
  padding: 20px 70px;
}
#bot-development .bot-dev-section img {
  width: 90px;
  height: 90px;
  padding: 10px 0;
}
#bot-development .bot-dev-section h3 {
  padding: 10px 0;
  color: #ffffff;
}
#bot-development .bot-dev-section p {
  padding: 10px 0;
}
#services .card {
  padding: 40px 40px;
  background-color: #f3f3f5;
  border-radius: 10px;
  min-height: 370px;
  height: 100%;
}
#services .pad-none {
  margin-bottom: 20px;
}
#services .card img {
  width: 20%;
  border-radius: 50%;
}
#services .card-body h4 {
  font-size: 26px;
  font-weight: 800;
  padding: 15px 0 10px 0;
  line-height: 40px;
}
.wallet-banner {
  background: url(../image/multi-currency-wallet/CryptoWallet-Development-banner.jpg);
}
.bg-grey {
  background-color: #f3f3f5;
}
.consulting-banner {
  background-image: url(../image/services-banner/Blockchain-consulting-services.jpg);
}
.solution-enhance {
  background-color: var(--dark-text);
}
.solution-enhance .sticky {
  position: sticky;
  top: 0;
}
.solution-enhance .enhance-title {
  padding-right: 60px;
  padding-top: 100px;
}
.solution-enhance .enhance-title h2 {
  color: var(--white);
  font-size: 50px;
  font-weight: 700;
  line-height: 70px;
}
.solution-enhance .enhance-title p {
  color: #a7a7a7;
}
.solution-enhance .enhance-card {
  background: #212226;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  -webkit-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
  border-bottom: 4px solid transparent;
  -o-border-image: -o-linear-gradient(left, #775aea 30%, var(--orange-color));
  border-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(30%, #775aea),
    to(var(--orange-color))
  );
  border-image: linear-gradient(90deg, #775aea 30%, var(--orange-color));
  border-image-slice: 1;
  width: 100%;
}
.solution-enhance .enhance-card .enhance-img img {
  width: 60px;
}
.solution-enhance .enhance-card h3 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 35px;
  color: var(--white);
}
.solution-enhance .enhance-card p {
  font-size: 16px;
  line-height: 30px;
  color: #a7a7a7;
}
.blockchain-bg {
  background-image: url(../image/services-banner/Blockchain-development-services_2.png);
}
.realestate-bg {
  background-image: url("../image/realestate-token/Real-Estate-Tokenization.jpg");
}
.about-content .aboutbg-grid {
  --tw-gradient-to: transparent;
  --tw-gradient-from: #a18bf5;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, hsla(0, 0%, 100%, 0));
  background-image: radial-gradient(closest-side, var(--tw-gradient-stops));
  position: absolute;
  width: 30%;
  height: 100%;
  top: 0;
}
.about-content .aboutbg-grid .aboutinner-grid {
  background: url(../image/about-us/about-grid.svg) top -1px center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.dark-section {
  background: var(--dark-text);
}
.dark-section .about-content .aboutbg-grid {
  width: 100% !important;
  --tw-gradient-from: #8d7ad759;
}
.dark-section .about-content .aboutbg-grid .aboutinner-grid {
  background: url(../image/grid-bg.svg) top -1px center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.dark-section h2 {
  color: var(--white);
  text-align: center;
}
.dark-section .card {
  background-color: #212226 !important;
  color: var(--white);
}
.defi-banner {
  background-image: url(../image/services-banner/DeFi-Development-services.jpg) !important;
}
.launchpad-banner {
  background-image: url(../image/services-banner/LaunchPad.jpg) !important;
}
.product-view .luncpadicon {
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}
.product-view .luncpadicon img {
  width: 60px;
  height: 60px;
  margin: 0 auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.product-view .luncpadicon h4 {
  padding-top: 30px;
  margin: 2px;
}
.crow-fund:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 13%;
  background-color: var(--dark-text) !important;
}
.smart-banner {
  background-image: url(../image/services-banner/Smart-contract-services.jpg) !important;
}
.hybrid-section {
  background-color: #ffffff;
}
.hybrid-section h2 {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: var(--dark-text);
}
.hybrid-section p {
  color: var(--para-text);
  line-height: 28px;
  margin: 10px 0;
  font-size: 16px;
}
.solution-product h2 {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  color: var(--dark-text);
  margin-bottom: 30px;
}
.solution-product .product-card {
  padding: 20px 10px;
}
.solution-product .product-card h3 {
  font-weight: 600;
  font-size: 23px;
  margin-top: 30px;
  line-height: 35px;
  color: var(--dark-text);
  margin: 0;
  padding-bottom: 10px;
  width: 83%;
}
.solution-product .product-card .product-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  position: relative;
  top: -27px;
}
.solution-product .product-card .product-line {
  border-bottom: 2px solid var(--orange-color);
  border-bottom: 4px solid transparent;
  -o-border-image: -o-linear-gradient(left, #775aea 30%, var(--orange-color));
  border-image: -webkit-gradient(
    linear,
    left top,
    right top,
    color-stop(30%, #775aea),
    to(var(--orange-color))
  );
  border-image: linear-gradient(90deg, #775aea 30%, var(--orange-color));
  border-image-slice: 1;
  width: 100%;
}
.solution-product .product-card .product-img {
  width: 100px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  right: 0;
  border: 4px solid transparent;
  background: #fff;
  background-clip: padding-box;
  border-radius: 50px;
}
.solution-product .product-card .product-img img {
  width: 35px;
  height: 35px;
}
.solution-product .product-card .product-img::after {
  content: "";
  position: absolute;
  top: -5px;
  bottom: -5px;
  left: -5px;
  right: -5px;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(var(--orange-color)),
    color-stop(91%, #775aea)
  );
  background: -o-linear-gradient(left, var(--orange-color), #775aea 91%);
  background: linear-gradient(90deg, var(--orange-color), #775aea 91%);
  z-index: -1;
  border-radius: 50px;
}
.dapps-bg {
  background-image: url(../image/services-banner/Dapps-fullview.jpg);
}
.nft-banner {
  background-image: url(../image/services-banner/NFT-Development-services.jpg) !important;
}
.about-dark {
  background: var(--white) !important;
}
.about-dark .aboutend-grid {
  --tw-gradient-to: transparent;
  --tw-gradient-from: #a18bf5;
  --tw-gradient-stops: var(--tw-gradient-from),
    var(--tw-gradient-to, hsla(0, 0%, 100%, 0));
  background-image: radial-gradient(closest-side, var(--tw-gradient-stops));
  right: 0;
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.about-dark .aboutend-grid .aboutend-grid-img {
  background: url(../image/about-us/about-grid.svg) top -1px center;
  position: absolute;
  width: 100%;
  height: 100%;
}
.solution-gradient .gradient-title,
.solution-gradient .gradient-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.solution-gradient h2 {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  color: var(--dark-text);
  margin-bottom: 30px;
}
.solution-gradient .container {
  position: relative;
}
.solution-gradient .graident-card {
  background: -o-linear-gradient(left, rgba(40, 26, 100, 0), #775aea 85%),
    -o-linear-gradient(315deg, #4d3d87, #ac96fd);
  background: linear-gradient(90deg, rgba(40, 26, 100, 0), #775aea 85%),
    linear-gradient(135deg, #4d3d87, #ac96fd);
  border-radius: 10px;
  padding: 40px;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: 3s ease-in-out;
  -o-transition: 3s ease-in-out;
  transition: 3s ease-in-out;
  color: #fff;
  height: 100%;
}
.solution-gradient .graident-card h3 {
  font-weight: 600;
  font-size: 26px;
  margin-top: 30px;
  margin-bottom: 20px;
  line-height: 35px;
  color: var(--white);
}
.solution-gradient .graident-card p {
  font-size: 16px;
  line-height: 30px;
}
.solution-table h2 {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  color: var(--dark-text);
  margin-bottom: 30px;
}
.solution-table tr {
  background-color: #f7f5ff;
  border: 1px solid #775aea;
}
.solution-table table th:first-child,
.solution-table table td:first-child {
  border-right: 1px solid #775aea;
}
.solution-table th {
  text-align: center;
  padding: 20px 20px;
  font-size: 18px;
}
.solution-table td {
  padding: 20px 20px;
  font-size: 16px;
  line-height: 30px;
  color: var(--para-text);
}
.solution-table td i {
  padding-right: 10px;
}
.bg-image {
  background-image: url(../image/services-banner/End-to-End-blockchain-development.jpg);
}
.financial-bg {
  background-image: url(../image/solutions/solution-bg/finance-banner.jpg);
}
.enhanced-solutions {
  background-color: var(--dark-text);
}
.enhanced-solutions .section-title h2 {
  color: var(--white);
}
.enhanced-solutions .section-title p {
  font-size: 20px;
  color: #a7a7a7;
  line-height: 40px;
  margin: 10px 0;
}
.enhanced-solutions .enhanced-card {
  padding: 30px;
}
.enhanced-solutions .enhanced-card h3 {
  color: var(--white);
  font-weight: bold;
  font-size: 21px;
  margin: 0;
  line-height: 37px;
  margin: 10px 0;
}
.enhanced-solutions .enhanced-card p {
  font-size: 16px;
  color: white;
  line-height: 30px;
  margin: 10px 0;
}
.enhanced-solutions .enhanced-card .card-gif img {
  width: 150px;
  height: 150px;
}
.benefits-solution .benefits-gradient {
  background: linear-gradient(
    178deg,
    rgba(119, 90, 234, 0.4196078431),
    rgba(255, 98, 71, 0.4196078431)
  );
  border-radius: 20px;
  padding: 30px 0;
  position: relative;
}
.benefits-solution .benefits-bg {
  position: absolute;
  right: 87px;
  top: -56px;
}
.benefits-solution .benefits-list {
  padding: 0 30px 30px 0;
}
.benefits-solution .benefits-list h3 {
  color: #41374e;
  font-size: 21px;
  margin: 0;
  line-height: 37px;
  margin: 10px 0;
  font-weight: 800;
}
.benefits-solution .benefits-list p {
  font-size: 16px;
  color: var(--dark-text);
  line-height: 30px;
  margin: 10px 0;
  font-weight: 500;
}
.finacial-solutions {
  background-image: url("../image/solutions/soluiton-icons/office-back.jpg");
  width: 100%;
  background-size: cover;
}
.finacial-solutions h2 {
  color: #ffffff;
}
.finacial-solutions .section-para p {
  font-size: 20px;
  color: var(--white);
  line-height: 40px;
  margin: 10px 0;
}
.finacial-solutions .finacial-list {
  background-color: #323339;
  position: relative;
  overflow: hidden;
  margin: auto;
  color: var(--white);
  padding: 30px;
  height: 100%;
}
.finacial-solutions .finacial-list .line-top {
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
}
.finacial-solutions .finacial-list .line {
  background-color: #333;
  position: absolute;
}
.finacial-solutions .finacial-list .line span {
  background-color: #e3e3e3;
  position: inherit;
  display: block;
  transition: all 0.4s ease-out;
}
.finacial-solutions .finacial-list .line-top span {
  top: inherit;
  left: inherit;
  width: 0;
  height: 100%;
}
.finacial-solutions .finacial-list .line-right {
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
}
.finacial-solutions .finacial-list .line-right span {
  top: inherit;
  right: inherit;
  width: 100%;
  height: 0;
}
.finacial-solutions .finacial-list .line-bottom {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
}
.finacial-solutions .finacial-list .line-bottom span {
  right: inherit;
  bottom: inherit;
  width: 0;
  height: 100%;
}
.finacial-solutions .finacial-list .line-left {
  left: 0;
  bottom: 0;
  width: 2px;
  height: 100%;
}
.finacial-solutions .finacial-list .line-left span {
  left: inherit;
  bottom: inherit;
  width: 100%;
  height: 0;
}
.finacial-solutions .finacial-list .finacial-content .finacial-img {
  display: inline-flex;
  margin-bottom: 10px;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
}
.finacial-solutions .finacial-list:hover .line-top span {
  width: 100%;
}
.finacial-solutions .finacial-list:hover .line-right span {
  height: 100%;
}
.finacial-solutions .finacial-list:hover .line-bottom span {
  width: 100%;
}
.finacial-solutions .finacial-list:hover .line-left span {
  height: 100%;
}
.finacial-solutions .finacial-list .finacial-content h3 {
  color: var(--white);
  font-weight: bold;
  font-size: 21px;
  margin: 0;
  line-height: 37px;
  margin: 10px 0;
}
.finacial-solutions .finacial-list .finacial-content p {
  font-size: 16px;
  color: white;
  line-height: 30px;
  margin: 10px 0;
}
.wedo-solutions {
  background-color: #f3f3f5;
}
.wedo-solutions .section-title h2 {
  display: block;
  font-size: 48px;
  font-weight: 700;
  line-height: 70px;
  color: var(--dark-text);
  margin-bottom: 30px;
}
.wedo-solutions .wedo-card {
  background-color: var(--white);
  color: var(--dark-text);
  padding: 30px;
  border-radius: 20px;
  height: 100%;
}
.wedo-solutions .wedo-card .card-img {
  display: inline-flex;
  margin-bottom: 10px;
  text-align: left;
  position: relative;
  left: 0;
  justify-content: flex-start;
  align-items: flex-start;
}
.wedo-solutions .wedo-card h3 {
  color: var(--dark-text);
  font-weight: bold;
  font-size: 21px;
  margin: 0;
  line-height: 37px;
  margin: 10px 0;
}
.wedo-solutions .wedo-card p {
  font-size: 16px;
  color: var(--dark-text);
  line-height: 30px;
  margin: 10px 0;
}
.ecommerce-bg {
  background-image: url("../image/solutions/solution-bg/e-commerce-banner.jpg");
}
.healthcare-bg {
  background-image: url(../image/solutions/solution-bg/healthcare-bg.jpg);
}
.insurance-bg {
  background-image: url(../image/solutions/solution-bg/insurance-bg.jpg);
}
.supplychain-bg {
  background-image: url(../image/solutions/solution-bg/supplychain-bg.jpg);
}
.reward-bg {
  background-image: url(../image/solutions/solution-bg/rewards-bg.jpg);
}
.socialmedia-bg {
  background-image: url(../image/solutions/solution-bg/social-media-bg.jpg);
}
.gaming-bg {
  background-image: url(../image/solutions/solution-bg/gaming-banner.jpg);
}
.digital-identity-bg {
  background-image: url(../image/solutions/solution-bg/digital-identity-bg.jpg);
}
.education-bg {
  background-image: url(../image/solutions/Solutions_education.jpg);
}
.solutions-bg {
  background-image: url(../image/consultation/banner-consulting.jpg);
}
.team-content h2 {
  color: var(--dark-text);
  font-size: 40px;
  font-weight: 800;
  line-height: 70px;
}
.team-content p {
  color: var(--para-text);
  line-height: 35px;
  margin: 10px 0;
  font-size: 18px;
  margin-bottom: 30px;
}
.team-content .aboutbtn {
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-weight: 400;
  border: 1px solid transparent;
  background: linear-gradient(100deg, #775aea 30%, var(--orange-color));
  font-size: 16px;
  line-height: 35px;
}

.team-content .aboutbtn:focus {
  border: none !important;
}

.team-content .aboutbtn:hover {
  background: var(--orange-color);
  color: #fff;
}

.team-content .aboutbtn a {
  color: #fff;
  text-decoration: none;
}
#team .experts {
  height: 100%;
}
#team .card {
  border: none;
  background: #ffffff;
}
#team .experts .card .card-body {
  padding: 60px 30px;
}
#team .card-body img {
  border-radius: 50%;
  width: 60%;
}
#team .experts .card .card-body .card-title {
  font-weight: bold;
}
#team .experts .card .card-body i {
  font-size: 35px;
}
#tem li {
  list-style: none;
}
#form .contact-form-md {
  position: relative;
  background-color: transparent;
  width: 100%;
  margin: 0 auto;
}
#form .contact-form-md h2 {
  font-size: 45px;
  font-weight: 700;
  line-height: 70px;
  padding: 20px 0;
  color: #fff;
  padding-top: 0px;
  margin-top: 0px;
}
iframe.calendly-inline-widget {
  min-width: 600px;
  height: 579px;
  background-color: #2d2e36;
  z-index: 10000;
}
.contact-hidden .hidden {
  display: none;
}

.notfound-page {
  padding-top: 90px;
  background-color: #fafbfc;
  display: flex;
  align-items: center;
  min-height: 100vh;
}

.notfound-page .notfound-color {
  background-color: #8467f3;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 70%;
  margin: 0 auto;
}

.notfound-page .notfound-grid {
  display: grid;
}

.notfound-page .grid-flow-col {
  grid-auto-flow: column;
}

.notfound-page .gap-px {
  gap: 1px;
}

.notfound-page .mb-01 {
  margin-bottom: 1px;
}

.notfound-page .bg-color {
  background-color: #fff;
}

.notfound-page .pb-100 {
  padding-bottom: 100%;
}

.notfound-page .z-10 {
  z-index: 10;
}

.notfound-page .notfound-animation {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),
    var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  -webkit-animation: errorPage-numberBox 3s ease-in-out infinite;
  animation: errorPage-numberBox 3s ease-in-out infinite;
}

.notfound-page .notfound-animationbox {
  box-shadow: 0 0 0 1px hsla(0deg, 0%, 100%, 0);
  -webkit-animation: errorPage-numberBox-border 3s ease-in-out infinite;
  animation: errorPage-numberBox-border 3s ease-in-out infinite;
  background: #8a6ff3;
}

.notfound-page .notfound-animation2,
.notfound-page .notfound-animationbox2 {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.notfound-page .notfound-animation3,
.notfound-page .notfound-animationbox3 {
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}

.notfound-page .absolute {
  position: absolute;
}

.notfound-page .top-0 {
  top: 0;
}

.notfound-page .left-0 {
  left: 0;
}

.notfound-page .w-100 {
  width: 100%;
}

.notfound-page .h-100 {
  height: 100%;
}

.notfound-page .notfound-gradient {
  background: radial-gradient(
    ellipse farthest-side,
    rgba(250, 251, 252, 0) 0%,
    rgba(250, 251, 252, 0) 50%,
    #fafbfc 100%
  );
}

.notfound-page .notfound-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.notfound-page .notfound-content h2 {
  font-weight: 800;
  font-size: 70px;
  color: #8a6ff3;
}

.notfound-page .notfound-content p {
  font-size: 20px;
  color: var(--para-text);
  line-height: 2;
}

.notfound-page .notfound-content button {
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-weight: 400;
  border: 1px solid transparent;
  background: linear-gradient(100deg, #775aea 30%, var(--orange-color));
  font-size: 16px;
  border: 0;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}

.notfound-page .notfound-content button i {
  padding-right: 10px;
}

@-webkit-keyframes errorPage-numberBox {
  50% {
    box-shadow: var(--numberBoxShadow);
  }
}

@keyframes errorPage-numberBox {
  50% {
    box-shadow: var(--numberBoxShadow);
  }
}

@-webkit-keyframes errorPage-numberBox-border {
  50% {
    box-shadow: var(--numberBoxBorder);
    background: var(--numberBoxBackground);
  }
}

@keyframes errorPage-numberBox-border {
  50% {
    box-shadow: var(--numberBoxBorder);
    background: var(--numberBoxBackground);
  }
}

@media (min-width: 320px) and (max-width: 599.98px) {
  .notfound-page .notfound-color {
    width: 100%;
  }
  .notfound-page .notfound-content h2 {
    font-size: 40px;
  }
}

.privacy-header {
  background-image: url(../image/about-us/about-bg.svg);
  background-color: var(--dark-text);
  color: var(--white);
  padding: 110px 0 40px 0;
  background-position: top;
}
.privacy-header h1 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
}
.privacy-content p {
  color: var(--para-text);
  line-height: 35px;
  font-size: 16px;
}
.privacy-content h2 {
  font-weight: 600;
  font-size: 30px;
  margin-top: 30px;
  line-height: 35px;
}
.privacy-content ul li {
  color: var(--para-text);
  line-height: 35px;
  font-size: 16px;
  list-style: disc;
}

.success-page {
  padding-top: 110px;
  background-color: #fafbfc;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  flex-direction: column;
}

.success-page .success-color {
  background-color: #8467f3;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.success-page .success-grid {
  display: grid;
}

.success-page .grid-flow-col {
  grid-auto-flow: column;
}

.success-page .gap-px {
  gap: 1px;
}

.success-page .mb-01 {
  margin-bottom: 1px;
}

.success-page .bg-color {
  background-color: #fff;
}

.success-page .pb-100 {
  padding-bottom: 100%;
}

.success-page .z-10 {
  z-index: 10;
}

.success-page .success-animation {
  --tw-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  box-shadow: var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),
    var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)), var(--tw-shadow);
  -webkit-animation: errorPage-numberBox 7s ease-in-out infinite;
  animation: errorPage-numberBox 7s ease-in-out infinite;
}

.success-page .success-animationbox {
  box-shadow: 0 0 0 1px hsla(0deg, 0%, 100%, 0);
  -webkit-animation: errorPage-numberBox-border 7s ease-in-out infinite;
  animation: errorPage-numberBox-border 7s ease-in-out infinite;
  background: #8a6ff3;
}

.success-page .success-animation,
.success-page .success-animationbox {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

.success-page .success-animation2,
.success-page .success-animationbox2 {
  -webkit-animation-delay: 7.5s;
  animation-delay: 7.5s;
}

.success-page .success-animation3,
.success-page .success-animationbox3 {
  -webkit-animation-delay: 8s;
  animation-delay: 8s;
}

.success-page .success-animation4,
.success-page .success-animationbox4 {
  -webkit-animation-delay: 8.5s;
  animation-delay: 8.5s;
}

.success-page .success-animation5,
.success-page .success-animationbox5 {
  -webkit-animation-delay: 9s;
  animation-delay: 9s;
}

.success-page .success-animation6,
.success-page .success-animationbox6 {
  -webkit-animation-delay: 9.5s;
  animation-delay: 9.5s;
}

.success-page .success-animation7,
.success-page .success-animationbox7 {
  -webkit-animation-delay: 10s;
  animation-delay: 10s;
}

.success-page .absolute {
  position: absolute;
}

.success-page .top-0 {
  top: 0;
}

.success-page .left-0 {
  left: 0;
}

.success-page .w-100 {
  width: 100%;
}

.success-page .h-100 {
  height: 100%;
}

.success-page .success-gradient {
  background: radial-gradient(
    ellipse farthest-side,
    rgba(250, 251, 252, 0) 0%,
    rgba(250, 251, 252, 0) 50%,
    #fafbfc 100%
  );
}

.success-page .success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
}

.success-page .success-content .success-icon {
  width: 70px;
  height: 70px;
  background-color: #775aea;
  border-radius: 50%;
  display: flex;
  align-items: center;
  /* margin: 0 auto; */
  justify-content: center;
  margin-bottom: 30px;
}

.success-page .success-content .success-icon i {
  color: var(--white);
  font-size: 40px;
}

.success-page .success-content p {
  font-size: 20px;
  color: var(--para-text);
  line-height: 2;
}

.success-page .success-content button {
  min-width: 170px;
  height: 50px;
  color: #fff;
  font-weight: 400;
  border: 1px solid transparent;
  background: linear-gradient(100deg, #775aea 30%, var(--orange-color));
  font-size: 16px;
  border: 0;
  border-radius: 5px;
  margin-top: 20px;
  cursor: pointer;
}

.success-page .success-content button a {
  color: var(--white);
  text-decoration: none;
  font-size: 16px;
}

.success-page .success-content button a i {
  padding-right: 10px;
}

.grecaptcha-badge {
  visibility: hidden;
}

.title-footer {
  font-size: 21px;
  font-weight: 600;
  line-height: 30px;
  color: #ffffff;
}

.text-content-footer {
  font-size: 17px;
  line-height: 32px;
  color: #63656d;
}

.text-content-footer1 {
  font-size: 17px;
  line-height: 32px;
  font-weight: 600;
  color: #ffffff;
}

.social-footer a {
  margin-right: 10px;
}

.social-footer a:last-child {
  margin-right: 0;
}

.btn-about {
  background: linear-gradient(to right, #0a97fa, #34ffe7);
  color: #fff;
  border-radius: 36px;
  border: none;
  padding: 16px 30px;
  font-size: 18px;
  line-height: 28px;
}

.title-mail {
  color: #fff;
  font-weight: 600;
  font-size: 50px;
  line-height: 60px;
  text-align: center;
}

.text-content-mail {
  font-size: 17px !important;
  line-height: 32px !important;
  margin: 30px 0 50px 0 !important;
}

.enquiry {
  padding: 0;
  background-color: unset;
}

.enquiry form input {
  border-radius: 29px;
  background-color: #ffffff1a;
  border: none;
}

.select-code {
  border-top-left-radius: 29px;
  border-bottom-left-radius: 29px;
  background-color: #ffffff1a !important;
  border: none !important;
}

.select-code select {
  background-color: transparent !important;
}

.enquiry select {
  border-radius: 29px;
  background-color: #ffffff1a;
  border: none;
}

.input-phone {
  border-top-right-radius: 29px;
  border-bottom-right-radius: 29px;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.enquiry form textarea {
  background-color: #ffffff1a;
  border: none;
  border-radius: 12px;
  margin-bottom: 30px;
}

.tech-partners h4 {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 60px;
}

.text-gray {
  color: #b6b7bd !important;
}

.form-gutter {
  margin-top: 100px;
}

.mt-12 {
  margin-top: 48px !important;
}

.text-title {
  color: #0d0f18 !important;
  font-weight: 600 !important;
  font-size: 60px !important;
  line-height: 78px !important;
}

.text-content {
  font-size: 18px !important;
  line-height: 36px !important;
}

.text-name {
  font-size: 26px !important;
  line-height: 38px !important;
  font-weight: 600;
}

.text-detail {
  color: #3a3c44 !important;
  font-weight: 500 !important;
  text-align: left !important;
  font-size: 18px !important;
  line-height: 28px !important;
  margin-top: 15px;
}

.why-choose {
    background: #1a1919;
    overflow-x: hidden;
  }
  
  .why-choose .choose-content {
    margin-bottom: 45px;
  }
  
  .why-choose .choose-content p {
    font-size: 18px;
    line-height: 36px;
    color: #ffffff;
  }
  
  .choose-list .choose-list-one,
  .choose-list-two,
  .choose-list-three,
  .choose-list-four {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
  .choose-list .choose-element {
    background: #000000;
    border-radius: 47px;
    padding: 10px 20px;
    text-align: center;
    margin-right: 8px;
    margin-bottom: 10px;
  }
  
  .choose-list .choose-element span {
    background: linear-gradient(to right, #0a97fa, #34ffe7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 18px;
    line-height: 28px;
  }
  
  .choose-list .choose-element:last-child {
    margin-right: 0px;
  }

  .tech-partners .highway-slider .highway-lane .highway-car {
    background: transparent;
  }
  
  .tech-partners #infinite .highway-barrier::before {
    background: unset;
  }
  
  .tech-partners #infinite .highway-barrier::after {
    background: unset;
  }

@media (max-width: 991px) {
  .navbar-bitprotos {
    background-color: #000000;
    max-height: 100%;
    overflow: auto;
  }
  .navbar-bitprotos .navbar-toggler:focus {
    border: none;
    box-shadow: none;
  }
  .navbar-bitprotos .navbar-collapse {
    padding-bottom: 20px;
  }
  .navbar-bitprotos .nav-item {
    padding: 0px;
  }
  .navbar-bitprotos .nav-item .nav-link {
    color: #b6b7bd;
    padding: 10px;
  }
  .navbar-bitprotos .nav-item .nav-link.active {
    color: #34ffe7;
  }
  .navbar-bitprotos .nav-item .nav-link.active:before {
    height: 0;
    width: 0;
  }
  .navbar-bitprotos .logo-light {
    display: none;
  }
  .navbar-bitprotos .logo-dark {
    display: block;
  }
  .navbar-bitprotos .nav-link.btn-nav {
    background-color: var(--orange-color);
    color: #ffffff;
  }
  .banner-section h1 {
    font-size: 30px;
  }
  .banner-section p {
    font-size: 16px;
    line-height: 32px;
  }
  .friction-section h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .friction-section p {
    font-size: 16px;
    line-height: 30px;
  }
  .newservices-section h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .newservices-section .title-para {
    font-size: 16px;
    line-height: 30px;
  }
  .newsletter .benigitsbg {
    display: none;
  }
  .solutions-section h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .development-stage h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .why-choose .left-choose-list,
  .why-choose .right-choose-list {
    display: none;
  }
  .why-choose .center-choose-content {
    width: 100%;
    padding: 0 15px;
  }
  .why-choose .center-choose-content h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .testimonials-section h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .feature-blog h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .newsletter .subscribtionform {
    padding: 30px 15px;
  }
  .faq-section h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .nft-section .main-title,
  .nft-section h1 {
    font-size: 30px;
    line-height: 40px;
  }
  .section-title h2,
  .section-title span {
    font-size: 30px;
    line-height: 40px;
  }
  #services h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .product-view .productview-img .gradient-circle {
    width: 100%;
    position: relative;
  }
  .product-view .productview-img .webimage {
    position: absolute;
    top: 120px;
    left: 0;
  }
  .product-view .productview-content {
    margin: 30px 0px;
  }
  .product-view h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .product-view:after {
    display: none;
  }
  .nft-section h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .solution-enhance .enhance-title {
    position: relative;
    padding: 0;
  }
  .solution-enhance .enhance-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .benefits-solution .benefits-bg {
    display: none;
  }
  .wedo-solutions .section-title h2 {
    font-size: 30px;
    line-height: 40px;
  }
  .enquiry {
    padding: 50px 15px;
  }
  .development-stage .dotted-line,
  .development-stage .dotted-line1,
  .development-stage .dotted-line2,
  .development-stage .dotted-line3,
  .development-stage .dotted-line4 {
    display: none;
  }
  .text-title {
    color: #0d0f18 !important;
    font-weight: 600 !important;
    font-size: 40px !important;
    line-height: 58px !important;
  }

}
