html,
body {
  margin: 0;
  font-size: 100%;
  background: #fff;
  font-family: 'Lato', sans-serif;
  scroll-behavior: smooth;
}

body a {
  text-decoration: none;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

.font-lato {
  font-family: 'Lato', sans-serif !important;
}

.font-montserrat {
  font-family: 'Montserrat', sans-serif !important;
}

.font-montserrat-bold {
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
}

a:hover {
  text-decoration: none;
  opacity: 0.8;
}

input[type="button"],
input[type="submit"],
input[type="text"],
input[type="email"],
input[type="search"] {
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
  font-family: 'Lato', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  letter-spacing: 1px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
}

.content {
  margin: 0;
  letter-spacing: 1px;
  font-weight: 500;
  color:black;
  font-family: 'Montserrat', sans-serif;
}

p {
  font-size: 1em;
  color: #777;
  line-height: 1.9em;
  letter-spacing: 1px;
}

ul {
  margin: 0;
  padding: 0;
}

body img {
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
}

/*-- header --*/

/* header */
/* navigation */
.nav_w3ls {
  width: 100%;
}

/* CSS Document */
.toggle-2,
.toggle,
[id^=drop] {
  display: none;
}

/* Giving a background-color to the nav container. */
nav {
  margin: 0;
  padding: 0;
}

nav a {
  position: relative;
}

nav a::after {
  content: '';
  position: absolute;
  background-color: #76a543;
  height: 3px;
  width:0;
  left: 0;
  bottom: -10px;
  transition: 0.5s;
}

nav a:hover::after {
  width: 100%;
}

.header-w3pvt {
  background: #fff;
  padding: 1.6em 0;
  -webkit-transition: .5s all;
  -moz-transition: .5s all;
  transition: .5s all;
  z-index: 99;
}

/* logo */
div.logo {
  position: absolute;
  left: 45%;
}

.logo a {
  font-size: 0.9em;
  color: #0099e5;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}


/* //logo */

/* Since we'll have the "ul li" "float:left"
* we need to add a clear after the container. */

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

/* Positioning the navigation items inline */
nav ul li {
  margin: 0px;
  display: inline-block;
  float: left;
}

/* Styling the links */
nav a {
  color: #573e2a;
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

ul.menu li {
  width: 10%;
  text-align: center;
}

ul.menu li:nth-child(4) {
  margin-right: 40%;
}

nav ul li ul li a:hover {
  background: #f8f9fa;
  color: #FF5722;
}

button, .btn {
  font-family: 'Montserrat', sans-serif;
}

/* Background color change on Hover */

.menu li.active a,
.menu li a:hover {
  color: #000000;
  transition: 0.5s all;
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  -o-transition: 0.5s all;
  -ms-transition: 0.5s all;
}

/* Hide Dropdowns by Default
* and giving it a position of absolute */
nav ul ul {
  display: none;
  top: 50px;
  z-index: 9;
  position: absolute;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem;
}

/* Display Dropdowns on Hover */
nav ul li:hover > ul {
  display: inherit;
}

/* Fisrt Tier Dropdown */
ul.menu li ul li {
  width: 100%;
  float: none;
  display: list-item;
  position: relative;
  margin: 0.125rem 0 0;
}

nav ul ul li a {
  color: #000;
  padding: 5px 10px;
  display: block;
  font-size: 14px;
}

/* Second, Third and more Tiers
* We move the 2nd and 3rd etc tier dropdowns to the left
* by the amount of the width of the first tier.
*/
nav ul ul ul li {
  position: relative;
  top: -60px;
  /* has to be the same number as the "width" of "nav ul ul li" */
  left: 170px;
}


/* Change ' +' in order to change the Dropdown symbol */
li > a:only-child:after {
  content: '';
}

a.reqe-button {
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 4px;
}

/* Media Queries
--------------------------------------------- */
@media all and (max-width : 992px) {
  .header-style {
    padding: 10px 0;
  }

  .logo a {
    font-size: 45px;
  }

  nav {
    margin: 0;
  }

  nav ul {
    float: right;
  }

  /* Hide the navigation menu by default */
  /* Also hide the  */
  .toggle + a,
  .menu {
    display: none;
  }

  /* Stylinf the toggle lable */
  .toggle.toogle-2 {
    display: block;
    padding: 0.5em 1.2em;
    font-size: 16px;
    text-decoration: none;
    border: none;
    float: right;
    background-color: #444343;
    color: #fff;
    border-radius: 0;
    letter-spacing: 1px;
    cursor: pointer;
    /* margin-top: 8px; */
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
    text-transform: uppercase;
    margin: 0;
  }

  .toggle.toogle-2:hover {
    background: #ff4c4c;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

  .toggle.toggle-drop {
    float: none;
    text-align: center;
    margin: auto;
    max-width: 400px;
    padding: 5px;
    color: #000;
    font-weight: normal;
    font-size: 15px;
    letter-spacing: 1px;
    display: block;
    font-weight: 600;
    cursor: pointer;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
  }

  .toggle.toggle-drop:hover {
    color: #FF5722;
    transition: 0.5s all;
    -webkit-transition: 0.5s all;
    -moz-transition: 0.5s all;
    -o-transition: 0.5s all;
    -ms-transition: 0.5s all;
}

  ul.menu li {
    margin: 0 !important;
  }

  ul.menu li:nth-child(4) {
    margin-right: 0%;
  }

  /* Display Dropdown when clicked on Parent Lable */
  [id^=drop]:checked + ul {
    display: block;
    background: #f7f7f7;
    padding: 15px 0;
    text-align: center;
    width: 100%;
  }

  /* Change menu item's width to 100% */
  nav ul li {
    display: block;
    width: 100%;
    padding: 5px 0;
  }

  nav ul ul .toggle,
  nav ul ul a {
    padding: 0 40px;
  }

  nav ul ul ul a {
    padding: 0 80px;
  }

  nav a:hover,
  nav ul ul ul a {
    background-color: transparent;
  }

  nav ul li ul li .toggle,
  nav ul ul a,
  nav ul ul ul a {
    padding: 14px 20px;
    color: #FFF;
    font-size: 17px;
  }

  /* Hide Dropdowns by Default */
  nav ul ul {
    float: none;
    position: static;
    color: #ffffff;
    /* has to be the same number as the "line-height" of "nav a" */
  }

  /* Hide menus on hover */
  nav ul ul li:hover > ul,
  nav ul li:hover > ul {
    display: none;
  }

  /* Fisrt Tier Dropdown */
  nav ul ul li {
    display: block;
    width: 100%;
    padding: 0;
  }

  nav ul ul ul li {
    position: static;
    /* has to be the same number as the "width" of "nav ul ul li" */

  }

  .menu li.active a,
  .menu li a:hover {
    color: #000;
  }

  nav a {
    color: #000;
    font-size: 15px;
  }

  .menu li.active a,
  .menu li a:hover {
    color: #0a0a0a;
  }

  nav ul ul li a {
    color: #000;
  }

}

/*-- dropdown --*/
#demo {
  margin: 10px 0 0px 0;
  font-family: 'Lato', sans-serif;
}

#demo .wrapper {
  display: inline-block;
  position: relative;
}

#demo .parent {
  height: 100%;
  width: 100%;
  display: block;
  cursor: pointer;
  line-height: 30px;
  height: 30px;
  color: #fff;
  z-index: 2;
  position: relative;
  -webkit-transition: border-radius .1s linear, background .1s linear, z-index 0s linear;
  -webkit-transition-delay: .8s;
  text-align: center;
  font-family: 'Lato', sans-serif;
  color: #fff;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding-left: 0;
  padding-right: 0;
}

#demo .parent:hover,
#demo .content:hover ~ .parent {
  -webkit-transition-delay: 0s, 0s, 0s;
}

