:root {
  --accent: #a96be6;
  --accent-dark: #7a3ed1;
  --muted: #6c6c6c;
  --soft: #f7f0ff;
  --bg: #fffafc;
  --rounded: 16px;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  --text: #211332;
  --text-purple: #AE3DBC;
  --text-orange: #F77B6F;
}

body {
  background: #ffffff;
  color: #222;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "poppinsregular";
  overflow-x: hidden;
}

.nav-link:focus,
.nav-link:hover {
  color: var(--text-purple) !important;
}

.navbar-nav {
  gap: 17px
}

p,
h1,
h2,
h3,
h4,
h5 {
  margin: 0px;
  padding: px0;
}

section {
  overflow: hidden;
}

/* Header */
.site-header {
  box-shadow: 0px 4px 14px rgba(0, 0, 0, 0.03);
}

.site-header .navbar {
  height: 82px;
  display: flex;
  align-items: center;
}

.navbar-toggler svg {
  width: 25px;
  height: 25px;
}

.site-header ul li a {
  color: var(--text);
  font-size: 16px !important;
  font-weight: 500;
  padding: 0px 10px !important;
  height: 42px;
  display: flex;
  align-items: center;
  font-family: "poppinsmedium" !important;
  position: relative;
}

.site-header ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--text-purple), var(--text-orange));
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

.site-header ul li a:hover::after,
.site-header ul li a.active::after {

  width: 100%;

}

.site-header .btn.btn-primary {
  width: 166px !important;
  font-size: 16px;
  font-family: "poppinssemibold" !important;
}

/* Hero */
.hero-section {
  padding-top: 30px;
  /*  background: url(../images/hero-bg.jpg) center top -80px no-repeat;*/
  background: url(../images/hero-bg.jpg) center bottom 0px no-repeat;
  background-size: cover;
  height: 1247px;
  position: relative;
  /* background-image: linear-gradient(180deg, rgba(162,116,235,0.06), rgba(248,240,255,0.4)); */
}


.hero-content {
  height: 1000px;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  width: 100%;
  max-width: 1125px;
  margin: auto;
  padding: 0 60px;
}

h1.heading-text {
  background: linear-gradient(121.14deg, var(--text-purple) 34.04%, var(--text-orange) 68.83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-family: "poppinsbold" !important;
  font-size: 56px;
  font-weight: 600;
  line-height: 135%;
}

h2.inner-title {
  font-size: 46px;
  font-family: "poppinssemibold" !important;
  line-height: 77%;
  color: var(--text);
  margin: 0px;

}

.how-wroks-section h2.inner-title {
  margin: 0px;
}

.heading-paragraph {
  font-family: "poppinsmedium" !important;
  font-size: 20px;
  color: var(--text) !important;
  padding: 0 20px;
  margin: 0px !important;
  line-height: 168%;
}

.slogun {
  border-radius: 100px;
  border: 1px solid var(--text-purple);
  width: 305px;
  height: 38px;
  display: flex;
  align-items: center;
  place-content: center;
  font-size: 16px;
  color: var(--text-purple);
  position: relative;
  padding: 0 0 0 25px;
  gap: 20px
}

.slogun:before {
  width: 300px;
  height: 20px;
  aspect-ratio: 1;
  background: var(--text-purple);
  clip-path: polygon(50% 0,
      calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
      calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))));
  content: "";
  display: flex;
  width: 16px;
  height: 16px;
  margin-left: auto;
  position: absolute;
  left: 16px;
}

.slogun .text2 {
  position: relative;
}

.slogun .text2:before {
  width: 5px;
  height: 5px;
  content: "";
  background-color: var(--text-purple);
  border-radius: 20px;
  display: flex;
  position: absolute;
  left: -13px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.header-title {
  margin: 36px 0;
}

.btn.btn-primary,
.btn-action .btn.btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  width: 180px;
  height: 56px;
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
  border-radius: 16px;
  border: 0px;
  transition: background 0.6s ease;
  font-family: 'poppinssemibold';
  position: relative;
  overflow: hidden;
  z-index: 99;
  margin: auto;
}

.team-section .btn.btn-primary,
.team-section .btn-action .btn.btn-primary {
  width: 290px !important;
}

.btn.btn-primary span,
.btn-action .btn.btn-primary span {
  z-index: 99;
  position: relative;
}

.btn.btn-primary:after,
.btn-action .btn.btn-primary:after {
  background: linear-gradient(263.01deg, var(--text-purple) 1.58%, var(--text-orange) 96.04%) !important;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 56px;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

.btn.btn-primary:hover:after,
.btn-action .btn.btn-primary:hover:after {
  width: 100%
}

.btn-action .btn.btn-outline-secondary {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 5px;
  gap: 10px;
  border: 0px;
  width: 280px;
  height: 56px;
  background: #FFFFFF;
  color: #000000;
  background: linear-gradient(white, white) padding-box, linear-gradient(to right, var(--text-orange), var(--text-purple)) border-box;
  border-radius: 16px !important;
  border: 1px solid transparent;
  transition: background 0.6s ease;
  font-family: 'poppinssemibold';
  position: relative;
  overflow: hidden
}

.btn-action .btn.btn-outline-secondary span {
  z-index: 99;
  position: relative;
}

.btn-action .btn.btn-outline-secondary:hover span {
  color: #fff !important;
}

.btn-action .btn.btn-outline-secondary:after {
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
  content: "";
  position: absolute;
  left: 0px;
  top: 0px;
  width: 0px;
  height: 56px;
  border-radius: 16px;
  transition: all 0.3s ease-in-out;
}

.btn-action .btn.btn-outline-secondary:hover:after {
  width: 100%
}

.header-paragraph {
  font-family: 'poppinsregular';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  color: #000000;
  margin-top: 16px;

}

.hero-pic .banner2 {
  margin-left: -15px;
  margin-top: 73px;
}

.ticker {
  height: 82px;
  display: flex;
  align-items: center;
  background: var(--text-purple);
  margin-top: -24px;
  z-index: 99;
  position: relative;
}

.ticker ul {
  margin: 0px;
  padding: 0px;
  list-style: none;
}

.ticker ul li {
  font-size: 30px;
  font-family: 'Inter' !important;
  color: #000000;
  margin: 0px;
  padding: 0px;
  padding: 0 50px;
  position: relative;
  display: flex;
  align-items: center;
}


.ticker ul li:after {
  width: 300px;
  height: 20px;
  aspect-ratio: 1;
  background: #000000;
  clip-path: polygon(50% 0,
      calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
      calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))));
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  margin-left: auto;
  position: absolute;
  right: -10px;
}

