body {
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  max-width: 100dvw;
}

.main_container {
  flex-grow: 1;
  display: flex;
  background-color: #fff;
  max-width: 100dvw;
  margin: auto;
  align-items: center;
  justify-content: center;
  width: calc(100% - 0px);
  position: relative;
  max-width: 1950px;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* Center the modal */
  background-color: #fff;
  padding: 25px;
  border-radius: 8px;
  z-index: 1000;
  width: 400px;
  text-align: center;
}

.qrCode {
  width: 350px;
  height: 350px;
}

.modal-content {
  position: relative;
}

.close-btn {
  position: absolute;
  top: -27px;
  right: -18px;
  font-size: 30px;
  cursor: pointer;
}

.qr-msg {
  position: absolute;
  bottom: -18px;
  display: block;
  color: #8B8B8B;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
  text-align: center;
  width: 100%;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  /* Dim background */
  z-index: 999;
  backdrop-filter: blur(5px);
  /* Blur the background */
}

#scroll-indicator {
  position: fixed;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  width: 60PX;
  height: 60PX;
  border-radius: 100%;
  font-size: 2rem;
  opacity: 0.7;
  color: #FFF;
  cursor: pointer;
  z-index: 1000;
  animation: bounce 1.5s infinite, pulse 2s infinite;
  transition: opacity 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

@keyframes bounce {

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

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


@keyframes pulse {
  0% {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  }

  50% {
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  }

  100% {
    text-shadow: 0 0 0 rgba(0, 0, 0, 0.2);
  }
}

#scroll-indicator.hidden {
  opacity: 0;
  pointer-events: none;
}

a {
  text-decoration: none;
  color: #8b8b8b;
  cursor: pointer;
}

.header_container {
  display: none;
}

.pvt_header {
  display: none;
}

.public_header {
  display: none;
}

.footer_container {
  display: none;
}

.landing_wrapper {
  width: 100%;
}


.join {
  color: var(--N-500, #5C5C5C);
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 6px;
  /* 60% */
}

.powered {
  color: rgba(163, 163, 163, 0.70);
  font-family: Inter;
  font-size: 8px;
  font-style: normal;
  font-weight: 500;
  line-height: 6px;
  /* 100% */
  margin-bottom: 5.5px;
}

.getstarted_Btn {
  text-align: center;
  padding: 15px 15px;
  border-radius: 64px;
  -webkit-tap-highlight-color: transparent;
  background: #9560F1;
  margin-top: 40px;
  cursor: pointer;
  color: #FFF;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 12px;
  /* 100% */
  ;
  max-width: 440px;
}

.banner_info {
  color: #3bb87a;
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  /* 100% */
}

.mini_tag {
  margin-top: 16px;
  color: rgba(0, 0, 0, 0.8);
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  /* 166.667% */
}

.tag_line {
  color: #000;
  font-family: "Instrument Sans";
  font-size: 64px;
  font-style: normal;
  font-weight: 700;
  line-height: 68px;
  /* 106.25% */
  letter-spacing: -1.28px;
  margin-top: 31px;
}

.header_banner {
  position: fixed;
  width: 100%;
  padding: 20px 10px 15px 7%;
  z-index: 1000;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.17);
}

.mob_banner {
  display: none;
}

.tag_div {
  display: flex;
  align-items: center;
}

.tag_svg {
  margin-top: 5px;
  margin-right: 8px;
}

.web_views {
  display: flex;
}

.web_view a {
  color: #000;
}