#demo .content:hover ~ .parent {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  z-index: 0;
}

#demo .content {
  position: absolute;
  top: 0;
  display: block;
  z-index: 1;
  height: 0;
  width: 150px;
  padding-top: 30px;
  -webkit-transition: height .5s ease;
  -webkit-transition-delay: .4s;
}

#demo .wrapper:active .content {
  height: 150px;
  z-index: 3;
  -webkit-transition-delay: 0s;
}

#demo .content:hover {
  height: 150px;
  z-index: 3;
  -webkit-transition-delay: 0s;
}


#demo .content ul {
  background: #fff;
  margin: 0;
  padding: 0;
  overflow: hidden;
  height: 100%;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

#demo .content ul a {
  text-decoration: none;
  padding: 0;
}

#demo .content li:hover {
  background: #f8f9fa;
}

#demo .content li {
  list-style: none;
  text-align: left;
  color: #999;
  font-size: 16px;
  line-height: 30px;
  height: 40px;
  line-height: 40px;
  padding-left: 10px;
  border-top: 1px solid #eee;
}

#demo .content li:last-of-type {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

/* //dropdown */
/* //navigation */

/*-- //header --*/

.main-content {
  background: url("../images/banners/banner-4.png") no-repeat top;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  min-height: 43em;
}

