* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

.no-scroll {
  overflow: hidden;
}

/* Navbar */
nav {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  padding: 10px;
}

.inside-navbar {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 0 4rem;
}

.navbar-logo-section {
  display: flex;
  align-items: center;
  /* padding-left: 2.5rem; */
  width: 18%;
  /* border-right: 1px solid #e5e5e5; */
}

.navbar-logo-section .logo {
  width: 15rem;
}

.navbar-logo-section .logo img {
  width: 15rem;
}

.navbar-links {
  width: 48%;
}

.navbar-links ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.navbar-links ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: #222222;
}

.navbar-links ul li a.active {
  color: #ed3237;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  visibility: hidden;
  position: absolute;
  z-index: 10;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) scaleY(0.95);
  transform-origin: top;
  width: 800px;
  background-color: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
  opacity: 0;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
  transform: translateX(-50%) scaleY(1);
}


.dropdown-arrow {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
  transition: transform 0.8s ease-in-out;
}

.dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.product-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: white;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  text-align: center;
  color: #4b5563;
  text-decoration: none;
}

.product-cards:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.product-cards img {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
}

.menu-toggle {
  display: none;
}

.mobile-nav-items {
  display: none;
  flex-direction: column;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 1rem;
}

.mobile-nav-items li {
  margin-bottom: 1rem;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .navbar-list {
    display: none;
    /* Hide desktop menu by default on mobile */
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .navbar-container {
    width: 100%;
    padding: 1rem 0;
    box-shadow: none;
  }

  .navbar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
  }

  .nav-link {
    width: 100%;
    padding: 0.5rem 1rem;
  }

  .dropdown {
    width: 100%;
  }

  /* Show mobile toggle button */
  .menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #4b5563;
  }

  /* The mega menu on mobile */
  .dropdown-menu {
    position: static;
    transform: none;
    width: 100%;
    margin: 0.5rem 0;
    padding: 0;
    box-shadow: none;
    border: none;
  }

  .dropdown:hover .dropdown-menu {
    transform: none;
  }

  /* The product grid on mobile */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    padding: 0 1rem;
  }
}

.call-section {
  display: flex;
  justify-content: center;
  align-items: center;
}

.call-section h6 {
  display: flex;
  gap: 5px;
  font-size: 17px;
  font-weight: 500;
  color: #848484;
}

.call-section h6 i {
  color: #ed3237;
  font-size: 22px;
}

.hamburger-menu {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  /* padding: 5px; */
  margin-left: 1.5rem;
}

.hamburger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  margin-bottom: 6px;
  background-color: #222222;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-nav-sidebar {
  list-style: none;
  margin: 0;
  padding: 3rem 2rem;
  background-color: #222222;
  color: #ffffff;
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  max-width: 85%;
  height: 100%;
  box-shadow: -4px 0 15px rgba(0, 0, 0, 0.25);
  z-index: 1001;
  transition: right 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-sizing: border-box;
  overflow-y: auto;
}

.mobile-nav-sidebar li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  padding: 10px 0;
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease, background-color 0.3s ease;
}

.mobile-nav-sidebar li a:hover {
  color: #ed3237;
  background-color: rgba(247, 0, 0, 0.1);
}

.mobile-nav-sidebar.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 22px;
  color: #ffffff;
  cursor: pointer;
  z-index: 1002;
}

/* hero-section */
.hero-section {
  width: 100%;
  position: relative;
}

.banner-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.banner-container img {
  width: 100%;
  display: block;
}

.banner-container .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}

.swipe-btn {
  width: 50px;
  height: 50px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  transform: translateY(20px);
  background: rgba(255, 255, 255, 0.15);
  transition: 0.2s ease;
  backdrop-filter: blur(10px);
}

.swipe-btn::before,
.swipe-btn::after {
  font-size: 20px;
  color: #ffffff;
}


/* about-section */
.about-section {
  width: 100%;
  padding: 3rem 4rem;
  background: #f9f9f9;
}

.about-heading {
  margin-bottom: 2rem;
  text-align: center;
  color: #222222;
}

.about-heading::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  margin: 0.5rem auto 0;
}

.introduce {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  font-weight: 400;
  margin-bottom: 2rem;
}

.introduce strong {
  color: #ed3237;
}

.ins-about {
  display: flex;
  justify-content: space-around;
  align-items: start;
  width: 100%;
}

.left-about {
  width: 40%;
}

.left-about img {
  max-width: 100%;
  object-fit: cover;
}

.right-about {
  width: 50%;
  line-height: 25px;
  font-family: "Rajdhani", sans-serif;
}

.right-about h3 {
  margin-top: 1rem;
  margin-bottom: 18px;
  color: #ed3237;
  font-size: 24px;
}

