/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 10px;
}

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

a {
  text-decoration: none;
  color: inherit;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.bold-md {
  font-weight: 500;
}
.hr {
  width: 100%;
  height: 1px;
  background: #d9d9d9;
}
.white {
  color: #fff !important;
}
.w-50 {
  width: 50%;
}

/* Header */
.header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-col:nth-child(1) {
  width: 35%;
}
.header-col:nth-child(2) {
  width: 25%;
}
.header-col:nth-child(3) {
  width: 35%;
}

a.icon-list-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.11em;
  color: #253d4e;
}

.icon-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.icon-list.sep .icon-list-item:first-child {
  padding-left: 0 !important;
}
.icon-list.sep .icon-list-item {
  padding: 5px 15px;
  border-right: 1px solid #133a64;
}
.icon-list.sep .icon-list-item:last-child {
  padding-right: 0 !important;
  border-right: none;
}

.header-col:nth-child(3) .icon-list {
  justify-content: flex-end;
}
.header-menu {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  position: sticky;
  top: 20px;
}

.header-menu .nav {
  width: fit-content;
  justify-content: center;
  background: #11676a;
  gap: 65px;
  padding: 0px 0 0px 65px;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.nav-link {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  line-height: 1em;
  color: #fff;
  transition: color 0.3s;
  position: relative;
}

.header-menu .nav .nav-link:hover,
.header-menu .nav .nav-link.active {
  color: #ffff;
}

.header-menu .nav a.nav-link.contact-btn {
  background: #039ea3;
  color: white;
  padding: 16px 65px;
}

.nav-link:hover,
.nav-link.active {
  color: #11676a;
}

.nav-link.active {
  font-weight: 600;
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
}

.footer-bottom .menu .nav {
  justify-content: center;
}
.footer-bottom .menu .nav .nav-link {
  color: #373737;
}
.footer-bottom .menu .nav .nav-link.active::after {
  display: none;
}

/* .nav-link.contact-btn {
background: var(--primary-teal);
color: white;
padding: 12px 30px;
border-radius: 5px;
}

.nav-link.contact-btn:hover {
background: var(--dark-teal);
color: white;
} */

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.mobile-menu-btn span {
  width: 25px;
  height: 3px;
  background: #11676a;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  background: url(./img/hero-bg.webp);
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 275px 0 350px;
  position: relative;
  overflow: hidden;
}

.hero .hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: #253d4e;
  margin-bottom: 15px;
  text-align: center;
}

.hero-title {
  font-family: "Outfit", sans-serif;
  font-size: 64px;
  font-weight: 300;
  line-height: 1.1em;
  letter-spacing: -0.02em;
  margin-bottom: 25px;
  text-align: center;
  color: #253d4e;
}

.hero-title .highlight {
  color: #22999a;
}

.hero-description {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #253d4e;
  margin-bottom: 35px;
  text-align: center;
  line-height: 1.5em;
  width: 900px;
}

.cta-button {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1em;
  display: inline-block;
  background: #11676a;
  color: white;
  padding: 18px 60px;
  border-radius: 5px;
  transition: all 0.3s linear;
}

.cta-button:hover {
  background: #039ea3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(26, 139, 143, 0.3);
}

.cta-button.centered {
  margin: 40px auto;
  display: block;
  width: fit-content;
}

.cta-button.white-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
}

.cta-button.white-outline:hover {
  background: white;
  color: var(--primary-teal);
}
/* Auto Slider */
.auto_slider {
  background-color: #22999a;
}
.slider {
  width: 100%;
  height: 70px;
  overflow: hidden;
}
.slider .list {
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 70px;
  min-width: calc(460px * 6);
  position: relative;
}
.slider .list .item {
  color: #fff;
  width: 500px;
  height: 35px;
  position: absolute;
  left: 100%;
  animation: autoRun 40s linear infinite;
  transition: filter 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-family: "Outfit", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 1em;
  letter-spacing: 0.03em;
}