.carousel-container {
  height: 82px;
  display: flex;
  align-items: center;
  background: var(--text-purple);

  z-index: 99;
  position: relative;
}

.carousel-text {
  display: inline-block;
  white-space: nowrap;
  gap: 60px;
  margin: 0px;
  padding: 0px;
  list-style: none;
  animation: slide 20s linear infinite;
  height: 82px;
}

.carousel-text span {
  font-size: 30px;
  font-family: 'Inter' !important;
  color: #000000;

  position: relative;
  margin: 0 50px;
  height: 82px;
  display: inline-flex;
  align-items: center;
}

.carousel-text span:after {
  width: 300px;
  height: 20px;
  aspect-ratio: 1;
  background: #000000;
  clip-path: polygon(50% 0,
      calc(50%*(1 + sin(.4turn))) calc(50%*(1 - cos(.4turn))),
      calc(50%*(1 - sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 + sin(.2turn))) calc(50%*(1 - cos(.2turn))),
      calc(50%*(1 - sin(.4turn))) calc(50%*(1 - cos(.4turn))));
  content: "";
  display: flex;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0px;
  bottom: 0;
  margin: auto;
  right: -53px;
}

.carousel-text span:last-child:after {
  display: none;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.inner-top-block {
  margin-bottom: 70px !important;
}

.how-wroks-section {
  padding: 75px 0;
  position: relative;
}

.steps-wrapper {

  background: #ffffff;
}

.how-wroks-section:before {
  content: "";
  background: url(../images/vector1.png) no-repeat center center;
  width: 302px;
  height: 497px;
  position: absolute;
  left: -20px;
  top: 100px;
}

.how-wroks-section:after {
  content: "";
  background: url(../images/how-work-bg-vect.png) no-repeat center center / cover;
  width: 340px;
  height: 340px;
  position: absolute;
  right: -80px;
  bottom: 0px;
  background-size: contain !important;
}

.faqs-section p.text-muted,
.inner-top-block p.text-muted {
  font-size: 18px;
  line-height: 140%;
  color: #444444 !important;
  font-family: 'poppinsmedium';

}

.how-works-content h3 {
  font-size: 38px;
  line-height: 77%;
  font-family: 'poppinssemibold';
  margin-bottom: 57px;
}

.how-works-banner {
  width: 450px;
  height: 500px;
  position: relative;
}

.how-works-image-left {
  margin-bottom: 110px;
}

.how-works-banner img {
  border-radius: 24px;
}

.how-works-banner .how-works-title {
  background: #ffffff;
  padding: 13px 62px 13px 27px;
  font-size: 27px;
  line-height: 140%;
  color: var(--text-purple);
  position: absolute;
  bottom: -30px;
  left: 84px;
  border-radius: 23px 0 0 0;
  font-family: 'poppinsmedium';
  font-weight: 500;
  font-style: italic;
  width: 450px;

}

.how-works-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.steps-block-wrapper {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}



.steps-block {
  display: flex;
  flex-direction: column;
  gap: 70px;
  width: 520px;
  transition: all 0.5s ease;
}

.steps {
  display: flex;
  gap: 36px;
  position: relative;
}

.steps:after {
  height: 100%;
  width: 4px;
  content: "";
  position: absolute;
  left: 42px;
  top: 88px;
}

.steps.step-03:after {
  display: none;
}

.steps .step-count {
  min-width: 88px;
  width: 88px;
  height: 88px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  place-content: center;
  position: relative;
}

.steps .step-count img {
  display: none !important;
}


.steps .step-count span {
  width: 32px;
  height: 32px;
  border-radius: 100%;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  top: -15px;
  color: #ffffff;
  font-size: 22px;
  line-height: 77%;
  display: flex;
  align-items: center;
  place-content: center;
}

.steps .steps-content h4 {
  font-size: 25px;
  line-height: 100%;
  color: #000000;
  font-family: 'poppinssemibold';
  margin: 0 0 16px;
  padding: 0px;
}

.steps .steps-content p {
  font-size: 18px;
  line-height: 140%;
  color: #444444;
  font-family: 'poppinsregular';
  margin: 0 0 16px;
  padding: 0px;
}


.steps-for-users .how-works-content h3 {
  color: var(--text-purple);
}

.steps-for-users .steps .step-count {
  background-color: #F0E4F7;
}

.steps-for-users .steps:after {
  background-color: #F0E4F7;
}

.steps-for-users .steps.active:after {
  background: var(--text-purple);
}

.steps-for-users .steps .step-count span {
  border: 1px solid var(--text-purple);
  background: var(--text-purple);
}

.steps-for-users .steps.active .step-count {
  background-color: var(--text-purple);
}

.steps-for-users .steps.active .step-count span {
  background-color: #ffffff;
  color: var(--text-purple);
}

.steps-for-users .steps.step-01 .step-count {
  background: #F0E4F7 url(../images/icon/icon-search.png) center center no-repeat;
  transition: all 0.3s ease-in-out;
}

.steps-for-users .steps.step-02 .step-count {
  background: #F0E4F7 url(../images/icon/icon-pay.png) center center no-repeat;
  transition: all 0.3s ease-in-out;
}

.steps-for-users .steps.step-03 .step-count {
  background: #F0E4F7 url(../images/icon/icon-trace.png) center center no-repeat;
  transition: all 0.3s ease-in-out;
}

.steps-for-users .steps.step-01.active.visible .step-count {
  background: var(--text-purple) url(../images/icon/icon-search-white.png) center center no-repeat;
}

.steps-for-users .steps.step-02.active.visible .step-count {
  background: var(--text-purple) url(../images/icon/icon-pay-white.png) center center no-repeat;
}

.steps-for-users .steps.step-03.active.visible .step-count {
  background: var(--text-purple) url(../images/icon/icon-trace-white.png) center center no-repeat;
}


.steps-for-business .how-works-content h3 {
  color: var(--text-orange);
}

.steps-for-business .steps .step-count {
  background: #FFEBE9;
}

.steps-for-business .steps:after {
  background: #FFEBE9;
}

.steps-for-business .steps.active:after {
  background: var(--text-orange);
}

.steps-for-business .steps .step-count span {
  border: 1px solid var(--text-orange);
  background: var(--text-orange);
}

.steps-for-business .steps.active .step-count {
  /* background: var(--text-orange); */
}

.steps-for-business .steps.step-01 .step-count {
  background: #FFEBE9 url(../images/icon/icon-search-orange.png) center center no-repeat !important;
  transition: all 0.3s ease-in-out;
}

.steps-for-business .steps.step-02 .step-count {
  background: #FFEBE9 url(../images/icon/icon-pay-orange.png) center center no-repeat !important;
  transition: all 0.3s ease-in-out;
}

.steps-for-business .steps.step-03 .step-count {
  background: #FFEBE9 url(../images/icon/icon-trace.png) center center no-repeat !important;
  transition: all 0.3s ease-in-out;
}

.steps-for-business .steps.step-01.active.visible .step-count {
  background: var(--text-orange) url(../images/icon/icon-search-white.png) center center no-repeat !important;
}

.steps-for-business .steps.step-02.active.visible .step-count {
  background: var(--text-orange) url(../images/icon/icon-pay-white.png) center center no-repeat !important;
}

.steps-for-business .steps.step-03.active.visible .step-count {
  background: var(--text-orange) url(../images/icon/icon-trace-white.png) center center no-repeat !important;
}

.steps-for-business .steps.active .step-count span {
  background-color: #ffffff;
  color: var(--text-orange);
}

.steps-for-business .how-works-banner .how-works-title {
  background: #ffffff;
  padding: 13px 27px 13px 82px;
  font-size: 27px;
  line-height: 140%;
  color: var(--text-orange);
  position: absolute;
  bottom: -30px;
  right: 106px;
  left: inherit;
  border-radius: 0 23px 0 0;
  font-family: 'poppinsmedium';
  font-weight: 500;
  font-style: italic;
  width: 430px;
  text-align: right;

}

.platform-section {
  /* background: url(../images/platform/platform-section-bg.png) center center no-repeat; */
  background-size: cover;
  padding: 100px 0;
  min-height: 1350px;
  border-radius: 0 0 24px 24px;
  z-index: 3;
  position: relative;

  background: linear-gradient(180deg, #FFEBBF 0%, #DB8AE8 121.82%);
}

.feature-card {
  border-radius: 20px;
  border: 15px solid #ffffff;
  padding: 22px 22px 0;

}

.feature-card h5 {
  font-size: 30px;
  line-height: 140%;
  color: var(--text);
  font-family: 'poppinssemibold';
}

.feature-card p {
  font-size: 14px !important;
  color: var(--text);
  font-family: 'poppinsregular';
}


.feature-card .icon-box {
  display: flex;
  align-items: center;
  place-content: center;
  flex-direction: column;
  position: relative;
  margin-top: auto;
  padding-top: 19px;

}

.feature-card.feature-card-ride .icon-box .card-banner {
  position: absolute;
  bottom: -80px;
}

.feature-card.feature-card-family .icon-box .card-banner {
  position: absolute;
  bottom: -30px;
}

.feature-card.feature-card-delivery .icon-box .card-banner {
  position: absolute;
  bottom: -40px;
}

.feature-card.feature-card-event .icon-box .card-banner {
  position: absolute;
  bottom: 0px;
}

.feature-card.feature-card-stay .icon-box .card-banner {
  position: absolute;
  bottom: 0px;
}

.custom-row {
  --bs-gutter-x: 12px;
  /* horizontal gutter */
  --bs-gutter-y: 12px;
  /* vertical gutter */
}

.feature-card.feature-card-top {
  min-height: 480px;
  width: 340px;
}

.feature-card.feature-card-btm {
  min-height: 390px;
  width: 550px;
  display: flex;
  flex-direction: column;
}

.feature-card-ride {
  background: #fff url(../images/platform/platform-rides-travel-bg.png) center top no-repeat;
  background-size: cover;
}

.feature-card-family {
  background: #fff url(../images/platform/platform-family-bg.png) center top no-repeat;
  background-size: cover;
}

.feature-card-delivery {
  background: #fff url(../images/platform/platform-delivery-bg.png) center top no-repeat;
  background-size: cover;
}

.feature-card-event {
  background: #fff url(../images/platform/platform-event-bg.png) center top no-repeat;
  background-size: cover;
}

.feature-card-stay {
  background: #fff url(../images/platform/platform-stay-bg.png) center top no-repeat;
  background-size: cover;
}

.launching-section {
  /* background: url(https://img.freepik.com/free-photo/soft-dreamy-gradient-pink-purple-hues_474888-7123.jpg?t=st=1763674576~exp=1763678176~hmac=d771058b684e3ac47bb77753d677b0d046b6b70ebd4eb2eae22d12a02bd1f738&w=1480); */
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
  min-height: 1350px;
  margin-top: -20px;
}

.city-content {
  width: 100%;
  display: flex;
  align-items: center;
  place-content: center;
  flex-direction: column;

}

.city-card {
  border: 1px solid #F0E4F7;
  border-radius: 20px;
  padding: 20px
}

.city-card:before {
  content: "";
  /* background: rgba(0, 0, 0, 0.3); */
  position: absolute;
  left: 20px;
  top: 20px;
  width: 91%;
  height: 71%;
  border-radius: 20px;
}

.country-flag {
  position: absolute;
  width: 90px;
  height: 60px;
  border-radius: 0 20px 0 20px;
  right: 20px;
  top: 20px;
  background: #ffffff;
  display: flex;
  align-items: center;
  place-content: center;
  overflow: hidden;
  border: 5px solid white;
}

.country-flag img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
}

.city-card h6 {
  color: var(--text);
  font-size: 25px;
  font-family: 'poppinsmedium';
  line-height: 140%;
  text-align: center;
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  -webkit-text-stroke: 1px #00000020
}

.city-statistics {
  width: 90%;
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  margin-top: -50px;
  height: 77px;
  display: flex;
  flex-direction: column;
  align-items: center;
  place-content: center;
  position: relative;
  z-index: 9;
}

.city-statistics span {
  color: #B341B7;
  font-size: 35px;
  font-family: 'poppinssemibold';
  line-height: 130%;
}

.city-statistics label {
  /* color: #B341B7; */
  color: var(--text);
  font-size: 19px;
  font-family: 'poppinssemibold';
  line-height: 130%;
}

.city-statistics.with-comingsoon strong {
  color: #000000;
  font-size: 19px;
  font-family: 'poppinssemibold';
  line-height: 130%;
}

.inner-title {
  margin-bottom: 40px;
}

.inner-title h2 {
  color: var(--text);
  font-size: 46px;
  font-family: 'poppinssemibold';
  line-height: 130%;
}

.cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  place-content: center;
  background: #FFF2EF;
  border-radius: 16px;
  height: 120px;
  width: 1040px;
  margin: auto;
  font-size: 24px;
  font-family: 'poppinsmedium';
  line-height: 36px;
  margin: 70px 0;
}

