@font-face {
  font-family: "robo-flex";
  src: url("../font/robo-flex.ttf");
}
@font-face {
  font-family: "gelica-medium";
  src: url("../font/gelica-medium.otf");
}
@font-face {
  font-family: "gelica-bold";
  src: url("../font/gelica-semibold.woff2");
}
@font-face {
  font-family: "futura-bold";
  src: url("../font/Futura-Bold.ttf");
}
@font-face {
  font-family: "futura-medium";
  src: url("../font/Futura-Medium.ttf");
}
@font-face {
  font-family: "futura-light";
  src: url("../font/Futura-Light.ttf");
}
:root {
  --primary-1: #2bb351;
  --primary-2: #b7d433;
  --secondary-1: #1a134e;
  --secondary-2: #49217a;
  --text: "";
  --black: #000;
  --white: #fff;
  --dark-neutral: #282728;
  --dark-neutral-80: #282728cc;
  --dark-neutral-50: #28272880;
  --dark-neutral-30: #2827284c;
  --dark-neutral-20: #1e1f1e33;
  --dark-neutral-05: #1c1c1d0d;
  --light-neutral: #ffffff;
  --light-neutral-80: #ffffffcc;
  --light-neutral-50: #ffffff80;
  --light-neutral-30: #ffffff4c;
  --light-neutral-20: #ffffff33;
  --light-neutral-05: #ffffff0d;
}
* {
  margin: 0;
  padding: 0;
  font-family: "futura-medium";
}
.font-futura {
  font-family: "futura-bold";
}
.font-gelica {
  font-family: "futura-bold";
}
p {
  font-size: 18px;
}
.bg-gradient-primary {
  background: linear-gradient(var(--primary-1), var(--primary-2)) !important;
  color: var(--light-neutral) !important;
}
.primary-nav-text {
  color: var(--primary-1) !important; /* Use the primary text color */
  border-bottom: 2px solid var(--primary-1);
  font-weight: 600;
}
.secondary-nav-text {
  /* color: var(--light-neutral); */
  color: #000;
}
.nav-text .secondary-nav-text {
  /* color: var(--secondary-1);  */
  /* Use the secondary text color */
  color: #000;
}
/* Primary Colors */
.primary-button {
  background-color: var(--primary-1);
  color: var(--white);
}

.primary-text {
  color: var(--primary-2);
}

/* Secondary Colors */
.secondary-button {
  background-color: var(--secondary-1);
  color: var(--white);
}

.secondary-text {
  color: var(--primary-1);
}
.dark-background {
  background-color: var(--dark-neutral);
  color: var(--light-neutral);
}
.light-background {
  background-color: var(--light-neutral);
  color: var(--dark-neutral);
}
/* Dark Neutral Colors */
.dark-text {
  color: var(--dark-neutral) !important;
}
.primary-gradient {
  background: linear-gradient(var(--primary-1), var(--primary-2));
  color: var(--light-neutral);
}
.secondary-gradient {
  background: linear-gradient(var(--secondary-1), var(--secondary-2));
  color: var(--light-neutral);
}
.dark-background-80 {
  background-color: var(--dark-neutral-80);
  color: var(--white);
}

.dark-background-50 {
  background-color: var(--dark-neutral-50);
  color: var(--white);
}

.dark-background-30 {
  background-color: var(--dark-neutral-30);
  color: var(--white);
}

.dark-background-20 {
  background-color: var(--dark-neutral-20);
  color: var(--white);
}

.dark-background-05 {
  background-color: var(--dark-neutral-05);
  color: var(--white);
}

/* Light Neutral Colors */
.light-text {
  color: var(--light-neutral);
}

.light-background-80 {
  background-color: var(--light-neutral-80);
  color: var(--dark-neutral);
}

.light-background-50 {
  background-color: var(--light-neutral-50);
  color: var(--dark-neutral);
}

.light-background-30 {
  background-color: var(--light-neutral-30);
  color: var(--dark-neutral);
}

.light-background-20 {
  background-color: var(--light-neutral-20);
  color: var(--dark-neutral);
}

