html,
body {
  padding: 0;
  margin: 0;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #000000;
  background-color: #ffffff;
}
header {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: none;
  transition: all 0.3s ease;
  z-index: 1000;
}
p {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
* {
  box-sizing: border-box;
}
header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header .logo {
  font-size: 24px;
  line-height: normal;
  font-weight: bold;
}
header .login {
  font-size: 16px;
  line-height: normal;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  background-color: #1677ba;
  border-radius: 4px;
  transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
}
header .login:hover {
  background-color: #094672;
  color: #fff !important;
}
.logo {
  display: flex;
  align-items: center;
  gap: 3px;
}
.logo img {
  width: 100%;
  height: 30px;
  object-fit: contain;
}
.logo .mini-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}
.header-inner {
  max-width: 1150px;
  margin: 0 auto;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  padding: 40px 20px 20px;
  max-width: 1150px;
  margin: auto;
  text-align: left;
}
.hero-text {
  flex: 1 1 407px;
}
.hero-text h1 {
  font-size: 40px;
  line-height: normal;
  font-weight: bold;
  margin-bottom: 20px;
}
.hero-text p {
  font-size: 18px;
  line-height: normal;
  margin-bottom: 20px;
  color: #444444;
}
.hero-text .cta-btn {
  background-color: #1677ba;
  color: #ffffff;
  padding: 15px 25px;
  font-size: 16px;
  line-height: normal;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
  margin-top: 20px;
}
.hero-text .cta-btn:hover {
  background-color: #094672;
  color: #fff !important;
}
.hero-image {
  flex: 1 1 300px;
  position: relative;
  text-align: center;
  max-width: 358px;
}
.hero-image img {
  max-width: 100%;
  height: 600px;
  object-fit: cover;
  width: 100%;
  object-position: top;
}
.video-overlay {
  position: absolute;
  bottom: 10%;
  right: 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.video-overlay .play-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #fff;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-inside {
  min-height: 100px;
  min-width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url(../images/bg-lay.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  backdrop-filter: blur(8px);
  padding: 6px;
  color: #fff;
  font-size: 12px;
  line-height: normal;
  border-radius: 6px;
}
.video-overlay .play-icon:before {
  content: "";
  border-left: 12px solid rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
}
.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 20px 40px;
  max-width: 1150px;
  margin: 0 auto;
  gap: 66px;
  position: relative;
  z-index: 1;
}
.vf-powered-by {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  padding: 20px 0 20px;
}
.vf-powered-by img {
  border-radius: 50%;
}

.step {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 10px;
  max-width: 311px;
  width: 100%;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  position: relative;
  color: #000;
}
.step::after {
  content: "";
  position: absolute;
  display: block;
  right: -40px;
  top: 30px;
  font-size: 25px;
  font-weight: 500;
  width: 25px;
  height: 25px;
  background: url(../images/angle-right.png) no-repeat;
  background-size: contain;
}
.step:last-child::after {
  display: none;
}
.step img {
  width: 80px;
  height: 80px;
  margin: 0 auto;
}
.cta-btn-large {
  background-color: #1677ba;
  color: #ffffff;
  padding: 15px 25px !important;
  font-size: 16px !important;
  line-height: normal;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
  display: block;
  width: fit-content;
  margin: 0 auto;
}
.page-center {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 20px;
}
.cta-btn-large:hover {
  background-color: #094672;
  color: #fff !important;
}
.stats {
  max-width: 1150px;
  margin: auto;
  padding: 40px 20px 20px;
  text-align: center;
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stats-left {
  flex: 1 1 calc(33.33% - 30px);
}
.stats-center{
  flex: 1 1 calc(33.33% - 30px);
}
.stats-right {
  flex: 1 1 calc(33.33% - 30px);
}
.stats-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  text-align: center;
  justify-content: center;
}
.stats-left p {
  line-height: normal;
  font-size: 20px;
}
.stats-numbers strong {
  font-size: 40px;
  line-height: normal;
}
.stats-left h2,.logos-title h3 {
  font-weight: 600;
  font-size: 25px;
  line-height: normal;
  margin-bottom: 30px;
  text-align: center;
}
.stats-full{
  padding: 0 15px 40px;
}
.logos {
  margin: 0;
}
.logos img {
  width: 115px;
  height: auto;
  object-fit: contain;
  border-radius: 0 !important;
}
.tesrimonial-main {
  max-width: 1150px;
  margin: 0 auto;
  width: 100%;
}
.test-flex{
  color: #444444;
  background: #fafafa;
  padding: 10px 15px;
    font-size: 14px;
  line-height: normal;

  border-radius: 5px;
}
.slick-track{
  display: flex;
}
.slick-slide{
  margin: 0 10px;
  height: auto;
}
.test-flex {
  display: flex;
  gap: 10px;
  flex-direction: column;
  height: 100%;
}
.test-flex p {
  display: flex;
  flex-direction: column;
  gap: 15px;
  text-align: left;
}
.test-flex span {
  display: flex;
  justify-content: end;
  font-weight: 600;
  text-align: left;
}
.test-flex img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 4px;
}
.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1150px;
  margin: auto;
  padding: 40px 20px;
}
.card {
  flex: 1 1 calc(33.333% - 20px);
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  background-color: #f8f8f8;
  transition: all 0.4s cubic-bezier(0.12, 0, 0.39, 0);
}
.card:hover {
  transform: scale(1.03);
}
.card-content {
  text-align: center;
}
.card-content h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: normal;
}
.card img {
  width: 100%;
  margin: 0 auto;
  height: auto;
  object-fit: contain;
  object-position: top;
}

