/* Fonts */
:root {
  --default-font: "Montserrat", sans-serif;
  --heading-font: "Raleway", sans-serif;
  --nav-font: "Raleway", sans-serif;
}

/* Global Colors */
:root {
  --background-color: #ffffff;
  --background-color-rgb: 255, 255, 255;
  --default-color: #000;
  --default-color-rgb: 33, 37, 41;
  --heading-color: #222;
  --heading-color-rgb: 122, 105, 96;
  --accent-color: #262634;
  --accent-color-rgb: 94, 44, 141;
  --contrast-color: #ffffff;
  --contrast-color-rgb: 255, 255, 255;
}

/* Nav Menu Colors */
:root {
  --nav-color: #000;
  --nav-hover-color: #ec1c27;
  --nav-dropdown-color: #262634;
  --nav-dropdown-hover-color: #ec1c27;
  --nav-dropdown-background-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  color: (var(--accent-color-rgb), 0.75);
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

.mt-6 {
  margin-top: 4rem;
}
.mt-7 {
  margin-top: 5rem !important;
}

.mt-8 {
  margin-top: 6rem !important;
}

nav {
  color: #fff;
  padding: 1em 0;
  position: relative;
  z-index: 9999;
}

nav::after {
  content: "";
  clear: both;
  display: table;
}

.container {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
.top-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.logo {
  float: left;
  font-size: 1em;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

.logo img {
  width: 60%;
  max-width: 150px;
}

.logo span {
  font-weight: 300;
}
.site-nav {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 90%;
  right: 0;
  background: white;
  height: 0px;
  overflow: hidden;
}

.site-nav a.active {
  color: var(--nav-dropdown-hover-color);
}
.site-nav a.active::after {
  background-color: var(--nav-dropdown-hover-color);
}

.site-nav--open {
  height: 100vh;
}

.site-nav li {
  border-bottom: 1px solid #575766;
}

.site-nav li:last-child {
  border-bottom: none;
}

.site-nav a {
  color: var(--accent-color);
  font-family: var(--default-color);
  text-decoration: none;
  text-transform: capitalize;
  display: block;
  padding: 1em 2em;
  position: relative;
  overflow: hidden;
  line-height: 50px;
  font-size: 15px;
  font-weight: 600;
}

.site-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.site-nav a:hover::after {
  background-color: var(--nav-dropdown-hover-color);
}

.site-nav a:hover {
  color: var(--nav-dropdown-hover-color);
}

.box-content-inner p {
  margin: 0;
}
.site-nav--icon {
  display: inline-block;
  font-size: 12px;
  margin-right: 1em;
  width: 1.1em;
  text-align: right;
}
.right-cont {
  display: flex;
  align-items: end;
  justify-content: space-around;
  color: black;
}
/* .container-fluid {
  width: 100%;
  padding-right: 50px !important;
  padding-left: 50px !important;
  margin-right: auto;
  margin-left: auto;
} */
.menu-toggle {
  padding: 1em;
  position: relative;

  cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  content: "";
  display: block;
  background: var(--default-color);
  height: 3px;
  width: 25px;
  border-radius: 3px;
  transition: all ease-in-out 500ms;
}

.hamburger::before {
  transform: translatey(-7px);
}

.hamburger::after {
  transform: translatey(4px);
}

.open .hamburger {
  transform: rotate(45deg);
}

.open .hamburger::before {
  opacity: 0;
}

.open .hamburger::after {
  transform: translatey(-3px) rotate(-90deg);
}

.head-download a {
  background: #4d8a46;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.head-download a:hover {
  background: var(--default-color);
  color: #fff;
}

.site-nav .head-download  a:hover{
  background: #eb2328;
}

.site-nav .head-download  a:hover::after{
background: transparent;
}

.head-download {
  width: 130px;
}

@media (min-width: 700px) {
  .menu-toggle {
    display: none;
  }

  .site-nav {
    height: auto;
    position: relative;
    background: transparent;
    float: right;
  }

  .site-nav li {
    display: inline-block;
    border: none;
    margin: 0 1.6em;
  }

  .site-nav a {
    padding: 0;
  }

  .site-nav a:hover,
  .site-nav a:focus {
    background: transparent;
  }

  .site-nav--icon {
    display: none;
  }
}
@media (max-width: 700px) {
  .head-download {
    display: none;
  }
  .site-nav {
    width: 100%;
  }
  .top-header{
    display: none;
  }
}
@media (min-width: 750px) and (max-width: 850px)  {
.head-download a{
    display: none;
  }
  .site-nav li.head-download{
    display: none;
  }
 #wrapper .top-header .container-fluid {
    padding: 0 20px;
}
.site-nav li:nth-child(1){
  display: none;
}
.site-nav li {
  margin: .6rem;
}
}

.top-header {
  font-size: 13px;
  font-weight: 500;
  color: #fff;
  background: #4d8a46;
  padding: 20px;
  gap: 20px;
}
.top-header .container-fluid{
  padding:0 50px ;
}

.top-header p{
  margin-bottom: 0;
  margin-top: 0;
}
.top-header-item a{
  display: flex;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}
.top-header-item a:hover{
  color: var(--nav-dropdown-hover-color);
}

.top-header{
  display: flex;
  gap: 40px;
  justify-content: space-evenly;
}
.top-header-item{
  display: flex;
  gap: 10px;
  justify-content: space-evenly;
}
.top-header-item svg path{
fill: #fff;
}
.left-head{
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  justify-content: left;
}
.right-head{
  display: flex;
  gap: 20px;
  justify-content: space-evenly;
  justify-content: flex-end;
}
.right-head .social-links{
  gap: 20px;
  display: flex;
}

.right-head .social-links a svg path{
  fill: #fff;
}
.right-head .social-links a:hover svg path{
  fill: var(--nav-hover-color);
}

@media (max-width: 700px) {
  .top-header{
    display: none;
  }
}


/*  Hero banner  */

.slideshowContainer {
  position: relative;
  overflow: hidden;
  margin: 0 0 0;
  width: 100%;
  height: 90vh;
}

.imageSlides {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  z-index: -1;
}

.imageSlides img {
  width: 100%;
}
.imageSlides .desk_view{
  display: block;
}


.imageSlides .mob_view{
  display: none;
}
/* .heroContent {
  position: absolute;
  width: 32%;
  left: 4%;
  top: 45%;
  transform: translate(0%, -50%);
} */

.heroContent {
  position: absolute;
  width: 32%;
  left: 13%;
  bottom: 33%;
  /* transform: translate(0%, -50%); */
}
.heroContent h1 {
  text-align: left;
  font-size: 2.6rem;
  font-family: var(--default-font);
  font-weight: 600;
}

.heroContent h1 span {
  color: var(--nav-hover-color);
}

.heroContent p {
  text-align: left;
  font-size: 15px;
  font-family: var(--default-font);
  font-weight: 500;
}

.hero .btn {
  background: var(--default-color);
  color: #fff;
  border-radius: 50px;
  padding: 10px 20px;
  font-family: var(--default-font);
}

.hero .btn:hover {
  background: var(--nav-hover-color);
  color: #fff;
}

/* add 'visible' class via Javascript */
.visible {
  opacity: 1;
}

.slideshowArrow {
  font-size: 7em;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: opacity 0.2s ease-in-out;
  display: none;
}

.slideshowArrow:hover {
  opacity: 0.75;
}

#leftArrow {
  position: absolute;
  left: 4%;
  top: 50%;
  transform: translate(-50%, -50%);
}

#rightArrow {
  position: absolute;
  right: 4%;
  top: 50%;
  transform: translate(50%, -50%);
}