.right-about p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
}

.feature li {
  list-style: none;
  font-weight: 500;
  font-size: 15px;
}

/* product-section */
.product-section {
  /* max-width: 1200px; */
  margin: auto;
  padding: 4rem 10rem;
  background-image: radial-gradient(#ddd 8%, #fff 9%);
  background-position: 0 0;
  background-size: 21px 21px;
}

.product-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.product-section h2 {
  font-size: 2rem;
  /* margin-bottom: 15px; */
  border-left: 4px solid #ed3237;
  padding-left: 8px;
}

.product-section a {
  text-decoration: none;
  color: #222222;
  font-size: 18px;
  font-weight: 500;
}

.product-section a:hover i {
  transform: translateX(5px);
  transition: .3s ease-in;
}

.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}

.product-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}

.product-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transition: 0.3s ease;
}

.product-card:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  color: #fff;
  margin: 0;
  font-size: 1.3rem;
}

.overlay p {
  color: #ddd;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}

#view-btn {
  color: #ffffff;
  font-weight: 500;
  margin-top: 10px;
  font-size: 16px;
}

/* why choose us */
.services {
  position: relative;
  margin: auto;
  padding: 4rem 8rem;
  align-items: center;
  /* background: url(/assets/img/banners/b2.jpg); */
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  z-index: 1;
}

.services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.6); */
  z-index: -1;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  position: relative;
  /* display: inline-block; */
  text-align: center;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #e63946;
  /* red underline */
  margin: 0.5rem auto 0;
}

.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 2rem;
}

.service-box {
  background: #f3eeee;
  padding: 2rem;
  border-radius: 10px;
  text-align: left;
  transition: all 0.3s ease;
}

.service-box:hover {
  /* background: #e95360; */
  background: linear-gradient(to bottom, rgba(255, 100, 100, 0.9), rgba(255, 0, 0, 0.9));
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.service-box:hover h3 {
  color: #f9f9f9;
}

.service-box:hover img {
  filter: brightness(0) invert(1);
  color: #fff;
}

.service-box:hover p {
  color: #f1f1f1;
}

.service-icon {
  font-size: 2rem;
  color: #e63946;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-box img {
  width: 60px;
  filter: invert(23%) sepia(96%) saturate(7482%) hue-rotate(0deg) brightness(93%) contrast(101%);
}

.service-box h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #e63946;
  text-align: center;
}

.service-box p {
  font-size: 17px;
  color: black;
  line-height: 1.6;
  font-weight: 500;
}

/* testimonial-section */
.testimonials-section {
  position: relative;
  text-align: center;
  padding: 100px 20px;
  color: #fff;
  overflow: hidden;
}

/* background image layer */
.parallax-bg {
  position: absolute;
  inset: 0;
  background: url('../img/all-images/testimonials.jpg') center / cover no-repeat;
  transform: translateY(0);
  transition: transform 0.2s linear;
  z-index: 0;
}

.testimonials-section .title,
.testimonials-section .testimonial-box {
  position: relative;
  z-index: 2;
}

.title {
  color: #fff;
  margin-bottom: 40px;
  text-align: center;
}

.testimonials-section .title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 60px;
}

.testimonial-box {
  background: #fff;
  color: #000;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 60px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
  font-weight: 500;
  color: #1e1e1e;
}

.author {
  font-weight: 600;
  font-size: 1rem;
  color: #1e1e1e;
}


/* footer */
/* creative footer styles */
.creative-footer {
  background: linear-gradient(180deg, #1b1b1b 0%, #111111 100%);
  color: #e9eef2;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  position: relative;
  overflow: hidden;
}

.creative-footer a {
  color: #f1f1f1;
  text-decoration: none;
}

.creative-footer a:visited {
  color: #f1f1f1;
}

.creative-footer a:hover {
  color: #ff6363;
}

.fcol.links {
  padding-left: 50px;
  line-height: 1.9rem;
}


/* inner container */
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
}

/* grid layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
  align-items: start;
}

/* each column base */
.fcol {
  padding: 0.25rem 0;
}

/* brand column */
.brand .footer-logo {
  width: 210px;
  height: auto;
  object-fit: contain;
  display: block;
  margin-bottom: 0.8rem;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.4));
}

.brand .about {
  font-size: 14px;
  line-height: 1.6;
  color: #d7dfe3;
  margin-bottom: 1rem;
}

/* social icons */
.social {
  display: flex;
  gap: 0.5rem;
}

.si {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), transparent);
  border-radius: 10px;
  transition: transform .22s ease, box-shadow .22s ease;
}

.si i {
  font-size: 16px;
  color: #fff;
}

.si:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.45);
}

