:root {
  --max-width: 1128px;
  --gap: 1rem;
  --color-white: #fff;
  --color-light: #ff8100;
  --color-dark: #005f31;
  --mansory-gap: 13px;
  --color-orange: #f4ae52;
  --color-black: #151505;
  --font-body: "Onest", sans-serif;
  --font-heading: "Work Sans", sans-serif;
  /*--gradient: linear-gradient(95.67deg, #fcab72 1.98%, #934b40 154.7%);*/
  /* --dark-bg: #405659; */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: #151505;
}

.font-medium {
  font-weight: 500;
}

.font-bold {
  font-weight: 700;
}

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

h1,
h2,
h3,
h4 {
  font-weight: 500;
  font-family: var(--font-heading);
}

p {
  line-height: 1.5;
}

h1 {
  font-size: 28px;
  /* line-height: 1.5; */
}

img {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 15px;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 10px;
}

.pt-2 {
  padding-top: 20px;
}

.pt-3 {
  padding-top: 30px;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-3I {
  padding-bottom: 30px !important;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 10px;
}

.mt-2 {
  margin-top: 20px;
}

.mt-3 {
  margin-top: 30px;
}

.pb-2 {
  padding-bottom: 20px !important;
}

.row {
  display: flex;
  flex-wrap: wrap;
}

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

.row-reverse {
  flex-direction: row-reverse;
}

.w-full {
  width: 100%;
}

.col-2 {
  width: 50%;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.grid-5 {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.grid-12 {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.grid-span-2 {
  grid-column: span 2;
}

.grid-span-3 {
  grid-column: span 3;
}

.grid-span-4 {
  grid-column: span 4;
}

.grid-span-5 {
  grid-column: span 5;
}

.grid-span-6 {
  grid-column: span 6;
}

.grid-span-7 {
  grid-column: span 7;
}

.grid-span-8 {
  grid-column: span 8;
}

.gap-1 {
  gap: 10px;
}

.gap-2 {
  gap: 20px;
}

.gap-3 {
  gap: 30px;
}

.gap-4 {
  gap: 40px;
}

.gap-5 {
  gap: 50px;
}

.gap-y-5 {
  row-gap: 50px;
}

.gap-6 {
  gap: 6rem;
}

.gap-7 {
  gap: 7rem;
}

.gap-8 {
  gap: 8rem;
}

.gap-9 {
  gap: 9rem;
}

.gap-10 {
  gap: 10rem;
}

.image-cover {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.align-center {
  align-items: center;
}

.overlay-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.overlay-image:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0.7;
}

h4 {
  /* color: #2b2a29; */
}

.section-border-top {
  border-top: 1px solid #bebebe;
}

.unstyled-button {
  font-weight: 500;
  color: #ff0102;
}

.unstyled-button.white {
  color: #fff;
}

.section-padding {
  padding: 4.5rem 0;
}

.narrow-container {
  padding-inline: 6rem;
}

.section-padding-bottom {
  padding-bottom: 3.8rem;
}

.button-container {
  /* margin-top: 30px; */
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.button {
  background-color: #005f31;
  color: #fff;
  padding: 15px 17px 17px;
  border-radius: 30px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  transition: 0.3s;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 600;
}

.button:has(svg) {
  padding-right: 10px;
}

.button:has(svg):hover {
  background-color: var(--color-light);
  color: #fff;
}

.button:hover {
  background-color: #fff;
  color: #005f31;
}

.button.light {
  background-color: var(--color-light);
  color: #fff;
}

.button.light:hover {
  background-color: var(--color-dark);
}

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

header .logo {
  display: flex;
  height: 50px;
  width: auto;
}

header .logo a {
    display: flex;
}

header {
  position: relative;
  z-index: 99;
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0px 1px 10px rgba(70, 130, 96, 0.3);
}

.navigation .navigation-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  list-style: none;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--font-heading);
}

.navigation-area {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.header-social-icons {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid rgb(0 0 0 / 10%);
  display: flex;
  flex-direction: row;
  gap: 20px;
}

header .logo img {
  /* width: 100%; */
}

.navigation .navigation-list .nav-btn {
  font-weight: 400;
}

.topbar {
  background-color: #052d93;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  font-size: 15px;
}

.menu-right {
  display: flex;
  align-items: center;
  gap: 25px;
}

.search-icon {
  display: flex;
}

.navbar .row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.dropdown {
  position: relative;
}

.dropdown .dropdown-menu {
  position: absolute;
  width: 130px;
  background-color: #fff;
  box-shadow: 0px 2px 4px #0000002e;
  padding: 5px 0;
  /* border-radius: 8px; */
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  top: 100%;
}

ul.submenu li a {
  display: block;
  padding: 5px 15px;
  font-size: 14px;
}

ul.submenu {
  list-style: none;
}

.navigation .navigation-list li {
  font-weight: 600;
  color: #000;
  transition: 0.2s;
  border-bottom: 3px solid transparent;
}

.navigation .navigation-list li.dropdown:after {
  content: "";
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M8 13.1l-8-8 2.1-2.2 5.9 5.9 5.9-5.9 2.1 2.2z'/%3E%3C/svg%3E");
  height: 10px;
  width: 10px;
  display: inline-block;
  margin-left: 3px;
}

.navigation .navigation-list ul.submenu li {
  padding: 0;
}

.dropdown:hover .dropdown-menu {
  visibility: visible;
  opacity: 1;
}

.navigation .navigation-list li > a {
    padding: 33px 0;
    display: inline-block;
}

.navigation .navigation-list li.dropdown .submenu a {
    padding: 10px 15px;
}

.navigation .navigation-list li.dropdown .submenu li {
    border-width: 2px;
}

.hamburg-icon .line {
  width: 20px;
  height: 2px;
  margin-bottom: 4px;
  background-color: var(--color-dark);
  border-radius: 5px;
  transition: 0.3s;
}

.hamburg-icon.open .line:first-child {
  transform: rotate(45deg) translate(5px, -2px);
}

.hamburg-icon.open .line:nth-child(2) {
  opacity: 0;
}

.hamburg-icon.open .line:last-child {
  transform: rotate(-46deg) translate(10px, -3px);
}

.hamburg-icon .line:last-child {
  margin: 0;
}

.hamburg-icon {
  display: none;
}

.main-banner .container,
.home-banner .container {
  position: absolute;
  color: #fff;
  /* font-weight: 700; */
  width: 100%;
  margin-inline: auto;
  margin-left: calc((100vw - (var(--max-width))) / 2);
  bottom: 20px;
}
.navigation .navigation-list li.active,
.navigation .navigation-list li:hover {
  color: #005f31;
  border-bottom: 3px solid;
}

.banner-content h1 {
  font-size: 60px;
  font-weight: 600;
  letter-spacing: 3%;
}

.home-banner-section {
  position: relative;
  /* height: 85vh; */
  overflow: hidden;
}

.home-banner-section .banner-image {
  display: flex;
  max-height: calc(100vh - 90px);
}

.home-banner-section .banner-image video,
.home-banner-section .banner-image iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section .swiper {
  /* height: 100%; */
}

.home-banner-section .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-section .swiper-slide {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: auto;
}

.home-banner .banner-content {
  width: 95%;
  /* padding: 6rem 20px 5rem 4.3rem; */
  /* background-color: #272727; */
  color: #fff;
}

.home-banner .banner-content .button {
  display: inline-block;
  margin-top: 10px;
}

.home-banner .banner-content p {
  padding: 24px 0;
  font-size: 20px;
}

.home-banner {
  /* background-color: #000; */
}

.home-banner .slider-thumb-content {
  color: #fff;
  font-size: 18px;
  position: relative;
  padding-bottom: 10px;
  height: -webkit-fill-available;
  padding-inline: 5px;
  display: flex;
}

.main-slider-thumbs {
  padding-block: 18px;
}

.home-banner .slider-thumb-content h4 {
  padding-block: 10px;
}

.home-banner .slider-thumb-content .progress-line-outer {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 100%;
  background-color: #ffffff80;
}

.home-banner .progress-line {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  background: #fff;
}

.swiper-slide-thumb-active .progress-line-outer .progress-line {
  animation: fillLine linear forwards;
}

@keyframes fillLine {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.main-banner .banner-content {
  width: 75%;
  padding-bottom: 20px;
}

.swiper .swiper-pagination-bullet {
  border: 1.5px solid #fff;
  opacity: 1;
  background: transparent;
  width: 12px;
  height: 12px;
}

.swiper-pagination-bullet-active {
  border-color: #0072bb;
  background-color: #0072bb;
}

.section-head h2 {
  font-size: 38px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--color-dark);
}

.section-head h2 span {
  color: var(--color-light);
}

.section-head p {
  font-size: 17px;
  color: #5c5c5c;
  line-height: 1.7;
}

.section-head p strong {
  color: #000;
}

.section-head .button {
  margin-top: 30px;
}

.section-content {
  padding-top: 15px;
}

.section-content h3 {
  font-size: 28px;
}

.section-head {
  padding-bottom: 20px;
}

footer {
  padding-top: 40px;
}

.footer-navigation-wrapper {
  width: calc(65% - 70px);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

footer .footer-row {
  gap: 85px;
}

footer .footer-row .footer-logo img {
  border-radius: 8px;
  mix-blend-mode: darken;
}

footer .footer-row .footer-map-locator a {
  display: flex;
  gap: 5px;
  text-decoration: underline;
  font-size: 13px;
  color: #bbc4cb;
  text-underline-offset: 2px;
}

footer .footer-row .footer-logo {
  display: flex;
  gap: 10px;
  flex-direction: column;
  width: calc(35% - 15px);
}

.footer-col-navigation h3 {
  margin-bottom: 20px;
  font-size: 20px;
}

footer .navigation-list {
  list-style: none;
  display: flex;
  /* flex-direction: column; */
  gap: 12px;
  font-size: 15px;
}

.footer-copyright {
  width: 100%;
  justify-content: space-between;
  /* margin-top: 30px; */
  font-family: var(--font-heading);
  background-color: #e7f3ed;
  padding-block: 20px;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 14px;
}

footer .footer-row-navigation {
  padding: 40px 0px;
}

.main-banner-section {
  height: 55vh;
}

.main-banner-section .container {
  min-height: 100%;
  display: flex;
  align-items: center;
}

.main-banner {
  position: relative;
  height: 100%;
}

.row-reverse .about-image {
  padding-left: 0;
  padding-right: 77px;
}

.category-tabs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  border-bottom: 1px solid #bebebe;
  margin-bottom: 20px;
}

.category-grids-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
  display: none;
}

.product-grid {
  background-color: #f6f6f6;
  padding: 20px 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  text-align: center;
}

.product-grid .image {
  min-height: 170px;
  display: flex;
  align-items: center;
  mix-blend-mode: darken;
  justify-content: center;
}

.product-grid .content {
  margin-top: 13px;
}

.category-tabs .filter.active:after {
  content: "";
  background-color: #ff0102;
  height: 2px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: -1px;
}

.category-tabs .filter {
  position: relative;
  padding: 7px 0 7px 7px;
  font-size: 15px;
  cursor: pointer;
}

.tab-content.category-grids-row.active {
  display: grid;
}

.phone-email .label {
  color: #535353;
}

.phone-email a {
  font-weight: 500;
  font-size: 18px;
}

.contact-map {
  height: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
}

.form {
  background-color: #fff;
  padding: 40px 35px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-control {
  padding: 12px 17px;
  font-size: 14px;
  background-color: #EDEDED;
  border: none;
  /* border-bottom: 0.3px solid #bbbbbb; */
  /* border-radius: 0; */
}

.form-group label {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
}

.form-button {
  margin: 20px 0 20px;
}

.form-button .button {
  padding-inline: 50px;
}

.home-products-section {
  position: relative;
  background-color: #e7f3ed;
  padding-bottom: 0;
}

.home-products-section .section-head {
  padding-bottom: 50px;
}

.products-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  transition: 0.3s;
}

.products-card img {
  border-radius: 15px;
}

.products-card .content {
  position: absolute;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.5) 100%
  );
  color: #fff;
  height: 70%;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  padding: 20px;
  transition: 0.3s;
}

.products-card .content-hover {
  position: absolute;
  inset: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: 0.3s;
  opacity: 0;
  text-align: center;
  background-color: rgb(0 0 0 / 50%);
  color: #fff;
}

.products-card .image {
  display: flex;
}

.products-card:hover .content {
  opacity: 0;
}

.products-card:hover .content-hover {
  opacity: 1;
}

.products-card:hover {
  box-shadow: 0px 24px 50px rgba(70, 130, 96, 0.3);
}

.home-products-container .swiper-slide {
  padding-bottom: 80px;
}

.products-card .content-hover p {
  margin-block: 30px;
  font-size: 17px;
}

.products-card .content-hover h3 {
  font-size: 22px;
}

.glace-stats-grid {
  text-align: center;
  /* padding: 40px 5px; */
  border: 2px solid #e5e5e5;
  color: var(--color-dark);
  /* height: 110px; */
  transition: 0.3s;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.glace-stats-grid h3 {
  font-size: 57px;
  /* font-weight: 600; */
  letter-spacing: -1px;
}

.glace-stats-grid p {
  margin-bottom: 10px;
}

.glance-stats-container .grid-4,
.glance-stats-container .grid-3 {
  gap: initial;
}

.glance-stats-container .grid-4 .glace-stats-grid {
  border-bottom: 0;
}

.glance-stats-container .single-line-glance-row .glace-stats-grid:last-child {border-right: 2px solid rgba(255, 255, 255, .2);}

.glance-stats-container .grid-4 .glace-stats-grid:nth-child(3) {
  border-right: 0;
}

.glance-stats-container .grid-3 .glace-stats-grid:nth-child(2) {
  /* border-inline: 0; */
}

.glance-stats-container {
  margin-top: 60px;
}

.glace-stats-grid:hover {
  background-color: var(--color-dark);
  color: #fff;
}

.custom-solution-section {
  position: relative;
  background-color: #ff8100;
  color: #fff;
}

.custom-solution-section .section-head h2,
.custom-solution-section .section-head p {
  color: #fff
}

.custom-solution-section::before {
  content: "";
  background-image: url("../images/pattern.png");
  background-repeat: repeat;
  opacity: 0.2;
  inset: 0;
  position: absolute;
  background-size: cover;
}

.custom-solution-section .row {
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 30px;
}

.custom-solution-section .section-head {
  padding-bottom: 0;
}

.blogs-grid {
  background-color: #fff;
  transition: 0.3s;
  border-radius: 6px;
  overflow: hidden;
}

.blogs-grid:hover {
  box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
}

.blogs-grid .image {
  display: flex;
  position: relative;
}

.blogs-grid .image img {
  width: 100%;
}

.blogs-grid .content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 14px;
  align-items: center;
}

.blogs-grid .content .text {
  font-weight: 500;
}

.blogs-grid .content .text h4 {
  font-weight: 600;
  font-size: 16px;
}

.home-blogs-section {
  position: relative;
}

.home-blogs-section::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 45%;
  background-color: #e7f3ed;
  left: 0;
  z-index: -1;
}

