@charset "UTF-8";
:root {
  --primary: #C8E653;
  --primaryRGB: 200,230,83;
  --primary-light: #f5f5f5;
  --primary-light-more: #D7F5DC;
  --bg-footer: #161C28;
  --text-body: #05400B;
  --text-title: #05400B;
  --text-grey: #8A938E;
  --text-grey-more: #5F5F5F;
  --white: #ffffff;
  --black: #05400B;
  --bg-button: #F4F8F7;
  --bg-body: #ffffff;
  --input-border: #777777;
  --font-body: "Manrope", sans-serif;
  --timeTrans: 0.2s;
  --eio: ease-in-out; }

@media (min-width: 992px) {
  font-size: 64px; }
@media (max-width: 767.98px) {
  font-size: 32px; }
@media (min-width: 768px) and (max-width: 991.98px) {
  font-size: 40px; }
@media (min-width: 768px) and (max-width: 1199.98px) {
  font-size: 44px; }
@font-face {
  font-family: "bodoni";
  src: url("../fonts/Bodoni-72-OS.woff") format("woff2"), url("../fonts/Bodoni-72-OS.woff") format("woff");
  font-style: normal;
  font-display: swap;
  /* tránh flash khi font chưa load */ }
body {
  font-family: var(--font-body);
  color: var(--text-body); }

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--text-title); }

header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  width: 100%; }
  @media (max-width: 767.98px) {
    header .navbar-brand img {
      height: 34px; } }
  header .navbar-toggler {
    position: relative;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none !important;
    box-shadow: none !important;
    z-index: 99; }
    header .navbar-toggler[aria-expanded="true"] span {
      background-color: var(--black); }
    header .navbar-toggler span {
      display: block;
      position: absolute;
      width: 16px;
      height: 1.3px;
      background-color: var(--white);
      border-radius: 1px;
      left: 7px;
      transition: all 0.2s ease-in-out; }
      header .navbar-toggler span:nth-child(1) {
        top: 9px; }
      header .navbar-toggler span:nth-child(2) {
        top: 15px; }
      header .navbar-toggler span:nth-child(3) {
        top: 21px; }

@media (min-width: 992px) {
  .navbar-nav {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border-radius: 100px;
    padding: 5px; }
    .navbar-nav .nav-link {
      display: block;
      color: var(--white);
      border-radius: 100px;
      white-space: nowrap; }
      .navbar-nav .nav-link.active {
        font-weight: 700;
        background-color: var(--bg-button); } }
#mainmenu.navbar-scrolled {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%); }

.sticky-menu .lang-toggle, .sticky-menu .navbar-brand {
  opacity: 0 !important; }

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 20px;
    padding-left: 20px; } }
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background-color: var(--bg-button);
  border-radius: 999px;
  padding: 5px;
  gap: 3px; }

.lang-btn {
  background: transparent;
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  opacity: 0.5;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--time-trans) var(--eio); }

.lang-btn img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  display: block; }

.lang-btn.active,
.lang-btn.lang-active {
  opacity: 1; }

.lang-divider {
  width: 1px;
  height: 20px;
  background: #05400B;
  border-radius: 2px;
  flex-shrink: 0; }

/* HERO */
#hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  display: flex;
  flex-direction: column; }
  @media (max-width: 767.98px) {
    #hero {
      height: 50svh;
      min-height: 400px; } }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0; }

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.1) 60%, transparent 100%); }

.hero-container {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px; }
  @media (max-width: 767.98px) {
    .hero-container {
      padding-bottom: 16px; } }

.hero-content {
  max-width: 740px; }

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--primaryRGB), 0.25);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  padding: 6px 16px;
  color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px; }

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--primary);
  display: inline-block; }

/* Title */
.hero-title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 18px; }
  .hero-title img {
    width: 740px;
    height: 140px; }
    @media (min-width: 768px) and (max-width: 991.98px) {
      .hero-title img {
        width: 600px;
        height: 116px; } }
    @media (max-width: 767.98px) {
      .hero-title img {
        width: 60%;
        height: auto; } }