/* headings */
.fcol h3 {
  margin: 0 0 0.9rem;
  font-size: 18px;
  color: #fff;
  letter-spacing: .2px;
}

/* contact/address */
.addr p {
  margin: .5rem 0;
  font-size: 14px;
  color: #dbe6ea;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.addr p i {
  font-size: 18px;
  margin-top: 3px;
  color: #f6f9fa;
}

/* quick links */
.links ul {
  padding: 0;
  margin: 0 0 0.8rem 0;
}

.links li {
  list-style: none;
  margin: 0.45rem 0;
}

.links a {
  color: #d7e3e6;
  text-decoration: none;
  font-size: 14px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  transition: color .18s ease, transform .18s ease;
}

.links a:hover {
  color: #ff6363;
  transform: translateX(4px);
}

/* facebook embed */
.facebook .fb-wrap {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
  border-radius: 10px;
  padding: 6px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
}

/* footer bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.25rem;
  margin-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.copy {
  font-size: 13px;
  color: #bfcfd3;
  margin: 0;
}

.footer-policy {
  display: flex;
  gap: 1rem;
}

.footer-policy a {
  color: #bfcfd3;
  text-decoration: none;
  font-size: 13px;
}

.footer-policy a:hover {
  color: #ff7b7b;
  transform: translateY(-2px);
}

/* small screen responsiveness */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .footer-inner {
    padding: 1.25rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-wave svg {
    height: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .75rem;
  }

  .brand .footer-logo {
    width: 140px;
  }

  .fb-wrap iframe {
    height: 260px;
  }
}

/* accessibility helpers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

@media (max-width: 1100px) {
  .inside-navbar {
    padding: 0 3rem;
  }

  .navbar-logo-section .logo img {
    width: 13rem;
  }

  .about-section {
    padding: 3rem 2rem;
  }

  .right-about h3 {
    margin-top: 1rem;
    margin-bottom: 15px;
  }

  .product-section {
    padding: 3rem 5rem;
  }

  .product-section a {
    font-size: 16px;
  }

  .services {
    padding: 3rem 3rem;
  }

  .services-container {
    gap: 20px;
  }

  .testi-section {
    padding: 3rem 3rem;
  }

  .footer-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  @media (max-width: 1024px) {
    .inside-navbar {
      padding: 0 1rem;
    }

    .navbar-logo-section .logo img {
      width: 12rem;
    }

    .navbar-links {
      width: 55%;
    }
  }
}

@media (max-width: 900px) {
  .navbar-links {
    display: none;
  }

  .swipe-btn {
    width: 40px;
    height: 40px;
  }

  .ins-about {
    flex-direction: column;
  }

  .left-about {
    width: 70%;
  }

  .right-about {
    margin-top: 2rem;
    width: 90%;
  }

  .product-section {
    padding: 3rem 4rem;
  }

  .product-section h2 {
    font-size: 1.5rem;
  }

  .grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services {
    padding: 3rem 2rem;
  }

  .services-container {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-box img {
    width: 55px;
  }

  .service-box h3 {
    font-size: 1rem;
  }

  .service-box p {
    font-size: 16px;
  }

  .hamburger-menu {
    display: block;
  }

  .testi-section {
    padding: 3rem 2rem;
  }

  .testi-right {
    width: 40%;
  }

  .testi-right img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .call-section h6 {
    font-size: 15px;
    margin-left: 4rem;
  }

  .call-section h6 i {
    font-size: 20px;
  }

  .introduce {
    width: 100%;
    font-size: 14px;
  }

  .left-about {
    width: 90%;
  }

  .product-section {
    padding: 3rem 3rem;
  }

  .ins-testi-section {
    flex-direction: column-reverse;
  }

  .testi-left {
    width: 100%;
  }

  .testi-right {
    width: 70%;
  }
}

@media (max-width: 650px) {

  .footer-container {
    gap: 1rem;
  }
}

@media (max-width: 600px) {

  .swipe-btn {
    display: none;
  }

  .inside-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
  }

  .call-section {
    display: none;
  }

  .left-about {
    width: 100%;
  }

  .right-about {
    width: 100%;
  }

  .product-section {
    padding: 3rem 2rem;
  }

  .services {
    padding: 3rem 1rem;
  }

  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .footer-section {
    flex: 0 1 140px;
  }
}

@media (max-width: 500px) {
  .service-box {
    padding: 1rem 20px;
  }

  .service-box img {
    width: 50px;
  }

  .swiper2 {
    padding: 20px 20px;
  }

  .testi-image {
    width: 80px;
    height: 80px;
  }

  .testi-image img {
    width: 70px;
    height: 70px;
  }

  .testi-in i {
    font-size: 50px;
  }
}

@media (max-width: 425px) {
  .inside-navbar {
    padding: 0 1rem;
  }

  .hamburger-menu span {
    width: 25px;
    height: 3px;
    margin-bottom: 5px;
  }

  .about-section {
    padding: 3rem 1.2rem;
  }

  .product-section {
    padding: 3rem 1rem;
  }

  .grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .services-container {
    grid-template-columns: repeat(1, 1fr);
  }

  .testi-section {
    padding: 3rem 1rem;
  }

  .testi-right {
    width: 100%;
  }

  .testi-in p {
    font-size: 13px;
  }
}

@media (max-width: 375px) {
  .navbar-logo-section .logo img {
    width: 10rem;
  }

  .hamburger-menu span {
    margin-bottom: 4px;
  }

  .about-heading {
    font-size: 25px;
  }

  .custom-footer {
    padding: 0 1rem;
  }

  .footer-container {
    padding: 0 0;
  }

  .footer-section {
    flex: none;
    width: 100%;
  }

  /* .contact-form iframe {
    width: 320px;
  } */
}

