@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

/* font-family: "Inter", sans-serif; */

/* For WebKit browsers (Chrome, Safari, Edge, Opera) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  /* Ensures no extra space is left behind */
}

/* For Mozilla Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

::selection {
  background: #00000050 !important;
  color: #fff;
}
*,
body {
  font-family: "Inter", sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* color: #000000; */
  letter-spacing: normal;
  font-size: 16px;
  font-weight: 500;
}

.header__nav,
.lpv3-landings-section__footer .lpv3-btn {
  display: none;
}

.body .header__nav-opener {
  display: none !important;
}
.lead-modal-window {
  display: none;
}

.logo-section {
  color: #ffffff;
}

.swiper-container {
  width: 40%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
.footer__menu-link .footer-text-link {
  color: #f7f7f780;
  text-decoration: none;
  font-weight: 300;
}

.logo-section .maintitle {
  color: #ffffff;
}

.lpv3-info-card ol,
.lpv3-info-card ul,
.lpv3-landings-section__content-text ol,
.lpv3-landings-section__content-text ul {
  list-style: decimal;
}
.lpv3 .text_hightlighter {
  color: #000000;
  font-weight: 600;
}
.hero-open-section {
  width: 100%;
  height: auto;
  display: inline-block;
  /* background: linear-gradient(135deg, #000000 0%, #1a0985 50%, #4b00ff 100%); */
  background: #ffffff;
  position: relative;
  padding-bottom: 0px;
  overflow: hidden;
  /* min-height: 100vh; */
}

.spinner {
  display: none;
  margin-top: 16px;
  color: #555;
  font-size: 16px;
  text-align: center;
}

/* 
 .status-message {
   display: none;
   margin-top: 10px;
   padding: 10px;
   border-radius: 5px;
   transition: all 0.4s ease;
 }

 .status-message.success {
   background-color: #d4edda;
   color: #155724;
 }

 .status-message.error {
   background-color: #f8d7da;
   color: #721c24;
 } */

/* Floating Orbs */
.hero-open-section .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.6;
  animation: float 10s ease-in-out infinite;
  transition: all ease 0s;
  display: none;
}

.hero-open-section .orb1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.hero-open-section .orb2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom: -100px;
  left: -100px;
  animation-delay: 2s;
}

.hero-open-section .orb3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  top: 50%;
  left: 50%;
  /* transform: translate(-50%, -50%); */
  animation-delay: 4s;
  /* filter: blur(80); */
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.custom-second-section {
  position: relative;
  padding: 32px 20px;
  background: #ffffff;
  overflow: hidden;
  width: 100%;
  margin: -8px 0 0 0;
}

.custom-second-section .hiw-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: none;
}

.hiw-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(133, 133, 133, 0.267) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(71, 71, 71, 0.747) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: gridMove 30s linear infinite;
  display: none;
}