.light-background-05 {
  background-color: var(--light-neutral-05);
  color: var(--dark-neutral);
}
.text-primary {
  color: var(--primary-1) !important;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  padding: 0;
  font-family: "robo-flex";
}
.progressbar {
  position: fixed;
  top: 112px;
  z-index: 99;
  background: var(--primary-1);
  width: 0;
  height: 2px;
  transition: width 0.1s;
}
.section {
  padding-top: 40px;
  padding-bottom: 40px;
}
.main-menu {
  margin-top: 2.95rem;
  background-color: rgba(255, 255, 255, 0.15);
}
.bg-whitesmoke {
  background-color: #d4e9e2 !important;
}
.bg-white-smoke {
  background-color: whitesmoke !important;
}
.logo {
  width: 100px;
  object-fit: scale-down;
}
.slider {
  background-image: url("../images/__slide4.jpg");
  background-size: cover;
  background-attachment: fixed;
  /* background-position: center center; */
  background-position: 50%;
  width: 100%;
  height: 100vh;
  padding-top: 3rem;
}
.slider .carousel-item {
  height: 100vh;
  background: transparent;
  position: relative;
}
.slide_animate_text {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 1s ease,
    transform 1s ease;
}

.slider .carousel-item .text-box {
  height: 100vh;
  display: flex;
  padding: 20px;
  flex-direction: column;
  margin-right: auto;
}
.slider .carousel-item .text-box-full {
  width: 100%;
  float: left;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}
.slider .carousel-item .text-box-right {
  width: 65%;
  float: right;
  text-align: right;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
}
.slider .carousel-item .text-box-left {
  width: 65%;
  float: right;
  text-align: left;
  justify-content: center;
  align-items: flex-start;
}
.slider .carousel-item .text {
  /* font-size: 40px; */
  font-size: 34px;
  font-weight: 400;
  font-family: "futura-bold";
  color: var(--dark-neutral);
}
.slider .carousel-item .smtext {
  font-size: 24px;
  font-weight: 400;
  font-family: "futura-bold";
  color: var(--dark-neutral);
}
.slide_animate_text.in {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 1024px) {
  .slider .carousel-item .text-box {
    padding-right: 50px; /* Adjust padding for medium screens */
    width: 75%;
  }
}
/* Media query for medium-sized screens */
@media (max-width: 768px) {
  .slider .carousel-item .text-box {
    padding-right: 50px; /* Adjust padding for medium screens */
  }

  .slider .carousel-item .text {
    font-size: 40px; /* Adjust font size for medium screens */
    font-weight: 700;
  }
}

/* Media query for smaller screens */
@media (max-width: 576px) {
  .slider .carousel-item .text-box {
    padding-right: 20px; /* Adjust padding for smaller screens */
    width: 100%;
    align-items: center;
    text-align: center;
  }

  .slider .carousel-item .text {
    font-size: 32px; /* Adjust font size for smaller screens */
  }
}

/* Media query for even smaller screens (e.g., mobile) */
@media (max-width: 375px) {
  .slider .carousel-item .text-box {
    padding-right: 10px; /* Adjust padding for very small screens */
    text-align: center;
    width: 100%;
    align-items: center;
  }

  .slider .carousel-item .text {
    font-size: 32px; /* Adjust font size for very small screens */
    font-weight: 400; /* Optionally adjust font weight */
  }
}
.slider .btn-bg-leefo {
  font-family: "futura-medium";
  background: linear-gradient(var(--primary-1), var(--primary-2));
  /*background-color: var(--primary-1);  Button Background Color */
  color: #fff; /* Button Text Color */
  padding: 18px 26px;
  border-radius: 10px;
  font-size: 15px; /* Button Font Size */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-size: 20px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
}
.slider .btn-bg-leefo i {
  margin-left: 10px;
}
.slider .btn-bg-leefo:hover {
  background-color: var(--primary-1); /* Hover Background Color */
  transform: scale(1.05) !important; /* Hover Scale Effect */
}
@media (max-width: 768px) {
  .slider .btn-bg-leefo {
    padding: 15px 24px; /* Adjust padding for smaller screens */
    font-size: 14px; /* Adjust font size for smaller screens */
    margin-left: inherit;
  }
}