.cta a {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-family: 'poppinsmedium';
  line-height: 36px;
  gap: 10px;
  color: #B341B7 !important;
}


.partner-section {
  margin-top: -30px;
  height: 822px;
  background: linear-gradient(124.56deg, #F7EBF5 49.64%, #FFE7E3 95.74%);
  border-radius: 24px 34px 24px 24px;
  align-items: center;
  position: relative;
  place-content: center;
}

.partner-section:after {
  content: "";
  background: url('../images/partner/partner-bg.png');
  width: 950px;
  height: 822px;
  position: absolute;
  right: 100px;
  top: 0;
}

.partner-section * {
  overflow: visible;
}

.partner-section .row {
  overflow: visible;

}

.partnet-content {
  padding: 90px 0;
}

.partner-banner {
  position: relative;
  z-index: 9;
  display: flex;
  align-items: end;
  height: 100%;
}

.partner-banner img {
  width: 100%;
}

.partnet-content h2 {
  margin: 0px;
  line-height: 120%;
}

.lst-content {
  margin: 40px 0;
  display: flex;
  gap: 38px;
  flex-direction: column;
}

.lst-itm {
  display: flex;
  gap: 20px;
  align-items: center;

}

.lst-icon {
  background: #F2DFF1;
  width: 60px;
  min-width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  place-content: center;
  border-radius: 100%;
}

.info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.info h3 {
  font-size: 22px;
  font-family: 'poppinsmedium';
  line-height: 120%;
  margin: 0px;
  padding: 0px;
  color: var(--text);
}

.info p {
  font-size: 16px;
  font-family: 'poppinsregular';
  line-height: 120%;
  margin: 0px;
  padding: 0px;
  color: #444444;
}

.partnet-content .btn-action .btn.btn-primary {
  width: 188px !important
}

.team-section {
  padding: 0;
  background: url(../images/inquiry/contact-bg.png) center bottom no-repeat;
  background-size: cover;
  border-radius: 20px
}

.team-content {
  width: 550px;
  padding-top: 70px;
}

.launching-section h2 {
  margin-bottom: 30px;
  /* color: #fff !important */
}

.team-content h2 {
  margin-bottom: 30px;
  color: #fff !important
}

.team-content p {
  color: #ffffff !important;
  font-size: 20px;
  line-height: 140%;
  font-family: 'poppinsregular';
}

.team-banner {
  padding: 0px;
  /* display: flex;
  align-items: center;
  place-content: center; */
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20%, 1fr));
  width: 100%;
  max-width: 800px;
  margin-right: 40px;
  margin-left: auto;
}