.slideshowCircles {
  position: absolute;
  bottom: 2%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  visibility: hidden;
}

.circle {
  display: inline-block;
  margin-left: 3px;
  margin-right: 3px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  border: solid 2px rgba(255, 255, 255, 0.5);
  transition: 1s ease-in-out;
}

.dot {
  background-color: rgba(255, 255, 255, 0.7);
  border: solid 2px rgba(255, 255, 255, 0.5);
}
@media (max-width: 1360px) and (min-width: 1300px) {
  .slideshowContainer {
    height: 85vh;
  }
}
@media (max-width: 1300px) and (min-width: 1024px) {
  .slideshowContainer {
    height: 58vh;
  }
}

@media (max-width: 1023px) and (min-width: 701px) {
  .heroContent {
    width: 60%;
    border-radius: 5px;
    background: rgb(255 255 255 / 40%);
    padding: 20px;
    top: 50%;
  }
  .slideshowContainer {
    height: 38vh;
  }
}

@media (max-width: 701px) {
  .heroContent {
    width: 85%;
    border-radius: 5px;
    /* background: rgba(0, 0, 0, 0.3);
    padding: 20px 20px 30px; */
    left: 30px;
    display: none;
  }
  .heroContent h1,
  .heroContent p {
    color: #fff;
  }
  /* .imageSlides img {
    width: max-content;
  } */
  .heroContent h1 {
    font-size: 2rem;
  }
  .hero img.desk_view{
    display: none;
  }
  .hero img.mob_view{
    display: block;
  }
  header{
    position: absolute;
    width: 100%;
  }
  .slideshowContainer{
    height: 100vh;
  }
  /* .whatsapp-button{
    bottom: 30px;
  } */
  .btn-call{
    bottom: 30px;
    left: 30px;
    display: none !important;
  }
}

