@font-face {
  font-family: 'montserratblack';
  src: url('fonts/montserrat-black-webfont.eot');
  src: url('fonts/montserrat-black-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/montserrat-black-webfont.woff2') format('woff2'),
  url('fonts/montserrat-black-webfont.woff') format('woff'),
  url('fonts/montserrat-black-webfont.svg#montserratblack') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratextrabold';
  src: url('fonts/montserrat-extrabold-webfont.eot');
  src: url('fonts/montserrat-extrabold-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/montserrat-extrabold-webfont.woff2') format('woff2'),
  url('fonts/montserrat-extrabold-webfont.woff') format('woff'),
  url('fonts/montserrat-extrabold-webfont.svg#montserratextrabold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratlight';
  src: url('fonts/montserrat-light-webfont.eot');
  src: url('fonts/montserrat-light-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/montserrat-light-webfont.woff2') format('woff2'),
  url('fonts/montserrat-light-webfont.woff') format('woff'),
  url('fonts/montserrat-light-webfont.svg#montserratlight') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratmedium';
  src: url('fonts/montserrat-medium-webfont.eot');
  src: url('fonts/montserrat-medium-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/montserrat-medium-webfont.woff2') format('woff2'),
  url('fonts/montserrat-medium-webfont.woff') format('woff'),
  url('fonts/montserrat-medium-webfont.svg#montserratmedium') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratregular';
  src: url('fonts/montserrat-regular-webfont.eot');
  src: url('fonts/montserrat-regular-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/montserrat-regular-webfont.woff2') format('woff2'),
  url('fonts/montserrat-regular-webfont.woff') format('woff'),
  url('fonts/montserrat-regular-webfont.svg#montserratregular') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'montserratsemibold';
  src: url('fonts/montserrat-semibold-webfont.eot');
  src: url('fonts/montserrat-semibold-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/montserrat-semibold-webfont.woff2') format('woff2'),
  url('fonts/montserrat-semibold-webfont.woff') format('woff'),
  url('fonts/montserrat-semibold-webfont.svg#montserratsemibold') format('svg');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat Bold';
  src: url('fonts/Montserrat-Bold.eot');
  src: url('fonts/Montserrat-Bold.eot?#iefix') format('embedded-opentype'),
  url('fonts/Montserrat-Bold.woff2') format('woff2'),
  url('fonts/Montserrat-Bold.woff') format('woff'),
  url('fonts/Montserrat-Bold.ttf') format('truetype'),
  url('fonts/Montserrat-Bold.svg#Montserrat-Bold') format('svg');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'belwebold';
  src: url('fonts/belwe_bold_bt-webfont.eot');
  src: url('fonts/belwe_bold_bt-webfont.eot?#iefix') format('embedded-opentype'),
  url('fonts/belwe_bold_bt-webfont.woff2') format('woff2'),
  url('fonts/belwe_bold_bt-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
.animatable {
  /* initially hide animatable objects */
  visibility: hidden;
  /* initially pause animatable objects their animations */
  -webkit-animation-play-state: paused;   
  -moz-animation-play-state: paused;     
  -ms-animation-play-state: paused;
  -o-animation-play-state: paused;   
  animation-play-state: paused; 
}
/* show objects being animated */
.animated {
  visibility: visible;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-play-state: running;
  -moz-animation-play-state: running;
  -ms-animation-play-state: running;
  -o-animation-play-state: running;
  animation-play-state: running;
}
/* CSS Animations (extracted from http://glifo.uiparade.com/) */
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  } 100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  60% {
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    -webkit-transform: translateX(20px);
  }
  80% {
    -webkit-transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    -moz-transform: translateX(20px);
  }
  80% {
    -moz-transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  80% {
    -o-transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    transform: translateX(20px);
  }
  80% {
    transform: translateX(-5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    -webkit-transform: translateX(-20px);
  }
  80% {
    -webkit-transform: translateX(5px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    -moz-transform: translateX(-20px);
  }
  80% {
    -moz-transform: translateX(5px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  60% {
    -o-transform: translateX(-20px);
  }
  80% {
    -o-transform: translateX(5px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    transform: translateX(-20px);
  }
  80% {
    transform: translateX(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  } 100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
  }
  50% {
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(.9);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(.3);
  }
  50% {
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(.9);
  }
  100% {
    opacity: 1;
    -moz-transform: scale(1);
  }
}
@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(.3);
  }
  50% {
    -o-transform: scale(1.05);
  }
  70% {
    -o-transform: scale(.9);
  }
  100% {
    opacity: 1;
    -o-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes moveUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(40px);
  } 100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes moveUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes moveUp {
  0% {
    opacity: 1;
    -o-transform: translateY(40px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes moveUp {
  0% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes fadeBgColor {
  0%{
    background:none;
  }
  70%{
    background:none;
  }
  100%{
    background:#464646;
  }
}
@-o-keyframes fadeBgColor {
  0%{
    background:none;
  }
  70%{
    background:none;
  }
  100%{
    background:#464646;
  }
}
@keyframes fadeBgColor {
  0%{
    background:none;
  }
  70%{
    background:none;
  }
  100%{
    background:#464646;
  }
}
.animated.animationDelay{
  animation-delay:.4s;
  -webkit-animation-delay:.4s;
}
.animated.animationDelayMed{
  animation-delay:1.2s;
  -webkit-animation-delay:1.2s;
}
.animated.animationDelayLong{
  animation-delay:1.6s;
  -webkit-animation-delay:1.6s;
}
.animated.fadeBgColor {
  -webkit-animation-name: fadeBgColor;
  -moz-animation-name: fadeBgColor;
  -o-animation-name: fadeBgColor;
  animation-name: fadeBgColor;
}
.animated.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
.animated.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
.animated.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
.animated.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
.animated.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.animated.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animated.moveUp {
  -webkit-animation-name: moveUp;
  -moz-animation-name: moveUp;
  -o-animation-name: moveUp;
  animation-name: moveUp;
}
* p, h1, h3, h4, h5, h5, ul{
  padding: 0;
  margin: 0;
}
@keyframes page-fade-in-up{
  0%{
    opacity:0;
  }
  to{
    opacity:1;
  }
}
body{
  animation:page-fade-in-up 1.5s ease forwards; 
  overflow-x: hidden;
  background-color: #fff;
}
.ctg-1{
  overflow: hidden;
}
.ctg-1:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.5s ease;
}
.ctg-2{
  overflow: hidden;
}
.ctg-2:hover img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  -o-transform: scale(1.05);
  transform: scale(1.05);
  transition: all 0.5s ease;
}
/*header{
display: flex;
align-items: center;
min-height: 137px;
}*/
.pro-text-main span{
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #fff;
}
.pro-text-main {
  font-style: normal;
  font-weight: 800;
  font-size: 42px;
  color: #000;
  text-align: center;
  padding: 50px 0;
}
.span-img img{
 margin-top: -40px;
}
.pro-text-main img{
  margin-top: -40px;
}
.about-img {
  padding-top: 50px;
}
header .row{
  align-items: center;
}

.logo img{
  max-width: 145px;
  padding: 18px 0;
}
.menu-main {
/*  background-color: #f1f1f1;*/
}
.main__menu ul{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  list-style: none;
  flex-wrap: wrap;
}
.main__menu ul li{
  padding: 20px 12px;
  position: relative;
}
.main__menu li a:hover{
  color:#04a52a;
}
.main__menu li a:hover::after {
  width: 50%;
}


.main__menu li a::after {
  content: "";
  position: absolute;
  left: 12px;
  bottom: 0%;
  width: 0px;
  height: 4px;
  background-color: #04a52a;
  transition: all 0.5s ease;
}
.main__menu li.dropdown a::after {
  background-color: transparent;
}
.main__menu li.dropdown a:hover::after {
 width: 0%;
}
.menu__main .nav-menu .dropdown-item{
 font-size: 18px;
}

.basket-home {
  border-right: solid 2px #666b70;
  margin-right: 11px;
  border-left: solid 2px #666b70;
}
.top-main{
  display: flex;
  justify-content: flex-end;
  color: #fff;
}
.top-haider{
  background-color: #04a52a;
  color: #fff;
}
.text-top p{
  padding-left: 6px;
}
.top-main li{
  display: inline-block;
  padding: 8px 12px;
}
.top-main p{
  font-size: 16px;
  font-family: 'montserratlight';
  padding-right: 85px;
}
.main__menu ul li a{
 font-size: 16px;
 color: #3b4248;
 font-family: 'montserratmedium';
 text-transform: capitalize;
 background: transparent !important;
 font-weight: bold !important;
}
.main__menu__right svg{
  color: #fff;
}
.main__menu__right{
  text-align: right;
}
.main__menu__right button{
  border: 0;
  padding: 0;
  background-color: transparent;
  margin-left: 50px;
  font-size: 18px;
  font-family: 'montserratmedium';
}
.main__menu__right button svg{
  font-size: 25px;
}
.main__menu__right button:last-child{
  color: #ffffff;
  padding: 12px 40px;
  border-radius: 35px;
}
.main__menu__right button:last-child svg{
  margin-left: 8px;
}
.menu__main.active {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
}
.menu__main{
  width: 100%;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 100%;
  -webkit-transition: 1s cubic-bezier(.858, .01, .068, .99);
  -o-transition: 1s cubic-bezier(.858, .01, .068, .99);
  transition: 1s cubic-bezier(.858, .01, .068, .99);
  transition-delay: 0s;
  z-index: 100;
  -webkit-transition-delay: .7s;
  -o-transition-delay: .7s;
  transition-delay: .7s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  background: #000;
}
.menu-close {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 40px;
  height: 22px;
  z-index: 3;
  -webkit-transition: .5s cubic-bezier(.767, .01, .18, 1.01);
  -o-transition: .5s cubic-bezier(.767, .01, .18, 1.01);
  transition: .5s cubic-bezier(.767, .01, .18, 1.01);
  cursor: pointer;
}
.menu-close::before, .menu-close::after {
  content: '';
  width: 40px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%) rotate(0deg);
  -ms-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
  -webkit-transition: .7s cubic-bezier(.767, .01, .18, 1.01);
  -o-transition: .7s cubic-bezier(.767, .01, .18, 1.01);
  transition: .7s cubic-bezier(.767, .01, .18, 1.01);
}
.menu__main.active .menu-close::before {
  -webkit-transform: translateY(-50%) rotate(225deg);
  -ms-transform: translateY(-50%) rotate(225deg);
  transform: translateY(-50%) rotate(225deg);
  -webkit-transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  -o-transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  transition-delay: 0s;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.menu__main.active .menu-close::after {
  -webkit-transform: translateY(-50%) rotate(135deg);
  -ms-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
  -webkit-transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  -o-transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  transition-delay: 0s;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.nav-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
}
.nav-menu::before {
  content: '';
  width: 203%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  -webkit-transition: .7s cubic-bezier(.858, .01, .068, .99);
  -o-transition: .7s cubic-bezier(.858, .01, .068, .99);
  transition: .7s cubic-bezier(.858, .01, .068, .99);
  -webkit-transition-delay: 0s;
  -o-transition-delay: 0s;
  transition-delay: 0s;
  z-index: -1;
  -webkit-transform: translateX(-100%) translateY(0);
  -ms-transform: translateX(-100%) translateY(0);
  transform: translateX(-100%) translateY(0);
}
.menu__main.active .nav-menu::before {
  -webkit-transform: translateX(0) translateY(0);
  -ms-transform: translateX(0) translateY(0);
  transform: translateX(0) translateY(0);
  -webkit-transition: 1s cubic-bezier(.858, .01, .068, .99);
  -o-transition: 1s cubic-bezier(.858, .01, .068, .99);
  transition: 1s cubic-bezier(.858, .01, .068, .99);
  transition-delay: 1s;
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.menu__logo{
  position: absolute;
  top: 20px;
  left: 25px;
  overflow: hidden;
}
.menu__logo img{
  -webkit-transform: translateY(104%);
  -ms-transform: translateY(104%);
  transform: translateY(104%);
  -webkit-transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  -o-transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  transition: 1s cubic-bezier(.767, .01, .18, 1.01);
}
.menu__main.active .menu__logo img{
  -webkit-transition: 2s cubic-bezier(.767, .01, .18, 1.01);
  -o-transition: 2s cubic-bezier(.767, .01, .18, 1.01);
  transition: 2s cubic-bezier(.767, .01, .18, 1.01);
  transition-delay: 1s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.logBox{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
}
.logoText{
  font-family: belwebold;
  color:#000;
  font-size: 32px;
  padding-left: 10px;
}
.logoTextSM{
  color: #000;
  font-size: 12px;
  font-weight: 600;
  padding-bottom: 6px;
  padding-left: 10px;
}
.cat-h-f{
  position: relative;
  display: flex;
  justify-content: center;
}
.cat-more-btn{
  position: absolute;
  background: #04a52b;
  z-index: 99;
  font-size: 26px;
  width: auto;
  height: auto;
  display: flex;
  align-self: center;
  padding: 10px 26px;
  border-radius: 50px;
  color: #fff;
}
.nav-menu li{
  list-style: none;
  overflow: hidden;
}
.nav-menu li a {
  position: relative;
  -webkit-transform: translateY(104%);
  -ms-transform: translateY(104%);
  transform: translateY(104%);
  -webkit-transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  -o-transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  transition: 1s cubic-bezier(.767, .01, .18, 1.01);
  margin: 0;
  padding: 0;
  display: inline-block;
  font-family: 'montserratextrabold';
  font-size:24px;
  color: #fff;
  padding: 5px 0;
}
.menu__main.active .nav-menu li a {
  -webkit-transition: 2s cubic-bezier(.767, .01, .18, 1.01);
  -o-transition: 2s cubic-bezier(.767, .01, .18, 1.01);
  transition: 2s cubic-bezier(.767, .01, .18, 1.01);
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}
.menu__main.active .nav-menu li:nth-child(1) a{
  -webkit-transition-delay: 1.1s;
  -o-transition-delay: 1.1s;
  transition-delay: 1.1s;
}
.menu__main.active .nav-menu li:nth-child(2) a{
  -webkit-transition-delay: 1s;
  -o-transition-delay: 1s;
  transition-delay: 1s;
}
.menu__main.active .nav-menu li:nth-child(3) a{
  -webkit-transition-delay: .9s;
  -o-transition-delay: .9s;
  transition-delay: .9s;
}
.menu__main.active .nav-menu li:nth-child(4) a{
  -webkit-transition-delay: .8s;
  -o-transition-delay: .8s;
  transition-delay: .8s;
}
.menu__main.active .nav-menu li:nth-child(5) a{
  -webkit-transition-delay: .7s;
  -o-transition-delay: .7s;
  transition-delay: .7s;
}
.menu__main.active .nav-menu li:nth-child(6) a{
  -webkit-transition-delay: .6s;
  -o-transition-delay: .6s;
  transition-delay: .6s;
}
.nav-menu li a::before {
  content: attr(data-text);
  position: absolute;
  top: 50%;
  color: #04a52a;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  -webkit-transition: .5s cubic-bezier(.76, .06, .85, .07);
  -o-transition: .5s cubic-bezier(.76, .06, .85, .07);
  transition: .5s cubic-bezier(.76, .06, .85, .07);
  width: 0%;
  white-space: nowrap;
  overflow: hidden;
  background-color: #e7e7e7;
}
.nav-menu li a:hover::before{
  width: 100%;
}
.menu__main iframe{
  height: 100vh;
}
.text-main{
  position: absolute;
  top: 50%;
  left:5%;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #04a52a !important;
}
.owl-theme .owl-dots .owl-dot span {
  width: 33px !important;
  height: 4px !important;
}
.cntr-fea {
  margin: 62px 0;
}
.banner-text p{
  padding-bottom: 30px;
  color: #fff;
}
.banner-text h5{
  padding-bottom: 10px;
}
.banner-text a{
  padding: 15px 24px;
  border: 1px solid #fff;
  margin-top: 29px;
  color: #fff;
}
.banner-text h1{
  font-size: 45px;
  font-family: 'montserratblack';
  color: #fff;
  text-transform: uppercase;
}
.banner-text h1 span{
  color: #04a52a;
}
.banner-text h5{
  font-style: normal;
  font-weight: 400;
  font-size: 32px;
  line-height: 140%;
  color: #fff;
}
.owl-theme .owl-dots .owl-dot {
  display: unset !important;
}
.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0px;
}
.banner-text span {
  color: #04a52a;
}
.banner__text__box{
  position: absolute;
  bottom: -180px;
  right: 100px;
  width: 342px;
  height: 342px;
  background-color: #0066b3;
  padding: 50px 60px;
  z-index: 9;
}
.banner__text__box h1{
  font-family: 'montserratextrabold';
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
}
.banner__text__box p{
  font-family: 'montserratmedium';
  font-size: 17px;
  color: #afc8ff;
  padding-top: 20px;
}
.banner__text__box h1 span{
  display: block;
}
.banner__text__box img{
  padding-top: 20px; 
}
/*.banner__text__box a{
  position: absolute;
top: 80px;
right: 80px;
background-color: #47e6c0;
width: 70px;
height: 70px;
border-radius: 50%;
transform: rotate(-49deg);
display: flex;
align-items: center;
justify-content: center;
transition: all 0.5s ease;
}*/
/*.banner__text__box a:hover{
  background-color: #fff;
}*/
.banner__text__box a svg{
  width: 22px !important;
  color: #ffffff;
  transition: all 0.5s ease;
}
.banner__text__box a:hover svg{
  color: #04a52a;
}
.slider__control{
  position: absolute;
  right: 70px;
  bottom: 70px;
  display: flex;
  align-items: end;
  justify-content: flex-end;
}
.about-section {
  padding: 5% 0 0 4%;
}
.about-section h5 {
  font-family: 'montserratmedium';
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #fff;
  margin: 0;
}
.about-section h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 35px;
  padding: 10px 0 20px;
}
.about-section button {
  background-color: transparent;
  border: 0;
  padding: 10px 0;
  margin-top: 20px;
}
.about-section p {
  line-height: 33px;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #000;
}
.about2-main {
  padding-top: 60px;
  padding-top: 0;
}
.Unveiling button{
  background-color: #04a52b;
  border: 0;
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
}
.Unveiling p{
  padding: 4px 0 20px;
  line-height: 34px;
  font-size: 17px;
}
.Unveiling h1{
  font-style: normal;
  font-weight: 600;
  font-size: 35px;
  padding: 10px 0 20px;
}
/*.uni-about {
  padding: 100px 0;
}*/
.uni-about .col-md-6{
  padding: 0;
}
.Unveiling {
  background-image: url(im/about-bg.jpg);
  background-repeat: repeat;
  background-size: 100%;
  padding: 76px 76px 50px;
  padding: 55px 76px 50px;
  color: #fff;
}
.slider__control a{
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: solid 3px #fff;
  margin: 11px;
  font-size: 25px;
}
.slider__control a:hover{
  background-color: #04a52a;
  border-color: #fff;
  color: #ffffff;
}
.slider__control svg{
  color: #fff;
}
.about-main h1{
  font-size: 48px;
  color: #0066b3;
  font-family: 'montserratblack';
  text-transform: uppercase;
  padding: 40px 0;
}
.about-main h4::after{
  content: "";
  position: absolute;
  top:  12px;
  left: 0px;
  height: 2px;
  width: 30px;
  background-color: #0066b3;
}
.about-main h4{
  font-size: 24px;
  color: #000d29;
  font-family: 'montserratmedium';
  position: relative;
  padding-left: 45px;
}
.about-main p{
  font-size: 18px;
  color: #000d29;
  font-family: 'montserratmedium'
}
.about-sec{
  display: flex;
  justify-content: flex-end;
}
.about-main {
 padding: 229px 10px 115px 300px;
 background-color: #fff;
 box-shadow: -14px 10px 23px -17px;
}
.about-section a {
  background-color: #04a52b;
  border: 0;
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'montserratmedium';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #fff;
}
.about__fluid{
  padding: 150px 15px;
}
.about__heading{
  padding-bottom: 90px;
}
.about__heading h1{
  font-family: 'montserratmedium';
  font-size: 35px;
  color: #000;
}
.tabs__main__area{
  width: 100%;
}
.card{
  border: 0;
  border-radius: 0;
}
.card-header{
  background-color: #04a52a;
  border-radius: 0 !important;
  padding: 0px 0px 7px !important;
  text-align: center;
}
.card-header button{
  font-family: 'montserratmedium';
  font-size: 27px;
  color: #000;
}
.card-header button:hover{
  color: #000;
  text-decoration: none;
}
.card-header button:focus{
  color: #000;
  text-decoration: none;
}
.collapsed .tab__plus{
  background-color: #363636;
}
.tab__plus{
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #04a52a;
  color: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 80px;
  top: 60px;
}
.collapsed .tab__plus .fa-minus{
  display: none;
}
.tab__plus .fa-minus{
  display: block;
}
.tab__plus .fa-plus{
  display: none;
}
.collapsed .tab__plus .fa-plus{
  display: block;
}
.tab__contant__main{
  max-width: 686px;
  width: 100%;
  margin: -72px auto 0px;
  padding-left: 80px;
}
.card-body h3{
  font-family: 'montserratmedium';
  font-size: 20px;
  color: #000;
  margin: 20px 0;
  display: inline-block;
}
.card-body p{
  font-family: 'montserratlight';
  font-size: 17px;
  color: #000;
}
.year__counter{
  padding: 60px 60px 80px;
  background-color: #04a52a;
  max-width: 445px;
  width: 100%;
  margin: 0 0 0 auto;
  margin-right: 80px;
  text-align: center;
}
.year__counter span{
  font-family: 'ocr_a_std';
  font-size: 220px;
  color: #47e6c0;
}
.year__counter p{
  font-family: 'montserratmedium';
  font-size: 20px;
  color: #ffffff;
  margin-top: -50px;
}
.year__cen{
  display: flex;
  align-items: center;
}
.cat__fluid{
  padding: 130px 0px;
}
.cat__fluid .container{
  max-width: 1700px;
  width: 100%;
  margin: 0 0 0 auto;
}
.cat__main__heading{
  text-align: left;
  padding-bottom: 50px;
  max-width: 1530px;
  width: 100%;
  margin: 0 0 0 auto;
}
.cat__main__heading h3{
  font-family: 'montserratmedium';
  font-size: 35px;
  color: #000000;
}
.cat__main__heading h1{
  font-family: 'Montserrat Bold';
  font-size: 45px;
  color: #000000;
}
.cat__mian{
  position: relative;
}
.cat__mian .cat__image img{
  width: 100%;
}
.cat__fluid .owl-stage-outer{
  max-width: 1530px;
  width: 100%;
  margin: 0 0 0 auto;
}
.cat__text{
  padding-top: 30px;
}
.cat__text h1{
  font-family: 'montserratmedium';
  font-size: 25px;
  color: #000000;
}
.cat__text a{
  font-family: 'montserratmedium';
  font-size: 17px;
  color: #000000;
  padding: 18px 27px;
  background-color: #f0f0f0;
  display: inline-block;
  position: absolute;
  bottom: 32px;
  right: 40px;
  transition: all 0.5s ease;
}
.cat__text a svg{
  width: 20px !important;
  height: auto;
  margin-left: 15px;
}
.cat__mian:hover .cat__text a{
  background-color: #135dfd;
  color: #ffffff;
}
.cat__fluid .owl-nav{
  position: absolute;
  top: -148px;
  right: 180px;
}
.owl-nav button div{
  width: 70px;
  height: 70px;
  color: #c8c8c8;
  border: solid 2px #c8c8c8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
  font-size: 24px;
}
.owl-nav button {
  margin: 11px !important;
}
.owl-nav button:hover{
  background-color: transparent !important;
}
.owl-nav button div:hover{
  background-color: #04a52a;
  color: #ffffff;
  border-color: #04a52a;
}
.container-max{
  max-width: 1420px;
}
.category-tab-content .fade:not(.show) {
  opacity: 1;
}
.tab-category-main{
  display: flex;
  flex-wrap: wrap;
}
.tab-buttons{
  flex: 0 0 20%;
}
.category-tab-content{
  flex: 0 0 80%;
  background-color: #f2f2f2;
}
.tab-buttons ul{
  display: flex;
  flex-wrap: wrap;
  border: 0;
}
.tab-buttons ul li{
  flex: 0 0 100%;
}
.tab-buttons ul li a{
  display: block;
  text-align: center;
  border: 0 !important;
  border-bottom: solid 2px #bfbfbf !important;
  padding: 36px 0;
  border-radius: 0 !important;
}
.tab-buttons ul li .active{
  background-color: #0066b3 !important;
  border: 0 !important;
}
.tab-buttons ul li a img{
  max-width: 200px;
  width: 100%;
  margin: 0 auto;
}
.tab-buttons ul li:last-child a{
  border: 0;
}
.category-tab-content{
}
.category-tab-content .tab-image{
  max-width: 500px;
  flex: 0 0 auto;
}
.category-tab-content .tab-pane.active{
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.tab-text{
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  padding-bottom: 70px;
  padding-right: 40px;
  justify-content: flex-end;
}
.tab-text h3{
  color: #000d29;
  font-size: 24px;
  position: relative;
  font-family: 'montserratmedium';
  padding-bottom: 25px;
}
.tab-text p{
  color: #444444;
  font-size: 18px;
  position: relative;
  font-family: 'montserratmedium';
}
.tab-text-main {
  position: absolute;
  top: 20%;
  left: 22%;
}
.tab-text-main h3::after {
  content: "";
  position: absolute;
  top: 12px;
  left: -42px;
  height: 2px;
  width: 30px;
  background-color: #0066b3;
}
.tab-text-main h3{
  color: #0066b3;
  font-size: 24px;
  position: relative;
  font-family: 'montserratmedium'
}
.tab-text-main h1{
  color: #000d29;
  font-size: 60px;
  position: relative;
  font-family: 'montserrat Black'
}
#special .owl-nav  {
  display: none !important;
}
.map-image h1 span{
  color: #0066b3;
}
.map-image h1{
  font-family: 'montserratblack';
  font-style: normal;
  font-weight: 800;
  font-size: 37px;
  line-height: 150%;
  font-feature-settings: 'pnum' on, 'lnum' on;
  color: #FFFFFF;
}
.map-image a{
  font-style: normal;
  font-weight: 400;
  font-size: 17px;
  line-height: 120%;
  color: #FFFFFF;
}
.connect-text h1{
  font-family: 'montserrat Black';
  font-size: 60px;
  color: #000d29;
  text-align: center;
}
.connect-text h1 span{
  color: #0066b3;
}
.award-text h1 {
  color: #000d29;
  font-size: 60px;
  position: relative;
  font-family: 'montserrat Black';
}
.award-text h3::after {
  content: "";
  position: absolute;
  top: 74%;
  left: -42px;
  height: 2px;
  width: 30px;
  background-color: #0066b3;
}
.insta-hover img {
  max-width: 275px;
}
.instagram-fluid {
  padding: 50px 0 100px;
}
.award-text {
  padding-left: 130px;
  border-top: solid 2px #000d29;
}
.award-text h3 {
  color: #0066b3;
  font-size: 24px;
  position: relative;
  font-family: 'montserratmedium';
  padding-top: 40px;
}
.connect-text {
  padding: 101px 0;
  text-align: center;
}
.connect-text img{
  padding-top: 40px;
}
.about-main img{
  padding-top: 50px;
}
.ac-container{
  max-width: 1600px;
  width: 100%;
  margin: 0 auto; 
}
.ac-container .row{
  align-items: center;
}
.achievements-fluid{
  background-image: url(im/who-img.jpg);
  background-size: 100%;
  background-repeat: no-repeat;
  margin-top: -92px;
}
.feature-main-tetx .nav-tabs {
  border-bottom: unset;
  justify-content: center;
  padding: 60px 0;
}
.sign-main {
  text-align: center;
  padding: 50px 0 100px;
}
.sign-main p{
  padding-bottom: 30px;
}
.sign-main input{
  width: 25%;
  padding: 13px;
}
.sign-main button{
  padding: 10px;
  width: 196px;
  height: 55px;
  background: #04a52a;
  color: #fff;
  border: 0;
}
.feature-main-tetx li{
  font-style: normal;
  font-weight: 800;
  font-size: 43px;
  color: #161616;
  text-align: center;
}
.feature-main-tetx li span{
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  text-align: center;
  color: #161616;
}
.products-section {
  padding-top: 60%;
}
.products-section h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 130%;
  color: #333333;
}
.products-section h2 {
  font-family: 'montserratblack';
  font-style: normal;
  font-weight: 800;
  font-size: 43px;
  line-height: 130%;
  color: #333333;
}
.ctg-2 h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  color: #000;
  padding: 10px 0 20px;
  text-align: center;
}
.products-section a {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  color: #333333;
}
.products-ctg {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10%;
}
.ctg-1 {
  padding-right: 20px;
}
.ctg-1 h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 26px;
  color: #000;
  padding: 10px 0 20px;
  text-align: center;
}
.map-image img{
  width: 100%;
}
.counter__mian{
  display: flex;
  flex-wrap: wrap;
  padding-top: 20%;
}
.map-image {
  padding-top: 57%;
}
.counter__mian .number{
  flex: 0 0 33%;
  padding: 40px 30px;
  padding-right: 0;
}
.counter__mian .number:nth-child(1){
  /*border-bottom: solid 1px #46e3c1;*/
}
.counter__mian .number:nth-child(2){
/*    border-bottom: solid 1px #46e3c1;*/
/*border-left: solid 1px #46e3c1;*/
}
.counter__mian .number:nth-child(4){
/*    border-left: solid 1px #46e3c1;*/
}
.counter__mian .number h1{
  font-size: 50px;
  color: #ffffff;
  font-family: 'montserratblack';
  margin: 25px 0 10px;
}
.counter__mian .number p{
  text-transform: uppercase;
  color: #fff;
  font-family: 'montserratmedium';
}
.customer__review{
  text-align: center;
  width: 100%;
  padding: 80px 0;
}
.customer__review h1{
  font-family: 'montserratextrabold';
  font-size: 35px;
  color: #000000;
}
.review__mian{
  padding-top: 40px;
  max-width: 718px;
  width: 100%;
  margin: 0 auto;
}
.review__mian h3{
  padding: 40px 0 30px;
  font-family: 'montserratlight';
  font-size:  30px;
  color: #080808;
}
.review__mian h4{
  font-size: 17px;
  color: #000;
  font-family: 'montserratmedium';
  text-transform: uppercase;
}
.review__mian p{
  font-size: 14px;
  color: #b6b6b6;
  font-family: 'montserratmedium';
  text-transform: uppercase;
}
.review__control a{
  position: absolute;
  top: 50%;
  font-size: 30px;
}
.review__control a:first-child{
  left: 0;
}
.review__control a:last-child{
  right: 0;
}
.insta-main-text{
  text-align: center;
  padding-bottom: 100px;
}
.insta-main-text h1{
  font-size: 25px;
  color: #000;
  font-family: 'montserratlight';
}
.insta-main-text h1 span{
  font-family: 'montserratmedium';
}
#instagram .owl-nav{
  position: absolute;
  bottom: -2%;
  left: -255%;
  right: 0;
}
#instagram .owl-nav button div {
  width: 38px;
  height: 38px;
}
.insta-hover{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.insta-icon{
  position: absolute;
  width: 90%;
  height: 90%;
  z-index: 9;
  top: 5%;
  left: 5%;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(19,92,253,0.8);
  color: #ffffff;
  font-size: 30px;
  transform: scale(3);  
  opacity: 0;
  transition: all 0.3s ease;
}
.insta-hover:hover .insta-icon{
  opacity: 1;
  transform: scale(1);  
}
.top-main a{
  font-size: 18px;
}
.top-main  button{
  background-color: transparent;
  color: #fff;
  border: 0;
}
.footer-fluid {
  color: #fff;
  background-image: url(im/footer-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-container{
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
}
.footer-main  h3{
  font-size: 25px;
  font-family: 'montserratmedium';
  color: #fff;
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
}
.footer-main button{
  background-color: #04a52b;
  border: 0;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'montserratmedium';
  font-style: normal;
  font-weight: 400;
  font-size: 13px;
  color: #fff;
  margin-top: 23px;
}
.footer-main input {
  background-color: #2f2f2f;
  border: 0;
  width: 100%;
  padding: 8px 0 8px 20px;
  color: #fff;
  border-radius: 50px;
}
.social-ftr svg{
  border-radius: 50px;
  width: 31px !important;
  padding: 6px 0;
  font-size: 32px;
  margin: 0 5px;
  background-color: #fff;
  color: #000;
  transition: all 0.5s ease;
}
.social-ftr .nav-item:hover svg{
  color: #fff;
  background-color: #04a52b;
  rotate: 360deg;
}
.social-ftr2 svg{
  border-radius: 50px;
  width: 31px !important;
  padding: 6px 0;
  font-size: 32px;
  margin: 0 5px;
  background-color: #3e62ba !important;
  color: #fff !important;
}
#comments{
  background-color: #04a52b;
  border: 0;
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
}
.phone {
  padding-left: 55px;
}
.main-contact-page{
  padding-bottom: 120px;
}
.footer-main h4{
  color: #04a52b;
  font-size: 25px;
  padding: 22px 0 5px;
}
.social-ftr li{
  display: inline-block;
}
.footer-main p{
  line-height: 35px;
}
.footer-main ul{
  display: block;
  list-style: none;
  margin-top: 20px;
}
.social-all{
  border-left: solid 2px #e1e1e1;
  border-right:  solid 2px #e1e1e1;
  height: 400px;
}
.social-all p{
  font-size: 18px;
  font-family: 'montserratregular';
  color: #000d29;
}
.social-all h2{
  font-size: 20px;
  font-family: 'montserratmedium';
  color: #000d29;
  padding: 40px;
  background-image: url(im/location.png);
  background-repeat: no-repeat;
  background-position: 19%;
}
.social-all ul li{
  display: inline-block;
  padding: 6px 0px;
  background-color: #000d29;
  border-radius: 25px;
  margin: 0px 2px;
}
.footer-main{
  padding: 78px 0 64px;
}
.btm-links li{
  color: #000d29 !important;
}
.footer-main ul li a{
  font-size: 17px;
  font-family: 'montserratlight';
  transition: all 0.3s ease;
}
.footer-main ul li {
  padding: 3px 0;
}
.social-all li{
  color: #fff;
}
.search-show {
  display: block;
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 99999999;
}
.search-show input{
  background-color: #04a52a;
  width: 100%;
  height: 100%;
  padding: 30px 30px;
  font-size: 50px;
  border: 0;
  color: #fff;
  text-transform: uppercase;
  z-index: 999999;
  position: relative;
}
.footer-main1{
  display: flex;align-items: center;justify-content: center;
}
.footer-main ul li p{
  font-size: 17px;
  color: #232323;
  font-family: 'montserratlight';
}
.footer-main ul li span{
  font-size: 8px;
  margin-top: 5px;
  margin-right: 15px;
}
.footer-main ul li a span{
  font-size: 16px !important;
}
.footer-main ul li a:hover{
  color: #04a52a;
}
.footer-end-fluid{
  padding: 80px 0;
}
.footer-end{
  padding: 20px 0 20px 0;
}
.footer-end p{
  font-size: 17px;
  color: #fff;
  font-family: 'montserratlight';
}
.footer-end-right {
  text-align: right;
  padding-top: 20px;
}
/*.animation-element{
-webkit-transform: translateY(105%);
-ms-transform: translateY(105%);
transform: translateY(105%);
-webkit-transition: 1.6s cubic-bezier(.17, .85, .438, .99);
-o-transition: 1.6s cubic-bezier(.17, .85, .438, .99);
transition: 1.6s cubic-bezier(.17, .85, .438, .99);
}
.animation-element::before {
  content: '';
  background: #04a52a;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -webkit-transition: 1.5s cubic-bezier(.858, .01, .068, .99);
  -o-transition: 1.5s cubic-bezier(.858, .01, .068, .99);
  transition: 1.5s cubic-bezier(.858, .01, .068, .99);
  z-index: 3;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
.animation-dark.animation-element::before{
background: #000;
}
.animation-light.animation-element::before{
background: #ffffff;
}
.in-view.animation-element::before{
-webkit-transform: translateX(110%);
-ms-transform: translateX(110%);
transform: translateX(110%);
}
*/
.card-header a{
  background-color: #04a52a !important;
  color: #fff !important;
}
@media screen and (max-width: 1850px){
  .main__menu__right button{
    margin-left: 20px;
  }
}
@media screen and (max-width: 1700px){
  .tab__contant__main {
    padding-left: 180px;
  }
}
@media screen and (max-width: 1600px){
  .ac-container {
    max-width: 1199px;
  }
  .counter__mian .number{
    padding-left: 15px;
  }
  .counter__mian .number h1 {
    font-size: 62px;
    color: #fff;
  }
  .counter__mian .number p {
    font-size: 15px;
  }
}
@media screen and (max-width: 1550px){
  .main__menu ul li {
    padding: 0 15px;
  }
  .main__menu ul li a {
    font-size: 14px;
  }
  .cat__fluid .container {
    padding: 0 30px;
  }
}
.text-top {
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-text {
  display: flex;
  justify-content: space-around;
  padding: 8px 0;
}
@media screen and (max-width: 1486px){
  .main__menu__right button svg {
    font-size: 17px;
  }
  .main__menu__right button{
    font-size: 16px;
  }
  .main__menu__right button:last-child {
    padding: 8px 15px;
  }
  .main__menu__right button img{
    max-width: 35px;
  }
/*
  header {
      min-height: 100px;
  }*/
  .banner__text__box {
    width: 450px;
    height: 315px;
    padding: 40px 20px;
  }
  .about__fluid {
    padding: 70px 15px;
  }
  .about__heading {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 1150px){
 
  .main__menu__right button {
    margin-left: 6px;
  }
}
.feature-tab {
  width: 100%;
  text-align: center;
}
.nav-tabs {
  text-align: center;
  justify-content: center;
  border: 0;
}
.feature-tab .nav-link {
  font-style: normal;
  font-weight: 800;
  font-size: 43px;
  color: #161616;
  text-align: center;
  padding: 50px 0;
  border: 0;
}
@media screen and (max-width: 991px){
  .hidden-xs{
    display: none;
  }
  .year__counter{
    margin: 0 auto;
  }
  .tab__contant__main{
    margin: 0;
    padding: 0;
  }
  .card-header{
    padding: 25px 15px;
  }
  .tab__plus{
    right: 30px;
    top: 37px;
  }
  .cat__fluid {
    padding: 50px 0px;
  }
}
.logo #menu-open{
  display: none;
}
@media screen and (max-width: 767.5px){
/*  header {
    min-height: 65px;
}*/
.main__menu li a::after {
  top: 20px;
}
.main__menu__right button {
  margin-left: 14px;
}
.slider__control a {
  width: 40px;
  height: 40px;
  margin: 5px;
  font-size: 18px;
}
.slider__control {
  right: 15px;
  bottom: 5px;
}
.slider__control{
  z-index: 99999;
}
.cat__main__heading h3 {
  font-size: 20px;
}
.cat__main__heading h1 {
  font-size: 30px;
}
.cat__fluid .owl-nav {
  right: 0px;
  top: -64px;
}
.owl-nav button div {
  width: 35px;
  height: 35px;
  font-size: 16px;
}
.customer__review h1 {
  font-size: 25px;
}
.review__mian h3 {
  font-size: 20px;
}
.main__menu__right {
  text-align: right;
  display: none;
}
.header-main, .header-main .container-max{
  padding: 0 !important;
}
.search-show{
  top: 38px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.search-show input{
  padding: 15px;
  font-size: 18px;
}
}
.social-contact h2{
  color: #0a2540;
  font-size: 23px;
  font-weight: bold;
}
.icon-text h2{
  color: #202020;
  font-size: 20px;
}

.icon-text {
  padding-right: 80px;
  padding-bottom: 30px;
}

@media screen and (max-width: 550px){
  .icon-main {
    display: unset !important;
  }
  .phone {
    padding-left: 0;
  }
  .Payment2 {
    display: unset !important;
  }
  .nature-text {
    border: solid 1px #d6d5d6;
    border-radius: 20px;
    margin: 12px 10px !important;
    padding: 12px;
    height: unset !important;
  }
  .about-img {
    padding-top: 0;
  }
  
  .logo {
    justify-content: space-between;
    display: flex;
  }
  .top-text {
    display: none;
  }
  .top-main {
    display: flex;
    justify-content: center;
  }
  .achievements-fluid {
    background-image: url(im/who-img.jpg);
    background-size: cover;
    margin-top: 0;
  }
  .header-main {
    position: unset;
  }
  .top-main p {
    font-size: 16px;
    font-family: 'montserratlight';
    padding-right: 85px;
    display: none;
  }
  .text-main {
    position: absolute;
    top: 24%;
    left: 5%;
  }
  .logo img {
    max-width: 176px;
    padding: 10px 10px;
    width: unset;
  }
  .pro-text-main {
    font-style: normal;
    font-weight: 800;
    font-size: 25px;
    color: #000;
    text-align: center;
    padding: 30px 0;
  }
  .Payment img {
    border: solid 1px #d6d5d6;
    border-radius: 0;
    margin: 12px 10px;
    width: 100%;
  }
  .Unveiling {
    background-image: url(im/about-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
  }
  .map-image {
    padding-top: 15%;
  }
  .counter__mian .number {
    flex: 0 0 53%;
  }
  .banner__text__box{
    left: 0;
    width: 100%;
  }
  .year__counter {
    padding: 8px 24px 56px;
    max-width: 320px;
  }
  .year__counter span{
    font-size: 170px;
  }
  .card-header button {
    font-size: 20px;
  }
  .tab__plus {
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  .card-body h3 {
    font-size: 16px;
  }
  .card-body p {
    font-size: 15px;
  }
  .card-header {
    padding: 10px 15px;
  }
  .tab__plus {
    top: 19px
  }
  .counter__mian .number h1 {
    font-size: 32px;
  }
  .products-section {
    padding-top: 10%;
  }
  .banner-text h5 {
    font-size: 17px;
  }
  .banner-text h1 {
    font-size: 20px;
    padding-bottom: 25px;
  }
  .slider__control {
    right: 0;
    bottom: unset;
    top: 75%;
    right: 20px;
    align-items: start;
    justify-content: flex-start;
  }
  .banner-text a {
    padding: 6px 24px;
  }
  .banner-text p {
    padding-bottom: 30px;
    display: none;
  }
  .counter__mian .number{
    padding: 15px;
    padding-right: 0;
  }
  .counter__mian .number h1 {
    margin: 12px 0 0px;
  }
  .counter__mian .number p {
    font-size: 14px;
  }
  .insta-main-text {
    padding-bottom: 60px;
  }
  #instagram .owl-nav {
    top: -47%;
  }
  .footer-fluid {
    padding: 30px 15px;
  }
  .footer-end-fluid {
    padding: 15px 0;
  }
  .footer-main{
    padding: 10px 0;
  }
  .customer__review {
    padding: 50px 0;
  }
}
/*--------- Products Page ------------*/
.sub-banner{
  background-color: #d2d2d2;
  width: 100%;
  padding-top: 30px;
  padding-left: 75px;
  padding-bottom: 30px;
}
.sub-banner h1{
  font-family: montserratsemibold;
  color: #d71920;
  font-size: 34.33px;
  padding-bottom: 50px;
  text-transform: uppercase;
}
.sub-banner ul{
  display: block;
  list-style: none;
}
.sub-banner li{
  display: inline-block;
}
.sub-banner a{
  display: block;
  font-family: montserratregular;
  color: #000;
  font-size: 15px;
  padding: 20px 0;
  text-transform: capitalize;
}
.sub-banner a:hover{
  color: #000;
}
.sub-banner a:focus{
  color: #000;
}
.sub-hadding h1{
  text-align: center;
  font-family: montserratsemibold;
  color: #000;
  font-size: 30px;
  text-transform: uppercase;
  padding-top: 48px;
  padding-bottom: 20px;
}
.sub-breadcrumb{
  text-align: left;
  padding-bottom: 50px;
}
.sub-breadcrumb ul{
  display: block;
  list-style: none;
  color: #989898;
}
.sub-breadcrumb li{
  display: inline-block;
  font-family: montserratregular;
  color: #04a52a;
  font-size: 15px;
  text-transform: capitalize;
}
.sub-breadcrumb a{
  display: inline-block;
  font-family: montserratregular;
  color: #989898;
  font-size: 15px;
  display: block;
  padding-left: 10px;
  padding-right: 10px;
  text-transform: capitalize;
}
.sub-li{
  padding-left: 10px;
}
.sub-container{
  max-width: 1450px !important;
  width: 100% !important;
}
.products-main{
  padding: 0px;
  margin-bottom: 30px;
  text-align: center;
  overflow: hidden;
  position: relative;
  transition: all 0.5s ease;
  background-color: #ffffff;
  padding-bottom: 20px;
  border: solid 4px #c1c1c1;
}
.products-main:hover{
  border: 0;
}
.products-main::after{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 0%;
  height: 4px;
  background-color: #04a52a;
  content: "";
  transition: all 0.5s ease;
}
.products-main:hover::after{
  width: 100%;
}
.products-main::before{
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0%;
  height: 4px;
  background-color: #04a52a;
  content: "";
  transition: all 0.5s ease;
  overflow: hidden;
}
.products-main:hover::before{
  width: 100%;
}
.products-main h5{
  position: absolute;
  top: 0;
  right: 0;
  background-color: #04a52a;
  transition: all 0.5s ease;
  width: 4px;
  height: 0%;
}
.products-main:hover h5{
  height: 100%;
}
.products-main h6{
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #04a52a;
  transition: all 0.5s ease;
  width: 4px;
  height: 0%;
  margin: 0;
}
.products-main:hover h6{
  height: 100%;
}
.products-main img{
  max-width: 327px;
  width: 100%;
}
.products-main-text{
  text-align: center;
  padding-top: 25px;
  padding-bottom: 20px;
}
.products-main-text h4{
  font-size: 17px;
  color: #000000;
  font-family: montserratregular;
  padding-bottom: 10px;
}
.products-main-text p{
  font-size: 17px;
  color: #000000;
  font-family: montserratregular;
}
@media screen and (max-width: 1480px){
  .sub-banner h1{
    padding-bottom: 25px;
  }
  .sub-banner a{
    padding: 10px 0;
  }
  .sub-banner{
    padding-top: 50px;
    padding-left: 45px;
  }
}
@media screen and (max-width: 1285px){
  .navtab-item .nav-link{
    margin: 0 0px 0 100px;
  }
  .megamenu-tab-nav a{
    padding-left: 0;
  }
}
@media screen and (max-width: 1250px){
  .sub-banner {
    padding-top: 35px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 1200px){
  .sub-container{
    max-width: unset !important;
    width: unset !important;
  }
}
@media screen and (max-width: 1199px){
  .sub-banner {
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 991px){
  .hidden-lg{
    display: none;
  }
  .navtab-item .nav-link {
    margin: 0 0px 0 15px;
  }
  .megamenu-tab-nav a {
    padding: 19px 0;
    padding-left: 100px;
  }
  .dropdown-menu {
    padding: 0;
  }
}
@media screen and (max-width: 450px){
  .sub-banner h1{
    font-size: 23.33px;
  }
  .sub-hadding h1{
    font-size: 25px;
  }
}
.nature-text {
  border: solid 1px #d6d5d6;
  border-radius: 20px;
  margin: 0 10px;
  padding: 12px;
  height: 100%;
}
.nature-text p{
  font-size: 15px;
  padding-top: 7px;
}
.Payment2 {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.nature-text h1{
  color: #202020;
  font-size: 20px;
}
@media screen and (min-width: 767px){
.nav-item.dropdown:hover .dropdown-menu{
 display: block !important;
}
}
@media screen and (min-width: 1700px){
  .sub-banner {
    padding-top: 60px;
    padding-left: 130px;
  }
  .Unveiling {
    background-image: url(im/about-bg.jpg);
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 76px 76px 50px;
    color: #fff;
    height: 540px;
  }
}
/*--------- Products Page ------------*/
/*--------- Details Page ------------*/
.detail-form{
  padding: 15px 0px;
}
.detail_box h1{
  color: #202020;
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 600;
}
.detail_box h2{
  font-family: montserratregular;
  color: #000;
  font-size: 18px;
  text-transform: capitalize;
  margin-bottom: 10px;
  padding: 10px 0;
  border-bottom: solid 2px #f5f5f5;
}
.title-detail {
  background-color: #f5f5f5;
  padding: 5px;
}
.detail_box h3{
  font-family: montserratsemibold;
  color: #000;
  font-size: 22px;
  text-transform: capitalize;
}
.detail_box h5{
  font-family: montserratsemibold;
  color: #000;
  font-size: 22px;
  text-transform: capitalize;
  padding-bottom: 10px;
}
.detail_box p{
  font-family: montserratregular;
  color: #000;
  font-size: 18px;
  text-transform: capitalize;
  padding-top: 3px;
  line-height: 37px;
  padding-bottom: 14px;
}
.icon-main {
  display: flex;
  justify-content: flex-start;
}
.Add-to-Basket input{
  background-color: #04a52b;
  border: 0;
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
  font-family: 'montserratmedium';
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  margin-left: 15px;
}
.menu__main  {
  z-index: 9999;
}
.pro-page{
  padding-top:70px ;
}
.Add-to-Basket input:hover{
  color: #ffffff;
}
.sub_heading2{
  font-family: montserratsemibold;
  color: #fff;
  font-size: 25px;
  padding: 30px 15px;
}
.navbar-collapse{
  justify-content: left;
}
@media screen and (max-width: 1200px){
  .pro-main-left-image{
    height: 300px;
  }
}
@media screen and (max-width: 767px){
  .detail-form{
    margin-top: 20px;
  }
  .main-text h1 {
    font-size: 40px;
  }
  .main-text {
    padding: 30px 0 0px;
  }
}
@media screen and (max-width: 523px){
  .Add-to-Basket input{
    margin-left: 0;
  }
  .detail_box h1{
    font-size: 20px;
  }
  .detail_box h3{
    font-size: 20px;
  }
  .detail_box h5{
    font-size: 20px;
  }
}
/*--------- Details Page ------------*/
.align_1{
  padding:0 !important;
}
/*--------- Quote Page ------------*/
.form-horizontal input{
  width: 100%;
  height: 50px;
  border: solid 1px #c5c5c5;
  border-radius: 0;
  margin: 15px 0;
}
.form-horizontal select{
  width: 100%;
  height: 50px;
  border: solid 1px #c5c5c5;
  border-radius: 0;
  margin: 15px 0;
}
.form-horizontal h3{
  width: 100%;
  height: 50px;
  border: solid 1px #c5c5c5;
  border-radius: 0;
  margin: 15px 0;
  background-color: #fff;
}
.form-horizontal textarea{
  width: 100%;
  height: 200px;
  border: solid 1px #c5c5c5;
  border-radius: 0;
  margin: 15px 0;
}
.form-control:focus{
  border: solid 1px #000000;
  box-shadow: unset;
}
.cate-heading{
  font-size: 20px;
  padding: 15px 15px;
  color: #fff;
  background-color: #04a52a;
  font-family: montserratsemibold;
}
.hcate-heading{
  font-size: 20px;
  padding: 15px 15px;
  color: #fff;
  background-color: #000000;
  font-family: montserratsemibold;
}
.panel-default{
  padding: 15px;
}
.panel-title{
  font-size: 20px;
  font-family: montserratsemibold;
  color: #000;
}
.subss{
  padding: 10px 0px;
  border-bottom: solid 1px #D2D2D2;
}
.subss a{
  color: #222;
  font-family: montserratregular;
  font-size: 14px;
}
.panel-group{
  border: solid 1px #D2D2D2;
  margin-bottom: 30px;
}
.pagination li a{
  display: inline-block;
  border: solid 1px #dadada;
  padding: 10px;
}
.pagination .active a{
  background-color: #04a52a;
  color: #fff;
}
/*--------- Quote Page ------------*/
@media screen and (min-width: 1700px){
  .navbar .dropdown-menu {
    left: 55%;
  }
  .banner__text__box {
    width: 555px !important;
  }
  .about-img {
    left: 28% !important;
  }
  .tab-text-main {
    left: 43% !important;
  }
}
/*--------- New Page Style ------------*/
.main__bread__crumb{
  background-color: #f4f4f4;
  margin-top: 0px;
  padding: 55px 115px;
  position: relative;
}
.sub-hadding{
  max-width: 800px;
}
.sub-hadding h1{
  text-align: left;
  padding-top: 0;
  font-family: 'montserratregular';
  padding-bottom: 10px;
}
.sub-breadcrumb{
  text-align: left;
  padding-bottom: 0;
}
.pagination{
  position: absolute;
  right: 115px;
  top: 35%;
}
.pagination ul{
  display: flex;
  list-style: none;
  align-items: center;
}
.pagination li{
  display: flex;
  align-items: center;
}
.pagination li a {
  display: inline-block;
  border: solid 0px #dadada;
  padding: 0;
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d0d0d0;
  margin: 4px;
}
.pagination .left__m a{
  width: 48px;
  height: 48px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a:hover{
  background-color: #04a52a;
  color: #fff;
}
/*.pro__row{
padding: 80px;
}*/
.special img {
  width: 100%;
  padding-top: 20px;
}
.special {
  border: solid 1px #fff;
}
.special-text p {
  font-size: 15px;
  color: #fff;
}
.special-text {
  text-align: center;
  padding: 10px 0;
}
.special-text h4 {
  font-size: 15px;
  color: #fff;
}
.special__image{
  margin: 20px 20px;
/*  border: solid 1px #e2e2e2;*/
transition: all 0.5s ease;
text-align:center;
}
.special:hover {
  background-color: #04a52a;
}
.special:hover .special-text h4 {
  font-size: 15px;
  color: #fff;
}
.special:hover .special-text p {
  font-size: 15px;
  color: #fff;
}
.top__menu__mian{
  background-color: #363636;
  margin-top: 0px;
  padding: 0 50px;
}
.top__menu__mian ul{
  display: flex;
  list-style: none;
  align-items: center;
}
.top__menu__mian ul li{
}
.top__menu__mian ul li a{
  padding: 25px 25px;
  display: block;
  font-family: 'montserratsemibold';
  font-size: 20px;
  color: #ffffff;
}
.top__menu__mian ul li a:hover{
  background-color: #f69148;
}
.top__menu__mian ul li a svg{
  margin-left: 15px;
}
.top__menu__mian ul li .top__sbu__menu{
  opacity: 0;
  position: absolute;
  background-color: #f4f4f4;
  z-index: -9;
  width: 100%;
  left: 0;
  padding: 50px 50px;
  box-shadow: 0px 2px 8px #AFAFAF;
}
.sbg{
  display: flex;
  align-items: center;
}
.top__menu__mian ul li .top__sbu__menu a{
  font-family: 'montserratregular';
  font-size: 15px;
  color: #363636;
  padding: 5px 0;
  display: inline-block;
}
.top__menu__mian ul li .top__sbu__menu a:hover{
  background-color: transparent;
}
.top__menu__mian ul li .top__sbu__menu svg{
  font-size: 7px;
  margin-right: 15px;
}
.top__menu__mian ul li:hover .top__sbu__menu{
  opacity: 1;
  z-index: 999;
}
.top__menu__mian ul li .top__sbu__menu .sbg:hover a{
  color:#f69148;
}
.sbg:hover svg{
  color:#f69148;
}
.payment-section{
  background-color: #f9f7f7;
  padding-bottom: 110px;
}
.Payment img {
  border: 0;
  border-radius: 0;
  margin: 0;
  width: 100%;
  padding: 10px;
}
@media screen and (max-width: 767px){
  .top__menu__mian{
    padding: 0 0px;
    margin-top: 0px;
  }
  .top__menu__mian ul li a {
    padding: 15px 15px;
  }
  .top__menu__mian ul {
   display: block;
 }
 .main__bread__crumb{
  padding: 15px;
}
.pro__row {
  padding: 30px 0px;
}
.sub-hadding h1{
  font-size: 19px;
}
.top__menu__mian ul li .top__sbu__menu{
  padding: 15px;
}
.pagination {
  position: unset;
}
.Unveiling {
  padding: 55px 30px 50px;

}
.Unveiling h1{
  font-size: 22px;
}
.Unveiling p{
  font-size: 14px;
}
.about-section h2 {
    font-size: 27px;
}
}
/*--------- New Page Style ------------*/
.main__bread__crumb{
  background-color: #f4f4f4;
  margin-top: 0px;
  padding: 30px 90px;
  position: relative;
}
.sub-hadding{
  max-width: 800px;
}
.sub-hadding h1{
  text-align: left;
  padding-top: 0;
  font-family: 'montserratregular';
  padding-bottom: 10px;
}
.sub-breadcrumb{
  text-align: left;
  padding-bottom: 0;
}
#gal1 img{
  border: 2px solid #d5d5d6;
  margin-top: 20px;
  max-width: 100px;
  border-radius: 10px;
}
.input-text.qty {
  width: 100px;
  height: 41px;
  padding: 0 5px;
  text-align: center;
  background-color: var(--white-color);
  border: 1px solid #efefef;
}
.minus, .quantity.buttons_added .plus {
  padding: 7px 10px 8px;
  height: 41px;
  background-color: var(--white-color);
  border: 1px solid #efefef;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgb(239, 239, 239);
  cursor: pointer;
  width: 35px;
}
.pagination{
  position: absolute;
  right: 115px;
  top: 20%;
}
.pagination ul{
  display: flex;
  list-style: none;
  align-items: center;
}
.pagination li{
  display: flex;
  align-items: center;
}
.pagination li a {
  display: inline-block;
  border: solid 0px #dadada;
  padding: 0;
  font-size: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d0d0d0;
  margin: 4px;
}
.pagination .left__m a{
  width: 48px;
  height: 48px;
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination a:hover{
  background-color: #04a52a;
  color: #fff;
}
/*.pro__row{
padding: 80px;
}*/
.special__image{
  margin: 20px 20px;
  transition: all 0.5s ease;
}
.special:hover {
  background-color: #04a52a;
}
.special:hover .special-text h4 {
  font-size: 15px;
  color: #fff;
}
.special:hover .special-text p {
  font-size: 15px;
  color: #fff;
}
.top__menu__mian{
  background-color: #202020;
  margin-top: 0px;
  padding: 0 50px;
}
.top__menu__mian ul{
  display: flex;
  list-style: none;
  align-items: center;
}
.top__menu__mian ul li{
}
.top__menu__mian ul li a{
  padding: 25px 25px;
  display: block;
  font-family: 'montserratsemibold';
  font-size: 20px;
  color: #ffffff;
}
.top__menu__mian ul li a:hover{
  background-color: #04a52a;
}
.top__menu__mian ul li a svg{
  margin-left: 15px;
}
.top__menu__mian ul li .top__sbu__menu{
  opacity: 0;
  position: absolute;
  background-color: #f4f4f4;
  z-index: -9;
  width: 100%;
  left: 0;
  padding: 50px 50px;
  box-shadow: 0px 2px 8px #AFAFAF;
}
.sbg{
  display: flex;
  align-items: center;
}
.top__menu__mian ul li .top__sbu__menu a{
  font-family: 'montserratregular';
  font-size: 15px;
  color: #363636;
  padding: 5px 0;
  display: inline-block;
}
.top__menu__mian ul li .top__sbu__menu a:hover{
  background-color: transparent;
}
.top__menu__mian ul li .top__sbu__menu svg{
  font-size: 7px;
  margin-right: 15px;
}
.top__menu__mian ul li:hover .top__sbu__menu{
  opacity: 1;
  z-index: 999;
}
.top__menu__mian ul li .top__sbu__menu .sbg:hover a{
  color:#04a52a;
}
.sbg:hover svg{
  color:#04a52a;
}
.feature-main img{
  border-radius: 9px;
  max-height: 200px;
  width: auto;
  max-width: 100%;
  margin: auto;
  display: block;
  
}
.feature-text h2{
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0;
  margin-bottom: 0;
}
.feature-text p{
  padding-bottom: 16px;
}
.feature-main {
  position: relative;
  border: 2px solid transparent;
  text-align: left;
  overflow: hidden;
  max-width: 600px;
  width: 100%;
  transition: all 0.5s ease;
  margin: 20px 0;
  padding: 10px;
  border-radius: 12px;
}


.feature-text button{
  background-color: #04a52b;
  border: 0;
  color: #fff;
  padding: 11px 26px;
  border-radius: 50px;
}
.cat-block{
  border: 2px dashed transparent;
  display: block;
  border-radius: 15px;
  overflow: hidden;
}
.feature-main:hover, .cat-block:hover{
  animation: borderAnimate 2s infinite;
}
.owl-carousel .owl-item {
  transition: opacity 1s ease-in-out;
}

.owl-carousel .owl-item {
  position: relative;
  display: block;
  opacity: 0;
}

.owl-carousel .owl-item.active {
  opacity: 1;
}
@keyframes borderAnimate {
  0% {
    border-color: #fac800; /* Start color */
  }
  /*50% {*/
  /*  border-color: #263592; */
  /*}*/
  100% {
    border-color: #04a52b; /* Middle color */
  }
}
.feature-main:hover button, .cat-block:hover .cat-more-btn, .about-section a:hover, .Unveiling button:hover, .footer-main button:hover, #comments:hover{
  animation: bgAnimate 2s infinite;
}
@keyframes bgAnimate {
  0% {
    background-color: #fac800; /* Start color */
    transform: scale(1.1)
  }
  /*50% {*/
  /*  background-color: #263592; */
  /*  transform: scale(1)*/
  /*}*/
  100% {
    background-color: #04a52b; /* Middle color */
    transform: scale(1.1)
  }
}
.logo img{
  animation: scale 2s infinite;
}
@keyframes scale {
  0% {
    transform: scale(1)
  }
  50% {
    transform: scale(1.02)
  }
  100% {
    transform: scale(1)
  }
}
.sign-main h2{
  font-weight: 800;
  font-size: 43px;
  color: #fff;
}
.sign-main p{
  color: #fff;
}
.feature-text {
  color: #000;
  padding: 10px 0;
}
.feature-image {
  margin: 0 20px;
  border: solid 1px #e2e2e2;
  transition: all 0.5s ease;
}
.nav-z{
  z-index: 99999;
}
.dropdown-toggle{
  padding-left: 12px;
}
@media screen and (max-width: 767.5px){
    .col-direction{
        flex-direction: column-reverse;
    }
  .top__menu__mian{
    padding: 0 0px;
    margin-top: 0px;
  }
  .top__menu__mian ul li a {
    padding: 15px 15px;
  }
  .top__menu__mian ul {
   display: block;
 }
 .main__bread__crumb{
  padding: 15px;
}
.pro__row {
  padding: 30px 0px;
}
.sub-hadding h1{
  font-size: 19px;
}
.top__menu__mian ul li .top__sbu__menu{
  padding: 15px;
}
.pagination {
  position: unset;
}
.menu-main{
/*  display: none !important;*/
}
.logo #menu-open{
  display: block;
  background-color: transparent !important;
  border: 0 !important;
  position: absolute;
  right: 0;
  top: 2px;
  z-index: 9999;
}
.main__menu.collapse{
  position: absolute;
  background: #fff;
  top: 0px;
  max-width: 400px;
  right: 0px;
  z-index: 99999;
}
 .main__menu ul li {
    width: 100%;
    text-align: left;
    padding: 6px 6px 6px 36px;
  }
  .main__menu .dropdown-menu.show{
    position: relative !important;
    transform:unset !important;
    margin: auto;
    float: unset;
    text-align: center;
    border: 0;
  }
  .main__menu .dropdown-menu .dropdown-item{
    font-weight: normal;
    font-size: 14px;
    text-align: left;
  }
  .main__menu ul li a {
    font-size: 16px;
    font-weight: bold;
  }
  .dropdown-toggle{
    padding-left: 0px;
  }
}


.box {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.box:before {
  position: absolute;
  content: '';
  width: calc(100% + 30px);
  height: calc(100% + 30px);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(.7);
  filter: blur(0);
  opacity: 1;
  transition: all 450ms cubic-bezier(0.23, 1, 0.32, 1);
}
.box-inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.box:before,
.box-inner {
  background-color: #fff;
  box-shadow: 2px 2px 12px 0 rgba(0,0,0,0.58);
  
  background-image: 
    url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='198'%3e%3cdefs%3e%3clinearGradient id='a' x1='50%25' x2='50%25' y1='-10.959%25' y2='100%25'%3e%3cstop stop-color='%23fcc900' stop-opacity='.25' offset='0%25'/%3e%3cstop stop-color='%23fcc900' offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath fill='url(%23a)' fill-rule='evenodd' d='M.005 121C311 121 409.898-.25 811 0c400 0 500 121 789 121v77H0s.005-48 .005-77z'/%3e%3c/svg%3e"),
    url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='198'%3e%3cdefs%3e%3clinearGradient id='a' x1='50%25' x2='50%25' y1='-10.959%25' y2='100%25'%3e%3cstop stop-color='%23fcc900' stop-opacity='.25' offset='0%25'/%3e%3cstop stop-color='%23fcc900' offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath fill='url(%23a)' fill-rule='evenodd' d='M.005 121C311 121 409.898-.25 811 0c400 0 500 121 789 121v77H0s.005-48 .005-77z'/%3e%3c/svg%3e"),
    url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='1600' height='198'%3e%3cdefs%3e%3clinearGradient id='a' x1='50%25' x2='50%25' y1='-10.959%25' y2='100%25'%3e%3cstop stop-color='%23fcc900' stop-opacity='.25' offset='0%25'/%3e%3cstop stop-color='%23fcc900' offset='100%25'/%3e%3c/linearGradient%3e%3c/defs%3e%3cpath fill='url(%23a)' fill-rule='evenodd' d='M.005 121C311 121 409.898-.25 811 0c400 0 500 121 789 121v77H0s.005-48 .005-77z'/%3e%3c/svg%3e");
  background-repeat: repeat-x;
  background-size: 1600px 50%;
  background-position: 0 130%, -50px 130%, 500px 130%;
  
  animation: 20s waves linear infinite forwards;
}

@keyframes waves {
  to {
    background-position: 1600px 130%, 3150px 130%, 5300px 130%;
  }
}
.bg-site{
  background-color: #04a52b;
}
#featured{
  padding-left: 10px;
  padding-right: 10px;
}

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

  .logBox {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0;
  flex-direction: column;
}
.logo img {
    max-width: 89px;
    padding: 7px 0 0;
}
.logoText {
  font-size: 17px;
}
.logoTextSM {
  font-size: 9px;
}
.cat-more-btn {
    font-size: 12px;
    padding: 6px 10px;
    
}
 
}