.wthree-overlay {
  background: rgba(0, 0, 0, 0.6);
  min-height: 43em;
}

.main-content.inner {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  -webkit-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  -ms-background-size: cover;
  min-height: 20em;
}

.wthree-overlay.inner {
  background: rgba(0, 0, 0, 0.28);
  min-height: 24em;
}

.banner-info h1 {
  font-size: 3.5em;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.37);
  text-transform: capitalize;
}

.banner-info p {
  color: #fff;
  letter-spacing: 2px;
}

.banner-info h6 {
  font-size: 2em;
  font-weight: 400;
  letter-spacing: 1px;
  display: block;
  color: #fcd000;
}

.btn.btn-success {
  background: #76a543;
}

.read-more-button {
  margin-top: 1.2em;
  font-family: 'Montserrat', sans-serif;
}

.read-more {
  background: #76a543;
  color: #fff;
  padding: 0.8em 2em;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
  font-size: 1em;
  display: inline-block;
  border: none;
  transition: all 500ms ease;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.5em;
}

.read-more:hover {
  opacity: 0.9;
}

/*-- //banner --*/

/*-- //heading --*/

/*-- /banner-bottom --*/

.w3pvt-border-info {
  margin: 0 auto;
  width: 80%;
  border: 1px solid #ddd;
  padding: 4em;
  border-radius: 4px;
  background: transparent;
}

h4.title-w3ls {
  color: #555;
  font-size: 2em;
  line-height: 1.5em;
  text-transform: capitalize;
}

h2.title-w3ls {
  font-size: 2em;
  letter-spacing: 1px;
  color: #292a2b;
  z-index: 10;
  position: relative;
}

.sub-tittle-wthree {
  display: block;
  font-size: 0.7em;
  color: #999;
  letter-spacing: 1px;
}

.team-info h4 {
  color: white;
  font-size: 1.4em;
  margin-bottom: 0.5em;
}

.team-info p {
  color: #020202;
}

/*-- //banner-bottom --*/
.sub-para {
  font-size: 1.1em;
  width: 69%;
  margin: 0 auto;
  color: #555;
  line-height: 1.7em;
  font-weight: 600;
}

h3.title-w3ls {
  font-size: 3em;
  letter-spacing: 1px;
  color: #292a2b;
}

h3.title-w3ls.two {
  color: #fff;
}

/*--mid --*/

.mid-w3pvt-content {
  background: url(../images/banner1.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  position: relative;
}

.mid-w3pvt-content.two {
  background: url(../images/banner2.jpg) no-repeat center;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -moz-background-size: cover;
  position: relative;
}

.overlay-inner {
  background: rgba(0, 0, 0, 0.5);
}

.order-left-content h4 {
  font-size: 4em;
  font-weight: 600;
}

.test-info p {
  color: #ccc;
  letter-spacing: 1px;
}

h4.tittle {
  font-size: 3em;
  color: #fff;
  text-transform: capitalize;
  letter-spacing: 1px;
  margin: 0;
}

.test-info a.btn {
  border: 2px solid #fff;
  padding: 11px 30px;
  color: #fff;
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: inline-block;
}

.test-info {
  max-width: 600px;
}

#section-products {
  background: #75a543;
}