@media (max-width: 320px) {
  .contact-form iframe {
    width: 290px;
  }
}

.about-section p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
  font-family: Montserrat, sans-serif;
}

.right-about ul {
  column-count: 2;
  column-gap: 80px;
}

.right-about ul li {
  font-size: 18px;
}

.funfact_section {
  z-index: 1;
  position: relative;
}

.funfact_section.bg_blue {
  background-color: #0c21ca;
}

.funfact_section.bg_gray {
  background-color: #e9edf4;
  padding-top: 120px;
  padding-bottom: 120px;
}

.funfact_section .path_bg {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 80%;
  position: absolute;
  background-color: #eef2f6;
  clip-path: polygon(50% 40%, 66% 0, 84% 40%, 100% 0, 100% 100%, 0 100%, 0 0, 15% 40%, 33% 1%);
}

.funfact_badge {
  bottom: 0;
  left: 50%;
  line-height: 1;
  display: block;
  font-size: 16px;
  font-weight: 700;
  padding: 12px 39px;
  position: absolute;
  text-decoration: none;
  color: #002659;
  text-transform: capitalize;
  transform: translateX(-50%);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.funfact_badge:hover {
  text-decoration: underline;
}

.project_done {
  position: relative;
}

.project_done span {
  line-height: 1;
  font-weight: 700;
  font-size: 450px;
  font-family: "Poppins", sans-serif;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #ffffff;
  -webkit-text-fill-color: transparent;
}

.project_done small {
  top: 50%;
  right: 0;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  position: absolute;
  font-family: "Poppins", sans-serif;
  transform: translateY(-50%);
}

.funfact_list_wrap {
  margin: -35px;
}

.funfact_list_wrap>li {
  width: 50%;
  padding: 35px;
}

.funfact_item {
  display: flex;
  align-items: center;
}

.funfact_item .item_icon {
  width: 104px;
  height: 104px;
  flex: 0 0 104px;
  margin-right: 30px;
  border-radius: 100%;
  align-items: center;
  display: inline-flex;
  justify-content: center;
  transition: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  border: 2px solid #2236d7;
}

.funfact_item:hover .item_icon {
  border-color: #ffffff;
}

.funfact_item h3 {
  line-height: 1;
  color: #6faae7;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  text-decoration: underline;
}

.funfact_item h4 {
  line-height: 1;
  font-size: 60px;
  font-weight: 600;
  margin-bottom: 0;
}

.funfact_item h4 sub {
  bottom: 0;
  font-size: 20px;
  font-weight: 400;
  color: #fccc00;
}

/* Funfact Item 2 - Start */
.funfact_updown_style {
  margin: -15px;
}

.funfact_updown_style>.col {
  padding: 15px;
}

.funfact_updown_style>.col:nth-child(even) {
  padding-top: 60px;
}

.funfact_item_2 {
  z-index: 1;
  padding: 0 30px;
  text-align: center;
  position: relative;
}

.funfact_item_2 .item_icon {
  width: 80px;
  height: 80px;
  align-items: center;
  border-radius: 100%;
  margin-bottom: 35px;
  display: inline-flex;
  justify-content: center;
  background-color: #ffffff;
}

.funfact_item_2 .counter_text {
  left: 0;
  right: 0;
  top: 85px;
  z-index: -1;
  color: #dfe6ec;
  line-height: 0.8;
  font-size: 120px;
  font-weight: 700;
  position: absolute;
  font-family: "Poppins", sans-serif;
}

.item_title {
  font-weight: 800;
  color: #002659;
  font-family: "Poppins", sans-serif;
  font-size: 25px;
}