/*  Hero banner  */

/*  counter  */

#counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 40px 0px;
  width: 100%;
}
.counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
}
#counter .item {
  background: #fff;
  width: 310px;
  padding: 35px 40px;
  margin: 10px;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
}
#counter .item .count {
  color: var(--nav-hover-color);
  margin-bottom: 5px;
  font-size: 4rem;
}
#counter .item h3 {
  color: var(--accent-color);
  text-transform: capitalize;
  font-size: 20px;
  font-size: 16px;
  line-height: 25px;
}

@media (max-width: 700px) {
  .counter {
    /* display: grid;
    grid-template-columns: auto auto; */
    display: block;
    width: 100%;
   
  }
  #counter .item {
    width: 100%;
    padding: 30px;
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
/*  counter  */

/*  About Start */

.about {
  padding: 80px 0;
  background: url(../images/patternW.png) no-repeat;
  background-size: cover;
}

.about h4 {
  color: var(--nav-hover-color);
  font-size: 22px;
  text-transform: uppercase;
}
.about h2 {
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 20px;
}

.about p {
  text-align: justify;
  font-size: 15px;
  width: 85%;
}

.about img {
  width: 85%;
  margin: 0 auto;
  display: table;
}
.mob_view {
  display: none;
}

@media (max-width: 700px) {
  .innerHero h2{
    text-align: center;
  }
  .about {
    padding: 50px 0;
  }
  .mob_view {
    display: block;
  }
  .desk_view {
    display: none;
  }
  .about img {
    width: 70%;
    margin-bottom: 20px;
  }
  .about p {
    padding-bottom: 0;
    width: 100%;
  }
}

@media (min-width: 700px) and (max-width: 1023px) {
  .about img {
    width: 100%;
    margin-top: 4rem;
  }
}

/*  About End */

/* Product Slider Start */

.product {
  padding: 80px 0;
  /* background: #faf8fb; */
  background: #fafafa;
}

.product h2 {
  text-align: center;
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 2rem;

  font-size: 36px;
}

.home-demo .item {
  padding: 20px;
  border-radius: 5px;
  background: #4d8a46;
  /* margin-bottom: 20px; */
}

.home-demo .item h5{
  text-align: center;
  padding-top: 20px;
  color: #fff;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #ff3f4d !important;
}

.owl-theme .owl-dots {
  display: none;
}
/* .home-demo h2 {
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  margin: 0;

  font-weight: 300;
} */

.owl-theme .owl-nav {
  display: none;
}

.product h2 {
  color: var(--accent-color);
  text-align: center;
  font-size: 36px;
}
.product p {
  color: var(--accent-color);
  text-align: center;
  font-size: 15px;
  margin-bottom: 3rem;
  width: 65%;
margin: 0 auto;  
margin-bottom: 50px;
}

/* Product Slider End */

/* Why choose us Start */
#Whychooseus.innerWhychooseus{
  padding-top: 60px;
  padding-bottom: 0;
}

#Whychooseus {
  padding: 80px 0;
  /* background: url(../images/pattern.svg) no-repeat;
  background: #cacaca url(../images/pattern.svg) repeat; */
  background-size: cover;
}

#Whychooseus h2 {
  color: #000;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 5px;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 3rem;
  text-align: center;
}

.serb {
  border-radius: 15px;
  border: solid 1px #e0e0e0;
  padding: 20px 30px;
  display: flex;
  gap: 5px;
  background: #efeeee url(../images/pattern.png) repeat;
  justify-content: space-around;
}

.ron-cntr {
  width: 33%;
  margin: 20px;
}

.ron-cntr h4 {
  display: none;
}

.rounderer {
  background: #fafafa;

  border-radius: 50%;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}

.ron-cntr p{
  text-align: center;
  color: #fff;
  margin-top: 20px;
  margin-bottom: 0;
}

.rounderer:hover {
  scale: 1.2;
}

.rounderer img {
  width: 100%;
  margin: 0 auto;
  display: table;
  padding: 13px;
}

.ron-cntr h6 {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  width: 100%;
  color: #fff;
  text-align: center;
  margin-top: 20px;
}