.square {
  position: relative;
  overflow: hidden;
  height: 200px;
  margin: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* 
.square:before {
  content: '';
  position: relative;
  z-index: -1;
  display: block;
  width: 1px;
  padding-bottom: 100%;
  background-color: lime;
} */
/* .square {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  height: 200px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
} */

.square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* ✅ Hover Effect */
.square:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.square:hover img {
  transform: scale(1.1);
}

.inquir-form {
  width: 550px;
  margin-top: 30px;
}

.inquir-form input {
  height: 56px;
  border: 1px solid #DADADA;
  background-color: #ffffff !important;
  border-radius: 8px;
}

.inquir-form select {
  height: 56px;
  border: 1px solid #DADADA;
  background-color: #F7F6FF;
  border-radius: 8px;
}

.inquir-form textarea {
  height: 140px;
  border: 1px solid #DADADA;
  background-color: #F7F6FF;
  border-radius: 8px;
}

.form-row {
  margin-bottom: 24px;
}

footer {
  background: #F9F9FF;

  padding-top: 60px;
}

footer ul {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}


footer .ftr-links ul li {
  width: 100%
}

footer ul li a {
  font-size: 16px;
  font-family: 'poppinsregular';
  line-height: 140%;
  color: var(--text) !important;
  text-decoration: none;
}

footer ul li:hover a {
  color: var(--text-purple) !important;
}

.copyright {
  padding: 23px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  margin-top: 23px;
}

.social {
  display: flex;
  align-items: end !important;
  justify-content: end;
}

.social ul {
  display: flex;
  align-items: end;
  flex-direction: row;
  list-style: none;
  margin: 0px !important;
  padding: 0;
  gap: 10px !important
}

.social ul li a {
  box-sizing: border-box;
  width: 48px;
  height: 48px;
  background: #FFFFFF;
  border: 1px solid #EFEFEF;
  border-radius: 159.476px;
  display: flex;
  align-items: center;
  place-content: center;

}

.other-text {
  margin: 18px 0 0
}

.other-text p {
  font-size: 16px;
  font-family: 'poppinsmedium';
  line-height: 22px;
  margin: 5px 0px;
}

.our-app {
  display: flex;
  align-items: center;
  gap: 18px;
  place-content: center;
}

.app-row h4 {
  font-size: 32px;
  font-family: 'poppinsmedium';
  line-height: 130%;
}

footer h6 {
  font-size: 16px;
  font-family: 'poppinssemibold';
  line-height: 20px;
  color: var(--text) !important;
  margin-bottom: 15px;
}

.partner-section .container,
.how-wroks-section .container {
  z-index: 99;
  position: relative;
}


.partnet-content p,
.platform-section p,
.how-wroks-section p {
  color: #211332 !important;
  font-size: 20px;
  line-height: 140%;
  font-family: 'poppinsregular';
}

.partner-banner-mobile {
  display: none;
}

.intl-tel-input {
  display: table-cell;
}

.intl-tel-input .selected-flag {
  z-index: 4;
}

.intl-tel-input .country-list {
  z-index: 5;
}

.inquir-form .input-group .intl-tel-input {
  width: 100%;
}

.inquir-form .input-group .intl-tel-input .form-control {
  height: 56px;
  border: 1px solid #DADADA;
  background-color: #F7F6FF;
  border-radius: 8px;
}

.form-control {
  background: #fff !important;
}

.marquee-row {
  width: 100%;
  overflow-x: hidden;
}

.marquee-block {
  position: relative;
  display: flex;
  width: 100%;
  animation-duration: 20s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  justify-content: space-between;
}

.marquee-item-list {
  display: inline-flex;
}

.marquee-item-list li {
  width: 100%;
  list-style: none;
  padding-right: 30px;
  font-size: 40px;
  white-space: nowrap
}

.marquee1 {
  animation-name: marquee1;
}

.marquee2 {
  animation-name: marquee2;
}

@keyframes marquee1 {
  0% {
    left: 0;
  }

  100% {
    left: -100%;
  }
}

@keyframes marquee2 {
  100% {
    left: 0;
  }

  0% {
    left: -100%;
  }
}


#demo2 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  overflow: hidden;
  cursor: pointer;
  color: #999 !important;
  font-size: 16px !important;
}