.slider .list .item:nth-child(1) {
  animation-delay: calc((40s / 6) * (1 - 1) - 40s) !important;
}

.slider .list .item:nth-child(2) {
  animation-delay: calc((40s / 6) * (2 - 1) - 40s) !important;
}

.slider .list .item:nth-child(3) {
  animation-delay: calc((40s / 6) * (3 - 1) - 40s) !important;
}

.slider .list .item:nth-child(4) {
  animation-delay: calc((40s / 6) * (4 - 1) - 40s) !important;
}

.slider .list .item:nth-child(5) {
  animation-delay: calc((40s / 6) * (5 - 1) - 40s) !important;
}

.slider .list .item:nth-child(6) {
  animation-delay: calc((40s / 6) * (6 - 1) - 40s) !important;
}

@keyframes autoRun {
  from {
    left: 100%;
  }
  to {
    left: calc(500px * -1);
  }
}
/* Auto Slider Section */

/* Services Section */
.about {
  padding: 100px 0 110px;
}

.section-label.right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-label::after {
  display: block;
  content: "";
  width: 69px;
  height: 2px;
  background: #11676a;
}
.section-label.white::after {
  background: #fff;
}

.section-label {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: #11676a;
  margin-bottom: 15px;
}

.section-label.white {
  color: rgba(255, 255, 255, 0.8);
}

.section-label.center {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.section-title {
  font-family: "Outfit", sans-serif;
  font-size: 50px;
  font-weight: 300;
  line-height: 1.1em;
  margin-bottom: 25px;
  color: #253d4e;
}

.section-title.white {
  color: white;
}

.section-title.centered {
  text-align: center;
}

.section-description {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #363535;
  margin-bottom: 15px;
  line-height: 1.4em;
}

.section-description.centered {
  width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.about-intro {
  display: flex;
  gap: 20px;
  align-items: center;
}

.about-text {
  width: 45%;
}

.about-image {
  width: 55%;
}

.about-image {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: end;
}

.about-image img.img1 {
  width: 426px;
  margin-right: -200px;
  margin-bottom: -50px;
  z-index: 5;
}
.about-image img.img2 {
  width: 450px;
}
.about-image img {
  border-radius: 33px;
}
.about-image img.img-border-20 {
  border: 20px solid #fff;
}

/* Stats Grid */
.stats-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0px;
  margin: 20px 0;
}
.stats-grid .vr {
  position: relative;
  display: inline-block;
  width: 1.5px;
  background: #d7d7d7;
  height: 120px;
}
.stat-card {
  width: 33.3333%;
  text-align: center;
  padding: 15px;
  background: white;
  transition: all 0.2s linear;
}
.stat-number {
  font-family: "Outfit", sans-serif;
  font-size: 75px;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  color: #11676a;
}

.stat-icon {
  margin-bottom: 10px;
}

.stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.11em;
  color: #253d4e;
}

/* Services Section */
.services {
  padding: 60px 0 100px;
  color: white;
}

.services-content {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 20px 0 40px;
}
.services .section-title {
  width: fit-content;
}
.services-text {
  width: 530px;
}

.services-buttons {
  display: flex;
  gap: 15px;
}

.swiper {
  width: 100%;
  margin-top: 40px;
}

.swiper-slide {
  padding: 10px;
  height: auto;
}
.service-card {
  background: white;
  border: 1px solid #c9c9c9;
  border-radius: 10px;
  transition: all 0.3s;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card-content {
  padding: 0 30px;
}

.service-card-btn {
  background: #f2f2f2;
  padding: 25px 30px;
}

a.service-link {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1em;
  display: inline-block;
  background: #fff;
  color: #18534c;
  padding: 18px 30px;
  border-radius: 5px;
  transition: all 0.3s linear;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
a.service-link .btn-icon {
  font-size: 30px;
}
a.service-link:hover {
  background: #18534c;
  color: #fff;
}

.service-icon {
  width: fit-content;
  padding: 10px;
  background: #22999a;
  border-radius: 0 0 12px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 55px;
}

.service-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
  color: #253d4e;
}

.service-card p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #363535;
  margin-bottom: 25px;
  line-height: 1.4em;
}