/*-- //mid --*/
/* accordions */
#history {
  background: #323b43;
}

.accordion {
  border: none;
  padding: 4em;
  margin: 0 auto;
  list-style: none outside;
}

.accordion > * + * {
  border-top: 1px solid white;
}

.accordion-item-hd {
  display: block;
  cursor: pointer;
  background-color: #fff;
  color: #000;
  padding: 20px;
  letter-spacing: 1px;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

li.accordion-item {
  margin-bottom: 1.5em;
}

.accordion-item-input:checked ~ .accordion-item-bd {
  max-height: 1000px;
  -webkit-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.1);
  padding: 2em;
  background: #282f35;
}

.accordion-item-input:checked ~ .accordion-item-hd > .accordion-item-hd-cta {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.accordion-item-hd-cta {
  display: block;
  width: 30px;
  position: absolute;
  top: calc(50% - 6px);
  /*minus half font-size*/
  right: 0;
  pointer-events: none;
  -webkit-transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
  text-align: center;
  font-size: 12px;
  line-height: 1;
}

.accordion-item-bd {
  max-height: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.accordion-item-input {
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1;
  overflow: hidden;
  position: absolute;
  left: -9999px;
}

h6.accordion-textm {
  color: #4c86e5;
  font-size: 18px;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

#team {
  background: #75a543;
}

ul.tic-info li span {
  color: #0099e5;
  vertical-align: middle;
}

ul.tic-info li {
  color: #566773;
  font-size: 0.9em;
  margin-bottom: 1.5em;
  letter-spacing: 1px;
}

/* //accordions */
/*-- /gallery --*/

section#gallery {
  position: relative;
}

.gal-img img {
  padding: 6px;
  background: #f0f0f1;
}

h5.gal-info {
  text-align: left;
  font-size: 1.2em;
  margin: 2em 0 0 0;
  color: #3a4045;
  font-weight: 600;
}

span.decription {
  text-transform: uppercase;
  display: block;
  font-size: 0.7em;
  color: #888;
  letter-spacing: 2px;
  margin-top: 0.5em;
}

/*-- popup --*/

.pop-overlay {
  position: fixed;
  top: 0px;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 0ms;
  visibility: hidden;
  opacity: 0;
  z-index: 99;
}

.pop-overlay:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  background: #fff;
  border-radius: 5px;
  width: 35%;
  position: relative;
  margin: 8em auto;
  padding: 3em 1em;
}

.popup p {
  font-size: 15px;
  color: #666;
  letter-spacing: .5px;
  line-height: 30px;
}


.popup .close {
  position: absolute;
  top: 5px;
  right: 15px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
}

.popup .close:hover {
  color: #30c39e;
}


/*-- //popup --*/

/*-- //gallery --*/
/*-- /testmonials --*/

.testi_grid {
  padding: 0 3em;
}

.testi_grid img {
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -o-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
}

.testi_grid h5 {
  font-size: 0.9em;
  letter-spacing: 2px;
  color: #ff3838;
  margin: 1em 0 0em 0;
  font-weight: 600;
}

.testimonials_grid span {
  color: #0099e5;
  font-size: 2em;
}

p.sub-test {
  margin: 2em 0;
}

/*-- //testimonials --*/
/* footer */
footer {
  background: #1d2124;
}

footer a {
  color: #76a543;
}

footer a:hover {
  color: gray;
}

h2.logo {
  margin-bottom: 1.3em;
}

h2.logo a {
  font-size: 1.4em;
  color: #fff;
  font-family: 'Lato', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
}

p.counter {
  color: #fff;
  font-size: 1.4em;
  font-weight: 600;
}

p.para-w3pvt {
  color: #ddd;
  font-size: 14px;
}

p.para-w3pvt {
  color: #ddd;
  font-size: 21px;
  margin-left: 1em;
}


/* newsletter */
p.sub-tittle {
  max-width: 800px;
  margin: 0 auto;
  color: #eee;
  font-size: 17px;
}

.newsletter_wthree {
  max-width: 700px;
  margin: 0 auto;
}

