/* _variables.scss */
/* Color Variables */
/* Font Variables */
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-MediumItalic.ttf") format("truetype");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-SemiboldItalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-BoldItalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-LightItalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Extralight.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-ExtralightItalic.ttf") format("truetype");
  font-weight: 200;
  font-style: italic;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-Variable.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: GeneralSans;
  src: url("../fonts/GeneralSans/GeneralSans-VariableItalic.ttf") format("truetype");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: ObjectSans;
  src: url("../fonts/ObjectSans/ObjectSansRegular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: ObjectSans;
  src: url("../fonts/ObjectSans/ObjectSansSlanted.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: ObjectSans;
  src: url("../fonts/ObjectSans/ObjectSansHeavy.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: ObjectSans;
  src: url("../fonts/ObjectSans/ObjectSansHeavySlanted.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
}
/*================  Border Radius Css Start here    ========================*/
*,
*::before,
*::after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
}

body {
  padding: 0 !important;
  margin: 0;
  font-family: GeneralSans;
  line-height: 1.5;
  background-color: #fff;
  font-weight: 400;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #9454ff #f1eefd;
}
*::-webkit-scrollbar {
  width: 8px;
  background: #f1eefd;
  border-radius: 8px;
}
*::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #9454ff 0%, #731eff 100%);
  border-radius: 8px;
  min-height: 40px;
}
*::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(135deg, #731eff 0%, #9454ff 100%);
}
*::-webkit-scrollbar-track {
  background: #f1eefd;
  border-radius: 8px;
}

img,
a,
input,
nav,
textarea,
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

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

a {
  display: inline-block;
  color: #21094a;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #731eff;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input::-ms-reveal,
input::-ms-clear {
  display: none;
}

[type=number] {
  -moz-appearance: none;
  -webkit-appearance: none;
          appearance: none;
}

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

.container {
  max-width: 1264px;
}

.py-100 {
  padding: 100px 0;
}
@media only screen and (max-width: 1279px) {
  .py-100 {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .py-100 {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .py-100 {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .py-100 {
    padding: 50px 0;
  }
}

.pt-100 {
  padding-top: 100px;
}
@media only screen and (max-width: 1279px) {
  .pt-100 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .pt-100 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .pt-100 {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .pt-100 {
    padding-top: 50px;
  }
}

.pb-100 {
  padding-bottom: 100px;
}
@media only screen and (max-width: 1279px) {
  .pb-100 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .pb-100 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .pb-100 {
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .pb-100 {
    padding-bottom: 50px;
  }
}

.my-100 {
  margin: 100px 0;
}
@media only screen and (max-width: 1279px) {
  .my-100 {
    margin: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .my-100 {
    margin: 70px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .my-100 {
    margin: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .my-100 {
    margin: 50px 0;
  }
}

.mb-100 {
  margin-bottom: 100px;
}
@media only screen and (max-width: 1279px) {
  .mb-100 {
    margin-bottom: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .mb-100 {
    margin-bottom: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .mb-100 {
    margin-bottom: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .mb-100 {
    margin-bottom: 50px;
  }
}

textarea {
  resize: none;
}

.margin-top-120 {
  margin-top: 120px;
}
@media only screen and (max-width: 767px) {
  .margin-top-120 {
    margin-top: 80px;
  }
}

.section-head {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #534c60;
}
.section-head strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .section-head {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .section-head {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .section-head {
    font-size: 18px;
  }
}
.section-head .section-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(32px + 10 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 16px;
  color: #21094a;
}
.section-head .section-title strong {
  font-weight: 600;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .section-head .section-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440.5px) {
  .section-head .section-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .section-head .section-title {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 1024px) {
  .section-head .section-title {
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .section-head .section-title {
    margin-bottom: 8px;
  }
}
.section-head .section-title strong {
  color: #731eff;
}
.section-head .section-title:last-child {
  margin-bottom: 0;
}
.section-head p strong {
  color: #21094a;
}
.section-head.head-col-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.section-head.mb-50 {
  margin-bottom: 50px;
}
@media only screen and (max-width: 1199px) {
  .section-head.mb-50 {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .section-head.mb-50 {
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 767px) {
  .section-head.mb-50 {
    margin-bottom: 30px;
  }
}

.btn-group {
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  min-height: 50px;
  min-width: 190px;
  border-radius: 70px;
  flex: none;
  border: 1px solid #21094a;
  background-color: #21094a;
  color: #fff;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .btn-primary {
    min-height: 46px;
  }
}
.btn-primary:hover {
  background-color: #4B05BE;
  border-color: #4B05BE;
  color: #fff;
}
.btn-primary.disabled, .btn-primary[disabled] {
  background-color: #D1D5DB;
  border-color: #D1D5DB;
  color: #D1D5DB;
  pointer-events: none;
  cursor: none;
}
@media only screen and (max-width: 1024px) {
  .btn-primary {
    min-width: 100px;
  }
}

.btn-secondary {
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  min-height: 50px;
  min-width: 190px;
  border-radius: 70px;
  flex: none;
  border: 1px solid #21094a;
  background-color: #fff;
  color: #21094a;
  border-radius: 70px;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .btn-secondary {
    min-height: 46px;
  }
}
.btn-secondary:hover {
  background-color: #21094a;
  color: #fff;
}
.btn-secondary.disabled, .btn-secondary[disabled] {
  background-color: #D1D5DB;
  border-color: #D1D5DB;
  color: #D1D5DB;
  pointer-events: none;
  cursor: none;
}
@media only screen and (max-width: 1024px) {
  .btn-secondary {
    min-width: 100px;
  }
}

.margin-top-10 {
  margin-top: 10px;
}

.margin-top-20 {
  margin-top: 20px;
}

.margin-top-30 {
  margin-top: 30px;
}

.fix-square {
  position: absolute;
  top: 0;
  left: 0;
  height: 340px;
  width: 100%;
  background-color: #f1eefd;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: -1;
}

h1.titleh1 {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(32px + 10 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  margin-bottom: 38px;
  font-weight: 600;
}
h1.titleh1 strong {
  font-weight: 600;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  h1.titleh1 {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440.5px) {
  h1.titleh1 {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  h1.titleh1 {
    line-height: 1.2;
  }
}
@media screen and (max-width: 767px) {
  h1.titleh1 {
    margin-bottom: 24px;
  }
}

.connect-box-wrap .money-connection-box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
  z-index: 1;
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box {
    grid-template-columns: repeat(1, 1fr);
    gap: 10px;
  }
}
.connect-box-wrap .money-connection-box .money-connection {
  background-color: #f1eefd;
  padding: 30px 40px;
  flex: 1;
  border-radius: 30px;
}
@media screen and (max-width: 1279px) {
  .connect-box-wrap .money-connection-box .money-connection {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .connect-box-wrap .money-connection-box .money-connection {
    border-radius: 18px;
  }
}
@media screen and (max-width: 1280px) {
  .connect-box-wrap .money-connection-box .money-connection {
    padding: 20px 30px;
  }
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection {
    padding: 20px;
  }
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connection {
    width: 100%;
    flex: 100%;
  }
}
@media screen and (max-width: 767px) {
  .connect-box-wrap .money-connection-box .money-connection {
    padding: 15px;
  }
}
.connect-box-wrap .money-connection-box .money-connection.gradient1 {
  background: linear-gradient(90deg, rgb(229, 213, 255) 0%, rgb(232, 221, 255) 100%);
}
.connect-box-wrap .money-connection-box .money-connection.gradient1 .bootstrap-select.disabled {
  cursor: auto !important;
  width: auto !important;
}
.connect-box-wrap .money-connection-box .money-connection.gradient2 {
  background: linear-gradient(90deg, rgb(233, 223, 255) 0%, rgb(237, 232, 255) 100%);
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap p {
  font-size: 16px;
  line-height: 100%;
  font-weight: 500;
  margin-bottom: 0;
  color: #534c60;
  font-family: GeneralSans;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap p {
    font-size: 14px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select {
  width: 118px;
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle {
  background-color: rgba(250, 247, 255, 0.6);
  border-color: rgba(250, 247, 255, 0.6);
  border-radius: 30px;
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  margin-bottom: 0;
  color: #21094a;
  font-family: GeneralSans;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle {
    font-size: 14px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle::after {
  background: url(../images/down-arrow.svg) no-repeat center center;
  background-size: 100% 100%;
  border: 0;
  height: 9px;
  width: 18px;
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle:focus {
  outline: 0 !important;
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
  font-size: 16px;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .bootstrap-select .dropdown-toggle .filter-option .filter-option-inner {
    font-size: 14px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .currency-flag {
  font-size: 16px;
  line-height: 22px;
  font-weight: 500;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f1eefd;
  padding: 10px 12px;
  border-radius: 30px;
  color: #21094a;
  gap: 6px;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .currency-flag {
    font-size: 14px;
    padding: 8px 10px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .currency-flag img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .send-receive-wrap .currency-flag img {
    width: 20px;
    height: 20px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .input-value {
  width: 100%;
}
.connect-box-wrap .money-connection-box .money-connection .input-value input {
  outline: none;
  border: 1px solid #fff;
  background-color: #fff;
  border-radius: 75px;
  font-size: 32px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 0;
  color: #731eff;
  padding: 8.5px 16px;
  font-family: GeneralSans;
  width: 100%;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1280px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 30px;
  }
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 28px;
  }
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 26px;
  }
}
@media screen and (max-width: 767px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 24px;
  }
}
@media screen and (max-width: 575px) {
  .connect-box-wrap .money-connection-box .money-connection .input-value input {
    font-size: 20px;
  }
}
.connect-box-wrap .money-connection-box .money-connection .input-value input:focus {
  border-color: #21094a;
}
.connect-box-wrap .money-connection-box .money-connection-wrap:last-child .money-connection-text {
  text-align: right;
}
.connect-box-wrap .money-connection-box .money-connect {
  background: linear-gradient(90deg, rgb(232, 222, 255) 0%, rgb(233, 223, 255) 100%);
  padding: 10px;
  height: 80px;
  width: 80px;
  min-width: 80px;
  border-radius: 50%;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 1280px) {
  .connect-box-wrap .money-connection-box .money-connect {
    top: 40px;
  }
}
@media screen and (max-width: 1199px) {
  .connect-box-wrap .money-connection-box .money-connect {
    top: 35px;
  }
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connect {
    position: relative;
    transform: rotate(90deg);
    top: 0;
    height: 60px;
    width: 60px;
    min-width: 60px;
  }
}
.connect-box-wrap .money-connection-box .money-connect::before {
  content: "";
  position: absolute;
  background: url(../images/1.svg) no-repeat center center;
  top: 0;
  bottom: 0;
  left: -40px;
  height: 80px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connect::before {
    display: none;
  }
}
.connect-box-wrap .money-connection-box .money-connect::after {
  content: "";
  position: absolute;
  background: url(../images/2.svg) no-repeat center center;
  top: 0;
  bottom: 0;
  right: -40px;
  height: 80px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connect::after {
    display: none;
  }
}
.connect-box-wrap .money-connection-box .money-connect .money-arrow {
  height: 60px;
  width: 60px;
  min-width: 60px;
  border-radius: 50%;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(250, 247, 255, 0.6);
  border: 1px solid #fff;
}
@media screen and (max-width: 991px) {
  .connect-box-wrap .money-connection-box .money-connect .money-arrow {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
}
.connect-box-wrap .money-connection-text {
  margin-top: 15px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #21094a;
  margin-bottom: 15px;
}
.connect-box-wrap .money-connection-text strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .connect-box-wrap .money-connection-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .connect-box-wrap .money-connection-text {
    font-size: 16px;
  }
}
.connect-box-wrap .money-connection-text small {
  color: #FF3B30;
}
.connect-box-wrap .money-connection-text span {
  color: #731eff;
}

.zimoney-common-modal .modal-dialog {
  padding-left: 8px;
  padding-right: 8px;
  margin-left: auto;
  margin-right: auto;
}
.zimoney-common-modal .modal-content {
  padding: 32px;
  box-shadow: 0px 4px 34px 0px rgba(33, 9, 74, 0.2);
  border-radius: 30px;
}
@media screen and (max-width: 1199px) {
  .zimoney-common-modal .modal-content {
    padding: 24px;
    border-radius: 24px;
  }
}
@media screen and (max-width: 991px) {
  .zimoney-common-modal .modal-content {
    padding: 20px;
    border-radius: 20px;
  }
}
.zimoney-common-modal .modal-content .modal-header {
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(142, 130, 164, 0.3);
}
@media screen and (max-width: 575px) {
  .zimoney-common-modal .modal-content .modal-header {
    padding: 0 0 16px;
  }
}
.zimoney-common-modal .modal-content .modal-header .modal-title {
  font-size: 24px;
  line-height: 100%;
  font-weight: 500;
  color: #21094a;
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .zimoney-common-modal .modal-content .modal-header .modal-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 575px) {
  .zimoney-common-modal .modal-content .modal-header .modal-title {
    font-size: 20px;
  }
}
.zimoney-common-modal .modal-content .btn-close {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  background-color: #f1eefd;
  padding: 0;
  font-size: 12px;
  color: #21094a;
  --bs-btn-close-color: $primary-color;
  opacity: 1;
}
.zimoney-common-modal .modal-content .btn-close:focus {
  box-shadow: none;
}
.zimoney-common-modal .modal-content .modal-body {
  padding: 20px 0 0;
}
@media screen and (max-width: 575px) {
  .zimoney-common-modal .modal-content .modal-body {
    padding: 16px 0 0;
  }
}
.zimoney-common-modal .modal-content .modal-body p span {
  color: #21094a;
  font-weight: 500;
}

.radio-modal-btn {
  background-color: transparent;
  border: 1px solid rgba(33, 9, 74, 0.1);
  padding: 15px 16px;
  padding-right: 50px;
  border-radius: 25px;
  font-size: 14px;
  line-height: 100%;
  font-weight: 500;
  color: #21094a;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.radio-modal-btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 18px;
  background: url(../images/down-arrow.svg) no-repeat center center;
  width: 18px;
  height: 18px;
  margin: auto 0;
}
.radio-modal-btn:focus {
  outline: none;
  box-shadow: none;
}

.radio-modal .modal-content .modal-body .radio-wrap {
  margin-bottom: 12px;
}
.radio-modal .modal-content .modal-body .radio-wrap:last-child {
  margin-bottom: 0;
}
.radio-modal .modal-content .modal-body .radio-wrap label {
  font-size: 18px;
  line-height: 100%;
  font-weight: 500;
  padding: 8px 52px 8px 8px;
  width: 100%;
  background-color: #f1eefd;
  border-radius: 84px;
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .radio-modal .modal-content .modal-body .radio-wrap label {
    font-size: 16px;
    gap: 8px;
  }
}
.radio-modal .modal-content .modal-body .radio-wrap label picture {
  height: 56px;
  width: 56px;
  min-width: 56px;
  border-radius: 50%;
  background-color: #fff;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .radio-modal .modal-content .modal-body .radio-wrap label picture {
    height: 50px;
    width: 50px;
    min-width: 50px;
  }
}
@media screen and (max-width: 375px) {
  .radio-modal .modal-content .modal-body .radio-wrap label picture {
    height: 40px;
    width: 40px;
    min-width: 40px;
  }
}
.radio-modal .modal-content .modal-body .radio-wrap label picture img {
  height: 24px;
  width: 24px;
}
@media screen and (max-width: 767px) {
  .radio-modal .modal-content .modal-body .radio-wrap label picture img {
    height: 22px;
    width: 22px;
  }
}
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:not(:checked) + label,
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:checked + label {
  position: relative;
}
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:not(:checked) + label::before,
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:checked + label::before {
  width: 24px;
  height: 24px;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  margin-right: 24px;
}
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:not(:checked) + label::after,
.radio-modal .modal-content .modal-body .radio-wrap [type=radio]:checked + label::after {
  top: 0px;
  bottom: 0;
  right: 6px;
  margin: auto;
  margin-right: 24px;
}

.radio-wrap [type=radio]:checked,
.radio-wrap [type=radio]:not(:checked) {
  position: absolute;
  left: -9999px;
}

.radio-wrap [type=radio]:checked + label,
.radio-wrap [type=radio]:not(:checked) + label {
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: #21094a;
}

.radio-wrap [type=radio]:checked + label:before,
.radio-wrap [type=radio]:not(:checked) + label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #731eff;
  border-radius: 100%;
  background: transparent;
}

.radio-wrap [type=radio]:checked + label:after,
.radio-wrap [type=radio]:not(:checked) + label:after {
  content: "";
  width: 12px;
  height: 12px;
  background: #731eff;
  position: absolute;
  top: 4px;
  left: 4px;
  border-radius: 100%;
  transition: all 0.2s ease;
}

.radio-wrap [type=radio]:not(:checked) + label:after {
  opacity: 0;
  transform: scale(0);
}

.radio-wrap [type=radio]:checked + label:after {
  opacity: 1;
  transform: scale(1);
}

.common-listing {
  font-size: 16px;
  line-height: 25px;
  color: #8e82a4;
}
.common-listing li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 14px;
  margin-left: 10px;
}
.common-listing li:last-child {
  margin-bottom: 0;
}
.common-listing li span {
  color: #21094a;
}
.common-listing li:before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  background: #21094a;
  border-radius: 50%;
}

.daterangepicker .drp-buttons .btn-primary,
.daterangepicker .drp-buttons .btn-secondary {
  min-width: unset;
  min-height: 30px;
  border-radius: 20px;
}
.daterangepicker td.active {
  background-color: #21094a;
}
.daterangepicker td.active:hover {
  background-color: #21094a;
}

/* ===============  custom-radio CSS Star here =========================*/
.custom-radio .radio-btn {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  font-size: 16px;
  line-height: 20px;
  font-family: GeneralSans;
  font-weight: 500;
  color: #534c60;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  text-transform: none;
}
.custom-radio .radio-btn input {
  opacity: 0;
  cursor: pointer;
  width: 20px;
  height: 15px;
}
.custom-radio .radio-btn .checkmark {
  position: relative;
  height: 16px;
  width: 16px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.4s ease;
  border: 1px solid #731eff;
}
.custom-radio .radio-btn .checkmark::after {
  content: "";
  position: absolute;
  display: none;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  background: #731eff;
  margin: auto;
}
.custom-radio .radio-btn .checkmark:has(input:checked)::after {
  display: block;
}

.gradient-wrapper-home {
  background-image: radial-gradient(109.28% 131.58% at 3.43% -16.25%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate3d(1, 0, 0, 180deg);
  border-radius: 30px;
}
@media screen and (max-width: 1279px) {
  .gradient-wrapper-home {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .gradient-wrapper-home {
    border-radius: 18px;
  }
}

.gradient-wrapper-works {
  background-image: radial-gradient(109.28% 131.58% at 3.43% -16.25%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: rotate(0deg);
  border-radius: 30px;
}
@media screen and (max-width: 1279px) {
  .gradient-wrapper-works {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .gradient-wrapper-works {
    border-radius: 18px;
  }
}

.page-content-wrapper {
  position: relative;
  padding-top: 124px;
}
@media only screen and (max-width: 767px) {
  .page-content-wrapper {
    padding-top: 98px;
  }
}
.page-content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 340px;
  width: 100%;
  background-color: #f1eefd;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  z-index: -1;
}

/*-------------------------------------------------------------------Breadcrumb CSS------------------------------------------------------------------------------*/
.breadcrumb {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 22px;
}
@media screen and (max-width: 767px) {
  .breadcrumb {
    display: none;
  }
}
.breadcrumb .breadcrumb-item {
  position: relative;
}
.breadcrumb .breadcrumb-item a {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(33, 9, 74, 0.5);
  padding: 0;
}
.breadcrumb .breadcrumb-item::before {
  content: ">";
  position: absolute;
  right: -18px;
  top: 2px;
  bottom: 0;
  padding: 0;
  margin: auto 0;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgba(33, 9, 74, 0.5);
}
.breadcrumb .breadcrumb-item a {
  color: rgba(33, 9, 74, 0.5);
}
.breadcrumb .breadcrumb-item.active {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  position: relative;
  padding-left: 8px;
  color: #21094a;
}
.breadcrumb .breadcrumb-item:last-child::before {
  display: none;
}

.page-wrapper-title {
  font-size: 42px;
  line-height: 57px;
  font-family: GeneralSans;
  font-weight: 600;
  color: #21094a;
  margin-bottom: 38px;
  position: relative;
  z-index: 9;
}
@media only screen and (max-width: 1279px) {
  .page-wrapper-title {
    font-size: 38px;
    line-height: 54px;
    margin-bottom: 35px;
  }
}
@media only screen and (max-width: 991px) {
  .page-wrapper-title {
    font-size: 35px;
    line-height: 47px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .page-wrapper-title {
    font-size: 30px;
    line-height: 42px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .page-wrapper-title {
    font-size: 28px;
    line-height: 34px;
  }
}

/* ===============  White Bg Card Box CSS Star here =========================*/
.card-box-wraper {
  margin-bottom: 50px;
}
.card-box-wraper .card-box {
  width: 100%;
  padding: 60px;
  background-color: #fff;
  box-shadow: 0px 9px 34px 0px rgba(33, 9, 74, 0.0509803922);
  border-radius: 30px;
}
@media only screen and (max-width: 991px) {
  .card-box-wraper .card-box {
    padding: 30px;
    border-radius: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .card-box-wraper .card-box {
    padding: 24px;
    border-radius: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .card-box-wraper .card-box {
    padding: 20px;
  }
}
@media only screen and (max-width: 480px) {
  .card-box-wraper .card-box {
    padding: 15px;
    border-radius: 16px;
  }
}

/* ===============  Testmonial Slider CSS Star here =========================*/
.customers-say-section {
  padding-top: 100px;
  padding-bottom: 60px;
  overflow: hidden;
}
@media only screen and (max-width: 1279px) {
  .customers-say-section {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 1199px) {
  .customers-say-section {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1024px) {
  .customers-say-section {
    padding-top: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .customers-say-section {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .customers-say-section {
    padding-bottom: 70px;
    margin-bottom: 60px;
    position: relative;
  }
}
.customers-say-section .section-head {
  text-align: center;
}
.customers-say-section .section-head .head-left {
  flex: 1;
}
.customers-say-section .section-head .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 6px;
  border-radius: 50px;
  background-color: #faf7ff;
  border: 1px solid rgba(148, 84, 255, 0.1019607843);
}
@media only screen and (max-width: 767px) {
  .customers-say-section .section-head .swiper-buttons {
    position: absolute;
    bottom: 0;
    left: 50px;
    right: 50px;
    justify-content: space-between;
  }
}
.customers-say-section .section-head .swiper-buttons .slide-btn {
  width: 55px;
  min-width: 55px;
  height: 55px;
  border-radius: 100%;
  background-color: #9454ff;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .customers-say-section .section-head .swiper-buttons .slide-btn {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }
}
.customers-say-section .section-head .swiper-buttons .slide-btn.swiper-button-disabled {
  opacity: 0.2;
}
.customers-say-section .customers-say-swiper {
  position: relative;
}
.customers-say-section .customers-say-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.customers-say-section .customers-say-swiper .say-card {
  height: unset;
  border: 1px solid #eae5ff;
  border-radius: 20px;
  padding: 30px 30px 50px;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
  color: #8e82a4;
  font-size: 18px;
  line-height: 30px;
}
@media only screen and (max-width: 1024px) {
  .customers-say-section .customers-say-swiper .say-card {
    padding: 24px 24px 40px;
  }
}
@media only screen and (max-width: 991px) {
  .customers-say-section .customers-say-swiper .say-card {
    font-size: 16px;
    line-height: 24px;
    row-gap: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .customers-say-section .customers-say-swiper .say-card {
    padding: 20px 20px 30px;
  }
}
@media only screen and (max-width: 480px) {
  .customers-say-section .customers-say-swiper .say-card {
    padding: 15px 15px 24px;
  }
}
.customers-say-section .customers-say-swiper .say-card .say-cars-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
}
.customers-say-section .customers-say-swiper .say-card .say-cars-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .customers-say-section .customers-say-swiper .say-card .say-cars-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .customers-say-section .customers-say-swiper .say-card .say-cars-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .customers-say-section .customers-say-swiper .say-card .say-cars-title {
    font-size: 18px;
  }
}
.customers-say-section .customers-say-swiper .say-card .say-user-name {
  margin-top: auto;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  color: #534c60;
}
.customers-say-section .customers-say-swiper .say-card .say-user-name strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .customers-say-section .customers-say-swiper .say-card .say-user-name {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .customers-say-section .customers-say-swiper .say-card .say-user-name {
    font-size: 14px;
  }
}
.customers-say-section .customers-say-swiper .say-card .say-user-name strong {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #21094a;
  font-weight: 600;
  font-size: 18px;
}
.customers-say-section .customers-say-swiper .say-card .say-user-name strong .text-first {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  width: 48px;
  background-image: linear-gradient(to right bottom, rgb(107, 47, 255), rgb(147, 51, 234));
  border-radius: 50%;
}
.customers-say-section .customers-say-swiper .say-card .say-user-name span small {
  display: inline-block;
  margin: 0 10px;
  color: #8e82a4;
}

/*===============  Select picker ==========================================*/
.common-select-picker .bootstrap-select {
  width: 100% !important;
}
.common-select-picker .bootstrap-select .dropdown-toggle {
  background: transparent;
  border: 1px solid rgba(33, 9, 74, 0.1019607843);
  border-radius: 25px;
  padding: 15px 16px;
  color: #21094a;
  line-height: 18px;
}
.common-select-picker .bootstrap-select .dropdown-toggle:focus {
  box-shadow: none;
  outline: none !important;
}

.common-select-picker .dropdown-menu .bs-searchbox .form-control {
  padding: 10px 16px;
}
.common-select-picker .dropdown-toggle {
  position: relative;
}
.common-select-picker .dropdown-toggle::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-left: 0.35em;
  vertical-align: middle;
  background-image: url("../images/down-arrow.svg");
  background-repeat: no-repeat;
  background-size: 16px 16px;
  background-position: center;
  border: none !important;
}
.common-select-picker .dropdown-item.active {
  background-color: #21094a !important;
  color: #fff !important;
}
.common-select-picker .dropdown-item:active {
  background-color: #21094a !important;
  color: #fff !important;
}

.common-select-pd-add .dropdown-toggle {
  padding-left: 46px !important;
}

.uni-input-group.country-code-box .country-code {
  background-color: #f1eefd;
  position: absolute;
  top: 4px;
  left: 4px;
  bottom: 4px;
  font-size: 14px;
  line-height: 15px;
  border-radius: 25px;
  padding: 11px 10px;
  padding-right: 35px;
}
.uni-input-group.country-code-box .country-code::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  width: 18px;
  height: 18px;
  background: url(../images/down-arrow.svg) no-repeat center center;
  margin: auto 0;
  filter: brightness(0) saturate(100%) invert(5%) sepia(57%) saturate(7147%) hue-rotate(239deg) brightness(88%) contrast(100%);
  background-size: 13px 10px;
}
.uni-input-group.country-code-box .country-code img {
  width: 20px;
  height: 20px;
  border-radius: 80px;
  margin-right: 10px;
  -o-object-fit: cover;
     object-fit: cover;
}
.uni-input-group.country-code-box input {
  padding-left: 130px !important;
}

/*===============  Tabs Css Star Here ==========================================*/
.zimoney-tabing .nav {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #731eff;
  border-radius: 30px;
  padding: 5px;
  margin-bottom: 30px;
  flex-wrap: nowrap;
  max-width: 100%;
  overflow: auto;
}
.zimoney-tabing .nav .nav-link {
  border: none;
  outline: none;
  box-shadow: inherit;
  width: 184px;
  max-width: 100%;
  text-align: center;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #21094a;
  border-radius: 30px;
  background-color: transparent;
  transition: all 0.3s ease;
  padding: 8px 20px;
  white-space: nowrap;
}
.zimoney-tabing .nav .nav-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-tabing .nav .nav-link {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-tabing .nav .nav-link {
    font-size: 16px;
  }
}
.zimoney-tabing .nav .nav-link.active {
  background-color: #731eff;
  color: #fff;
}

.iti {
  display: block;
  width: 100%;
}
.iti .iti__country-container {
  left: 0 !important;
  right: auto !important;
}
.iti .iti__country-container .iti__selected-country {
  border-radius: 25px;
  background: #f1eefd;
  padding: 11px;
  height: 42px;
  margin: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.iti .iti__country-container .iti__selected-country .iti__selected-country-primary {
  padding: 0;
  gap: 10px;
}
.iti .iti__country-container .iti__selected-country .iti__selected-country-primary .iti__arrow {
  order: 2;
}
.iti .iti__country-container .iti__selected-country .iti__selected-dial-code {
  font-weight: 500 !important;
  font-size: 14px !important;
  letter-spacing: 0%;
  color: #21094a !important;
  margin-left: 0px !important;
}
.iti .iti__country-container .iti__selected-country .iti__arrow {
  border-left: 0px solid transparent !important;
  border-right: 0px solid transparent !important;
  border-top: 0px solid #555 !important;
  background-image: url("../images/contact-arrow.svg") !important;
  background-repeat: no-repeat !important;
  background-size: 13px 10px !important;
  background-position: center !important;
  width: 13px;
  height: 13px;
  border-bottom: 0 !important;
  margin: 0;
}
.iti .iti__country-container .iti__dropdown-content .iti__search-icon,
.iti .iti__country-container .iti__dropdown-content .iti__search-clear {
  display: none;
}
.iti .iti__country-container .iti__dropdown-content .iti__no-results {
  font-size: 14px;
  padding: 10px;
}
.iti .iti__country-container .iti__dropdown-content .iti__search-input {
  margin: 5px 10px;
  width: calc(100% - 20px);
  padding: 10px 12px;
}
.iti .iti__country-container .iti__dropdown-content .iti__country {
  display: flex;
  align-items: center;
  padding: 5px 10px;
}
.iti .iti__country-container .iti__dropdown-content .iti__country .iti__flag {
  flex: none;
}
.iti .iti__country-container .iti__dropdown-content .iti__country .iti__country-name {
  font-size: 14px !important;
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.iti .iti__country-container .iti__dropdown-content .iti__country .iti__dial-code {
  font-size: 14px !important;
}
.iti input.iti__tel-input {
  width: 100% !important;
  height: auto !important;
}
.iti.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country-primary:hover {
  background-color: transparent !important;
}
.iti.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])) .iti__selected-country:has(+ .iti__dropdown-content:hover) .iti__selected-country-primary {
  background-color: transparent !important;
}

.new-mobile-input-cls .iti--separate-dial-code {
  width: 100%;
}

.new-mobile-input-cls .form-control {
  padding-left: 130px !important;
}

.delete-account-modal-type-cls p {
  max-width: 350px !important;
}

#toast-container > div {
  opacity: 1;
}

.toast-warning {
  background-color: #BD362F;
}

.loader-wrapper {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none; /* toggle this with JS */
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.loader-text {
  margin-top: 8px;
  color: #fff;
}

.loader-logo {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
  animation: spinY 2s linear infinite;
  transform-style: preserve-3d;
}

/* Horizontal 3D spin */
@keyframes spinY {
  0% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.bootstrap-select {
  width: auto;
}
.bootstrap-select .dropdown-toggle {
  background-color: #fff;
  padding: 11px 12px;
  border: 1px solid rgb(229, 231, 235);
  color: rgb(9, 9, 11);
  border-radius: 8px;
}
.bootstrap-select .dropdown-toggle::after {
  background: url(../images/down-arrow.svg) no-repeat center center;
  background-size: 100% 100%;
  border: 0;
  height: 9px;
  width: 18px;
}
.bootstrap-select .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
.bootstrap-select .dropdown-menu {
  padding: 5px;
  border-color: transparent;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
}
.bootstrap-select .dropdown-menu li .dropdown-item {
  position: relative;
  padding: 8px 10px 8px 27px;
  font-size: 14px;
  line-height: 20px;
  color: #4b5563;
  transition: all 0.3s ease;
}
.bootstrap-select .dropdown-menu li .dropdown-item:hover, .bootstrap-select .dropdown-menu li .dropdown-item.active {
  background-color: rgba(229, 231, 235, 0.529);
}
.bootstrap-select .dropdown-menu li .dropdown-item.selected::before {
  content: "";
  background: url("../images/black-checkmark.svg") no-repeat;
  background-size: 15px;
  position: absolute;
  left: 5px;
  top: 0;
  bottom: 0;
  height: 15px;
  width: 18px;
  margin: auto;
}

.inner-new-hero {
  padding: 4rem 0;
  background: linear-gradient(to bottom right, #6B2FFF, #5a24e6);
}
.inner-new-hero__container {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) {
  .inner-new-hero__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1024px) {
  .inner-new-hero__container {
    padding: 0 2rem;
  }
}
.inner-new-hero__content {
  text-align: center;
  color: #fff;
}
.inner-new-hero__content .shield-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 6rem;
  height: 6rem;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 50%;
  margin-bottom: 1.5rem;
}
.inner-new-hero__content .shield-icon-wrapper .shield-icon {
  width: 3rem;
  height: 3rem;
  stroke: currentColor;
}
.inner-new-hero__title {
  font-size: clamp(2.25rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.inner-new-hero__headtitle {
  font-size: 30px;
  line-height: 32px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto 1rem;
}
.inner-new-hero__subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 42rem;
  margin: 0 auto;
}
.inner-new-hero__tag {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.inner-new-hero .final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 18px;
  font-weight: 500;
  color: #6B2FFF;
  background: #fff;
  border: none;
  border-radius: 9999px;
  padding: 1.5rem 2rem;
  height: 2.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
  margin-top: 32px;
}
.inner-new-hero .final-cta__btn:hover {
  background: #f3f4f6;
}
@media screen and (max-width: 991px) {
  .inner-new-hero .final-cta__btn {
    font-size: 1rem;
  }
}
.inner-new-hero .inner-sub-title {
  font-size: 30px;
  line-height: 36px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}
.inner-new-hero.pramotion-banner {
  background-image: linear-gradient(to right bottom, rgb(107, 47, 255), rgb(124, 58, 237), rgb(147, 51, 234)) !important;
  padding: 120px 0;
}
@media (max-width: 1280px) {
  .inner-new-hero.pramotion-banner {
    padding: 100px 0;
  }
}
@media (max-width: 1199px) {
  .inner-new-hero.pramotion-banner {
    padding: 80px 0;
  }
}
@media (max-width: 991px) {
  .inner-new-hero.pramotion-banner {
    padding: 60px 0;
  }
}
@media (max-width: 767px) {
  .inner-new-hero.pramotion-banner {
    padding: 40px 0;
  }
}
.inner-new-hero .faq-search {
  position: relative;
  width: 100%;
  max-width: 42rem;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
}
.inner-new-hero .faq-search__icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #9ca3af;
  pointer-events: none;
  opacity: 0.9;
  z-index: 1;
}
.inner-new-hero .faq-search__input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  box-sizing: border-box;
  display: block;
  width: 100%;
  padding-left: 3rem;
  padding-right: 1rem;
  height: 3.5rem;
  line-height: 1;
  border-radius: 0.5rem;
  border: none;
  background-color: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
  font-size: 1.125rem;
  color: #0f172a;
  outline: none;
  transition: box-shadow 160ms ease, transform 160ms ease;
}
.inner-new-hero .faq-search__input::-moz-placeholder {
  color: #9ca3af;
  opacity: 1;
  font-size: 0.95rem;
}
.inner-new-hero .faq-search__input::placeholder {
  color: #9ca3af;
  opacity: 1;
  font-size: 0.95rem;
}
.inner-new-hero .faq-search__input:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}
.inner-new-hero .faq-search__input:focus {
  outline: none;
  position: relative;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0), 0 0 0 6px rgba(99, 102, 241, 0.45), 0 8px 24px rgba(15, 23, 42, 0.12);
}
@media (min-width: 768px) {
  .inner-new-hero .faq-search__input {
    font-size: 1rem;
    height: 3.5rem;
  }
}

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background-image: radial-gradient(109.28% 131.58% at 3.43% -16.25%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  margin: 0 30px 50px;
  border-radius: 30px;
}
@media only screen and (max-width: 1279px) {
  .final-cta {
    padding: 80px 0;
  }
}
@media only screen and (max-width: 1199px) {
  .final-cta {
    padding: 70px 0;
  }
}
@media only screen and (max-width: 1024px) {
  .final-cta {
    padding: 60px 0;
  }
}
@media only screen and (max-width: 991px) {
  .final-cta {
    padding: 50px 0;
  }
}
.final-cta .warning-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #facc15;
  color: #78350f;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 2rem;
}
.final-cta .warning-badge .icon {
  width: 1rem;
  height: 1rem;
}
.final-cta__content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.final-cta__title {
  color: #fff !important;
}
.final-cta__subtitle {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48rem;
  margin-inline: auto;
}
.final-cta__buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  flex-direction: column;
}
@media (min-width: 640px) {
  .final-cta__buttons {
    flex-direction: row;
  }
}
.final-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 500;
  color: #6B2FFF;
  background: #fff;
  border: none;
  border-radius: 9999px;
  padding: 2rem 3rem;
  height: 2.75rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
.final-cta__btn:hover {
  background: #f3f4f6;
}
@media screen and (max-width: 991px) {
  .final-cta__btn {
    padding: 1.5rem 2rem;
    font-size: 1rem;
  }
}

.connect-box-wrap {
  position: relative;
  z-index: 1;
}

.countrypicker .dropdown-menu {
  min-width: -moz-max-content !important;
  min-width: max-content !important;
}

.flexing-error-cls {
  flex-direction: column;
  display: flex;
  width: 100%;
}

.input-width-cls {
  width: 100%;
}

.new-phone-input-cls {
  align-items: flex-start;
}

.apple-pay-section {
  border-radius: 20px;
}
.apple-pay-section .apple-pay-option {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #8e82a4;
}
.apple-pay-section .apple-pay-option strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .apple-pay-section .apple-pay-option {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .apple-pay-section .apple-pay-option {
    font-size: 16px;
  }
}
.apple-pay-section .apple-pay-option .method-header {
  display: flex;
  gap: 15px;
}
.apple-pay-section .apple-pay-option .method-header .apple-icon {
  width: 30px;
  height: auto;
}
.apple-pay-section .apple-pay-option .apple-pay-method .method-box-title {
  flex: 1;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(18px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #21094a;
  font-weight: 500;
  line-height: normal;
}
.apple-pay-section .apple-pay-option .apple-pay-method .method-box-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .apple-pay-section .apple-pay-option .apple-pay-method .method-box-title {
    font-size: 18px;
  }
}
@media screen and (min-width: 1440.5px) {
  .apple-pay-section .apple-pay-option .apple-pay-method .method-box-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 991px) {
  .apple-pay-section .apple-pay-option .apple-pay-method .method-box-title {
    font-size: 18px;
  }
}
.apple-pay-section .apple-pay-option .apple-pay-method .fees {
  border-radius: 30px;
  padding: 5px 10px 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  background-color: #198754;
  margin-top: 5px;
  display: inline-block;
}

.pay-id-list .pay-id-item {
  display: block !important;
}
.pay-id-list .pay-id-item span {
  display: block;
}
.pay-id-list .pay-id-item p {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pay-id-list .pay-id-item p strong {
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-brand-logo {
  width: 50px;
  height: auto;
}
.card-brand-logo svg {
  width: 100%;
  height: 100%;
}

.form-control.mobile-number-field {
  padding-left: 135px !important;
}

header .navbar.zimoney-navbar {
  background: transparent;
  border-radius: 50px;
  padding: 10.5px 10px 10.5px 20px;
  max-width: 1340px;
  position: fixed;
  top: 20px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  border: 1px solid transparent;
  transition: background 0.3s ease;
  z-index: 999;
}
@media only screen and (max-width: 1366px) {
  header .navbar.zimoney-navbar {
    width: 98%;
  }
}
@media only screen and (max-width: 991px) {
  header .navbar.zimoney-navbar {
    max-width: 1264px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar {
    top: 4px;
    padding: 9px 10px 9px 10px;
  }
}
header .navbar.zimoney-navbar .container {
  display: flex;
  justify-content: space-between;
  max-width: 1340px;
  padding: 0;
}
@media only screen and (max-width: 991px) {
  header .navbar.zimoney-navbar .container {
    max-width: 1264px;
  }
}
header .navbar.zimoney-navbar.login-navbar.navbar-fixed {
  padding: 9px 16px 9px;
}
header .navbar.zimoney-navbar .navbar-brand {
  padding: 0;
  display: flex;
  opacity: 1;
  margin-right: 0 !important;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-brand {
    order: 1;
  }
}
header .navbar.zimoney-navbar .navbar-brand img {
  width: 154px;
  margin-right: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar .navbar-brand img {
    width: 130px;
  }
}
@media screen and (max-width: 375px) {
  header .navbar.zimoney-navbar .navbar-brand img {
    width: 110px;
  }
}
header .navbar.zimoney-navbar .navbar-brand .zimoney-logo-admin {
  width: 184px;
}
header .navbar.zimoney-navbar .navbar-collapse {
  z-index: 2;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-collapse {
    order: 3;
    position: absolute;
    width: 100%;
    top: 84px;
    left: 0px;
  }
}
@media (max-width: 767px) {
  header .navbar.zimoney-navbar .navbar-collapse {
    top: 64px;
  }
}
header .navbar.zimoney-navbar .navbar-nav {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(255, 255, 255, 0.0784313725);
  border-radius: 64px;
  position: relative;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-nav::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-backdrop-filter: blur(40px);
            backdrop-filter: blur(40px);
    background: rgab(#fff, 0.8);
    border-radius: 20px;
    z-index: 0;
  }
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-nav {
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.8);
  }
}
header .navbar.zimoney-navbar .navbar-nav .nav-link {
  position: relative;
  color: #fff;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  padding: 15px 22px;
  transition: 0.3s ease-in-out;
  opacity: 0.5;
}
header .navbar.zimoney-navbar .navbar-nav .nav-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
header .navbar.zimoney-navbar .navbar-nav .nav-link:hover, header .navbar.zimoney-navbar .navbar-nav .nav-link.active {
  color: #fff;
  opacity: 1;
  transition: all 0.3s ease;
}
header .navbar.zimoney-navbar .navbar-nav .nav-link:hover::after, header .navbar.zimoney-navbar .navbar-nav .nav-link.active::after {
  opacity: 1;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link {
    color: #8e82a4;
    opacity: 1;
  }
  header .navbar.zimoney-navbar .navbar-nav .nav-link:hover, header .navbar.zimoney-navbar .navbar-nav .nav-link.active {
    color: #21094a;
    opacity: 1;
  }
}
header .navbar.zimoney-navbar .navbar-nav .nav-link::after {
  position: absolute;
  content: "";
  background: #fff;
  width: 3px;
  height: 3px;
  opacity: 1;
  border-radius: 10px;
  opacity: 0.5;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto auto;
}
@media (max-width: 991px) {
  header .navbar.zimoney-navbar .navbar-nav .nav-link::after {
    display: none;
  }
}
header .navbar.zimoney-navbar .navbar-nav .nav-item:nth-last-child(1) .nav-link::after {
  display: none;
}
header .navbar.zimoney-navbar.navbar-fixed {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f1eefd;
  position: fixed !important;
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  box-shadow: 0 6px 24px 0 rgba(44, 28, 84, 0.13);
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar.navbar-fixed {
    padding: 9px 10px 9px 10px;
  }
}
@media screen and (max-width: 480px) {
  header .navbar.zimoney-navbar.navbar-fixed {
    padding: 5px;
  }
}
header .navbar.zimoney-navbar.navbar-fixed .toggler-bar {
  background-color: #21094a;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav {
  position: relative;
  -webkit-backdrop-filter: inherit;
          backdrop-filter: inherit;
  background: none;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-item {
  position: relative;
  z-index: 2;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-link {
  color: #8e82a4;
  opacity: 1;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-link:hover, header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-link.active {
  color: #21094a;
  opacity: 1;
}
header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .nav-link::after {
  display: none;
}
@media (max-width: 767px) {
  header .navbar.zimoney-navbar.navbar-fixed .navbar-nav .navbar-collapse {
    top: 64px;
  }
}
header .navbar.zimoney-navbar.admin-navbar {
  -webkit-backdrop-filter: blur(40px);
          backdrop-filter: blur(40px);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid #f1eefd;
  transition: 0.3s ease-in-out;
}
header .navbar.zimoney-navbar.admin-navbar .toggler-bar {
  background-color: #21094a;
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav {
  background: transparent;
  -webkit-backdrop-filter: none;
          backdrop-filter: none;
  gap: 40px;
}
@media screen and (max-width: 991px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav {
    background: rgba(255, 255, 255, 0.7);
    margin: 0;
    gap: 20px;
    padding: 10px 15px;
  }
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  padding: 0px;
  border-radius: 30px;
  opacity: 1;
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    font-size: 16px;
  }
}
@media screen and (max-width: 1279px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link {
    border-radius: 18px;
  }
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link:hover, header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link.active {
  color: #731eff;
  opacity: 1;
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link:hover::after, header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link.active::after {
  opacity: 1;
}
header .navbar.zimoney-navbar.admin-navbar .navbar-nav .nav-link::after {
  display: none;
}
header .navbar.zimoney-navbar .zimoney-logo {
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  opacity: 1;
  margin-right: 0 !important;
  padding: 0;
}
header .navbar.zimoney-navbar .zimoney-logo img {
  width: 154px;
  margin-right: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar .zimoney-logo img {
    width: 130px;
    padding: 0;
  }
}
@media screen and (max-width: 375px) {
  header .navbar.zimoney-navbar .zimoney-logo img {
    width: 110px;
    padding: 0;
  }
}
header .navbar.zimoney-navbar .SignInUpButton {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-decoration: none;
  color: #fff;
  background-color: #731eff;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.2s ease-in-out;
  font-weight: 500;
}
header .navbar.zimoney-navbar .SignInUpButton strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  header .navbar.zimoney-navbar .SignInUpButton {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  header .navbar.zimoney-navbar .SignInUpButton {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  header .navbar.zimoney-navbar .SignInUpButton {
    font-size: 16px;
  }
}
header .navbar.zimoney-navbar .SignInUpButton:hover {
  background-color: #9454FF;
}
@media (max-width: 767px) {
  header .navbar.zimoney-navbar .SignInUpButton {
    padding: 5px;
  }
}
header .navbar.header-relative {
  position: relative !important;
}

/* Custom Animated Hamburger */
.navbar-toggler.custom-toggler {
  border: none;
  background: transparent;
  outline: none;
  padding: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  z-index: 1100;
  width: 38px;
  height: 38px;
  position: relative;
  transition: background 0.2s;
  box-shadow: none;
}
.navbar-toggler.custom-toggler:focus {
  outline: 0px solid #a58cfb !important;
  box-shadow: 0 !important;
  border: 0 !important;
}
@media (min-width: 992px) {
  .navbar-toggler.custom-toggler {
    display: none !important;
  }
}
.navbar-toggler.custom-toggler .toggler-bar {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  box-shadow: 0 1px 4px 0 rgba(108, 44, 248, 0.1);
}
.navbar-toggler.custom-toggler .toggler-bar:nth-child(2) {
  margin: 3px 0;
}
.navbar-toggler.custom-toggler[aria-expanded=true] {
  background: #ede3ff;
  box-shadow: 0 2px 8px 0 rgba(108, 44, 248, 0.1);
  border-radius: 50%;
}
.navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background: #731eff;
}
.navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggler.custom-toggler[aria-expanded=true] .toggler-bar:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background: #731eff;
}

.desktop-profile-nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 991px) {
  .desktop-profile-nav {
    order: 2;
    gap: 5px;
  }
}

.notif-bell {
  position: relative;
  cursor: pointer;
  height: 60px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1eefd;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .notif-bell {
    height: 44px;
    width: 44px;
  }
}
@media screen and (max-width: 480px) {
  .notif-bell {
    height: 40px;
    width: 40px;
  }
}
.notif-bell img {
  width: 28px;
}
@media screen and (max-width: 767px) {
  .notif-bell img {
    width: 24px !important;
  }
}
@media screen and (max-width: 480px) {
  .notif-bell img {
    width: 20px !important;
  }
}
.notif-bell .notif-badge {
  position: absolute;
  top: -2px;
  right: 0px;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.5;
  min-width: 18px;
  height: 18px;
  line-height: 18px;
  padding: 0 5px;
  background: #731eff;
  color: #fff;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-align: center;
}

.profile-dropdown .dropdown-toggle {
  display: flex;
  align-items: center;
  position: relative;
  background: #21094a;
  border-radius: 999px;
  padding: 6px 16px 6px 6px;
  min-width: 140px;
  gap: 10px;
  cursor: pointer;
  border: 0;
}
.profile-dropdown .dropdown-toggle:focus {
  background-color: #4b05be;
  box-shadow: none;
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle {
    min-width: auto;
    padding: 4px;
    min-height: 38px;
  }
}
.profile-dropdown .dropdown-toggle::after {
  display: none;
}
.profile-dropdown .dropdown-toggle .profile-name {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  font-weight: 500;
  color: #faf7ff;
  white-space: nowrap;
}
.profile-dropdown .dropdown-toggle .profile-name strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profile-dropdown .dropdown-toggle .profile-name {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profile-dropdown .dropdown-toggle .profile-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle .profile-name {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle .profile-name {
    display: none;
  }
}
.profile-dropdown .dropdown-toggle .profile-avatar {
  width: 48px;
  height: 48px;
  background-color: #ffc651;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle .profile-avatar {
    width: 30px;
    height: 30px;
  }
}
.profile-dropdown .dropdown-toggle .dropdown-icon {
  width: 17px;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 767px) {
  .profile-dropdown .dropdown-toggle .dropdown-icon {
    width: 12px;
  }
}
.profile-dropdown .dropdown-toggle.show .dropdown-icon {
  transform: rotateX(180deg);
}
.profile-dropdown .profile-dropdown-menu {
  top: 75px;
  right: 0;
  width: 194px;
  padding: 16px;
  background-color: #fff;
  border-radius: 20px;
  border: 0;
  transition: 0.5s ease-in-out;
  animation: fadeIn ease-in-out 0.5s;
  -webkit-animation: fadeIn ease-in-out 0.5s;
  -moz-animation: fadeIn ease-in-out 0.5s;
  -o-animation: fadeIn ease-in-out 0.5s;
  -ms-animation: fadeIn ease-in-out 0.5s;
}
@media (max-width: 767px) {
  .profile-dropdown .profile-dropdown-menu {
    top: 52px;
  }
}
.profile-dropdown .profile-dropdown-menu .dropdown-item {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
  color: #534c60;
  padding: 0;
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 10px;
  background: transparent;
}
.profile-dropdown .profile-dropdown-menu .dropdown-item strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .profile-dropdown .profile-dropdown-menu .dropdown-item {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .profile-dropdown .profile-dropdown-menu .dropdown-item {
    font-size: 16px;
  }
}
.profile-dropdown .profile-dropdown-menu .dropdown-divider {
  margin: 12px 0;
  border-bottom: 0.5px solid rgba(143, 131, 165, 0.25);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.profile-sm {
  display: none;
}

@media (max-width: 480px) {
  .Mobile-SignInUpButton {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  .mobile-right {
    display: flex;
    align-items: center;
    gap: 10px;
    order: 2;
  }
  .desktop-SignInUpButton {
    display: none;
  }
  .md-display {
    display: flex;
  }
  .profile-sm {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .md-display {
    display: none;
  }
  .profile-sm {
    display: flex;
  }
}
@media only screen and (max-width: 480px) {
  .mobile-right {
    gap: 3px;
  }
}
@media only screen and (max-width: 375px) {
  .mobile-right {
    gap: 6px;
  }
}
.zimoney-footer {
  background: #21094a;
  color: #f1eefd;
  border-radius: 30px;
  margin: 0 30px 30px;
  padding: 50px 20px 35px;
  max-width: 100%;
  box-shadow: 0 4px 32px 0 rgba(44, 28, 84, 0.1);
}
@media screen and (max-width: 1279px) {
  .zimoney-footer {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .zimoney-footer {
    border-radius: 18px;
  }
}
@media (max-width: 1199px) {
  .zimoney-footer {
    margin: 0 15px 15px;
    padding: 30px 20px 30px;
  }
}
@media (max-width: 767px) {
  .zimoney-footer {
    margin: 0 10px 10px;
    padding: 20px;
  }
}
@media (max-width: 525px) {
  .zimoney-footer {
    padding: 20px 15px 20px;
  }
}
.zimoney-footer .footer-main {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1199px) {
  .zimoney-footer .footer-main {
    gap: 40px 0;
  }
}
@media (max-width: 525px) {
  .zimoney-footer .footer-main {
    gap: 20px 0;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap {
  position: relative;
  max-width: 268px;
  padding-right: 20px;
}
@media (max-width: 1199px) {
  .zimoney-footer .footer-main .footer-logo-wrap {
    max-width: 300px;
  }
}
@media (max-width: 767px) {
  .zimoney-footer .footer-main .footer-logo-wrap {
    max-width: 100%;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap .footer-logo {
  width: 230px;
  margin-bottom: 25px;
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-logo-wrap .footer-logo {
    width: 200px;
    margin-bottom: 15px;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap .text-footer {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 20px;
}
.zimoney-footer .footer-main .footer-logo-wrap .text-footer strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-main .footer-logo-wrap .text-footer {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-main .footer-logo-wrap .text-footer {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .zimoney-footer .footer-main .footer-logo-wrap .text-footer {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-logo-wrap .text-footer {
    margin-bottom: 15px;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap .app-store-links {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  gap: 10px;
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-logo-wrap .app-store-links {
    max-width: 200px;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap .app-store-links a {
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
}
.zimoney-footer .footer-main .footer-logo-wrap .app-store-links a img {
  height: 60px;
  width: auto;
}
@media (max-width: 767px) {
  .zimoney-footer .footer-main .footer-logo-wrap .app-store-links a img {
    height: 50px;
  }
}
.zimoney-footer .footer-main .footer-logo-wrap::after {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(142, 130, 164, 0.5019607843);
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-logo-wrap::after {
    display: none;
  }
}
.zimoney-footer .footer-main .footer-links-wrap {
  position: relative;
  flex: 1;
  padding-left: 20px;
}
@media (max-width: 1199px) {
  .zimoney-footer .footer-main .footer-links-wrap {
    flex: auto;
  }
}
@media (max-width: 1199px) {
  .zimoney-footer .footer-main .footer-links-wrap:nth-child(1) {
    padding-left: 20px;
  }
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-links-wrap:nth-child(3)::after {
    display: none;
  }
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-links-wrap:nth-last-child(2), .zimoney-footer .footer-main .footer-links-wrap:last-child {
    flex: auto;
    width: calc(50% - 0px);
  }
}
@media (max-width: 479px) {
  .zimoney-footer .footer-main .footer-links-wrap:nth-last-child(2), .zimoney-footer .footer-main .footer-links-wrap:last-child {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .zimoney-footer .footer-main .footer-links-wrap {
    padding-left: 0px;
    width: 50%;
  }
}
@media (max-width: 479px) {
  .zimoney-footer .footer-main .footer-links-wrap {
    width: 100%;
  }
}
.zimoney-footer .footer-main .footer-links-wrap::after {
  width: 1px;
  height: 100%;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(142, 130, 164, 0.5019607843);
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-links-wrap::after {
    display: none;
  }
}
@media (max-width: 479px) {
  .zimoney-footer .footer-main .footer-links-wrap::after {
    display: block !important;
    width: 100%;
    height: 1px;
    top: -10px;
  }
}
.zimoney-footer .footer-main .footer-links-wrap:nth-last-child(1)::after {
  display: none;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  margin-bottom: 35px;
  color: #f1eefd;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-title strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-title {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-title {
    margin-bottom: 15px;
  }
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links li {
  list-style: none;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links li a {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #f1eefd;
  text-decoration: none;
  transition: color 0.2s;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links li a strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-links li a {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-main .footer-links-wrap .footer-links li a {
    font-size: 16px;
  }
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links li a:hover {
  color: #fff;
  text-decoration: underline;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links.footer-contact li {
  display: flex;
  gap: 12px;
}
.zimoney-footer .footer-main .footer-links-wrap .footer-links.footer-contact li .footer-icon img {
  width: 18px;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.zimoney-footer .spacer-xl {
  position: relative;
  display: flex;
  margin: 50px 0 25px;
  width: 100%;
  height: 1px;
  top: 0;
  right: 0;
  background: rgba(142, 130, 164, 0.5019607843);
}
@media (max-width: 767px) {
  .zimoney-footer .spacer-xl {
    margin: 25px 0 25px;
  }
}
.zimoney-footer .footer-legal {
  margin-bottom: 5px;
}
.zimoney-footer .footer-legal .legal {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #f1eefd;
  margin-bottom: 20px;
}
.zimoney-footer .footer-legal .legal strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-legal .legal {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-legal .legal {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .zimoney-footer .footer-bottom {
    flex-direction: column-reverse !important;
  }
}
.zimoney-footer .footer-bottom .text-footer {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: #f1eefd;
}
.zimoney-footer .footer-bottom .text-footer strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .zimoney-footer .footer-bottom .text-footer {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .zimoney-footer .footer-bottom .text-footer {
    font-size: 16px;
  }
}
.zimoney-footer .footer-bottom .text-footer a {
  color: #f1eefd;
}
.zimoney-footer .footer-bottom .footer-social a {
  font-size: 0;
}
.zimoney-footer .footer-bottom .footer-social a img {
  width: 33.33px;
  margin: 3.5px;
  height: inherit;
}

.slider_flex {
  position: relative;
  overflow: hidden;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: flex-end;
  gap: 80px;
  margin: 0 auto;
}
@media (max-width: 1280px) {
  .slider_flex {
    gap: 40px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .slider_flex {
    width: auto;
    flex-direction: column;
  }
}
.slider_flex .swiper-container {
  width: 100%;
  height: 100%;
  max-width: 100%;
  overflow: hidden;
}
.slider_flex .slider_col {
  display: flex;
  flex-direction: column;
  max-width: 610px;
  width: 100%;
}
@media (max-width: 1199px) {
  .slider_flex .slider_col {
    width: 540px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .slider_flex .slider_col {
    width: calc(60% - 0px);
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .slider_flex .slider_col {
    width: calc(100% - 0px);
    max-width: 100%;
  }
}
.slider_flex .slider_col .step-box {
  background: #ffffff;
  border: 1px solid #f1eefd;
  padding: 30px 24px;
  border-radius: 40px;
  transition: all 0.3s ease;
  opacity: 0.4;
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  height: 100%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1279px) {
  .slider_flex .slider_col .step-box {
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .slider_flex .slider_col .step-box {
    border-radius: 20px;
  }
}
.slider_flex .slider_col .step-box strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .slider_flex .slider_col .step-box {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .slider_flex .slider_col .step-box {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .slider_flex .slider_col .step-box {
    font-size: 16px;
  }
}
@media (max-width: 1080px) {
  .slider_flex .slider_col .step-box {
    padding: 14px;
  }
}
.slider_flex .slider_col .step-box .step {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  display: flex;
  background-color: #f1eefd;
  color: #000000;
  padding: 6px 14px;
  border-radius: 60px;
}
.slider_flex .slider_col .step-box .step strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .slider_flex .slider_col .step-box .step {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .slider_flex .slider_col .step-box .step {
    font-size: 16px;
  }
}
.slider_flex .slider_col .step-box h3 {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  margin: 20px 0 12px;
  color: #21094a;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .slider_flex .slider_col .step-box h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .slider_flex .slider_col .step-box h3 {
    font-size: 24px;
  }
}
.slider_flex .slider_col .step-box p {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  color: #8e82a4;
  margin-bottom: 0;
}
.slider_flex .slider_col .step-box p strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .slider_flex .slider_col .step-box p {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .slider_flex .slider_col .step-box p {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .slider_flex .slider_col .step-box p {
    font-size: 16px;
  }
}
.slider_flex .slider_col .swiper-slide-thumb-active .step-box {
  opacity: 1;
}
.slider_flex .slider_thumbs {
  overflow: hidden;
  height: 364px;
}
@media (max-width: 1366px) {
  .slider_flex .slider_thumbs {
    height: 367px;
  }
}
@media (max-width: 1280px) {
  .slider_flex .slider_thumbs {
    height: 368px;
  }
}
@media (max-width: 1152px) {
  .slider_flex .slider_thumbs {
    height: 381px;
  }
}
@media (max-width: 767px) {
  .slider_flex .slider_thumbs {
    height: auto !important;
    width: 100%;
  }
}
.slider_flex .slider_images {
  width: 362px;
  height: 550px;
}
@media (max-width: 1199px) {
  .slider_flex .slider_images {
    width: 367px;
    max-width: 100%;
  }
}
@media (max-width: 1024px) {
  .slider_flex .slider_images {
    width: 320px;
    max-width: 100%;
  }
}
@media (max-width: 991px) {
  .slider_flex .slider_images {
    max-width: 100%;
    height: 422px;
  }
}
@media (max-width: 767px) {
  .slider_flex .slider_images {
    width: calc(100% - 0px);
    max-width: 100%;
    height: 422px;
  }
}
.slider_flex .slider_images .swiper-container {
  border-top-left-radius: 66px;
  border-top-right-radius: 66px;
  background-image: url(../images/Frame.png);
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 15px 16px 0;
  background-position: bottom 0px center;
}
@media (max-width: 1199px) {
  .slider_flex .slider_images .swiper-container {
    background-position: bottom -8px left;
  }
}
@media (max-width: 1024px) {
  .slider_flex .slider_images .swiper-container {
    background-position: bottom -7px left;
  }
}
@media (max-width: 991px) {
  .slider_flex .slider_images .swiper-container {
    background-size: contain;
    background-position: bottom -4px center;
  }
}
@media (max-width: 870px) {
  .slider_flex .slider_images .swiper-container {
    background-position: bottom -7px center;
  }
}
@media (max-width: 767px) {
  .slider_flex .slider_images .swiper-container {
    background-position: bottom -4px center;
  }
}
.slider_flex .slider_images .swiper-container .swiper-wrapper {
  overflow: hidden;
  border-top-left-radius: 45px;
  border-top-right-radius: 45px;
}
.slider_flex .slider_images .slider_image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-content: end;
  flex-wrap: wrap;
}
.slider_flex .slider_images .slider_image img {
  transition: 3s;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 1080px) {
  .slider_flex .slider_images .slider_image img {
    -o-object-fit: contain;
       object-fit: contain;
    -o-object-position: bottom;
       object-position: bottom;
  }
}

.com-section-space {
  margin-bottom: 64px;
}
@media only screen and (max-width: 1279px) {
  .com-section-space {
    margin-bottom: 55px;
  }
}
@media only screen and (max-width: 991px) {
  .com-section-space {
    margin-bottom: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .com-section-space {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  .com-section-space {
    margin-bottom: 35;
  }
}

.complaints-section-heading {
  font-size: 30px;
  line-height: 36px;
  font-weight: 700;
  color: rgb(26, 11, 46);
  margin-bottom: 32px;
}
@media only screen and (max-width: 1279px) {
  .complaints-section-heading {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-section-heading {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .complaints-section-heading {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
  }
}

.complaints-section .complaints-container {
  opacity: 1;
  transform: none;
}
.complaints-section .complaints-container .complaints-card {
  border-radius: 8px;
  border: 1px solid rgb(229, 231, 235);
  background-color: rgb(255, 255, 255);
  padding: 32px;
  border-left: 4px solid rgb(107, 47, 255);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
@media only screen and (max-width: 1279px) {
  .complaints-section .complaints-container .complaints-card {
    padding: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-section .complaints-container .complaints-card {
    padding: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .complaints-section .complaints-container .complaints-card {
    padding: 16px;
  }
}
.complaints-section .complaints-container .complaints-card .complaints-title {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: rgb(26, 11, 46);
  margin-bottom: 16px;
}
@media only screen and (max-width: 1279px) {
  .complaints-section .complaints-container .complaints-card .complaints-title {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-section .complaints-container .complaints-card .complaints-title {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.complaints-section .complaints-container .complaints-card .complaints-text {
  color: rgb(55, 65, 81);
  line-height: 16px;
  line-height: 26px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1279px) {
  .complaints-section .complaints-container .complaints-card .complaints-text {
    margin-bottom: 12px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-section .complaints-container .complaints-card .complaints-text {
    margin-bottom: 10px;
    line-height: 22px;
  }
}
.complaints-section .complaints-container .complaints-card .complaints-text:last-child {
  margin-bottom: 0;
}

.complaints-process .complaints-grid {
  display: grid;
  gap: 24px;
  margin-bottom: 32px;
}
@media (min-width: 575px) {
  .complaints-process .complaints-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .complaints-process .complaints-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 1279px) {
  .complaints-process .complaints-grid {
    gap: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-process .complaints-grid {
    gap: 16px;
  }
}
.complaints-process .complaints-grid .complaints-card {
  border-radius: 8px;
  border: 1px solid rgb(229, 231, 235);
  background-color: #fff;
  color: rgb(9, 9, 11);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  padding: 24px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1279px) {
  .complaints-process .complaints-grid .complaints-card {
    padding: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-process .complaints-grid .complaints-card {
    padding: 16px;
  }
}
.complaints-process .complaints-grid .complaints-card:hover {
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.084) 0px 7.09957px 10.8105px -2.03319px, rgba(0, 0, 0, 0.068) 0px 2.71092px 4.06638px -2.71092px;
}
.complaints-process .complaints-grid .complaints-card .complaints-card-content {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
@media only screen and (max-width: 991px) {
  .complaints-process .complaints-grid .complaints-card .complaints-card-content {
    gap: 12px;
  }
}
.complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-icon {
  width: 48px;
  height: 48px;
  background-color: #f5f3ff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 1199px) {
  .complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-icon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-icon {
    width: 34px;
    height: 34px;
  }
}
.complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-icon svg {
  width: 24px;
  height: 24px;
  color: #6b2fff;
}
@media only screen and (max-width: 1199px) {
  .complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-icon svg {
    width: 20px;
    height: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-icon svg {
    width: 18px;
    height: 18px;
  }
}
.complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-info .complaints-title {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 4px;
  font-weight: 700;
  color: rgb(26, 11, 46);
}
.complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-info .complaints-highlight {
  color: #6b2fff;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 4px;
}
.complaints-process .complaints-grid .complaints-card .complaints-card-content .complaints-info .complaints-desc {
  color: #4b5563;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}
.complaints-process .complaints-action {
  text-align: center;
}
.complaints-process .complaints-action .complaints-btn {
  outline: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: #6b2fff;
  color: #fff;
  font-weight: 500;
  padding: 9px 32px;
  font-size: 18px;
  line-height: 28px;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  border: 1px solid rgb(229, 231, 235);
}
@media only screen and (max-width: 991px) {
  .complaints-process .complaints-action .complaints-btn {
    padding: 9px 24px;
    font-size: 17px;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .complaints-process .complaints-action .complaints-btn {
    padding: 9px 16px;
    font-size: 16px;
    line-height: 24px;
  }
}
.complaints-process .complaints-action .complaints-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.complaints-process .complaints-action .complaints-btn:hover {
  background-color: #5a24e6;
}

.complaints-info-section .complaints-info-card {
  border-radius: 8px;
  border: 1px solid rgb(229, 231, 235);
  background-color: #fff;
  color: rgb(9, 9, 11);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  padding: 32px;
}
@media only screen and (max-width: 1279px) {
  .complaints-info-section .complaints-info-card {
    padding: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-info-section .complaints-info-card {
    padding: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .complaints-info-section .complaints-info-card {
    padding: 16px;
  }
}
.complaints-info-section .complaints-info-card .complaints-info-text {
  color: rgb(55, 65, 81);
  margin-bottom: 24px;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.complaints-info-section .complaints-info-card .complaints-info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media only screen and (max-width: 767px) {
  .complaints-info-section .complaints-info-card .complaints-info-list {
    gap: 12px;
  }
}
.complaints-info-section .complaints-info-card .complaints-info-list .complaints-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.complaints-info-section .complaints-info-card .complaints-info-list .complaints-info-item p {
  color: rgb(55, 65, 81);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
}
.complaints-info-section .complaints-info-card .complaints-info-list .complaints-info-item .complaints-info-number {
  width: 24px;
  height: 24px;
  border-radius: 100%;
  background-color: #6b2fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.complaints-info-section .complaints-info-card .complaints-info-list .complaints-info-item .complaints-info-number span {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 16px;
}
.complaints-info-section .complaints-info-card .complaints-info-note {
  margin-top: 24px;
  padding: 16px;
  background-color: #eff6ff;
  border-left: 4px solid #3b82f6;
  border-radius: 4px;
}
@media only screen and (max-width: 1199px) {
  .complaints-info-section .complaints-info-card .complaints-info-note {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-info-section .complaints-info-card .complaints-info-note {
    margin-top: 16px;
  }
}
.complaints-info-section .complaints-info-card .complaints-info-note p {
  font-size: 14px;
  line-height: 20px;
  color: rgb(30, 58, 138);
}
.complaints-info-section.frguidelines .complaints-info-card {
  background-color: rgb(245, 243, 255);
  border: none;
}
.complaints-info-section.frguidelines .frguidelines-title {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: rgb(26, 11, 46);
  margin-bottom: 24px;
}
@media only screen and (max-width: 991px) {
  .complaints-info-section.frguidelines .frguidelines-title {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 20px;
  }
}

.complaints-handling-section .complaints-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.complaints-handling-section .complaints-steps .complaint-step {
  border: 1px solid rgb(229, 231, 235);
  background: #fff;
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
  border-radius: 8px;
  padding: 24px;
}
@media only screen and (max-width: 1279px) {
  .complaints-handling-section .complaints-steps .complaint-step {
    padding: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-handling-section .complaints-steps .complaint-step {
    padding: 16px;
  }
}
.complaints-handling-section .complaints-steps .complaint-step .complaint-content {
  display: flex;
  gap: 1rem;
}
.complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-icon {
  flex-shrink: 0;
}
.complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-icon .complaint-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #6b2fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 18px;
}
@media only screen and (max-width: 1199px) {
  .complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-icon .complaint-number {
    width: 40px;
    height: 40px;
    font-size: 17px;
    line-height: 17px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-icon .complaint-number {
    width: 34px;
    height: 34px;
    font-size: 16px;
    line-height: 16px;
  }
}
.complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-text {
  flex: 1;
}
.complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-text h3 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 8px;
}
@media only screen and (max-width: 991px) {
  .complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-text h3 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 4px;
  }
}
.complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-text p {
  color: #555;
  line-height: 26px;
  font-size: 16px;
}
@media only screen and (max-width: 991px) {
  .complaints-handling-section .complaints-steps .complaint-step .complaint-content .complaint-text p {
    line-height: 22px;
  }
}
.complaints-handling-section .complaints-steps .complaint-step .complaint-line {
  margin-left: 24px;
  margin-top: 16px;
  width: 2px;
  height: 1.5rem;
  background: #e5e5e5;
}
@media only screen and (max-width: 1279px) {
  .complaints-handling-section .complaints-steps .complaint-step .complaint-line {
    margin-left: 20px;
    margin-top: 14px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-handling-section .complaints-steps .complaint-step .complaint-line {
    margin-left: 16px;
    margin-top: 12px;
  }
}
.complaints-handling-section .complaints-response {
  background: #f5f3ff;
  border-radius: 8px;
  padding: 24px;
  margin-top: 24px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 1279px) {
  .complaints-handling-section .complaints-response {
    padding: 20px;
    margin-top: 20px;
  }
}
@media only screen and (max-width: 991px) {
  .complaints-handling-section .complaints-response {
    padding: 16px;
    margin-top: 16px;
  }
}
.complaints-handling-section .complaints-response .response-content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.complaints-handling-section .complaints-response .response-content .response-icon {
  width: 24px;
  height: 24px;
  color: #6b2fff;
  margin-top: 0.25rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 991px) {
  .complaints-handling-section .complaints-response .response-content .response-icon {
    width: 20px;
    height: 20px;
  }
}
.complaints-handling-section .complaints-response .response-content .response-text h4 {
  font-size: 16px;
  line-height: 24px;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 8px;
}
.complaints-handling-section .complaints-response .response-content .response-text p {
  color: #555;
  line-height: 24px;
}
@media only screen and (max-width: 991px) {
  .complaints-handling-section .complaints-response .response-content .response-text p {
    line-height: 20px;
  }
}

.external-dispute-section .external-card {
  border: 1px solid #ddd;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  padding: 32px;
}
@media only screen and (max-width: 1279px) {
  .external-dispute-section .external-card {
    padding: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .external-dispute-section .external-card {
    padding: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .external-dispute-section .external-card {
    padding: 16px;
  }
}
.external-dispute-section .external-card .external-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 991px) {
  .external-dispute-section .external-card .external-header {
    margin-bottom: 10px;
  }
}
.external-dispute-section .external-card .external-header .external-icon {
  width: 64px;
  height: 64px;
  background: #6b2fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 1279px) {
  .external-dispute-section .external-card .external-header .external-icon {
    width: 60px;
    height: 60px;
  }
}
@media only screen and (max-width: 991px) {
  .external-dispute-section .external-card .external-header .external-icon {
    width: 54px;
    height: 54px;
  }
}
@media only screen and (max-width: 767px) {
  .external-dispute-section .external-card .external-header .external-icon {
    width: 50px;
    height: 50px;
  }
}
.external-dispute-section .external-card .external-header .external-icon .icon-shield {
  width: 32px;
  height: 32px;
  color: #fff;
}
@media only screen and (max-width: 1279px) {
  .external-dispute-section .external-card .external-header .external-icon .icon-shield {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (max-width: 991px) {
  .external-dispute-section .external-card .external-header .external-icon .icon-shield {
    width: 28px;
    height: 28px;
  }
}
@media only screen and (max-width: 767px) {
  .external-dispute-section .external-card .external-header .external-icon .icon-shield {
    width: 24px;
    height: 24px;
  }
}
.external-dispute-section .external-card .external-header .external-content {
  flex: 1;
}
.external-dispute-section .external-card .external-header .external-content h3 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1279px) {
  .external-dispute-section .external-card .external-header .external-content h3 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .external-dispute-section .external-card .external-header .external-content h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
.external-dispute-section .external-card .external-header .external-content p {
  color: #555;
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 16px;
}
.external-dispute-section .external-card .external-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: #f8f8fa;
  border-radius: 8px;
  padding: 24px;
}
@media only screen and (max-width: 1279px) {
  .external-dispute-section .external-card .external-contact {
    padding: 20px;
    gap: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .external-dispute-section .external-card .external-contact {
    padding: 16px;
    gap: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .external-dispute-section .external-card .external-contact {
    grid-template-columns: repeat(1, 1fr);
  }
}
.external-dispute-section .external-card .external-contact .contact-item {
  text-align: center;
}
@media (min-width: 768px) {
  .external-dispute-section .external-card .external-contact .contact-item {
    text-align: left;
  }
}
.external-dispute-section .external-card .external-contact .contact-item .contact-label {
  font-size: 14px;
  line-height: 20px;
  color: #666;
  margin-bottom: 4px;
}
.external-dispute-section .external-card .external-contact .contact-item .contact-link {
  color: #6b2fff;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.external-dispute-section .external-card .external-contact .contact-item .contact-link:hover {
  text-decoration: underline;
}
.external-dispute-section .external-card .external-contact .contact-item .contact-link .icon-link {
  width: 16px;
  height: 16px;
}

.commitment-section .commitment-card {
  background: linear-gradient(to right, #6b2fff, #5a24e6);
  color: #fff;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: none;
}
@media only screen and (max-width: 1279px) {
  .commitment-section .commitment-card {
    padding: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .commitment-section .commitment-card {
    padding: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .commitment-section .commitment-card {
    padding: 16px;
  }
}
.commitment-section .commitment-card h2 {
  font-size: 24px;
  line-height: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media only screen and (max-width: 1279px) {
  .commitment-section .commitment-card h2 {
    font-size: 22px;
    line-height: 30px;
    margin-bottom: 12px;
  }
}
@media only screen and (max-width: 991px) {
  .commitment-section .commitment-card h2 {
    font-size: 20px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.commitment-section .commitment-card p {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 991px) {
  .commitment-section .commitment-card p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 10px;
  }
}
.commitment-section .commitment-card p:last-child {
  margin-bottom: 0;
}

.feature-section .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .feature-section .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 991px) {
  .feature-section .feature-grid {
    gap: 16px;
  }
}
.feature-section .feature-grid .feature-card {
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  padding: 24px;
  transition: box-shadow 0.3s ease;
  height: 100%;
}
@media only screen and (max-width: 1279px) {
  .feature-section .feature-grid .feature-card {
    padding: 16px;
  }
}
.feature-section .feature-grid .feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.feature-section .feature-grid .feature-card h3 {
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 12px;
}
@media only screen and (max-width: 1279px) {
  .feature-section .feature-grid .feature-card h3 {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-section .feature-grid .feature-card h3 {
    margin-bottom: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-section .feature-grid .feature-card h3 {
    margin-bottom: 5px;
  }
}
.feature-section .feature-grid .feature-card p {
  color: #666;
  font-size: 14px;
  line-height: 22px;
}

.feature-request .form-wrapper {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-radius: 0.75rem;
  padding: 32px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}
@media only screen and (max-width: 1279px) {
  .feature-request .form-wrapper {
    padding: 26px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-request .form-wrapper {
    padding: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-request .form-wrapper {
    padding: 16px;
  }
}
.feature-request .feature-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 1279px) {
  .feature-request .feature-form {
    gap: 20px;
  }
}
.feature-request .feature-form .form-row {
  display: grid;
  gap: 24px;
}
@media (min-width: 768px) {
  .feature-request .feature-form .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1279px) {
  .feature-request .feature-form .form-row {
    gap: 20px;
  }
}
.feature-request .feature-form .form-group label {
  display: block;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  color: #444;
  margin-bottom: 8px;
}
.feature-request .feature-form .form-group input,
.feature-request .feature-form .form-group textarea {
  width: 100%;
  border: 1px solid #d1d1d1;
  border-radius: 6px;
  padding: 13px 12px;
  font-size: 14px;
  line-height: 20px;
  background: #fff;
  color: #333;
  transition: border 0.2s, box-shadow 0.2s;
}
@media only screen and (max-width: 1199px) {
  .feature-request .feature-form .form-group input,
  .feature-request .feature-form .form-group textarea {
    padding: 11px 12px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-request .feature-form .form-group input,
  .feature-request .feature-form .form-group textarea {
    padding: 9px 12px;
  }
}
.feature-request .feature-form .form-group input:focus,
.feature-request .feature-form .form-group textarea:focus {
  border-color: #6b2fff;
  box-shadow: 0 0 0 2px rgba(107, 47, 255, 0.2);
  outline: none;
}
.feature-request .feature-form .form-group textarea {
  resize: none;
  min-height: 120px;
}
.feature-request .feature-form .form-group .bootstrap-select {
  width: 100% !important;
}
.feature-request .feature-form .form-group .bootstrap-select .dropdown-toggle {
  padding: 11px 12px;
}
@media only screen and (max-width: 1199px) {
  .feature-request .feature-form .form-group .bootstrap-select .dropdown-toggle {
    padding: 9px 12px;
  }
}
@media only screen and (max-width: 991px) {
  .feature-request .feature-form .form-group .bootstrap-select .dropdown-toggle {
    padding: 7px 12px;
  }
}
.feature-request .feature-form .form-group .tip {
  font-size: 12px;
  line-height: 16px;
  color: #666;
  margin-top: 8px;
}
.feature-request .feature-form .input-icon {
  position: relative;
}
.feature-request .feature-form .input-icon .icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  color: #999;
}
.feature-request .feature-form .input-icon input {
  padding-left: 40px;
}
.feature-request .feature-form .info-box {
  display: flex;
  gap: 1rem;
  background: #eff6ff;
  border-left: 4px solid #3b82f6;
  padding: 1rem;
  border-radius: 0.5rem;
  color: #1e3a8a;
  font-size: 0.875rem;
}
.feature-request .feature-form .info-box .info-icon {
  flex-shrink: 0;
}
.feature-request .feature-form .info-box .info-icon .icon-bulb {
  width: 1.25rem;
  height: 1.25rem;
  color: #2563eb;
  margin-top: 0.25rem;
}
.feature-request .feature-form .info-box .info-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.feature-request .feature-form .feature-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #6b2fff;
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  font-weight: 500;
  border: none;
  border-radius: 8px;
  padding: 17px 17px;
  cursor: pointer;
  transition: background 0.3s;
}
@media only screen and (max-width: 991px) {
  .feature-request .feature-form .feature-submit {
    padding: 14px 14px;
  }
}
@media only screen and (max-width: 767px) {
  .feature-request .feature-form .feature-submit {
    padding: 12px 12px;
  }
}
@media only screen and (max-width: 480px) {
  .feature-request .feature-form .feature-submit {
    padding: 10px 10px;
  }
}
.feature-request .feature-form .feature-submit:hover {
  background: #5a24e6;
}
.feature-request .feature-form .feature-submit .send-icon {
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 2px;
}
.feature-request .success-card {
  display: none;
  border: 2px solid #bbf7d0;
  background: #f0fdf4;
  color: #1a0b2e;
  border-radius: 12px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  max-width: 700px;
  margin: 0 auto;
}
@media (max-width: 1279px) {
  .feature-request .success-card {
    padding: 40px;
  }
}
@media (max-width: 1199px) {
  .feature-request .success-card {
    padding: 36px;
  }
}
@media (max-width: 991px) {
  .feature-request .success-card {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .feature-request .success-card {
    padding: 24px;
  }
}
@media (max-width: 480px) {
  .feature-request .success-card {
    padding: 20px;
  }
}
.feature-request .success-card .success-icon {
  width: 64px;
  height: 64px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
@media (max-width: 1199px) {
  .feature-request .success-card .success-icon {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .feature-request .success-card .success-icon {
    margin-bottom: 16px;
  }
}
.feature-request .success-card .success-icon .icon {
  width: 40px;
  height: 40px;
  stroke: #16a34a;
}
.feature-request .success-card h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.feature-request .success-card .main-text {
  font-size: 1.125rem;
  color: #374151;
  margin-bottom: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 991px) {
  .feature-request .success-card .main-text {
    font-size: 1rem;
    line-height: 1.4;
  }
}
.feature-request .success-card .sub-text {
  font-size: 0.875rem;
  color: #4b5563;
}

.submit-complaint-modal {
  position: fixed;
  inset: 0;
  z-index: 1055;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  display: none;
  overflow-y: auto;
}
.submit-complaint-modal.active {
  display: flex;
}
.submit-complaint-modal.active .submit-complaint-modal__overlay {
  opacity: 1;
  visibility: visible;
}
.submit-complaint-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.submit-complaint-modal.scam-main .submit-complaint-modal__overlay {
  position: fixed !important;
}
.submit-complaint-modal__content {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  max-width: 700px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  z-index: 2;
  animation: fadeIn 0.3s ease-out;
  margin: auto;
}
@media (max-width: 1199px) {
  .submit-complaint-modal__content {
    padding: 1.5rem;
  }
}
@media (max-width: 991px) {
  .submit-complaint-modal__content {
    overflow: auto;
    max-height: 600px;
    padding: 1.2rem;
  }
}
.submit-complaint-modal__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.submit-complaint-modal__icon {
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  background: rgb(245, 243, 255);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6b2fff;
}
@media only screen and (max-width: 991px) {
  .submit-complaint-modal__icon {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .submit-complaint-modal__icon {
    width: 36px;
    height: 36px;
  }
}
.submit-complaint-modal__icon svg {
  width: 24px;
  height: 24px;
}
@media only screen and (max-width: 991px) {
  .submit-complaint-modal__icon svg {
    width: 20px;
    height: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .submit-complaint-modal__icon svg {
    width: 16px;
    height: 16px;
  }
}
.submit-complaint-modal__title {
  font-size: 24px;
  font-weight: 700;
  color: #1a0b2e;
}
@media only screen and (max-width: 991px) {
  .submit-complaint-modal__title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 767px) {
  .submit-complaint-modal__title {
    font-size: 20px;
  }
}
.submit-complaint-modal__subtitle {
  color: #666;
  margin-bottom: 1.5rem;
}

.submit-complaint-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media only screen and (max-width: 991px) {
  .submit-complaint-form {
    gap: 20px;
  }
}
.submit-complaint-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .submit-complaint-form .form-row {
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 991px) {
  .submit-complaint-form .form-row {
    gap: 20px;
  }
}
.submit-complaint-form .form-group {
  display: flex;
  flex-direction: column;
}
.submit-complaint-form .form-group label {
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}
.submit-complaint-form .form-group .input-wrapper {
  position: relative;
}
.submit-complaint-form .form-group .input-wrapper .icon {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  color: #888;
  font-size: 1rem;
  display: flex;
}
.submit-complaint-form .form-group .input-wrapper input {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 11px 12px 11px 40px;
  font-size: 16px;
  outline: none;
  transition: 0.2s ease;
}
@media only screen and (max-width: 991px) {
  .submit-complaint-form .form-group .input-wrapper input {
    padding: 9px 12px 9px 40px;
  }
}
.submit-complaint-form .form-group .input-wrapper input:focus {
  border-color: #6b2fff;
  box-shadow: 0 0 0 3px rgba(107, 47, 255, 0.15);
}
.submit-complaint-form .form-group textarea {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  padding: 0.75rem 0.75rem 0.75rem 2.25rem;
  font-size: 1rem;
  outline: none;
  transition: 0.2s ease;
}
.submit-complaint-form .form-group textarea:focus {
  border-color: #6b2fff;
  box-shadow: 0 0 0 3px rgba(107, 47, 255, 0.15);
}
.submit-complaint-form .form-group textarea {
  padding-left: 0.75rem;
  resize: none;
}
.submit-complaint-form .form-group .helper-text {
  font-size: 0.8rem;
  color: #888;
  margin-top: 0.25rem;
}
.submit-complaint-form.scam-inner .form-group .input-wrapper input {
  padding-left: 40px !important;
}
.submit-complaint-form .alert-box {
  display: flex;
  gap: 1rem;
  background: rgb(239, 246, 255);
  border-left: 4px solid rgb(59, 130, 246);
  border-radius: 4px;
  padding: 1rem;
}
.submit-complaint-form .alert-box .alert-icon svg, .submit-complaint-form .alert-box .alert-icon line {
  color: rgb(37, 99, 235);
}
.submit-complaint-form .alert-box .alert-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: rgb(30, 58, 138);
}
.submit-complaint-form .form-actions {
  display: flex;
  gap: 1rem;
}
@media only screen and (max-width: 480px) {
  .submit-complaint-form .form-actions {
    flex-direction: column;
  }
}
.submit-complaint-form .form-actions .btn {
  flex: 1;
  height: 3rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.2s ease;
}
.submit-complaint-form .form-actions .btn.btn-outline {
  border: 1px solid #ccc;
  background: #fff;
  color: #333;
}
.submit-complaint-form .form-actions .btn.btn-outline:hover {
  background: #f5f5f5;
}
.submit-complaint-form .form-actions .btn.btn-primary {
  background: #6b2fff;
  color: #fff;
  border: none;
}
.submit-complaint-form .form-actions .btn.btn-primary:hover {
  background: #5a24e6;
}
.submit-complaint-form .form-actions .btn.btn-primary svg {
  margin-left: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.report-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1060;
  display: none;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 1rem;
}
.report-success-modal::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.report-success-modal.active {
  display: flex;
}
.report-success-modal.active::before {
  opacity: 1;
  visibility: visible;
}
.report-success-modal .report-success {
  z-index: 2;
  margin: auto;
  animation: fadeIn 0.3s ease-out;
}

.report-success {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 640px;
  width: 100%;
  margin: 32px auto;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  text-align: center;
}
.report-success .success-content {
  padding: 32px 0;
}
.report-success .success-icon {
  width: 80px;
  height: 80px;
  background: #dcfce7;
  border-radius: 50%;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.report-success .success-icon .check-icon {
  width: 40px;
  height: 40px;
  color: #16a34a;
}
.report-success h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1a0b2e;
  margin-bottom: 16px;
}
.report-success .message {
  font-size: 16px;
  color: #4b5563;
  margin-bottom: 16px;
  line-height: 1.6;
}
.report-success .reference {
  font-size: 14px;
  color: #6b7280;
}

body.modal-open-c {
  overflow: hidden;
}

.security-compliance-section .security-compliance-cards {
  background: linear-gradient(270deg, #ffffff 0%, #faf7ff 100%);
  border: 1px solid rgba(148, 84, 255, 0.2);
  padding: 10px 10px 10px 50px;
  border-radius: 30px;
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1279px) {
  .security-compliance-section .security-compliance-cards {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .security-compliance-section .security-compliance-cards {
    border-radius: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .security-compliance-section .security-compliance-cards {
    padding: 10px 10px 10px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .security-compliance-section .security-compliance-cards {
    flex-direction: column;
    padding: 10px;
  }
}
.security-compliance-section .security-compliance-cards .security-card-img {
  border-radius: 24px;
}
@media screen and (max-width: 1279px) {
  .security-compliance-section .security-compliance-cards .security-card-img {
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .security-compliance-section .security-compliance-cards .security-card-img {
    border-radius: 16px;
  }
}
.security-compliance-section .security-compliance-cards .security-card-content .security-card-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(32px + 10 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  line-height: 1.36;
  color: #21094a;
  margin-bottom: 24px;
  max-width: 610px;
}
.security-compliance-section .security-compliance-cards .security-card-content .security-card-title strong {
  font-weight: 600;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .security-compliance-section .security-compliance-cards .security-card-content .security-card-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440.5px) {
  .security-compliance-section .security-compliance-cards .security-card-content .security-card-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .security-compliance-section .security-compliance-cards .security-card-content .security-card-title {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .security-compliance-section .security-compliance-cards .security-card-content .security-card-title {
    margin-bottom: 10px;
  }
}
.security-compliance-section .security-compliance-cards .security-card-content .security-card-title strong {
  color: #731eff;
}
.security-compliance-section .security-compliance-cards .security-card-content .security-card-text {
  color: #534c60;
  max-width: 610px;
  line-height: 25px;
}

.why-choose-section .why-choose-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(32px + 10 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  line-height: 1.36;
  color: #21094a;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(142, 130, 164, 0.2);
}
.why-choose-section .why-choose-title strong {
  font-weight: 600;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .why-choose-section .why-choose-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440.5px) {
  .why-choose-section .why-choose-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .why-choose-section .why-choose-title {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .why-choose-section .why-choose-title {
    margin-bottom: 10px;
  }
}
.why-choose-section .why-choose-title strong {
  color: #731eff;
}
.why-choose-section .why-choose-content {
  display: -ms-flex;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.why-choose-section .why-choose-content .why-choose-left {
  max-width: 450px;
  width: 100%;
}
.why-choose-section .why-choose-content .why-choose-left p {
  color: #8e82a4;
  max-width: 337px;
}
.why-choose-section .why-choose-content .why-choose-right li {
  color: #534c60;
}
.why-choose-section .why-choose-content .why-choose-right li:not(:last-child) {
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .why-choose-section .why-choose-content .why-choose-right li:not(:last-child) {
    margin-bottom: 10px;
  }
}

.join-section .join-cards {
  background: linear-gradient(270deg, #faf7ff 0%, #ffffff 100%);
  border: 1px solid rgba(148, 84, 255, 0.2);
  padding: 10px 50px 10px 10px;
  border-radius: 30px;
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 1279px) {
  .join-section .join-cards {
    border-radius: 24px;
  }
}
@media screen and (max-width: 767px) {
  .join-section .join-cards {
    border-radius: 18px;
  }
}
@media only screen and (max-width: 1199px) {
  .join-section .join-cards {
    padding: 10px 30px 10px 10px;
    gap: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .join-section .join-cards {
    flex-direction: column;
    padding: 10px;
  }
}
.join-section .join-cards .join-card-img {
  border-radius: 24px;
}
@media screen and (max-width: 1279px) {
  .join-section .join-cards .join-card-img {
    border-radius: 18px;
  }
}
@media screen and (max-width: 767px) {
  .join-section .join-cards .join-card-img {
    border-radius: 16px;
  }
}
.join-section .join-cards .join-card-content .join-card-title {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(32px + 10 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  line-height: 1.36;
  color: #21094a;
  margin-bottom: 24px;
  max-width: 410px;
}
.join-section .join-cards .join-card-content .join-card-title strong {
  font-weight: 600;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .join-section .join-cards .join-card-content .join-card-title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1440.5px) {
  .join-section .join-cards .join-card-content .join-card-title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 991px) {
  .join-section .join-cards .join-card-content .join-card-title {
    line-height: 1.2;
  }
}
@media only screen and (max-width: 767px) {
  .join-section .join-cards .join-card-content .join-card-title {
    margin-bottom: 10px;
  }
}
.join-section .join-cards .join-card-content .join-card-text {
  color: #534c60;
  max-width: 410px;
  line-height: 25px;
}

.cms-wrap .page-wrapper-title {
  margin-bottom: 10px;
}
.cms-wrap .page-wrapper-subtitle {
  display: -ms-flex;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media only screen and (max-width: 991px) {
  .cms-wrap .page-wrapper-subtitle {
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .cms-wrap .page-wrapper-subtitle {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 480px) {
  .cms-wrap .page-wrapper-subtitle {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.cms-wrap .page-wrapper-subtitle .subtitle-text {
  color: #534c60;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(16px + 2 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
}
.cms-wrap .page-wrapper-subtitle .subtitle-text strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-wrap .page-wrapper-subtitle .subtitle-text {
    font-size: 16px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-wrap .page-wrapper-subtitle .subtitle-text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .cms-wrap .page-wrapper-subtitle .subtitle-text {
    font-size: 16px;
  }
}
.cms-wrap .page-wrapper-subtitle .subtitle-text-date {
  color: #8e82a4;
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 0 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2%;
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 6px;
}
.cms-wrap .page-wrapper-subtitle .subtitle-text-date strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-wrap .page-wrapper-subtitle .subtitle-text-date {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-wrap .page-wrapper-subtitle .subtitle-text-date {
    font-size: 14px;
  }
}
.cms-wrap .card-box-wraper .card-box .cms-box-item {
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgb(229, 231, 235);
  border-left: 4px solid rgb(107, 47, 255);
}
@media only screen and (max-width: 767px) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item {
    padding: 16px;
  }
}
.cms-wrap .card-box-wraper .card-box .cms-box-item:not(:last-child) {
  margin-bottom: 20px;
}
.cms-wrap .card-box-wraper .card-box .cms-box-item > *:not(:last-child) {
  margin-bottom: 16px;
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-title {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  font-weight: 700;
  color: rgb(26, 11, 46);
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-title {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-title {
    font-size: 24px;
  }
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-text {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  color: rgb(55, 65, 81);
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-text strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-text {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-text {
    font-size: 16px;
  }
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-text a {
  color: rgb(26, 11, 46);
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-text a:hover {
  color: rgb(107, 47, 255);
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-title-sm {
  font-family: GeneralSans;
  font-weight: 400;
  font-size: calc(14px + 1 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0.2px;
  font-weight: 500;
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-title-sm strong {
  font-weight: 500;
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-title-sm {
    font-size: 14px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-title-sm {
    font-size: 16px;
  }
}
.cms-wrap .card-box-wraper .card-box .cms-box-item h2.cms-box-title-sm {
  font-family: GeneralSans;
  font-weight: 500;
  font-size: calc(20px + 4 * (100vw - 300px) / 1140);
  line-height: 1.5;
  letter-spacing: 0px;
  text-transform: capitalize;
  font-weight: 600;
  display: -ms-flex;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgb(26, 11, 46);
}
@media only screen and (min-device-width: 300px) and (max-device-width: 991px) and (orientation: landscape) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item h2.cms-box-title-sm {
    font-size: 20px;
  }
}
@media screen and (min-width: 1440.5px) {
  .cms-wrap .card-box-wraper .card-box .cms-box-item h2.cms-box-title-sm {
    font-size: 24px;
  }
}
.cms-wrap .card-box-wraper .card-box .cms-box-item h2.cms-box-title-sm .cms-box-number {
  color: rgb(107, 47, 255);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  line-height: normal;
  flex: none;
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-text-sm {
  font-size: 16px;
  line-height: 24px;
  color: rgb(55, 65, 81);
}
.cms-wrap .card-box-wraper .card-box .cms-box-item .cms-box-text-sm strong {
  font-weight: 600;
}
.cms-wrap .card-box-wraper .card-box .cms-box-item h3.cms-box-text-sm {
  color: rgb(26, 11, 46);
  font-weight: 500;
}
.cms-wrap .card-box-wraper .card-box .cms-box-item ul {
  list-style: disc;
  padding-left: 24px;
}
.faq-answer .cms-wrap .card-box-wraper .card-box .cms-box-item ul li::marker {
  color: #731eff;
}
.cms-wrap .card-box-wraper .card-box .cms-box-item ul li ul {
  list-style: circle;
}
.cms-wrap .card-box-wraper .card-box .cms-box-item ul li ul li::marker {
  color: #731eff;
}

.csm-footer-wrap {
  padding: 32px;
  border-radius: 16px;
  background-color: rgb(245, 243, 255);
  margin: 48px 0 60px;
}
@media only screen and (max-width: 1199px) {
  .csm-footer-wrap {
    padding: 24px;
    margin: 28px 0 40px;
  }
}
@media only screen and (max-width: 767px) {
  .csm-footer-wrap {
    padding: 20px;
    margin: 0px 0 40px;
  }
}
.csm-footer-wrap .title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  line-height: 28px;
  font-weight: 600;
  color: rgb(26, 11, 46);
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .csm-footer-wrap .title-wrap {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 16px;
  }
}
.csm-footer-wrap .title-wrap svg {
  height: 20px;
  width: 20px;
}
.csm-footer-wrap .contact-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
@media only screen and (max-width: 1199px) {
  .csm-footer-wrap .contact-list {
    gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .csm-footer-wrap .contact-list {
    gap: 16px;
  }
}
.csm-footer-wrap .contact-list .contact-info-wrap {
  display: flex;
  gap: 10px;
  flex: 1;
}
@media only screen and (max-width: 767px) {
  .csm-footer-wrap .contact-list .contact-info-wrap {
    flex: auto;
    width: auto;
  }
}
.csm-footer-wrap .contact-list .contact-info-wrap svg {
  height: 20px;
  width: 20px;
}
.csm-footer-wrap .contact-list .contact-info-wrap h4 {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
  color: rgb(26, 11, 46);
  font-weight: 500;
}
.csm-footer-wrap .contact-list .contact-info-wrap p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 5px;
  color: rgb(26, 11, 46);
  font-weight: 400;
}
.csm-footer-wrap .contact-list .contact-info-wrap p a {
  color: rgb(107, 47, 255);
}
.csm-footer-wrap .contact-list .contact-info-wrap p a:hover {
  text-decoration: underline;
}

.how-it-works {
  width: calc(100% - 60px);
  background: radial-gradient(100.05% 157.56% at 34.54% 3.61%, #9454ff 0%, #731eff 56.67%, #21094a 100%);
  border-radius: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 70px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 1279px) {
  .how-it-works {
    border-radius: 28px;
  }
}
@media screen and (max-width: 767px) {
  .how-it-works {
    border-radius: 20px;
  }
}
@media (max-width: 767px) {
  .how-it-works {
    width: calc(100% - 20px);
    padding-top: 40px;
  }
}
.how-it-works .section-head {
  color: #f1eefd;
}
.how-it-works .section-head .section-title {
  margin-bottom: 12px;
  color: #fff;
}
.how-it-works .section-head .section-title strong {
  color: #fff;
}

.our-stroy-section {
  text-align: center;
}
.our-stroy-section .title-36 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgb(26, 11, 46);
}
.our-stroy-section .cms-content {
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
  color: rgb(55, 65, 81);
  max-width: 832px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .our-stroy-section .cms-content {
    font-size: 16px;
    line-height: 26px;
  }
}
.our-stroy-section .cms-content p {
  margin-bottom: 16px;
}
.our-stroy-section .cms-content p:last-child {
  margin-bottom: 0;
}

.mission-vision-section {
  background-color: rgb(249, 250, 251);
}
.mission-vision-section .mission-vision-wrap {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}
@media (max-width: 1280px) {
  .mission-vision-section .mission-vision-wrap {
    gap: 30px;
  }
}
@media (max-width: 767px) {
  .mission-vision-section .mission-vision-wrap {
    gap: 20px;
  }
}
.mission-vision-section .mission-vision-wrap .mission-vision-box {
  background-color: #ffffff;
  border: 2px solid rgba(107, 47, 255, 0.1);
  border-radius: 8px;
  padding: 32px;
  max-width: 520px;
  flex: 1;
}
@media (max-width: 1199px) {
  .mission-vision-section .mission-vision-wrap .mission-vision-box {
    padding: 24px;
  }
}
@media (max-width: 991px) {
  .mission-vision-section .mission-vision-wrap .mission-vision-box {
    max-width: 100%;
    flex: auto;
  }
}
.mission-vision-section .mission-vision-wrap .mission-vision-box .icon-box {
  background-image: linear-gradient(to right bottom, rgb(107, 47, 255), rgb(147, 51, 234));
  height: 64px;
  width: 64px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.mission-vision-section .mission-vision-wrap .mission-vision-box .icon-box svg {
  height: 32px;
  width: 32px;
}
.mission-vision-section .mission-vision-wrap .mission-vision-box h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}
@media (max-width: 991px) {
  .mission-vision-section .mission-vision-wrap .mission-vision-box h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .mission-vision-section .mission-vision-wrap .mission-vision-box h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
.mission-vision-section .mission-vision-wrap .mission-vision-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgb(55, 65, 81);
}

.our-value-section .title-36 {
  font-size: 36px;
  line-height: 40px;
  font-weight: 600;
  margin-bottom: 16px;
  color: rgb(26, 11, 46);
  text-align: center;
}
@media (max-width: 1280px) {
  .our-value-section .title-36 {
    font-size: 34px;
    line-height: 38px;
  }
}
@media (max-width: 1199px) {
  .our-value-section .title-36 {
    font-size: 32px;
    line-height: 36px;
  }
}
@media (max-width: 991px) {
  .our-value-section .title-36 {
    font-size: 30px;
    line-height: 34px;
  }
}
@media (max-width: 767px) {
  .our-value-section .title-36 {
    font-size: 28px;
    line-height: 32px;
  }
}
@media (max-width: 575px) {
  .our-value-section .title-36 {
    font-size: 26px;
    line-height: 30px;
  }
}
.our-value-section .cms-content {
  font-size: 18px;
  line-height: 29px;
  font-weight: 400;
  color: rgb(55, 65, 81);
  max-width: 832px;
  margin: 0 auto 64px;
  text-align: center;
}
@media (max-width: 1199px) {
  .our-value-section .cms-content {
    margin: 0 auto 54px;
  }
}
@media (max-width: 991px) {
  .our-value-section .cms-content {
    font-size: 16px;
    line-height: 27px;
    margin: 0 auto 44px;
  }
}
@media (max-width: 767px) {
  .our-value-section .cms-content {
    margin: 0 auto 34px;
  }
}
@media (max-width: 575px) {
  .our-value-section .cms-content {
    margin: 0 auto 24px;
  }
}
.our-value-section .cms-content p {
  margin-bottom: 16px;
}
.our-value-section .cms-content p:last-child {
  margin-bottom: 0;
}
.our-value-section .our-value-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 991px) {
  .our-value-section .our-value-wrap {
    gap: 20px;
  }
}
.our-value-section .our-value-wrap .value-box {
  border: 1px solid rgb(229, 231, 235);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 280px;
  flex: 1;
  transition: all 0.3s ease;
}
@media (max-width: 991px) {
  .our-value-section .our-value-wrap .value-box {
    flex: auto;
    max-width: calc(50% - 10px);
  }
}
@media (max-width: 575px) {
  .our-value-section .our-value-wrap .value-box {
    max-width: 100%;
  }
}
.our-value-section .our-value-wrap .value-box .icon-box {
  background-color: rgb(245, 243, 255);
  height: 64px;
  width: 64px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
}
.our-value-section .our-value-wrap .value-box .icon-box svg {
  height: 32px;
  width: 32px;
}
.our-value-section .our-value-wrap .value-box h3 {
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
  font-weight: 600;
  color: rgb(26, 11, 46);
}
@media (max-width: 1199px) {
  .our-value-section .our-value-wrap .value-box h3 {
    font-size: 22px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .our-value-section .our-value-wrap .value-box h3 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (max-width: 767px) {
  .our-value-section .our-value-wrap .value-box h3 {
    font-size: 18px;
    line-height: 26px;
  }
}
.our-value-section .our-value-wrap .value-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgb(55, 65, 81);
  text-align: center;
}
.our-value-section .our-value-wrap .value-box:hover {
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.25) !important;
}

.regulatory-compliance-section {
  background-color: rgb(249, 250, 251);
}
.regulatory-compliance-section .regulatory-box {
  background-color: #ffffff;
  border: 2px solid rgba(107, 47, 255, 0.1);
  border-radius: 8px;
  padding: 32px;
  max-width: 832px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .regulatory-compliance-section .regulatory-box {
    padding: 24px;
  }
}
.regulatory-compliance-section .regulatory-box .regulatory-title {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
@media (max-width: 991px) {
  .regulatory-compliance-section .regulatory-box .regulatory-title {
    margin-bottom: 16px;
  }
}
.regulatory-compliance-section .regulatory-box .icon-box {
  background-image: linear-gradient(to right bottom, rgb(107, 47, 255), rgb(147, 51, 234));
  height: 64px;
  width: 64px;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 991px) {
  .regulatory-compliance-section .regulatory-box .icon-box {
    height: 54px;
    width: 54px;
  }
}
.regulatory-compliance-section .regulatory-box .icon-box svg {
  height: 32px;
  width: 32px;
}
@media (max-width: 991px) {
  .regulatory-compliance-section .regulatory-box .icon-box svg {
    height: 28px;
    width: 28px;
  }
}
.regulatory-compliance-section .regulatory-box h3 {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 0px;
  font-weight: 600;
  color: rgb(26, 11, 46);
}
@media (max-width: 1280px) {
  .regulatory-compliance-section .regulatory-box h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
@media (max-width: 1199px) {
  .regulatory-compliance-section .regulatory-box h3 {
    font-size: 26px;
    line-height: 32px;
  }
}
@media (max-width: 991px) {
  .regulatory-compliance-section .regulatory-box h3 {
    font-size: 24px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .regulatory-compliance-section .regulatory-box h3 {
    font-size: 22px;
    line-height: 28px;
  }
}
.regulatory-compliance-section .regulatory-box p {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: rgb(55, 65, 81);
  margin-bottom: 16px;
}
.regulatory-compliance-section .regulatory-box p:last-child {
  margin-bottom: 0;
}/*# sourceMappingURL=cms.css.map */