.services-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.services .cta-button.centered {
  margin-bottom: 0;
}

.swiper-button-prev,
.swiper-button-next {
  position: static !important;
  width: 50px !important;
  height: 50px !important;
  margin: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background-color: #11676a;
  border: 2px solid #11676a;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "" !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background-color: #fff0;
  color: #11676a;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 24px;
  height: 24px;
}

.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* Our Process Section */

.our-process .container-fluid {
  max-width: 1355px;
  margin: 0 0 0 auto;
  padding: 0 0 0 10px;
}

.our-process {
  padding: 100px 0 0;
  background: #11676a;
}

.process-header {
  display: flex;
  gap: 80px;
  align-items: center;
  margin-bottom: 40px;
}

.process-description {
  width: 630px;
}

.process-main {
  display: flex;
  gap: 20px;
  align-items: end;
}

.process-main .col-1 {
  width: 70%;
  padding-bottom: 100px;
}

.process-main .col-2 {
  width: 30%;
}

.process-main .main-steps .step h3 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
  color: #253d4e;
}
.process-main .main-steps .step p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #363535;
  margin-bottom: 25px;
  line-height: 1.4em;
}

.process-main .main-steps .step a.step-link {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.11em;
  line-height: 1em;
  display: inline-block;
  background: #fff;
  color: #18534c;
  padding: 18px 30px;
  border-radius: 5px;
  transition: all 0.3s linear;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.process-main .main-steps .step a.step-link .btn-icon {
  font-size: 30px;
}
.process-main .main-steps .step a.step-link:hover {
  background: #18534c;
  color: #fff;
}

.process-main .main-steps .step {
  width: 48%;
  border: 1px solid #c8c9c9;
  border-radius: 10px;
  padding: 30px;
}

.process-main .main-steps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.process-main .col-2 img {
  border-radius: 33px 0 0 0;
}

/* Pricing Section */
.pricing {
  padding: 100px 0;
  background: white;
}

.pricing-grid {
  display: flex;
  gap: 20px;
}

.pricing-card {
  text-align: center;
  padding: 0px 30px 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.pricing-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  width: 125px;
  height: 125px;
}

.pricing-card h3 {
  font-family: "Outfit", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 25px;
  color: #253d4e;
}
.pricing-card p {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #363535;
  margin-bottom: 25px;
  line-height: 1.4em;
}

.step-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.11em;
  line-height: 1em;
  background: #22999a;
  color: #fff;
  display: inline-block;
  padding: 16px 18px;
  border-radius: 15px;
}

.step-divider {
  position: relative;
}