.animation {
  height: 50px;
  overflow: hidden;
  margin-left: 1rem;
}

.animation > div > div {
  padding: 0.25rem 0.75rem;
  height: 2.81rem;
  margin-bottom: 2.81rem;
  display: inline-block;
}

.animation div:first-child {
  animation: text-animation 8s infinite;
}

.animation div.first {
  background-color: #20a7d8;
}
.animation div.second {
  background-color: #cd921e;
}
.animation div.third {
  background-color: #c10528;
}

@keyframes text-animation {
  0% {
    margin-top: 0;
  }
  10% {
    margin-top: 0;
  }
  20% {
    margin-top: -5.62rem;
  }
  30% {
    margin-top: -5.62rem;
  }
  40% {
    margin-top: -11.24rem;
  }
  60% {
    margin-top: -11.24rem;
  }
  70% {
    margin-top: -5.62rem;
  }
  80% {
    margin-top: -5.62rem;
  }
  90% {
    margin-top: 0;
  }
  100% {
    margin-top: 0;
  }
}

.heading {
  font-family: "futura-bold";
  position: relative;
  font-size: 48px;
  line-height: 1.26;
  letter-spacing: 0.01em;
}
.heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 20px;
  height: 5px;
  background-color: var(--primary-1);
}

.heading-1 {
  font-family: "futura-bold";
  position: relative;
  font-size: 48px;
  line-height: 1.26;
  letter-spacing: 0.01em;
}
.sub-heading {
  font-family: "futura-bold";
  font-size: 20px;
  min-height: 36px;
  margin-bottom: 8px;
}
.tagline {
  font-family: "futura-medium";
  margin-top: 8px;
  font-size: 18px;
}
.nav-link {
  transform: 2s ease-in;
  font-family: "futura-bold";
}
.nav-link:hover {
  color: var(--primary-1) !important;
  border-bottom: 2px solid var(--primary-1);
  /* font-weight: 600; */
}
.notification {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-top: 8px;
  padding-bottom: 8px;
  /* background-color: var(--secondary-1);
  color: var(--light-neutral); */
  background-color: rgba(255, 255, 255, 0.15);
  /* background-color: var(--light-neutral); */
  color: var(--dark-neutral);
  overflow: hidden;
  transition-property: opacity;
  transition-duration: 1s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  /* border-bottom: 1px solid var(--primary-1); */
  border-bottom: 1px solid transparent;
}
.notification marquee a {
  color: var(--light-neutral);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  padding-left: 72px;
}
.notification marquee a::before {
  content: "\F189";
  font-family: "bootstrap-icons";
  position: relative;
  margin-right: 10px;
  top: 3px;
}

