: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 .row {
  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;
}

.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 {
  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 {
  padding: 33px 0;
  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;
}

.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: 70%;
}

.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 {
  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: 100%;
  border-radius: 10px;
}

.form {
  background-color: #f6f6f6;
  padding: 50px 35px;
  border-radius: 10px;
}

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

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

.form-control {
  padding-block: 10px;
  font-size: 15px;
  background-color: transparent;
  border: none;
  border-bottom: 0.3px solid #bbbbbb;
  border-radius: 0;
}

.form-group label {
  font-size: 17px;
  font-weight: 500;
}

.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: 1px solid #e5e5e5;
  color: var(--color-dark);
  /* height: 140px; */
  transition: 0.3s;
}

.glace-stats-grid h3 {
  font-size: 47px;
  margin-bottom: 15px;
  font-weight: 600;
}

.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 .grid-4 .glace-stats-grid:nth-child(2) {
  border-inline: 0;
}

.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: 40px;
}

.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;
    }
}