.newsletter form {
  display: flex;
  -webkit-box-shadow: 6px 3px 27px -1px rgba(0, 0, 0, 0.24);
  -moz-box-shadow: 6px 3px 27px -1px rgba(0, 0, 0, 0.24);
  box-shadow: 6px 3px 27px -1px rgba(0, 0, 0, 0.24);
}

.newsletter input[type="email"] {
  padding: 14px;
  border: none;
  width: 98%;
  background: #fff;
  outline: none;
  font-size: 16px;
  letter-spacing: 2px;
  color: #000;
  border: 1px solid transparent;
  margin-right: 2%;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}

.newsletter button {
  padding: 13px 30px;
  color: #fff;
  font-size: 15px;
  letter-spacing: 2px;
  background: #0099e5;
  border: 1px solid transparent;
  -webkit-border-radius: 4px;
  -o-border-radius: 4px;
  -ms-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
}

/* //newsletter */

/* social icons */
.social-icons-footer ul li {
  display: inline-block;
}

.social-icons-footer ul li a span {
  color: #fff;
  margin: 0 18px;
  font-size: 1.1em;
}

.social-icons-footer.single ul li a span {
  color: #555;
  margin: 0 8px;
  font-size: 1.1em;
}

/* //social icons */
/* //footer */

/* copyright */

.copy_right {
  background: #0099e5;
}

.copy_right p {
  color: #fff;
}

.copy_right p a {
  color: #fff;
}

.copy_right p a:hover {
  opacity: .8;
}

.copy_right p {
  letter-spacing: 1px;
  font-size: 16px;
  margin: 0;
}

/* //copyright */
/* /move-top */
a.move-top span {
  color: #ddd;
  width: 36px;
  height: 36px;
  border: transparent;
  background: transparent;
}

/* //move-top */
/*--/responsive--*/

@media(max-width:2500px) {
  .main-content,
  .wthree-overlay {
    min-height: 38em;
  }

  .banner-info {
    padding-top: 8em;
    width: 70%;
  }
}

@media(max-width:1366px) {
  .main-content,
  .wthree-overlay {
    min-height: 38em;
  }

  .banner-info {
    padding-top: 8em;
    width: 70%;
    /* margin: 0 auto; */
  }
}

@media(max-width:1280px) {
  h4.title-w3ls {
    font-size: 1.8em;
  }

  h2.title-w3ls {
    font-size: 1.8em;
  }

  .team-info h4 {
    font-size: 1.2em;
    margin-bottom: 0.5em;
  }

  h3.title-w3ls {
    font-size: 2.5em;
  }

  .banner-info h1 {
    font-size: 3.3em;
  }
}

@media(max-width:1080px) {
  .main-content,
  .wthree-overlay {
    min-height: 34em;
  }

  .banner-info {
    width: 70%;
  }

  div.logo {
    position: absolute;
    left: 42%;
  }

  ul.menu li:nth-child(3) {
    margin-right: 38%;
  }

  ul.menu li {
    width: 10%;
    text-align: center;
  }

  .main-content.inner,
  .wthree-overlay.inner {
    min-height: 16em;
  }

}

@media(max-width:992px) {
  div.logo {
      position: static;
      left: 0;
      float: left;
  }

  .logo a {
      font-size: 40px;
  }

  nav ul li {
      margin: 0px;
      display: block;
      float: none;
      text-align: center;
  }

  ul.menu li {
      width: 100%;
      text-align: center;
  }

  .banner-info {
      width: 90%;
      margin-left: -48px;
  }

  .main-content,
  .wthree-overlay {
      min-height: 32em;
  }

  .w3pvt-border-info {
      margin: 0 auto;
      width: 100%;
      border: 1px solid #ddd;
      padding: 3em;
  }

  .about-info {
      margin: 1em 0;
  }

  .accordion {
      padding: 0em;
  }
}

@media(max-width:800px) {
  .banner-info h1 {
    font-size: 3em;
  }

  .main-content,
  .wthree-overlay {
    min-height: 29em;
  }

  .banner-info {
    padding-top: 6.5em;
    width: 90%;
    margin: 0 auto;
  }

  h4.tittle {
    font-size: 2.2em;
  }

  .popup {
    width: 60%;
  }

}