.notification a {
  text-decoration: none;
  color: var(--dark-neutral);
  font-weight: 700;
}
.notification ul {
  list-style: none;
  padding-inline-start: 0;
  margin-bottom: 0;
}
.notification ul.right {
  float: right;
}
.notification ul li {
  display: inline;
  margin-right: 10px;
}
.notification ul li img {
  width: 40px;
  height: 30px;
  object-fit: scale-down;
}
@media (max-width: 768px) {
  .notification ul li {
    margin-right: 5px;
  }

  .notification ul li:last-child {
    margin-right: 0;
  }
}
/* How we do */
.how_we_do {
  padding: 50px 0;
  background-color: #d4e9e2;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.how_we_do .img {
  height: 100px;
  width: 100px;
  border-radius: 50%;
  padding: 15px;
  background-color: var(--primary-1);
  /* border: 1px solid var(--dark-neutral-20); */
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}
.how_we_do .img img {
  filter: brightness(20);
}
.how_we_do .feature-box {
  text-align: center;
  min-height: 300px;
  margin-bottom: 1rem;
}
.feature-box .content p {
  font-size: 16px;
}
@media (max-width: 768px) {
  .how_we_do {
    height: 100%;
  }
}
/* What we do */
.what_we_do {
  position: relative;
}
/* .what_we_do .heading::after {
  background-color: var(--primary-1) !important;
} */
.what_we_do ul li {
  font-size: 19px;
  font-weight: 500;
}
.what_we_do #banners {
  width: 100%;
  /* height: calc(100vh - 20vh); */
}
.what_we_do .card img {
  height: 200px;
  margin: auto;
  display: block;
}
#banners .screen {
  height: 100vh;
  position: relative;
}
.screen.parallax {
  background-attachment: fixed;
  background-size: cover;
}
.what_we_do #banners .carousel-item {
  height: calc(100vh - 20vh);
  background-size: cover;
  position: relative;
  padding: 0 20px;
}
.what_we_do #banners .text-box {
  width: calc(100% - 20%);
  height: 100%;
  position: relative;
  z-index: 9;
  padding: 0 20px;
}
.what_we_do #banners .carousel-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(var(--dark-neutral-80), var(--dark-neutral-05));
}
.what_we_do #banners ul {
  height: calc(100vh - 20vh);
  /* width: calc(100% - 20%); */
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.what_we_do #banners li {
  color: var(--light-neutral);
  font-size: 36px;
  font-family: "futura-bold";
  padding-left: 30px;
}
.what_we_do .card {
  font-family: "futura-bold";
}
.what_we_do .card .card-body {
  margin: 50px 0;
}
.what_we_do .card h4 {
  position: relative;
}
.what_we_do .card h4 b {
  /* margin-left: 5%; */
  margin-left: 0;
  font-size: 1.75rem;
}
.what_we_do .card h4 > div {
  display: inline-block;
  position: relative;
}
.what_we_do .card h4 > div span {
  color: var(--dark-neutral);
  font-size: 5rem;
  position: relative;
  transform: translate(-50%, -50%);
}
.what_we_do .card h4 > div span:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-1);
}
.what_we_do .card h4 > div span.purple:nth-child(1) {
  color: transparent;
  -webkit-text-stroke: 2px var(--primary-1);
}