.hero-title-brand {
  color: #C6F135; }

/* yellow-green */
.hero-title-white {
  color: #ffffff; }

.hero-italic {
  font-style: italic;
  font-weight: 400;
  color: #ffffff;
  font-size: 0.9em; }

.hero-subtitle-regular {
  color: #ffffff;
  font-weight: 600;
  font-style: normal; }

/* Desc */
.hero-desc {
  color: var(--white);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 32px; }
  @media (max-width: 767.98px) {
    .hero-desc {
      font-size: 8px; } }

/* Buttons */
.hero-btn-primary {
  background: var(--primary);
  color: var(--black);
  font-weight: 600;
  border-radius: 999px;
  padding: 6px 20px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background var(--time-trans) var(--eio); }

.hero-btn-primary:hover {
  background: var(--white);
  color: var(--black); }

.hero-btn-outline {
  border: 2px solid #ffffff;
  color: var(--white);
  border-radius: 999px;
  padding: 6px 20px;
  font-weight: 600;
  transition: all var(--time-trans) var(--eio); }

.hero-btn-outline:hover {
  background: #fff;
  color: var(--black); }

/* Bottom bar */
.hero-bottom {
  position: relative;
  z-index: 2;
  padding: 30px 0;
  border-top: 0.3px solid var(--white);
  backdrop-filter: blur(4px); }

.hero-scroll {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 20px;
  border: none;
  background: none;
  text-decoration: none; }

.hero-scroll-arrow {
  font-size: 16px; }

.hero-star {
  color: #F5A623;
  font-size: 18px; }

.hero-rating-num {
  color: #fff;
  font-weight: 700;
  font-size: 16px; }

.hero-avatar {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 0.5px solid var(--white);
  object-fit: cover;
  margin-left: -10px; }

.hero-avatars .hero-avatar:first-child {
  margin-left: 0; }

.hero-avatars {
  position: relative;
  z-index: 2; }

.hero-visit-text {
  z-index: 1;
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  position: relative;
  height: 26px;
  padding-right: 15px; }
  .hero-visit-text:before {
    content: "";
    position: absolute;
    width: calc(100% + 40px);
    height: 100%;
    right: 0;
    top: 0;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px); }

.section-badge {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 8px 14px;
  background-color: var(--white);
  border: 1px solid var(--primary);
  color: var(--black);
  border-radius: 30px;
  margin-bottom: 30px; }
  .section-badge img {
    width: 16px;
    height: 16px; }

.clients {
  padding: 40px 0;
  background-color: #F5F5F5; }
  .clients .client-logos {
    margin-bottom: 40px;
    gap: 40px; }
  .clients .client-logo-item img {
    height: 40px; }
    @media (min-width: 1200px) {
      .clients .client-logo-item img {
        height: 30px; } }
  .clients .tagline-thumb img {
    height: 35px; }
  .clients .client-tagline {
    font-size: 30px;
    text-align: center; }
  .clients .tagline-grey {
    color: #8A938E; }

.about {
  padding: 60px 0; }
  .about .section-badge {
    background-color: #F5FFCC; }

.about-title {
  font-size: 40px;
  font-weight: 800;
  margin-top: 24px;
  padding-left: 16px; }
  .about-title .about-title-highlight {
    position: relative; }
    .about-title .about-title-highlight span {
      z-index: 1;
      position: relative;
      display: inline-block; }
    .about-title .about-title-highlight:before {
      content: "";
      position: absolute;
      background-color: var(--primary);
      border-radius: 16px;
      height: 75px;
      width: 126px;
      z-index: 0;
      left: -16px;
      top: -10px; }
  .about-title .about-title-normal {
    text-indent: 112px;
    display: block; }

.value-title, .why-title {
  font-size: 40px;
  font-weight: 800; }

.about-desc, .value-desc {
  height: 100%;
  font-size: 20px;
  font-weight: 500;
  display: flex;
  align-items: flex-end; }

.about-list {
  padding-right: 56px; }

.about-item {
  margin-bottom: 30px;
  cursor: pointer; }
  .about-item:last-child {
    margin-bottom: 0; }

.about-card-title {
  font-size: 20px;
  font-weight: 500; }

.about-card-desc {
  margin-bottom: 0;
  font-size: 14px;
  color: var(--text-grey); }

.about-num {
  font-size: 80px;
  color: var(--primary);
  width: 100px;
  line-height: 80px; }

.about-card {
  background: var(--white);
  box-shadow: -5px 15px 100px rgba(5, 64, 11, 0.1);
  border-radius: 20px;
  padding: 15px 30px;
  width: calc(100% - 100px);
  box-sizing: border-box;
  border: 1px solid var(--white); }

.slide-card {
  transition: all 0.3s var(--eio); }

.slide-card--active {
  background-color: var(--primary);
  border: 1px solid var(--black);
  box-shadow: -5px 15px 100px rgba(200, 230, 83, 0.7); }
  .slide-card--active .about-card-desc {
    color: var(--black); }

.slide-img {
  border-radius: 20px;
  transition: opacity 0.3s ease-in-out; }
  @media (min-width: 1200px) {
    .slide-img {
      height: 660px; } }

.slide-img--fade {
  opacity: 0; }

.value-proposition {
  padding: 60px 0; }
  .value-proposition .section-badge {
    background-color: #F5FFCC; }

.value-subtitle {
  font-family: "bodoni";
  font-size: 36px; }

.value-item {
  width: calc(100%/4 - 12px); }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .value-item {
      width: 100%; } }
  .value-item .slide-card {
    background: var(--white);
    box-shadow: -5px 15px 100px rgba(5, 64, 11, 0.1);
    border-radius: 10px;
    padding: 10px;
    box-sizing: border-box;
    border: 1px solid var(--white);
    display: flex;
    align-items: center;
    gap: 12px; }
  .value-item .slide-card--active {
    background-color: var(--primary);
    border: 1px solid var(--black);
    box-shadow: -5px 15px 100px rgba(200, 230, 83, 0.7); }
    .value-item .slide-card--active .slide-card-sub {
      color: var(--black); }
    .value-item .slide-card--active .slide-card-icon {
      background-color: #F5FFCC; }
  .value-item .slide-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background-color: #E4E4E4;
    display: flex;
    align-items: center;
    justify-content: center; }
  .value-item .slide-card-title {
    margin-bottom: 0;
    font-weight: 600; }
  .value-item .slide-card-sub {
    margin-bottom: 0;
    font-size: 14px;
    color: var(--text-grey); }

.value-stat-item {
  background-color: #f5f5f5;
  border-radius: 10px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  margin-top: 20px; }
  .value-stat-item .value-stat-num {
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase; }
  .value-stat-item .value-stat-label {
    margin-bottom: 0;
    color: var(--text-grey); }

.why-card {
  transition: all 0.3s ease-in-out; }
  .why-card:hover {
    padding: 10px;
    background-color: var(--primary);
    border: 1px solid var(--black);
    box-shadow: -5px 15px 100px rgba(200, 230, 83, 0.7);
    border-radius: 22px; }
    .why-card:hover .why-card-body {
      padding: 0 10px; }
    .why-card:hover .why-card-desc {
      color: var(--text-title); }

.why-desc {
  margin-bottom: 0; }

.why-card-img {
  height: 268px;
  overflow: hidden;
  margin-bottom: 12px; }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .why-card-img {
      height: 188px; } }
  .why-card-img img {
    border-radius: 12px; }

.why-card-body {
  transition: padding 0.3s ease-in-out; }

.why-card-title {
  font-size: 20px;
  font-weight: 700; }

.why-card-desc {
  font-size: 14px;
  color: var(--text-grey); }

.why-card-price {
  font-size: 20px;
  font-weight: 700; }

.why-card-price {
  font-weight: 700;
  text-decoration: underline; }

.why-swiper {
  overflow: visible;
  padding-bottom: 20px; }

.why-choose-us {
  background-color: #f5f5f5;
  padding-top: 60px; }
  .why-choose-us .swiper {
    transform: translateY(-40px); }
  .why-choose-us .swiper-wrapper {
    padding: 80px 0; }

.why-desc {
  font-size: 20px;
  max-width: 755px; }

.faqs {
  padding: 80px 0; }

.faq-title {
  font-size: 40px;
  font-weight: 800; }

.faq-subtitle {
  font-family: "bodoni";
  font-size: 36px; }

.faq-desc {
  font-size: 20px; }

.faq-accordion {
  max-width: 1000px;
  margin: 0 auto; }

.faq-btn {
  padding: 0;
  gap: 16px;
  font-size: 24px;
  color: var(--text-body);
  box-shadow: none !important;
  background: none !important; }

.faq-body {
  padding-left: 72px;
  color: var(--text-body); }

.faq-num {
  width: 56px;
  height: 56px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDEEF0;
  font-size: 20px; }

.faq-btn:after {
  flex-shrink: 0;
  background: url("../images/star-icon.svg") no-repeat;
  background-size: cover;
  width: 20px;
  height: 20px;
  margin-left: auto;
  content: "";
  transition: var(--bs-accordion-btn-icon-transition); }

.faq-btn[aria-expanded="true"]:after {
  transform: rotate(45deg); }

.faq-btn:not(.collapsed)::after {
  background-image: url("../images/star-icon.svg"); }

.faq-btn:not(.collapsed) {
  background: none;
  box-shadow: none; }

.faq-item--active:not(:first-of-type) {
  border-top: inset; }

.faq-item {
  background: var(--white);
  box-shadow: -5px 15px 100px rgba(5, 64, 11, 0.1);
  border-radius: 20px !important;
  margin-bottom: 30px;
  border: none;
  padding: 24px; }

.faq-item--active {
  background-color: var(--primary);
  border: 1px solid var(--black);
  box-shadow: -5px 15px 100px rgba(200, 230, 83, 0.7); }
  .faq-item--active .faq-num {
    background-color: var(--white); }
  .faq-item--active .faq-btn {
    font-weight: 700; }

.testimonials-swiper {
  overflow: visible;
  padding-bottom: 48px;
  /* chừa chỗ cho pagination */ }
  .testimonials-swiper .swiper-pagination {
    position: relative;
    padding: 20px; }

.testimonials-swiper .swiper-slide {
  width: 420px; }
  @media (min-width: 768px) and (max-width: 991.98px) {
    .testimonials-swiper .swiper-slide .testi-card {
      min-height: 400px; } }

.testi-card {
  background: var(--primary-light);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center; }

.testi-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 16px;
  border: 1px solid #cccccc; }

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.testi-name {
  font-weight: 700;
  color: var(--text-title);
  margin-bottom: 4px;
  font-size: 24px; }

.testi-location {
  color: var(--text-grey-more);
  font-size: 20px;
  margin-bottom: 12px; }

.testi-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: 16px; }

.testi-stars img {
  width: 20px;
  height: 20px; }

.testi-review {
  color: var(--text-grey);
  line-height: 1.7;
  margin: 0;
  min-height: 54px; }

/* Pagination */
.testimonials-pagination .swiper-pagination-bullet {
  background: #E3E3E3;
  opacity: 1;
  width: 16px;
  height: 6px;
  border-radius: 4px;
  transition: width 0.3s var(--eio); }

.testimonials-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 40px; }

.cta {
  margin-bottom: 20px; }

.cta-wrap {
  background: var(--primary);
  border-radius: 24px;
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden; }

/* Decorative circles bên trái */
.cta-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  width: 300px;
  height: 300px; }