@media(max-width:768px) {
  h4.title-w3ls {
    font-size: 1.6em;
  }

  h2.title-w3ls {
    font-size: 1.6em;
  }

  h5.gal-info {
    font-size: 1em;
    margin: 2em 0 2em 0;
  }

  .banner-info {
    padding-top: 9.5em;
    width: 100%;
    margin: 0 auto;
  }

  .banner-info h1 {
    font-size: 2.7em;
  }
}

@media(max-width:767px) {
  .banner-info {
    padding-top: 4em;
    width: 100%;
    margin-left:-44px;
  }

  .banner-info h1 {
    font-size: 2.5em;
  }

  .main-content,
  .wthree-overlay {
    min-height: 27em;
  }

  .main-content.inner,
  .wthree-overlay.inner {
    min-height: 12em;
  }
}

@media(max-width:667px) {
  .banner-info {
    padding-top: 4em;
    width: 100%;
    margin: 0 auto;
  }

  .main-content,
  .wthree-overlay {
    min-height: 24em;
  }

  .logo a {
    font-size: 35px;
  }

  .popup {
    width: 90%;
  }
}

@media(max-width:640px) {
  .main-content,
  .wthree-overlay {
    min-height: 22em;
  }

  .read-more {
    padding: 0.6em 1.5em;
    font-size: 0.9em;
  }
}

@media(max-width:600px) {
  .main-content {
    background: url('../images/banners/m-banner.png') no-repeat;
    background-size: cover;
  }

  .main-content.inner,
  .wthree-overlay.inner {
    min-height: 10em;
  }

  h3.title-w3ls {
    font-size: 2.3em;
  }
}

@media(max-width:568px) {
  h4.title-w3ls {
    font-size: 1.5em;
  }

  h2.title-w3ls {
    font-size: 1.5em;
  }

  h4.subtitle-w3ls {
    font-size: 1.6em;
    text-align: center;
  }

  .banner-info h1 {
    font-size: 2.3em;
  }
}

@media(max-width:480px) {
  h3.title-w3ls {
    font-size: 2em;
  }

  .banner-info {
    padding-top: 27px;
    padding-bottom: 15px;
    width: 100%;
  }

  .main-content,
  .wthree-overlay {
    min-height: 20em;
  }

  h4.tittle {
    font-size: 2em;
  }
}

@media(max-width:440px) {
  .banner-info h1 {
    font-size: 2em;
  }

  .w3pvt-border-info {
    padding: 1.5em;
  }

  .banner-info {
    padding-top: 3em;
    width: 100%;
    margin: 0 auto;
  }

  .main-content,
  .wthree-overlay {
    min-height: 18em;
  }

  .banner-info h1 {
    font-size: 1.8em;
  }

  .logo a {
    font-size: 30px;
  }

  .main-content.inner,
  .wthree-overlay.inner {
    min-height: 8em;
  }
}

@media(max-width:384px) {
  .banner-info h1 {
    font-size: 20px;
  }

  .main-content,
  .wthree-overlay {
    min-height: 16em;
  }

  .banner-info {
    width: 100%;
    margin: 0 auto;
    padding-top: 33px;
    padding-bottom: 33px;
  }

  h4.tittle {
    font-size: 1.6em;
  }
}

@media(max-width:375px) {}

@media(max-width:320px) {
  h4.tittle {
    font-size: 1.8em;
  }
}

.text-success {
  color: #76a543 !important;
}

button.btn.btn-link.text-success.active:focus,
button.btn.btn-link.text-success.active:active {
  text-decoration: none !important;
}

button.btn.btn-link.text-success.active,
button.btn.btn-link.text-success:hover {
  font-weight: bold;
  border-bottom: #76a543;
  border-bottom-width: 2px;
  border-bottom-style: solid;
  border-radius: 0px;
  text-decoration: none !important;
}

.scroller {
  min-width: 100%;
  height: 80px;
  overflow-x: auto;
  white-space: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 20px;
}

.scroller::-webkit-scrollbar{
  width: 0;
}