.blogs-grid .content .text p {
  color: #5c5c5c;
  margin-top: 10px;
  font-size: 15px;
}

.home-blogs-section .row {
  justify-content: space-between;
  align-items: center;
}

.home-blogs-section .blogs-cards-area {
  margin-top: 40px;
}

.footer-logo-with-social {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgb(0 95 49 / 20%);
  padding-bottom: 20px;
}

.footer-logo-with-social .footer-social-icons {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  align-items: center;
}

.social-label {
  text-transform: uppercase;
  font-weight: 500;
  color: #5c5c5c;
  font-size: 14px;
}

footer .navigation-list li {
  border: none !important;
  padding-block: 0 !important;
}

footer .navigation {
  padding-block: 30px;
}

.footer-copyright .container.row {
  justify-content: space-between;
}

@media screen and (max-width: 760px) {
  .mobile-nav-toggle {
    display: inline-block;
    cursor: pointer;
  }

  footer .navigation-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 0;
  }

  .container {
    padding: 0 15px;
  }

  .footer-map-locator {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0 0;
  }

  .mobile-nav-toggle .mobile-nav-icon {
    display: grid;
    gap: 6px 0;
  }

  .mobile-nav-toggle .mobile-nav-icon .line {
    width: 25px;
    height: 2px;
    background: #000;
    transition: 0.3s;
  }

  .mobile-nav-toggle .mobile-nav-icon.active .line:first-child {
    transform: rotate(42deg);
    transform-origin: top left;
  }

  .mobile-nav-toggle .mobile-nav-icon.active .line:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle .mobile-nav-icon.active .line:last-child {
    transform: rotate(-40deg);
    transform-origin: bottom left;
  }

  .navigation .navigation-list {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 2;
    background-color: #fff;
    width: 100%;
    padding: 10px 15px 20px;
    box-shadow: 0px 15px 10px #00000017;
  }

  header .navigation .navigation-list {
    gap: 20px;
  }

  header .navigation .navigation-list > li {
    width: 100%;
  }

  header .navigation .navigation-list > li > a {
    display: block;
  }

  header .navigation .navigation-list > li a.button {
    display: inline-block;
  }
  .home-banner .banner-content {
    width: 100%;
  }

  .banner-content h1 {
    font-size: 31px;
    line-height: initial !important;
  }

  .home-banner-section {
     height: 65vh; 
  }
  .home-banner, .home-banner .banner-image {
        height: 100%;
    }

  .col-2 {
    width: 100%;
  }

  .section-head h2 {
    font-size: 27px;
    letter-spacing: 0;
  }

  .section-head h4 {
    font-size: 14px;
  }

  .section-head p {
    font-size: 16px;
  }

  .section-head.text-center {
    max-width: 100%;
  }

  .hamburg-icon {
      display: inline-block;
  }
  
  .navbar .row {
      grid-template-columns: 1fr 1fr 1fr;
  }
  
  header .logo {
      justify-content: center;
  }
  
  .header-social-icons {
      margin-left: 0;
      padding-left: 0;
      border: none;
  }
  
  .navigation-area {
      justify-content: flex-end;
  }
  
  .navbar {
      padding-block: 10px;
  }
  
  .main-banner .container, .home-banner .container {
      margin: 0;
      bottom: 0;
  }
  
  .home-banner .banner-content p {
      font-size: 15px;
  }
  
  .glance-stats-container .grid-4, .glance-stats-container .grid-3 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  
  .glance-stats-container .grid-4 .glace-stats-grid:nth-child(2), .glance-stats-container .grid-3 .glace-stats-grid:nth-child(2) {
      border-right: 1px solid #e5e5e5;
  }
  
  .home-blogs-section::before {
      height: 65%;
  }
  
  .home-blogs-section .blogs-cards-area {
      grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  
  footer .navigation .navigation-list {
      display: grid;
    position: relative;
    box-shadow: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  .glace-stats-grid h3 {
      font-size: 37px;
  }
  
  .glace-stats-grid p {
      font-size: 15px;
  }
  
  .glace-stats-grid {
      padding-block: 35px;
  }
  
  .home-banner .banner-content p br {
      display: none;
  }
  
  .footer-logo-with-social .logo img {
        height: 50px;
    }
    .section-padding {
        padding: 3rem 0;
    }
}

.inner-banner-section .banner-image {
    display: flex;
}

.main-banner .banner-content h1 {
    margin-bottom: 20px;
    margin-left: -3px;
}

.pdp-overview-section .section-head {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pdp-overview-section .section-head h2 {
    margin-bottom: 0;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    padding-bottom: 20px;
    font-size: 34px;
}

.pdp-products-section {
    background-color: #e7f3ed;
}

.pdp-features-container {
    gap: 0;
    margin-top: 30px;
}

.pdp-features-card {
    text-align: center;
    padding: 40px;
}

.pdp-features-container .pdp-features-card:nth-child(1), 
.pdp-features-container .pdp-features-card:nth-child(2), 
.pdp-features-container .pdp-features-card:nth-child(4), 
.pdp-features-container .pdp-features-card:nth-child(5) {
    border-right: 1px solid #ff8100;
}

.pdp-features-card .content h3 {
    font-weight: 600;
    color: #101010;
    margin-top: 10px;
}

.pdp-features-card .image {
    display: flex;
    justify-content: center;
}

.pdp-application-card .image img {
    aspect-ratio: 10 / 8.5;
    object-fit: cover;
    width: 100%;
}

.application-slider {
    padding-block: 60px;
}

.application-slider .swiper-slide-next .pdp-application-card {
    transform: scale(.85);
    border-radius: 14px;
    overflow: hidden;
    transition: 0.3s;
}

.pdp-application-card {
    position: relative;
    transition: 0.3s;
}

.pdp-application-card .content {
    position: absolute;
    bottom: 0;
    color: #fff;
    padding: 25px;
    text-align: center;
    width: 100%;
}

.application-slider .swiper-slide{
  opacity: 0;
  transition: 0.4s;
}

.application-slider .swiper-slide-fully-visible {
  opacity: 1;
}

.pdp-application-container {
    margin-top: 30px;
}

.pdp-specifications-card {
    color: #5C5C5C;
    padding-block: 14px;
    border-bottom: 1px solid rgb(92 92 92 / 10%);
}

.pdp-application-card .image:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    position: absolute;
    inset: 0;
}

.pdp-application-card .image {
    position: relative;
    display: flex;
}

.pdp-specifications-container {
    row-gap: 0;
}

.contact-form form .form-group textarea {
    font-family: var(--font-bofy)
}

.contact-form form .form-group:last-child {
    flex-direction: initial;
}

.contact-form form .form-group .button {
    padding-inline: 30px;
}

.inner-contact-section .section-head, .inner-contact-section .section-head h2, .inner-contact-section .section-head p {
    color: #fff;
}

.industry-overview-card {
    padding: 40px;
    background-color: var(--color-light);
    border-radius: 16px;
    color: #fff;
    gap: 40px;
}

.industry-overview-card .section-head {
    width: calc(50% - 20px);
}

.industry-overview-card .image {
    width: calc(50% - 20px);
    display: flex;
    border-radius: 15px;
    overflow: hidden;
}

.industry-overview-card.dark {
    background-color: #005F31;
}

.industry-overview-card .section-head h2, .industry-overview-card .section-head p {
    color: inherit;
}

.overview-grids-container {
    margin-top: 70px;
}

.industry-page-products-section {
    background-color: #E7F3ED;
}

.blogs-banner-section {
    position: relative;
    background-color: #e7f3ed;
    color: var(--color-dark);
}

.blogs-banner-section .banner-content h1 {
    margin-bottom: 10px;
}

.blogs-listing-section .blogs-grid {
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: initial;
}

.blogs-listing-section .blogs-grid .image img {
    border-radius: 10px;
    transition: 0.3s;
}

.blogs-listing-section .blogs-grid .content {
    padding-inline: 0;
}

.blogs-listing-section .blogs-grid .content .button {
    margin-top: 14px;
    font-size: 14px;
    padding: 10px 15px 12px;
}

.blogs-listing-section .blogs-grid .content .text h4 {
    font-size: 17px;
}

.blogs-listing-section .blogs-grid .content .button:hover {
    background: var(--color-light);
    color: #fff;
}

.blogs-listing-section .content .text p {
    font-size: 14px;
}

.blogs-listing-section .blogs-grid:hover .image img {
    box-shadow: 0px 8px 30px rgba(0, 51, 26, 0.24);
    border-radius: 16px;
    outline: 5px solid rgba(0, 95, 49, 0.8);
    outline-offset: -5px;
}

.blogs-pagination svg {
    width: 100%;
}

.blogs-pagination {
    padding-top: 0;
}

.related-blogs-section .container > .row {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.related-blogs-section .section-head h2 {
    margin-bottom: 0;
    font-size: 32px;
}

.related-blogs-section .button-area .button {
    background: none;
    color: var(--color-dark);
    padding: 0;
}

.related-blogs-section .section-head {
    padding-bottom: 0;
}

.related-blogs-section .button-area .button:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.blogs-content {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 20px;
}

.blogs-content h1 {
    font-size: 44px;
    color: var(--color-dark);
    letter-spacing: -2px;
    font-weight: 600;
    font-family: var(--font-body);
}

.blogs-content .image {
    display: flex;
}

.blogs-content .image img {
    border-radius: 15px;
    width: 100%;
}

.blogs-content .date {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #5C5C5C;
}

.blogs-content .rte {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 15px;
}

.blogs-content .rte * {
    font-family: var(--font-body) !important;
}

.blogs-content .rte h3 {
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
    color: #101010;
}

.blogs-content .rte p {
    color: #5c5c5c;
    font-weight: 500;
}

.blogs-content .rte ul {
    padding-left: 15px;
    color: #005F31;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    gap: 15px;
    list-style: none;
}

.blogs-content .rte ul li {
    color: #100F10;
    position: relative;
}

.blogs-content .rte ul li::before {
  content: "•";
  position: absolute;
  left: -20px;
  font-size: 34px;
  color: #005f31;
  line-height: 0.7;
}

.blogs-content .rte h3:first-child {
    margin-top: 0;
}

.share-blogs h4 {
    color: #494A53;
    font-weight: 600;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.share-blogs {
    margin-top: 30px;
}

.share-options {
    display: flex;
    gap: 17px;
}

.blogs-detail-section {
    padding-bottom: 0;
}

.about-page-glance-section {
    background-color: #e7f3ed;
}

.about-page-glance-section .glace-stats-grid:hover {
    background-color: var(--color-light);
}

.about-page-glance-section .glace-stats-grid {
    padding-block: 10px;
}

.glance-stats-container .glace-stats-grid {
    border-color: rgba(255, 255, 255, .2);
}

.glance-stats-container .double-line-glance-row {
    margin-top: 60px;
    gap: 30px;
}

.glance-stats-container .double-line-glance-row .glace-stats-grid {
    padding: 25px 15px;
}

.glance-stats-container .double-line-glance-row .glace-stats-grid h3 {
    font-size: 45px;
}

.certificates-grid {
    border: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 14px;
}

.certificates-container {
    margin-top: 40px;
}

.about-values-section {
    background-color: #e7f3ed;
}

.values-container {
    margin-top: 15px;
}

.values-grid {
    padding: 30px 27px;
    background-color: #fff;
    border-radius: 14px;
    transition: 0.3s;
}

.values-grid h3 {
    color: #005F31;
    font-size: 21px;
    font-weight: 600;
    margin-bottom: 10px;
    font-family: var(--font-body);
}

.values-grid p {
    color: #5C5C5C;
    font-weight: 500;
    line-height: 1.3;
    font-size: 14px;
}

.values-grid:hover {
    background-color: var(--color-dark);
}

.values-grid:hover * {
    color: #fff !important;
}

.contact-page-form {
    margin-top: 5px;
}

.contact-page-form .form {
    padding: 0;
}

.contact-page-form .form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-page-form .form-control {
    background: #fff;
    border: 1px solid #E3E3E3;
    font-family: var(--font-body)
}

.contact-page-form .form-control::placeholder {
    color: #5C5C5C;
}

.contact-page-form .form-group:has(button) {
    display: inline-block;
    margin-top: 10px;
}

.contact-page-form .form-group button {
    font-size: 17px;
    padding-inline: 25px;
}

.contact-page-details {
    background-color: #005F31;
    color: #fff;
    padding: 35px;
}

.contact-details-grids .details-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.contact-details-grids .details-grid .icon {
    width: 30px;
}

.contact-details-grids .details-grid .text {
    width: calc(100% - (30px + 15px));
}

.contact-details-grids {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.contact-page-details .contact-map {
    position: relative;
    margin-top: 30px;
}

.contact-page-details .contact-map .button {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.contact-page-section .section-head h2 {
    margin-bottom: 15px;
    font-size: 32px;
}

.contact-page-section .section-head p {
    font-size: 16px;
}

.distribution-grid {
    position: relative;
}

.distribution-grid .image-text {
    position: relative;
}

.distribution-grid .image {
    display: flex;
}

.distribution-grid .city {
    position: absolute;
    bottom: 0;
    padding: 13px;
    width: 100%;
    background-color: #E7F3ED;
    font-weight: 600;
    font-size: 18px;
}

.distribution-grid .hover-content {
    background-color: #e7f3ed;
    position: absolute;
    inset: 0;
    padding: 30px;
    opacity: 0;
    transition: 0.3s;
}

.distribution-grid:hover .hover-content {
    opacity: 1;
}

.city-address {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.city-address .address-detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
    font-size: 15px;
}

.distribution-grid .hover-content h3 {
    font-size: 20px;
    font-weight: 600;
}

.contact-distribution-section .section-head h2 {
    color: var(--color-light);
    margin-bottom: 15px;
}

.contact-distribution-container {
    margin-top: 10px;
}

.timeline-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.timeline-container .swiper-pagination {
    position: relative;
    width: 60px;
    inset: initial !important;
    transform: initial !important;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-container .swiper-timeline {
    width: calc(100% - 120px);
    max-height: 80vh;
}

.timeline-container .swiper-slide {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.timeline-container .swiper-slide .image {
    width: 40%;
    display: flex;
    border-radius: 14px;
    overflow: hidden;
}

.timeline-container .swiper-slide .content-area {
    width: calc(60% - 60px);
    display: flex;
    align-items: center;
}

.timeline-container .content h2 {
    font-size: 70px;
    margin-bottom: 25px;
    font-weight: 600;
    color: rgb(255 129 0 / 10%);
    -webkit-text-stroke: 1px #FF8100;
    opacity: 0.6; /* faded look */
}

.timeline-container .content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.timeline-container .content .inner-content p {
    color: #5C5C5C;
    font-weight: 500;
    font-size: 15px;
}

.timeline-container .swiper-pagination .swiper-pagination-bullet {
    width: 60px;
    aspect-ratio: 1 / 1;
    height: auto;
    background: #fff;
    border: 2px solid #FFF0E0;
    color: var(--color-light);
    font-size: 14px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    opacity: 1;
    margin: 0px !important;
    transition: 0.3s;
}

.timeline-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #005F31;
    color: #fff;
    border-color: #005F31;
}

.timeline-container .swiper-pagination .swiper-pagination-bullet.completed {
    border-color: #005F31;
    color: #005F31;
}

.timeline-container .swiper-pagination-area .progress-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background-color: #FFC183;
    z-index: -1;
    top: 0;
}

.timeline-container .swiper-pagination-area {
    position: relative;
    width: 60px;
}

.timeline-container .swiper-pagination-area .progress-line .progress-line-inner {
    height: 0%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #005f31;
    z-index: -1;
    top: 0;
    transition: height 1s ease;
}

.about-legacy-section .section-head h2 {
    color: var(--color-light);
}

.slider-arrows {
    display: flex;
    justify-content: center;
    gap: 35px;
}

.slider-arrows > div {
    cursor: pointer;
}

.slider-arrows .swiper-button-disabled {
    opacity: 0.5;
    cursor: initial;
}

.glance-section {
    background-color: #005f31;
    color: #fff;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.glance-section * {
    color: inherit !important;
}

.single-line-glance-row .glace-stats-grid {
    border: none;
    border-left: 2px solid rgba(255, 255, 255, .2);
    /* padding-inline: 15px; */
}