/*For IE */
#demo2 select::-ms-expand {
  display: none;
}

.contact-form span.required {
  color: Red !important;
}



#email_validation,
#name_validation {
  display: none;
}

label.required:after {
  content: '*';
  color: red;
}

span.error {
  background-color: #FFDFDF;
  color: red;
}

.faqs-section {
  padding: 100px 0
}

.accordion-item {
  margin-bottom: 15px;
  border: 0px;
  box-shadow: none;
}

.accordion-header button.accordion-button {
  font-size: 18px !important;
  line-height: 119%;
  font-family: 'poppinsmedium';
  height: 60px;
}

.accordion-button {
  background: rgba(0, 0, 0, 0.04);
  border: 0px;
  box-shadow: none;
  border-radius: 12px !important;
  font-size: 18px !important;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
  color: #fff !important;
  border: 0px !important;
}

.accordion-button:not(.collapsed)::after {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  place-content: center;
  background-position: center center;
  background-size: 15px 15px !important;
  border-radius: 30px;
  background-color: #ffffff;
}


@media (min-width: 768px) {

  /* show 3 items */
  .carousel-inner .active,
  .carousel-inner .active+.carousel-item,
  .carousel-inner .active+.carousel-item+.carousel-item {
    display: block;
  }

  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left),
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item,
  .carousel-inner .carousel-item.active:not(.carousel-item-right):not(.carousel-item-left)+.carousel-item+.carousel-item {
    transition: none;
  }

  .carousel-inner .carousel-item-next,
  .carousel-inner .carousel-item-prev {
    position: relative;
    transform: translate3d(0, 0, 0);
  }

  .carousel-inner .active.carousel-item+.carousel-item+.carousel-item+.carousel-item {
    position: absolute;
    top: 0;
    right: -33.3333%;
    z-index: -1;
    display: block;
    visibility: visible;
  }

  /* left or forward direction */
  .active.carousel-item-left+.carousel-item-next.carousel-item-left,
  .carousel-item-next.carousel-item-left+.carousel-item,
  .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item,
  .carousel-item-next.carousel-item-left+.carousel-item+.carousel-item+.carousel-item {
    position: relative;
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  /* farthest right hidden item must be abso position for animations */
  .carousel-inner .carousel-item-prev.carousel-item-right {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    display: block;
    visibility: visible;
  }

  /* right or prev direction */
  .active.carousel-item-right+.carousel-item-prev.carousel-item-right,
  .carousel-item-prev.carousel-item-right+.carousel-item,
  .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item,
  .carousel-item-prev.carousel-item-right+.carousel-item+.carousel-item+.carousel-item {
    position: relative;
    transform: translate3d(100%, 0, 0);
    visibility: visible;
    display: block;
    visibility: visible;
  }
}