@media (max-width: 700px) {
  .serb {
    display: grid;
    grid-template-columns: auto ;
    gap: 0;
    padding: 20px 30px;
  }
  #Whychooseus {
    padding: 50px 0;
  }
  .ron-cntr {
    width: 100%;
    margin: 20px 0;
  }
}

@media (max-width: 1023px) and (min-width: 700px) {
  .serb {
    grid-template-columns: auto auto auto;
  }
}

/* Why choose us End*/

/* Contact Start*/

#Contact {
  padding: 80px 0;
}

.info {
  padding: 40px;
  background: #fafafa;
}

#Contact h2 {
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

#Contact p {
  text-align: center;
  margin-bottom: 3rem;
}

#Contact h4 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.map {
  padding-top: 3rem;
}

.map iframe {
  border-radius: 20px;
}

#Contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

#Contact .info-item .icon_box {
  font-size: 20px;
  color: var(--accent-color);
  background: rgba(var(--accent-color-rgb), 0.08);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

#Contact .email-form {
  height: 100%;
  padding: 50px 30px;
  box-shadow: 0px 0px 20px rgba(var(--default-color-rgb), 0.1);
}

#Contact .email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--nav-dropdown-hover-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

#Contact .email-form button[type="submit"]:hover {
  background: var(--default-color);
}

#Contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
  text-align: left;
}
#Contact .info-item {
  margin-bottom: 40px;
}

#contact_form h3{
  text-align: center;
  margin-bottom: 60px;
}

.footer {
  color: var(--default-color);
  background-color: #fafafa;
  font-size: 14px;
  /* padding-bottom: 50px; */
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}
.footer .footer-contact p {
  margin-bottom: 5px;
  width: 80%;
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.footer .footer-links ul a {
  display: inline-block;
  color: rgba(var(--default-color-rgb), 0.8);
  text-decoration: none;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--nav-dropdown-hover-color);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid rgba(var(--default-color-rgb), 0.1);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(var(--default-color-rgb), 0.5);
  font-size: 16px;
  color: rgba(var(--default-color-rgb), 0.8);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  border-color: var(--nav-dropdown-hover-color);
}

.footer .social-links a:hover svg {
  color: var(--nav-dropdown-hover-color);
}

@media (max-width: 700px) {
  .container-fluid {
    padding: 0 15px !important;
  }
}

#return-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: rgb(0, 0, 0);
  background: rgba(0, 0, 0, 100);
  width: 50px;
  height: 50px;
  display: block;
  text-decoration: none;
  -webkit-border-radius: 35px;
  -moz-border-radius: 35px;
  border-radius: 35px;
  display: none;
  -webkit-transition: all 0.3s linear;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
#return-to-top svg {
  color: #fff;
  margin: 0;
  position: relative;
  left: 13px;
  top: 12px;
  font-size: 19px;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 999;
}
#return-to-top:hover {
  background: rgba(0, 0, 0, 0.9);
}
#return-to-top:hover i {
  color: #fff;
  top: 5px;
}
.whatsapp-button {
  position: fixed;
  z-index: 1000;
  bottom: 80px;
  right: 20px;
  background: #25d366;
  color: #fff;
  /* padding: 16px; */
  border-radius: 50px;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 45px;
}

#prg-counter {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 40px 0px;
  width: 100%;
}

#prg-counter .prg-container {
  display: flex;
  gap: 20px;
  text-align: center;
  width: 80%;
  margin: auto;
}

#prg-head h1 {
  text-align: center;
}

#prg-counter h3.prg-count {
  background-color: rgba(0, 0, 0, 0);
  color: blue;
  font-size: 2.5em;
  /* padding: 20px 20px 6px 20px; */
  color: var(--nav-hover-color);
  margin-bottom: 5px;
  font-size: 2.5rem;
}

#prg-counter h3.prg-count::after {
  content: " +";
  display: inline-block;
}

/*#prg-counter h3.prg-count {
  border: 5px solid blue;
  border-radius: 50%;
  width: 150px;
  height: 150px;
}*/

#prg-counter h4.prg-count-title {
  background-color: rgba(0, 0, 0, 0);
  font-size: 20px;
  color: var(--accent-color);
  text-transform: capitalize;
}

.count_item {
  background: #fff;
  width: 250px;
  padding: 35px 40px;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
}

#prg-container {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fafafa;
  padding: 40px 0px;
  width: 100%;
}

@media (max-width: 700px) {
  .count_item {
    width: 100%;
    padding: 30px 5px;
  }
  #prg-counter .prg-container {
    display: grid;
    grid-template-columns: auto auto;
    gap: 10px;
    padding: 0;
    width: 100%;
  }
  #prg-counter h4.prg-count-title {
    font-size: 16px;
  }
}