.hiw-grid {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(100, 255, 218, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(100, 255, 218, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  animation: gridMove 30s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

/* Floating Particles */
.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: #64ffda;
  border-radius: 50%;
  opacity: 0.6;
  animation: particleFloat 15s infinite ease-in-out;
}

.particle:nth-child(2) {
  left: 20%;
  top: 80%;
  animation-delay: 2s;
  animation-duration: 20s;
}
.particle:nth-child(3) {
  left: 40%;
  top: 40%;
  animation-delay: 4s;
  animation-duration: 18s;
}
.particle:nth-child(4) {
  left: 60%;
  top: 70%;
  animation-delay: 1s;
  animation-duration: 22s;
}
.particle:nth-child(5) {
  left: 80%;
  top: 20%;
  animation-delay: 3s;
  animation-duration: 16s;
}
.particle:nth-child(6) {
  left: 90%;
  top: 60%;
  animation-delay: 5s;
  animation-duration: 19s;
}

@keyframes particleFloat {
  0%,
  100% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10%,
  90% {
    opacity: 0.6;
  }
  50% {
    transform: translateY(-100px) translateX(50px);
  }
}

.video-elm-box {
  /* display: inline-block;
  width: 100%;
  max-width: 690px;
  border: 6px solid #ffffff;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 6px #0000006e;
  background: #000000;
  position: relative;
    */
}

.video-elm-box video {
  aspect-ratio: 16 / 9;
  object-fit: contain;
  width: 100%;
  cursor: pointer;
}

.video-elm-box .text-action {
  text-align: center;
  margin-top: 16px;
  font-weight: 500;
  color: #000000;
}

.video-elm-box video .controls {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px;
}

.video-elm-box .controls .full-screen-btn {
  width: 48px;
  height: 48px;
  background: #00000075;
  border-radius: 4px;
  display: inline-block;
  position: absolute;
  top: auto;
  left: auto;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

.video-elm-box .controls .full-screen-btn svg {
  fill: #ffffff;
  width: 32px;
  height: 32px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 100px;
  position: absolute;
}

.video-elm-box .controls .custom-btn {
  width: 48px;
  height: 48px;
  background: #ffffff09;
  position: absolute;
  left: 0;
  top: auto;
  bottom: 0;
  border-radius: 4px;
  cursor: pointer;
}

.video-elm-box .controls .custom-btn svg {
  fill: #ffffff;
  width: 32px;
  height: 32px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.video-elm-box .controls .custom-play-btn,
.video-elm-box .controls .custom-pause-btn {
  /* display: none; */
}
/* Gradient Orbs */
.hiw-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: orbFloat 10s ease-in-out infinite;
  display: none;
}

.hiw-orb1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #64ffda 0%, #4facfe 100%);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.hiw-orb2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  bottom: -150px;
  right: -150px;
  animation-delay: 3s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}

.custom-three-section {
  position: relative;
  padding: 0px 20px 0px;
  background: #ffffff;
  overflow: hidden;
  width: 100%;
  margin: -8px 0 0 0;
}

.custom-four-section {
  position: relative;
  padding: 0px 20px 0px;
  background: #ffffff;
  overflow: hidden;
  width: 100%;
  /* margin: -8px 0 0 0; */
}

.custom-five-section {
  position: relative;
  padding: 0px 20px;
  background: #ffffff;
  overflow: hidden;
}

.lpv3-btn--filled.move-fill-btn {
  animation: ctaPulse 1.5s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%,
  100% {
    transform: scale(1);
    /* box-shadow: 0 15px 40px
  rgba(255, 215, 0, 0.4);*/
  }

  50% {
    transform: scale(1.05);
    /* box-shadow: 0 20px 50px
  rgba(255, 215, 0, 0.6); */
  }
}

.tel-input-row {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 8px;
}

.recaptcha-container {
  background: #f9f9f9;
  border-radius: 3px;
  width: 100%;
  display: inline-block;
  height: 76px;
}

.recaptcha-container .rc-anchor-normal {
  width: 100% !important;
}

.g-recaptcha {
  width: 100%;
  display: inline-block;
  background: #f9f9f9;
  border-radius: 3px;
  height: 76px;
}

#rc-anchor-container.rc-anchor-light.rc-anchor-normal,
#rc-anchor-container.rc-anchor-light.rc-anchor-compact {
  box-shadow: none !important;
  border: none !important;
}

#status.status {
  margin-top: 0;
  padding: 10px;
  border-radius: 4px;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}

#status.status.success {
  background-color: #d4edda;
  color: #000000;
}

#status.status.error {
  background-color: #ff1f31;
  color: #ffffff;
}

.tel-input-row .form-txt-label {
  font-size: 14px;
  color: #ffffff;
}

#phone-form {
  width: 100%;
  display: inline-block;
  position: relative;
  overflow: auto;
}

.phone-form {
  font: 500 16px/24px Inter, Arial, Helvetica, sans-serif;
}

.phone-form .notification-box {
  width: 100%;
  display: inline-block;
  position: relative;
}

.phone-form .top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.phone-form .logo-section {
  display: flex;
  align-items: center;
}

.phone-form .logo {
  background: #fcdf36;
  color: #000;
  font-weight: bold;
  font-size: 18px;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  margin-right: 8px;
}