.accordion-body {
  font-size: 18px;
  line-height: 160%;
  padding: 20px 30px;
}

.share-squch-section {
  background: linear-gradient(260.76deg, #451248 31.9%, #AE3DBC 68.58%, #FB7E6A 100%);
  border-radius: 16px;
  margin-top: -30px;
  padding-top: 80px;
  position: relative;
}

.share-squch-section:after {
  content: "";
  position: absolute;
  right: 10px;
  bottom: 10px;
  background: url("../images/share-squch-section-bg.png") no-repeat;
  width: 227px;
  height: 227px;
  opacity: 0.2
}

.share-content {
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 22px;
  margin: auto;
}

.share-content h2.inner-title {
  color: #ffffff;
  line-height: 120% !important;
  font-size: 65px !important;
  position: relative;
}

.share-content h2.inner-title:after {
  content: "";
  background: url("../images/share-squch-section-title-pattern.png") no-repeat right top;
  position: absolute;
  right: 10px;
  top: -40px;
  width: 63px;
  height: 70px;
}

.share-content p.text-muted {
  color: #ffffff !important;
  font-size: 25px !important;
  margin: 22px 0;
}

.share-content .btn-action .btn.btn-outline-secondary {
  width: auto !important;
  background: transparent !important;
  padding: 0 15px !important;
  border: 1px solid #ffffff !important;
  color: #fff
}

.overflow-visible {
  overflow: visible;
}

.share-banner {
  position: relative;
}

.share-banner img {
  z-index: 2;
}

.share-banner:after {
  content: "";
  width: 950px;
  height: 950px;
  position: absolute;
  top: -90px;
  left: -230px;
  /* right: 0; */
  margin: auto;
  background: url(../images/share/share-banner-bg.png) no-repeat center top;
  z-index: 1;
}

.share-banne img {
  width: 100%;
}

.inquir-form .checkbox-group .checkbox-option input {
  height: auto !important;
}


.gallery {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0px;
  height: 1000px;
  overflow: hidden;
}

body .inquiry-form input[type=checkbox].jsx-66fc2a604b9aa430 {
  height: 30px !important;
}

.column {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.column .scroll {
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: scrollUp 45s linear infinite;
}

/* Alternate columns scroll opposite direction */
.column:nth-child(even) .scroll {
  animation: scrollDown 45s linear infinite;
}

/* Upward scroll */
@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

/* Downward scroll */
@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

/* Zigzag offset for alternate columns */
.column:nth-child(1) {
  transform: translateY(30px);
}

.column:nth-child(2) {
  transform: translateY(-30px);
}

.column:nth-child(3) {
  transform: translateY(30px);
}

.column:nth-child(4) {
  transform: translateY(-30px);
}

.column img {
  width: 165px;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.column img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

@keyframes floatUpDown {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-40px);
  }
}

/* Responsive behavior */
@media (max-width: 1200px) {
  .column {
    gap: 5px 10px;
    padding: 0px;
  }

  .gallery {
    gap: 5px;
  }

  .column img {
    width: 200px;
  }
}

@media (max-width: 900px) {

  .column .scroll {
    gap: 10px
  }

  .column img {
    width: 160px;
  }
}

@media (max-width: 600px) {
  .column .scroll {
    gap: 5px
  }

  .gallery {
    align-items: center;
    padding: 0px;
    height: 420px !important;
  }



  .column img {
    width: 80px;
  }
}

.copyright p {
  color: #211332 !important;
  font-size: 15px !important;
}

.custom-dropdown img {
  position: absolute;
  right: 10px;
  top: 15px;
  pointer-events: none;
}

.inquir-form button.otp-button {
  background-color: #fff;
  color: #000;
  opacity: 1;
  border: 0px
}

.inquir-form .checkbox-input {
  color: #ffffff;
}

body .inquir-form .checkbox-input input {
  height: 30px !important;
}

.inquir-form .security-notice {
  color: #fff !important
}

.terms-content-area p {
  color: #000 !important
}

.modal {
  display: block;
  width: 90vw !important;
  max-width: 90vw;
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  bottom: 0;
  overflow: auto;
}

.modal-dialog {
  max-width: 100%;
  height: 90vh;
}

.modal-header {
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
}

.modal-dialog .modal-title {
  font-size: 16px !important;
  color: #000 !important;
  text-shadow: none !important;
}

.custom-width {
  width: 100% !important
}

.modal .modal-body p {
  color: #000000 !important
}

.modal-body.success-modal-body {
  /* background: linear-gradient(124.56deg, #F7EBF5 49.64%, #FFE7E3 95.74%); */
}

.modal-body.success-modal-body .copy-link {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 10px 16px;
  width: 60px !important;
  height: 55px;
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
  border-radius: 16px;
  border: 0px;
  transition: background 0.6s ease;
  font-family: 'poppinssemibold';
  position: relative;
  overflow: hidden;
  z-index: 99;
  font-size: 0px !important;
}

.modal-body.success-modal-body .copy-link svg {
  width: 25px !important;
  height: 25px !important;
}

.modal-body.success-modal-body .copy-link-block input {
  border: 1px solid var(--text-orange) !important;
  height: 55px;
}

.btn-close {
  background-color: #ffffff !important;
  opacity: 0.9;
}

.earn-offer-block {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 10px 0;
}

.earn-offer {
  display: flex;
  flex-direction: column;
  /* background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important; */
  background: #00000030;
  border: 1px solid rgba(255, 255, 255, 1);
  padding: 30px 20px 20px;
  border-radius: 10px;
  width: calc(50% - 10px);
  position: relative;
  gap: 5px;
}




.earn-offer h3 {
  color: #000000;
  font-size: 15px;
  text-transform: uppercase;
  position: absolute;
  background: #ffffff;
  /* border: 1px solid #b85040; */
  border-radius: 20px;
  top: -10px;
  padding: 5px 10px;
  line-height: normal;
  font-weight: bold;
  font-family: "poppinssemibold" !important;
  width: 100px;
  text-align: center
}

.earn-offer span {
  color: #ffffff !important;
  font-size: 16px;
}

.earn-offer span strong {
  /* color: #000000 !important; */
  font-weight: 500;
  font-family: "poppinssemibold" !important;
  font-size: 18px;
}


.refer-message {
  font-weight: 500;
  font-size: 18px;
  color: #fff;
}

.share-squch-section p.text-muted {
  margin-top: 0px !important;
}

.launching {
  font-size: 24px;
  color: #000;
  text-align: center;
  font-family: "poppinssemibold" !important;
  line-height: 100%;
  margin-top: 36px;
}

.terms-modal .modal-dialog {
  max-width: 60%;
}


.modal-dialog-scrollable .modal-content {
  height: 100%;
}

.agree-btn button {
  color: #fff !important;
}

.earn-offer.what-earn {
  background: linear-gradient(124.56deg, #F7EBF5 49.64%, #FFE7E3 95.74%) !important;
  margin-bottom: 30px !important;
  width: 100% !important;
  display: flex;
  gap: 30px;
  flex-direction: row;
  place-content: center;
  box-shadow: 3px 3px 7px rgba(174, 61, 188, 10%);
}

.earn-offer.what-earn .earn-cotent {
  display: flex;
  flex-direction: column;
  align-items: start;
  place-content: center;
}

.earn-offer.what-earn span {
  color: #000000 !important
}

.earn-offer.what-earn h3 {
  width: 200px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  border: 1px solid #fde9e9;
}

.earn-offer.what-earn span {
  text-align: center;
}



.earn-offer.what-earn span strong {
  color: #b03fba !important
}

.invalid-feedback {
  color: #ffb1b9 !important;
  font-size: 14px !important;
}

.faqs-section h3 {
  font-size: 18px !important;
  font-weight: 600 !important;
  margin: 0 0 20px;
  border-bottom: 1px solid #e1e1e1;
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
  padding: 20px;
  border-radius: 10px;
  color: #ffffff;
  display: none !important;
}


.hero-mockup {
  max-width: 700px;
}

.loading {
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  place-content: center;
  background: linear-gradient(124.56deg, #F7EBF5 49.64%, #FFE7E3 95.74%) !important;
}

.welcome-text {
  display: flex;
  gap: 10px;
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
  border-radius: 20px 20px 0 0;
  padding: 20px 30px;
  align-items: center;
  place-content: center;
  flex-direction: column;
  text-align: center !important;
}

.welcome-icon {
  display: flex;
  align-items: center;
}

.welcome-icon img {
  width: 60px;
  height: 60px;
}

.earn-icon img {
  width: 60px;
  height: 60px;
}

.social-success-link {
  display: flex !important;
  align-items: center;
  place-content: center;
}

.social-success-link button {
  font-size: 0px !important;
  padding: 0px !important;
  display: inline-flex !important;
  align-items: center !important;
  place-content: center !important;
  border-radius: 100% !important;
  min-width: inherit !important;
  flex: auto !important;
  margin: 0 5px !important;
  max-width: 50px !important;

  box-sizing: border-box;
  width: 48px !important;
  height: 48px !important;
  background: #FFFFFF;
  border: 1px solid #e1e1e1;
  border-radius: 159.476px;
  display: flex;
  align-items: center;
  place-content: center
}

.social-success-link button svg {
  margin: auto !important;
  width: 20px !important;
  height: 20px !important;
}

.custom-btn-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  place-content: center;
  top: 10px;
  right: 10px;
  z-index: 10;
  padding: 0px;
  background: transparent !important;
  border: 0px
}

.custom-btn-close img {
  width: 35px;
  height: 35px;
  opacity: 60%;
  transition: all 0.3s ease;
}

.custom-btn-close:hover img {
  opacity: 100%;
}

.title-txt {
  font-weight: 600 !important;
  text-shadow: none !important;
  font-weight: bold;
  font-family: "poppinssemibold" !important;
  width: 140px;
  line-height: normal !important;
  font-size: 15px !important;
}

.share-title-txt {
  display: flex;
  gap: 10px;
  align-items: center;
  place-content: center;
  display: flex;
  width: auto;
  margin: auto;
}

.share-title-txt svg {
  width: 18px;
  height: 18px;
}

.footer-menu {
  margin: 15px 0;
  justify-content: end;
}

footer .footer-menu ul {
  padding: 0px !important;
  margin: 0px !important;
  justify-content: end;
}

.footer-menu ul li a {
  padding: 0px !important;
}

footer .footer-menu ul li a {
  font-family: 'poppinsmedium';
}

.testimonial-area {

  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  padding: 114px 0 100px;
  background: linear-gradient(260.76deg, #451248 31.9%, #AE3DBC 68.58%, #FB7E6A 100%) !important;



}

.dreamit-button2 .btn.btn-primary {
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
}

.testimonial-area .techno-testimonial-thumb img {
  position: inherit;
  margin-left: -20px;
}

.testimonial-area .techno-single-testimonial-box {
  position: relative;
  padding: 40px 20px 60px 35px;
  background: #1c1e22;
  margin-bottom: 30px;
}

.testimonial-area .techno-single-testimonial-box.white:before {
  position: absolute;
  content: "";
  border-color: #1c1e22 transparent transparent #1c1e22;
  left: 0;
  width: 0;
  height: 0;
  bottom: -36px;
  top: auto;
  border-style: solid;
  border-width: 20px;
}

.dreamit-section-title2 {
  margin-bottom: 35px;
}

.dreamit-section-title2 h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  z-index: 1;
  font-size: 46px;
  font-family: "poppinssemibold" !important;
  line-height: 55px;
  color: #ffffff !important;
  margin: 0px;
}

.dreamit-section-title2 span {
  color: #ffffff;
}

.white p {
  color: #fff;
}

.techno-single-testimonial-box {
  position: relative;
  padding: 100px 30px 50px;
}

.row.testi-top {
  position: relative;
  z-index: 1;
  margin-top: -225px;
  left: 115px;
}


.techno-testimonial-thumb img {
  position: relative;
  /* margin-left: -321px; */
}

.techno-single-testimonial-box {
  position: relative;
  padding: 100px 30px 50px;
}

.testimonial-thumb {
  float: left;
  margin-right: 20px;
  padding: 6px 0 0;
}

.testi-titile h2 {
  font-size: 24px;
  padding: 5px 0 0;
  font-weight: 500;
  color: #fff;
  font-family: "poppinssemibold" !important;
}

.testi-titile {
  display: flex;
  flex-direction: column;
}

.testi-titile span i {
  opacity: 0.7;
}

.testimonial-title p {
  font-size: 18px;
  margin: 0 0 44px;
}

.testi-titile span {
  color: #fff;
}

.testi-icon i {
  display: inline-block;
  font-size: 60px;
  color: var(--text-orange);
  margin-bottom: 28px;
}

.testimonial-area .techno-single-testimonial-box {
  position: relative;
  padding: 60px 20px 50px 35px;
  background: var(--text-orange);
  margin-bottom: 30px;
  min-height: 350px;
  border-radius: 30px 30px 30px 0;
}

.testimonial-area .techno-single-testimonial-box.white:before {
  position: absolute;
  content: "";
  border-color: var(--text-orange) transparent transparent var(--text-orange);
  left: 0;
  width: 0;
  height: 0;
  bottom: -36px;
  top: auto;
  border-style: solid;
  border-width: 20px;
}

.testimonial-area .testi-icon {
  float: left;
  margin-right: 25px;
}

.testimonial-area .testi-icon i {
  display: inline-block;
  font-size: 50px;
  color: #ed2c41;
  margin-bottom: 28px;
  transform: rotate(180deg);
}

.testimonial-area .testimonial-title p {
  font-size: 18px;
  margin: 0 0 22px;
  overflow: hidden;
}

.testimonial-area .testimonial-thumb {
  float: left;
  margin-right: 20px;
  padding: 0;
  margin-left: 22px;
  width: 80px;
  height: 80px;
  overflow: hidden;
  border-radius: 100%;
}

.testimonial-area .testimonial-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-us-sect {
  background: url(../images/contactus-bg.jpg) no-repeat;
  background-size: cover;
  height: 345px;
  display: flex;
  align-items: center;
}

.contact-us-sect h2.inner-title {
  color: #ffffff;
  line-height: 120% !important;
  font-size: 65px !important;
  position: relative;
}

.contact-form-modal {
  max-width: 500px;
}

.contact-form-modal .modal-body {
  padding: 45px !important
}

.contact-form-modal form .form-control {
  border-radius: 8px !important;
  /* background: #f2f2f2 !important; */
  border: 1px solid #ebebeb !important;
  min-height: 45px !important;
  font-size: 14px !important;
  color: #000000 !important
}

.contact-form-modal form select {
  font-size: 14px !important;
}

.contact-form-modal form .btn.btn-primary {
  margin: 0px !important;
}

.contact-form-modal .modal-body label {
  color: #464646 !important;
  font-size: 14px !important;
  font-family: "poppinsmedium" !important;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  border: 1px solid var(--text-orange) !important
}

.footer-contactus {
  position: fixed;
  right: 20px;
  bottom: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15), 0 2px 8px rgba(0, 0, 0, .1);
  background: #fff;
  width: 60px;
  height: 60px;
  border-radius: 100%;
  background: var(--text-purple);
  border: 0;
  display: flex;
  align-items: center;
  place-content: center;
  font-size: 0px;
  z-index: 99999;
}

.footer-contactus svg {
  width: 30px;
  height: 30px;
}

.footer-other-left {
  display: flex;
  align-items: center;
  margin: 0px;
}

.form-item {
  position: relative;
}

.form-item img {
  position: absolute;
  right: 10px;
  top: 10px;
  pointer-events: none;
}

.faqs-section .faq-tabs>ul {
  display: flex;
  align-items: center;
  height: 50px;
  border: 1px solid var(--text-purple);
  border-radius: 30px;
  justify-content: space-between;
  margin: 30px 0 !important;
}

.faqs-section .faq-tabs>ul>li {
  width: 21%
}

.faqs-section .faq-tabs>ul>li:first-child {
  width: 16%;
}

.faqs-section .faq-tabs>ul>li .nav-link {
  height: 50px;
  padding: 0 20px;
  color: #666666 !important;
  width: 100%;
}

.faqs-section .faq-tabs>ul>li .nav-link.active {
  background: linear-gradient(263.01deg, var(--text-orange) 1.58%, var(--text-purple) 96.04%) !important;
  border-radius: 30px;
  color: #ffffff !important
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #7e7e7e;
  font-size: 14px !important;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #7e7e7e;
  font-size: 14px !important;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #7e7e7e;
  font-size: 14px !important;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #7e7e7e;
  font-size: 14px !important;
}

.otp-form-row .otp-form-row-inner {
  display: flex;
  flex-direction: column;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  gap: 5px;
  padding: 10px;
}

.otp-form-row .otp-form-row-inner label {
  font-size: 16px;
  line-height: 140%;
  font-family: 'poppinsregular';
  color: #000000
}

.otp-form-row .otp-form-row-inner .otp-select {
  display: flex;
  gap: 10px
}

.otp-form-row .otp-form-row-inner .otp-select .custom-dropdown {
  width: calc(100% - 130px)
}


.otp-form-row .otp-form-row-inner .otp-select .custom-dropdown select {
  width: 100%;
}

.otp-form-row .otp-form-row-inner .otp-select button.btn {
  width: 120px !important;
}