.features {
  padding: 40px 20px;
  max-width: 1150px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}
.feature {
  font-size: 12px;
  line-height: normal;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 80px;
  text-align: center;
  position: relative;
}
.features-left-icon {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
.features-left-icon img {
  height: 30px;
  object-fit: contain;
  opacity: 0.5;
}
.feature img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  margin: 0 auto;
  filter: brightness(0) saturate(100%) invert(17%) sepia(50%) saturate(2678%)
    hue-rotate(185deg) brightness(93%) contrast(93%);
}
.features-left {
  flex: 1 1 300px;
  text-align: left;
}
.features-left h2 {
  font-weight: 600;
}
.features-right {
  flex: 1 1 387px;
}
.ready {
  max-width: 1150px;
  margin: 0 auto;
   padding: 40px 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.ready h2 {
  font-size: 30px;
  line-height: normal;
  text-align: center;
}
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.modal-content {
  position: relative;
  margin: 0 auto;
  width: 80%;
  max-width: 700px;
  background: #fff;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
  font-size: 30px;

  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

video,
iframe {
  width: 100%;
  height: 50vh;
  display: flex;
}
.new-text {
  font-size: 11px;
  transition: all 0.6s cubic-bezier(0.12, 0, 0.39, 0);
  height: 0;
  position: absolute;
  top: calc(100% + 5px);
  background-color: #fff;
  z-index: 1;
  line-height: normal;
  min-width: 102px;
  left: 0;
  padding: 10px 0;
}
.feature:hover .new-text {
  opacity: 1 !important;
  height: auto !important;
}

.slick-dots li {
  margin: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.slick-dots li button:before {
  font-size: 10px;
  line-height: normal;
  color: #999;
  opacity: 0.5;
  transition: color 0.3s ease, opacity 0.3s ease;
}

.slick-dots li.slick-active button:before {
  color: #1677ba;
  opacity: 1;
}

.yours-step {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 9;
  color: #fff;
}
.btn-center {
  max-width: 220px;
  margin: 0 auto;
  width: 100%;
  margin-top: 40px;
}
.btn-center .cta-btn-large {
  width: 100%;
  margin-bottom: 0 !important;
}
.btn-center p {
  color: #575757;
}
.vf-powered-by p{
  font-size: 19px;
}
.logos-flex {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.logos,
.logos-right {
  width: 100%;
  display: block;
}
.logos-inside,
.logos-right-inside {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.logos-inside img {
  width: 103px;
  height: 43px;
  object-fit: contain;
}
.logos-right-inside img {
  width: 103px;
  height: 43px;
  object-fit: contain;
}
.banner-link {
  display: flex;
  font-size: 19px;
  line-height: normal;
  margin-top: 20px;
  background: linear-gradient(90deg, #1da1f2 0%, #1677bd 50%, #2e3192 100%);
  background-clip: text;
  background-size: 200% auto;
  background-position: left center;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: background-position 0.3s ease-in-out;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.banner-link:hover {
  background-position: right center;
}
.features {
  display: block;
}
.feature img {
  width: 80px;
  height: 80px;
}
.feature-icons {
  margin-top: 20px;
}
.feature {
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #000;
  max-width: 200px;
  width: 100%;
}
.new-text {
  font-size: 14px;
  font-weight: 400;
}
.test-flex-inner {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-grow: 1;
}
.test-flex-inner p {
  position: relative;
  width: fit-content;
  font-size: 16px;
  line-height: 21px;
}
.test-flex-inner p::before {
  content: '"';
  position: absolute;
  left: -8px;
  top: 0;
  width: 10px;
  height: 10px;
  display: block;
}
.slick-dots {
  bottom: -30px;
}
.link-left p {
  color: #575757;
  font-size: 17px;
  padding-top: 5px;
}
.hero-text {
  display: flex;
  flex-direction: column;
}
.hero-text .cta-btn {
  width: fit-content;
}
.c-overlay{
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  display: none;
  z-index: 10;
}
.c-popup{
display: none;
  position: fixed;
  left: 50%;
  transform: translate(-50%,-50%);
  background: #fff;
  padding: 20px;
  border: 2px solid #333;
  z-index: 1000;
  border-radius: 15px;
  max-width: 880px;
  width: 100%;
  top: 50%;
}
.c-popup-close{
cursor: pointer;
  float: right;
  font-weight: bold;
}
.c-popup-content{
  min-height: 350px;
  max-height: 90vh;
  overflow-y: auto;
}
.c-popup-content .vf-landing-main{
  min-height: auto !important;
}
#vf-popup:has(.custom-popup){
  border-radius: 0;
  border: none;
  max-width: 640px;
}
.custom-popup .vf-round-logo img{
  padding: 0 !important;
  margin-bottom: 20px;
}
.custom-popup h2{
  text-align: center;
  line-height: normal;
  padding-bottom: 30px;
  font-size: 33px;
  font-weight: 600;
}
.custom-popup a{
  font-weight: normal !important;
  color: #29366a;
  cursor: pointer;
}
.custom-popup .cta-btn-large{
  font-size: 22px !important;
  margin-bottom: 13px !important;
  background-color: #3561a0 !important;
}
.custom-popup .back-to a{
color: #2e3337;
  text-align: center;
  margin: 0 auto;
  display: block;
}
.custom-popup a.resend-ver{
  display: flex;
  margin-left: auto;
  justify-content: right;
  font-weight: 500;
}
 #vf-popup-content .custom-popup p{
  margin-bottom: 30px !important;
}
.custom-popup .cta-btn-large:hover{
  background-color: #1b498a  !important;
}
@media screen and (min-width: 901px) {
  .hero {
    position: relative;
  }
  .link-end {
    position: absolute;
    bottom: 51px;
  }
  .stats{
    justify-content: space-between;
  }
  .steps{
    justify-content: center;
  }
  .step{
    max-width: 310px;
  }
 .hero-text p{
  padding-bottom: 40px;
 }
 .hero-text{
  margin-top: 50px;
 }
}
@media screen and (max-width: 900px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
  .step::after {
    display: none;
  }
  .hero-text h1 {
    font-size: 28px;
    line-height: normal;
  }
  .step img {
    width: 60px;
    height: 60px;
  }
  .steps {
    gap: 30px;
  }
  .stats,
  .cards,
  .steps {
    padding: 25px 20px;
  }
  .stats,
  .features {
    gap: 30px;
  }
  .ready h2 {
    font-size: 22px;
  }
  video,
  iframe {
    height: 270px;
  }
  .stats-right {
    max-width: 100%;
  }
  .logos img {
    width: 79px;
  }
  .card img {
    max-width: 100%;
  }
  .close {
    right: 10px;
  }
  .card {
    flex: 1 1 100%;
  }
  .hero-image,
  .hero-text {
    flex: 1 1 100%;
  }
  .hero-image {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .video-overlay {
    right: -15%;
  }
  .hero-text {
    text-align: center;
  }
  .stats-left {
    text-align: center;
  }
  .stats-numbers {
    justify-content: center;
  }
  .tesrimonial-main {
    margin: 0 auto;
  }
  .features-left h2 {
    text-align: center;
    font-size: 32px;
  }
  header .logo {
    width: fit-content;
  }
  .logo img {
    width: 146px;
    height: 26px;
  }
  .logos-flex {
    flex-direction: column;
  }
  .logos,
  .logos-right {
    max-width: 100%;
  }

  .test-flex-inner p {
    font-size: 15px;
    line-height: 20px;
  }
  .logos-right-inside img {
    width: 40px;
  }
  .hero-text .cta-btn{
    margin-left: auto;
  margin-right: auto;
  }
  .banner-link{
    text-align: center;
  justify-content: center;
  }
  .steps{
    justify-content: center;
  }
  .feature img {
  width: 60px;
  height: 60px;
}
.stats-left,.stats-center,.stats-right{
  flex: 1 1 100%;
}
.btn-center{
  margin-top: 20px;
}
#vf-popup:has(.custom-popup) #vf-popup-content{
   padding: 0;
}
.custom-popup h2{
  font-size: 24px;
}
.custom-popup .cta-btn-large {
  font-size: 16px !important;
}
}
@media screen and (max-width: 600px) {
  .video-overlay {
    right: 23px;
  }
}

@media screen and (max-width: 400px) {
  .video-overlay {
    right: 20px;
  }
}