.what_we_do .card h4 > div span:nth-child(2) {
  color: var(--primary-1);
  animation: water_animate 4s ease-in-out infinite;
  position: absolute;
  bottom: -48px;
  left: 50%;
}
.what_we_do .card h4 > div span.purple:nth-child(2) {
  color: var(--primary-1);
}
@keyframes water_animate {
  0%,
  100% {
    clip-path: polygon(0% 45%, 16% 44%, 33% 50%, 54% 60%, 70% 61%, 84% 59%, 100% 52%, 100% 100%, 0% 100%);
  }

  50% {
    clip-path: polygon(0% 60%, 15% 65%, 34% 66%, 51% 62%, 67% 50%, 84% 45%, 100% 46%, 100% 100%, 0% 100%);
  }
}
@media (max-width: 768px) {
  #banners .screen {
    height: 80vh;
  }
  .what_we_do #banners ul {
    width: 100%;
  }
  .what_we_do #banners li {
    font-size: 20px;
    padding-left: 5px;
  }
  .what_we_do #banners .text-box {
    width: 100%;
  }
  .what_we_do .card h4 > span {
    font-size: 3rem;
  }
  .what_we_do .card h4 > span:nth-child(2) {
    bottom: -29px;
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .what_we_do .card h4 > span {
    font-size: 2em;
  }
  .what_we_do .card h4 > span:nth-child(2) {
    bottom: -41px;
  }
}
/* Product */
.product-slider {
  margin-top: 50px;
  position: relative;
}
.product-slider .owl-carousel {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}
.product-slider .product {
  border: 1px solid var(--dark-neutral-20);
  margin: 0 10px;
  min-height:400px;
}
.product-slider .product .card-title {
  font-size: 18px;
  text-align: center;
}
.product-slider .product img {
  /*height: 375px;*/
  height: 270px;
  width: 100%;
  /*object-fit:cover;*/
  object-position:center;
  /* object-fit: cover; */
  object-fit: scale-down;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
.product-slider .custom-prev,
.product-slider .custom-next {
  position: relative;
  font-size: 24px;
  height: 50px;
  width: 50px;
  border: 1px solid var(--dark-neutral-50);
  border-radius: 50%;
  transition: all 0.5s ease;
  /* background-color: var(--light-neutral); */
  background-color: transparent;
}
.product-slider .custom-prev:hover,
.product-slider .custom-next:hover {
  background-color: var(--primary-1);
  color: var(--light-neutral);
}
.product-slider .custom-nav {
  margin-top: 0px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 40%;
  z-index: 9;
  width: 100%;
}
.product-slider .custom-next {
  right: -10px;
}

@media (max-width: 768px) {
  .product-slider .product-slider-track .product img {
    height: 300px;
  }
}
/* Logo SLider */
.logo-slider {
  margin: 50px 0;
  background-color: var(--light-neutral-20);
  position: relative;
}
.logo-slider .logo-slider-track {
  width: 100%;
  display: flex;
  gap: 3em;
  overflow: hidden;
}
.logo-slider .logo-slider-track .client-logo {
  border: 1px solid var(--dark-neutral-20);
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
.logo-slider .logo-slider-track .client-logo img {
  object-fit: scale-down;
  height: 200px;
  /* //animation: logo-scroll 60s linear infinite; */
}
.logo-slider .custom-prev,
.logo-slider .custom-next {
  position: absolute;
  top: 35%;
  font-size: 28px;
  z-index: 99;
  height: 40px;
  width: 40px;
  border: 1px solid var(--dark-neutral-50);
  border-radius: 50%;
  background-color: var(--light-neutral);
}
.logo-slider .custom-prev {
  left: -10px;
}
.logo-slider .custom-next {
  right: -10px;
}

@media (max-width: 768px) {
  .logo-slider .logo-slider-track .client-logo img {
    height: 100px;
  }
  .product-slider .loproductgo-slider-track .product img {
    height: 100px;
  }
}
@keyframes logo-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translatex(-1000%);
  }
}
/* Testimony */
.testimonial {
  position: relative;
  font-family: "futura-bold";
}
#testimonialCarousel .carousel-item .card {
  background-color: #d4e9e2;
}
#testimonialCarousel .carousel-item .card-text {
  font-size: 18px;
  font-family: "futura-bold";
}
#testimonialCarousel .carousel-item .card-image {
  height: 100px;
  width: 100px;
  margin: auto;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  margin-bottom: 1rem;
}
/* Connect */
.connect {
  position: relative;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 100px;
}
.connect .content {
  width: calc(100% - 20%);
  margin: auto;
}
.connect .social {
  position: relative;
  list-style-type: none;
  padding-inline-start: 0;
  margin: 40px 0;
}
.connect .social li {
  display: inline-flex;
  gap: 2rem;
  margin: auto;
  text-align: center;
}
.connect .social li a {
  text-decoration: none;
  color: var(--dark-neutral);
  font-size: 28px;
  border-radius: 50%;
  padding: 10px;
  border: 1px solid var(--dark-neutral-30);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 20px;
  transition: all 0.5s ease;
}
.connect .social li a:hover {
  background-color: var(--primary-1);
  color: var(--light-neutral);
}
@media (max-width: 768px) {
  .connect {
    margin: 20px 0;
  }
  .connect .social {
    margin: 20px 0;
  }
  .connect .social li a {
    font-size: 22px;
    height: 36px;
    width: 36px;
    margin: 0 10px;
  }
}
/* Blog */
.blog {
  /* padding: 0; */
  position: relative;
}
.hero-section {
  width: 100%;
  height: 35rem;
  background-image: url("../images/blog-bg.jpeg");
  background-position: center center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background-attachment: fixed; */
}
.no-hero-image {
  background-image: none;
}
.hero-section-1 {
  height: 25rem;
}
.hero-section::before,
.hero-section::after {
  position: absolute;
  bottom: 0;
  background-color: white;
  height: 20px;
}
.hero-section::before {
  left: 0;
}
.hero-section::after {
  right: 0;
}
.hero-section .heading {
  font-size: 3rem;
  line-height: 1.1;
  max-width: 46.1875rem;
  text-transform: capitalize;
}
.hero-section video {
  height: 35rem;
  width: 100%;
  object-fit: cover;
}
.hero-section .content .heading::after {
  background-color: transparent;
}
@media (max-width: 768px) {
  .hero-section .heading {
    font-size: 1.5rem;
    line-height: 1;
  }
}
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), hsla(0, 0%, 100%, 0.3));
}