.product-name {
  color:black;
}

.product-name:hover{
  color:rgb(119, 119, 119);
}

.about-ub {
  position: relative;
  border-radius: 20px;
  max-height: 100vh;
  overflow: hidden;
 }

.about-ub h4, .my-3, .about-button {
  position: relative;
  z-index: 10;
}

.about-ub::before {
  content: '';
  position: absolute;
  width: 150px;
  height: 260%;
  background: #76a543;
  top: -260px;
  left: 40%;
  animation: animate 4s linear infinite;
}

.about-ub::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: whitesmoke;
  border-radius: 16px;
}

@keyframes animate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.slider-track {
  animation : scroll 10s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  95% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0);
  }
}

.accordion-button::after {
  content:'+';
  padding: 0;
  position: absolute;
  right: 15px;
  width: 25px;
  height: 25px;
  background-color: #76a543;
  color: white;
  font-weight: bold;
  font-size: large;
  text-align: center;
  border-radius: 100px;
}

.accordion-button:not(.collapsed)::after {
  content:'-';
  padding: 0;
  position: absolute;
  right: 15px;
  width: 25px;
  height: 25px;
  background-color: #76a543;
  color: white;
  font-weight: bold;
  font-size: large;
  text-align: center;
  border-radius: 100px;
}

.box{
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
}

.box-content {
  position: absolute;
  inset: 7px;
  border-radius: 50%;
  z-index: 3;
}

.box-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.box::before {
  content: '';
  position: absolute;
  inset: -20px 50px;
  background-color: #76a543;
  rotate: 30deg;
}

.box::after {
  content:'';
  position: absolute;
  background-color: rgb(8, 8, 8);
  border-radius: 50%;
  align-content: center;
}

.banner-wrapper {
  margin-bottom: 30px;
}
.banner-words {
  overflow: hidden;
  width:min-content;
  height: 30px;
}

.banner-words span {
  display: block;
  color: white;
  height: 50px;
  padding-top: 2px;
  font-weight: bold;
  animation: spin-words 10s infinite;
}

@keyframes spin-words {
  10% {
    transform: translateY(0%);
  }
  20% {
    transform: translateY(-100%);
  }
  30% {
    transform: translateY(-200%);
  }
  40%{
    transform: translateY(-300%);
  }
  50% {
    transform: translateY(-400%);
  }
  60% {
    transform: translateY(-500%);
  }
  70% {
    transform: translateY(-600%);
  }
  80% {
    transform: translateY(-700%);
  }
  90% {
    transform: translateY(-800%);
  }
  100%{
    transform: translateY(-900%);
  }
}

#scroll-container {
  min-width: 50px;
}

.products:hover {
  text-decoration: underline;
}

.search:focus {
  outline:none;
}

#menu-list li{
  cursor: pointer;
  font-size: large;
}

#menu-list li:hover{
  color:#78a543;
}

#details p{
  margin: 20px;
}

.nav-pills .nav-link.active{
  color:#78a453;
  background-color: transparent;
}

.nav-pills .nav-link{
  color:#000;
}

button.policy-title:hover{
  color:#78a543;
}

button.policy-title{
  color:#000;
  font-weight: bold;
}

button.policy-title.active{
  color:#78a543;
}

.blog-post > h4 {
  margin-top: 40px;
  margin-bottom: 10px;
}

.blog-post > ul, .blog-post > ol {
  margin-left: 40px;
  margin-bottom: 20px;
}

.blog-post p > img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-top: 25px;
}

.blog-post p:first-of-type > img {
  margin-top: -9%;
}

.job-description h3 {
  margin-top: 10px;
}

.job-description ul {
  margin-top: 10px;
  padding-left: 30px;
}

.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 25px;
  z-index: 9999;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  background-color: #06a330;
}

.whatsapp-chat a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-decoration: none;
}

.whatsapp-chat i {
  font-size: 28px;
  color: white;
}

@media screen and (max-width: 420px) {
  .whatsapp-chat {
    bottom: 60px;
    right: 10px;
  }

  .whatsapp-chat i {
    font-size: 25px;
  }
}
