@font-face {
  font-family: "Antique";
  src: url("../assets/fonts/antique.ttf") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #000;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style-type: none;
}

button,
input,
textarea,
select {
  outline: none;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

h1,
h2 {
  font-family: "Antique", sans-serif;
}

.container {
  margin: 0 auto;
  width: 85%;
  max-width: 1280px;
}

.navbar-component {
  position: absolute;
  top: 55px;
  left: 0;
  z-index: 1000;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .navbar-component {
    top: 40px;
  }
}
.navbar-component .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.navbar-component .container .logo-img-wrapper {
  display: flex;
}
.navbar-component .container .logo-img-wrapper img {
  width: 165px;
}
@media only screen and (max-width: 1024px) {
  .navbar-component .container .logo-img-wrapper img {
    width: 135px;
  }
}
.navbar-component .container ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  gap: 45px;
}
@media only screen and (max-width: 1024px) {
  .navbar-component .container ul {
    display: none;
  }
}
.navbar-component .container ul li a {
  font-size: 16px;
  opacity: 0.65;
  transition: all 0.3s ease;
}
.navbar-component .container ul li a:hover {
  opacity: 1;
}
.navbar-component .container ul li a.active {
  font-weight: 500;
  opacity: 1;
}
.navbar-component .container .cta-btn {
  padding: 10px 20px;
  border: 1px solid #000;
  background-color: #000;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .navbar-component .container .cta-btn {
    padding: 8px 15px;
    font-size: 14px;
  }
}
.navbar-component .container .cta-btn:hover {
  background-color: transparent;
  color: #000;
}

.footer-component {
  padding: 0 10px 10px 10px;
}
@media only screen and (max-width: 1024px) {
  .footer-component {
    padding: 0;
  }
}
.footer-component .footer-wrapper {
  background-color: #000;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .footer-component .footer-wrapper {
    border-radius: 0;
  }
}
.footer-component .footer-wrapper .container {
  padding: 0 0 25px 0;
}
.footer-component .footer-wrapper .container .top-area {
  padding: 65px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 50px;
}
.footer-component .footer-wrapper .container .top-area .content-wrapper .logo-img-wrapper {
  display: flex;
}
.footer-component .footer-wrapper .container .top-area .content-wrapper .logo-img-wrapper img {
  width: 165px;
}
@media only screen and (max-width: 1024px) {
  .footer-component .footer-wrapper .container .top-area .content-wrapper .logo-img-wrapper img {
    width: 135px;
  }
}
.footer-component .footer-wrapper .container .top-area .content-wrapper p {
  margin-top: 25px;
  margin-bottom: 25px;
  max-width: 400px;
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  opacity: 0.65;
}
.footer-component .footer-wrapper .container .top-area .content-wrapper .social-links-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-component .footer-wrapper .container .top-area .content-wrapper .social-links-wrapper a {
  display: flex;
}
.footer-component .footer-wrapper .container .top-area .content-wrapper .social-links-wrapper a svg path {
  transition: all 0.3s ease;
}
.footer-component .footer-wrapper .container .top-area .content-wrapper .social-links-wrapper a:hover svg path {
  fill: #fee400;
}
.footer-component .footer-wrapper .container .top-area .link-parts-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 100px;
}
.footer-component .footer-wrapper .container .top-area .link-parts-wrapper .link-part p {
  margin-bottom: 20px;
  font-size: 18px;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .footer-component .footer-wrapper .container .top-area .link-parts-wrapper .link-part p {
    font-size: 16px;
  }
}
.footer-component .footer-wrapper .container .top-area .link-parts-wrapper .link-part .links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-component .footer-wrapper .container .top-area .link-parts-wrapper .link-part .links-wrapper a {
  font-size: 16px;
  color: #fff;
  opacity: 0.65;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .footer-component .footer-wrapper .container .top-area .link-parts-wrapper .link-part .links-wrapper a {
    font-size: 14px;
  }
}
.footer-component .footer-wrapper .container .top-area .link-parts-wrapper .link-part .links-wrapper a:hover {
  opacity: 1;
}
.footer-component .footer-wrapper .container .bottom-area {
  padding: 25px 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .footer-component .footer-wrapper .container .bottom-area {
    padding: 15px 30px;
    justify-content: center;
  }
}
.footer-component .footer-wrapper .container .bottom-area p {
  font-size: 16px;
  color: #fff;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .footer-component .footer-wrapper .container .bottom-area p {
    font-size: 14px;
    text-align: center;
  }
}
.footer-component .footer-wrapper .container .bottom-area .links-wrapper {
  display: flex;
  gap: 35px;
}
@media only screen and (max-width: 1024px) {
  .footer-component .footer-wrapper .container .bottom-area .links-wrapper {
    display: none;
  }
}
.footer-component .footer-wrapper .container .bottom-area .links-wrapper a {
  font-size: 16px;
  color: #fff;
  opacity: 0.65;
  transition: all 0.3s ease;
}
.footer-component .footer-wrapper .container .bottom-area .links-wrapper a:hover {
  opacity: 1;
}

