@charset "UTF-8";
/* Regular - 400 */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* Medium - 500 */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
/* SemiBold - 600 */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
/* Bold - 700 */
@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/PlusJakartaSans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #fff;
}

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

a {
  color: #fff;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 3px solid rgba(16, 16, 16, 0.35);
  outline-offset: 2px;
}

.lazy-bg {
  background: 0 0 !important;
}
.lazy-bg::before {
  background: 0 0 !important;
}
.lazy-bg::after {
  background: 0 0 !important;
}

.stop-scroll {
  overflow: hidden;
}

.container {
  width: min(1160px, 100% - 2rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .container {
    width: 100%;
  }
}

body {
  background-color: #101010;
}

.hide {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}
.hide-desktop {
  display: none;
}

@media screen and (max-width: 769px) {
  .hide-desktop {
    display: block;
  }
}
h3 {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  h3 {
    font-size: 18px;
    line-height: 32px;
  }
}

section {
  margin: 0 auto 60px;
}
@media screen and (max-width: 1024px) {
  section {
    margin: 0 0 30px;
    overflow: hidden;
  }
  section.container {
    padding: 0 16px;
    margin: 0 0 50px;
  }
}
section .container {
  max-width: 1160px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section .container {
    padding: 24px 16px;
  }
}
section .container > .description {
  margin: 0 0 50px;
}
@media screen and (max-width: 1024px) {
  section .container > .description {
    margin: 0 0 23px;
  }
}
section .container.flex-row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  section .container.flex-row {
    flex-direction: column;
  }
}
section .flex-row {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  section .flex-row {
    flex-direction: column;
  }
}
section .flex-row .left,
section .flex-row .right {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  section .flex-row .left,
  section .flex-row .right {
    width: 100%;
  }
}
section .flex-row .left.sticky,
section .flex-row .right.sticky {
  position: sticky;
  top: 85px;
}
section .flex-row .left {
  margin-right: 48px;
}
@media screen and (max-width: 1024px) {
  section .flex-row .left {
    margin-right: 0;
  }
}
section .flex-row.seventy-thirty .left {
  width: 70%;
}
@media screen and (max-width: 1024px) {
  section .flex-row.seventy-thirty .left {
    width: 100%;
  }
}
section .flex-row.seventy-thirty .right {
  width: 30%;
}
@media screen and (max-width: 1024px) {
  section .flex-row.seventy-thirty .right {
    width: 100%;
  }
}
section .flex-row.sixty-forty .left {
  width: 60%;
}
@media screen and (max-width: 1024px) {
  section .flex-row.sixty-forty .left {
    width: 100%;
  }
}
section .flex-row.sixty-forty .right {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  section .flex-row.sixty-forty .right {
    width: 100%;
  }
}
section .flex-row.flex-start {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  section .flex-row.mobile-direction-reverse {
    flex-direction: column-reverse;
  }
  section .flex-row.mobile-direction-reverse .image {
    margin: 0;
  }
  section .flex-row.mobile-direction-reverse .image img {
    margin: 0 auto 16px;
  }
}
section .flex-row .image {
  text-align: center;
}
section .flex-row .image img {
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  section .flex-row .image {
    max-width: 100%;
    margin: 24px 0 0;
  }
  section .flex-row .image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }
}
section .flex-row .image.margin-top-46 {
  margin: 46px 0 0;
}
@media screen and (max-width: 1024px) {
  section .flex-row .image.margin-top-46 {
    margin: 24px 0 0;
  }
}
section.with-black-bg {
  background: #000003;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  section.with-black-bg {
    padding: 30px 16px;
  }
  section.with-black-bg .container {
    padding: 0;
    margin: 0;
  }
}
section.with-grey-bg {
  background: #202121;
  padding: 60px 0;
}
@media screen and (max-width: 1024px) {
  section.with-grey-bg {
    padding: 30px 16px;
  }
  section.with-grey-bg .container {
    padding: 0;
    margin: 0;
  }
}
section .sub-heading {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.015em;
  text-transform: capitalize;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  section .sub-heading {
    font-size: 18px;
    line-height: 32px;
  }
}
section .sub-heading {
  margin: 0 0 12px;
}
section .h2-heading {
  font-weight: 700;
  font-size: 40px;
  line-height: 100%;
  letter-spacing: 0.015em;
}
@media screen and (max-width: 1024px) {
  section .h2-heading {
    font-size: 20px;
    line-height: 26px;
  }
}
section .h2-heading {
  margin: 0 0 12px;
}
section .h2-heading.center {
  text-align: center;
}
section .h2-heading.margin-bottom-36 {
  margin-bottom: 36px;
}
section .description {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  section .description {
    font-size: 16px;
    line-height: 28px;
  }
}
section .description {
  margin: 0;
}
section .description.center {
  text-align: center;
}
section .description .more-text {
  display: none;
}
section .description .more-text.show {
  display: inline;
}
section .description .read-more-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 32px;
  color: #fff;
  cursor: pointer;
}
section .description .read-more-text::before {
  content: "...";
  color: #fff;
}
section .description .read-more-text.show {
  display: block;
}
section .description .read-more-text.show::before {
  display: none;
}
@media screen and (max-width: 1024px) {
  section .description .read-more-text {
    font-size: 16px;
    line-height: 28px;
  }
}
section .description.font-size-16 {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
section .description.font-size-16 .read-more-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #0065ff;
  cursor: pointer;
}
section .description.font-size-16 .read-more-text::before {
  content: "...";
  color: #fff;
}
section .description.font-size-16 .read-more-text.show {
  display: block;
}
section .description.font-size-16 .read-more-text.show::before {
  display: none;
}
section .description.margin-top-24 {
  margin-top: 24px;
  margin-bottom: 0;
}
section .description.margin-bottom-24 {
  margin-bottom: 24px;
}
section .description.mobile-read-more .more-text {
  display: inline;
}
@media screen and (max-width: 1024px) {
  section .description.mobile-read-more .more-text {
    display: none;
  }
  section .description.mobile-read-more .more-text.show {
    display: inline;
  }
}
section .description.mobile-read-more .read-more-text {
  display: none;
}
@media screen and (max-width: 1024px) {
  section .description.mobile-read-more .read-more-text {
    display: inline;
  }
}
section > .description {
  margin: 0 0 50px;
}
@media screen and (max-width: 1024px) {
  section > .description {
    margin: 0 0 23px;
  }
}
section .note {
  background: rgba(255, 255, 255, 0.168627451);
  padding: 10px 20px;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  section .note {
    font-size: 16px;
    line-height: 28px;
  }
}
section .note {
  border-radius: 12px;
}
@media screen and (max-width: 1024px) {
  section .note {
    font-weight: 400;
    font-size: 10px;
    line-height: 16px;
    letter-spacing: 0;
  }
}
section .note.center {
  text-align: center;
}
section .unordered-list {
  list-style: none;
  padding: 0;
}
section .unordered-list li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  section .unordered-list li {
    font-size: 16px;
    line-height: 28px;
  }
}
section .unordered-list li {
  margin: 0 0 16px;
  padding-left: 20px;
  position: relative;
}
section .unordered-list li::before {
  content: "";
  background: #fff;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 11px;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  section .unordered-list li::before {
    top: 11px;
  }
}
section .unordered-list li span {
  font-weight: 500;
}
section .unordered-list.with-green-check-circle li {
  padding-left: 30px;
}
section .unordered-list.with-green-check-circle li::before {
  background: url(../images/common/green-check-circle-icon.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  top: 3px;
}
section .unordered-list.with-green-arrow li {
  padding-left: 32px;
  margin: 0 0 28px;
}
@media screen and (max-width: 1024px) {
  section .unordered-list.with-green-arrow li {
    margin: 0 0 16px;
  }
}
section .unordered-list.with-green-arrow li:before {
  content: " →";
  font-size: 22px;
  font-weight: 400;
  display: inline-block;
  margin: 0;
  background: transparent;
  color: #07FFAC;
  width: auto;
  height: auto;
  position: absolute;
  left: 0;
  top: -1px;
}
section .unordered-list.two-col {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
section .unordered-list.two-col li {
  width: 48%;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  section .unordered-list.two-col li {
    width: 100%;
    margin-bottom: 16px;
  }
}
section .button {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 14px;
  max-width: 275px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  color: #000003;
  border: 0;
  cursor: pointer;
}

.data_ol {
  margin: 0 auto;
}
.data_ol li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .data_ol li {
    font-size: 16px;
    line-height: 28px;
  }
}
.data_ol li {
  margin: 0 0 16px 0;
}

.data_ul {
  margin: 0 auto;
}
.data_ul li {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .data_ul li {
    font-size: 16px;
    line-height: 28px;
  }
}
.data_ul li {
  margin: 0 0 16px 0;
}

.ordered-list {
  list-style: none;
  counter-reset: number;
  padding: 0;
  margin: 0;
}
.ordered-list > li {
  counter-increment: number;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .ordered-list > li {
    font-size: 16px;
    line-height: 28px;
  }
}
.ordered-list > li {
  display: flex;
  align-items: center;
  margin: 0 0 22px 0;
}
.ordered-list > li:last-child {
  margin: 0;
}
.ordered-list > li .number {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  margin-right: 16px;
  flex-shrink: 0;
}
.ordered-list > li .number::after {
  content: counter(number);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .ordered-list > li .number {
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }
}
.ordered-list > li .content .title {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .ordered-list > li .content .title {
    font-size: 18px;
    line-height: 32px;
  }
}
.ordered-list > li .content .title {
  margin: 0 0 8px;
}
.ordered-list > li .content .description {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
.ordered-list.flex-start li {
  align-items: flex-start;
}
.ordered-list.with-number li .number {
  width: auto;
  height: auto;
  margin: 2px 16px 0 0;
}
.ordered-list.two-column {
  display: flex;
  flex-wrap: wrap;
}
.ordered-list.two-column li {
  width: 47%;
  margin: 0 46px 60px 0;
}
@media screen and (max-width: 1024px) {
  .ordered-list.two-column li {
    margin-bottom: 32px;
  }
}
.ordered-list.two-column li:nth-child(2n) {
  margin-right: 0;
}
.ordered-list.two-column li:last-child, .ordered-list.two-column li:nth-last-of-type(2) {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .ordered-list.two-column li {
    width: 100%;
    margin: 0 0 24px;
  }
  .ordered-list.two-column li:nth-last-of-type(2) {
    margin-bottom: 32px;
  }
}
.ordered-list.with-line > li {
  position: relative;
}
.ordered-list.with-line > li::after {
  content: "";
  border: 0.5px dashed rgba(248, 169, 187, 0.6);
  width: 1px;
  height: 100%;
  position: absolute;
  left: 23px;
  z-index: -1;
  top: 46px;
}
@media screen and (max-width: 1024px) {
  .ordered-list.with-line > li::after {
    left: 18px;
    z-index: 0;
    top: 35px;
  }
}
.ordered-list.with-line > li .number {
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .ordered-list.with-line > li .number {
    width: 36px;
    height: 36px;
  }
}
.ordered-list.with-line > li:last-child::after {
  border: 0;
}
.ordered-list.number-with-left-line li {
  align-items: flex-start;
  flex-direction: column;
}
.ordered-list.number-with-left-line li .number {
  width: auto;
  height: auto;
  border-radius: 0;
  margin: 0 0 9px;
}
.ordered-list.number-with-left-line li .number::before {
  content: "";
  background: #7100CB;
  width: 4px;
  height: 100%;
  display: inline-block;
  border-radius: 3px;
  margin-right: 10px;
}
.ordered-list.number-with-left-line li .number::after {
  content: "Step " counter(number);
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .ordered-list.number-with-left-line li .number::after {
    font-size: 16px;
  }
}
.ordered-list.number-with-left-line li .description {
  margin-left: 14px;
  max-width: 460px;
}

.accordion {
  margin: 40px 0 0;
  counter-reset: number;
}
.accordion .accordion-item {
  background: #202121;
  border-radius: 12px;
  margin: 0 0 16px;
  counter-increment: number;
}
@media screen and (max-width: 1024px) {
  .accordion .accordion-item {
    box-shadow: 0px 4px 24px 0px rgba(0, 184, 217, 0.0784313725);
  }
}
.accordion .accordion-item .accordion-header {
  padding: 16px 24px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  color: #fff;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.accordion .accordion-item .accordion-header::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
  display: inline-block;
  margin-bottom: 2px;
  margin-left: 9px;
  flex-shrink: 0;
}
.accordion .accordion-item .accordion-header .number {
  background: #E6FCFF;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
}
.accordion .accordion-item .accordion-header .number::after {
  content: counter(number);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .accordion .accordion-item .accordion-header .number::after {
    font-size: 16px;
    line-height: 28px;
  }
}
.accordion .accordion-item .accordion-header .number::after {
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .accordion .accordion-item .accordion-header .number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-right: 12px;
  }
}
.accordion .accordion-item .accordion-header .heading {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .accordion .accordion-item .accordion-header .heading {
    font-size: 16px;
    line-height: 28px;
  }
}
.accordion .accordion-item .accordion-header .heading {
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .accordion .accordion-item .accordion-header .heading {
    margin-right: 4px;
  }
}
.accordion .accordion-item .accordion-content {
  display: none;
}
.accordion .accordion-item .accordion-content .description {
  color: #CCD4DD;
}
.accordion .accordion-item.active .accordion-header {
  padding-bottom: 18px;
  font-weight: 700;
}
.accordion .accordion-item.active .accordion-header::after {
  transform: rotate(-135deg);
  margin-bottom: -5px;
}
.accordion .accordion-item.active .accordion-header .heading {
  font-weight: 700;
}
.accordion .accordion-item.active .accordion-content {
  display: block;
  padding: 0 24px 24px;
}

.table {
  background: #000003;
  border-radius: 16px;
  margin: 31px 0 0;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .table {
    width: 100%;
    overflow-x: scroll;
  }
}
.table:has(.load-more-rows-wrapper) {
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .table:has(.load-more-rows-wrapper) {
    width: 100%;
    overflow-x: scroll;
    padding-bottom: 24px;
  }
}
.table.no-box-shadow {
  box-shadow: none;
  border: 1px solid #D2E4FF;
  padding: 0;
  margin-bottom: 32px;
}
.table.no-box-shadow table tbody tr:last-child {
  border-bottom: 0;
}
.table.with-border {
  border: 1px solid #3A3B3B;
  background: transparent;
}
.table.with-border thead {
  background: transparent;
}
.table.with-border thead th {
  border-bottom: 1px dashed rgba(217, 217, 217, 0.3803921569);
  border-right: 1px dashed rgba(217, 217, 217, 0.3803921569);
}
.table.with-border tbody tr:nth-child(even), .table.with-border tbody tr:nth-child(odd) {
  background: transparent;
}
.table.with-border tbody tr {
  border-bottom: 1px dashed rgba(217, 217, 217, 0.3803921569);
}
.table.with-border tbody tr:last-child {
  border-bottom: 0;
}
.table.with-border tbody tr td {
  border-right: 1px dashed rgba(217, 217, 217, 0.3803921569);
}
.table table {
  border-collapse: collapse;
  width: 100%;
}
.table table thead.blue {
  background: #E1ECFD;
}
.table table thead th {
  padding: 16px 40px;
  font-weight: 700;
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0;
  text-align: left;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .table table thead th {
    font-size: 14px;
    line-height: 21px;
    padding: 8px 10px;
  }
}
.table table thead th:first-child {
  border-top-left-radius: 10px;
}
.table table thead th:last-child {
  border-top-right-radius: 10px;
  border-right: 0;
}
.table table tbody tr {
  border-color: #3A3B3B;
}
.table table tbody tr:nth-child(even) {
  background: #393939;
}
.table table tbody tr:nth-child(even) td {
  border-right: 1px solid #252627;
}
.table table tbody tr:nth-child(odd) {
  background: #252627;
}
.table table tbody tr:last-child {
  border-radius: 0 0 16px 16px;
}
.table table tbody tr:last-child td:first-child {
  border-radius: 0 0 0 16px;
}
.table table tbody tr:last-child td:last-child {
  border-radius: 0 0 16px 0;
}
.table table tbody td {
  border-right: 1px solid;
  border-color: #3A3B3B;
  padding: 18px 40px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
.table table tbody td:last-child {
  border-right: 0;
}
@media screen and (max-width: 1024px) {
  .table table tbody td {
    font-size: 14px;
    line-height: 21px;
    padding: 8px 10px;
  }
}
.table table tbody td ul {
  padding-left: 20px;
}
.table .button-wrapper {
  text-align: center;
  margin: 23px auto 21px;
}
@media screen and (max-width: 1024px) {
  .table .button-wrapper {
    margin-bottom: 0;
  }
}
.table .load-more-rows-wrapper {
  text-align: CENTER;
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1024px) {
  .table .load-more-rows-wrapper {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    margin: 24px 0 0;
  }
}
.table .load-more-rows-wrapper .load-more-rows {
  border: 1px solid #D3E5EC;
  border-radius: 100px;
  background: #fff;
  padding: 3px 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  color: #101010;
  position: relative;
  cursor: pointer;
}
.table .load-more-rows-wrapper .load-more-rows::after {
  content: "";
  border: solid #0065ff;
  display: inline-block;
  padding: 3px;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
  margin: 0 0 2px 9px;
}
@media screen and (max-width: 1024px) {
  .table .load-more-rows-wrapper .load-more-rows {
    display: inline-block;
  }
}
.table .load-more-rows-wrapper .load-more-rows.show::after {
  transform: rotate(-135deg);
  margin: 0 0 -1px 9px;
}
.table ~ .disclaimer {
  font-size: 8pt;
  margin: 24px 0;
  display: inline-block;
  line-height: 16px;
}

.card {
  border: 1px solid #4B4B4B;
  border-radius: 0.5rem;
}

.btn {
  appearance: none;
  border: 1px solid transparent;
  background: none;
  padding: 0;
  font: inherit;
  color: inherit;
  line-height: inherit;
  border-radius: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
  border: 1px solid #4B4B4B;
  background: transparent;
  transition: background-color 120ms ease, border-color 120ms ease, transform 120ms ease;
}
.btn:hover {
  background-color: rgba(16, 16, 16, 0.08);
  border-color: rgba(16, 16, 16, 0.35);
}

.btn-primary {
  background: #101010;
  color: #ffffff;
  border-color: rgba(16, 16, 16, 0.8);
}
.btn-primary:hover {
  background: rgb(0.7, 0.7, 0.7);
}

/* =========================
   HEADER
========================= */
.pbwheels-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 1024px) {
  .pbwheels-header {
    padding-inline: 16px;
  }
}

/* =========================
   NAV WRAPPER
========================= */
@media (max-width: 768px) {
  .nav-wrapper {
    display: none;
  }
  .nav-wrapper.active {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 999;
  }
  .nav-wrapper.active::before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
  }
}