.step-divider::before {
  content: "";
  display: inline-block;
  width: 280px;
  height: 3px;
  background: URL(./img/step-divider.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

/* CTA Section */
.cta-section {
  padding: 20px 0 100px;
  position: relative;
  overflow: hidden;
}

.cta-content {
  background-color: #11676a;
  padding: 40px 40px 40px 60px;
  border-radius: 45px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}

.cta-button.white {
  background: white;
  color: #11676a !important;
}

.cta-text {
  width: 55%;
}

.cta-illustration {
  width: 45%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.cta-illustration img {
  margin: -50px 0;
}

.cta-illustration .layers {
  position: absolute;
  left: -195px;
  bottom: -130px;
}

/* Testimonials Section */
.testimonials-sec {
  padding: 100px 0;
  background: rgba(217, 217, 217, 0.21);
}

.swiper-testimonials {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.swiper-testimonials .swiper-wrapper {
  padding-bottom: 25px;
}
.swiper-testimonials .swiper-pagination-bullet {
  background-color: #d9d9d9;
  opacity: 1;
  width: 10px;
  height: 10px;
}

.swiper-testimonials .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #22999a;
  transform: scale(1.4);
  opacity: 1;
}
.flex-container,
.testimonials-container {
  display: flex;
  gap: 20px;
  align-items: center;
}

.testimonials-container .sec-main-img {
  border-radius: 30px;
}

.testimonials-card .testimonials-icon img {
  width: 60px;
}
.testimonials-card .testimonials-icon {
  margin-bottom: 25px;
}

.testimonials-card .testimonials-card-content p {
  margin-bottom: 45px;
}

.testimonials-card .testimonials-person {
  display: flex;
  gap: 20px;
  align-items: center;
}

.testimonials-card .testimonials-person .testimonials-person-img-col img {
  width: 95px;
}

.testimonials-card .testimonials-person .testimonials-person-name {
  font-family: "Prata", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  color: #253d4e;
}

/* FAQ Section */
.faq {
  padding: 100px 0;
}

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

.faq-list {
  margin-top: 40px;
}

.faq-item:not(.faq-item:last-child) {
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 20px;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: #253d4e;
  text-align: left;
  cursor: pointer;
  transition: color 0.3s;
}

.faq-icon {
  font-size: 30px;
  color: #11676a;
  transition: transform 0.3s;
}

.faq-item.active .faq-question,
.faq-item.active .faq-icon,
.faq-question:hover {
  color: #22999a;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

/* Final CTA Section */
.final-cta {
  padding: 100px 0;
  text-align: center;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.final-cta-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.11em;
  color: #253d4e;
}

/* Footer */

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

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

.footer-container {
  display: flex;
  justify-content: space-between;
}

.footer-col {
  width: 30%;
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.11em;
  color: #253d4e;
}

.footer-copyright .copyright {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1em;
  color: #fff;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  border: 2px solid #253d4e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.social-links a svg {
  color: #253d4e;
  fill: #253d4e;
}

.social-links a:hover {
  background: #253d4e;
  border-color: #253d4e;
}

.social-links a:hover svg {
  color: white;
  fill: white;
}

.footer-container-fluid {
  overflow: hidden;
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer-container-fluid img {
  margin-bottom: -100px;
}

.footer-copyright {
  padding: 50px 0 20px;
  background: url("img/Group 80.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

/* Responsive Design */
@media screen and (max-width: 1024px) {
  .header-content {
    flex-wrap: wrap;
    gap: 15px;
  }
  .header-col {
    width: 48% !important;
  }
  .header-col:nth-child(2) {
    width: 100% !important;
  }
  .header-col:nth-child(1) {
    order: 1;
  }
  .logo {
    display: flex;
    justify-content: center;
  }
  span.logo-text {
    max-width: 280px;
  }

  .header-col:nth-child(3) .icon-list {
    justify-content: flex-start;
  }
  a.icon-list-item {
    font-size: 12px;
  }
  .nav-link {
    font-size: 12px;
  }

  .header-menu .nav {
    gap: 50px;
    padding: 0px 0 0px 50px;
  }

  .header-menu .nav a.nav-link.contact-btn {
    padding: 16px 50px;
  }

  .hero {
    padding: 290px 0px 280px;
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-title {
    font-size: 55px;
  }

  .hero-description {
    width: 730px;
  }

  .cta-button {
    font-size: 14px;
    padding: 16px 45px;
  }

  .about {
    padding: 60px 0;
  }

  .about-intro {
    flex-wrap: wrap;
  }

  .about-text,
  .about-image {
    width: 100%;
  }

  .section-label {
    font-size: 14px;
  }

  .section-label::after {
    width: 59px;
  }

  .section-title {
    font-size: 40px;
  }

  .section-description {
    font-size: 15px;
  }

  .about-image img.img2 {
    /* width: 370px; */
  }

  .about-image img.img-border-20 {
    border: 10px solid #fff;
  }

  .about-image img.img1 {
    /* width: 370px; */
  }

  .stat-number {
    font-size: 60px;
  }

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

  .stat-card {
    padding: 10px;
  }

  .services {
    padding: 60px 0;
  }

  .services-content {
    margin: 20px 0px;
    flex-wrap: wrap;
    gap: 0;
  }

  .services-text {
    width: 580px;
  }

  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }

  .service-icon {
    margin-bottom: 30px;
  }

  .service-icon img {
    width: 50px;
  }

  .service-card h3 {
    font-size: 25px;
  }

  .our-process {
    padding: 60px 0;
  }

  .process-header {
    flex-wrap: wrap;
    gap: 0;
    margin-bottom: 20px;
  }

  .process-description {
    width: 100%;
  }

  .process-main .col-1 {
    width: 100%;
    padding: 0;
  }

  .process-main .col-2 {
    display: none;
  }

  .process-main .main-steps .step {
    padding: 20px;
  }

  .process-main .main-steps .step h3 {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .process-main .main-steps .step p {
    margin-bottom: 15px;
  }

  .pricing {
    padding: 60px 0;
  }

  .section-description.centered {
    width: 650px;
  }

  .pricing-icon {
    margin: 0 auto 20px;
    width: 95px;
    height: 95px;
  }

  .pricing-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .pricing-card {
    padding: 0px 0px 0px;
  }

  .step-btn {
    font-size: 12px;
    padding: 12px 14px;
  }

  .step-divider::before {
    width: 150px;
  }

  .cta-section {
    padding: 20px 0 60px;
  }

  .cta-content {
    padding: 30px 30px 30px 30px;
    gap: 0px;
  }

  .cta-illustration .layers {
    width: 330px;
    height: 502px;
    bottom: -160px;
    left: -150px;
  }

  .testimonials-sec {
    padding: 60px 0;
  }

  .testimonials-card .testimonials-card-content p {
    margin-bottom: 30px;
  }

  .testimonials-card .testimonials-person .testimonials-person-img-col img {
    width: 75px;
  }

  .testimonials-card .testimonials-person .testimonials-person-name {
    font-size: 21px;
  }

  .faq {
    padding: 60px 0;
  }

  .faq-question {
    padding: 16px 0;
    font-size: 18px;
  }

  .faq-item:not(.faq-item:last-child) {
    margin-bottom: 0px;
  }

  .faq-icon {
    font-size: 25px;
  }

  .final-cta {
    padding: 60px 0;
  }

  .final-cta-btn {
    font-size: 14px;
  }

  .final-cta-btn img {
    width: 25px;
  }

  .footer-col h4 {
    font-size: 14px;
  }

  .social-links {
    gap: 5px;
  }

  .social-links a {
    width: 35px;
    height: 35px;
  }

  .footer-container-fluid img {
    margin-bottom: -75px;
  }

  .footer-copyright .copyright {
    font-size: 12px;
  }

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

  .footer-bottom {
    padding-top: 30px;
    padding-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .section-description.centered {
    width: 100%;
  }

  .pricing-grid {
    flex-wrap: wrap;
  }

  .footer-container {
    flex-direction: column;
  }

  span.logo-text {
    max-width: 230px;
  }

  a.icon-list-item {
    font-size: 10px;
  }

  .header-col {
    width: 100% !important;
  }

  .icon-list.sep .icon-list-item {
    padding: 5px 5px;
    border-right: none;
  }

  .icon-list {
    justify-content: center;
  }

  .header-col:nth-child(3) .icon-list {
    justify-content: center;
  }

  .header-menu {
    margin-top: 10px;
  }

  .hero {
    padding: 220px 0px 280px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-title br {
    display: none;
  }

  .hero-description {
    width: 100%;
  }

  .hero-description {
    font-size: 14px;
  }

  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .slider .list .item {
    height: 30px;
    position: absolute;

    gap: 10px;
    font-size: 15px;
  }

  .slider {
    height: 50px;
  }
  .slider .list {
    min-height: 50px;
    min-width: calc(320px * 6);
  }
  .slider .list .item {
    width: 400px;
    height: 30px;
    position: absolute;
    gap: 10px;
    font-size: 15px;
  }

  @keyframes autoRun {
    from {
      left: 100%;
    }
    to {
      left: calc(400px * -1);
    }
  }

  .about {
    padding: 40px 0 80px;
  }

  .section-label {
    font-size: 13px;
  }

  .section-label::after {
    width: 49px;
  }

  .section-title {
    font-size: 30px;
  }

  .section-title br {
    display: none;
  }

  .section-description {
    font-size: 14px;
  }

  .stat-number {
    font-size: 50px;
  }

  .stat-card {
    padding: 0px;
  }

  .stat-label {
    font-size: 10px;
  }

  .stats-grid .vr {
    display: none;
  }

  .stat-icon svg {
    width: 60px;
    height: 50px;
  }

  .about-image img.img2 {
    width: 215px;
  }

  .about-image img.img1 {
    width: 255px;
    margin-right: -110px;
    margin-bottom: -50px;
    z-index: 5;
  }

  .services {
    padding: 40px 0;
  }

  .swiper {
    width: 100%;
    margin-top: 0;
  }

  .swiper-slide {
    padding: 0;
    height: auto;
  }

  .service-card-content {
    padding: 0 20px;
  }

  .service-card h3 {
    font-size: 23px;
  }

  .service-card-btn {
    padding: 20px 20px;
  }

  .our-process {
    padding: 40px 0;
  }

  .our-process .container-fluid {
    padding: 0 10px;
  }

  .process-main .main-steps .step {
    width: 100%;
  }

  .process-main .main-steps .step h3 {
    font-size: 23px;
    margin-bottom: 20px;
  }

  .pricing {
    padding: 40px 0;
  }

  .section-description.centered {
    margin: 0 auto 30px;
  }

  .pricing-icon {
    margin: 0 auto 20px;
    width: 80px;
    height: 80px;
  }

  .step-divider {
    display: none;
  }

  .cta-section {
    padding: 0px 0 40px;
  }

  .cta-content {
    flex-direction: column;
  }

  .cta-text {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .cta-illustration {
    width: 100%;
  }

  .cta-illustration img {
    margin: 30px 0 -40px;
  }

  .testimonials-sec {
    padding: 40px 0;
  }

  .flex-container,
  .testimonials-container {
    flex-direction: column;
  }

  .w-50 {
    width: 100%;
  }

  .testimonials-card .testimonials-person .testimonials-person-img-col img {
    width: 60px;
  }

  .testimonials-card .testimonials-person .testimonials-person-name {
    font-size: 18px;
  }

  .stars img {
    width: 90px;
  }

  .faq {
    padding: 40px 0;
  }

  .faq-badge img {
    width: 39%;
  }

  .faq-list {
    margin-top: 0px;
  }

  .faq-question {
    padding: 12px 0;
    font-size: 16px;
  }

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

  .faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 0px;
  }

  .final-cta {
    padding: 40px 0;
  }

  .final-cta-btn {
    font-size: 12px;
  }

  .final-cta-btn img {
    width: 19px;
  }

  .cta-button {
    font-size: 12px;
    padding: 16px 30px;
  }

  .final-cta-buttons {
    gap: 10px;
  }

  .footer-col {
    width: 100%;
    justify-content: center;
  }

  .footer-container {
    gap: 15px;
  }

  span.logo-text img {
    max-width: 230px;
  }

  .footer-col:nth-child(1) {
    order: 1;
  }

  .footer-bottom .nav {
    display: flex !important;
    flex-wrap: wrap;
    gap: 25px;
    row-gap: 15px;
  }

  .footer-container-fluid img {
    margin-bottom: -40px;
  }

  .footer-container-fluid {
    margin-top: 20px;
  }
}