/* Why choose us Start */

.premiumDates {
  padding: 80px 0;
  /* background: url(../images/pattern.svg) no-repeat;
  background: #cacaca url(../images/pattern.svg) repeat; */
  background-size: cover;
}

.ownBrand-item{
  border: 1px solid #4d8a46;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
  overflow: hidden;
}

.ownBrand-item:hover img{
  scale: 1.2;
}

.ownBrand-item:hover .brand-itm-title{
  background: #ec1c27;
}

.ownBrand-item:hover {
  border-color: #ec1c27;
}

.premiumDates h2 {
  color: #000;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 5px;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 3rem;
  text-align: center;
}

.premiumDates p{
  margin-bottom: 50px;
}

.ownBrand-item img{
  width: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.ownBrand-item h5{
  text-align: center;
  color: #fff;
}

.brand-itm-title{
  background: #4d8a46;
  padding: 20px;
}





@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-250px * 7));
  }
}
.slider {
  margin: auto;
  overflow: hidden;
  position: relative;
  width: 95%;
  margin: 0 auto;
  margin-bottom: 40px;
}
.slider .slide-track {
  animation: scroll 40s linear infinite;
  display: flex;
  width: calc(250px * 14);
}
.slider .slide {
  width: 250px;
}

.slider .slide img{
  width: 60%;
}
.customer-logos h2{
  color: #000;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  padding-bottom: 5px;
  font-size: 36px;
  line-height: 40px;
  margin-bottom: 3rem;
  text-align: center;
  margin-bottom: 50px;

}
/* innerHero About */

.innerHero{
  background: url(../images/pattern.png) ;
  padding: 100px;
}

.innerHero h2{
  color: #fff;
  margin-bottom: 0;
}

.innerHero p{
  color: #fff;
}

.aboutVision{
  padding-top:  80px;
}

.visionItem{
  padding: 30px !important;
  border: 1px solid rgba(0, 0, 0, .07);
  background: #4d8a46;
  color: #fff;
  min-height: 225px;
  
}
.visionItem h3{
  color: #fff;
}
.visionItem ul{
  padding-left: 15px;
  color: #fff;
  margin-bottom: 0;
}

/* .visionItem ul li::marker {
  color: var(--nav-hover-color);
} */

@media  (max-width:700px) {
  .visionItem{
    margin: .7rem;
  }
}

.ourBusiness{
  padding-top: 80px;
  padding-bottom: 66px;
}

.ourBusiness h2{
  color: #000;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 5px;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 3rem;
    text-align: center;
}

.ourBusiness p{
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 50px;
}

.ourBusinessIteam{
  padding: 30px;
  border: 1px solid #4d8a46;
  min-height: 495px;
  margin-bottom: 1.5rem;
}
.ourBusinessIteam h4{
  text-align: center;}

.ourBusinessIteam p{
  text-align: center;
  width: 100%;
  margin-top: 20px;
  margin-bottom: 0;
}

.ourBusinessIteam img{
  width: 50%;
  margin: 0 auto;
  display: table;
  margin-bottom: 30px;
}

/* team Start */

.team{
  padding: 80px 0;
  background: #fafafa;
}

.team h2{
  color: #000;
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    padding-bottom: 5px;
    font-size: 36px;
    line-height: 40px;
    margin-bottom: 3rem;
    text-align: center;
}

.team p{
  width: 70%;
  margin: 0 auto;
  display: table;
  text-align: center;
  margin-bottom: 50px;
}

.team_item{
  border: 2px solid #4d8a46; 
  border-radius: 10px;
  padding-top: 40px;
}

.team_item img{
  width: 50%;
  margin: 0 auto;
  display: table;
}

.team_item h3{
  text-align: center;
  margin-top: 40px;
}

.team_item h4{
  text-align: center;
  margin-top: 10px;
  font-size: 20px;
}

.team_item p{
  text-align: justify;
  font-size: 16px;
  margin-top: 20px;
  width: 80%;
}

@media (max-width: 700px) {
  .team_item{
    margin-bottom: 1.5rem;
  }
}

/* team End */



/* Products Inner page */


.products {
  padding: 80px 0;
  background: url(../images/patternW.png) no-repeat;
  background-size: cover;
}

.products h4 {
  color: var(--nav-hover-color);
  font-size: 22px;
  text-transform: uppercase;
}
.products h2 {
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 40px;
}

.products p {
  text-align: justify;
  font-size: 15px;
  width: 85%;
  margin-bottom: 50px;
}

.products img{
  width: 100%;
  /* min-height: 315px; */
}