.phone-form .text-group {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.phone-form .subtitle {
  font-size: 12px;
  color: #ccc;
}

.phone-form .time {
  font-size: 12px;
  color: #333;
}

.phone-form .form-section {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-form input[type="tel"] {
  padding: 20px 16px;
  font-size: 16px;
  border: none;
  border-radius: 8px;
  outline: none;
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  color: #000000;
  margin: 0;
  text-align: left;
  font-weight: 700;
  font-family: inherit;
  height: auto;
}

.phone-form input[type="tel"]::placeholder {
  color: #00000080;
  font-weight: 500;
}
.phone-form button {
  padding: 16px;
  font-size: 16px;
  background: linear-gradient(256deg, #ffec7b, #fbde36);
  color: #000;
  border: none;
  border-radius: 48px;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s;
  text-transform: capitalize;
  width: 100%;
  margin: 6px 0 0 0;
}

.phone-form button.disabled-call-button {
  background: linear-gradient(256deg, #c9c9c9, #ffffff);
  color: #000000;
  cursor: not-allowed;
  pointer-events: none;
}

.phone-form button:hover {
  background: linear-gradient(256deg, #c9c9c9, #ffffff);
  color: #000000;
}

.phone-form .message {
  font-size: 12px;
  color: red;
  margin: 4px 0 16px;
  text-align: center;
  font: 400 14px/24px Inter, Arial, Helvetica, sans-serif;
  width: 100%;
  display: inline-block;
}
.phone-form .message.success {
  color: green;
}

.whatup-chat-tab {
  position: relative;
  animation: pulse 2s infinite;
  top: 2px;
  display: none;

  img {
    width: 42px;
    height: 42px;
  }
}

.trusted-by-text {
  width: 100%;
  text-align: center;
  display: inline-block;
  font-size: 48px;
  font-weight: 800;
  color: #000000;
  margin-bottom: 42px;
}
@keyframes pulse {
  50% {
    opacity: 0.5;
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
section.ai-phone {
  padding: 50px 0;
}

.ai-phone-details h1 {
  color: #fff;
  max-width: 57%;
  margin: 0 auto;
  font-size: 45px;
  font-weight: 600;
}

.ai-phone-details p {
  font-size: 19px;
  font-weight: 500;
  padding: 20px 0 20px 0;
  color: #fff;
}

.form-group.select-options {
  display: none;
}

.form-group {
  margin-bottom: 15px;
  text-align: left;
  line-height: normal;
}

input[type="tel"],
select {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.iti__country-name {
  color: #000000;
}

.iphone_wrap img {
  width: 100%;
}

.iphone_wrap.text-center {
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 37rem;
  max-width: 37rem;
  display: flex;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}

.ai-form-detail {
  display: flex;
  justify-content: space-between;
  background: #e7e5de;
  padding: 12px;
}

.ai-form-detail h5 {
  font-size: 15px;
  font-weight: 700;
  color: #333;
  margin: 0;
}

.ai-form-detail p {
  font-size: 13px;
  margin-bottom: 0;
}

.ai-contact {
  border: 1px #000;
  border-radius: 8px;
  width: 100%;
  max-width: 29rem;
  margin-bottom: 0;
  position: absolute;
  top: 10.625rem;
  overflow: auto;
  left: -500px;
}

.form-container {
  border: 1px solid #ccc;
  padding: 10px;
  background-color: #f9f9f9;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
}

.g-recaptcha > div {
  width: 100% !important;
}

.g-recaptcha iframe {
  width: 100% !important;
}

.form-container button {
  background-color: #4285f4;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
  margin-top: 10px;
  width: 100%;
}
.inner-content-section {
  position: relative;
  padding: 0px 20px 64px;
  /* background: linear-gradient(180deg, #0a0a0a 0%, #1a0f33 50%, #0a0a0a 100%); */
  overflow: hidden;
  margin-bottom: -10px;
}

.inner-content-section h1 {
  font-size: 32px;
}

.inner-content-section .inner-cnt-blk {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 60dvh;
}

.inner-content-section .inner-cnt-blk .updated-date,
.inner-content-section .inner-cnt-blk .note-box {
  color: #000000;
  font-weight: 700;
}

.inner-content-section .inner-cnt-blk h2 {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
}

.inner-content-section .inner-cnt-blk h3 {
  font-size: 16px;
  color: #000000;
  font-weight: 500;
}

.inner-cnt-blk p a,
.inner-cnt-blk div > a {
  text-decoration: underline;
  color: #191919;
}

.inner-content-section .inner-cnt-blk ul {
  list-style: disc;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #000000;
}

.inner-content-section .inner-cnt-blk ul li {
  font-size: 15px;
  color: #191919;
}

.thanks-cnt-blk {
  gap: 16px;
}

.thanks-cnt-blk .thanks-elm-blk {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.thanks-cnt-blk .thanks-elm-blk .thank_img {
  width: 50%;
  display: flex;
  flex-shrink: 0;
  flex-grow: 0;
  justify-content: center;
  align-items: center;
  padding: 0 2%;
}

.thanks-cnt-blk .thanks-elm-blk .thank_img img {
  width: 100%;
  height: auto;
}

.thanks-cnt-blk .thanks-elm-blk .thank-txt-blk {
  width: 50%;
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  flex-grow: 0;
  padding: 0;
  gap: 16px;
}

.thanks-cnt-blk .thanks-elm-blk .thank-txt-blk h2 {
  font-size: 64px;
  font-weight: 900;
  color: #000000;
}

.thanks-cnt-blk .thanks-elm-blk .thank-txt-blk p {
  font-size: 20px;
  font-weight: 600;
  color: #191919;
}

.thanks-cnt-blk .thanks-elm-blk .thank-txt-blk .txt-meet {
  font-size: 20px;
  font-weight: 500;
  color: #191919;
}

.thanks-cnt-blk .thanks-elm-blk .thank-txt-blk .txt-meet a {
  font-size: 24px;
  color: #000000;
  transition: all ease 0.3s;
}

.thanks-cnt-blk .thanks-elm-blk .thank-txt-blk .txt-meet a:hover {
  text-decoration: none;
}

.calendly-overlay .calendly-popup {
  height: 100% !important;
  max-height: 100% !important;
  max-width: 100% !important;
  min-width: 100% !important;
  width: 100% !important;
}
.hero-btn-blk {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 8px;
}

.hero-btn-blk .lpv3-btn {
  padding: 16px 10%;
  font-weight: 600;
  min-height: 60px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: normal;
}

.hero-btn-blk .lpv3-btn.whatsapp-btn {
  background: #19be56;
  color: #fff;
  border-color: #19be56;
}

.hero-btn-blk .lpv3-btn.whatsapp-btn:hover {
  background: transparent;
  color: #19be56;
}
.lead-modal-window .lead-modal-content {
  width: 100%;
}

.lead-modal-window .lead-modal-content h2 {
  color: #000000;
  font-size: 36px;
  font-weight: 700;
  line-height: normal;
}

.lead-modal-window .lead-modal-content p {
  color: #191919;
  line-height: normal;
  font-weight: 500;
}

.book-modal-step-forms .lead-form-blk {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.book-modal-step-forms .lead-form-blk .custom-input {
  width: 100%;
  height: 48px;
  border-radius: 8px;
  border: 1px solid #9e9e9e;
  padding: 12px 16px;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease-in-out;
}

.book-modal-step-forms .lead-form-blk #phone_num.custom-input {
  padding-left: 48px;
}
.book-modal-step-forms .lead-form-blk .custom-input::placeholder,
.book-modal-step-forms
  .lead-form-blk
  .custom-input.custom-txtarea::placeholder {
  color: #505050;
}

.book-modal-step-forms .lead-form-blk .custom-input:focus,
.book-modal-step-forms .lead-form-blk .custom-input.custom-txtarea:focus {
  border-color: #000000;
  box-shadow: none;
  outline: none;
}

.book-modal-step-forms .lead-form-blk .custom-input.custom-txtarea {
  height: 80px;
  resize: none;
  border-radius: 8px;
  border: 1px solid #9e9e9e;
  padding: 12px 16px;
  color: #000000;
  font-size: 15px;
  font-weight: 500;
  line-height: normal;
  font-family: "Inter", sans-serif;
  transition: all 0.3s ease-in-out;
}
.book-modal-step-forms .lead-form-blk .lead-form-btn {
  margin-top: 8px;
}

.status-message {
  width: 100%;
  display: inline-block;
  padding: 20px;
  text-align: left;
  background: #000000;
  color: #ffffff;
  border-radius: 4px;
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  display: none;
  max-width: 100%;
  text-align: center;
  margin-top: 8px;
}

.status-message.success {
  background: #000000;
}

.status-message.error {
  background: #ef3c3c;
  max-width: 100%;
  padding: 16px;
  font-size: 14px;
  border-radius: 4px;
}
@media only screen and (max-width: 767px) {
  body .header__nav-opener {
    display: none;
  }

  .lpv3-hero-section__image .phone-screen-box {
    max-width: 100%;
  }

  .lpv3-hero-section__image .custom-mobile-screen-bg {
    display: none;
  }

  .lpv3-hero-section__image .phone-content-box {
    position: relative;
    padding: 0;
  }

  .custom-second-section {
    padding: 16px 0;
  }

  .lpv3-landings-section__cards {
    margin-bottom: 24px;
    gap: 8px;
  }

  .lpv3-hero-section {
    padding: 5.5rem 0 0rem;
  }

  .lpv3-landings-section__content {
    width: 100%;
  }

  .custom-three-section {
    padding: 16px 0;
  }

  .lpv3-text-section {
    padding: 16px 0;
  }

  .lpv3-how-ai-works {
    padding: 0;
  }

  .lpv3-how-ai-works__title {
    margin-bottom: 0 !important;
  }

  .lpv3-pricing-section {
    padding: 32px 0 0px;
  }

  .custom-five-section {
    padding: 0px 0;
  }

  .lpv3-competition-section {
    padding: 16px 0;
  }

  .lpv3-competition-section__grid {
    gap: 8px;
    margin-bottom: 0;
  }

  .lpv3-video-preview-section {
    padding: 8px 0;
  }

  .lpv3-faq-accordion__button {
    font-size: 16px;
    line-height: 24px;
  }

  .lpv3-faq-section {
    padding: 16px 0;
  }

  .lpv3-hero-section__image .phone-content-box .phone-content {
    background: #000000;
    max-width: 100%;
  }

  .lpv3-faq-section:last-child {
    padding-bottom: 32px;
  }
  .trusted-by-text {
    font-size: 24px;
    margin-bottom: 32px;
    font-weight: bold;
    line-height: normal;
  }

  .lpv3 .title--02 {
    font-size: 32px;
  }

  .lpv3-landings-section__content {
    padding: 24px;
    gap: 16px;
  }

  .lpv3-text-section :where(h1, h2, h3, h4, h5, h6) {
    text-align: left;
    font-size: 32px;
  }

  .custom-three-section .lpv3.lpv3-text-section .lpv3-text-section__inner h2 {
    font-size: 32px;
  }

  .lpv3-video-preview-section__content h2 {
    font-size: 16px !important;
    line-height: 1.75;
    font-weight: 400;
  }

  .lpv3-info-card.lpv3-info-card--title .lpv3-info-card__content {
    align-items: flex-start;
    margin-bottom: 16px;
  }

  .lpv3-info-card.lpv3-info-card--title .lpv3-info-card__content h2 {
    font-size: 32px;
    text-align: left;
  }

  .lpv3-how-ai-works__title {
    text-align: left;
    font-weight: 600;
  }

  .lpv3-pricing-section {
    padding: 16px 0;
  }

  .lpv3-pricing-section__content {
    gap: 8px;
    align-items: flex-start;
  }

  .lpv3-pricing-section__content h2 {
    font-size: 20px;
    font-weight: 500;
  }

  .lpv3-pricing-section__content p {
    text-align: left;
  }

  .lpv3-pricing-section__content .lpv3-btn {
    margin: 16px 0 8px;
  }

  .lpv3-pricing-section__row {
    align-items: flex-start;
  }

  .lpv3-pricing-section__prices h2 {
    text-align: left;
  }

  .lpv3 .lpv3-about-person__content h2 {
    font-size: 16px !important;
    line-height: 1.75;
    font-weight: 400;
  }

  .lpv3 .lpv3-competition-section__title {
    text-align: left;
    font-size: 24px;
    font-weight: 600;
  }

  .lpv3 .lpv3-faq-section__title {
    font-size: 20px;
  }

  .lpv3-faq-section__list {
    padding: 0;
  }

  .lpv3-faq-accordion {
    padding: 16px 0;
  }

  .footer {
    padding: 32px 0;
  }

  .inner-content-section .lpv3-container {
    padding: 0;
  }

  .inner-content-section h1 {
    font-size: 22px;
    line-height: normal;
  }

  .inner-content-section h2 {
    font-size: 16px;
  }

  .inner-content-section .inner-cnt-blk {
    gap: 12px;
  }

  .inner-content-section p,
  .inner-content-section .updated-date,
  .inner-content-section .inner-cnt-blk ul li {
    font-size: 14px;
  }

  .footer__menu-link {
    font-size: 14px;
    line-height: normal;
  }

  .thanks-cnt-blk .thanks-elm-blk {
    flex-direction: column;
  }

  .thanks-cnt-blk .thanks-elm-blk .thank_img {
    width: 100%;
    padding: 24px 0;
  }

  .thanks-cnt-blk .thanks-elm-blk .thank_img {
    width: auto;
  }

  .thanks-cnt-blk .thanks-elm-blk .thank-txt-blk {
    width: 100%;
    padding: 0;
    text-align: center;
  }

  .thanks-cnt-blk .thanks-elm-blk .thank-txt-blk h2 {
    font-size: 48px;
  }

  .thanks-cnt-blk .thanks-elm-blk .thank-txt-blk p {
    font-size: 20px;
  }

  .thanks-cnt-blk .thanks-elm-blk .thank-txt-blk .txt-meet {
    font-size: 16px;
  }

  .thanks-cnt-blk .thanks-elm-blk .thank-txt-blk .txt-meet a {
    font-size: 20px;
  }
}
@media only screen and (max-width: 575px) {
  .hero-btn-blk .lpv3-btn {
    padding: 16px 5%;
  }
  .lpv3-hero-section__image .phone-screen-box {
    max-width: 100%;
  }

  .lpv3-hero-section__content {
    padding: 0 0 24px;
  }
  .lpv3 .lpv3-hero-section__title {
    font-size: 32px;
  }

  .lpv3 .lpv3-hero-section__title.home-hero-title {
    font-size: 42px;
  }
  .lpv3 .title--02,
  .lpv3 h2,
  .custom-three-section .lpv3.lpv3-text-section .lpv3-text-section__inner h2,
  .lpv3-info-card.lpv3-info-card--title .lpv3-info-card__content h2 {
    font-size: 24px;
  }

  .lpv3 .lpv3-info-card__content h4 {
    font-size: 18px;
  }

  .lpv3-faq-accordion__button {
    font-weight: 500;
  }

  .custom-four-section {
    padding: 0px 16px;
  }

  .custom-four-section .lpv3-how-ai-works .lpv3-how-ai-works__title {
    font-size: 20px;
    font-weight: bold;
  }

  .custom-four-section .lpv3-pricing-section .lpv3-pricing-section__content h2 {
    font-size: 18px;
  }

  .custom-four-section .lpv3-how-ai-works .lpv3-container,
  .custom-four-section .lpv3-pricing-section .lpv3-container {
    padding: 0;
  }
  .swiper-container {
    width: 100%;
  }
  .lead-modal-window .lead-modal-content h2 {
    font-size: 24px;
  }
}

.swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s all;
  width: auto;
  margin: 0 16px;
  /* 		 transform: scale(0.8); */
}

/* .swiper-slide-prev,
.swiper-slide-next,
.swiper-slide-duplicate-prev,
.swiper-slide-duplicate-next {
	transform: scale(0.9)
} */

.swiper-slide-active,
.swiper-slide-duplicate-active {
  transform: scale(1);
  opacity: 1;
}

.mask {
  width: 100%;
  height: 100%;
  mask: linear-gradient(
    to right,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 1) 20%,
    rgba(0, 0, 0, 1) 80%,
    rgba(0, 0, 0, 0) 100%
  );
}
