/* Original Mobile-First CSS with Safari Fixes */
@font-face {
  font-family: "WhitneyBook";
  src: url("https://res.cloudinary.com/dba7l52gn/raw/upload/v1709571297/WhitneyBook_mtpriu.otf");
  font-style: normal;
  font-weight: 400;
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen,
    Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.zoom-out-up-rev {
  -webkit-animation: zoomOutUp 0.5s ease-in-out 0.25s forwards;
  animation: zoomOutUp 0.5s ease-in-out 0.25s forwards;
  -webkit-animation-delay: 0.25s;
  animation-delay: 0.25s;
}

@-webkit-keyframes zoomOutUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) translateY(50px);
    transform: scale(1) translateY(50px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
}

@keyframes zoomOutUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(1) translateY(50px);
    transform: scale(1) translateY(50px);
  }

  50% {
    opacity: 1;
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
    transform: scale(1) translateY(0);
  }
}

.main-header {
  /* background-color: #182a60; */
  padding: 20px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.container {
  width: 100%;
  margin: 0 auto;
}

.main-header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hamburger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #fff;
}

.logo-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
}

.logo {
  width: 30vw;
  margin: -20px auto;
}

.fixed-header {
  /* position: fixed; */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.section1 h1 {
  text-align: center;
  font-size: 7vw;
  padding: 10px 10px 1.3rem 10px;
  color: #464646;
  line-height: 1.4;
  background-image: url(https://res.cloudinary.com/dba7l52gn/image/upload/v1743900405/desktop_intersect_lbwoqa.svg);
  background-color: #fff;
  background-size: 76%;
  background-repeat: no-repeat;
  background-position: top left;
}

.section1 h1 span {
  font-size: 4.5vw;
  font-weight: 400;
  position: relative;
  top: 8px;
  line-height: 0.4;
}
.section1 h1 p {
  margin-top: 1rem;
}

.features {
  margin: 1rem 0 28px 25px;
  color: #333;
}

.feature-item {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.check-icon {
  display: inline-block;
  width: 25px;
  height: 25px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 15px;
  border: 2px solid #25be01;
  position: relative;
}

.check-icon::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  border-left: 2px solid #25be01;
  border-bottom: 2px solid #25be01;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -60%) rotate(-45deg);
  transform: translate(-50%, -60%) rotate(-45deg);
}

.hero-img-container {
  margin: 20px 0;
}

.hero-img {
  overflow: hidden;
  -webkit-border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
  border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
  -webkit-box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
  box-shadow: 6vw 0vw 11vw 2vw #43424236 !important;
  -webkit-animation: morphing 20s ease-in-out infinite;
  animation: morphing 20s ease-in-out infinite;
}

@-webkit-keyframes morphing {
  0% {
    -webkit-border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
    border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
  }
  25% {
    -webkit-border-radius: 29% 21% 37.5% 12.5% / 38% 23% 27% 12%;
    border-radius: 29% 21% 37.5% 12.5% / 38% 23% 27% 12%;
  }
  50% {
    -webkit-border-radius: 16.67% 16.67% 11% 22.33% / 18.33% 9% 24.33% 15%;
    border-radius: 16.67% 16.67% 11% 22.33% / 18.33% 9% 24.33% 15%;
  }
  75% {
    -webkit-border-radius: 11% 22.33% 19.33% 14% / 21% 22.67% 10.67% 12.33%;
    border-radius: 11% 22.33% 19.33% 14% / 21% 22.67% 10.67% 12.33%;
  }
  100% {
    -webkit-border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
    border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
  }
}

@keyframes morphing {
  0% {
    -webkit-border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
    border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
  }
  25% {
    -webkit-border-radius: 29% 21% 37.5% 12.5% / 38% 23% 27% 12%;
    border-radius: 29% 21% 37.5% 12.5% / 38% 23% 27% 12%;
  }
  50% {
    -webkit-border-radius: 16.67% 16.67% 11% 22.33% / 18.33% 9% 24.33% 15%;
    border-radius: 16.67% 16.67% 11% 22.33% / 18.33% 9% 24.33% 15%;
  }
  75% {
    -webkit-border-radius: 11% 22.33% 19.33% 14% / 21% 22.67% 10.67% 12.33%;
    border-radius: 11% 22.33% 19.33% 14% / 21% 22.67% 10.67% 12.33%;
  }
  100% {
    -webkit-border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
    border-radius: 10% 23.33% 23.33% 10% / 10% 10% 23.33% 23.33%;
  }
}

.call_button {
  background: -webkit-gradient(linear, left top, left bottom, from(#0836f5), to(#2647d1));
  background: linear-gradient(180deg, #0836f5, #2647d1);
  padding: 15px 0;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  cursor: pointer !important;
  text-decoration: none;
  font-size: 6vw;
  color: white;
  text-shadow: 1px 1px 8px #0000004d;
  -webkit-animation: button 2s infinite;
  animation: button 2s infinite;
  display: block;
  width: 90vw;
  margin: 2rem auto 0;
  -webkit-box-shadow: 0px 0px 20px 13px #c5c5c5b5;
  box-shadow: 0px 0px 20px 13px #c5c5c5b5;
  text-align: center;
}
.call_button p:last-child {
  font-size: 3.5vw;
  margin-top: 5px;
  font-style: italic;
}

@-webkit-keyframes button {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  5% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  10% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  15% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  20% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes button {
  0% {
    -webkit-transform: translateX(-5px);
    transform: translateX(-5px);
  }
  5% {
    -webkit-transform: translateX(5px);
    transform: translateX(5px);
  }
  10% {
    -webkit-transform: translateX(-3px);
    transform: translateX(-3px);
  }
  15% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  20% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.underbtn {
  font-size: 3.5vw !important;
  text-align: center;
  display: block;
  margin-top: 1rem;
  font-style: italic;
  color: #8f8b8b;
}

.text-center {
  padding: 6px;
  text-align: center;
  margin: 3rem 0;
}

.rating-text {
  margin-bottom: 8px;
}

.rated-score div {
  color: #333;
  font-size: 18px;
  font-family: Arial, sans-serif;
}

.rating-box {
  margin-bottom: 14px;
}

.star-icon {
  width: 44vw;
  height: auto;
}

.bades {
  text-align: center;
  margin: 2rem;
}
.bades div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  /* gap: 1rem; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.verified-success-image {
  display: inline-block;
  width: 50vw;
}

.section2 {
  padding: 2rem 1rem;
  background-color: whitesmoke;
}

.section2 h2 {
  text-align: center;
  font-size: 6.5vw;
  margin-bottom: 1.5rem;
  margin-top: 23px;
  color: #41689a;
}

.whyus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.6rem;
  width: 92vw;
  margin: 0 auto 44px;
}

.service-block {
  -webkit-box-shadow: inset 6vw 0vw 11vw 2vw #43424236 !important;
  box-shadow: inset 6vw 0vw 11vw 2vw #43424236 !important;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: solid 1px #ededed;
  padding: 2rem;
  text-align: center;
}

.icon-wrapper {
  width: 100px;
  height: 100px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  /* background: #41689a; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 1rem;
}

.icon-wrapper img{
	width: 100px;
	height: 100px;
}

.service-block-body h4 {
  font-size: 5vw;
  margin-bottom: 0.7rem;
  color: #002756;
}

.smtxt {
  font-size: 4vw;
  line-height: 1.5;
  color: #5d5b5b;
}

.trusted-publications {
  background: -webkit-gradient(linear, left top, right bottom, from(#f7f2e1), color-stop(#f7f2f3), to(#f7dcf1));
  background: linear-gradient(45deg, #f7f2e1, #f7f2f3, #f7dcf1);
  text-align: center;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px !important;
  box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px !important;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin: 0 auto;
  width: 92vw;
}

.trusted-publications h2 {
  color: #94a5b3;
  font-size: 4.6vw;
  margin-bottom: 46px;
  line-height: 1.5;
}

.logos {
  gap: 11vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-bottom: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display:flex;
}

.newsimg {
  width: 100%;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 4px solid #000000;
}

#slideshow-container {
  -webkit-box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px;
  box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px;
  width: 92vw;
  margin: 0 auto;
}

.mySlides {
  display: none;
  -webkit-animation: fadeInOut 3s ease-in-out infinite;
  animation: fadeInOut 3s ease-in-out infinite;
}

.dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 1rem 0;
}

.dot {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  -webkit-transition: background-color 0.6s ease;
  transition: background-color 0.6s ease;
}

.slideactive {
  background-color: #717171;
}

@-webkit-keyframes fadeInOut {
  0% {
    opacity: 0.6;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

@keyframes fadeInOut {
  0% {
    opacity: 0.6;
  }
  25% {
    opacity: 1;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0.6;
  }
}

.hero-stats-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #182a60;
  color: white;
  padding: 1rem 0;
  text-align: center;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-stats-wrapper h2 {
  font-size: 4vw;
}

.text-color-white {
  font-size: 3.5vw;
  margin-top: 8px;
}

.reviews {
  margin-top: 1px;
}

.text-center2 {
  margin: 52px auto !important;
  color: #85919c;
  font-size: 5vw;
  text-align: center;
  width: 90%;
  line-height: 1.4;
}

.testimonial-box {
  background-color: #ffffff;
  padding: 19px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px;
  box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px;
  margin: 0 auto 1rem;
  width: 92vw;
}

.testimonial-box:nth-child(n + 5) {
  display: none;
}

.styles_ratingDistributionCard {
  padding: 16px 20px;
  border: 0.95px solid #e5e5dd;
  -webkit-box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px;
  box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  background: white;
  width: 92vw;
  margin: 0 auto 2rem;
}
.styles_ratingDistributionCard .styles_text {
  text-align: center;
}
.typography_display-l {
  font-family: Trustpilot Display, Arial, sans-serif;
  font-weight: 900;
  line-height: 130%;
  font-size: 9vw;
  letter-spacing: -0.72px;
}
.typography_heading-xxs {
  font-family: TrustpilotDefaultFont, Arial, sans-serif;
  font-weight: 700;
  line-height: 120%;
  font-size: 4vw;
  letter-spacing: -0.154px;
}
.typography_body-s {
  font-family: TrustpilotDefaultFont, Arial, sans-serif;
  font-weight: 400;
  line-height: 140%;
  font-size: 3.5vw;
  letter-spacing: 0.132px;
}
.styles_ratingDistributionCard .styles_distributions {
  width: 100%;
}
.rating-distribution-row_row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.rating-distribution-row_row .rating-distribution-row_bar {
  height: 8px;
  width: 90%;
  background-color: #d2d2d2;
  -webkit-border-radius: 9999px;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
}
.rating-distribution-row_row
  .rating-distribution-row_bar
  .rating-distribution-row_barValue {
  position: absolute;
  left: 0;
  top: 0;
  height: 8px;
  border-radius: inherit;
  background-color: #000 !important;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.rating-distribution-row_row[data-star-rating="five"]:hover
  .rating-distribution-row_barValue {
  background-color: #00b67a !important;
}
.rating-distribution-row_row[data-star-rating="four"]:hover
  .rating-distribution-row_barValue {
  background-color: #73cf11 !important;
}
.rating-distribution-row_row[data-star-rating="three"]:hover
  .rating-distribution-row_barValue {
  background-color: #ffce00 !important;
}
.rating-distribution-row_row[data-star-rating="two"]:hover
  .rating-distribution-row_barValue {
  background-color: #ff8622 !important;
}
.rating-distribution-row_row[data-star-rating="one"]:hover
  .rating-distribution-row_barValue {
  background-color: #ff3722 !important;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
  gap: 0.5rem;
}
.profile-img {
  width: 58px;
  height: 58px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  overflow: hidden;
  border: 1.6px solid #f0f0f0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.profile-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.name-user {
  color: #2c2c2c;
  font-size: 4.5vw;
  font-weight: 600;
}
.verefied {
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(https://res.cloudinary.com/dba7l52gn/image/upload/v1744067973/img.icons8.com_jjzfnz.png);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 5px;
  vertical-align: middle;
}
.stamped-verified-badge {
  color: #009dff;
  font-family: sans-serif;
  font-weight: lighter;
  font-style: italic;
  font-size: 4.2vw;
}

.date {
  margin-bottom: 8px;
}

.date,
.insta,
.adress {
  font-size: 3.5vw;
  color: #949494;
  font-weight: 400;
  margin-top: 0.5rem;
}
.flag {
  background-image: url(https://cdnjs.cloudflare.com/ajax/libs/flag-icon-css/3.4.3/flags/4x3/us.svg);
  width: 24px;
  height: 18px;
  background-size: contain;
  margin-top: 0.5rem;
}
.stars {
  padding: 10px 0;
  border-bottom: 1.2px solid #f0f0f0;
}
.readMoreInit {
  font-size: 4vw;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin-top: 12px;
}
.show-more {
  background: #eee6e6;
  width: 92vw;
  text-align: center;
  padding: 13px 0;
  font-size: 5vw;
  -webkit-box-shadow: 0rem 1rem 1rem 0rem #00000033;
  box-shadow: 0rem 1rem 1rem 0rem #00000033;
  color: #979797;
  font-weight: bold;
  display: block;
  margin: 1rem auto;
  cursor: pointer;
}
.warn {
  color: #6d81a8;
  font-size: 4.6vw;
  font-weight: bold;
  text-align: center;
  margin: 2rem 0;
}
.warn .logo {
  width: 45vw;
  margin: 1rem auto;
}
.loan-features-container {
  width: 94vw;
  margin: 45px auto 0;
  padding: 20px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px !important;
  box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px !important;
  background-image: url(https://res.cloudinary.com/dba7l52gn/image/upload/v1743900405/desktop_intersect_lbwoqa.svg);
  background-size: 108%;
  background-repeat: no-repeat;
  background-position: top center;
}
.loan-features-list {
  list-style: none;
  padding: 0;
}
.loan-feature-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 20px;
}
.loan-feature-item .check-icon {
  margin-top: 5px;
}
.loan-feature-item-title {
  font-size: 5vw;
  margin: 0;
  color: #3d5298;
}
.loan-feature-item-description {
  margin: 10px 0 0;
  color: #555;
  font-size: 4vw;
  line-height: 1.4;
}
.faq-section {
  width: 94vw;
  margin: 2rem auto;
  padding: 20px;
  background: #fff;
  -webkit-box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px !important;
  box-shadow: rgba(24, 87, 192, 0.15) 0px 24px 40px 0px !important;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.faq-title {
  text-align: center;
  font-size: 5vw;
  margin-bottom: 23px;
  font-weight: bold;
  color: #41689b;
  line-height: 1.5;
}
.faq {
  border-bottom: 1px solid #ddd;
  padding: 20px;
  cursor: pointer;
}
.faq:last-child {
  border-bottom: none;
}
.faq-question {
  font-size: 4.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.faq-question span {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.faq.open .faq-question span {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq-answer {
  display: none;
  font-size: 4vw;
  margin-top: 10px;
  color: #555;
}
.faq.open .faq-answer {
  display: block;
}
.process-section {
  -webkit-border-radius: 4px;
  border-radius: 4px;
  padding: 20px;
  margin: 2rem auto;
  width: 94vw;
  -webkit-box-shadow: rgba(24, 87, 192, 0.15) 1px -7px 40px 0px !important;
  box-shadow: rgba(24, 87, 192, 0.15) 1px -7px 40px 0px !important;
}
.process-section h2 {
  font-size: 5.5vw;
  margin-bottom: 31px;
  text-align: center;
  color: #41689b;
}
.process-section .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.process-step {
  text-align: center;
  color: white;
  padding: 20px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  background: #182a60;
}
.process-step h5 {
  margin-bottom: 10px;
  font-size: 5vw;
}
.process-step p {
  margin-bottom: 14px;
  font-size: 4vw;
  opacity: 0.9;
  line-height: 1.4;
}
.step-number {
  width: 50px;
  height: 50px;
  background: #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 15px;
  font-weight: bold;
  color: #1c4d9b;
  font-size: 6vw;
}
#btn2 {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  border-radius: 0;
  max-width: 100vw;
  padding: 15px 0;
  z-index: 1001;
  -webkit-transition: bottom 0.5s ease-in-out;
  transition: bottom 0.5s ease-in-out;
  background: -webkit-gradient(linear, left top, left bottom, from(#0836f5), to(#2647d1));
  background: linear-gradient(180deg, #0836f5, #2647d1);
  color: white;
  text-align: center;
  text-decoration: none;
  font-size: 5vw;
}
#footer {
  background-color: #182a60;
  padding: 20px 0;
  font-size: 3vw;
  color: #fff;
}
.container-f {
  max-width: 1140px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}
.logo-f img {
  max-width: 40vw;
  height: auto;
  margin-bottom: 1rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.footer-links a {
  color: white;
  font-size: 3.2vw;
  text-decoration: underline;
}
#fomo_m {
  z-index: 9999;
  -webkit-box-shadow: rgb(28 28 28 / 25%) 0px 24px 40px 0px !important;
  box-shadow: rgb(28 28 28 / 25%) 0px 24px 40px 0px !important;
  -webkit-border-radius: 8px;
  border-radius: 8px;
  background-color: #fff;
  position: fixed;
  /* bottom: -100%; */
  bottom: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 300px;
  max-width: 450px;
  border: 1px solid #ddd;
  padding: 12px;
  -webkit-transition: all 1000ms;
  transition: all 1000ms;
  display: -ms-grid !important;
  display: grid !important;
  -ms-grid-columns: 50px 1rem auto;
  grid-template-columns: 50px auto;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.location,
.user_name,
.from,
.Boked {
  font-size: 16px;
  color: #045282;
}
.loanAmount {
  color: green;
  font-weight: 600;
}
.user_name {
  font-weight: bold;
}
#fomo_m.is-visible {
  bottom: 25vw;
}
#fomo_m .product_image {
  height: auto;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
#fomo_m .wrapper {
  line-height: 1.3;
}
.time {
  font-size: 12px;
  padding-top: 3px;
}

/* Responsive CSS for Desktop */
@media (min-width: 768px) {
  body {
    background-color: #f0f2f5;
  }
  .page-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
    -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }
  .container {
    width: 95%;
    max-width: 1140px;
  }
  .hamburger {
    display: none;
  }
  .logo {
    width: 200px !important;
    margin: 0 auto !important;
  }
  .main-header .container {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .section1 {
    padding: 4rem 2rem;
  }
  .hero-content-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 3rem;
  }
  .hero-text-content {
    -webkit-box-flex: 1.2;
    -ms-flex: 1.2;
    flex: 1.2;
    text-align: left;
  }
  .hero-img-container {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin: 0;
  }
  .section1 h1 {
    font-size: 3rem !important;
    text-align: left;
    padding: 0;
    background-size: 50%;
    background-position: top left;
  }
  .section1 h1 span {
    font-size: 1.5rem !important;
    position: static;
    display: block;
    line-height: 1.2;
  }
  .section1 h1 p {
    font-size: 1.2rem !important;
  }
  .features {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0 0 0;
  }
  .feature-item {
    font-size: 1rem !important;
  }
  .check-icon {
    margin-right: 10px;
  }
  .hero-img {
    -webkit-box-shadow: 20px 0px 40px 5px #43424236 !important;
    box-shadow: 20px 0px 40px 5px #43424236 !important;
  }
  .call_button {
    font-size: 1.6rem !important;
    max-width: 360px;
    padding: 18px;
  }
  .call_button p:last-child {
    font-size: 1rem !important;
  }
  .underbtn {
    font-size: 1rem !important;
  }
  .text-center {
    margin: 4rem 0;
  }
  .star-icon {
    width: 250px;
  }
  .verified-success-image {
    width: 400px;
  }

  .section2 {
    padding: 4rem 2rem;
  }
  .section2 h2 {
    font-size: 2.5rem !important;
  }
  .whyus {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 2rem;
    width: 100%;
    margin: 3rem 0;
  }
  .service-block {
    padding: 2rem;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .service-block-body h4 {
    font-size: 1.5rem !important;
  }
  .smtxt {
    font-size: 1rem !important;
  }

  .trusted-publications {
    width: 100%;
  }
  .trusted-publications h2 {
    font-size: 1.8rem !important;
  }
  .logos {
    gap: 3rem;
  }
  .logos img {
    height: 40px;
  }

  #slideshow-container,
  .testimonial-box,
  .styles_ratingDistributionCard,
  .faq-section,
  .process-section,
  .loan-features-container {
    width: 100%;
  }

  .hero-stats-wrapper {
    padding: 2rem;
  }
  .hero-stats-wrapper h2 {
    font-size: 2rem !important;
  }
  .hero-stats-wrapper .text-color-white {
    font-size: 1.2rem !important;
  }

  .text-center2 {
    font-size: 2rem !important;
  }

  .styles_ratingDistributionCard {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    text-align: left;
  }
  .styles_ratingDistributionCard .styles_text {
    text-align: left;
  }
  .typography_display-l {
    font-size: 3rem !important;
  }
  .typography_heading-xxs,
  .typography_body-s {
    font-size: 1rem !important;
  }

  .testimonial-box-container {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 0 20px;
  }
  .testimonial-box {
    width: 100% !important;
    margin: 0;
  }
  .name-user {
    font-size: 1.1rem !important;
  }
  .stamped-verified-badge {
    font-size: 0.9rem !important;
  }
  .age,
  .date,
  .insta,
  .adress,
  .readMoreInit,
  .btnllink {
    font-size: 0.9rem !important;
  }
  .readMoreInit {
    line-height: 1.5 !important;
  }

  .show-more {
    width: 100%;
    max-width: 300px;
    font-size: 1.2rem !important;
  }

  .warn {
    font-size: 2rem !important;
  }
  .warn .logo {
    width: 250px !important;
  }

  .loan-features-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-pack: distribute;
    justify-content: space-around;
    gap: 1rem;
  }
  .loan-feature-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
  .loan-feature-item .check-icon {
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .loan-feature-item-title {
    font-size: 1.3rem !important;
  }
  .loan-feature-item-description {
    font-size: 1rem !important;
  }

  .faq-section {
    max-width: 900px;
  }
  .faq-title {
    font-size: 2rem !important;
  }
  .faq-question {
    font-size: 1.2rem !important;
  }
  .faq-answer {
    font-size: 1rem !important;
  }

  .process-section h2 {
    font-size: 2.5rem !important;
  }
  .process-section .row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2rem;
  }
  .process-step {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 300px;
  }
  .process-step h5 {
    font-size: 1.5rem !important;
  }
  .process-step p {
    font-size: 1rem !important;
  }
  .step-number {
    font-size: 2rem !important;
  }

  #footer {
    font-size: 1rem !important;
  }
  .footer-links a,
  .text-muted {
    font-size: 1rem !important;
  }
  .logo-f img {
    max-width: 180px !important;
  }

  #btn2 {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .styles_ratingDistributionCard {
    padding: 2rem;
  }
  .testimonial-box-container {
    -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service slider for mobile */
@media (max-width: 768px) {
  .service-slider {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    /* overflow: hidden; */
    /* min-height: 260px; */
    width: 100%;
  }
  .service-slider .service-block {
    min-width: 100%;
    /* flex-shrink: 0; */
    display: none;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .service-slider .service-block.active {
    display: block;
  }
  .service-slider .service-prev,
  .service-slider .service-next {
    display: none !important;
  }
  .service-dots {
    margin-left: calc(50% - 28px);
    /* justify-content: center;
    align-items: center; */
    gap: 12px;
    width: 100%;
  }
  .service-dots .dot {
    width: 16px;
    height: 16px;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background: #bbb;
    display: inline-block;
    -webkit-transition: background 0.3s, -webkit-box-shadow 0.3s;
    transition: background 0.3s, -webkit-box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s;
    transition: background 0.3s, box-shadow 0.3s, -webkit-box-shadow 0.3s;
    -webkit-box-shadow: 0 2px 8px #0002;
    box-shadow: 0 2px 8px #0002;
    border: 2px solid #fff;
  }
  .service-dots .dot.active {
    background: #41689a;
    border-color: #41689a;
    -webkit-box-shadow: 0 2px 12px #41689a44;
    box-shadow: 0 2px 12px #41689a44;
  }
}
@media (min-width: 768px) {
  .service-slider .service-prev,
  .service-slider .service-next {
    display: none !important;
  }
  .service-slider .service-block {
    display: block !important;
    min-width: unset;
  }
}

footer {
            background-color: #fff;
            padding: 30px;
            border-radius: 8px;
			    background-color: #222;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
            justify-content: center;
        }
        
        .footer-links a {
            text-decoration: none;
            color: #fff;
            font-weight: 500;

            padding: 8px 15px;
            border-radius: 4px;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            background-color: #f0f0f0;
            color: #0066cc;
        }
        
        .footer-content p {
            text-align: center;
            color: #fff;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        
        .footer-content p:last-child {
            font-weight: bold;
            color: #fff;
            margin-bottom: 0;
        }
        
        /* Responsive: chuyển thành cột khi màn hình nhỏ */
        @media (max-width: 768px) {
            .footer-links {
                flex-direction: column;
                align-items: center;
                gap: 15px;
            }
            
            .footer-links a {
                display: block;
                text-align: center;
                width: 100%;
                max-width: 250px;
            }
            
            footer {
                padding: 20px 15px;
            }
        }