.productItem{
  /* margin: 1.5rem 0; */
  transition: all 0.3s ease;
  /* padding: 20px;
  border-radius: 10px;
  background: #fff; */
  /* box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1); */
  margin-bottom: 20px;
  overflow: hidden;
  padding-top: 20px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: all 0.3s ease;
  
}

.Other.products p{
  margin-bottom: 10px;
}
.Other.products h4{
  color: #222;
}
.productItem h4 {
  color: #222;
  font-size: 20px;
  background: #4d8a46;
 padding: 20px;
  text-align: center;
  margin-top: 0;
  color: #fff;
  margin-bottom: 0;
  z-index: 999;
}

.products.dates2 .productItem img{
  min-height: 100%;
  max-height: 100%;
}

.products.dates2 {
  padding: 0;

}

.products.dates3{
  padding-top: 80px;
  padding-bottom: 0;
}
.products.dates3 .productItem  img{
  max-height: 100%;
}

/* .productItem:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
} */

.productItem img {
  width: 100%;
  height: auto;
  max-height: 300px;
  transition: all 0.3s ease;
  z-index: -999;
}

.productItem:hover img {
  transform: scale(1.05);
}


.productItem:hover h4 {
  color: #fff;
  background: var(--nav-hover-color);
}
.ourproduct{
  padding: 0;
}

.productItemImage{
  /* padding: 20px; */
}
.products.ourproduct .productItem{
  background: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  padding: 20px;
  min-height: 540px;
  max-height: 540px;
}
.products.ourproduct .productItem img{
  min-height: 100%;
  
}

.prouctIteamCnt{
  /* padding: 20px; */
 
}
.prouctIteamCnt h4{
  background: transparent;
  color: #222;
}

.productItem:hover .prouctIteamCnt h4{
background: transparent;
color: #222;
}

.prouctIteamCnt p{
  margin-bottom: 0;
  color: #222;
  width: 100%;
}
.productItemCnt{
  padding: 30px;
    margin: 10px 0;
    text-align: left;
    border-radius: 5px;
    -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
    -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
    box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
    min-height: 335px;
}
.productItemCnt h4{
  background: transparent;
  color: #222;
}

.productItem:hover h4{
  background: transparent;
  color: #222;
}

.productItemCnt p{
  margin-bottom: 10px;
  width: 100%;
}
.productItem:hover .Hove{
  display: block;
  transition: all 0.3s ease;
}
.productItem:hover .noHove{
  display: none;
  transition: all 0.3s ease;
}
.Hove{
  display: none;
  transition: all 0.3s ease;
}
@media (max-width:700px) {
  .products p{
    width: 100%;
  }
  .productItem img{
    max-height: 100%;
  }
  .products.ourproduct .productItem{
    max-height: max-content;
    min-height: max-content;
  }
}

@media (min-width: 750px) and (max-width: 850px)  {
  /* .productItem img{
    max-height: 167px;
  }
  .products img{
    min-height: 167px;
  } */
  .productItem h4 {
    font-size: 16px;
    padding: 20px 0;
  }
  .ron-cntr {
    width: 33%;
    margin: 15px 5px;
}
.ron-cntr p{
  font-size: 14px;
}
.products.ourproduct .productItem {
  padding: 20px 15px;
  min-height: 545px;
  max-height: 545px;
}
.productItemCnt{
  min-height: 375px;
}
}
/* Products Inner page */


/* export */
.export img{
  width: 90%;
}

.exportGrid .productItem{
  padding-top: 0;
  padding: 30px 30px;
  margin: 10px 0;
  text-align: left;
  border-radius: 5px;
  -webkit-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  -moz-box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  box-shadow: 0px 0px 38px -8px rgba(0, 0, 0, 0.34);
  min-height: 805px;

}

.exportGrid .productItem img{
  min-height: 100%;
}
.exportGrid .productItem h4{
  background: transparent;
  color: #222;
  padding-left: 0;
  padding-right: 0;
}

.exportGrid .productItem p{
  margin-bottom: 20px;
}

.supply{
  padding: 0 0 80px;
  position: relative;
}

.supply h2 {
  color: var(--accent-color);
  text-align: left;
  font-size: 36px;
}

.supply p{
  width: 100%;
  text-align: justify;
}

.supply img{
  width: 100%;
}

.supplyCnt{
    position: absolute;
    top: 140px;
    width: 33%;
    left: 7%;
    background: rgb(255 255 255 / 75%);
    padding: 30px;

}

