@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");

:root {
  --primary: #00fe8a;
  --primary-hover: #00cc70;
  --secondary: linear-gradient(
    90deg,
    rgba(79, 126, 255, 1) 0%,
    rgb(100 57 255) 100%
  );
  --secondary-hover: #673ad9;
  --white-color: #ffffff;
  --black-color: #000000;
  --grey-color-1: #333333;
  --text-color: #475467;
  --body-bg: #fff;
  --border-color-1: #ebedef;
  --border-color-2: #cacacb;
  --font-family-base: "Plus Jakarta Sans", sans-serif;
  --font-family-title: "Plus Jakarta Sans", sans-serif;
  --font-family-inter: "Plus Jakarta Sans", sans-serif;
  --transition: all 300ms ease;
  --gradient: #8757fe;
  --gradient-2: linear-gradient(88.71deg, #232323 1.15%, #0b2f22 50.85%);
  --gradient-3: linear-gradient(90deg, #09d073 26.68%, #05a05a 76.89%);
  --star-color: #ffa200;
  --red-color: #eb5757;
  --green-color: #27ae60;
  --worning-color: #fff59f;
  --color-1: #0d0c10;
  --color-2: #2d60f0;
  --color-3: #1e1e21;
  --color-4: #131b33;
  --color-5: #213d3c;
  --color-6: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  font-size: 100%;
  line-height: inherit;
}

html,
body {
  height: 100%;
  width: 100%;
  margin: 0;
}

body {
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}

a {
  color: var(--color-2);
  position: relative;
  cursor: pointer;
  text-decoration: none;
  -webkit-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  -moz-transition: var(--transition);
  transition: var(--transition);
}

a:hover {
  color: #ebe6e6;
}

p {
  color: var(--black-color);
  margin: 0;
}

button {
  outline: none !important;
  cursor: pointer;
}

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

button,
a:hover,
a:focus,
a:visited,
a:active,
button:active {
  text-decoration: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-family: var(--font-family-title);
  font-weight: 600;
  margin-top: 0;
  margin-bottom: 15px;
  line-height: initial;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

ol,
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

input,
select,
button {
  font-family: var(--font-family-base);
}

textarea {
  overflow: hidden;
  resize: none;
}

iframe {
  border: none !important;
  display: block;
  width: 100%;
}

section {
  position: relative;
}

main {
  position: relative;
  width: 100%;
  display: block;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 55px;
  line-height: 71px;
}

@media only screen and (max-width: 1400px) {
  h2 {
    font-size: 46px;
    line-height: normal;
  }
}

@media only screen and (max-width: 568px) {
  h2 {
    font-size: 36px;
  }
}

h3 {
  font-size: 40px;
  line-height: normal;
}

h4 {
  font-size: 32px;
  line-height: normal;
}

h5 {
  font-size: 24px;
  line-height: normal;
}

h6 {
  font-size: 20px;
  line-height: normal;
}

.button-style {
  display: inline-block;
  vertical-align: top;
  padding: 15px 30px;
  border-radius: 10px;
  border: 1px solid var(--gradient);
  background: var(--gradient);
  color: var(--white-color);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  z-index: 5;
  overflow: hidden;
  /* text-transform: capitalize;   */
}

.button-style-star img {
  margin-left: 15px;
}

/* .button-style:hover {
    background: var(--secondary-hover);
    color: var(--white-color)
} */

section,
div {
  position: relative;
}

.primary-color {
  color: var(--primary) !important;
}

.secondary-color {
  color: var(--secondary) !important;
}

.white-color {
  color: var(--white-color) !important;
}

.black-color {
  color: var(--black-color) !important;
}

.text-color {
  color: var(--text-color) !important;
}

.bg-primary {
  background-color: var(--primary) !important;
}

.bg-secondary {
  background-color: var(--secondary) !important;
}

.bg-light {
  background-color: var(--bg-light) !important;
}

.bg-dark {
  background-color: var(--dark) !important;
}

.bg-color-1 {
  background-color: var(--color-1) !important;
}

.color-yellow {
  color: var(--star-color) !important;
}

.color-green {
  color: var(--color-1) !important;
}

.color-red {
  color: var(--red-color) !important;
}

.grid-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1.5rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 1.5rem;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 1.5rem;
}

.grid-6 {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-gap: 1.5rem;
}

header.header {
  position: fixed;
  z-index: 1;
  width: 100%;
  top: 20px;
  z-index: 9;
}

header.header.sticky {
  top: 0;
  padding: 10px 0;
  background-color: #110f16;
}

.navbar .navbar-nav .nav-link {
  color: var(--color-6);
  padding: 0 15px;
  font-weight: 600;
}

.navbar .navbar-nav .nav-link:hover {
  color: #633eff;
}

.header-right-button a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 35px;
  border-radius: 100px;
  border: none;
  background: var(--gradient);
}

.login-menu {
  background: none !important;
  color: var(--color-6);
  font-weight: 600;
}

.navbar-toggler .close {
  display: none;
}

.banner-area {
    padding-top: 150px;
    padding-bottom: 138px;
    background: url(../images/banner/background-pattern.png) no-repeat;
    /* background-size: cover; */
    /* background-position: center; */
    background-position-x: center;
    z-index: 2;
}

.bg-shape-1 {
  text-align: center;
  z-index: -1;
}

.bg-shape-2 {
  position: absolute;
  border: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.bg-shape-3 {
  position: absolute;
  border: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.bg-shape-4 {
  position: absolute;
  border: 0;
  right: 0;
  top: 0;
  z-index: -1;
}

.bg-shape-5 {
  position: absolute;
  border: 0;
  left: 0;
  top: 0;
  z-index: -1;
}

.bg-shape-1 {
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.bg-shape-8 {
  position: absolute;
  border: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

.bg-shape-1 img {
  width: 1440px;
  /* height: 1440px; */
  object-fit: cover;
}

.banner-content {
  text-align: left;
  margin-bottom: 40px;
}

.banner-content h1 {
  font-size: 60px;
  color: #fff;
  font-weight: 700;
  margin-top: 25px;
}

.banner-content span {
  background: #8757fe;
  background: linear-gradient(to right, #8757fe 27%, #999999 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content h1 span .circle1 {
  top: -4px;
  left: -4px;
}

.banner-content h1 span .circle2 {
  top: -4px;
  right: -4px;
}

.banner-content h1 span .circle3 {
  bottom: -4px;
  left: -4px;
}

.banner-content h1 span .circle4 {
  bottom: -4px;
  right: -4px;
}

.banner-content p {
  font-size: 16px;
  padding-top: 20px;
  color: #fff;
  font-weight: 500;
  line-height: 31.27px;
  margin: 0 auto 0 auto;
  padding-bottom: 20px;
}

.banner-content p span {
  color: #8757fe;
  background: #8757fe;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.banner-content .form-group {
  background: #fff;
  width: 60%;
  display: flex;
  justify-content: space-between;
  padding: 7px;
  border-radius: 10px;
  margin-top: 30px;
}

.banner-content .form-group .button-style {
  padding: 5px 15px;
}

.banner-content .form-group input {
  height: 44px;
  padding: 0px 15px 0px 35px;
  font-size: 14px;
  width: inherit;
  border-radius: 10px;
}

.banner-content .emai-icon {
  position: absolute;
  top: 19px;
  left: 12px;
}

.banner-content .button-wapper a {
  /* box-shadow: 0 0 45px rgb(1 255 138 / 70%); */
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-color: #fff;
  padding: 15px 25px;
  border-radius: 60px;
  background: var(--gradient);
}

.banner-content .button-wapper .watch-video-style {
  display: inline-flex;
  align-items: center;
  color: #0e2637;
  gap: 10px;
  border: 1px solid #91989e;
  padding: 15px 25px;
  border-radius: 60px;
  background: transparent;
}

.video-box {
  border: 1px solid #6844c3;
  border-radius: 16px;
  padding: 10px;
  background-color: #15152e;
}

.main-rule {
  display: flex;
  gap: 10px;
  margin: 30px 0 30px 0;
  flex-wrap: wrap;
}

.main-rule h6 {
  font-size: 18px;
  color: #fff;
  display: flex;
  gap: 10px;
}

.button-wapper {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.shap-items1 {
  position: absolute;
  top: 90px;
  left: -130px;
}

.shap-items2 {
  position: absolute;
  bottom: -45px;
  left: 60px;
}

.shap-items3 {
  position: absolute;
  top: 90px;
  right: -130px;
}

.shap-items4 {
  position: absolute;
  bottom: -45px;
  right: 60px;
}

.shap-items1 svg,
.shap-items2 svg,
.shap-items3 svg,
.shap-items4 svg {
  width: 60px;
  height: 60px;
}

.video-box {
  /* border: 1px solid #00FE8A;
    border-radius: 16px;
    padding: 10px;
    background-color: var(--color-5) */
}

.video-box a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.what-is-area {
  background-color: #110f16;
  padding: 150px 0;
}

.what-is-area h1 {
  font-size: 43px;
  color: #fff;
}

.what-is-area p {
  font-size: 20px;
  color: #969ebd;
}

.bg-shape-8 {
  position: absolute;
  border: 0;
  left: 0;
  top: 0;
  z-index: 0;
}

.bg-shape-9 {
  position: absolute;
  border: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
}

.bg-shape-10 {
  position: absolute;
  border: 0;
  left: 180px;
  top: 50px;
  z-index: 0;
}

.bg-shape-11 {
  content: "";
  position: absolute;
  height: 340px;
  width: 340px;
  top: 0;
  left: 140px;
  background: #192d50;
  opacity: 0.9;
  border-radius: 100%;
  z-index: 0;
  filter: blur(80px);
  -webkit-filter: blur(80px);
}

.bg-shape-12 {
  position: absolute;
  border: 0;
  right: 35px;
  bottom: 0px;
  z-index: 0;
}

.postion-relative {
  position: relative;
}

.plr-50-90 {
  padding: 0 90px 0 50px;
}

.plr-30-50 {
  padding: 0 30px 0 50px;
}

.main-voice-box {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.Why-choose-area {
  padding: 50px 0;
  background-color: #111022;
}

.background-img {
    background: url(../images/why-choose/background-img.png) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 2;
    margin: 0;
}

.blue-color {
  color: #6439ff;
}

.ml-160 {
  margin-left: 160px;
}

.Why-choose-area h3 {
  font-size: 21px;
  text-align: center;
  color: #fff;
}

.Why-choose-area h3 span {
  background: #8757fe;
  background: linear-gradient(to right, #8757fe 27%, #513498 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bolder;
}

.Why-choose-area .main-box {
  background-color: #15152ed4;
  padding: 15px;
  border: 1px solid #595579;
  border-radius: 10px;
}

.Why-choose-area .main-box p {
  color: #969ebd;
  font-weight: 600;
  font-size: 19px;
}

.Why-choose-area .main-box h5 {
  color: #fff;
}

.API-area {
  padding: 80px 0;
}

.hire-area {
  background: url(../images/Hire/back-img.svg) no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 2;
  padding: 80px 0;
}

.hire-area h2 {
  color: #fff;
  text-align: center;
  font-size: 41px;
  margin-bottom: 5px;
}

.hire-area p {
  text-align: center;
  color: #969ebd;
  font-size: 16px;
  padding: 0 181px;
}

.hire-area nav {
  display: flex;
}

.hire-area .nav-tabs {
  background-color: #fff;
  margin: 30px auto;
  padding: 5px;
  border-radius: 5px;
}

.hire-area .nav-tabs .nav-link {
  padding: 8px 30px;
  color: #3b2967;
  font-weight: 600;
  border: none;
}

.hire-area .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
  background: linear-gradient(88deg, #000000 -7%, #8757fe9c 67%);
  color: #fff;
  font-weight: 700;
  border-radius: 5px;
}

.hire-area .nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent;
}

.hire-area .tab-content {
  background-color: #15152e;
  border: 1px solid #7c51e9;
  border-radius: 10px;
  padding: 30px;
  margin-top: 30px;
}

.hire-area .tab-pane p {
  padding: 0px;
  color: #969ebd;
  font-size: 20px;
  text-align: left;
  padding-bottom: 20px;
}

.hire-area .tab-pane h3 {
  font-size: 41px;
  color: #fff;
}

.hire-area .tab-pane .button-style {
  padding: 10px 20px;
}

.case-study-area .industry-left {
  color: #fff;
  padding-right: 70px;
}

.case-study-area .industry-left img {
  margin: 45px 0;
}

.case-study-area .industry-left h5 {
  font-size: 16px;
  margin-bottom: 5px;
}

.case-study-area .industry-left h6 {
  font-size: 24px;
}

.case-study-area .industry-left p {
  font-size: 16px;
  color: #969ebd;
}

.case-study-area {
  padding: 80px 0;
  background-color: #110f16;
}

.case-study-area h4 {
  font-size: 20px;
  text-align: center;
  color: #fff;
}

.case-study-area h3 {
  font-size: 41px;
  text-align: center;
  color: #fff;
}

.case-study-area h4 span {
  background: #8757fe;
  background: linear-gradient(to right, #8757fe 27%, #513498 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bolder;
}

.case-study-area .step {
  margin-top: 40px;
}

.case-study-area .step h4 {
  font-size: 20px;
  text-align: left;
  color: #969ebd;
  margin: 0px;
}

.case-study-area .line {
  border-right: 1px solid;
  padding-right: 20px;
  height: 66px;
}

.case-study-area .blue-color {
  color: #8153f3 !important;
}

.blue-line {
  background-color: #8153f3 !important;
}

.text-white {
  color: #fff;
}

.case-study-area .line-boreder {
  display: flex;
  align-items: center;
}

.case-study-area hr {
  margin: 10px 0;
  background-color: #969ebd;
  height: 3px;
}

.z-index-1 {
  z-index: 1;
}

.right-plan-area {
  background-color: #111022;
  padding: 80px 0;
}

.right-plan-area h1 {
  font-size: 43px;
  color: #fff;
}

.right-plan-area p {
  font-size: 20px;
  color: #fff;
}

.main-box-plan {
  border: 1px solid #8757fe;
  border: 1px solid #8757fe;
  border-radius: 15px;
  padding: 40px 30px;
  margin: 0;
  display: flex;
  justify-content: space-between;
  min-height: 210px;
  align-items: center;
}

.back-btn-trans {
  background-color: transparent;
}

.background-color {
  background-color: #15152e;
}

.main-box-plan h5 {
  color: #fff;
  margin-bottom: 5px;
}

.right-plan-area p {
  font-size: 16px;
}

.right-plan-area h2 {
  font-size: 30px;
  color: #fff;
}

.right-plan-area ul li {
  color: #fff;
  display: flex;
  font-size: 16px;
  margin-bottom: 6px;
  gap: 10px;
}

.background-main {
    background: url(../images/right-plan/background-img.png) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 2;
    padding: 80px 0;
    margin: -80px 0px;
}

.build-area {
    background: url(../images/Build/background-main.png) no-repeat;
    background-size: cover;
    background-position: center;
    z-index: 2;
    padding: 80px 0;
}

.heading-btn {
  background-color: #8656fc;
  padding: 10px 20px;
  display: table;
  border-radius: 15px;
  color: #fff;
  margin-bottom: 10px;
}

.build-area h1 {
  color: #fff;
  font-size: 43px;
  font-weight: bold;
}

.build-area p {
  font-size: 16px;
  color: #fff;
}

.main-btn {
  display: flex;
  gap: 25px;
  margin-top: 20px;
}

.heading-btn h5 {
  margin: 0px;
  font-size: 17px;
}

.heading-btn h5 img {
  position: relative;
  top: -2px;
  left: 9px;
}

.dollar-box {
  min-width: 170px;
  text-align: center;
}

.pr-58 {
  padding-right: 58px;
}

.bg-shape-7 {
  position: absolute;
  border: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.bg-shape-6 {
  position: absolute;
  border: 0;
  left: 0;
  top: 0;
  z-index: 1;
}

.card.loved-box {
  padding: 30px;
  border-radius: 15px;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  min-height: 500px;
}

.card.loved-box .card-body {
  display: flex;
  align-items: end;
  padding: 0px;
}

.loved-box .content-profile h6 {
  margin-bottom: 0;
  color: #000;
  font-size: 24px;
}

.loved-box h3 {
  color: #000;
  font-size: 30px;
}

.profile-content {
  display: flex;
  gap: 20px;
  align-items: center;
}

.testimonial-slider {
  padding: 0em 2em 0em;
}

.testimonial-title {
  color: #fff;
}

.testimonial-title h2 {
  padding-left: 0.2em;
}

.card {
  margin: 0 0.5em;
  box-shadow: 2px 6px 8px 0 rgba(22, 22, 26, 0.18);
  border: none;
  height: 100%;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  background-color: #1b1b3b;
  padding: 60px 0 0 0;
  background-repeat: no-repeat;
  color: var(--white-color);
  background-size: cover;
}

.footer p,
.footer a {
  color: #d0d5dd;
  text-align: left;
  align-items: center;
  display: flex;
  gap: 5px;
}

.widget-title h4 {
  font-size: 16px;
  color: #eaecf0;
  margin-bottom: 10px;
}

.widget-content ul li a {
  font-size: 14px;
}

.widget-content ul li a:hover {
  margin-left: 5px;
  color: var(--white-color);
}

.footer-widget-newsletter .widget-content form .form-group {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.footer-widget-newsletter .widget-content form .form-group input {
  height: 44px;
  padding: 15px;
  font-size: 14px;
  width: calc(100% - 23%);
  border-radius: 5px;
}

.footer-widget-newsletter .widget-content form .form-group button {
  width: auto;
  height: 44px;
  line-height: normal;
  border-radius: 5px;
  font-size: 14px;
  color: #000;
}

.footer-widget {
  margin-bottom: 60px;
}

.footer-widget-about .widget-content {
  margin-right: 70px;
}

.footer-widget-about .widget-content h6 {
  font-size: 16px;
  margin-bottom: 5px;
}

.footer-top {
  margin-bottom: 40px;
}

.socialmedia-icon {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.socialmedia-icon svg {
  width: 24px;
  height: 24px;
}

.footer-bottom .footer-bottom-social {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 20px;
  gap: 20px;
}

.footer-bottom .footer-wapper {
  border-top: 1px solid #ffffff;
  padding-top: 20px;
  padding-bottom: 20px;
}

.button-style:hover {
  background: var(--secondary-hover);
  color: #fff;
}

.pricing-button-wapper .sign-up-now-active:hover {
  background: var(--secondary-hover);
  color: #fff;
}

.banner-content .button-wapper a:hover {
  background: var(--secondary-hover);
  color: #fff;
}