.faq-component {
  width: 100%;
  padding: 25px 40px;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 15px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .faq-component {
    padding: 20px 30px;
  }
}
.faq-component.active {
  padding: 36px 40px;
}
@media only screen and (max-width: 1024px) {
  .faq-component.active {
    padding: 26px 30px;
  }
}
.faq-component .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-component .question p {
  font-size: 18px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .faq-component .question p {
    font-size: 16px;
  }
}
.faq-component .question svg {
  transform: rotate(180deg);
  width: 18px;
  min-width: 18px;
  height: 18px;
  transition: all 0.3s ease;
}
.faq-component.active .question svg {
  transform: rotate(0);
}
.faq-component .answer {
  overflow: hidden;
  height: 0;
  transition: all 0.3s ease;
}
.faq-component .answer p {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .faq-component .answer p {
    font-size: 14px;
  }
}
.faq-component.active .answer {
  padding-top: 20px;
}

.landing-page .hero-section {
  padding: 10px 10px 0 10px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section {
    padding: 0;
  }
}
.landing-page .hero-section .hero-section-wrapper {
  background-color: #fee400;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .hero-section-wrapper {
    border-radius: 0;
  }
}
.landing-page .hero-section .hero-section-wrapper .container {
  padding-top: 210px;
  display: grid;
  grid-template-columns: 620px auto;
  grid-gap: 50px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .hero-section-wrapper .container {
    padding-top: 125px;
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
}
.landing-page .hero-section .hero-section-wrapper .container .left-area h1 {
  margin-bottom: 20px;
  max-width: 620px;
  font-size: 52px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .hero-section-wrapper .container .left-area h1 {
    font-size: 38px;
  }
}
.landing-page .hero-section .hero-section-wrapper .container .left-area h1 span {
  padding: 10px 10px 2px 10px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .desc {
  margin-bottom: 35px;
  max-width: 500px;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .hero-section-wrapper .container .left-area .desc {
    font-size: 18px;
    line-height: 28px;
  }
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .btns-area {
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .btns-area .cta-btn {
  padding: 12px 30px;
  border: 1px solid #000;
  background-color: #000;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .hero-section-wrapper .container .left-area .btns-area .cta-btn {
    padding: 10px 25px;
    font-size: 16px;
  }
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .btns-area .cta-btn:hover {
  background-color: transparent;
  color: #000;
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .btns-area .qr-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .btns-area .qr-wrapper img {
  width: 46px;
  height: 46px;
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .btns-area .qr-wrapper p {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .points-wrapper {
  padding-bottom: 125px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px 35px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .hero-section-wrapper .container .left-area .points-wrapper {
    padding-bottom: 50px;
  }
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .hero-section-wrapper .container .left-area .points-wrapper p {
    font-size: 14px;
  }
}
.landing-page .hero-section .hero-section-wrapper .container .left-area .points-wrapper p svg {
  min-width: 16px;
}
.landing-page .hero-section .hero-section-wrapper .container .right-area {
  position: relative;
  display: flex;
  justify-content: center;
}
.landing-page .hero-section .hero-section-wrapper .container .right-area img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  max-width: 600px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .hero-section .hero-section-wrapper .container .right-area img {
    position: relative;
    width: 100%;
    max-width: 400px;
  }
}
.landing-page .workflow-section {
  padding: 150px 0;
}
@media only screen and (max-width: 1024px) {
  .landing-page .workflow-section {
    padding: 100px 0;
  }
}
.landing-page .workflow-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .workflow-section .container .sub-title {
  margin-bottom: 20px;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .landing-page .workflow-section .container .sub-title {
    font-size: 12px;
  }
}
.landing-page .workflow-section .container h2 {
  margin-bottom: 15px;
  font-size: 38px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .workflow-section .container h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }
}
.landing-page .workflow-section .container h2 span {
  padding: 10px 10px 2px 10px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
}
.landing-page .workflow-section .container .top-desc {
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .landing-page .workflow-section .container .top-desc {
    margin-bottom: 35px;
    font-size: 16px;
  }
}
.landing-page .workflow-section .container .cards-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .workflow-section .container .cards-wrapper {
    grid-template-columns: 1fr;
  }
}
.landing-page .workflow-section .container .cards-wrapper .card {
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .workflow-section .container .cards-wrapper .card {
    padding: 35px;
  }
}
.landing-page .workflow-section .container .cards-wrapper .card:nth-child(2) {
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 20px;
}
.landing-page .workflow-section .container .cards-wrapper .card span {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fee400;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
}
.landing-page .workflow-section .container .cards-wrapper .card h3 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 1024px) {
  .landing-page .workflow-section .container .cards-wrapper .card h3 {
    font-size: 18px;
  }
}
.landing-page .workflow-section .container .cards-wrapper .card p {
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  opacity: 0.65;
}
.landing-page .features-section {
  padding: 0 10px 0 10px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section {
    padding: 0;
  }
}
.landing-page .features-section .features-section-wrapper {
  background-color: #000;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper {
    border-radius: 0;
  }
}
.landing-page .features-section .features-section-wrapper .container {
  padding: 150px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper .container {
    padding: 100px 0;
  }
}
.landing-page .features-section .features-section-wrapper .container .sub-title {
  margin-bottom: 20px;
  padding: 8px 15px;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper .container .sub-title {
    font-size: 12px;
  }
}
.landing-page .features-section .features-section-wrapper .container h2 {
  margin-bottom: 15px;
  font-size: 38px;
  text-align: center;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper .container h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }
}
.landing-page .features-section .features-section-wrapper .container h2 span {
  padding: 10px 10px 2px 10px;
  background-color: #fee400;
  border-radius: 10px;
  display: inline-block;
  color: #000;
}
.landing-page .features-section .features-section-wrapper .container .top-desc {
  margin-bottom: 65px;
  font-size: 20px;
  line-height: 30px;
  color: #fff;
  text-align: center;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper .container .top-desc {
    margin-bottom: 35px;
    font-size: 16px;
  }
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  grid-gap: 35px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper .container .info-parts-wrapper {
    grid-template-columns: 1fr;
  }
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .info-part {
  display: grid;
  grid-gap: 10px;
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .info-part .info-card {
  padding: 35px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .info-part .info-card {
    padding: 25px;
  }
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .info-part .info-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .info-part .info-card span {
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fee400;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .info-part .info-card h3 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .info-part .info-card h3 {
    font-size: 18px;
  }
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .info-part .info-card p {
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  opacity: 0.65;
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .img-wrapper {
  display: flex;
  justify-content: center;
}
.landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .img-wrapper img {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .landing-page .features-section .features-section-wrapper .container .info-parts-wrapper .img-wrapper img {
    max-width: 300px;
  }
}
.landing-page .pricing-section {
  padding-bottom: 150px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .pricing-section {
    padding-bottom: 100px;
  }
}
.landing-page .pricing-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .pricing-section .container .sub-title {
  margin-bottom: 20px;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .landing-page .pricing-section .container .sub-title {
    font-size: 12px;
  }
}
.landing-page .pricing-section .container h2 {
  margin-bottom: 15px;
  font-size: 38px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .pricing-section .container h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }
}
.landing-page .pricing-section .container h2 span {
  padding: 2px 10px;
  background-color: #000;
  color: #fff;
  border-radius: 10px;
}
.landing-page .pricing-section .container .top-desc {
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .landing-page .pricing-section .container .top-desc {
    margin-bottom: 35px;
    font-size: 16px;
  }
}
.landing-page .pricing-section .container .tab-btns-wrapper {
  margin-bottom: 75px;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.03);
  border-radius: 100px;
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .landing-page .pricing-section .container .tab-btns-wrapper {
    margin-bottom: 40px;
  }
}
.landing-page .pricing-section .container .tab-btns-wrapper button {
  padding: 12px 25px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0.65;
  transition: all 0.3s ease;
}
.landing-page .pricing-section .container .tab-btns-wrapper button.active {
  background-color: #fff;
  opacity: 1;
}
.landing-page .pricing-section .container .cards-wrapper {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 35px 15px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .pricing-section .container .cards-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
}
.landing-page .pricing-section .container .cards-wrapper .card {
  position: relative;
  padding: 50px 25px 35px 25px;
  border: 2px solid #000;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .pricing-section .container .cards-wrapper .card.accent {
  border-color: #fee400;
}
.landing-page .pricing-section .container .cards-wrapper .card .label {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 40px;
  background-color: #fee400;
  border-radius: 10px 10px 0 0;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  text-transform: uppercase;
}
.landing-page .pricing-section .container .cards-wrapper .card h4 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.landing-page .pricing-section .container .cards-wrapper .card .desc {
  margin-bottom: 30px;
  max-width: 250px;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .landing-page .pricing-section .container .cards-wrapper .card .desc {
    font-size: 14px;
  }
}
.landing-page .pricing-section .container .cards-wrapper .card .price {
  position: relative;
  margin-bottom: 10px;
}
.landing-page .pricing-section .container .cards-wrapper .card .price h3 {
  font-family: "Antique", sans-serif;
  font-size: 48px;
}
.landing-page .pricing-section .container .cards-wrapper .card .price p {
  position: absolute;
  top: 0;
  left: calc(100% + 5px);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.65;
}
.landing-page .pricing-section .container .cards-wrapper .card .sub-text {
  margin-bottom: 30px;
  font-size: 14px;
  opacity: 0.65;
}
.landing-page .pricing-section .container .cards-wrapper .card a {
  width: 100%;
  padding: 12px 30px;
  border: 1px solid #000;
  background-color: #000;
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 1024px) {
  .landing-page .pricing-section .container .cards-wrapper .card a {
    font-size: 16px;
  }
}
.landing-page .pricing-section .container .cards-wrapper .card a:hover {
  background-color: transparent;
  color: #000;
}
.landing-page .pricing-section .container .cards-wrapper .card.accent a {
  border-color: #fee400;
  background-color: #fee400;
  color: #000;
}
.landing-page .pricing-section .container .cards-wrapper .card.accent a:hover {
  opacity: 0.65;
}
.landing-page .pricing-section .container .cards-wrapper .card .points-wrapper {
  margin-top: 30px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.landing-page .pricing-section .container .cards-wrapper .card .points-wrapper p {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  opacity: 0.5;
}
.landing-page .pricing-section .container .cards-wrapper .card .points-wrapper p.included {
  opacity: 1;
}
.landing-page .showcase-section {
  padding: 0 10px 0 10px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .showcase-section {
    padding: 0;
  }
}
.landing-page .showcase-section .showcase-section-wrapper {
  background-color: #fee400;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 1024px) {
  .landing-page .showcase-section .showcase-section-wrapper {
    border-radius: 0;
  }
}
.landing-page .showcase-section .showcase-section-wrapper .container {
  padding: 150px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .showcase-section .showcase-section-wrapper .container {
    padding: 100px 0;
  }
}
.landing-page .showcase-section .showcase-section-wrapper .container .sub-title {
  margin-bottom: 20px;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .landing-page .showcase-section .showcase-section-wrapper .container .sub-title {
    font-size: 12px;
  }
}
.landing-page .showcase-section .showcase-section-wrapper .container h2 {
  margin-bottom: 15px;
  font-size: 38px;
  text-align: center;
  color: #000;
}
@media only screen and (max-width: 1024px) {
  .landing-page .showcase-section .showcase-section-wrapper .container h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }
}
.landing-page .showcase-section .showcase-section-wrapper .container h2 span {
  padding: 10px 10px 2px 10px;
  background-color: #000;
  border-radius: 10px;
  display: inline-block;
  color: #fff;
}
.landing-page .showcase-section .showcase-section-wrapper .container .top-desc {
  margin-bottom: 65px;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  text-align: center;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .landing-page .showcase-section .showcase-section-wrapper .container .top-desc {
    margin-bottom: 35px;
    font-size: 16px;
  }
}
.landing-page .showcase-section .showcase-section-wrapper .container .slider-wrapper {
  position: relative;
  width: 100%;
}
.landing-page .showcase-section .showcase-section-wrapper .container .slider-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100px;
  height: 100%;
  background: linear-gradient(-90deg, transparent, #fee400);
}
.landing-page .showcase-section .showcase-section-wrapper .container .slider-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, transparent, #fee400);
}
.landing-page .showcase-section .showcase-section-wrapper .container .slider-wrapper .mockup-img {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 10;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.landing-page .showcase-section .showcase-section-wrapper .container .slider-wrapper .slide-item {
  transform: scale(0.9);
  opacity: 0.5;
  transition: all 0.4s ease;
}
.landing-page .showcase-section .showcase-section-wrapper .container .slider-wrapper .owl-item.active.center .slide-item {
  transform: scale(1);
  opacity: 1;
}
.landing-page .faqs-section {
  padding: 150px 0;
}
@media only screen and (max-width: 1024px) {
  .landing-page .faqs-section {
    padding: 100px 0;
  }
}
.landing-page .faqs-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.landing-page .faqs-section .container .sub-title {
  margin-bottom: 20px;
  padding: 8px 15px;
  background-color: rgba(0, 0, 0, 0.05);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media only screen and (max-width: 1024px) {
  .landing-page .faqs-section .container .sub-title {
    font-size: 12px;
  }
}
.landing-page .faqs-section .container h2 {
  margin-bottom: 15px;
  font-size: 38px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .faqs-section .container h2 {
    margin-bottom: 12px;
    font-size: 28px;
  }
}
.landing-page .faqs-section .container .top-desc {
  margin-bottom: 50px;
  font-size: 20px;
  line-height: 30px;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .landing-page .faqs-section .container .top-desc {
    font-size: 16px;
  }
}
.landing-page .faqs-section .container .faqs-wrapper {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-gap: 10px;
}
.landing-page .content-section {
  padding-top: 150px;
}
@media only screen and (max-width: 1024px) {
  .landing-page .content-section {
    padding-top: 120px;
  }
}
.landing-page .content-section .container {
  padding: 100px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.landing-page .content-section .container h1 {
  margin-bottom: 15px;
  font-size: 38px;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .landing-page .content-section .container h1 {
    font-size: 28px;
  }
}
.landing-page .content-section .container .top-desc {
  margin-bottom: 65px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  opacity: 0.65;
}
@media only screen and (max-width: 1024px) {
  .landing-page .content-section .container .top-desc {
    margin-bottom: 35px;
    font-size: 16px;
  }
}
.landing-page .content-section .container .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
.landing-page .content-section .container .content-wrapper p {
  font-size: 16px;
  line-height: 24px;
  opacity: 0.65;
}
.landing-page .content-section .container .content-wrapper h3 {
  font-size: 20px;
}/*# sourceMappingURL=index.css.map */