* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  background-color: #f3f5ff;
}

section:not(:nth-of-type(1)):not(:nth-of-type(2)) {
  margin-top: 9rem;
}

.bg-grd {
  background: linear-gradient(74deg, #7a3df7 0%, #e87be8 100%);
  transition: 0.5s ease;
}

.custom-edit {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dropdown-item {
  display: flex;
  gap: 10px;
}

.header {
  padding-top: 9rem;
  position: relative;
  color: #fff;
}

.header .gradient-bg {
  background: linear-gradient(74deg, #7a3df7 0%, #e87be8 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}
.hero {
  position: relative;
  color: #fff;
}
.hero .gradient-bg {
  background: linear-gradient(74deg, #7a3df7 0%, #e87be8 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
}

.header .hero-overlay {
  position: absolute;
  width: 100%;
  bottom: 0;
}

.header .hero-overlay img {
  vertical-align: middle;
  border-style: none;
}

.header .navbar {
  border-bottom: 1px solid #fff;
}

.header .header-title {
  margin-bottom: 20px;
}

.header .header-title h1 {
  font-size: 3rem;
  letter-spacing: -1px;
  font-weight: 700;
}

.header .header-image {
  margin: 0 0 10px 0;
  background: rgba(255, 255, 255, 0.5);
  padding: 10px 15px;
  border-radius: 10px;
}

.header .header-text {
  font-size: 14px;
  font-weight: bold;
  max-width: 500px;
}

.header .header-text span {
  font-size: 18px;
  font-weight: bold;
}

.header .header-text img {
  margin: 10px 0 15px 0;
}

.promo-image {
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.promo-image img {
  width: 300px;
  border: 7px solid #000;
  border-radius: 40px;
}

.promo-image::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 46%;
  z-index: -1;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 380px;
  height: 380px;
  background-color: #fff;
  border-radius: 30px;
}

.download-button-single {
  text-align: center;
  margin-top: 10px;
}

.download-button-single a {
  text-decoration: none;
  color: #fff;
  background: linear-gradient(74deg, #7a3df7 0%, #e87be8 100%);
  padding: 10px 15px;
  border-radius: 10px;
  box-shadow: 1px 1px 5px #000;
  font-size: 1.5rem;
}

@media (max-width: 380px){
  .download-button-single a{
    font-size: 0.85rem
  }
}

.download-buttons {
  display: flex;
  margin: 25px 0;
  gap: 20px;
}

.download-buttons .download-button {
  padding: 12px 20px;
  background-color: #fff;
  border-radius: 10px;
  transition: 0.3s;
}

.download-buttons .download-button:hover {
  background-color: #d5d5d5;
  transition: 0.3s;
}

.download-buttons .colored {
  background: linear-gradient(74deg, #7a3df7 0%, #e87be8 100%);
  box-shadow: 1px 1px 5px #000;
}

.app-info .app-info-item {
  margin-top: 10px;
}

.social-media {
  display: flex;
  flex-direction: row;
  margin-top: 20px;
}

.social-media img {
  width: 40px;
}

.section-pre-title {
  text-align: center;
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1rem;
}

.section-pre-title span {
  background: linear-gradient(74deg, #7a3df7 0%, #e87be8 100%);
  padding: 5px 15px;
  border-radius: 50px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: -1px;
  margin-bottom: 3rem;
}

.how-to {
  margin-top: 2rem;
}

.how-to-content .title h2 {
  font-size: 2rem;
  font-weight: 400;
}

.how-to-content .text {
  margin-top: 20px;
}

.how-to-content .stat {
  margin: 40px 20px 20px 20px;
}

.how-to-content .stat .stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding: 2px 0;
  font-size: 1em;
  border-bottom: 1px solid #aeaeae;
}

.how-to-content .stat .stat-item span:first-child {
  font-weight: normal;
  margin-right: 10px;
}

.how-to-content .stat .stat-item span:last-child {
  font-weight: bold;
}

.how-to-content .stat .stat-item .count::after {
  content: "+";
}

.how-to-content .rated img {
  margin: 10px auto;
}

.video_container {
  max-width: 400px;
  margin: 0 auto;
}

.benefits .title {
  margin-top: 2rem;
}

.section-image {
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.benefits-list {
  padding: 20px;
  position: relative;
}

.benefits-list::before {
  content: " ";
  width: 3px;
  height: calc(100% - 50px);
  display: block;
  background: #8241f6;
  position: absolute;
  left: 0;
}

.benefit-card {
  padding: 10px 20px;
  background-color: #fff;
  border-radius: 5px;
  text-align: center;
  margin-bottom: 2rem;
  border: 1px solid silver;
}

.benefit-card .icon {
  width: 70px;
  margin: 10px auto 15px;
  background-color: #8443f6;
  border-radius: 50%;
  padding: 15px;
}

.info .content {
  padding: 15px 20px;
  background-color: #fff;
}

.info-image {
  display: flex;
  justify-content: center;
  margin: 20px 0;
}

.error-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}
.error-page .content {
    max-width: 600px;
    margin: 0 auto;
}
.error-page h1 {
    font-size: 8rem;
    margin-bottom: 1rem;
}
.error-page p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}
/* Main Footer */
footer .main-footer {
  padding: 20px 0;
  background: #252525;
}

footer ul {
  padding-left: 0;
  list-style: none;
}

/* Copy Right Footer */
.footer-copyright {
  background: #222;
  padding: 5px 0;
}

.footer-copyright .logo {
  display: inherit;
}

.footer-copyright nav {
  float: right;
  margin-top: 5px;
}

.footer-copyright nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-copyright nav ul li {
  border-left: 1px solid #505050;
  display: inline-block;
  line-height: 12px;
  margin: 0;
  padding: 0 8px;
}

.footer-copyright nav ul li a {
  color: #969696;
}

.footer-copyright nav ul li:first-child {
  border: medium none;
  padding-left: 0;
}

.footer-copyright p {
  color: #969696;
  margin: 2px 0 0;
}

/* Footer Top */
.footer-top {
  background: #252525;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 3px solid #222;
}

/* Footer transparent */
footer.transparent .footer-top, footer.transparent .main-footer {
  background: transparent;
}

footer.transparent .footer-copyright {
  background: none repeat scroll 0 0 rgba(0, 0, 0, 0.3);
}

/* Footer light */
footer.light .footer-top {
  background: #f9f9f9;
}

footer.light .main-footer {
  background: #f9f9f9;
}

footer.light .footer-copyright {
  background: none repeat scroll 0 0 rgba(255, 255, 255, 0.3);
}

/* Footer 4 */
.footer- .logo {
  display: inline-block;
}

/*====================
    Widgets
====================== */
.widget {
  padding: 20px;
  margin-bottom: 40px;
}

.widget.widget-last {
  margin-bottom: 0px;
}

.widget.no-box {
  padding: 0;
  background-color: transparent;
  margin-bottom: 40px;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  -o-box-shadow: none;
}

.widget.subscribe p {
  margin-bottom: 18px;
}

.widget li a {
  color: #a677ff;
}

.widget li a:hover {
  color: #4b92dc;
}

.widget-title {
  margin-bottom: 20px;
}

.widget-title span {
  background: #839FAD none repeat scroll 0 0;
  display: block;
  height: 1px;
  margin-top: 25px;
  position: relative;
  width: 20%;
}

.widget-title span::after {
  background: inherit;
  content: "";
  height: inherit;
  position: absolute;
  top: -4px;
  width: 50%;
}

.widget-title.text-center span, .widget-title.text-center span::after {
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.widget .badge {
  float: right;
  background: #7f7f7f;
}

.typo-light {
  color: #fff;
}

ul.social-footer2 {
  margin: 0;
  padding: 0;
  width: auto;
}

ul.social-footer2 li {
  display: inline-block;
  padding: 0;
}

ul.social-footer2 li a:hover {
  background-color: #ff8d1e;
}

ul.social-footer2 li a {
  display: block;
  height: 30px;
  width: 30px;
  text-align: center;
}



.btn:hover, .btn:focus, .btn.active {
  background: #4b92dc;
  color: #fff;
  -webkit-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -ms-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -o-box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 250ms ease-in-out 0s;
  -moz-transition: all 250ms ease-in-out 0s;
  -ms-transition: all 250ms ease-in-out 0s;
  -o-transition: all 250ms ease-in-out 0s;
  transition: all 250ms ease-in-out 0s;
}

.faq {
  margin-bottom: 2.5rem;
}

.center{
  display: flex;
  justify-content: center;
}

/* Download  */
.hero{
  padding-top: 100px;

}

.features{
  width: 100%;
}
.features-box{
  margin: 0 auto;
  margin-bottom: 20px;
  max-width: 440px;
}

.features-content{
  border: 1px solid rgb(187 187 187);
  border-radius: 10px;
  padding: 10px 20px;
  background: rgba(0,0,0, 0.4);
}
.features-content h2{
  margin-bottom: 15px;
}
.features-content ul{
  list-style: none;
}
.features-content ul li{
  position: relative;
  margin-bottom: 10px;
}
.download-image{
  margin: 20px 0;
  display: flex;
  justify-content: center;
}
.download-image img{
  border-radius: 10px;
}

.features-list li::before{
  width: 20px;
  height: 20px;
  display: block;
  position: absolute;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
  content: '';
  background-image: url(/assets/img/icons/check.svg);
  background-size: contain;
  background-repeat: no-repeat;
}

.how-to-use{
  margin-top: 5em;
  position: relative;
  padding: 20px 0;
}

.swipe-down-animation {
  display: flex;
  justify-content: center;
  align-items: center;
}

.swipe-down-animation img {
  animation: swipe-down 2s infinite;
}

@keyframes swipe-down {
  0% {
      transform: translateY(20px);
      opacity: 0;
  }
  50% {
      transform: translateY(0px);
      opacity: 1;
  }
  100% {
      transform: translateY(20px);
      opacity: 0;
  }
}
.step-box{
  background: white;
  padding: 10px 20px;
  max-width: 500px;
  margin: 25px auto;
  border-radius: 10px;
  box-shadow: 1px 1px 5px #888;
  position: relative;
  min-height: 750px;
}
.step-image{
  max-width: 200px;
  margin: 10px auto;
}
.step-text{
  margin-top: 10px;
}

.white-shadow{
  box-shadow: 1px 1px 10px #fff;
}
.violet-bg{
  background-color: #8241f6;
  padding: 30px 0;
}
.color-white{
  color: #fff;
  font-weight: bold;
}
.secret{
  background-color: #7a3df7;
  padding: 20px 0;
}

.secret-section-box{
  max-width: 347px;
  /* height: 400px; */
  color: #fff;
}
.secret-img img{
  margin: 20px auto;
  box-shadow: 1px 1px 51px #fff;
  border-radius: 20px;
}
.secret-code{
  font-size: 2rem;
  border: 1px dotted red;
  padding: 10px 15px;
}

.border-custom{
  border: 2px solid #000;
  border-radius: 10px;
}

.htucode-box{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}
.htucode-text span{
  font-weight: bold;
}
.mobile {
  display: none;
}

@media (max-width: 768px) {
  .mobile {
    display: block;
  }

  .step-box{
    min-height: 680px;
  }

  .section-title h2{
    font-size: 1.8rem;
  }
  section:not(:nth-of-type(1)):not(:nth-of-type(2)) {
    margin-top: 5rem;
  }
  .header {
    padding-top: 6rem;
  }

  .header .header-title {
    text-align: center;
  }

  .header .header-title h1 {
    font-size: 30px;
  }

  .header-text {
    padding: 15px;
    text-align: center;
  }

  .promo-image {
    width: 260px;
  }

  .promo-image::before {
    width: 300px;
    height: 300px;
  }

  .download-title {
    display: block;
    text-align: center;
  }

  .download-title h2 {
    font-size: 14px;
  }

  .download-buttons {
    margin: 10px 0 25px;
    justify-content: center;
  }

  .app-info {
    text-align: center;
  }

  .social-media {
    justify-content: center;
    margin: 10px 0 20px 0;
  }

  .social-media img {
    width: 50px;
  }

  .video-title {
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin-top: 2rem;
  }

  .video_container {
    display: flex;
    justify-content: center;
    margin: 1.5rem auto !important;
  }
}


.promo-image::before {
    content: "";
    /* Add proper positioning */
    position: absolute;
    /* Add explicit dimensions */
    width: 60%;
    height: 60%;
}
img {

    height: auto;
    aspect-ratio: attr(width) / attr(height);
}
section#how-to.how-to {
    min-height: 300px; /* Set an appropriate minimum height */

}

/* For images inside this section */
section#how-to.how-to img {

    height: auto;
    aspect-ratio: attr(width) / attr(height);
}
.download-buttons, .download-button {
    min-height: 30px; /* Adjust as needed */

}

/* Reserve space for the entire how-to section */
section#how-to.how-to {
    position: relative;
    min-height: 650px; /* Adjust based on your content's typical rendered height */
    width: 100%;

}

/* Stabilize any images within the how-to section */
section#how-to.how-to img {
    aspect-ratio: attr(width) / attr(height);
    width: 100%;
    height: auto;
    display: block;
}

/* Stabilize the info-image class that appears in your how-to section */
section#how-to.how-to .info-image {
    margin: 20px 0;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    position: relative;
    overflow: hidden;
}

section#how-to.how-to .info-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