.cta-circle--1 {
  left: -180px;
  top: 50%;
  background: linear-gradient(270deg, #C5E452 10.7%, #F9FFE5 103.87%);
  transform: translateY(-50%);
  z-index: 4; }

.cta-circle--2 {
  left: -40px;
  top: 50%;
  background: linear-gradient(270deg, #C5E452 10.7%, #F9FFE5 103.87%);
  transform: translateY(-50%);
  z-index: 3; }

.cta-circle--3 {
  left: 100px;
  top: 50%;
  background: linear-gradient(90deg, #C5E452 10.7%, #F9FFE5 103.87%);
  transform: translateY(-50%);
  z-index: 2; }

.cta-circle--4 {
  left: 460px;
  top: 50%;
  background: linear-gradient(270deg, #C5E452 10.7%, #F9FFE5 103.87%);
  transform: translateY(-50%);
  z-index: 1; }

/* Content */
.cta-content {
  position: relative;
  z-index: 6; }

.cta-title {
  font-size: 30px;
  color: var(--text-title);
  margin-bottom: 12px; }

.cta-desc {
  color: var(--text-body);
  margin-bottom: 28px; }

/* Form */
.cta-form {
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px; }

.cta-input-wrap {
  background: var(--white);
  border-radius: 999px;
  padding: 12px 20px;
  flex: 1;
  max-width: 420px;
  min-width: 260px; }

.cta-input-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0; }

.cta-input {
  border: none;
  outline: none;
  background: transparent;
  width: 100%;
  color: var(--text-body); }

.cta-input::placeholder {
  color: var(--text-grey); }

.cta-btn {
  background: var(--white);
  color: var(--text-title);
  border: 2px solid var(--text-title);
  border-radius: 999px;
  padding: 12px 48px;
  font-weight: 700;
  white-space: nowrap;
  transition: all var(--time-trans) var(--eio); }

.cta-btn:hover {
  background: var(--text-title);
  color: var(--white); }

.footer {
  background: url("../images/bg-footer.png") no-repeat;
  padding: 60px 0 10px;
  background-size: cover; }

.footer-top {
  padding-bottom: 48px; }

.footer-logo img {
  height: 50px;
  width: 186px; }

.footer-contact {
  color: var(--text-body);
  line-height: 1.8; }

.footer-contact strong {
  color: var(--text-title); }

.footer-heading {
  font-weight: 700;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--text-title);
  margin-bottom: 20px; }

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px; }

.footer-links a {
  color: var(--text-grey);
  text-decoration: none;
  transition: color var(--time-trans) var(--eio); }

.footer-links a:hover {
  color: var(--primary); }

/* Bottom */
.footer-bottom {
  padding: 20px 0; }

.footer-copy {
  margin: 0; }

.footer-social-link img {
  width: 26px;
  height: 26px;
  transition: opacity var(--time-trans) var(--eio); }

.footer-social-link:hover img {
  opacity: 0.6; }

@media (max-width: 991.98px) {
  body {
    font-size: 14px; }

  #main-header {
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(80px);
    -webkit-backdrop-filter: blur(80px); }

  .btn-register {
    font-size: 12px;
    padding: 12px 24px;
    background-color: var(--primary);
    white-space: nowrap;
    border-radius: 40px;
    margin-top: 20px; }

  .navbar-collapse {
    background: var(--white); }
    .navbar-collapse .navbar-nav {
      background: none;
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      margin-top: 120px; }
      .navbar-collapse .navbar-nav .nav-link {
        color: var(--text-body);
        font-size: 20px;
        font-weight: 700;
        padding: 8px 24px;
        border-radius: 100px; }

  .sticky-menu .lang-toggle, .sticky-menu .navbar-brand {
    opacity: 1 !important; }

  #mainmenu.navbar-scrolled {
    top: 0; }

  header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030; }
    header .lang-toggle {
      position: fixed;
      top: 20px;
      left: 28px; }
    header .navbar-nav {
      margin-top: 128px; }
    header .navbar-toggler {
      z-index: 10; }
      header .navbar-toggler span {
        transition: all var(--timeTrans) var(--eio); }
      header .navbar-toggler[aria-expanded="true"] {
        background-color: rgba(0, 0, 0, 0); }
        header .navbar-toggler[aria-expanded="true"] span {
          background-color: var(--black); }
          header .navbar-toggler[aria-expanded="true"] span:nth-child(1) {
            transform: rotate(-45deg);
            top: 15px;
            width: 24px; }
          header .navbar-toggler[aria-expanded="true"] span:nth-child(2) {
            opacity: 0; }
          header .navbar-toggler[aria-expanded="true"] span:nth-child(3) {
            transform: rotate(45deg);
            top: 15px;
            width: 24px; }
    header .navbar-collapse {
      position: fixed;
      top: 100%;
      left: 0;
      right: 0;
      top: 0;
      height: 100svh !important;
      z-index: 9;
      width: 100%;
      background: var(--white);
      padding: 0;
      opacity: 0;
      transition: opacity var(--timeTrans) var(--eio); }
      header .navbar-collapse.show {
        opacity: 1; }
    header .nav-item {
      display: flex;
      justify-content: center; }
      header .nav-item .btn-primary {
        margin-top: 54px;
        width: 112px;
        height: 45px; }
        header .nav-item .btn-primary:before {
          display: none; }
        header .nav-item .btn-primary span {
          font-size: 12px;
          margin-right: 4px; }
        header .nav-item .btn-primary img {
          width: 13px; }

  .hero-badge {
    font-size: 8px;
    margin-bottom: 10px; }

  .hero-title {
    margin-bottom: 10px; }

  .hero-desc {
    margin-bottom: 20px; }

  .hero-btn-primary, .hero-btn-outline {
    font-size: 10px; }

  .hero-bottom {
    padding: 8px 0; }

  .hero-scroll {
    font-size: 12px; }

  .hero-rating-num, .hero-visit-text {
    font-size: 10px; }

  .section-badge {
    font-size: 10px !important;
    margin-bottom: 20px !important; }

  .clients {
    padding: 20px 0; }
    .clients .client-logo-item img {
      height: 18px; }
    .clients .client-logos {
      margin-bottom: 20px;
      gap: 20px; }
    .clients .client-tagline {
      font-size: 14px;
      margin-bottom: 0; }
    .clients .tagline-thumb img {
      height: 14px; }

  .about {
    padding: 20px 0; }
    .about .about-title {
      font-size: 20px;
      margin-top: 0; }
      .about .about-title .about-title-highlight:before {
        border-radius: 8px;
        height: 37px;
        width: 70px;
        left: -16px;
        top: -4px; }
      .about .about-title .about-title-normal {
        text-indent: 58px; }
    .about .about-desc {
      font-size: 14px; }
    .about .about-list {
      padding-right: 0; }
    .about .about-item {
      margin-bottom: 0; }
    .about .about-card {
      border-radius: 12px;
      width: calc(100% - 60px);
      padding: 15px 10px; }
    .about .about-num {
      font-size: 50px;
      width: 60px; }
    .about .about-card-title {
      font-size: 14px; }
    .about .about-card-desc {
      font-size: 10px; }

  .value-proposition {
    padding: 20px 0; }
    .value-proposition .slide-img {
      height: 280px; }

  .value-title, .why-title {
    font-size: 24px; }

  .value-subtitle {
    font-size: 20px;
    margin-bottom: 0; }

  .value-desc {
    font-size: 14px; }

  .value-list {
    flex-flow: column; }

  .value-item {
    width: 100%; }

  .value-stat-item .value-stat-num {
    font-size: 20px; }

  .value-stat-label {
    font-size: 12px; }

  .why-choose-us {
    padding-top: 20px; }
    .why-choose-us .swiper {
      transform: translateY(0); }
    .why-choose-us .swiper-wrapper {
      padding: 40px 0; }

  .why-desc {
    font-size: 14px; }

  .why-card-title, .why-card-price {
    font-size: 16px; }

  .why-card-desc {
    font-size: 12px; }

  .faqs {
    padding: 20px 0; }

  .faq-title {
    font-size: 24px;
    margin-bottom: 0; }

  .faq-subtitle {
    font-size: 20px;
    margin-bottom: 0; }

  .faq-desc {
    font-size: 14px;
    margin-bottom: 0; }

  .faq-item {
    padding: 10px;
    margin-bottom: 12px; }

  .faq-btn, .faq-num {
    font-size: 16px; }

  .faq-btn {
    gap: 8px; }

  .faq-num {
    width: 40px;
    height: 40px;
    flex-shrink: 0; }

  .faq-body {
    padding-left: 48px; }

  .testi-card {
    padding: 10px 5px; }

  .testi-avatar {
    width: 50px;
    height: 50px; }

  .testi-name {
    font-size: 16px; }

  .testi-stars img {
    width: 16px;
    height: 16px; }

  .testi-location {
    font-size: 14px; }

  .testi-review {
    font-size: 10px; }

  .cta-wrap {
    padding: 20px;
    border-radius: 6px; }

  .cta-title {
    font-size: 16px; }

  .cta-desc {
    font-size: 10px;
    margin-bottom: 12px; }

  .cta-btn {
    font-size: 10px;
    padding: 10px 15px;
    border-width: 0.5px; }

  .cta-input-wrap {
    min-width: auto;
    padding: 0 20px; }

  .cta-input {
    font-size: 10px;
    padding: 10px 0 11px 0; }

  .cta-circle {
    width: 174px;
    height: 174px; }

  .cta-circle--1 {
    left: -145px; }

  .cta-circle--2 {
    left: -62px; }

  .cta-circle--3 {
    left: 125px;
    background: linear-gradient(270deg, #C5E452 10.7%, #F9FFE5 103.87%); }

  .cta-circle--4 {
    left: 20px; }

  .testimonials-swiper .swiper-pagination {
    padding: 4px 0 16px 0; }

  .testimonials-pagination .swiper-pagination-bullet {
    height: 3px; }

  .footer {
    padding: 20px 0 10px; }

  .footer-top {
    padding-bottom: 0; }

  .footer-links {
    margin-bottom: 16px; }

  .footer-bottom {
    flex-flow: column;
    align-items: flex-start !important; }

  .footer-copy {
    order: 2; }

  .footer-socials {
    order: 1; } }
