@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*,
h1,
h2,
h3,
h4,
h5,
h6,
p,
b,
strong,
ul,
li,
span,
ol {
  margin: 0px;
  padding: 0px;
  outline: none;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

img {
  border: none;
}

body {
  font-size: 15px;
  color: #000;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-optical-sizing: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}

/** **************** **/

body::-webkit-scrollbar {
  width: 0px;
}

body::-webkit-scrollbar-track {
  background: #dddddd;
}

body::-webkit-scrollbar-thumb {
  background-color: #f7ac31;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
}

body::-webkit-scrollbar-track {
  background: #ffffff;
}

/** **************** **/

.m0 {
  margin: 0px;
}

.mt30 {
  margin-top: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

/**/
.p0 {
  padding: 0px;
}

/** **************** **/

.container {
  max-width: 1350px;
}

/** **************** **/

.fixed-top {
  position: fixed;
  top: 0px;
  display: block;
  background: #f2f8f1;
  box-shadow: 0 0 2px 2px #00000014;
  border-top: 4px solid #335d17;
}

.header-scrolled {
  box-shadow: 0 0 2px 2px #00000014;
  background: #fff;
  border-top: 0px;
}

.header_menu {
  padding: 0px 0 0px;
  display: flex;
  position: relative;
}

.logo {
  position: relative;
  top: 0px;
  z-index: 1;
}

#header .logo img {
  height: auto;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: 315px;
  padding: 4px 0;
}

.header-scrolled .logo img {
  width: 245px !important;
  height: auto;
  display: block;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header-scrolled .logo {
  top: 0px;
}

.main-nav>ul {
  margin-top: 27px;
}

.header-scrolled .main-nav>ul {
  margin-top: 15px;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.header-scrolled .main-nav>ul>li {
  padding: 2px 5px;
}

.header-scrolled #header .logo img {
  padding: 8px 0;
}

.main-nav>ul>li {
  position: relative;
  white-space: nowrap;
  float: left;
  padding: 5px 3px;
}


.main-nav a {
  display: block;
  position: relative;
  color: #001914;
  padding: 0px 15px;
  transition: 0.3s;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.main-nav a:hover,
.main-nav li:hover>a {
  color: #a2d109;
  text-decoration: none;
}

.main-nav ul li a::before {
  position: absolute;
  content: "";
  background: #a2d109;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -29px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.main-nav ul li a:hover:before {
  opacity: 1;
  width: 100%;
}

.header-scrolled .main-nav ul li a::before {
  bottom: -23px
}

.main-nav .drop-down ul {
  display: block;
  position: absolute;
  right: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 5px;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.bg li {
  background: #fff;
}

.main-nav .drop-down:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.main-nav .dropdown-width-175 {
  min-width: 175px !important;
}

.main-nav .dropdown-width-200 {
  min-width: 200px !important;
}

.main-nav .drop-down li {
  position: relative;
}

.main-nav .drop-down ul li a {
  padding: 6px 10px;
  font-size: 16px;
  color: #222;
  border-bottom: 1px solid #eeeeee94;
}

.main-nav .drop-down ul li:last-child a {
  border-bottom: none;
}

.main-nav .drop-down ul a:hover,
.main-nav .drop-down ul .active>a,
.main-nav .drop-down ul li:hover>a {
  color: #fff;
  background: #335d17;
}

.main-nav .drop-down ul a::before {
  display: none;
}

.main-nav .drop-down>a:after {
  content: "\f107";
  font-family: FontAwesome;
  padding-left: 5px;
}

.main-nav .drop-down .drop-down ul {
  top: 0;
  right: calc(100% - 30px);
  margin-top: 0px;
}

.main-nav .drop-down .drop-down:hover>ul {
  opacity: 1;
  top: 0;
  right: 100%;
}

.main-nav .drop-down .drop-down>a:after {
  content: "\f105";
  position: absolute;
  right: 15px;
  display: none;
}

.cont-call {
  margin: 0 0px 0 75px;
  position: relative !important;
  top: -9px;
  text-align: left;
  line-height: 40px;
}

.cont-call span {
  display: block;
  line-height: 20px;
  margin-right: 0;
  text-align: center;
  color: #fff;
  width: 56px;
  height: auto;
  border-radius: 50%;
  position: absolute;
  left: -57px;
  top: -2px;
}

.cont-call a {
  font-weight: 400;
  font-size: 14px;
  padding: 0 0;
}

.cont-call a:hover {
  color: #a2d109 !important;
}

.cont-call .head-call {
  font-size: 18px;
  color: #a2d109;
  font-weight: 700;
}

.cont-call .head-mail {
  font-size: 14px;
  color: #333;
  font-weight: 400;
  letter-spacing: 0.5px;
  text-align: center;
}

.cont-call a:before {
  display: none;
}

.cont-call::before {
  content: "";
  position: absolute;
  left: -35px;
  top: -5px;
  width: 225px;
  height: 60px;
  background: #FFF;
  border-radius: 30px;
  box-shadow: 0 0 0 2px #335d17;
}

.header-scrolled .cont-call::before {
  height: 50px;
  top: -2px;
}

.header-scrolled .cont-call {
  top: -4px;
}

.header-scrolled .cont-call img {
  width: 48px;
}

/*******************/
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: #264b8f;
  transition: 0.4s;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
}

.mobile-nav a:hover,
.mobile-nav .active>a,
.mobile-nav li:hover>a {
  color: #74b5fc;
  text-decoration: none;
}

.mobile-nav .drop-down>a:after {
  content: "\f078";
  font-family: FontAwesome;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down>a:after {
  content: "\f077";
}

.mobile-nav .drop-down>a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-toggle {
  position: fixed;
  right: 10px;
  /* top: 24px; */
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 20px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  margin: 18px 18px 0 0;
  color: #004289;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(19, 39, 57, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/** **************** **/

/*Only Fade Slide*/
.carousel-fade .carousel-item {
  opacity: 0;
  transition-duration: 0.6s;
  transition-property: opacity;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  opacity: 0;
}

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev,
.carousel-fade .carousel-item.active,
.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-prev {
  transform: translateX(0);
}

@supports (transform-style: preserve-3d) {

  .carousel-fade .carousel-item-next,
  .carousel-fade .carousel-item-prev,
  .carousel-fade .carousel-item.active,
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-prev {
    transform: translate3d(0, 0, 0);
  }
}

/*Only Fade Slide End*/


.carousel {
  overflow: hidden;
  margin-top: 87px;
}

.carousel .carousel-control {
  background: none;
  top: 45%;
  font-size: 30px;
  text-align: center;
  width: 40px;
  height: 40px;
  opacity: 1;
  position: absolute;
}

.carousel .carousel-control-next {
  right: 2%;
}

.carousel .carousel-control-prev {
  left: 2%;
}

.carousel .carousel-control-next span {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
  visibility: hidden;
  transition: transform 0.5s ease;
  opacity: 0;
}

.carousel .carousel-control-prev span {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
  visibility: hidden;
  transition: transform 0.5s ease;
  opacity: 0;
}

.carousel:hover .carousel-control-next span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

.carousel:hover .carousel-control-prev span {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  visibility: visible;
  opacity: 1;
}

.carousel .carousel-control span {
  color: #fff;
  background-color: rgb(50 52 51 / 50%);
  box-shadow: 0 0 0 10px rgb(50 52 51 / 50%);
  height: 30px;
  width: 30px;
  z-index: 121;
  line-height: 30px;
  text-align: center;
  position: absolute;
  border: 0px;
}

.carousel .carousel-control span:hover {
  background-color: #1e1e1e;
  box-shadow: 0 0 0 10px #1e1e1e;
}

.carousel .carousel-item .caption {
  background-color: rgb(0 0 0 / 20%);
  padding: 40px;
  animation-duration: 1s;
  animation-delay: 1s;
}

.carousel-indicators {
  position: absolute;
  left: 0;
  z-index: 15;
  width: 100%;
  padding-left: 0;
  margin-left: 10px;
  text-align: center;
  list-style: none;
  bottom: 40px;
  justify-content: center;
}

.carousel-indicators li {
  display: inline-block;
  width: 25px;
  height: 5px;
  margin: 0 5px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #ffffffb3;
  border: 1px solid #ffffffb3;
  border-radius: 0%;
}

.carousel-indicators .active {
  background-color: #a2d109;
  border: 1px solid #a2d109;
}

.carousel-caption {
  text-align: right;
  text-shadow: none;
  right: 0;
  bottom: 0;
  padding-bottom: 0;
}

/** **************** **/

.hm-prod {
  padding: 80px 0;
  position: relative;
}

.hm-prod::before {
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 179px;
  background: url(https://ueeshop.ly200-cdn.com/static/custom/UPAR/UPAR381/themes/t255/images/index-about-bg.png) no-repeat center;
  z-index: -1;
}

.hm-prod-head h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

.hm-prod-box {
  padding: 10px 0;
}

.hm-prod-box span {
  color: #000;
  display: block;
  text-align: center;
  font-size: 16px;
  letter-spacing: .02em;
  padding: 7.5px 0;
}

.more-btn {
  display: flex;
  justify-content: center;
}

.more-btn .pxl-button {
  background-color: #EDDD5E;
  height: 54px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  border-radius: 100px;
  color: #335d17;
  padding: 0px 32px 0px 32px;
  animation-duration: 1000ms;
  -webkit-animation-duration: 1000ms;
  position: relative;
  width: fit-content;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  font-style: normal;
  white-space: nowrap;
  -webkit-transition: .3s linear;
  -khtml-transition: .3s linear;
  -moz-transition: .3s linear;
  -ms-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.more-btn .pxl-button:hover {
  background-color: #303123;
  color: #EDDD5E;
}

.more-btn .pxl-button-text {
  display: block;
  position: relative;
  padding-right: 22px;
  transition: .3s linear;
}

.more-btn .pxl-button:hover .pxl-button-text {
  padding-right: 0;
  padding-left: 22px;
}

.more-btn .pxl-button-icon.icon-duplicated {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
}

.more-btn .pxl-button:hover .pxl-button-icon.icon-duplicated {
  transform: translateY(-50%) scale(1);
}

.more-btn .pxl-button-icon.icon-main {
  right: 0;
  transform: translateY(-50%) scale(1);
  position: absolute;
  top: 50%;
  transition: .3s ease;
  display: inline-flex;
}

.more-btn .pxl-button:hover .pxl-button-icon.icon-main {
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
}

/** **************** **/

.hm-about {
  background: #335d17;
  padding: 80px 0;
}

.hm-about-head span {
  color: #a2d109;
  font-size: 16px;
}

.hm-about-head h2 {
  font-weight: 700;
  color: #fff;
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 15px;
}

.hm-about-section p {
  font-size: 18px;
  color: #fff;
  margin-bottom: 15px;
}

.hm-about-section .row {
  align-items: center;
}

.hm-abt-head h4 {
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  border-top: 1px solid #fff2;
  padding-top: 20px;
  padding-bottom: 15px;
}

/*  */


.hm-about-page {
  background-color: #dfdede;
}

.hm-about-page h2 {
  font-weight: 700;
  color: #335d17;
  font-size: 42px;
  line-height: 50px;
  margin-bottom: 15px;
}

.hm-about-page p {
  color: #525252;
}


.hm-about-page h4 {
  color: #6e8d09;
}

.hm-about-page span {
  color: #455904;
}

/** **************** **/

.hm-why {
  background: #303123;
}

.hm-why-list ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hm-why-list ul li {
  width: 33.33%;
  border: 1px solid #fff2;
  text-align: center;
}

.hm-why-list ul li span {
  display: block;
}

.hm-why-list ul li:nth-child(1),
.hm-why-list ul li:nth-child(2),
.hm-why-list ul li:nth-child(3) {
  border-top: 0px;
}

.hm-why-list ul li:nth-child(4),
.hm-why-list ul li:nth-child(5),
.hm-why-list ul li:nth-child(6) {
  border-bottom: 0px;
}

.hm-why-list ul li:nth-child(1),
.hm-why-list ul li:nth-child(4) {
  border-left: 0px;
}

.hm-why-list ul li:nth-child(3),
.hm-why-list ul li:nth-child(6) {
  border-right: 0px;
}

.hm-why-list ul li {
  padding: 20px;
}

.hm-why-list ul li img {
  margin-bottom: 5px;
  width: 80px;
}

.hm-why-list ul li span {
  color: #fff;
  font-size: 18px;
}


/** **************** **/

.hm-ind {
  padding-top: 80px;
  padding-bottom: 80px;
}

.hm-ind-head {
  padding-bottom: 40px;
  text-align: center;
}

.hm-ind-head h2 {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}

.hm-ind-section .carousel-wrapingg {
  position: relative;
}

.hm-ind-section .hm-ind-slider .owl-nav {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  margin: 0;
}

.hm-ind-section .hm-ind-slider .owl-nav .owl-prev {
  display: inline-block;
  transform: translate(-25px, 0);
  cursor: pointer;
}

.hm-ind-section .hm-ind-slider .owl-nav .owl-next {
  display: inline-block;
  transform: translate(25px, 0);
  cursor: pointer;
}

.hm-ind-section .hm-ind-slider .owl-nav .owl-prev,
.hm-ind-section .hm-ind-slider .owl-nav .owl-next {
  width: 40px;
  height: 70px;
  line-height: 70px;
  border: 1px solid #0000;
  border-radius: 5px;
  text-align: center;
  font-size: 20px;
  margin: 0 5px;
  background: #ffffff;
  box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
}

.hm-ind-section .hm-ind-slider .owl-nav .owl-prev:hover,
.hm-ind-section .hm-ind-slider .owl-nav .owl-next:hover {
  background: #a2d109;
  color: #fff;
}

.hm-ind-section .owl-carousel .owl-stage-outer {
  padding-bottom: 10px;
  padding-top: 12px;
}

.hm-applications-box {
  box-shadow: rgb(0 0 0 / 24%) 0 3px 8px;
  padding: 0.5rem;
  border-radius: 25px;
  height: 100%;
  background: #fff;
  transition: 0.5s ease-out;
  overflow: hidden;
  position: relative;
}

.hm-applications-box:hover {
  transform: translateY(-8px);
  box-shadow: rgb(50 50 93 / 0%) 0 7px 13px 0px, rgb(0 0 0 / 30%) 0 7px 12px 1px;
}

.hm-applications-img {
  position: relative;
  overflow: hidden;
}

.hm-applications-img:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: column;
  background-image: linear-gradient(to top, rgb(40 40 40 / 60%) 12%, transparent);
  transition: all 0.3s ease-in-out;
  padding: 0.5rem;
}

.hm-applications-box .hm-applications-img {
  border-radius: 25px;
  transition: 0.5s ease-out;
}

.hm-applications-box:hover .hm-applications-img {
  scale: 1.1;
}

.hm-applications-title {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 30px;
  text-align: center;
  z-index: 1;
}

.hm-applications-title span {
  color: #fff;
  font-weight: 500;
  font-size: 19px;
}

/** **************** **/

.footer-top {
  background: #335d17;
  padding: 20px 0;
}

.footer-top-ul ul {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer-top-ul ul li p {
  font-size: 22px;
  color: #fff;
}

.footer-top-ul ul li .pxl-button {
  background-color: #EDDD5E;
  height: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  border-radius: 100px;
  color: #335d17;
  padding: 0px 32px 0px 32px;
  animation-duration: 1000ms;
  -webkit-animation-duration: 1000ms;
  position: relative;
  width: fit-content;
  cursor: pointer;
  font-size: 16px;
  outline: none;
  font-style: normal;
  white-space: nowrap;
  -webkit-transition: .3s linear;
  -khtml-transition: .3s linear;
  -moz-transition: .3s linear;
  -ms-transition: .3s linear;
  -o-transition: .3s linear;
  transition: .3s linear;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-top-ul ul li .pxl-button:hover {
  background-color: #303123;
  color: #EDDD5E;
}

.footer-top-ul ul li .pxl-button-text {
  display: block;
  position: relative;
  padding-right: 22px;
  transition: .3s linear;
}

.footer-top-ul ul li .pxl-button:hover .pxl-button-text {
  padding-right: 0;
  padding-left: 22px;
}

.footer-top-ul ul li .pxl-button-icon.icon-duplicated {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) scale(0);
}

.footer-top-ul ul li .pxl-button:hover .pxl-button-icon.icon-duplicated {
  transform: translateY(-50%) scale(1);
}

.footer-top-ul ul li .pxl-button-icon.icon-main {
  right: 0;
  transform: translateY(-50%) scale(1);
  position: absolute;
  top: 50%;
  transition: .3s ease;
  display: inline-flex;
}

.footer-top-ul ul li .pxl-button:hover .pxl-button-icon.icon-main {
  right: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
}

/** **************** **/

footer {
  padding: 50px 0px 40px;
  background: #f2f8f1;
}

.ftr-logo img {
  width: 240px;
  margin: 0 auto;
  display: table;
}

.ftr-social ul li {
  display: inline-block;
  padding: 0 10px;
}

.ftr-social ul li:nth-child(1) {
  padding-left: 0px;
}

.ftr-social img:hover {
  filter: invert(0.6) sepia(1) hue-rotate(14deg) saturate(799%);
}

.ftr-head h3 {
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.5rem;
  color: #000;
  margin-bottom: 20px;
}

.ftr-link ul li a {
  color: #333;
  margin-bottom: 12px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.50px;
  display: block;
}

.ftr-link ul li a:hover {
  color: #000;
}

.mail-list {
  display: flex;
  margin-right: 25px;
  color: #fff;
  align-items: self-start;
  margin-bottom: 25px;
}

.mail-list img {
  width: 30px;
  margin-right: 15px;
}

.mail-list h5 {
  color: #000;
  margin-bottom: 5px;
  font-weight: 700;
}

.mail-one a {
  color: #333;
  font-size: 16px;
}

.mail-one a:hover {
  color: #000;
}

.ftr-box {
  background: #fff;
  border: 1px solid #33333314;
  padding: 20px;
  border-radius: 100px;
}

.ftr-btm-p p {
  font-size: 16px;
  color: #333;
  text-align: right;
}

.ftr-btm-p p a {
  color: #335d17;
  font-weight: 700;
}

/** **************** **/


.inner-banner {
  background: #41413f;
  position: relative;
  margin: 92px 0 0 0;
}

.inner-banner:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #0000001f;
}

.inner-banner-rel {
  position: relative;
}

.inner-banner-head h1 {
  position: absolute;
  left: 65px;
  bottom: 100px;
  font-weight: 700;
  font-size: 35px;
  /* margin-bottom: 15px; */
  color: #ffffff;
  z-index: 1;
  /* right: 0px; */
  text-align: center;
}

.inner-banner-head h1 span {
  background: #a2d109;
  padding: 5px 30px;
  position: relative;
}



.cover-mobile {
  display: none;
}

@media screen and (max-width: 767px) {

  .inner-banner-rel,
  .inner-banner .col-md-12 {
    position: initial;
  }

  .cover-desktop {
    display: none;
  }

  .cover-mobile {
    display: block;
  }

  .inner-banner-head h1 {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    font-size: 22px;
    width: 100%;
    text-align: center;
    transform: translate(-50%, -50%);
  }
}

.prod-inner-main {
  padding: 50px 0px 28px;
}

.prod-inner-box-main {
  padding: 80px 0px 20px;
}

.prod-head h2 {
  font-size: 31px;
  color: #504f4f;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.prod-head h3 {
  font-size: 28px;
  color: #504f4f;
  font-weight: 700;
  line-height: 1.3;
  text-transform: capitalize;
  margin-bottom: 8px;
}

.prod-head h2 span {
  color: #335d17;
}

.prod-head h3 span {
  color: #335d17;
}

.inn-prod-dtls p {
  letter-spacing: 0.5px;
  font-size: 16px;
  padding-bottom: 8px;
  line-height: 25px;
  color: #6b6b6b;
}

.enqu-btn a:hover {
  background-color: #ffffff00;
  border-color: #000 !important;
  color: #000;
}

.enqu-btn a {
  width: 176px;
  height: 44px;
  background: #911d5a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border: 1px solid #fff;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3sease-in-out;
  position: relative;
  transform: perspective(1px) translateZ(0);
  transition-duration: 0.3s;
  overflow: hidden;
  outline: none;
  border-radius: 0px 0px 0px 0px;
  cursor: pointer;
  letter-spacing: 0.6px;
}

.enqu-btn a:hover img {
  -webkit-filter: invert(30%) grayscale(100%) brightness(70%) contrast(4);
  filter: invert(30%) grayscale(100%) brightness(70%) contrast(4);
}

.icon-right-arrow12 {
  margin-left: 5px;
}

.enqu-btn {
  margin-top: 10px;
}

.more-btn-inner-page {
  display: flex;
  justify-content: start;
}

.prod-wrapper {
  box-shadow: 10px 10px 30px 0 rgb(0 0 0 / 0.1);
  padding: 35px 25px 35px 25px;
}


.product_main_wrapper {
  padding-bottom: 80px;
}

.category-card {
  background: white;
  border-radius: 1px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 100%;
  margin: 0 auto;
  position: sticky;
  top: 100px;
}

.category-header {
  padding: 26px 25px 24px 25px;
}

.category-title {
  margin: 0;
  font-size: 24px;
  font-weight: 600;
  color: #515151;
  position: relative;
  padding-bottom: 12px;
}

.category-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #a2d109;
  border-radius: 2px;
}

.category-list {
  padding: 0 20px 26px 20px;
}

.category-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 13px;
  margin-bottom: 8px;
  border-radius: 1px;
  cursor: pointer;
  transition: all 0.2s ease;
  background-color: #f8f9fa;
  border: 1px solid transparent;
  text-decoration: none;
  color: #6c757d;
}

.category-item:last-child {
  margin-bottom: 0;
}

.category-item:hover {
  background-color: #416c15;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #fff;
}

.category-item-active {
  background-color: #416c15 !important;
  color: #fff;
  box-shadow: 0 4px 12px rgb(35 35 35 / 22%);
}

.category-item-active:hover {
  background-color: #85ab07 !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgb(2 163 212 / 18%);
  color: #fff;
  text-decoration: none;
}

.category-text {
  flex-grow: 1;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
}

.category-arrow {
  opacity: 0.7;
  transition: opacity 0.2s ease;
  font-size: 14px;
}

.category-item:hover .category-arrow {
  opacity: 1;
}

.category-item-active .category-arrow {
  opacity: 1;
}


.feature-sec {
  padding: 0px 0 30px;
}

.feature-head h3 {
  font-size: 30px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0;
  text-align: left;
}

/* Feature Item Styles */
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 15px;
  background: #ffffff;
  border: 1px solid #a2d10959;
  border-radius: 5px;
  transition: all 0.3s ease;
  height: 100%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.feature-item:hover {
  border-color: #416c157d;
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.1);
  transform: translateY(-2px);
}

.feature-wrapper {
  margin-top: 8px;
}

/* Feature Icon Styles */
.feature-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

.check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.feature-item:hover .check-icon {
  transform: scale(1.1);
}

/* Feature Content Styles */
.feature-content {
  flex: 1;
}

.feature-content p {
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 25px;
  color: #6b6b6b;
  transition: color 0.3s ease;
}

.feature-item:hover p {
  color: #2d3748;
}

/* -- */
/* -- */
.prod-table-main {
  padding: 0 0 50px;
}

.prod-table-head h3 {
  font-size: 30px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0;
  text-align: left;
}

.prod-table-main .prod-table .table-striped tbody tr:nth-of-type(odd) {
  background-color: rgb(0 0 0 / 2%) !important;
}

.prod-table {
  margin-top: 5px;
}

.prod-table thead {
  background: #7f7f7f;
}

.prod-table thead th {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

.prod-table thead {
  border-radius: 20px 20px 0 0;
}

.prod-table table {
  width: 100%;
  overflow: hidden;
  margin-bottom: 18px;
  /* border-radius: 10px 10px 0 0; */
}

.prod-table table thead th {
  border-bottom: 0;
  padding: 15px 15px;
}

.prod-table table tbody {
  border: 2px solid #f1f1f1;
  border-top: 0px;
}

.prod-table table tbody td {
  padding: 15px 15px;
  color: #6b6b6b;
  border-bottom: 1px solid #f1f1f1;
  border-left: 1px solid #f1f1f1;
}

.list-points {
  margin-top: 8px;
}

.list-points ul li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  list-style: none;
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 25px;
  color: #6b6b6b;
}

.list-points ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 9px;
  height: 9px;
  background: #9ec51e;
  border-radius: 50%;
  display: inline-block;
}

.benif-head h3 {
  font-size: 30px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0;
  text-align: left;
}

.benif-head h3 span {
  color: #01a3d4;
}

.product-details {
  margin-bottom: 12px;
}

/** *************** **/


.faq-accordion .accordion-item {
  margin-top: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.faq-accordion .accordion-button {
  background-color: #416c15;
  /* background: radial-gradient(circle, rgb(58, 63, 123) 0%, rgba(43, 48, 93, 1) 100%); */
  color: #fcfcfc;
  font-weight: 600;
  padding: 15px 20px;
  text-align: left;
  width: 100%;
  border: none;
  border-bottom: 1px solid #e0e0e0;
  cursor: pointer;
  transition: background-color 0.3s ease;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
}

.faq-accordion .accordion-button:hover,
.faq-accordion .accordion-button:not(.collapsed) {
  background-color: #416c15;
}

.faq-accordion .accordion-body {
  padding: 15px 20px;
  background-color: #fff;
  border-top: 1px solid #eee;
  font-size: 16px;
}

.product-para {
  letter-spacing: 0.5px;
  font-size: 16px;
  line-height: 25px;
  color: #6b6b6b;
}

.feature-wrapper-heading {
  display: block;
  font-size: 22px;
  padding-bottom: 6px;
  font-weight: 500;
  color: #6c8616;
}

.feature-wrapper-heading-1 {
  display: block;
  font-size: 22px;
  padding-bottom: 6px;
  font-weight: 600;
  color: #383838;
  margin-top: 4px;
}

.feature-wrapper-heading-2 {
  display: block;
  font-size: 18px;
  padding-bottom: 6px;
  font-weight: 600;
  color: #6c8616;
  margin-top: 4px;
}

.accordion-item .accordion-header .accordion-button:focus {
  outline: none;
}


.class-border {
  display: block;
  border: 1px solid #eee;
  padding: 15px;
}

.list-points-2 {
  list-style: none !important;
  text-decoration: none;
  list-style-type: armenian;
}

/* contact-page */

.contact-form {
  padding: 50px 0;
}

.contact-item {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 20px;
  border-radius: 5px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.contact-item-icon img {
  width: 60px;
  background-color: #a2d109;
  padding: 10px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* .contact-item:hover{

} */

.contact-item-detail .titles {
  font-size: 22px;
  font-weight: 600;
  color: #1a4a3c;
}

.contact-item-detail p {
  color: #4b4b4b;
  font-size: 16px;
}

.contact-item-active {
  background-color: #335d17;
  transform: scale(1.1);
}

.contact-item-active .titles {
  color: #fff;
}

.contact-item-active p {
  color: #ffffff;
  font-size: 14px;

}

.contact-item-active .contact-item-icon img {
  background-color: #e9e9e9;
}

.contact-head span {
  display: block;
  font-size: 30px;
  padding: 60px 0 25px 0;
  text-align: center;
  color: #2f2f2f;
  font-weight: 700;
  position: relative;

}

.contact-head span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 25px;
}



.contact-form-left {
  position: relative;
}

.contact-form-left::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #20202063;
  width: 100%;
  height: 100%;
}

.contact-form-container {
  background-color: #ffffff;
  padding: 10px;
  border-radius: 8px;
  /* box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); */
  width: 100%;
  margin-right: 30px;
}

.contact-info-container {
  background-color: #343868;
  /* Dark green */
  color: #ffffff;
  padding: 28px;
  border-radius: 8px;
  width: 350px;
  height: 100%;
}

.section-title {
  font-size: 16px;
  color: #333333;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
}

.section-title::before {
  content: '';
  width: 30px;
  height: 2px;
  background-color: #aaaaaa;
  margin-right: 10px;
}

.main-heading {
  font-size: 30px;
  font-weight: bold;
  color: #343868;
  margin-bottom: 12px;
}

.main-heading .free-quote {
  color: #335d17;
  /* Yellow */
  font-style: italic;
}

.form-label-custom {
  font-size: 16px;
  font-weight: bold;
  color: #333333;
  margin-bottom: 8px;
}
.form-group select {
	border-radius: 5px;
    padding: 12px;
    border: 1px solid #dddddd;
    font-size: 16px;
	display: block;
    width: 100%;
	background-color: #fff;
    color: #666666;
}
.form-control-custom {
  border-radius: 5px;
  padding: 12px;
  border: 1px solid #dddddd;
  font-size: 16px;
  color: #666666;
}

.form-control-custom:focus {
  border-color: #335d17;
  box-shadow: 0 0 0 0.25rem rgba(255, 193, 7, 0.25);
}

.butn-bg {
	background-color: #EDDD5E;
    height: 54px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 100px;
    color: #335d17;
    padding: 0px 32px 0px 32px;
    cursor: pointer;
    font-size: 16px;
    font-style: normal;
    white-space: nowrap;
}
.butn-bg:hover {
    background-color: #303123;
    color: #EDDD5E;
}

.send-message-button {
  background-color: #e36a2d;
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 25px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.send-message-button i {
  padding-right: 8px;
}

.send-message-button:hover {
  background-color: #343868;
}

.send-message-button .arrow-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

select.form-control:not([size]):not([multiple]) {
  height: 100%;
}

.all-products-section {
  padding: 50px 0;
}

.main-product-item {
  position: relative;
  margin-bottom: 25px;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 10%);
  -webkit-box-shadow: 0 0.3rem 1rem rgb(0 0 0 / 10%);
  text-align: center;
  border-radius: 6px 6px 0 0;
  padding: 6px;
  background: #fff;
}

.main-product-item-detail {
  padding: 10px 0;
}

.main-product-item-detail span {
  display: block;
  font-size: 17px;
  padding: 0px 0 8px 0;
  font-weight: 600;
  color: #515151;
}

.main-product-tem-btn {
  background-color: #EDDD5E;
  color: #335d17;
  padding: 6px 18px;
  display: block;
  width: fit-content;
  border-radius: 30px;
  display: flex;
  justify-self: center;
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: 0.3s all ease-in-out;
}

.main-product-tem-btn:hover {
  background-color: #335d17;
  color: #fff;
}
.hight-scroller{
  height: 400px;
  overflow-y: scroll ;
}



.btm-watsap {
    position: fixed;
    bottom: 15px;
    left: 15px;
    z-index: 99;
}
.quickcontact input[type="text"], [type="email"], [type="number"] {
	width: 100%;
	max-width: 100%;
	padding: 8px 5px;
	font-size: 14px;
	margin-top: 4px;
	display: inline-block;
	border: 1px solid rgb(43 43 43);
}
.quickcontact textarea {
	width: 100%;
	max-width: 100%;
	padding: 8px 5px;
	font-size: 14px;
	margin-top: 4px;
	display: inline-block;
	border: 1px solid rgb(43 43 43);
}
.form-text {
	border: 1px solid #ccc;
}
.quickcontact input[type="submit"] {
	width: 100%;
	max-width: 100%;
	background-color: #303123;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.50px;
	font-size: 16px;
	padding: 7px;
	border: none;
	border-radius: 0px;
	cursor: pointer;
	margin-top:10px;
}
.quickcontact input[type="submit"]:hover {
	background-color: #a2d109;
	color: #000000;
	max-width: 100%;
}
.btn-1 {
	width: 100%;
	max-width: 100%;
	background-color: #335d17;
	color: #ffffff;
	font-weight: 600;
	letter-spacing: 1px;
	font-size: 15px;
	padding: 7px;
	border: none;
	cursor: pointer;
}
.quickcontact {
	right: 0px;
	bottom: 0px;
	max-width: 100%;
	overflow-x: hidden;
	display: block;
	background-color: #fbfbfb;
}
.max {
	border: #eddd5e thick solid;
	position: fixed;
	width: 210px;
	right: 10px;
	bottom: 10px;
	max-width: 100%;
	background-color: #ffffff;
	padding: 4px;
	z-index: 9999;
}

.contact-item-detail p a{
  color: #000;
}

.contact-item-active .contact-item-detail p a{
  color: #fff;
}




