@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

html {
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
}

.navbar {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: linear-gradient(90deg, #fcfdfc 0%, rgba(223, 243, 227, 0.6) 100%);
  transition: 0.2s ease;
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.navbar.scrolled {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.navbar-toggler {
  outline: none !important;
  border: none !important;
}

.navbar-toggler:focus {
  box-shadow: unset !important;
}

.scrolled .img-brand {
  height: 60px;
}

.img-brand,
.scrolled-up .img-brand {
  height: 90px;
  transition: 0.3s ease;
}

.navbar-nav {
  gap: 50px;
}

.nav-item {
  position: relative;
}

.nav-link {
  color: #792917 !important;
  font-size: 18px !important;
  font-style: normal;
  font-weight: 500 !important;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  position: relative;
  display: flex !important;
  align-items: center;
  cursor: pointer;
}

.nav-link:after {
  content: "";
  position: absolute;
  height: 4px;
  border-radius: 4px;
  width: 30px;
  left: calc(50% - 15px);
  top: 45px;
  background: #792917;
  opacity: 0;
  height: 3px;
}

.menu-active .nav-link:after,
.page-active .nav-link:after,
.menu-temp-active .nav-link:after {
  opacity: 1;
}

.menu-active .nav-link:after,
.page-active .nav-link:after {
  width: 45px;
  left: calc(50% - 22.5px);
}

.nav-sub-menu {
  display: none;
  position: absolute;
  padding-top: 10px;
  z-index: 99;
}

.nav-sub-menu-sm {
  left: calc(50% - 115px);
}

.nav-sub-menu-md {
  left: calc(50% - 144px);
}

.menu-active .nav-sub-menu,
.menu-temp-active .nav-sub-menu {
  display: block;
}

.nav-sub-menu-item-wrapper {
  border-radius: 10px;
  background: #ededed;
  padding: 20px 15px;
  margin-top: 12px;
}

.nav-sub-menu-sm .nav-sub-menu-item-wrapper {
  width: 230px;
}

.nav-sub-menu-md .nav-sub-menu-item-wrapper {
  min-width: 288px;
}

.nav-sub-menu-items:not(:last-child) {
  margin-bottom: 10px;
}

.nav-sub-menu-link {
  display: block;
  white-space: nowrap;
  border-radius: 5px;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.88px;
  text-transform: capitalize;
  padding: 5px 10px;
  color: #848892;
  text-decoration: none;
  border-left: 3px solid transparent;
}

.nav-sub-menu-items:hover .nav-sub-menu-link {
  color: #02720d;
  border-color: transparent;
}

.nav-toggle-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-weight: 700;
  cursor: pointer;
  height: 28px;
  width: 28px;
  z-index: 999;
  flex-shrink: 0;
}

.toggler-icon-top,
.toggler-icon-middle,
.toggler-icon-bottom {
  position: absolute;
  background: #792917;
  height: 3px;
  width: 24px;
  transition: all 0.3s ease-in-out;
  border-radius: 4px;
}

.toggler-icon-top {
  transform: rotate(45deg);
  animation: icon-top-close 0.3s;
}

.toggler-icon-middle {
  opacity: 0;
  top: 15px;
}

.toggler-icon-bottom {
  transform: rotate(-45deg);
  animation: icon-bottom-close 0.3s;
}

.menu-close .toggler-icon-top,
.hover-menu-open .toggler-icon-top {
  transform: none;
  top: 7px;
  animation: icon-top-open 0.3s;
}

.menu-close .toggler-icon-middle,
.hover-menu-open .toggler-icon-middle {
  top: 15px;
  opacity: 1;
}

.menu-close .toggler-icon-bottom,
.hover-menu-open .toggler-icon-bottom {
  transform: none;
  top: 23px;
  animation: icon-bottom-open 0.3s;
}

@keyframes icon-top-open {
  from {
    top: 13px;
    transform: rotate(45deg);
  }
  to {
    top: 7px;
    transform: rotate(0deg);
  }
}
@keyframes icon-top-close {
  from {
    top: 7px;
    transform: rotate(0deg);
  }
  to {
    top: 13px;
    transform: rotate(45deg);
  }
}
@keyframes icon-bottom-open {
  from {
    top: 13px;
    transform: rotate(-45deg);
  }
  to {
    top: 23px;
    transform: rotate(0deg);
  }
}
@keyframes icon-bottom-close {
  from {
    top: 23px;
    transform: rotate(0deg);
  }
  to {
    top: 13px;
    transform: rotate(-45deg);
  }
}
.breadcrumb, .view-container {
  margin: 25px 122px;
}

.breadcrumb-item, .breadcrumb-item > * {
  color: #464646 !important;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  text-transform: capitalize;
  text-decoration: none !important;
}

.breadcrumb-item.active {
  color: #2E5EA3 !important;
  text-decoration: none !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  color: #464646 !important;
  content: var(--bs-breadcrumb-divider, "❯") !important;
}

.page-header-container {
  margin: 20px 0 60px 0;
  display: flex;
  justify-content: space-between;
}

.page-action-container {
  display: flex;
  align-items: center;
}

.page-header {
  color: #1E1E1E;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.page-header-secondary {
  text-transform: capitalize;
}

.page-action {
  position: relative;
}

.page-action:not(:last-child) {
  margin-right: 25px;
}

.lbl-highlight {
  color: #FF5B40;
}

.lbl-dark {
  color: #1E1E1E;
}

.section-container {
  margin-bottom: 60px;
}

.search-container .form-control {
  height: 40px;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  background: #FAFAFA;
  padding: 0.4rem 0.75rem 0.4rem 2.8rem;
  max-width: 300px;
}

.search-container .form-control:focus {
  border-color: #7e7e7e;
  box-shadow: 0 0 0 0.25rem rgba(126, 126, 126, 0.2509803922);
}

.section-wrapper {
  position: relative;
}

.section-usp-content {
  background: linear-gradient(90deg, #794C17 0%, #792917 0.01%, #672824 100%);
  padding: 48px 50px;
}

.section-usp-image {
  padding: 0;
  background-image: url(../images/img-usp.png);
  background-position: center;
  background-size: cover;
  min-height: 614px;
}

.usp-details {
  text-align: center;
  padding: 0 20px;
}

.usp-desc {
  color: #FFF;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 200% */
  letter-spacing: 1px;
  margin-bottom: 65px;
}

.section-product-sample {
  padding: 0;
  background-image: url(../images/img-product-sample-bg.png);
  background-position: center;
  background-size: cover;
}

.product-sample-image-container {
  display: flex;
  gap: 10px;
}

.img-product-sample {
  width: 286px;
  height: 397px;
  background-position: bottom;
  background-size: cover;
}

.product-sample-header {
  color: #FFF;
  text-shadow: 4px 4px 3px rgba(0, 0, 0, 0.35);
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 91px; /* 185.714% */
  letter-spacing: 1.96px;
  text-transform: capitalize;
}

.section-wrapper {
  margin-bottom: 100px;
}

.content-wrapper-gap {
  margin-bottom: 32px;
}

.section-header {
  color: #2E5EA3;
  font-size: 34px;
  font-weight: 500;
  letter-spacing: 2.04px;
  text-transform: lowercase;
  margin-bottom: 50px;
  margin-left: 16px;
}

.item-price-container {
  margin-bottom: 50px;
}

.item-price {
  color: #710;
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 3.6px;
  line-height: 1;
}

.item-price-prefix {
  color: #000;
  font-size: 24px;
  font-weight: 500;
  vertical-align: top;
}

.item-unit-pricing {
  color: #B4B4B4;
  font-size: 22px;
  letter-spacing: 1.56px;
  line-height: 1;
  text-transform: capitalize;
}

.item-description-container {
  position: relative;
}

.item-description-container::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 170px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff);
}

.item-description {
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: capitalize;
  height: 170px;
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
}

.description-expand-container {
  margin-top: 20px;
}

.section-form-conatiner {
  background: #FDFDFD;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

.section-form {
  padding: 100px 90px;
}

.section-form-conatiner .form-label {
  color: #414141;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.section-form-conatiner .form-control, .section-form-conatiner .form-select {
  height: 50px;
  border-radius: 8px;
  border: 1px solid #000;
  margin-bottom: 20px;
  color: #AAA;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.96px;
}

.section-end {
  padding-bottom: 150px;
}

.section-homepage-hero-wrapper {
  background-image: url(../images/img-hero.png);
  background-position: center;
  background-size: cover;
}

.section-hero-wrapper {
  background-size: cover;
}

.section-productcat-hero-wrapper {
  background-image: url(../images/img-productcat-hero.png);
  background-position: center;
}

.section-aboutus-hero-wrapper {
  background-image: url(../images/img-aboutus-hero.png);
  background-position: center;
  background-size: cover;
}

.section-contactus-hero-wrapper {
  background-image: url(../images/img-contactus-hero.png);
  background-position: center;
  background-size: cover;
}

.section-export-hero-wrapper {
  background-image: url(../images/img-export-hero.png);
  background-position: center;
  background-size: cover;
}

.section-gallery-hero-wrapper {
  background-image: url(../images/img-gallery-hero.png);
  background-position: center;
  background-size: cover;
}

.section-brands-hero-wrapper {
  background-image: url(../images/img-brands-hero.png);
  background-position: center;
  background-size: cover;
}

.section-products-hero-wrapper {
  background-image: url(../images/img-product-hero.png);
  background-position: center;
  background-size: cover;
}

.section-home-about-wrapper {
  position: relative;
  min-height: 498px;
}

.img-style {
  position: absolute;
}

.section-home-about-wrapper .style-1 {
  top: 158px;
  left: 0;
}

.footer-area .img-style {
  opacity: 0.3;
}

.section-inner, .section-aboutus-feature {
  margin-left: auto;
  margin-right: auto;
  padding-top: 1px;
  padding-bottom: 1px;
}

.section-hero:not(.section-page-hero-wrapper .section-hero) {
  max-width: 1024px;
}

.section-aboutus-feature {
  max-width: 1110px;
  padding: 0 50px;
}

.section-inner:not(.section-hero) {
  padding: 60px 20px;
}

.section-products-wrapper {
  background-image: url(../images/img-products-bg.png);
  background-position: center;
  background-size: cover;
  margin-bottom: 0;
}

.section-products {
  text-align: center;
}
.section-products .img-product-brand {
  margin-bottom: 47px;
  height: 90px;
  max-height: unset;
  max-width: unset;
  width: auto;
}
.section-products .product-card-action:hover {
  background: #edeff6;
}

.section-testimonial-wrapper {
  background-image: url(../images/img-testimonial-bg.png);
  background-position: center;
  background-size: cover;
  margin-bottom: 0;
}

.testimonial-banner-wrapper {
  padding: 0 20px;
}

.testimonial-banner {
  position: relative;
  max-width: 1125px;
  width: 100%;
  min-height: 388px;
  height: auto;
  flex-shrink: 0;
  border-radius: 34px;
  background: rgba(82, 79, 79, 0.6705882353);
  padding: 95px 140px 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 62px;
  margin-top: 62px;
}

.testimonial-banner::before, .testimonial-banner::after {
  content: '"';
  position: absolute;
  background-color: #C1F499;
  height: 70px;
  width: 70px;
  mask-image: url(../icons/quote.svg);
  -webkit-mask-image: url(../icons/quote.svg);
}

.testimonial-banner::before {
  top: -32px;
  left: 26px;
}

.testimonial-banner::after {
  bottom: -32px;
  right: 26px;
  transform: rotateY(180deg);
}

.testimonial-content {
  color: #FFF;
  font-size: 34px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.36px;
  margin-bottom: 35px;
  height: 156px;
  overflow-y: auto;
}

.testimonial-sign {
  color: #D1FFD5;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.36px;
  text-transform: capitalize;
  text-align: right;
}

.hero-header {
  text-align: center;
  color: #EEFEEE;
  text-shadow: 0px 4px 10px rgba(0, 0, 0, 0.36);
  font-size: 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 6.4px;
  padding: 0 20px;
  text-transform: capitalize;
}

.about-us-header {
  text-align: center;
  color: #072C0A;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 1.12px;
  text-transform: capitalize;
  margin-bottom: 100px;
}

.about-us-desc {
  text-align: center;
  color: #000;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 200% */
  letter-spacing: 0.6px;
  padding: 0 20px;
  margin-bottom: 64px;
}

.section-director-desk {
  margin-bottom: 120px;
}

.owner-details-wrapper {
  margin-bottom: 60px;
}

.owner-details-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.img-owner {
  background-size: cover;
  background-position: center;
  width: 100%;
  max-width: 426px;
  height: 522px;
  border-radius: 14px;
  margin-bottom: 24px;
}

.owner-name, .owner-desgn {
  color: #4F4F4F;
  text-align: center;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px; /* 166.667% */
  letter-spacing: 0.6px;
  text-transform: capitalize;
}

.director-msg {
  color: #792917;
  text-align: justify;
  font-size: 22px;
  font-style: italic;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: 0.72px;
}

.section-future {
  padding: 0 30px 70px;
}

.future-details-container {
  margin-bottom: 100px;
}

.future-icon-container {
  text-align: center;
  margin-bottom: 30px;
}

.future-title {
  text-align: center;
  color: #792917;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 0.8px;
  text-transform: capitalize;
}

.future-desc {
  color: #000;
  text-align: justify;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.48px;
}

.gallery-header, .brands-header, .product-header {
  text-align: center;
  color: #072C0A;
  font-size: 56px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.12px;
  text-transform: capitalize;
  margin-bottom: 100px;
}

.page-description {
  color: #343434;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 230.769% */
  letter-spacing: 0.52px;
  margin-bottom: 150px;
  padding: 0 30px;
}

.product-desc {
  color: #5A745D;
  font-size: 34px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px; /* 176.471% */
  letter-spacing: 0.68px;
  text-align: center;
  padding: 0 30px;
  margin-bottom: 50px;
}

.brand-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-bottom: 96px;
}

.brand-name {
  color: #252424;
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 130.435% */
  letter-spacing: 0.92px;
  text-transform: capitalize;
}

.product-items {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.lbl-product-card-name {
  color: #484A49;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  height: 96px;
  text-align: center;
}

.product-card-action {
  display: inline-flex;
  width: 162px;
  height: 58px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 44px;
  background: #792917;
  border: 1px solid #792917;
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.3607843137);
  color: #F3F5F4;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  text-transform: capitalize;
  text-decoration: none;
  transition: ease 0.3s;
}

.product-card-action:hover {
  background: transparent;
  color: #792917;
}

.category-tab-container {
  position: sticky;
  top: 100px;
}

.product-nav-tabs {
  gap: 60px;
  margin-bottom: 110px;
}

.tab-link {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  border-radius: 6px;
  background: #F4F4F4;
  color: #000;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  padding: 22px;
}

.active.tab-link {
  background: #C4F4BD;
}

.tab-link-menu .tab-link {
  display: flex !important;
  justify-content: unset !important;
  border-radius: 6px !important;
  background: transparent !important;
  padding: 10px 15px !important;
}
.tab-link-menu .active.tab-link {
  background: #ededed !important;
}

.btn-tab-link-selector {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 300px;
  height: 48px;
  border-radius: 14px;
  border: 0px solid rgba(216, 216, 216, 0);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
}

.btn-tab-link-selector.show {
  border-radius: 14px 14px 0 0;
}

.tab-link-menu,
.btn-tab-link-selector, .btn-tab-link-selector:active {
  background: #f6f6f6;
}

.btn-tab-link-selector,
.btn-tab-link-selector:active {
  color: #A46A14;
}

.tab-link-menu {
  padding: 20px;
  width: -webkit-fill-available;
  transform: translate3d(0px, 35px, 0px) !important;
  border: unset;
  border-radius: 14px;
}
.tab-link-menu .tab-item {
  margin-left: 0;
}
.tab-link-menu .tab-item:not(:last-child) {
  margin-bottom: 10px;
}

.btn-tab-link-selector::after {
  content: unset;
}

.product-sub-category {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 1; /* 200% */
  letter-spacing: 0.6px;
  text-transform: capitalize;
  margin-bottom: 62px;
}

.product-wrapper {
  padding-top: 120px;
}

.product-wrapper:not(:last-child) {
  border-bottom: 1px solid #e5e5e5;
}

.section-product-details-wrapper {
  margin-top: 160px;
  padding: 0 30px;
}

.product-details-conatiner {
  margin-bottom: 175px;
}

.img-product-details {
  max-width: 392px;
  max-height: 450px;
}

.product-details-header {
  color: #792917;
  font-family: Inter;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.product-details {
  color: #676767;
  text-align: justify;
  font-family: Inter;
  font-size: 22px;
  font-style: normal;
  font-weight: 600;
  line-height: 46px; /* 209.091% */
}

.product-variation-wrapper {
  margin-bottom: 250px;
}

.product-variation-header {
  color: #792917;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: 100px;
}

.product-variation-container {
  text-align: center;
  margin-bottom: 60px;
}

.img-product-var {
  height: 220px;
  margin-bottom: 20px;
}

.product-tittle-container {
  color: #3E3E3E;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.4px;
  text-transform: capitalize;
  height: 65px;
}

.product-price {
  color: #902D17;
  text-align: center;
  font-family: Inter;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.52px;
  text-transform: capitalize;
}

.img-product-brand {
  max-width: 90px;
  max-height: 130px;
}

.product-image-container, .product-details-image-container {
  margin-bottom: 30px;
}

.product-image-container {
  height: 284px;
  display: flex;
  align-items: end;
}

.img-products {
  max-width: 204px;
  max-height: 284px;
  margin-bottom: 10px;
}

.img-gallery {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 305px;
  border-radius: 10px;
  box-shadow: 0px 4px 6px 0px rgba(0, 0, 0, 0.2509803922);
  margin-bottom: 30px;
}

.section-export-intro {
  margin-bottom: 60px;
}

.export-header {
  color: #792917;
  font-size: 46px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.84px;
  text-transform: capitalize;
  margin-bottom: 70px;
}

.export-desc {
  color: #343434;
  text-align: justify;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 230.769% */
  letter-spacing: 0.52px;
}

.delivery-range-desc {
  color: #343434;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 230.769% */
  letter-spacing: 0.52px;
  margin-bottom: 48px;
}

.section-homepage-hero-wrapper .hero-header {
  padding: 220px 30px 0;
  margin-bottom: 62px;
}

.section-page-hero-wrapper {
  min-height: 838px;
  display: flex;
  align-items: center;
}

.section-page-hero-wrapper .hero-header {
  padding: 150px 30px;
}

.hero-sub-header, .hero-description {
  color: #E9E9E9;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.28px;
  text-align: center;
  padding: 0 20px;
}

.home-about-header, .home-products-header {
  text-align: center;
  color: #060A2E;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: capitalize;
  margin-bottom: 115px;
}

.home-products-header {
  margin-bottom: 90px;
}

.home-about-desc {
  color: #6C6C6C;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px; /* 156.25% */
  letter-spacing: 1.28px;
  margin-bottom: 115px;
  max-width: 1414px;
  margin-left: auto;
  margin-right: auto;
}

.section-usp-header {
  text-align: center;
  color: #C2F6C7;
  text-align: center;
  font-family: Inter;
  font-size: 44px;
  font-weight: 600;
  line-height: 50px; /* 113.636% */
  letter-spacing: 1.76px;
  text-transform: capitalize;
  margin-bottom: 148px;
}

.partners-header {
  text-align: center;
  color: #684029;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0.52px;
  text-transform: capitalize;
  margin-bottom: 50px;
}

.commiment-header {
  text-align: center;
  color: #863A0D;
  font-size: 36px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: capitalize;
  margin-bottom: 70px;
}

.page-section-aboutus-header {
  color: #595959;
  font-size: 36px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: capitalize;
  margin-bottom: 70px;
}

.testimonial-header {
  color: #FFF;
  font-size: 50px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 2px;
  text-transform: capitalize;
  text-align: center;
  margin-bottom: 76px;
}

.productcat-header {
  color: #060A2E;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.6px;
  text-transform: capitalize;
  margin-top: 12px;
  margin-bottom: 34px;
}

.hero-sub-header {
  margin-bottom: 50px;
}

.section-page-hero-wrapper .hero-sub-header {
  color: #D7EEFB;
  font-size: 40px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  margin-bottom: 150px;
}

.productcat-sub-header {
  color: #BCBCBC;
  text-align: center;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.4px;
  text-transform: lowercase;
  margin-bottom: 80px;
}

.hero-description {
  color: #A1A1A1;
  margin: 20px 15px 100px;
  margin-bottom: 68px;
}

.hero-cta-wrapper {
  margin-bottom: 60px;
  text-align: center;
}

.hero-cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 84px;
  width: 266px;
  border-radius: 12px;
  border-radius: 12px;
  background: linear-gradient(180deg, #FFF 0%, #6D1B09 0%, rgba(143, 37, 13, 0.4392156863) 100%) !important;
  text-decoration: none;
  text-align: center;
  color: #FFF !important;
  font-size: 30px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 1.2px;
  text-transform: capitalize;
}

.hero-cta:hover {
  background: rgba(143, 37, 13, 0.3647058824) !important;
  box-shadow: 0 0 4px rgba(68, 15, 3, 0.8901960784);
}

.benefit-card, .export-card {
  padding: 20px;
  text-align: center;
  margin-bottom: 85px;
}

.export-card-container, .export-card {
  display: flex;
  flex-direction: column;
}

.export-card {
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  flex: 1;
}

.card-icon-container, .benefit-card-icon-container {
  margin-bottom: 37px;
}

.card-image-container {
  margin-bottom: 30px;
}

.brand-card-wrapper {
  margin: 20px 20px 250px;
}

.brand-card-container {
  padding: 0 20px;
  display: grid;
}

.brand-cards {
  text-decoration: none;
  display: inline-flex;
  padding: 36px 30px;
  align-items: flex-start;
  gap: 42px;
  border-radius: 18px;
  background: #FBFBFB;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.179);
  margin-bottom: 50px;
  transition: ease 0.3s;
}

.brand-cards:hover {
  transform: translateY(-10px);
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.brand-card-image-container {
  width: 25%;
}

.brand-card-details-container {
  width: 75%;
}

.brand-card-header {
  color: #344F36;
  font-size: 42px;
  font-style: normal;
  font-weight: 600;
  line-height: 51.242px; /* 120% */
  letter-spacing: 0.854px;
  text-transform: capitalize;
  margin-bottom: 50px;
}

.brand-card-desc {
  color: #767575;
  text-align: justify;
  font-family: Inter;
  font-size: 20.497px;
  font-style: normal;
  font-weight: 400;
  line-height: 51.242px; /* 250% */
  letter-spacing: 0.41px;
}

.benefit-card-header, .commiment-card-header {
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0.52px;
}

.benefit-card-header {
  color: #000;
  margin-bottom: 26px;
}

.commiment-card-header {
  color: #8D754F;
  margin-bottom: 36px;
}

.export-card-details-container {
  border-radius: 20px;
  background: #F6F6F6;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2509803922);
  padding: 30px 27px 35px;
  flex: 1;
}

.export-card-details-header {
  color: #792917;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 60px; /* 250% */
  letter-spacing: 0.48px;
  text-transform: capitalize;
  margin-bottom: 42px;
}

.export-grade-container:not(:last-child) {
  margin-bottom: 28px;
}

.lbl-export-grades {
  color: #7C6964;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.36px;
  text-transform: capitalize;
  text-align: left;
}

.productcat-card {
  margin-bottom: 50px;
}

.productcat-card-image-container {
  text-align: center;
}

.card-image {
  width: 304px;
  height: 304px;
  border-radius: 50%;
  background-size: cover;
  background-repeat: no-repeat;
  margin-left: auto;
  margin-right: auto;
}

.card-image-sm {
  width: 288px;
  height: 288px;
}

.img-productcat {
  width: 90%;
  max-width: 380px;
  height: 380px;
  margin-bottom: 36px;
  margin-left: auto;
  margin-right: auto;
  background-position: center;
  box-shadow: 8px 8px 10px 0px rgba(0, 0, 0, 0.25);
}

.img-about-section-1 {
  margin-bottom: 90px;
}

.img-about-section-2 {
  margin-bottom: 120px;
}

.img-usp-details {
  width: 90px;
  height: 90px;
}

.img-esteemed-client-logo {
  max-height: 118px;
  max-width: 234px;
}

.aboutus-image-gallary-wrapper {
  text-align: center;
}

.img-aboutus-gallary {
  max-width: 414px;
  width: 100%;
}

.productcat-card-header {
  color: #D3B5A3;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  letter-spacing: 0.48px;
  text-transform: capitalize;
}

.benefit-card-desc {
  color: #949494;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.28px;
  margin-bottom: 26px;
}

.commiment-card-desc {
  color: #ABABAB;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
}

.export-card-header {
  color: #05600E;
  font-size: 26px;
  font-style: normal;
  font-weight: 600;
  line-height: 60px; /* 230.769% */
  letter-spacing: 0.52px;
  text-transform: capitalize;
  margin-bottom: 24px;
}

.page-productcat, .page-section {
  max-width: 1650px;
  margin-left: auto;
  margin-right: auto;
}

.page-productcat-header,
.productcat-application-header {
  font-size: 28px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.56px;
  text-transform: capitalize;
}

.page-productcat-header {
  color: #A0430D;
  margin-bottom: 40px;
}

.productcat-application-header {
  color: #B1734E;
  margin-bottom: 40px;
}

.page-productcat-desc {
  max-width: 467px;
  color: #303030;
  text-align: justify;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.4px;
  margin-bottom: 40px;
  min-height: 80px;
}

.productcat-application-wrapper {
  display: flex;
  gap: 52px;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
}

.productcat-application-container {
  display: flex;
  gap: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.productcat-application-icon-conatiner {
  display: flex;
  width: 90px;
  height: 90px;
  padding: 25px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: #E9E9E9;
}

.lbl-productcat-application {
  color: #B7730E;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
}

.btn-cta-container {
  display: flex;
  gap: 25px;
}

.btn-cta, .btn-cta-enquiry {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 134px;
  height: 45px;
  border-radius: 6px;
  color: #FFF;
  border: none !important;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.36px;
  text-transform: capitalize;
}

.btn-cta {
  background: #B06437 !important;
}

.btn-cta-enquiry {
  background: #25d366 !important;
}

.contactus-form-container,
.contactus-details-container {
  padding: 56px !important;
  border-radius: 12px;
}

.contactus-details-container {
  padding-bottom: 0 !important;
}

.contactus-form-container {
  background: #FBFBFB;
}

.contactus-form-header {
  color: #0B5B13;
  text-align: center;
  font-size: 30px;
  font-weight: 500;
  line-height: 65px;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  margin-bottom: 80px;
}

.contactus-form-container .form-control {
  padding: 0.75rem 1rem;
}

.contact-details-wrapper {
  margin-bottom: 78px;
}

.contact-details-wrapper:first-child {
  margin-top: 24px;
}

.contact-details {
  color: #605757;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-details:hover {
  text-decoration: none;
  color: #605757;
}

.contact-details-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 46px;
  height: 46px;
  padding: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #E6E6E6;
}

.contactus-map-container iframe {
  width: 100% !important;
  height: 420px;
}

.contact-map {
  border-radius: 12px;
}

.page-section-image-wrapper {
  margin-bottom: 25px;
}

.img-aboutus-brand {
  width: 100%;
  max-width: 295px;
  flex-shrink: 0;
}

.img-page-section {
  width: 100%;
  height: 400px;
  border-radius: 0 38px 0 38px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.section-alter .img-page-section {
  border-radius: 38px 0 38px 0;
}

.section-alter .page-section-content-wrapper {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.page-section-content {
  color: #343434;
  text-align: justify;
  font-family: Inter;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 230.769% */
  letter-spacing: 0.52px;
}

.page-section-header-container {
  position: relative;
}

.page-section-header {
  position: relative;
  color: #3F3F3F;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.6px;
  text-transform: capitalize;
  margin-bottom: 80px;
  width: -moz-max-content;
  width: max-content;
  display: inline-flex;
}

.page-section-header::after {
  position: absolute;
  content: "";
  top: 50px;
  left: 0;
  right: 0;
  width: 85%;
  height: 4px;
  background: #DE9E79;
}

.page-section-description {
  color: #525252;
  text-align: justify;
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: 60px; /* 272.727% */
  margin-bottom: 100px;
}

.page-section-image-wrapper {
  --bs-gutter-x: 3rem !important;
}

.page-section-image-container {
  display: block;
  position: relative;
  margin-bottom: 68px;
}

.page-seciton-image {
  width: 100%;
  height: 288px;
  background-position: center;
  background-size: cover;
  box-shadow: 2px 4px 4px 0px rgba(0, 0, 0, 0.3019607843);
  border-radius: 10px;
}

.page-seciton-image-modal {
  width: 100%;
  height: 75vh;
  max-height: 600px;
  background-position: center;
  background-size: cover;
  border-top-right-radius: var(--bs-modal-inner-border-radius);
  border-top-left-radius: var(--bs-modal-inner-border-radius);
}

.modal-image-only {
  border-radius: var(--bs-modal-inner-border-radius);
}

.section-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: inherit;
  background: transparent;
}

a.page-section-image-container:hover .section-image-overlay {
  background: rgba(0, 0, 0, 0.0941176471);
}

.seciton-image-desc {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 96px;
  flex-shrink: 0;
  padding: 20px;
  background: rgba(0, 0, 0, 0.7098039216);
  border-radius: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  text-align: center;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px;
  text-transform: capitalize;
}

a.page-section-image-container:hover .seciton-image-desc {
  -webkit-backdrop-filter: blur(6px);
          backdrop-filter: blur(6px);
}

.color-option-container {
  margin-bottom: 50px;
}

.color-option-container:last-child {
  margin-bottom: 100px;
}

.color-option-header {
  color: #656565;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
  text-transform: capitalize;
  margin-bottom: 30px;
}

.color-option-wrapper {
  display: flex;
  flex-wrap: wrap;
}

.color-option {
  display: inline-flex;
  height: 40px;
  width: 100%;
  padding: 15px 18px 14px 19px;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  border-radius: 12px;
  background: #AAA;
  margin-bottom: 20px;
  color: #FFF;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.32px;
  text-transform: capitalize;
}

.aboutus-feature-header {
  color: #5B2506;
  font-size: 36px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.72px;
  text-transform: capitalize;
  margin-bottom: 70px;
}

.aboutus-feature-header-hightlight {
  font-weight: 600;
}

.aboutus-feature-item {
  display: flex;
  align-items: center;
  gap: 27px;
}

.aboutus-feature-item:not(:last-child) {
  margin-bottom: 38px;
}

.lbl-aboutus-feature {
  color: #454545;
  font-size: 28px;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
}

.aboutus-feature-content-wrapper, .aboutus-feature-image-wrapper {
  display: flex;
}

.aboutus-feature-content-wrapper {
  flex-direction: column;
  justify-content: start;
}

.aboutus-feature-image-wrapper {
  justify-content: end;
}

.primary-card-wrapper, .secondary-card-wrapper,
.productcat-wrapper {
  max-width: 1870px;
  margin-left: auto;
  margin-right: auto;
}

.productcat-wrapper {
  margin-bottom: 10px;
}

.primary-card-container, .primary-card-container {
  padding-bottom: 1px;
}

.primary-card, .secondary-card {
  flex-shrink: 0;
  margin: 0 20px 40px 30px;
}

.primary-card {
  max-width: 400px;
  border-radius: 8px;
  background: radial-gradient(274.89% 100.91% at 93.75% 5.45%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(21px);
          backdrop-filter: blur(21px);
  margin: 0 20px 40px 30px;
}

.secondary-card {
  max-width: 335px;
  border-radius: 10px;
  margin: 0 18px 60px 18px;
  box-shadow: 4px 4px 14px 0px rgba(0, 0, 0, 0.2);
}

.primary-card-image-container,
.secondary-card-image-container {
  max-height: 376px;
  background: #fff;
}

.primary-card-image-container {
  border-radius: 8px 8px 0 0;
}

.secondary-card-image-container {
  border-radius: 10px 10px 0 0;
}

.img-primary-card, .img-secondary-card {
  width: 100%;
}

.img-primary-card {
  border-radius: 8px 8px 0 0;
}

.img-secondary-card {
  border-radius: 10px 10px 0 0;
}

.primary-card-details {
  padding: 8px 22px 0;
}

.primary-card-header, .secondary-card-header {
  font-weight: 500;
  margin-bottom: 15px;
}

.primary-card-header {
  color: #FFAF45;
  font-size: 30px;
  letter-spacing: 1.36px;
  text-transform: capitalize;
}

.secondary-card-header {
  color: #FF5B40;
  font-size: 18px;
  letter-spacing: 1.08px;
  text-transform: uppercase;
}

.primary-card-desc {
  min-height: 118px;
  color: #FFF;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px; /* 137.5% */
  text-transform: capitalize;
  margin-bottom: 5px;
  border-radius: 0 0 8px 8px;
}

.secondary-card-details, .secondary-card-action {
  height: 104px;
  border-radius: 0 0 10px 10px;
}

.secondary-card-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: -webkit-fill-available;
}

.secondary-card-desc {
  color: #9F9F9F;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.primary-card-action, .secondary-card-action {
  text-align: center;
}

.secondary-card-action {
  display: none;
  background: #FF5B40;
  border-radius: 0 0 10px 10px;
}

.secondary-card:hover .secondary-card-details {
  display: none;
}

.secondary-card:hover .secondary-card-action {
  display: flex;
}

.primary-card-action-link, .secondary-card-action-link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.primary-card-action-link {
  height: 55px;
  color: #ebebeb;
  text-decoration: none;
  font-weight: 500;
  line-height: 20px; /* 125% */
  letter-spacing: 0.64px;
  text-transform: capitalize;
}

.secondary-card-action-link {
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  text-decoration: none;
  color: #FFF;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  text-transform: uppercase;
}

.primary-card-action-link:hover {
  color: #ffd3ba;
}

.secondary-card-action-link:hover {
  color: #FFF;
}

.contact-details-container {
  padding-left: 140px;
  position: relative;
  margin: 30px 170px;
}

.contact-details-card {
  width: 518px;
  height: 590px;
  background: #2E5EA3;
  padding: 55px;
  position: absolute;
  left: 0;
  top: 70px;
  bottom: 70px;
}

.contact-card-header {
  color: #FCFCFC;
  font-size: 40px;
  font-weight: 500;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 55px;
}

.contact-details-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 54px;
}

.lbl-contact-item {
  color: #EBEBEB;
  font-size: 20px;
  letter-spacing: 0.8px;
}

.section-body {
  max-width: 1535px;
  margin-left: auto;
  margin-right: auto;
}

.secton-image-container {
  text-align: right;
}

.section-secondary .section-content {
  padding: 80px 0;
}

.section-alpha .section-content {
  padding: 40px 0;
}

.section-content-header {
  color: #CF5D4A;
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: capitalize;
  margin-bottom: 70px;
}

.section-alpha .section-content-header {
  margin-bottom: 50px;
}

.section-content-details {
  display: flex;
  align-items: center;
  color: #595959;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 36px;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  margin-bottom: 90px;
}

.section-alpha .section-content-details {
  margin-bottom: 50px;
}

.lbl-img-sm {
  color: #5F5F5F;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: capitalize;
  text-align: center;
}

.table-primary {
  width: 100%;
}

.table-head-primary {
  background: #7B503A;
}

.table-primary tr:nth-child(odd):not(.table-head-primary) {
  background: #FFF9F5;
}

.table-primary tr:nth-child(even) {
  background: #FEECE3;
}

.table-primary, .table-primary th, .table-primary td {
  border: 1px solid #CDCDCD;
  border-collapse: collapse;
}

.table-primary th, .table-primary td {
  padding: 15px 20px;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.64px;
  text-transform: capitalize;
}

.table-primary th {
  font-weight: 500;
  color: #FFF;
}

.table-primary td {
  color: #434343;
}

.footer-area {
  position: relative;
  background: #EDEDED;
  color: #424242;
  min-height: 15vh;
  overflow-x: hidden;
  padding: 36px;
}

.brand-logo-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer-nav-container {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.footer-nav-item {
  cursor: pointer;
  position: relative;
}

.footer-nav-item:not(:last-child) {
  margin-bottom: 20px;
}

.footer-header {
  cursor: default !important;
  color: #792917;
  font-size: 26px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 107.692% */
  letter-spacing: 0.26px;
  text-transform: capitalize;
}

.footer-header::after {
  content: "";
  background: #2BB339;
  height: 3px;
  width: 82px;
  border-radius: 4px;
  position: absolute;
  top: 40px;
  left: 0;
}

.footer-nav-link {
  text-decoration: none;
  color: unset;
  color: #C7DDCF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 2.08px;
  text-transform: uppercase;
}

a.footer-nav-link:hover {
  color: #FFD7D2;
}

.footer-sub-menu {
  padding: 30px 0 0;
}

.footer-sub-menu-items, .footer-links {
  color: #818181;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px; /* 175% */
  text-transform: capitalize;
  text-decoration: none;
}

.footer-sub-menu-items:hover, .footer-links:hover {
  color: #02720d;
  text-decoration: none;
}

.footer-links {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.footer-links {
  margin-bottom: 15px;
}

.lbl-footer-links {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.8px;
}

.lbl-social-header {
  color: #FFF;
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.6px;
  margin-bottom: 34px;
}

.social-icon-wrapper {
  display: inline-flex;
  height: 80px;
  flex-wrap: wrap;
}

.social-icon-conatiner {
  width: 65px;
  margin-bottom: 15px;
}

.social-icons {
  width: 36px;
  height: 36px;
}

.lbl-copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.12px;
  text-transform: capitalize;
}

.modal-content {
  position: relative;
  border: none;
  border-radius: 12px;
}

.btn-image-view-close {
  position: absolute;
  right: 5px;
  top: 5px;
}

.lbl-proj-name {
  color: #824521;
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: 30px; /* 300% */
  text-transform: capitalize;
  text-align: center;
}

.lbl-proj-desc {
  color: #555;
  text-align: justify;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 38px; /* 375% */
  text-transform: capitalize;
  text-align: center;
}

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

.lbl-semi-bold {
  font-weight: 500;
}

.lbl-regular {
  font-weight: 400;
}

.lbl-normalize {
  text-transform: none !important;
}

.cursor-pointer {
  cursor: pointer;
}

.section-after-gap-lg {
  margin-bottom: 150px;
}

.btn-icon-only {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
}

.btn-page-action {
  height: 40px;
  width: 120px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px !important;
  background-color: #2E5EA3 !important;
  border-color: #2E5EA3 !important;
  color: #FBFBFB;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 50px;
  letter-spacing: 0.72px;
}

.btn-chat-whatsapp, .btn-enquire {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 15px 46px !important;
  border-radius: 10px !important;
  background: #25d366 !important;
  border: 3px solid #25d366 !important;
}

.btn-chat-whatsapp:hover {
  background: transparent !important;
}

.lbl-contactus {
  color: #FFF;
  font-size: 25px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.5px;
  text-transform: capitalize;
}

.btn-chat-whatsapp:hover .lbl-contactus {
  color: #25d366;
}

.primary-action-container .btn-card-action {
  margin-left: auto;
  margin-right: auto;
}

.btn-card-action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 230px;
  height: 60px;
  border: 1px solid transparent;
  text-decoration: none;
  color: #FEFEFE;
}

.btn-card-action:hover {
  border: 1px solid #252525;
  background: linear-gradient(90deg, rgba(140, 140, 140, 0.3294117647) 0%, rgba(255, 216, 189, 0) 100%);
  color: #FEFEFE;
}

.btn-section-action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 176px;
  height: 45px;
  border-radius: 4px;
  color: #fefefe;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.36px;
  text-transform: capitalize;
}

.btn-section-action:hover {
  color: #fefefe;
}

.btn-action-primary {
  background: #2E5EA3;
  border: 1px solid #2E5EA3;
}

.btn-action-primary:hover {
  background: transparent;
  border: 1px solid #2E5EA3;
  color: #FF5B40;
}

.btn-pay {
  width: 306px;
  padding: 15px;
  border-radius: 12px;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

.btn-pay:hover {
  background: #2E5EA3;
  color: #fefefe;
}

.btn-action-transparent {
  background: transparent;
  border: none;
  color: #3A6950;
  justify-content: left;
}

.btn-action-transparent:hover {
  background: transparent;
  color: #2E5EA3;
}

.btn-link {
  color: #FF5B40;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.96px;
  text-transform: capitalize;
  text-decoration: none !important;
}

.btn-link:hover {
  text-decoration: none;
  color: #FF5B40 !important;
}

.img-hero-brand {
  height: 200px;
}

.img-section {
  width: 90%;
}

.image-container-sm {
  text-align: center;
}

.img-section-gallery {
  width: 85%;
}

.img-footer-brand {
  width: 400px;
  margin-bottom: 30px;
}

.img-social-icon {
  width: 84%;
}

.icon-common,
.header-style::after,
.testimonial-banner::before, .testimonial-banner::after {
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-position: center;
  mask-size: 100%;
  -webkit-mask-size: 100%;
  display: inline-block;
  /* background-color: #000; */
  vertical-align: middle;
  text-align: center;
  flex-shrink: 0;
}

.icon-nav {
  height: 24px;
  width: 24px;
  background-color: #792917;
}

.icon-card-action {
  width: 22px;
  height: 22px;
  background-color: #ebebeb;
  margin-left: 18px;
}

.secondary-card-action .icon-card-action {
  background-color: #FFf;
}

.icon-page-action {
  width: 24px;
  height: 24px;
  background-color: #646464;
}

.icon-btn-link {
  width: 20px;
  height: 20px;
  background-color: #191919;
}

.btn-primary .icon-page-action {
  background-color: #FBFBFB;
  margin-right: 10px;
}

.icon-section-action, .icon-action-button {
  width: 18px;
  height: 18px;
  margin-left: 8px;
}

.icon-contact-card {
  height: 38px;
  width: 38px;
  background-color: #F4F4F4;
  margin-right: 18px;
}

.icon-card, .icon-benefit-card {
  width: 68px;
  height: 68px;
  background-color: #8E7262;
}

.icon-productcat-application {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background-color: #1F3B85;
}

.icon-aboutus-feature {
  width: 50px;
  height: 50px;
}

.icon-contact-us {
  width: 32px;
  height: 32px;
  background-color: #fff;
}

.icon-cta {
  width: 18px;
  height: 18px;
  background-color: #fff;
}

.btn-chat-whatsapp:hover .icon-contact-us {
  background-color: #25D366;
}

.btn-action-primary .icon-section-action, .btn-primary .icon-action-button {
  background-color: #FEFEFE;
}

.btn-action-primary:hover .icon-section-action {
  background-color: #FF5B40;
}

.btn-pay:hover .icon-section-action {
  background-color: #FEFEFE;
}

.btn-action-transparent .icon-section-action {
  background-color: #3A6950;
}

.btn-action-transparent:hover .icon-section-action {
  background-color: #2E5EA3;
}

.icon-card-action, .icon-section-action,
.btn .icon-arrow-right {
  animation: flicker-reverse 0.4s ease-in-out forwards;
  transform: translate(0, 2px);
}

.primary-card-action-link:hover .icon-card-action {
  background-color: #ffd3ba;
}

.secondary-card-action-link:hover .icon-card-action {
  background-color: #FFF;
}

.primary-card-action-link:hover .icon-card-action,
.secondary-card-action-link:hover .icon-card-action,
.btn-section-action:hover .icon-section-action,
.btn:hover .icon-arrow-right {
  animation: flicker-forward 0.4s ease-in-out forwards;
  transform: translate(4px, 2px);
}

.icon-section-details {
  width: 60px;
  height: 60px;
  background-color: #D4D4D4;
}

.icon-social-link {
  height: 30px;
  width: 30px;
  background-color: #b6b6b6;
}

.icon-footer-links {
  width: 20px;
  height: 20px;
  background-color: #0B5B13;
}

.icon-contact-details {
  width: 26px;
  height: 26px;
  background-color: #2BB339;
}

.footer-links:hover .icon-footer-links {
  background-color: #02720d;
}

.icon-footer-links:first-child {
  margin-right: 10px;
}

.icon-nav:last-child {
  margin-left: 8px;
}

.icon-float-btn {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background-color: #FFF;
}

.icon-carousel-control {
  width: 3rem;
  height: 3rem;
  background-color: #c3c3c3;
}

.icon-future {
  width: 115px;
  height: 115px;
}

.icon-chevron, .icon-chevron-right, .next-icon, .prev-icon {
  mask-image: url(../icons/chevron-down.svg);
  -webkit-mask-image: url(../icons/chevron-down.svg);
}

.header-style {
  position: relative;
}

.header-style::after {
  content: "";
  position: absolute;
  bottom: -52px;
  left: calc(50% - 277.5px);
  right: calc(50% - 277.5px);
  height: 45px;
  width: 555px;
  mask-image: url(../icons/header-style.png);
  -webkit-mask-image: url(../icons/header-style.png);
  background-color: #880E11;
}

.header-style-light::after {
  background-color: #fff;
}

.menu-active .icon-chevron {
  transform: rotateX(180deg);
}

.icon-chevron-right, .next-icon {
  transform: rotate(-90deg);
}

.prev-icon {
  transform: rotate(90deg);
}

.footer-nav-item:hover .icon-chevron-right {
  background-color: #FFD7D2;
}

.menu-active .icon-chevron-right {
  transform: unset;
  background-color: #FFD7D2;
}

.icon-arrow-right {
  mask-image: url(../icons/arrow.svg);
  -webkit-mask-image: url(../icons/arrow.svg);
}

.icon-arrow-down {
  mask-image: url(../icons/arrow-down-short.svg);
  -webkit-mask-image: url(../icons/arrow-down-short.svg);
}

.icon-filter {
  mask-image: url(../icons/filter.svg);
  -webkit-mask-image: url(../icons/filter.svg);
}

.icon-search {
  mask-image: url(../icons/search.svg);
  -webkit-mask-image: url(../icons/search.svg);
}

.search-container .icon-search {
  position: absolute;
  top: 9px;
  left: 10px;
}

.icon-location {
  mask-image: url(../icons/location.svg);
  -webkit-mask-image: url(../icons/location.svg);
}

.icon-email {
  mask-image: url(../icons/envelope.svg);
  -webkit-mask-image: url(../icons/envelope.svg);
}

.icon-telephone {
  mask-image: url(../icons/telephone.svg);
  -webkit-mask-image: url(../icons/telephone.svg);
}

.icon-craftsmanship {
  mask-image: url(../icons/craftsmanship.svg);
  -webkit-mask-image: url(../icons/craftsmanship.svg);
}

.icon-design {
  mask-image: url(../icons/design.svg);
  -webkit-mask-image: url(../icons/design.svg);
}

.icon-quality {
  mask-image: url(../icons/seal-check-fill.svg);
  -webkit-mask-image: url(../icons/seal-check-fill.svg);
}

.icon-aboutus-feature.icon-quality {
  background-color: #4269B6;
}

.icon-innovation {
  mask-image: url(../icons/bulb-filled.svg);
  -webkit-mask-image: url(../icons/bulb-filled.svg);
  background-color: #C99102;
}

.icon-customization {
  mask-image: url(../icons/design-ideas.svg);
  -webkit-mask-image: url(../icons/design-ideas.svg);
  background-color: #7A1552;
}

.icon-environment {
  mask-image: url(../icons/plant-fill.svg);
  -webkit-mask-image: url(../icons/plant-fill.svg);
  background-color: #02650C;
}

.icon-tick-circle {
  mask-image: url(../icons/tick-circle.svg);
  -webkit-mask-image: url(../icons/tick-circle.svg);
}

.icon-project {
  mask-image: url(../icons/project.svg);
  -webkit-mask-image: url(../icons/project.svg);
}

.icon-happy {
  mask-image: url(../icons/happy-outline.svg);
  -webkit-mask-image: url(../icons/happy-outline.svg);
}

.icon-employee {
  mask-image: url(../icons/employee.svg);
  -webkit-mask-image: url(../icons/employee.svg);
}

.icon-installation {
  mask-image: url(../icons/wrench-settings.svg);
  -webkit-mask-image: url(../icons/wrench-settings.svg);
}

.icon-residential {
  mask-image: url(../icons/residential.svg);
  -webkit-mask-image: url(../icons/residential.svg);
}

.icon-industrial {
  mask-image: url(../icons/industrial.svg);
  -webkit-mask-image: url(../icons/industrial.svg);
}

.icon-healthcare {
  mask-image: url(../icons/healthcare.svg);
  -webkit-mask-image: url(../icons/healthcare.svg);
}

.icon-hotels {
  mask-image: url(../icons/hotels.svg);
  -webkit-mask-image: url(../icons/hotels.svg);
}

.icon-commercial {
  mask-image: url(../icons/commercial.svg);
  -webkit-mask-image: url(../icons/commercial.svg);
}

.secondary-card-action-link .icon-cart {
  height: 54px;
  width: 54px;
  background-color: #F6F6F6;
}

.icon-whatsapp {
  mask-image: url(../icons/whatsapp.svg);
  -webkit-mask-image: url(../icons/whatsapp.svg);
}

.icon-fb {
  mask-image: url(../icons/facebook.svg);
  -webkit-mask-image: url(../icons/facebook.svg);
  background-color: #1877F2;
}

.icon-insta {
  mask-image: url(../icons/instagram.svg);
  -webkit-mask-image: url(../icons/instagram.svg);
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.icon-linkdin {
  mask-image: url(../icons/linkedin.svg);
  -webkit-mask-image: url(../icons/linkedin.svg);
  background-color: #0076B2;
}

.icon-x-twitter {
  mask-image: url(../icons/x-twitter.svg);
  -webkit-mask-image: url(../icons/x-twitter.svg);
  background-color: #000;
}

.icon-edit {
  mask-image: url(../icons/pencil-square.svg);
  -webkit-mask-image: url(../icons/pencil-square.svg);
  background-color: #2a55cc;
}

.icon-delete {
  mask-image: url(../icons/trash3.svg);
  -webkit-mask-image: url(../icons/trash3.svg);
  background-color: #ff5b5b;
}

.icon-mission {
  mask-image: url(../icons/mission.svg);
  -webkit-mask-image: url(../icons/mission.svg);
  background-color: #007993;
}

.icon-vision {
  mask-image: url(../icons/vision.svg);
  -webkit-mask-image: url(../icons/vision.svg);
  background-color: #BA6807;
}

.section-home-about-wrapper .style-2 {
  top: 0;
  right: 0;
}
.section-home-about-wrapper .style-3 {
  bottom: 77px;
  right: 0;
}
.section-home-about-wrapper .style-4 {
  top: 81px;
  right: 200px;
}
.section-home-about-wrapper .style-5 {
  bottom: 0;
  right: 30%;
}
.section-home-about-wrapper .style-6 {
  bottom: 38px;
  left: 129;
}
.section-home-about-wrapper .style-7 {
  top: 0;
  left: 60%;
}
.section-home-about-wrapper .style-8 {
  top: 0;
  left: 207px;
}
.section-home-about-wrapper .style-9 {
  bottom: 0;
  left: 35%;
}

.footer-area .style-1 {
  top: 0;
  left: 0;
}
.footer-area .style-2 {
  top: 0;
  right: 0;
}
.footer-area .style-3 {
  bottom: 0;
  left: 45%;
}

@keyframes flicker-forward {
  0% {
    transform: translate(0, 2px);
  }
  40% {
    transform: translate(5px, 2px);
  }
  60% {
    transform: translate(3px, 2px);
  }
  100% {
    transform: translate(4px, 2px);
  }
}
@keyframes flicker-reverse {
  0% {
    transform: translate(4px, 2px);
  }
  40% {
    transform: translate(-1px, 2px);
  }
  60% {
    transform: translate(1px, 2px);
  }
  100% {
    transform: translate(0, 2px);
  }
}
@media only screen and (max-device-width: 1599px) {
  .section-home-about-wrapper .style-1 {
    top: 77px;
    left: 0;
  }
  .lbl-product-card-name {
    font-size: 26px;
    height: 90px;
  }
}
@media only screen and (max-device-width: 1459px) {
  .navbar-nav {
    gap: 35px;
  }
  .nav-link {
    font-size: 16px !important;
  }
  .lbl-product-card-name {
    font-size: 26px;
  }
}
@media only screen and (max-device-width: 1399px) {
  .card-image-sm {
    width: 188px;
    height: 188px;
  }
}
@media only screen and (max-device-width: 1299px) {
  .navbar-nav {
    gap: 20px;
  }
  .nav-link {
    font-size: 14px !important;
  }
  .img-brand, .scrolled-up .img-brand {
    height: 60px;
  }
  .section-home-about-wrapper .style-4 {
    top: 98px;
    right: 150px;
  }
  .img-footer-brand {
    width: 300px;
  }
}
@media only screen and (max-device-width: 1062px) {
  .navbar-nav {
    gap: 15px;
  }
  .card-image-sm {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-device-width: 1199px) {
  .hero-header {
    font-size: 60px;
  }
  .primary-card {
    margin-left: auto;
    margin-right: auto;
  }
  .productcat-card {
    margin-bottom: 90px;
  }
  .footer-nav-container {
    flex-direction: column;
  }
  .footer-nav-item {
    margin-bottom: 20px;
  }
  .icon-footer-links:first-child {
    margin-right: 10px;
  }
  .breadcrumb,
  .view-container {
    margin: 25px 30px;
  }
  .section-form {
    padding: 100px 10px;
  }
  .section-alter .page-section-content-wrapper {
    width: auto;
    margin-left: 0;
  }
  .img-page-section,
  .section-alter .img-page-section {
    border-radius: 38px;
  }
  .img-page-section {
    height: 280px;
  }
  .testimonial-banner {
    padding: 70px 100px 30px;
  }
  .product-nav-tabs {
    gap: 30px;
    margin-bottom: 50px;
  }
  .section-home-about-wrapper .img-style {
    width: 90px;
  }
  .section-home-about-wrapper .style-4 {
    top: 140px;
    right: -7px;
  }
}
@media (min-width: 992px) {
  .scrolled.navbar {
    height: 75px;
  }
  .navbar,
  .scrolled-up.navbar {
    height: 105px;
    transition: 0.3s ease;
  }
  .navbar > .container-fluid {
    margin-left: 20px;
    margin-right: 20px;
  }
  .future-details-container:first-child {
    padding-right: 100px;
  }
  .future-details-container:laast-child {
    padding-left: 100px;
  }
  .category-tab-container {
    top: 112px;
  }
}
@media only screen and (max-device-width: 991px) {
  .navbar {
    padding-left: 20px !important;
    padding-right: 15px !important;
  }
  .menu-open.navbar {
    background: linear-gradient(90deg, #fcfdfc 0%, rgba(223, 243, 227, 0.6) 100%) !important;
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
  }
  .navbar-collapse {
    margin-top: 20px;
    height: 95vh;
    overflow-y: auto;
  }
  .nav-sub-menu-item-wrapper {
    background: transparent;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
  .navbar-nav {
    gap: 25px;
  }
  .nav-sub-menu {
    position: unset;
    padding-top: 0;
  }
  .nav-item {
    margin-left: 10px;
  }
  .nav-item:last-child {
    margin-bottom: 20px;
  }
  .nav-link:not(.tab-link) {
    font-size: 26px !important;
  }
  .nav-link:after {
    height: 24px;
    width: 4px !important;
    top: calc(50% - 12px);
    left: -10px !important;
  }
  .nav-sub-menu-item-wrapper {
    background-color: transparent;
    padding: 0;
  }
  .nav-sub-menu-link {
    font-weight: 400;
  }
  .hero-header {
    font-size: 50px;
  }
  .page-header-container {
    flex-direction: column;
  }
  .page-header {
    margin-bottom: 30px;
  }
  .breadcrumb,
  .view-container {
    margin: 25px 28px;
  }
  .page-productcat-desc {
    width: auto;
    max-width: none;
  }
  .img-page-section {
    height: 380px;
  }
  .testimonial-banner {
    padding: 60px 80px 15px;
  }
  .section-product-details-wrapper {
    margin-top: 100px;
  }
  .product-details-conatiner {
    margin-bottom: 100px;
  }
  .product-details-image-container {
    height: auto;
  }
  .brand-wrapper {
    margin-bottom: 50px;
  }
  .card-image-sm {
    width: 90px !important;
    height: 90px !important;
  }
  .header-style::after {
    bottom: -52px;
    left: calc(50% - 210px);
    right: calc(50% - 210px);
    height: 42px;
    width: 420px;
  }
}
@media only screen and (max-device-width: 767px) {
  .hero-header {
    font-size: 45px;
  }
  .hero-sub-header, .hero-description {
    font-size: 26px;
  }
  .product-sample-header {
    font-size: 34px;
    line-height: 58px;
  }
  .btn-cta-container {
    margin-bottom: 25px;
  }
  .btn-cta, .btn-cta-enquiry {
    width: 50%;
  }
  .productcat-application-wrapper {
    justify-content: space-evenly;
  }
  .footer-links {
    margin-bottom: 12px;
  }
  .aboutus-feature-content-wrapper, .aboutus-feature-image-wrapper {
    justify-content: center;
  }
  .aboutus-feature-content {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
  .aboutus-feature-content {
    margin-bottom: 50px;
  }
  .img-page-section {
    height: 320px;
  }
  .card-image-sm {
    width: 70px;
    height: 70px;
  }
  .header-style::after {
    bottom: -52px;
    left: calc(50% - 160px);
    right: calc(50% - 160px);
    height: 32px;
    width: 320px;
  }
  .section-home-about-wrapper .img-style {
    opacity: 0.3;
  }
  .section-usp-image {
    min-height: 450px;
  }
  .about-us-desc {
    font-size: 24px;
    line-height: 48px;
  }
  .section-page-hero-wrapper {
    min-height: 650px;
  }
  .section-wrapper {
    margin-bottom: 50px;
  }
  .product-desc {
    font-size: 28px;
    line-height: 55px;
  }
  .img-product-brand {
    max-width: 90px;
    max-height: 90px;
  }
  .brand-name {
    font-size: 34px;
  }
  .product-details-header {
    font-size: 34px;
    margin-bottom: 25px;
  }
  .product-variation-header {
    font-size: 28px;
    margin-bottom: 50px;
  }
  .export-header {
    font-size: 34px;
    margin-bottom: 20px;
  }
  .export-desc, .page-section-content, .delivery-range-desc {
    font-size: 18px;
    line-height: 44px;
  }
  .card-image {
    height: 180px;
    width: 180px;
  }
  .page-description {
    font-size: 20px;
    line-height: 47px;
    margin-bottom: 70px;
  }
  .brand-cards {
    flex-direction: column;
    align-items: center;
  }
  .brand-card-details-container {
    width: 100%;
  }
  .brand-card-header {
    font-size: 28px;
    margin-bottom: 10px;
  }
  .brand-card-desc {
    font-size: 18px;
    line-height: 30px;
  }
  .img-products {
    max-width: 130px;
    max-height: 220px;
  }
  .lbl-product-card-name {
    font-size: 24px;
    height: 78px;
  }
  .brand-name {
    font-size: 28px;
  }
  .product-image-container {
    margin-bottom: 2px;
  }
  .product-card-action {
    font-size: 16px;
    width: 145px;
    height: 40px;
  }
  .header-style {
    font-size: 40px;
  }
}
@media (min-width: 576px) {
  .productcat-application-wrapper {
    flex-wrap: nowrap;
  }
}
@media only screen and (max-device-width: 575px) {
  .section-page-hero-wrapper {
    min-height: 450px;
  }
  .hero-header {
    font-size: 45px;
  }
  .header-style {
    font-size: 34px;
  }
  .home-about-desc {
    font-size: 24px;
    margin-bottom: 35px;
  }
  .section-usp-header {
    font-size: 34px;
    margin-bottom: 70px;
  }
  .img-usp-details {
    height: 70px;
    width: 70px;
  }
  .usp-desc {
    font-size: 20px;
    margin-bottom: 45px;
  }
  .section-usp-image {
    min-height: 330px;
  }
  .productcat-application-wrapper {
    gap: 15px;
    justify-content: space-between;
  }
  .productcat-application-icon-conatiner {
    width: 60px;
    height: 60px;
  }
  .section-product-details-wrapper {
    padding: 0 10px;
  }
  .icon-productcat-application {
    width: 25px;
    height: 25px;
  }
  .img-page-section {
    height: 280px;
  }
  .header-style::after {
    bottom: -52px;
    left: calc(50% - 110px);
    right: calc(50% - 110px);
    height: 22px;
    width: 220px;
  }
  .section-home-about-wrapper .style-1 {
    top: 148px;
  }
  .section-home-about-wrapper .style-8 {
    top: 0;
    left: 134px;
  }
  .section-home-about-wrapper .style-9 {
    left: 22%;
  }
  .footer-area .style-1 {
    width: 102px;
  }
  .footer-area .style-2 {
    width: 160px;
  }
  .footer-area .style-3 {
    width: 190px;
  }
  .testimonial-banner {
    padding: 50px 50px 15px;
  }
  .testimonial-content {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 14px;
    height: 230px;
  }
  .testimonial-sign {
    font-size: 24px;
  }
  .img-product-details {
    width: 100%;
    max-width: unset;
    height: unset;
    max-height: unset;
  }
  .export-card {
    max-width: unset;
    width: 100%;
    margin-left: unset;
    margin-right: unset;
  }
  .product-image-container {
    height: auto;
  }
  .card-image-sm {
    width: 80px !important;
    height: 80px !important;
  }
  .lbl-product-card-name {
    font-size: 18px;
    height: 66px;
  }
  .director-msg, .future-desc, .product-details {
    text-align: center;
  }
  .product-details-header {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
@media only screen and (max-device-width: 400px) {
  .product-variation-header {
    font-size: 26px;
  }
  .productcat-application-wrapper {
    gap: 15px;
    justify-content: space-evenly;
  }
  .productcat-application-icon-conatiner {
    width: 40px;
    height: 40px;
  }
  .icon-productcat-application {
    width: 20px;
    height: 20px;
  }
  .img-page-section {
    height: 220px;
  }
}
body.modal-open {
  overflow: auto !important;
}/*# sourceMappingURL=site.css.map */