@media (min-width: 750px) and (max-width: 850px)  {
  .supplyCnt{
    position: inherit;
    width: 100%;
    padding: 0;
    padding-top: 40px;
  }
  .supply p{
    margin-bottom: 0;
  }
  .brand-itm-title{
    padding: 10px;
  }
  .ownBrand-item h5{
    font-size: 18px;
  }
  #counter .item {
    background: #fff;
    padding: 15px;
  min-height: 210px;}
    #counter .item h3{
      font-size: 15px;
    }
}

@media (max-width: 750px)   {
  .supplyCnt{
    position: inherit;
    width: 100%;
    padding: 0;
    padding-top: 40px;
  }
  .supply p{
    margin-bottom: 0;
  }
  /* .brand-itm-title{
    padding: 10px;
  }
  .ownBrand-item h5{
    font-size: 18px;
  }
  #counter .item {
    background: #fff;
    padding: 15px;
  min-height: 210px;}
    #counter .item h3{
      font-size: 15px;
    } */
}



.products.exportIteam{
  padding-top: 0;
  background: #fff;
}


/* Contact Us Code Start */

.contact{
  padding: 80px 0;
}

.contact h3{
  color: #0a8153;
  margin-bottom: 30px;
}

.info-wrap h3{
  color: #222;
}

.title{
  color: var(--nav-hover-color);
}


/* Private Labelling Start */
.privateLabelling{
  padding-top: 80px ;
}

.privateLabelling img{
  width: 80%;
  margin: 0 auto;
  display: table;
}
.privateLabelling h2{
  font-family: var(--default-font);
  font-weight: 600;
  margin-bottom: 20px;
}
/* Private Labelling End */