/* =========================
   NAVIGATION
========================= */
.nav {
  display: flex;
  align-items: center;
  gap: 50px;
  /* =========================
     MENU
  ========================= */
}
.nav .nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  margin: 0;
}
.nav .nav-menu > li {
  position: relative;
}
.nav .nav-menu > li > a, .nav .nav-menu > li .dropdown-heading {
  position: relative;
  transition: color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .nav .nav-menu > li > a, .nav .nav-menu > li .dropdown-heading {
    justify-content: space-between;
  }
}
.nav .nav-menu > li > a::after, .nav .nav-menu > li .dropdown-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: #B6BBFF;
  transition: width 0.3s ease;
  border-radius: 20px;
}
.nav .nav-menu > li > a:hover, .nav .nav-menu > li .dropdown-heading:hover {
  color: #B6BBFF;
}
@media screen and (max-width: 768px) {
  .nav .nav-menu > li > a:hover, .nav .nav-menu > li .dropdown-heading:hover {
    color: #fff;
  }
}
.nav .nav-menu > li > a:hover .arrow, .nav .nav-menu > li .dropdown-heading:hover .arrow {
  border-color: #B6BBFF;
  transform: rotate(225deg);
}
@media screen and (max-width: 768px) {
  .nav .nav-menu > li > a:hover .arrow, .nav .nav-menu > li .dropdown-heading:hover .arrow {
    border-color: #fff;
    transform: rotate(45deg);
  }
}
.nav .nav-menu > li > a:hover::after, .nav .nav-menu > li .dropdown-heading:hover::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .nav .nav-menu > li > a:hover::after, .nav .nav-menu > li .dropdown-heading:hover::after {
    width: 0%;
  }
}
.nav .nav-menu > li {
  /* Active state */
}
.nav .nav-menu > li.active > a::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .nav .nav-menu > li.active > a::after {
    width: 0%;
  }
}
@media screen and (max-width: 768px) {
  .nav .nav-menu > li.active > a .arrow {
    transform: rotate(225deg);
  }
}
.nav .nav-menu a, .nav .nav-menu .dropdown-menu-item, .nav .nav-menu .dropdown-heading {
  color: #fff;
  text-decoration: none;
  padding: 10px 0;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  cursor: pointer;
}
.nav #pb-cta {
  min-width: 43px;
}
.nav {
  /* =========================
     DROPDOWN
  ========================= */
}
.nav .dropdown {
  position: relative;
}
.nav {
  /* =========================
     DESKTOP DROPDOWN
  ========================= */
}
@media (min-width: 769px) {
  .nav .dropdown > a {
    position: relative;
    transition: color 0.3s ease;
  }
  .nav .dropdown > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #B6BBFF;
    transition: width 0.3s ease;
    border-radius: 20px;
  }
  .nav .dropdown {
    /* KEEP ACTIVE ON HOVER */
  }
  .nav .dropdown:hover > a::after {
    width: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .nav .dropdown:hover > a::after {
    width: 0;
  }
}
@media (min-width: 769px) {
  .nav .dropdown:hover > a {
    color: #B6BBFF;
  }
  .nav .dropdown:hover > a .arrow {
    transform: rotate(225deg);
    border-color: #B6BBFF;
  }
}
@media screen and (min-width: 769px) and (max-width: 768px) {
  .nav .dropdown:hover > a {
    color: #fff;
  }
  .nav .dropdown:hover > a .arrow {
    border-color: #fff;
    transform: none;
  }
}
@media (min-width: 769px) {
  .nav .dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 20px;
  }
  .nav .dropdown-menu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 50%;
    min-width: 265px;
    background: #363636;
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 20px);
    transition: all 0.3s ease;
    padding: 24px;
    margin-top: 12px;
    display: flex;
    flex-direction: column;
  }
  .nav .dropdown-menu.two-column {
    flex-wrap: wrap;
    min-width: 505px;
    flex-direction: row;
    justify-content: space-between;
  }
  .nav .dropdown-menu.two-column li {
    width: 48%;
  }
  .nav .dropdown-menu::after {
    content: "";
    position: absolute;
    left: 50%;
    top: -10px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #363636;
  }
  .nav .dropdown-menu .label {
    width: 100%;
    font-weight: 700;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 16px;
  }
  .nav .dropdown-menu li a, .nav .dropdown-menu li .dropdown-menu-item {
    display: flex;
    align-items: flex-start;
  }
  .nav .dropdown-menu li a p, .nav .dropdown-menu li .dropdown-menu-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    margin: 0;
  }
  .nav .dropdown-menu li a p span, .nav .dropdown-menu li .dropdown-menu-item p span {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
  }
  .nav .dropdown-menu li a span.icon, .nav .dropdown-menu li .dropdown-menu-item span.icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  .nav .dropdown-menu li a span.icon.icon-praivahan, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-praivahan {
    background: url(../images/common/nav/nav-parivahan-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-rto, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-rto {
    background: url(../images/common/nav/nav-rto-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-vehicle-owner-details, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-vehicle-owner-details {
    background: url(../images/common/nav/nav-vehicle-owner-details-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-dl, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-dl {
    background: url(../images/common/nav/nav-dl-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-puc, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-puc {
    background: url(../images/common/nav/nav-puc-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-challan, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-challan {
    background: url(../images/common/nav/nav-challan-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-car-repair, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-car-repair {
    background: url(../images/common/nav/nav-car-repair-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-wheel-alignment, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-wheel-alignment {
    background: url(../images/common/nav/nav-wheel-alignment-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-car-ac-repair, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-car-ac-repair {
    background: url(../images/common/nav/nav-car-ac-repair-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 10px);
  }
}
.nav {
  /* =========================
     MOBILE DROPDOWN
  ========================= */
}
@media (max-width: 768px) {
  .nav .dropdown-menu {
    list-style: none;
    position: static;
    width: 100%;
    min-width: 100%;
    background: rgba(0, 0, 0, 0.1490196078);
    border-radius: 12px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    margin-top: 6px;
    padding: 6px 0;
  }
  .nav .dropdown-menu li a, .nav .dropdown-menu li .dropdown-menu-item {
    display: flex;
    align-items: flex-start;
  }
  .nav .dropdown-menu li a p, .nav .dropdown-menu li .dropdown-menu-item p {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    color: #fff;
    margin: 0;
  }
  .nav .dropdown-menu li a p span, .nav .dropdown-menu li .dropdown-menu-item p span {
    font-weight: 400;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
  }
  .nav .dropdown-menu li a span.icon, .nav .dropdown-menu li .dropdown-menu-item span.icon {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  .nav .dropdown-menu li a span.icon.icon-praivahan, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-praivahan {
    background: url(../images/common/nav/nav-parivahan-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-rto, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-rto {
    background: url(../images/common/nav/nav-rto-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-vehicle-owner-details, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-vehicle-owner-details {
    background: url(../images/common/nav/nav-vehicle-owner-details-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-dl, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-dl {
    background: url(../images/common/nav/nav-dl-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-puc, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-puc {
    background: url(../images/common/nav/nav-puc-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-challan, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-challan {
    background: url(../images/common/nav/nav-challan-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-car-repair, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-car-repair {
    background: url(../images/common/nav/nav-car-repair-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-wheel-alignment, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-wheel-alignment {
    background: url(../images/common/nav/nav-wheel-alignment-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown-menu li a span.icon.icon-car-ac-repair, .nav .dropdown-menu li .dropdown-menu-item span.icon.icon-car-ac-repair {
    background: url(../images/common/nav/nav-car-ac-repair-icon.svg) no-repeat center/contain;
  }
  .nav .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }
}
.nav {
  /* =========================
     ARROW
  ========================= */
}
.nav .arrow {
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transform: rotate(45deg);
  transition: all 0.2s ease-out;
  margin-left: 16px;
}
.nav {
  /* =========================
     LOGIN BUTTON
  ========================= */
}
.nav .login {
  background: transparent;
  border: 0;
  color: #fff;
  cursor: pointer;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  padding: 10px 0;
}
.nav {
  /* =========================
     MOBILE
  ========================= */
}
@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 90%;
    max-width: 360px;
    height: 100vh;
    background: #363636;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 0;
    z-index: 1000;
    border-radius: 24px 0 0 24px;
    overflow-y: auto;
  }
  .nav .pbwheels-header-logo {
    margin-bottom: 52px;
  }
  .nav .nav-menu {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav .nav-menu li {
    width: 100%;
  }
  .nav .nav-menu a, .nav .nav-menu .dropdown-menu-item {
    width: 100%;
    justify-content: flex-start;
    padding: 16px 0;
  }
  .nav #pb-cta {
    padding: 16px 0;
  }
  .nav {
    /* MOBILE DROPDOWN */
  }
  .nav .dropdown-menu {
    position: static;
    width: 100%;
    min-width: 100%;
    background: rgba(0, 0, 0, 0.1490196078);
    border-radius: 12px;
    margin-top: 4px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    padding: 6px 0;
  }
  .nav .dropdown-menu li a, .nav .dropdown-menu li .dropdown-menu-item {
    padding: 12px 16px;
  }
  .nav .close {
    position: absolute;
    top: 24px;
    right: 20px;
    width: 18px;
    height: 18px;
    cursor: pointer;
  }
  .nav .close::before, .nav .close::after {
    position: absolute;
    left: 8px;
    top: 2px;
    content: "";
    height: 16px;
    width: 2px;
    background-color: #fff;
  }
  .nav .close::before {
    transform: rotate(45deg);
  }
  .nav .close::after {
    transform: rotate(-45deg);
  }
}

/* =========================
   HAMBURGER
========================= */
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
}

.pbwheels-footer {
  background: #000;
  color: #fff;
  padding: 40px 0 20px;
}
@media screen and (max-width: 1024px) {
  .pbwheels-footer {
    padding-inline: 16px;
  }
}
.pbwheels-footer__top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}
.pbwheels-footer__brand {
  max-width: 200px;
}
@media screen and (max-width: 1024px) {
  .pbwheels-footer__brand {
    max-width: 100%;
    border-bottom: 1px dashed #fff;
    padding-bottom: 16px;
  }
}
.pbwheels-footer__brand .logo {
  font-size: 28px;
  font-weight: 600;
}
.pbwheels-footer__brand .logo-purple {
  color: #7b3fe4;
}
.pbwheels-footer__brand .logo-sub {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}
.pbwheels-footer__brand .contact {
  margin-top: 32px;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .pbwheels-footer__brand .contact {
    margin-top: 24px;
  }
}
.pbwheels-footer__brand .contact li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .pbwheels-footer__brand .contact li {
    margin-bottom: 20px;
  }
}
.pbwheels-footer__brand .contact li .icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  flex-shrink: 0;
}
.pbwheels-footer__brand .contact li .icon.location {
  background: url(../images/common/footer-location-icon.svg) no-repeat center/contain;
}
.pbwheels-footer__brand .contact li .icon.phone {
  background: url(../images/common/footer-phone-icon.svg) no-repeat center/contain;
}
.pbwheels-footer__brand .contact li .icon.mail {
  background: url(../images/common/footer-email-icon.svg) no-repeat center/contain;
}
.pbwheels-footer__links {
  display: flex;
  gap: 75px;
  flex-wrap: wrap;
}
.pbwheels-footer__links .column {
  min-width: 140px;
}
.pbwheels-footer__links .column h4 {
  margin: 12px 0 24px;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .pbwheels-footer__links .column h4 {
    margin: 0 0 24px;
  }
}
.pbwheels-footer__links .column ul {
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .pbwheels-footer__links .column ul {
    margin: 0;
  }
}
.pbwheels-footer__links .column ul li {
  margin-bottom: 6px;
}
.pbwheels-footer__links .column ul li a {
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0;
  color: #fff;
  font-weight: 300;
}
.pbwheels-footer__links .column ul li a::hover {
  text-decoration: none;
}
.pbwheels-footer__links .column .social {
  display: flex;
  gap: 18px;
}
.pbwheels-footer__links .column .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
.pbwheels-footer__links .column .social a span {
  display: block;
  width: 24px;
  height: 24px;
}
.pbwheels-footer__links .column .social a .facebook {
  background: url(../images/common/footer-facebook-icon.svg) no-repeat center/contain;
}
.pbwheels-footer__links .column .social a .instagram {
  background: url(../images/common/footer-instagram-icon.svg) no-repeat center/contain;
}
.pbwheels-footer__links .column .social a .youtube {
  background: url(../images/common/footer-youtube-icon.svg) no-repeat center/contain;
}
.pbwheels-footer__links .column .social a .linkedin {
  background: url(../images/common/footer-linkedin-icon.svg) no-repeat center/contain;
}
.pbwheels-footer__links .column .social a .x {
  background: url(../images/common/footer-x-icon.svg) no-repeat center/contain;
}
.pbwheels-footer__bottom {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid #222;
  text-align: left;
}
.pbwheels-footer__bottom p {
  font-weight: 400;
  font-size: 12px;
  line-height: 150%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0;
}
.pbwheels-footer {
  /* Responsive */
}
@media (max-width: 1024px) {
  .pbwheels-footer__top {
    flex-direction: column;
    gap: 32px;
  }
  .pbwheels-footer__links {
    gap: 30px 0;
    justify-content: space-between;
  }
  .pbwheels-footer__bottom {
    text-align: center;
  }
}

.pbwheels-hero {
  padding: 70px 0 0;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero {
    padding: 0;
  }
}
.pbwheels-hero .main-heading {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 56px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .main-heading {
    font-size: 24px;
    line-height: 1.3;
  }
}
.pbwheels-hero .main-heading {
  margin: 0 0 16px;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .main-heading {
    text-align: center;
  }
}
.pbwheels-hero .description {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .description {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .description {
    text-align: center;
  }
}
.pbwheels-hero .car-details-form-section {
  border: 1px solid #4B4B4B;
  border-radius: 16px;
  padding: 50px 40px;
  display: flex;
  align-items: center;
  margin: 32px 0 0;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .car-details-form-section {
    margin: 24px 0 0;
    padding: 30px 16px;
    flex-direction: column;
  }
}
.pbwheels-hero .car-details-form-section .input-field-wrapper {
  border: 2px solid #4B4B4B;
  background: #fff;
  border-radius: 16px;
  width: 80%;
  margin-right: 20px;
  position: relative;
  height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .car-details-form-section .input-field-wrapper {
    width: 100%;
    margin: 0 0 38px 0;
  }
}
.pbwheels-hero .car-details-form-section .input-field-wrapper .india-tag {
  background: url(../images/common/ind-number-plate-icon.svg) no-repeat center/contain;
  width: 47px;
  height: 42px;
  padding-right: 18px;
  border-right: 1px solid #D9D9D9;
  margin-right: 14px;
  flex-shrink: 0;
}
.pbwheels-hero .car-details-form-section .input-field-wrapper .input-field {
  width: calc(100% - 47px);
  border: 0;
  outline: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .car-details-form-section .input-field-wrapper .input-field {
    font-size: 16px;
    line-height: 28px;
  }
}
.pbwheels-hero .car-details-form-section .input-field-wrapper .input-field {
  color: #8A8A8A;
  margin-top: 20px;
}
.pbwheels-hero .car-details-form-section .input-field-wrapper .label {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: #000003;
  position: absolute;
  top: 7px;
  margin: 0;
  left: 82px;
  pointer-events: none;
}
.pbwheels-hero .car-details-form-section .input-field-wrapper .err {
  position: absolute;
  color: red;
  font-size: 12px;
  bottom: -17px;
  left: 0;
}
.pbwheels-hero .car-details-form-section .button {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .car-details-form-section .button {
    font-size: 16px;
    line-height: 28px;
  }
}
.pbwheels-hero .car-details-form-section .button {
  color: #101010;
  background: #fff;
  border-radius: 16px;
  padding: 23px 30px;
  border: 0;
  cursor: pointer;
  min-width: 200px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .car-details-form-section .button {
    padding: 10px 30px;
    min-width: 100%;
  }
}
.pbwheels-hero .car-details-form-section .button-wrapper {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .pbwheels-hero .car-details-form-section .button-wrapper {
    width: 100%;
  }
}

section .explore-more-section {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  section .explore-more-section {
    flex-direction: column;
  }
}
section .explore-more-section .explore-more {
  background: #252627;
  border: 2px solid #3A3B3B;
  box-shadow: 0px 4px 16px 0px rgba(37, 56, 88, 0.2);
  border-radius: 16px;
  padding: 20px 23px;
  margin: 0 53px 20px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  section .explore-more-section .explore-more {
    font-size: 16px;
    line-height: 28px;
  }
}
section .explore-more-section .explore-more {
  position: relative;
  width: 30%;
}
@media screen and (max-width: 1024px) {
  section .explore-more-section .explore-more {
    margin: 0 0 16px;
    width: 100%;
  }
}
section .explore-more-section .explore-more:hover {
  text-decoration: none;
}
section .explore-more-section .explore-more:nth-child(3n), section .explore-more-section .explore-more:last-child {
  margin-right: 0;
}
section .explore-more-section .explore-more .explore {
  background: url(../images/common/explore-more-icon.svg) no-repeat center/contain;
  width: 20px;
  height: 20px;
  display: inline-block;
  margin: 0 0px -4px 49px;
}
@media screen and (max-width: 1024px) {
  section .explore-more-section .explore-more .explore {
    position: absolute;
    right: 29px;
    margin: 0;
    top: 50%;
    transform: translate(0, -50%);
  }
}

.steps-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: center;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .steps-list {
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
    margin: 20px 0 0;
  }
}
.steps-list .step {
  width: 25%;
  margin: 0 100px 64px 0;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .steps-list .step {
    width: 100%;
    margin: 0 0 44px;
    display: flex;
    align-items: flex-start;
  }
  .steps-list .step .description.center {
    text-align: left;
  }
}
.steps-list .step::after {
  content: "";
  background: url(../images/articles/pariwahan-vehice-details-steps-icon.svg) no-repeat center/contain;
  width: 188px;
  height: 135px;
  position: absolute;
  top: -27px;
  right: -140px;
}
@media screen and (max-width: 1024px) {
  .steps-list .step::after {
    display: none;
  }
}
.steps-list .step:nth-child(3), .steps-list .step:last-child {
  margin-right: 0;
}
.steps-list .step:nth-child(3)::after, .steps-list .step:last-child::after {
  display: none;
}
.steps-list .step .number {
  border: 1px solid #262625;
  display: inline-block;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 50px;
  position: relative;
}
.steps-list .step .number::after {
  content: "";
  width: 22px;
  height: 34px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .steps-list .step .number {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    margin: 0 12px 0 0;
    border-radius: 50%;
    z-index: 2;
  }
  .steps-list .step .number::after {
    height: 12px;
    width: 12px;
    bottom: auto;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
.steps-list .step .number.step-1 {
  background: linear-gradient(180deg, #000003 50%, #221A4B 159.9%);
}
.steps-list .step .number.step-1::after {
  background: url(../images/articles/pariwahan-vehice-details-number-1-icon.svg) no-repeat center/contain;
  width: 13px;
}
@media screen and (max-width: 1024px) {
  .steps-list .step .number.step-1::after {
    width: 12px;
  }
}
.steps-list .step .number.step-2 {
  background: linear-gradient(180deg, #000003 38.54%, #36B37E 302.6%);
}
.steps-list .step .number.step-2::after {
  background: url(../images/articles/pariwahan-vehice-details-number-2-icon.svg) no-repeat center/contain;
}
.steps-list .step .number.step-3 {
  background: linear-gradient(180deg, #000003 57.81%, #01B8D9 203.12%);
}
.steps-list .step .number.step-3::after {
  background: url(../images/articles/pariwahan-vehice-details-number-3-icon.svg) no-repeat center/contain;
}
.steps-list .step .number.step-4 {
  background: linear-gradient(179.61deg, #0D0D0D 53.62%, #FFAD06 279.16%);
}
.steps-list .step .number.step-4::after {
  background: url(../images/articles/pariwahan-vehice-details-number-4-icon.svg) no-repeat center/contain;
  width: 20px;
}
@media screen and (max-width: 1024px) {
  .steps-list .step .number.step-4::after {
    width: 12px;
  }
}
.steps-list .step .number.step-5 {
  background: linear-gradient(180.67deg, #000003 35.59%, #E3497C 298.16%);
}
.steps-list .step .number.step-5::after {
  background: url(../images/articles/pariwahan-vehice-details-number-5-icon.svg) no-repeat center/contain;
}

.section-4 {
  padding: 100px 0 40px;
}

.section-5 .ordered-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  .section-5 .ordered-list {
    flex-direction: column;
  }
}
.section-5 .ordered-list li {
  width: 29%;
  flex-direction: column;
  align-items: stretch;
  margin: 0 27px 24px 0;
  border-radius: 18px;
  border: 1px solid #3A3B3B;
  padding: 30px 24px;
}
.section-5 .ordered-list li:nth-child(3n) {
  margin-right: 0;
}
.section-5 .ordered-list li:last-child {
  margin-right: 0;
  padding-top: 39px;
}
@media screen and (max-width: 1024px) {
  .section-5 .ordered-list li {
    width: 100%;
    margin: 0 0 27px;
    padding: 24px 20px;
  }
}
.section-5 .ordered-list li .number {
  width: auto;
  height: auto;
  border-radius: 0;
  margin: 0 0 15px;
  justify-content: flex-start;
}
.section-5 .ordered-list li .number::after {
  content: "Step " counter(number);
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-5 .ordered-list li .number::after {
    font-size: 16px;
    line-height: 28px;
  }
}
.section-5 .ordered-list li .description {
  color: rgba(255, 255, 255, 0.8);
}

.radio-pills {
  display: inline-block;
  width: 100%;
  margin-top: 10px;
  min-height: 190px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .radio-pills {
    padding: 0 20px;
  }
}
.radio-pills label {
  margin: 0 18px 30px 0;
  display: inline-block;
  cursor: pointer;
  width: 18%;
}
.radio-pills label:nth-child(5n) {
  margin-right: 0;
}
.radio-pills label input[type=radio] {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
}
.radio-pills label input[type=radio] + span {
  border-radius: 40px;
  box-shadow: none;
  display: inline-block;
  width: auto;
  padding: 8px 65px;
  align-items: center;
  border: 1px solid rgba(153, 153, 153, 0.4);
  font-weight: 500;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0;
  text-align: center;
  max-width: 200px;
  width: 100%;
}
.radio-pills label input[type=radio]:checked + span {
  background: #8728FE;
  font-weight: 500;
}

.state-city-list {
  display: flex;
  flex-wrap: wrap;
  margin: 30px 0 0;
}
.state-city-list .state {
  border: 1px solid rgba(153, 153, 153, 0.4);
  border-radius: 100px;
  width: 18%;
  margin: 0 29px 32px 0;
  padding: 8px;
  text-align: center;
  font-weight: 500;
  font-size: 12px;
  line-height: 28px;
  letter-spacing: 0;
  text-decoration: none;
  background: linear-gradient(149.05deg, rgba(153, 153, 153, 0.2) -3.46%, rgba(255, 255, 255, 0) 154.46%);
}
.state-city-list .state:nth-child(5n) {
  margin-right: 0;
}
.state-city-list .state.selected {
  background: #8728FE;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .state-city-list .state {
    width: 46%;
    margin: 0 26px 32px 0;
  }
  .state-city-list .state:nth-child(5n) {
    margin-right: 26px;
  }
  .state-city-list .state:nth-child(2n) {
    margin-right: 0;
  }
}
.state-city-list .state.view-all {
  background: conic-gradient(#181818 0 0) padding-box, linear-gradient(90deg, #3747fa, #bb06f7) border-box;
  border: 1px solid rgba(0, 0, 0, 0);
}

.city-widget-section .input-field-wrapper.search {
  border: 2px solid #4B4B4B;
  border-radius: 16px;
  padding: 16px 20px;
  margin: 0 0 50px;
  position: relative;
  display: flex;
  align-items: center;
}
.city-widget-section .input-field-wrapper.search::before {
  content: "";
  background: url(../images/common/search-icon.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  margin-right: 18px;
}
@media screen and (max-width: 1024px) {
  .city-widget-section .input-field-wrapper.search {
    margin: 0;
  }
}
.city-widget-section .input-field-wrapper.search .input-field {
  font-size: 16px;
  line-height: 28px;
  background: transparent;
  border: 0;
  border-left: 1px solid #D9D9D9;
  padding: 0 0 0 14px;
  width: 100%;
}

.documents-required-section .document-list {
  display: FLEX;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 0 30px;
  list-style: none;
  padding-left: 0;
}
.documents-required-section .document-list li {
  display: flex;
  align-items: CENTER;
  width: 27%;
  margin: 0 110px 44px 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .documents-required-section .document-list li {
    font-size: 16px;
    line-height: 28px;
  }
}
.documents-required-section .document-list li:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .documents-required-section .document-list li {
    width: 100%;
    margin: 0 0 30px;
  }
  .documents-required-section .document-list li:last-child {
    margin-bottom: 0;
  }
}
.documents-required-section .document-list li .tick {
  background: rgba(121, 242, 192, 0.2);
  width: 40px;
  height: 40px;
  border-radius: 8px;
  position: relative;
  display: FLEX;
  align-items: CENTER;
  justify-content: center;
  margin: 0 16px 0 0;
  flex-shrink: 0;
}
.documents-required-section .document-list li .tick::after {
  content: "";
  display: inline-block;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 17px;
  width: 9px;
  border-bottom: 3px solid #13c18b;
  border-right: 3px solid #13c18b;
  margin-top: 0;
}

.section-7 .section-7-type {
  background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.16) 25.25%, rgba(83, 84, 108, 0.16) 98.05%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(119, 124, 247, 0.2);
  margin: 0 0 50px;
}
.section-7 .section-7-type:last-child {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type {
    padding: 20px 16px;
    margin: 0 0 20px;
  }
}
.section-7 .section-7-type .left {
  position: relative;
}
.section-7 .section-7-type .left::before {
  content: "";
  background: linear-gradient(90deg, #3639FF 13.51%, rgba(108, 85, 255, 0) 89.18%, rgba(99, 101, 255, 0) 89.18%);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.2509803922) inset;
  width: 2px;
  height: 100%;
  position: absolute;
  left: 20px;
  top: 0;
  filter: blur(1px);
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type .left::before {
    left: 15px;
  }
}
.section-7 .section-7-type .left .heading {
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
  color: #CAD1E9;
  position: relative;
  margin: 0 0 42px;
  display: flex;
  align-items: flex-start;
}
.section-7 .section-7-type .left .heading::before {
  content: "";
  background: url(../images/common/blue-bg-down-arrow-icon.svg) no-repeat center/contain;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 20px;
  flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type .left .heading {
    font-size: 18px;
    margin: 0 0 20px;
  }
  .section-7 .section-7-type .left .heading::before {
    width: 30px;
    height: 30px;
    margin-right: 12px;
  }
}
.section-7 .section-7-type .left .description {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type .left .description {
    font-size: 18px;
    line-height: 32px;
  }
}
.section-7 .section-7-type .left .description {
  color: #CAC6DD;
  position: relative;
  font-weight: 400;
  padding-left: 60px;
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type .left .description {
    font-size: 16px;
    padding-left: 42px;
  }
}
.section-7 .section-7-type .left .check-list {
  margin: 0;
  padding: 0 0 0 60px;
  list-style: none;
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type .left .check-list {
    padding: 0 0 0 42px;
  }
}
.section-7 .section-7-type .left .check-list li {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type .left .check-list li {
    font-size: 18px;
    line-height: 32px;
  }
}
.section-7 .section-7-type .left .check-list li {
  color: #CAC6DD;
  position: relative;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  margin: 0 0 24px;
}
.section-7 .section-7-type .left .check-list li:last-child {
  margin-bottom: 0;
}
.section-7 .section-7-type .left .check-list li .tick {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-right: 16px;
  margin-top: 6px;
}
.section-7 .section-7-type .left .check-list li .tick::before {
  content: "";
  background: url(../images/common/white-bg-check-icon.svg) no-repeat center/contain;
  width: 28px;
  height: 28px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type .left .check-list li {
    font-size: 16px;
    margin: 0 0 12px;
  }
  .section-7 .section-7-type .left .check-list li .tick {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  .section-7 .section-7-type .left .check-list li .tick::before {
    width: 20px;
    height: 20px;
  }
}
.section-7 .section-7-type .left .button {
  margin: 42px 0 0 60px;
}
@media screen and (max-width: 1024px) {
  .section-7 .section-7-type .left .button {
    margin: 20px 0 0 42px;
    max-width: 240px;
  }
}
.section-7 .section-7-type .image {
  text-align: center;
}
.section-7 .section-7-type .image img {
  margin: 0 auto;
}

.with-vector {
  position: relative;
}
.with-vector::before {
  content: "";
  background: url(../images/common/black-vector.svg) no-repeat center/contain;
  position: absolute;
  left: 0;
  top: 0;
  width: 406px;
  height: 496px;
  z-index: 0;
}
.with-vector .container {
  z-index: 1;
  position: relative;
}

.section-8 .flex-row {
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .section-8 .flex-row .left {
    margin-bottom: 24px;
  }
}
.section-8 .flex-row .section-8-type {
  border: 1px solid #DEE3F0;
  background: #26272A;
  border-radius: 16px;
  padding: 38px;
}
@media screen and (max-width: 1024px) {
  .section-8 .flex-row .section-8-type {
    padding: 20px 16px;
  }
}
.section-8 .flex-row .section-8-type .name-logo {
  display: flex;
  align-items: center;
  margin: 0 0 54px;
}
@media screen and (max-width: 1024px) {
  .section-8 .flex-row .section-8-type .name-logo {
    margin: 0 0 38px;
  }
}
.section-8 .flex-row .section-8-type .name-logo .name {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.015em;
  text-transform: capitalize;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-8 .flex-row .section-8-type .name-logo .name {
    font-size: 18px;
    line-height: 32px;
  }
}
.section-8 .flex-row .section-8-type .name-logo .name {
  margin-left: 24px;
}
.section-8 .flex-row .section-8-type .steps .description {
  margin-bottom: 16px;
}

.section-9 .section-9-type {
  background: linear-gradient(80.42deg, rgba(0, 0, 0, 0.16) 25.25%, rgba(83, 84, 108, 0.16) 98.05%);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(119, 124, 247, 0.2);
  margin: 0 0 50px;
}
.section-9 .section-9-type:last-child {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .section-9 .section-9-type {
    padding: 20px 16px;
    margin: 0 0 20px;
  }
}
.section-9 .section-9-type .header {
  position: relative;
  margin: 0 0 50px;
}
.section-9 .section-9-type .header::before {
  content: "";
  background: url(../images/common/blue-bg-down-arrow-icon.svg) no-repeat center/contain;
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 20px;
  flex-shrink: 0;
  position: absolute;
}
@media screen and (max-width: 1024px) {
  .section-9 .section-9-type .header {
    margin-bottom: 20px;
  }
  .section-9 .section-9-type .header::before {
    width: 30px;
    height: 30px;
    margin-right: 12px;
  }
}
.section-9 .section-9-type .header .heading {
  font-weight: 400;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
  color: #CAD1E9;
  position: relative;
  margin: 0 0 12px;
  padding-left: 60px;
}
@media screen and (max-width: 1024px) {
  .section-9 .section-9-type .header .heading {
    font-size: 18px;
    margin: 0 0 20px;
    padding-left: 45px;
  }
}
.section-9 .section-9-type .header .sub-heading {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-9 .section-9-type .header .sub-heading {
    font-size: 18px;
    line-height: 32px;
  }
}
.section-9 .section-9-type .header .sub-heading {
  color: #CAC6DD;
  font-weight: 400;
  text-transform: none;
  padding-left: 60px;
}
@media screen and (max-width: 1024px) {
  .section-9 .section-9-type .header .sub-heading {
    font-size: 16px;
    padding-left: 45px;
  }
}
.section-9 .section-9-type .steps {
  margin: 0;
  padding: 0 0 0 0;
  list-style: none;
}
.section-9 .section-9-type .steps li {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-9 .section-9-type .steps li {
    font-size: 18px;
    line-height: 32px;
  }
}
.section-9 .section-9-type .steps li {
  color: #CAC6DD;
  position: relative;
  font-weight: 400;
  display: flex;
  align-items: flex-start;
  margin: 0 0 24px;
}
.section-9 .section-9-type .steps li:last-child {
  margin-bottom: 0;
}
.section-9 .section-9-type .steps li .tick {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-block;
  margin-right: 16px;
  margin-top: 6px;
}
.section-9 .section-9-type .steps li .tick::before {
  content: "";
  background: url(../images/common/grey-bg-check-icon.svg) no-repeat center/contain;
  width: 28px;
  height: 28px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .section-9 .section-9-type .steps li {
    font-size: 16px;
    margin: 0 0 12px;
  }
  .section-9 .section-9-type .steps li .tick {
    width: 20px;
    height: 20px;
    margin-right: 12px;
  }
  .section-9 .section-9-type .steps li .tick::before {
    width: 20px;
    height: 20px;
  }
}

.video-wrapper {
  text-align: center;
}
.video-wrapper .car-hero-video {
  object-fit: cover;
  width: 385px;
  height: 211px;
}
@media screen and (max-width: 1024px) {
  .video-wrapper .car-hero-video {
    width: 255px;
    height: 188px;
  }
}

.home-page-form-section {
  border: 2px solid #4B4B4B;
  border-radius: 16px;
  margin: 70px 0 0;
  padding: 24px 50px 40px;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section {
    margin: 24px 0 0;
    padding: 16px 16px 20px;
  }
}
.home-page-form-section .tabs {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tabs {
    width: 100%;
    overflow-x: scroll;
    scrollbar-width: none;
  }
}
.home-page-form-section .tabs .tab-button {
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tabs .tab-button {
    font-size: 16px;
    line-height: 28px;
  }
}
.home-page-form-section .tabs .tab-button {
  color: #fff;
  text-transform: none;
  background: none;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 9px 24px;
  border-bottom: 6px solid transparent;
}
.home-page-form-section .tabs .tab-button img {
  margin-right: 12px;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tabs .tab-button {
    padding: 0 0px 13px;
    border-bottom: 3px solid transparent;
    flex-shrink: 0;
    margin-right: 18px;
    font-size: 14px;
  }
  .home-page-form-section .tabs .tab-button img {
    max-width: 26px;
    margin-right: 4px;
  }
}
.home-page-form-section .tabs .tab-button.active {
  border-bottom: 6px solid #7E94F1;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tabs .tab-button.active {
    border-bottom: 3px solid #7E94F1;
  }
}
.home-page-form-section .tab-content-item.active {
  display: flex;
  align-items: center;
  margin: 32px 0 0;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tab-content-item.active {
    flex-direction: column;
  }
}
.home-page-form-section .tab-content-item.active .input-field-wrapper {
  border: 2px solid #4B4B4B;
  background: #101010;
  border-radius: 16px;
  width: 80%;
  margin-right: 20px;
  position: relative;
  height: 74px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tab-content-item.active .input-field-wrapper {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.home-page-form-section .tab-content-item.active .input-field-wrapper .india-tag {
  background: url(../images/common/ind-number-plate-icon.svg) no-repeat center/contain;
  width: 47px;
  height: 42px;
  padding-right: 18px;
  border-right: 1px solid #D9D9D9;
  margin-right: 14px;
  flex-shrink: 0;
}
.home-page-form-section .tab-content-item.active .input-field-wrapper .input-field {
  width: calc(100% - 47px);
  border: 0;
  outline: 0;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tab-content-item.active .input-field-wrapper .input-field {
    font-size: 16px;
    line-height: 28px;
  }
}
.home-page-form-section .tab-content-item.active .input-field-wrapper .input-field {
  color: #8A8A8A;
  margin-top: 20px;
  background: transparent;
}
.home-page-form-section .tab-content-item.active .input-field-wrapper .label {
  font-family: Plus Jakarta Sans;
  font-weight: 400;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7490196078);
  position: absolute;
  top: 7px;
  margin: 0;
  left: 82px;
  pointer-events: none;
}
.home-page-form-section .tab-content-item.active .input-field-wrapper .err {
  position: absolute;
  color: red;
  font-size: 12px;
  bottom: -17px;
  left: 0;
}
.home-page-form-section .tab-content-item.active .button-wrapper {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tab-content-item.active .button-wrapper {
    width: auto;
  }
}
.home-page-form-section .tab-content-item.active .button {
  color: #101010;
  background: #fff;
  border-radius: 16px;
  padding: 23px 30px;
  border: 0;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section .tab-content-item.active .button {
    padding: 12px 24px;
  }
}
.home-page-form-section #tab2.active,
.home-page-form-section #tab3.active,
.home-page-form-section #tab4.active {
  display: block;
}
.home-page-form-section #tab2.active .tab2-form-row,
.home-page-form-section #tab3.active .tab2-form-row,
.home-page-form-section #tab4.active .tab2-form-row {
  display: flex;
  align-items: center;
  gap: 20px;
}
.home-page-form-section #tab2.active .input-field-wrapper,
.home-page-form-section #tab3.active .input-field-wrapper,
.home-page-form-section #tab4.active .input-field-wrapper {
  width: calc((100% - 210px - 40px) / 2);
  margin-right: 0;
}
.home-page-form-section #tab2.active .tab2-mobile-wrapper .mobile-tag,
.home-page-form-section #tab3.active .tab2-mobile-wrapper .mobile-tag,
.home-page-form-section #tab4.active .tab2-mobile-wrapper .mobile-tag {
  width: 47px;
  height: 42px;
  padding-right: 18px;
  border-right: 1px solid #D9D9D9;
  margin-right: 14px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-page-form-section #tab2.active .tab2-mobile-wrapper .mobile-tag img,
.home-page-form-section #tab3.active .tab2-mobile-wrapper .mobile-tag img,
.home-page-form-section #tab4.active .tab2-mobile-wrapper .mobile-tag img {
  width: 20px;
  height: 20px;
  display: block;
}
.home-page-form-section #tab2.active .tab2-mobile-wrapper .input-field,
.home-page-form-section #tab3.active .tab2-mobile-wrapper .input-field,
.home-page-form-section #tab4.active .tab2-mobile-wrapper .input-field {
  width: calc(100% - 47px);
}
.home-page-form-section #tab2.active .tab2-mobile-wrapper .label,
.home-page-form-section #tab3.active .tab2-mobile-wrapper .label,
.home-page-form-section #tab4.active .tab2-mobile-wrapper .label {
  left: 82px;
}
.home-page-form-section #tab2.active .button-wrapper,
.home-page-form-section #tab3.active .button-wrapper,
.home-page-form-section #tab4.active .button-wrapper {
  width: 210px;
  flex-shrink: 0;
}
.home-page-form-section #tab2.active .button,
.home-page-form-section #tab3.active .button,
.home-page-form-section #tab4.active .button {
  width: 100%;
  padding: 23px 24px;
}
@media screen and (max-width: 1024px) {
  .home-page-form-section #tab2.active .tab2-form-row,
  .home-page-form-section #tab3.active .tab2-form-row,
  .home-page-form-section #tab4.active .tab2-form-row {
    flex-direction: column;
    gap: 0;
  }
  .home-page-form-section #tab2.active .input-field-wrapper,
  .home-page-form-section #tab3.active .input-field-wrapper,
  .home-page-form-section #tab4.active .input-field-wrapper {
    width: 100%;
  }
  .home-page-form-section #tab2.active .button-wrapper,
  .home-page-form-section #tab3.active .button-wrapper,
  .home-page-form-section #tab4.active .button-wrapper {
    width: 100%;
    text-align: center;
  }
  .home-page-form-section #tab2.active .button-wrapper .button,
  .home-page-form-section #tab3.active .button-wrapper .button,
  .home-page-form-section #tab4.active .button-wrapper .button {
    padding: 12px 24px;
  }
}

.tab-content-item {
  display: none;
}

.tab-content-item.active {
  display: block;
}

.section-10 .section-10-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.section-10 .section-10-list .type {
  width: 23%;
  color: #fff;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0);
  border-radius: 20px;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px 24px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.0784313725), 0 20px 40px rgba(0, 0, 0, 0.6);
  margin: 0 30px 0 0;
}
.section-10 .section-10-list .type:last-child {
  margin-right: 0;
}
.section-10 .section-10-list .type::before {
  content: "";
  z-index: 0;
  border-radius: 100%;
  width: 50px;
  height: 24px;
  position: absolute;
  bottom: 15px;
  right: 35px;
}
.section-10 .section-10-list .type.blue::before {
  filter: blur(36px);
  background: rgba(22, 243, 231, 0);
  box-shadow: 0 0 27px 49px rgba(17, 243, 231, 0.0901960784);
}
.section-10 .section-10-list .type.green::before {
  filter: blur(36px);
  background: rgba(134, 175, 0, 0);
  box-shadow: 0 0 27px 49px rgba(134, 175, 0, 0.1490196078);
}
.section-10 .section-10-list .type.green .coming-soon-tag {
  background: linear-gradient(91deg, #2e341a, #dbfa7b);
}
.section-10 .section-10-list .type.purple::before {
  filter: blur(36px);
  background: rgba(126, 148, 241, 0);
  box-shadow: 0 0 27px 49px rgba(126, 148, 241, 0.0901960784);
}
.section-10 .section-10-list .type.purple .coming-soon-tag {
  background: linear-gradient(91deg, #1a2348, #3459f4);
}
.section-10 .section-10-list .type.pink::before {
  filter: blur(36px);
  background: rgba(248, 35, 138, 0);
  box-shadow: 0 0 27px 49px rgba(248, 35, 138, 0.1098039216);
}
.section-10 .section-10-list .type.pink .coming-soon-tag {
  background: linear-gradient(91deg, #3a1527, #eb2081);
}
@media screen and (max-width: 1024px) {
  .section-10 .section-10-list .type {
    margin: 0 18px 18px 0;
    width: 47%;
    padding: 16px 12px;
  }
  .section-10 .section-10-list .type:nth-child(2n) {
    margin-right: 0;
  }
}
.section-10 .section-10-list .type img {
  margin: 0 0 19px;
}
@media screen and (max-width: 1024px) {
  .section-10 .section-10-list .type img {
    max-width: 42px;
    height: auto;
    margin: 0 0 12px;
  }
}
.section-10 .section-10-list .type .h3-heading {
  font-weight: 400;
  font-size: 22px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-10 .section-10-list .type .h3-heading {
    font-size: 14px;
    line-height: 20px;
  }
}
.section-10 .section-10-list .type .h3-heading {
  margin: 0 0 7px;
}
@media screen and (max-width: 1024px) {
  .section-10 .section-10-list .type .h3-heading {
    font-size: 16px;
  }
}
.section-10 .section-10-list .type .coming-soon-tag {
  color: #fff;
  text-align: center;
  border-radius: 0;
  width: 122px;
  height: 30px;
  padding: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 30px;
  display: inline-block;
  position: absolute;
  top: 32px;
  right: 0;
  overflow: hidden;
}
.section-10 .section-10-list .type .coming-soon-tag:before {
  content: "";
  border-top: 15px solid rgba(0, 0, 0, 0);
  border-bottom: 15px solid rgba(0, 0, 0, 0);
  border-left: 14px solid #101010;
  width: 0;
  height: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .section-10 .section-10-list .type .coming-soon-tag {
    width: 85px;
    height: 22px;
    font-size: 10px;
    line-height: 22px;
    top: 17px;
  }
  .section-10 .section-10-list .type .coming-soon-tag::before {
    border-top: 11px solid rgba(0, 0, 0, 0);
    border-bottom: 11px solid rgba(0, 0, 0, 0);
    border-left: 9px solid #1b1b1b;
  }
}
.section-10 .section-10-list .type .description {
  background: rgba(255, 255, 255, 0.1215686275);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  color: #fff;
  padding: 9px 12px;
  border-radius: 12px;
  margin: 0 0 74px;
  display: inline-block;
  width: fit-content;
}
@media screen and (max-width: 1024px) {
  .section-10 .section-10-list .type .description {
    background: transparent;
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    letter-spacing: 0;
    color: #8A8A8A;
    padding: 0;
    border-radius: 0;
    margin: 0 0 12px;
  }
}
.section-10 .section-10-list .type .link {
  font-weight: 700;
  font-size: 20px;
  line-height: 36px;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-10 .section-10-list .type .link {
    font-size: 18px;
    line-height: 32px;
  }
}
.section-10 .section-10-list .type .link {
  font-weight: 500;
  position: relative;
  display: inline-block;
}
.section-10 .section-10-list .type .link::after {
  content: "";
  border: solid #fff;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transition: all 0.2s ease-out;
  margin: 0 0 0px 7px;
  position: absolute;
  top: 14px;
  transform: rotate(-45deg);
}
.section-10 .section-10-list .type .link:hover {
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .section-10 .section-10-list .type .link {
    font-size: 12px;
  }
  .section-10 .section-10-list .type .link::after {
    border-width: 0 1px 1px 0;
    padding: 2px;
    margin: 0 0 0px 5px;
  }
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  margin: 20px 0 0;
}
@media screen and (max-width: 1024px) {
  .city-list {
    margin: 0 0 20px;
    justify-content: center;
  }
}
.city-list .city {
  margin: 73px 64px 0 0;
  width: 25%;
  text-align: center;
}
.city-list .city:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .city-list .city {
    margin: 37px 40px 0 0;
  }
}
.city-list .city .image {
  width: 108px;
  height: 80px;
  background: #000000;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .city-list .city .image {
    width: 75px;
    height: 55px;
  }
  .city-list .city .image img {
    max-width: 100%;
    height: 34px;
  }
}
.city-list .city .title {
  text-align: center;
  margin: 8px 0 0;
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.015em;
  text-transform: capitalize;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .city-list .city .title {
    font-size: 18px;
    line-height: 32px;
  }
}
.city-list .city .title {
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .city-list .city .title {
    font-size: 14px;
    line-height: 24px;
  }
}

.section-11-list {
  display: flex;
  margin: 96px 0 0;
}
@media screen and (max-width: 1024px) {
  .section-11-list {
    margin: 20px 0 0;
    flex-wrap: wrap;
  }
}
.section-11-list .type {
  text-align: center;
  background: radial-gradient(circle at bottom, #1f1f1f, #292929 70%);
  border: 1px solid #494949;
  border-radius: 150px;
  width: 284px;
  min-height: 360px;
  padding: 70px 15px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 120px rgba(0, 0, 0, 0.6);
  margin-right: 25px;
}
.section-11-list .type:last-child {
  margin-right: 0;
}
.section-11-list .type::before {
  content: "";
  z-index: 0;
  border-radius: 100%;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 40px;
  left: 0;
}
.section-11-list .type::after {
  content: "";
  z-index: 0;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  position: absolute;
  bottom: 60px;
  right: 70px;
}
.section-11-list .type.green:before {
  filter: blur(36px);
  background: #15b49b;
  box-shadow: 0 0 30px 26px #1b6b5e;
}
.section-11-list .type.green::after {
  filter: blur(36px);
  background: #15b49b;
  box-shadow: 0 0 50px 59px rgba(27, 107, 94, 0.5803921569);
}
.section-11-list .type.yellow::before {
  filter: blur(36px);
  background: rgba(217, 252, 101, 0.4392156863);
  box-shadow: 0 0 30px 26px rgba(217, 252, 101, 0.4392156863);
}
.section-11-list .type.yellow::after {
  filter: blur(36px);
  background: rgba(217, 252, 101, 0.4392156863);
  box-shadow: 0 0 50px 59px rgba(217, 252, 101, 0.231372549);
}
.section-11-list .type.purple::before {
  filter: blur(36px);
  background: rgba(207, 67, 246, 0.4588235294);
  box-shadow: 0 0 30px 26px rgba(207, 67, 246, 0.4588235294);
}
.section-11-list .type.purple::after {
  filter: blur(36px);
  background: rgba(207, 67, 246, 0.4588235294);
  box-shadow: 0 0 50px 59px rgba(207, 67, 246, 0.2117647059);
}
.section-11-list .type.blue::before {
  filter: blur(36px);
  background: rgba(23, 183, 250, 0.5215686275);
  box-shadow: 0 0 30px 26px rgba(23, 183, 250, 0.5215686275);
}
.section-11-list .type.blue::after {
  filter: blur(36px);
  background: rgba(23, 183, 250, 0.5215686275);
  box-shadow: 0 0 50px 59px rgba(23, 183, 250, 0.3098039216);
}
.section-11-list .type.translate-y {
  transform: translateY(-30px);
}
@media screen and (max-width: 1024px) {
  .section-11-list .type {
    width: 46%;
    margin: 0 20px 20px 0;
    padding: 20px 10px;
    min-height: auto;
  }
  .section-11-list .type:nth-child(2n) {
    margin-right: 0;
  }
  .section-11-list .type.translate-y {
    transform: none;
  }
  .section-11-list .type::after {
    width: 24px;
    height: 11px;
    bottom: 8px;
    right: 0;
  }
}
.section-11-list .type .image {
  text-align: center;
}
.section-11-list .type .image img {
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .section-11-list .type .image img {
    max-width: 47px;
  }
}
.section-11-list .type h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0.015em;
  text-transform: capitalize;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .section-11-list .type h3 {
    font-size: 18px;
    line-height: 32px;
  }
}
.section-11-list .type h3 {
  font-weight: 600;
  margin: 22px 0 0;
}
@media screen and (max-width: 1024px) {
  .section-11-list .type h3 {
    margin: 14px 0 0;
    font-size: 16px;
    line-height: 28px;
  }
}
.section-11-list .type .description {
  margin: 10px 0 0;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .section-11-list .type .description {
    font-size: 12px;
    line-height: 1.6;
  }
}

.why-choose-pbwheels-section.with-black-bg {
  margin: 0;
}
.why-choose-pbwheels-section .left > .title, .why-choose-pbwheels-section .right > .title {
  font-weight: 700;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0%;
  color: #fff;
  margin: 0 0 16px;
}
@media screen and (max-width: 1024px) {
  .why-choose-pbwheels-section .left .image img, .why-choose-pbwheels-section .right .image img {
    margin: 24px auto 0 !important;
  }
}
.why-choose-pbwheels-section .flex-row {
  margin: 0 auto 50px;
}
.why-choose-pbwheels-section .flex-row:last-child {
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .why-choose-pbwheels-section .flex-row {
    margin: 60px auto 0;
  }
  .why-choose-pbwheels-section .flex-row:last-child {
    margin-top: 50px;
  }
}

.what-we-offer-section.with-grey-bg {
  margin: 0;
}
.what-we-offer-section .left {
  margin-right: 0;
}
.what-we-offer-section .ordered-list {
  margin: 68px 0 0;
}
@media screen and (max-width: 1024px) {
  .what-we-offer-section .ordered-list {
    margin: 20px 0 0;
  }
}
.what-we-offer-section .ordered-list.number-with-left-line li {
  align-items: flex-start;
  flex-direction: column;
  margin: 0 40px 60px 0;
}
@media screen and (max-width: 1024px) {
  .what-we-offer-section .ordered-list.number-with-left-line li {
    margin: 0 0 32px;
  }
}
.what-we-offer-section .ordered-list.number-with-left-line li:nth-child(2n) {
  margin-right: 0;
}
.what-we-offer-section .ordered-list.number-with-left-line li .title {
  width: auto;
  height: auto;
  border-radius: 0;
  margin: 0 0 9px;
  font-weight: 700;
  font-size: 30px;
  line-height: 100%;
  letter-spacing: 0;
  border-left: 4px solid #7100CB;
  padding: 3px 0 3px 10px;
}
@media screen and (max-width: 1024px) {
  .what-we-offer-section .ordered-list.number-with-left-line li .title {
    font-size: 16px;
  }
}
.what-we-offer-section .ordered-list.number-with-left-line li .description {
  margin-left: 14px;
  max-width: 460px;
}

.privacy-container {
  padding: 1rem;
}
.privacy-container h1 {
  font-size: 28px;
  line-height: 42px;
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", "Plus Jakarta Sans Fallback";
}
.privacy-container h2 {
  font-size: 24px;
  line-height: 34px;
  margin: 0 0 8px;
  font-family: "Plus Jakarta Sans", "Plus Jakarta Sans Fallback";
}
.privacy-container p {
  font-size: 16px;
  line-height: 28px;
  font-family: "Plus Jakarta Sans", "Plus Jakarta Sans Fallback";
}
.privacy-container ul li, .privacy-container ol li {
  font-size: 14px;
  line-height: 20px;
  font-family: "Plus Jakarta Sans", "Plus Jakarta Sans Fallback";
}

body:has(.privacy-container) .pbwheels.top_banner, body:has(.privacy-container) .login-modal, body:has(.privacy-container) .pbwheels-footer {
  display: none;
}

.vertical-list {
  list-style: none;
  padding: 0;
}
.vertical-list li {
  border-bottom: 1px solid rgba(196, 196, 196, 0.3019607843);
  padding-bottom: 33px;
  margin-bottom: 40px;
}
.vertical-list li:last-child {
  border: 0;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 1024px) {
  .vertical-list li {
    padding-bottom: 16px;
    margin-bottom: 20px;
  }
}
.vertical-list li .title {
  font-weight: 500;
  font-size: 30px;
  line-height: 40px;
  letter-spacing: 0%;
  color: #fff;
  margin: 0 0 12px;
}
@media screen and (max-width: 1024px) {
  .vertical-list li .title {
    font-weight: 700;
    font-size: 20px;
    line-height: 36px;
    letter-spacing: 0;
    color: #fff;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .vertical-list li .title {
    font-size: 18px;
    line-height: 32px;
  }
}

/*# sourceMappingURL=style.css.map */