.tag {
  color: var(--N-500, #5c5c5c);
  font-family: Charter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 100% */
}

.features_wrapper {
  background: #19160d;
  color: #fff;
  padding: 100px 145px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.features_text {
  color: var(--N-300, #b9b9b9);
  font-family: Charter;
  font-size: 1.125rem;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 100% */
}

.cards_wrapper {
  display: flex;
  flex-direction: row;
  gap: 32px;
  justify-content: center;
  text-align: left;
  width: 100%;
  flex-wrap: wrap;
}

.feature_cards1,
.feature_cards2,
.feature_cards3 {
  padding: 50px 80px 30px 80px;
  width: calc(50% - 32px);
  border-radius: 12px;
  max-width: 550px;
}

.policy_cancellation {
  display: flex;
  flex-direction: row;
  gap: 64px;
}

.feature_cards1,
.feature_cards2,
.feature_cards3 {
  background-image: url("/static/images/frame1.webp");
  position: relative;
  min-height: 607px;
  width: calc(50% - 32px);
  background-size: contain;
  /* Ensures the entire image is visible */
  background-repeat: no-repeat;
  /* Prevents the image from repeating */
  background-position: center;
}

.feature_cards2 {
  background-image: url("/static/images/frame2.png");
}

.feature_cards3 {
  background-image: url("/static/images/frame3.png");
  min-height: 445px;
}

.content,
.content2 {
  position: absolute;
  top: 50px;
  left: 80px;
  width: 70%;
}

.mob_card_wrapper {
  display: none;
}

.a_class {
  text-decoration: none;
  color: inherit;
}

.heroBanner_wrapper {
  padding: 90px 30px 150px 7%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.heroBanner_part2 {
  background-image: url("/static/images/web_hero_banner.webp");
  position: relative;
  min-height: 700px;
  min-width: 60dvw;
  width: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.content3 {
  position: absolute;
  top: 50px;
  left: 90px;
  width: 80%;
}

.text_block {
  color: #fff;
  text-align: center;
  font-family: "Instrument Sans";
  font-size: 2.62rem;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 114.286% */
  margin-top: 24px;
  margin-bottom: 70px;
}

.card_num {
  color: #403d33;
  font-family: "Instrument Sans";
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 100% */
}

.card_text {
  color: #887af8;
  font-family: "Instrument Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 18px;
  /* 100% */
}

.card_heading {
  color: var(--N000, #fff);
  font-family: "Instrument Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  margin-top: 15px;
  line-height: 32px;
  /* 133.333% */
}

.card_small_info {
  color: var(--N000, #fff);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 171.429% */
  margin-top: 15px;
  margin-bottom: 25px;
  opacity: 0.5;
}

.feature_three {
  width: 100%;
  margin-top: 8px;
  padding-bottom: 130px;
  display: flex;
  flex-direction: row;
  max-width: 1132px;
}

.feature_three div img {
  height: 100%;
}

.img_detail {
  margin-left: auto;
}

.detail {
  max-width: 30%;
}

.card_img {
  width: 100%;
}

.plan_wrapper {
  background-color: #f8f8f8;
  padding: 80px 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sign_text {
  color: var(--N-500, #5c5c5c);
  font-family: Charter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 100% */
}

.premium_text {
  color: var(--N700, #2d2308);
  text-align: center;
  font-family: "Instrument Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 114.286% */
  margin-bottom: 15px;
}

.premium_texts {
  color: var(--N-500, #5C5C5C);
  font-family: Charter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  /* 100% */
  margin-bottom: 20px;
}

.plan_cards_wrapper {
  display: flex;
  flex-direction: row;
  padding: 25px 145px 15px 145px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
}

.free_plan {
  background: var(--N000, #fff) !important;
  box-shadow: 0px 34px 84px 0px #ebe8e8 !important;
  color: var(--N700, #2D2308) !important;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 116.667% */
}

.arrow_fwd {
  display: inline-block;
  margin-left: 8px;
}

.month {
  color: rgba(255, 255, 255, 0.79);
  display: flex;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
}

.rupee {
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 175% */
}

.price {
  color: #000;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  margin: 0px 4px;
}

.explore {
  display: flex;
  border-radius: 47px;
  background: linear-gradient(96deg, #000 0%, #666 114.42%);
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  width: 100%;
  margin: 35px 0px 10px 0px;
  cursor: pointer;
}

.new_card {
  color: var(--N-400, #8B8B8B);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.free_exp {
  border-radius: 47px;
  background: var(--Button, #9560F1);
  padding: 12px 20px
}

.free_trial_sub {
  color: var(--N000, #FFF);
  font-family: Inter;
  font-size: 14px;
  font-style: italic;
  font-weight: 500;
  line-height: 14px;
  /* 100% */
  opacity: 0.71;
  margin-bottom: 5px;
  margin-top: 16px;
}

.free_title {
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 116.667% */
}

.first_part {
  max-width: 400px;
}

.premium_plan {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  background: linear-gradient(148deg, #B859FC 18.57%, #6308FF 101.97%);
  box-shadow: 0px 34px 74px 0px rgba(96, 38, 208, 0.12);
  padding: 40px 30px;
  width: 490px;
  color: #fff;
  font-family: Inter;
  min-height: 300px;
  justify-content: flex-start;
  align-items: flex-start;
  min-height: 478px;
}

.prem_plan_title {
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 28px;
  /* 116.667% */
}

.prem_detail {
  margin-top: 8px;
  margin-bottom: 20px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 150% */
}

.plan_price {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
}

.included {
  color: rgba(255, 255, 255, 0.7);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 133.333% */
  letter-spacing: 1.2px;
  margin-bottom: 12px;
  margin-top: 28px;
}

.features_prem {
  display: flex;
  align-items: center;
  flex-direction: row;
  margin-bottom: 12px;
}

.svg_div {
  display: flex;
  margin-right: 8px;
  align-items: center;
}

.faq_wrapper,
.lp_footer {
  display: flex;
  flex-direction: row;
  padding: 140px 7%;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fff;
  margin: 0px;
  max-width: 100dvw;
  padding: 80px 7%;
}

.Makers {
  color: var(--N-400, #8B8B8B);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  /* 100% */
}

.follow {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 6px;
  /* 42.857% */
}

.lp_footer {
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 0px;
  background: #F8F8F8;
  max-width: 100dvw;
  padding: 80px 7% 50px 7%;
}

.faq_title {
  color: var(--N700, #2d2308);
  font-family: "Instrument Sans";
  font-size: 42px;
  font-style: normal;
  font-weight: 700;
  line-height: 48px;
  /* 114.286% */
  min-height: 300px;
  padding: 16px;
}

.accordion-container {
  width: 100%;
  min-width: 800px;
  max-width: 800px;
  margin-left: auto;
}

.accordion-item {
  margin-bottom: 10px;
}

.accordion-header{
  width: 100%;
  padding: 10px 20px 20px 20px;
  text-align: left;
  background-color: transparent;
  color: white;
  border: none;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 100% */
  cursor: pointer;
  border-radius: 5px;
  display: flex;
  letter-spacing: 0.6px;
  align-items: center;
  transition: transparent 0.3s ease;
  border-bottom: 1px solid var(--N-100-Outline, #e4e4e4);
  outline: none;
}

.accordion-header h3{
  margin:0;
  width: 100%;
  display: flex;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  letter-spacing: 0.6px;
}

.icon {
  margin-left: auto;
}

.faq_num {
  margin-right: 30px;
  color: #000;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 16px;
  /* 100% */
}

.accordion-header.active {
  color: #000;
  font-weight: 800;
}

.accordion-header .plus_minus {
  font-size: 18px;
  margin-right: 10px;
}

.accordion-content {
  display: none;
  padding: 20px 20px 20px 40px;
  letter-spacing: 0.4px;
  background-color: transparent;
  color: var(--N-400, #8b8b8b);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 22px;
  /* 137.5% */
  border-bottom: 1px solid var(--N-100-Outline, #e4e4e4);
}

.accordion-content p {
  margin: 0px 0px 0px 30px;
}

.data_Section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.copyright {
  color: var(--Neutralshades-Grey-N500-Secondary-Text, #5c5c5c);
  font-family: Inter;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: 12px;
  /* 100% */
}

.main_footer {
  display: flex;
  flex-direction: row;
  width: 100%;
  min-height: 220px;
  justify-content: space-between;
}

.social_media {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  margin-top: 15px;
}

.service {
  color: var(--Neutralshades-Grey-N700, #000);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  /* 100% */
}

.service_type {
  display: flex;
  flex-direction: column;
  margin-top: 26px;
}

.service_type div {
  color: var(--Neutralshades-Grey-N400-Body-Text-and-Icons, #8b8b8b);
  margin-bottom: 15px;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 20px;
}

.privacy_landing_wrapper {
  height: 100dvh;
  width: 100%;
  overflow: auto;
}

.policy__page__wrapper {
  padding: 20px;
  width: 80%;
  margin: 100px auto;
}

.data {
  padding: 0px 10px;
}

.policy__page__wrapper h1 {
  text-align: center;
  font-size: 18px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 30px;
  color: #000;
}

.policy__page__content {
  font-size: 14px;
  line-height: 26px;
  padding: 20px;
  color: #333;
}

.policy__page__content p {
  padding: 0px !important;
}

.policy__page__content ul {
  padding-bottom: 30px;
}

.mob_view,
.mob_views {
  display: none;
}

.web_view {
  display: block;
}

.web_plan_view {
  display: flex;
}

.badge-plan {
  display: inline-flex;
  padding: 4px;
  align-items: center;
  border-radius: 40px;
  border: 1px solid var(--N-100-Outline, #E4E4E4);
  background: var(--N-BG, #F2F2F2);
  margin-top: 24px;
  margin-bottom: 45px;

}

.msg_hidden{
  display: none;
}


.monthly {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  color: var(--N-400, #8B8B8B);
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  cursor: pointer;
  position: relative;
}

.toggle-active-my {
  background: #FFF;
  color: #000;
  text-align: center;
  font-weight: 700;
  gap: 10px;
  border-radius: 30px;
}

.coming_soon {
  border-radius: 4px;
  background:#3BB87A;
  display: inline-flex;
  padding: 4px 7px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  font-family: Inter;
  font-size: 10px;
  font-style: normal;
  font-weight: 500;
  line-height: 12px;
  /* 100% */
  position: absolute;
  top: -20px
}

.stock_btn {
  border-radius: 48px;
  border: 1px solid rgba(226, 226, 226, 0.25);
  background: rgba(187, 187, 187, 0.14);
  backdrop-filter: blur(7px);
  color: var(--N700, #2D2308);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px;
  /* 100% */
  display: flex;
  padding: 15px 20px;
  justify-content: center;
  align-items: center;
  
  width: 100%;
}

.helper_line{
  color: #8B8B8B;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px; /* 100% */
  display: inline-block;
  margin: 35px 0px 10px 0px;
}

.prem_feat{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
  align-self: stretch;
  border-radius: 28px;
  background: #AF70FF;
  padding: 4px 10px !important;
  position: relative;
}

.tier_1 , .tier_2 , .tier_3{
    padding: 13px 16px;
}

.prem_feat div{
  width:33.2%;
  text-align: center;
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 14px; /* 100% */
  cursor: pointer;
}

.active_choice{
  border-radius: 77px;
  background: #FFF;
  color: #000 !important;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 16px; /* 100% */
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1 0 0;
}



.popular{
  position: absolute;
  border-radius: 4px;
  border: 1px solid #3BB87A;
  background: #3BB87A;
  bottom: -9px;
  color: #FFF;
  font-family: Inter;
  font-size: 12px !important;
  font-style: normal;
  font-weight: 500;
  line-height: 12px; /* 100% */
  width: 70px !important;
  padding:2px !important;
  left: 50%;
  transform : translateX(-50%);
  text-align: center;
}

/* Media Query for Mobile Devices */
@media (min-width: 1200px) and (max-width: 1320px) {

  .feature_cards1,
  .feature_cards2 {
    width: calc(50% - 18px);
  }
}

@media (min-width: 1031px) and (max-width: 1420px) {
  .accordion-container {
    min-width: 600px;
    max-width: 600px;
  }

  .plan_cards_wrapper {
    padding: 0px;
  }
}


@media (min-width: 1220px) and (max-width: 1440px) {
  .heroBanner_wrapper {
    padding: 25px 30px 150px 7%;
  }

  .feature_cards1,
  .feature_cards2,
  .feature_cards3 {
    min-height: 538px;
    max-width: 475px;
  }

  .feature_cards3 {
    min-height: 400px;
    margin-top: -1%;
  }

  .feature_three {
    max-width: 982px;
  }
}


@media (min-width: 1220px) and (max-width: 1290px) {
  .heroBanner_wrapper {
    padding: 5px 30px 150px 7%;
  }

  .getstarted_Btn {
    margin-top: 25px;
  }
}

@media (min-width: 820px) and (max-width: 1030px) {
  .premium_plan {
    width: 413px;
  }
}

@media (min-width: 1028px) and (max-width: 1220px) {

  .feature_cards1,
  .feature_cards2,
  .feature_cards3 {
    min-height: 438px;
    max-width: 475px;
  }
}

@media (min-width: 720px) and (max-width: 1030px) {
  /* .premium_plan{
    flex-direction: row;
    min-width: 700px
  } */

  #scroll-indicator {
    display: none;
  }

  .first_part {
    max-width: 300px;
  }

  .second_part {
    max-width: 300px;
  }

  .explore {
    border: none;
    width: 292px
  }

  .tag_line {
    font-size: 53px;
    line-height: 54px;
  }

  .accordion-container {
    min-width: 450px;
    max-width: 450px;
  }

  .accordion-header,
  .accordion-content {
    font-size: 14px;
  }

  .faq_title {
    font-size: 37px;
    padding: 3px 8px;
  }

  .faq_wrapper {
    padding: 140px 4% 30px 7%;
  }

  .premium_plan {
    width: 350px
  }

  .premium_plan,
  .free_plan {
    max-width: 425px;
  }

  .heroBanner_part2 {
    min-height: 623px;
    min-width: 59dvw;
  }

  .strokes_dim svg {
    width: 200px
  }

  .cards_wrapper {
    display: none;
  }

  .plan_cards_wrapper {
    padding: 0px
  }

  .mob_card_wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 14px 17px;
  }

  .mob_feat_card1,
  .mob_feat_card2,
  .mob_feat_card3 {
    background-image: url("/static/images/mob_image_one.webp");
    position: relative;
    width: 340px;
    height: 492px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 12px;
  }

  .mob_feat_card2 {
    background-image: url("/static/images/mob_image_three.png");
  }

  .mob_feat_card3 {
    background-image: url("/static/images/mob_img_two.png");
  }

  .mob_content,
  .mob_content2 {
    position: absolute;
    top: 35px;
    left: 30px;
    width: 80%;
  }

  .card_num {
    font-size: 32px;
  }

  .card_text {
    font-size: 16px;
    line-height: 18px;
    /* 100% */
  }

  .card_heading {
    font-size: 20px;
    line-height: 28px;
  }

  .features_wrapper {
    padding: 62px 40px;
  }


  .card_small_info {
    font-size: 12px;
    line-height: 20px;
  }
}

@media (min-width: 320px) and (max-width: 719px) {
  #scroll-indicator {
    display: none;
  }

  .premium_plan {
    flex-direction: column;
    min-width: 280px;
    padding: 24px
  }


  .strokes_dim svg {
    width: 260px
  }

  .mob_banner {
    display: flex;
    width: 99%;
  }

  .heroBanner_part2 {
    display: none;
  }

  .mob_view {
    display: block;
  }

  .mob_views {
    display: flex;
  }

  .mob_view a {
    color: #000;
  }

  .web_view,
  .web_views {
    display: none;
  }

  .faq_wrapper,
  .lp_footer {
    flex-direction: column;
    padding: 40px 2% 50px 2%;
  }

  .lp_footer {
    padding: 40px 6% 40px 5.5%;
  }

  .premium_plan {
    width: 98%;
  }

  .accordion-header,
  .accordion-content {
    font-size: 14px;
  }

  .faq_title {
    text-align: center;
    width: 100%;
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    min-height: 84px;
  }

  .tag_line {
    font-size: 40px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    /* 120% */
    letter-spacing: -0.8px;
    margin-top: 15px;
    max-width: 415px;
  }

  .mini_tag {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
  }

  .tag_div {
    justify-content: center;
  }

  .heroBanner_wrapper {
    flex-direction: column;
    padding: 105px 4.5% 50px 4.5%;
    text-align: center;
  }

  .plan_wrapper {
    padding: 40px 15px 55px 15px;
  }

  .accordion-container {
    min-width: 99.5%;
    max-width: 99.5%;
    margin-left: 0px;
  }

  .main_footer {
    flex-direction: column;
    min-height: 150px;
  }

  .plan_cards_wrapper {
    flex-direction: column-reverse;
    padding: 0px;
  }

  .mob_footer {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 35px;
  }


  .social_media {
    margin-top: 0px;
    margin-left: auto;
  }

  .service_type {
    margin-top: 17px;
    margin-bottom: 17px;
  }

  .data_Section {
    gap: 12px;
    flex-direction: column;
  }

  .mob_logos {
    margin-left: 0px;
    margin-top: 10px
  }

  .policy_cancellation {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .premium_text {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-top: 14px;
    margin-bottom: 20px;
    width: 90%;
  }

  .sign_text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px;
  }

  .free_title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
  }

  .prem_detail {
    color: var(--N-500, #5c5c5c);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
  }

  .prem_plan_title {
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
  }

  .prem_extra {
    color: var(--N000, #fff);
    opacity: 0.7;
  }

  .features_wrapper {
    padding: 42px 20px;
  }

  .text_block {
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 32px;
    margin-bottom: 30px;
  }

  .heroBanner_part2 {
    background-image: url("/static/images/mob_hero_banner_1.png");
  }

  .cards_wrapper {
    display: none;
  }

  .mob_card_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 14px 0px;
  }

  .mob_feat_card1,
  .mob_feat_card2,
  .mob_feat_card3 {
    background-image: url("/static/images/mob_image_one.webp");
    position: relative;
    width: 340px;
    height: 492px;
    background-size: cover;
    /* Ensures the entire image is visible */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    background-position: center;
    border-radius: 16px;
  }

  .mob_feat_card2 {
    background-image: url("/static/images/mob_img_two.png");
  }

  .mob_feat_card3 {
    background-image: url("/static/images/mob_img_two.png");
  }

  .mob_content,
  .mob_content2 {
    position: absolute;
    top: 35px;
    left: 30px;
    width: 80%;
  }

  .card_num {
    font-size: 32px;
  }

  .card_text {
    font-size: 16px;
    line-height: 18px;
    /* 100% */
  }

  .card_heading {
    font-size: 20px;
    line-height: 28px;
  }

  .card_small_info {
    font-size: 12px;
    line-height: 20px;
  }

  .policy__page__wrapper {
    padding: 20px;
    width: 100%;
    margin: 80px auto;
  }

  .policy__page__content ul {
    padding-left: 14px;
    padding-bottom: 20px;
  }

  .web_plan_view {
    display: none;
  }

  .explore {
    border: none;
    width: 99.5%;
    margin-top: 10px;
    font-size: 14.5px;
  }
}

@media (min-width: 320px) and (max-width: 360px) {
  .mob_card_wrapper {
    gap: -10px;
  }

  .explore {
    border: none;
    width: 265px;
  }

  .mob_banner {
    width: 290px;
    height: 300px;
  }

  .mob_feat_card1,
  .mob_feat_card2,
  .mob_feat_card3 {
    background-image: url("/static/images/mob_image_one.webp");
    position: relative;
    width: 305px;
    height: 452px;
    background-size: contain;
    /* Ensures the entire image is visible */
    background-repeat: no-repeat;
    /* Prevents the image from repeating */
    background-position: center;
  }

  .mob_feat_card2 {
    background-image: url("/static/images/mob_img_two.png");
  }

  .mob_feat_card3 {
    background-image: url("/static/images/mob_img_two.png");
  }
}