/* 

.call-buton .cc-calto-action-ripple {
	z-index: 99999;
	position: fixed;
	right: 1rem;
	bottom: 10rem;
	background: var(--nav-hover-color);
	width: 4rem;
	height: 4rem;
	padding: 1rem;
	border-radius: 100%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: #ffffff;
	-webkit-animation: cc-calto-action-ripple 0.6s linear infinite;
	animation: cc-calto-action-ripple 0.6s linear infinite;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-items: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	text-decoration: none; }
	.call-buton .cc-calto-action-ripple i {
	  -webkit-transition: 0.3s ease;
	  transition: 0.3s ease;
	  font-size: 2.2rem; }
	.call-buton .cc-calto-action-ripple:hover i {
	  -webkit-transform: rotate(135deg);
	  transform: rotate(135deg); }
  
  @-webkit-keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgb(255, 38,9), 0 0 0 0 rgba(236, 28, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgb(236, 28, 39) }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(255, 38, 9, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }
  
  @keyframes cc-calto-action-ripple {
	0% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 0 rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2); }
	100% {
	  -webkit-box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0);
	  box-shadow: 0 4px 10px rgba(236, 139, 0, 0.2), 0 0 0 5px rgba(236, 139, 0, 0.2), 0 0 0 10px rgba(236, 139, 0, 0.2), 0 0 0 20px rgba(236, 139, 0, 0); } }

	span.num{
		position: absolute;
    color: #ec8b00;
    left: -30%;
    bottom: -50%;
	} */

  /* .call-buton .cc-calto-action-ripple svg path{
    fill: var(--nav-hover-color);
  } */

  /* btn-call */
  
  .btn-call {
      background: #ec1c27;
      border: 2px solid rgb(236, 28, 39);
      border-radius: 50%;
      box-shadow: 0 8px 10px rgb(236, 28, 39);
      cursor: pointer;
      height: 60px;
      width: 60px;
      text-align: center;
      position: fixed;
      left: 50px;
      bottom: 50px;
      z-index: 999;
      transition: .3s;
      -webkit-animation: hoverWave linear 1s infinite;
      animation: hoverWave linear 1s infinite;
      display: flex;
      justify-content: center;
      align-items: center;
      text-decoration: none;
  }
  
  .btn-call__ico {
      display: flex;
      justify-content: center;
      align-items: center;
      animation: 1200ms ease 0s normal none 1 running shake;
      animation-iteration-count: infinite;
      -webkit-animation: 1200ms ease 0s normal none 1 running shake;
      -webkit-animation-iteration-count: infinite;
      color: white;
      font-size: 30px;
      padding-top: 5px;
      transition: .3s all;
  }
  
  .btn-call:hover {
      background-color: #fff;
  }
  
  .btn-call:hover svg path {
      fill: #eb2328;
  }
  
  @-webkit-keyframes hoverWave {
      0% {
          box-shadow: 0 8px 10px rgb(236, 28, 39), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
      }
  
      40% {
          box-shadow: 0 8px 10px rgb(236, 28, 39), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
      }
  
      80% {
          box-shadow: 0 8px 10px rgb(236, 28, 39), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
      }
  
      100% {
          box-shadow: 0 8px 10px rgb(236, 28, 39), 0 0 0 30px rgb(236, 28, 9), 0 0 0 40px rgb(236, 28, 39)
      }
  }
  
  @keyframes hoverWave {
      0% {
          box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 0 rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
      }
  
      40% {
          box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 15px rgba(56, 163, 253, 0.2), 0 0 0 0 rgba(56, 163, 253, 0.2)
      }
  
      80% {
          box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, 0.067)
      }
  
      100% {
          box-shadow: 0 8px 10px rgba(56, 163, 253, 0.3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0.0)
      }
  }
  
  /* animations icon */
  
  @keyframes shake {
      0% {
          transform: rotateZ(0deg);
          -ms-transform: rotateZ(0deg);
          -webkit-transform: rotateZ(0deg);
      }
  
      10% {
          transform: rotateZ(-30deg);
          -ms-transform: rotateZ(-30deg);
          -webkit-transform: rotateZ(-30deg);
      }
  
      20% {
          transform: rotateZ(15deg);
          -ms-transform: rotateZ(15deg);
          -webkit-transform: rotateZ(15deg);
      }
  
      30% {
          transform: rotateZ(-10deg);
          -ms-transform: rotateZ(-10deg);
          -webkit-transform: rotateZ(-10deg);
      }
  
      40% {
          transform: rotateZ(7.5deg);
          -ms-transform: rotateZ(7.5deg);
          -webkit-transform: rotateZ(7.5deg);
      }
  
      50% {
          transform: rotateZ(-6deg);
          -ms-transform: rotateZ(-6deg);
          -webkit-transform: rotateZ(-6deg);
      }
  
      60% {
          transform: rotateZ(5deg);
          -ms-transform: rotateZ(5deg);
          -webkit-transform: rotateZ(5deg);
      }
  
      70% {
          transform: rotateZ(-4.28571deg);
          -ms-transform: rotateZ(-4.28571deg);
          -webkit-transform: rotateZ(-4.28571deg);
      }
  
      80% {
          transform: rotateZ(3.75deg);
          -ms-transform: rotateZ(3.75deg);
          -webkit-transform: rotateZ(3.75deg);
      }
  
      90% {
          transform: rotateZ(-3.33333deg);
          -ms-transform: rotateZ(-3.33333deg);
          -webkit-transform: rotateZ(-3.33333deg);
      }
  
      100% {
          transform: rotateZ(0deg);
          -ms-transform: rotateZ(0deg);
          -webkit-transform: rotateZ(0deg);
      }
  }
  
  @-webkit-keyframes shake {
      0% {
          transform: rotateZ(0deg);
          -ms-transform: rotateZ(0deg);
          -webkit-transform: rotateZ(0deg);
      }
  
      10% {
          transform: rotateZ(-30deg);
          -ms-transform: rotateZ(-30deg);
          -webkit-transform: rotateZ(-30deg);
      }
  
      20% {
          transform: rotateZ(15deg);
          -ms-transform: rotateZ(15deg);
          -webkit-transform: rotateZ(15deg);
      }
  
      30% {
          transform: rotateZ(-10deg);
          -ms-transform: rotateZ(-10deg);
          -webkit-transform: rotateZ(-10deg);
      }
  
      40% {
          transform: rotateZ(7.5deg);
          -ms-transform: rotateZ(7.5deg);
          -webkit-transform: rotateZ(7.5deg);
      }
  
      50% {
          transform: rotateZ(-6deg);
          -ms-transform: rotateZ(-6deg);
          -webkit-transform: rotateZ(-6deg);
      }
  
      60% {
          transform: rotateZ(5deg);
          -ms-transform: rotateZ(5deg);
          -webkit-transform: rotateZ(5deg);
      }
  
      70% {
          transform: rotateZ(-4.28571deg);
          -ms-transform: rotateZ(-4.28571deg);
          -webkit-transform: rotateZ(-4.28571deg);
      }
  
      80% {
          transform: rotateZ(3.75deg);
          -ms-transform: rotateZ(3.75deg);
          -webkit-transform: rotateZ(3.75deg);
      }
  
      90% {
          transform: rotateZ(-3.33333deg);
          -ms-transform: rotateZ(-3.33333deg);
          -webkit-transform: rotateZ(-3.33333deg);
      }
  
      100% {
          transform: rotateZ(0deg);
          -ms-transform: rotateZ(0deg);
          -webkit-transform: rotateZ(0deg);
      }
  }