@font-face {
  font-family: "UTM Swiss 721 Black Condensed";
  src: url(/font/UTM-Swiss-721-Black-Condensed.ttf);
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}
:root {
  --primary: #8952e3;
  --black: #12182c;
  --grey: #595064;
  --dark_grey: #767676;
  --light_grey2: #dad9d9;
  --light_grey: #eeeeee;
  --white: #ffffff;
  --g1: linear-gradient(180deg, #8952e3 0%, #6752e3 100%);
  --violet_light: #f9f8ff;
  --violet_light2: #f5f1ff;
  --yellow: #ffcd6c;
}

/* banner  */
#banner::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/images/banner.png");
  background-size: cover;
  background-position: right center;
  z-index: -2;
}
#banner {
  color: var(--white);
}
#banner h1 span {
  color: var(--yellow);
  position: relative;
}
#banner h1 span::after {
  content: "";
  position: absolute;
  width: 105%;
  height: 30px;
  background-color: var(--black);
  left: 50%;
  bottom: 0;
  transform: translate(-50%);
  z-index: -1;
}
#banner .started {
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 8px;
  color: var(--primary);
  padding: 10px 15px;
}
#banner .explore {
  background: var(--primary);
  border: 2px solid var(--white);
  border-radius: 8px;
  color: var(--white);
  padding: 10px 15px;
}

body {
  font-family: "Proxima Nova Alt Rg" !important;
  background-color: var(--primary-colo1);
  color: var(--text-color-1);
  position: relative;
  overflow-x: hidden;
  scroll-behavior: smooth !important;
}

a {
  text-decoration: none;
}

/* payment_gateway */
#payment_gateway ul {
  list-style-image: url("/images/icon-check.svg");
}
#payment_gateway button {
  background: #8952e3;
  border-radius: 8px;
  padding: 15px 90px 15px 15px;
}
#payment_gateway button span {
  font-weight: 500;
  font-size: 32px;
  line-height: 28px;
  color: white;
}
#payment_gateway h2::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 4px;
  background-color: var(--primary);
  bottom: -12px;
  left: 0%;
  z-index: 2;
}

/* how_it_work  */
#how_it_work::after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 110%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  background-color: var(--violet_light);
}
#how_it_work h2::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 4px;
  background-color: var(--primary);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
#how_it_work span {
  color: var(--primary);
}
#how_it_work .title_right {
  background-color: var(--violet_light2);
  border-radius: 24px;
  /* padding: 16px; */
}
/* our_solution  */

#our_solution .for_bussiness,
.for_consumer {
  background: #f9f8ff;
  border-radius: 16px;
  padding: 20px;
}
#our_solution h2::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 4px;
  background-color: var(--primary);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* why_choose  */
#why_choose h2::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 4px;
  background-color: var(--primary);
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

/* faq */
#faq::after {
  content: "";
  position: absolute;
  background-color: var(--violet_light);
  width: 100vw;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%);
  z-index: -1;
}
#faq .tab-item {
  background-color: var(--white);
  padding: 20px 16px;
  box-shadow: 0px 0px 13px rgba(151, 71, 255, 0.5);
  border-radius: 24px;
}
#faq .tab-item .card-top:hover {
}
#faq h2::after {
  content: "";
  position: absolute;
  width: 78px;
  height: 4px;
  background-color: var(--primary);
  bottom: -12px;
  left: 0%;
  z-index: 2;
}
.bg-ready_to_try {
  background-image: url("/images/ready_to_try.png");
  background-size: cover;
  border-radius: 24px;
  /* padding: 40px 50px; */
  color: var(--white);
}
#ready_to_try button {
  background: var(--white);
  border: 2px solid var(--white);
  border-radius: 8px;
  padding: 12px 20px;
  color: var(--primary);
}

/* ========= */
.animation_top {
  position: relative;
  transform: translateY(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.animation_top.active {
  transform: translateY(0);
  opacity: 1;
}
/* ============  */
.animation_left {
  position: relative;
  transform: translateX(-150px);
  opacity: 0;
  transition: 1s all ease;
}

.animation_left.active {
  transform: translateX(0);
  opacity: 1;
}
/* ===========  */
.animation_bottom {
  position: relative;
  transform: translateY(150px);
  opacity: 0;
  transition: 1s all ease;
}

.animation_bottom.active {
  transform: translateY(0);
  opacity: 1;
}
/* ===========  */
.animation_right {
  position: relative;
  transform: translateX(150px);
  opacity: 0;
  transition: 1s all ease;
}

.animation_right.active {
  transform: translateX(0);
  opacity: 1;
}
footer {
  background-color: var(--violet_light);
}
footer img.logo-footer {
  width: 200px;
  /* padding: 20px; */
}
footer hr {
  border-top: 1px solid white;
}
footer h3 {
  font-weight: 700;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.06em;
  margin-bottom: 15px;
}
footer h5 {
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
footer .custom-container {
  padding: 40px 0px;
}
footer .list-icon img {
  width: 24px;
}
.coppy-right {
  background-color: var(--violet_light2);
  font-weight: 400;
  font-size: 15px;
  line-height: 130%;
  padding: 10px;
  color: #6d6d6d;
}
#home-page .banner hr {
  display: none;
}
@media only screen and (max-width: 768px) {
  #banner::after {
    background-image: url("/images/banner-mb.png");
    background-position: center bottom;
  }
  #banner h1 span::after {
    height: 10px;
    bottom: 4px;
  }
  #payment_gateway button span {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1024px) {
  footer img.logo-footer {
    padding: 0;
  }
  footer .custom-container {
    max-width: 100%;
  }
  footer .list-icon h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0.06em;
    color: #ffffff;
  }
  footer .list-icon p {
    font-weight: 600;
    font-size: 14px;
    line-height: 21px;
    color: #dedede;
  }
  footer {
    padding: 20px;
  }
  footer h3 {
    font-size: 16px;
    line-height: 24px;
  }
  footer h5 {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 1400px) {
  section {
    overflow: hidden;
  }
}
@media only screen and (max-width: 768px) {
}
@media only screen and (max-width: 500px) {
  .list-button {
    flex-direction: column;
  }
  .list-button button {
    width: 100%;
  }
  .box-item img {
    width: 48px;
    height: 48px;
  }
  .bg-ready_to_try {
    background-image: url("/images/ready_to_try_mb.png");
    border-radius: 12px;
    padding-bottom: 400px;
  }
}