.blog .meta {
  position: absolute;
  width: 100%;
  bottom: 0;
  padding: 1rem;
  font-family: "futura-medium";
}
.blog .meta i {
  margin-right: 3px;
}
.blog-bg {
  background-image: url("../images/blog-bg.jpeg");
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  /* opacity: 0.5; */
}

.bg-light-green {
  background-color: #d4e9e2;
}
.blog .content {
  position: relative;
  padding: 50px 0;
}
.blog .content .card {
  margin-bottom: 1rem;
}
.blog .content .card-img-top {
  height: 300px;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.blog .content .card-title {
  font-family: "futura-bold";
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  /* line-height: 1.2em; Adjust to your preferred line height */
  height: 3em; /* Adjust to your preferred line height multiplied by the number of lines */
  overflow: hidden;
  font-size: 22px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.blog .content .card-text {
  font-family: "futura-medium";
  display: -webkit-box;
  -webkit-line-clamp: 5; /* Number of lines to show */
  -webkit-box-orient: vertical;
  /* line-height: 1.5; Adjust to your preferred line height */
  max-height: 7.5em; /* Adjust to your preferred line height multiplied by the number of lines */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.02em;
}
.blog .read-more {
  display: block;
  margin: 2rem 0 1rem 0;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: var(--dark-neutral);
  font-family: "futura-bold";
  display: flex;
  align-items: center;
}
.blog .read-more i {
  margin-left: 3px;
  top: 2px;
  left: 4px;
  position: relative;
}
.viewall {
  font-family: "futura-bold";
  padding: calc(25px - 0.5em) 24px calc(23px - 0.5em);
  text-decoration: none;
  background-color: var(--primary-1);
  color: var(--light-neutral);
  min-width: 134px;
  font-weight: 500;
  border-radius: 28px;
  font-size: 16px;
  height: 48px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.viewall:hover {
  background-color: var(--primary-1);
  color: var(--light-neutral);
}

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

.blog-list .card .img {
  min-height: 300px;
}
.blog-list .card .img img {
  min-height: 300px;
  max-height: 300px;
  object-fit: cover;
}
.blog-list .card .card-title {
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: auto;
  overflow: hidden;
  font-size: 22px;
  text-overflow: ellipsis;
  line-height: 1.45;
  letter-spacing: 0.02em;
}
.blog .home-card {
  max-height: 550px;
  margin-bottom: 1rem;
}
.blog .home-card .card-title {
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  height: auto;
  overflow: hidden;
  font-size: 22px;
  line-height: 1.45;
  text-overflow: ellipsis;
  letter-spacing: 0.02em;
}
.blog .home-card .card-text {
  -webkit-line-clamp: 3; /* Number of lines to show */
  -webkit-box-orient: vertical;
  /* line-height: 1.5; Adjust to your preferred line height */
  max-height: 7.5em; /* Adjust to your preferred line height multiplied by the number of lines */
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.02em;
}
.blog-list .card {
  min-height: 350px;
  margin-bottom: 1rem;
}
.blog ul.filter {
  list-style: none;
  float: right;
}
.blog ul.filter a {
  text-decoration: none;
  color: var(--dark-neutral);
  font-size: 22px;
  font-family: "futura-bold";
}
.blog ul.filter a.active,
.blog ul.filter a:hover {
  background-color: var(--primary-1);
  color: var(--light-neutral);
  border: 1px solid var(--dark-neutral-20);
  padding: 5px;
  border-radius: 5px;
}
.blog ul.filter li {
  display: inline-block;
  margin-left: 10px;
}
.blog .category {
  list-style: none;
  padding-inline-start: 0;
  margin-bottom: 0;
}
.blog .category li {
  display: inline-block;
  border: 1px solid var(--dark-neutral);
  color: var(--dark-neutral);
  border-radius: 20px;
  padding: 5px 10px;
  min-width: 60px;
  text-align: center;
  margin: 10px 0;
}
.blog .category li a {
  font-family: "futura-medium";
  font-size: 0.85em;
  text-decoration: none;
  color: var(--dark-neutral);
}
.blog .category li.active {
  background-color: var(--primary-1);
}
.blog .category li.active a {
  color: var(--light-neutral);
}
/* Subscription */
.subscription {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.subscription .card {
  text-align: center;
  width: calc(100% - 40%);
  margin: auto;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
  .heading {
    font-size: 36px; /* Adjust the font size for smaller screens */
  }
  .sub-heading {
    font-size: 20px;
  }
  .subscription .card {
    width: calc(100% - 20%); /* Adjust the width for smaller screens */
  }
  .tagline {
    font-size: 14px;
    margin-top: 1rem;
  }
}

/* Additional responsive adjustments for even smaller screens */
@media (max-width: 480px) {
  .heading {
    font-size: 24px; /* Adjust the font size for even smaller screens */
  }
  .sub-heading {
    font-size: 20px;
  }
  .subscription .card {
    width: 100%; /* Adjust the width to fill the entire screen width */
  }
}

.subscription .card .text {
  color: var(--dark-neutral);
}
.subscription .card .sub-text {
  color: var(--dark-neutral-50);
}
.subscription input#email {
  /* padding: 15px 20px;
  border-radius: 30px; */
}
.subscription a {
  text-decoration: none;
  color: inherit;
}
.subscription .btn-subscribe {
  border: 1px solid var(--primary-2);
  background: linear-gradient(var(--primary-1), var(--primary-2));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(25px - 0.5em) 24px calc(23px - 0.5em);
  margin: auto;
  font-size: 18px;
  letter-spacing: 2.2px;
  height: 48px;
  min-height: 48px;
  min-width: 134px;
  font-weight: 500;
  /* border-radius: 28px; */
  font-family: "futura-bold";
}
.btn-leefo{
  font-family: "futura-medium";
    background: linear-gradient(var(--primary-1), var(--primary-2));
    color: #fff;
    padding: 18px 26px;
    border-radius: 10px;
    font-size: 15px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
}
.btn-leefo i {
  margin-left: 10px;
}
.btn-leefo:hover {
  background-color: var(--primary-1); /* Hover Background Color */
  transform: scale(1.05) !important; /* Hover Scale Effect */
  color:white;
}
@media (max-width: 768px) {
  .btn-leefo {
    padding: 15px 24px; /* Adjust padding for smaller screens */
    font-size: 14px; /* Adjust font size for smaller screens */
    margin-left: inherit;
  }
}
/* Footer Copyright */
footer {
  font-family: "futura-medium";
  background-color: var(--primary-1);
  color: var(--light-neutral);
  padding-top: 8px;
  padding-bottom: 8px;
}
footer a {
  text-decoration: none;
  color: var(--light-neutral);
}
footer ul {
  list-style: none;
  padding-inline-start: 0;
  margin-bottom: 0;
  font-size: 12px;
}
footer ul.right {
  float: right;
}
footer ul.left li,
footer ul.right li {
  display: inline-block;
  padding-right: 20px;
}

@media (max-width: 768px) {
  footer ul.right {
    text-align: right;
  }
}
.certificate-box {
  height: 100%;
  width: 100%;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.certificate-box img {
  border: 5px solid var(--secondary-1);
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}

/* Solutions */
.product-slider .product-slider-track1 .product img {
  height: 270px;
}
#solution-slider {
  margin: 50px 0;
}
#solution-slider .glide__slide {
  align-items: center;
  display: flex;
  flex-direction: column;
  text-align: center;
  transform: scale(0.6);
  transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1);
}
#solution-slider .glide__slide .icon {
  width: 100%;
  height: 100%;
  border: 5px solid black;
  border-radius: 50%;
}
#solution-slider .glide__slide .icon img {
  /* height: 10.5625rem;
  width: 10.5625rem; */
  filter: brightness(0);
  -webkit-transform: scale(0.6);
  transform: scale(0.6);
  /* transition: all 0.3s cubic-bezier(0.25, 1, 0.3, 1); */
}
#solution-slider .glide__slide .icon-text {
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  min-width: none;
  width: 31.25rem;
}
#solution-slider .glide__slide.glide__slide--active {
  transform: scale(1);
}
#solution-slider .glide__slide.glide__slide--active .icon {
  border-color: var(--primary-1);
}
#solution-slider .glide__slide.glide__slide--active .icon-text {
  max-height: -webkit-max-content;
  max-height: -moz-max-content;
  max-height: max-content;
  opacity: 1;
  visibility: visible;
  margin-top: 20px;
}
#solution-slider .glide__slide.glide__slide--active .icon-text h5 {
  font-family: "futura-bold";
  font-size: 1.375rem;
  margin-top: 3rem;
}
#solution-slider .glide__slide.glide__slide--active .icon-text p {
  font-family: "futura-medium";
  font-size: 1rem;
}
#solution-slider .glide__slide.glide__slide--active .icon img {
  opacity: 1;
  visibility: visible;
  filter: blur(0);
  -webkit-transform: scale(0.90);
  transform: scale(.90);
  padding:10px
}
#solution-slider .glide__arrow {
  background-color: var(--primary-1);
  color: var(--light-neutral);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  top: 50%;
}
#solution-slider .glide__arrow:hover {
  background-color: var(--primary-1);
  color: white;
}
.solution_our_offering {
  text-transform: uppercase;
}
.solution_our_offering p {
  font-size: calc(1vw + 1vh);
  font-style: italic;
  color: var(--secondary-1);
}
.solution_our_offering .first {
  position: absolute;
  top: 18%;
  margin: auto;
  display: block;
  left: 40%;
}
.solution_our_offering .second {
  position: absolute;
  top: 50%;
  left: 40%;
  margin: auto;
  display: block;
}
.solution_our_offering .third {
  position: absolute;
  bottom: 20%;
  left: 30%;
  margin: auto;
  display: block;
}
.solution_our_offering .fourth {
  position: absolute;
  bottom: 20%;
  right: 25%;
  margin: auto;
  display: block;
}
.fw-primary {
  color: var(--primary-1);
  font-family: "futura-medium";
  letter-spacing: 1px;
}
.industries .img-bg {
  height: 400px;
  width: 100%;
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.industries .block {
  background-color: #d4e9e2;
}
.industries .block h4 {
  font-family: "futura-bold";
  font-size: 3rem;
  position: relative;
  color: var(--primary-1);
}
.industries .block h4::before {
  /* content: ""; */
  position: absolute;
  border-left: 11px solid black;
  margin-left: -22px;
  top: 23px;
  border-radius: 50%;
  width: 10px;
  height: 10px;
}

@media (max-width: 768px) {
  #solution-slider .glide__slide.glide__slide--active .icon-text h5 {
    font-family: "futura-bold";
    font-size: 1.2rem;
  }
  #solution-slider .glide__slide.glide__slide--active .icon-text p {
    font-family: "futura-bold";
    font-size: 1rem;
  }
  #solution-slider .glide__slide .icon-text {
    width: 100%;
  }
  #solution-slider .glide__slide .icon img {
    width: 11rem;
    height: 11rem;
  }
  .industries .block h4 {
    font-size: 1.5rem;
    height: 10vh;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .industries .block h4::before {
    display: none;
  }
  .industries .img-bg {
    background-attachment: fixed;
    width: 100%;
    height: 350px;
  }
}
/* Contact Form */
.contact-form legend {
  font-size: 2rem;
  letter-spacing: -0.03125rem;
  line-height: 1.33;
  margin-bottom: 3rem;
  margin-top: 5rem;
  font-weight: bold;
  font-family: "futura-bold";
}
.contact-form .form-control,
.contact-form .form-select {
  font-size: 1rem;
  padding: 1.25rem;
  width: 100%;
}
.contact-form .form-label {
  font-size: 1.25rem;
  font-weight: 300;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 0.625rem;
}
.contact-form button {
  font-family: "futura-medium";
  background-color: var(--primary-1); /* Button Background Color */
  color: #fff; /* Button Text Color */
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 15px; /* Button Font Size */
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    transform 0.3s ease;
  text-transform: capitalize;
  letter-spacing: 2px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
}
.reachus a {
  text-decoration: none;
  font-size: 1.25em;
  color: white;
  margin-bottom: 1em;
}
.reachus p {
  font-size: 1.5em;
  color: white;
  margin-bottom: 1em;
}
