/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
body {
  color: #444444;
  overflow: auto;
  overflow-x: hidden;
  font-family: 'Raleway', sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
}
ul li{
  font-family: 'Raleway', sans-serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  color: #5a5a5a;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #002e00;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #002e00;
}

.back-to-top:hover i {
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #002e00;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.2s;
  z-index: 997;
  padding: 15px 0;
  background: #ffffff00;
  margin-top: 0px;
}

#header.header-scrolled,
#header.header-inner-pages {
  background: #002e00;
  margin-top: 0px;
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}


#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #002e00;
}

#header .logo img {
  max-height: 80px;
  margin-right: 20px;
}

/*--------------------------------------------------------------
#  Get Startet Button
--------------------------------------------------------------*/

.get-started-btn {
  color: #fff;
  border-radius: 4px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  border: 2px solid #002e00;
}

.get-started-btn:hover {
  background: #ffbb38;
  color: #343a40;
}

@media (max-width: 992px) {
  .get-started-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px 10px 25px;
  font-size: 15px;
  font-weight: 200;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 13px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  /* margin: 0; */
  margin-left: -100px;
  /* width: unset; */
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  text-align: right;
  background: #002e00;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 5px 0px;
  font-weight: 200;
  font-size: 14px;
  text-transform: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  text-align: right;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul li {
  padding: 5px 20px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #fff;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

.navbar .nav-link.livvair-logo img {
  max-height: 70px;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  /* position: absolute;
  top: 15px;
  right: 15px; */
  position: absolute;
  top: 16px;
  right: 15px;
  background: #fff;
  color: #000;


}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #fff !important;
  background-color: #002e00;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  background-color: #002e00;
  color: #fff;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: url(../img/hero2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#hero iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77vh;
  /* maintain 16:9 aspect ratio */
  height: 100vh;
  transform: translate(-50%, -50%);
  pointer-events: none;
  /* clicks go through to buttons/text if any */
  z-index: 0;
}

/*#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
*/
#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}

#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h1 span {
  color: #002e00;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .main-logo {
  margin-bottom: 60px;
}

#hero .main-logo img {
  height: 120px;
  margin-right: 20px !important;
}

#hero .main-logo-caption {
  margin-top: -56px !important;
}

#hero .main-logo-caption p {
  color: #fff;
  font-size: 14px;
}

#hero .main-logo .rapitant {
  margin: 0 auto;
  width: 30%;
  height: 100%;
}

#hero .main-logo .biosafe {
  margin: 10px auto;
  height: 50px;
  margin-top: 50px !important;
}

.brands {
  margin-top: 40px;
  padding: 10px 140px;
  margin-bottom: 40px;
}

.brands .box1,
.brands .box2,
.brands .box3,
.brands .box4 {
  width: 100%;
  height: 300px;
  background-position: center center;
  background-size: 100% 100%;
  position: relative;
}

.brands .box1 {
  background: url("../img/livvsafe-img.jpg") center center;
}

.brands .box2 {
  background: url("../img/livvair-img.jpg") center center;
}

.brands .box3 {
  background: url("../img/airsteril-img.jpg") center center;
}

.brands .box4 {
  background: url("../img/cc-img.jpg") center center;
}

.brands .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  height: 300px;
  text-align: center;
}

.brands .icon-box a img {
  margin-bottom: 15px;
  margin-top: 35px;
}

.brands .icon-box a .livvsafe {
  height: 80px;
  margin-bottom: 17px;
}

.brands .icon-box a .livvair {
  height: 80px;
}

.brands .icon-box a .airsteril {
  height: 70px;
  margin-bottom: 23px;
}

.brands .icon-box a .cc {
  height: 60px;
  margin-top: 35px;
}

.brands .icon-box a .carbon-dynamics {
  height: 60px;
  margin-top: 35px;
}

.brands .icon-box a span {
  color: #fff;
  font-size: 12px;
}

.brands .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

.brands .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

.brands .icon-box h3 a:hover {
  color: #002e00;
}

.brands .icon-box:hover {
  border-color: #002e00;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 250px;
  }

  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #444;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #002e00;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Raleway", sans-serif;
}

.about h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Raleway", sans-serif;
}

.about h6 {
  color: #222;
  font-weight: 700;
  font-family: "Raleway", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #002e00;
}

.about .content p {
  padding: 10px 140px;
  font-size: 13px;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about img {
  height: 500px;
  width: 100%;
}

.about .next-articles-btn {
  float: right;
  color: #888;
  font-weight: 500;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 20px;
}

.features .icon-box {
  padding-left: 15px;
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 5px 0 10px 60px;
}

.features .icon-box i {
  font-size: 48px;
  float: left;
  color: #002e00;
}

.features .icon-box p {
  font-size: 13px;
  color: #848484;
  margin-left: 60px;
}

.features .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 400px;
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 90px;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  background: #002e00;
  color: #fff;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #002e00;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 16px;
  color: #222;
}

.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  padding: 40px;

}

.contact .php-email-form .title h2 {
  color: #002e00;
  text-align: center;
  padding-bottom: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #002e00;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #002e00;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: #002e00;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form inpt[type=submit] {
  background: #002e00;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  width: 100%;
  transition: 0.4s;
  border-radius: 0px;
}

.contact .php-email-form input[type=submit]:hover {
  background: #333;
}

.contact .php-email-form input[type=submit] {
  background: #002e00;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  width: 100%;
  transition: 0.4s;
  border-radius: 0px;
}

.contact .php-email-form input[type=submit]:hover {
  background: #333;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.contact .contact-inform {
  margin-left: 100px;
}

.contact .contact-inform h1 {
  font-size: 46px;
  margin-bottom: 25px;
}

.contact .contact-inform h3 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 15px 0;
  background: whitesmoke;
  min-height: 40px;
  margin-top: 74px;
}

.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #2f2f2f;
  content: "/";
}

@media (max-width: 992px) {
  .calculator .image img {
    max-width: 100%;
    height: auto !important;
  }

  .breadcrumbs {
    margin-top: 68px;
  }

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs ol {
    display: block;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  padding-top: 20px;
  background-color: #000;
}

footer .companylist h5 {
  font-size: 16px;
  color: #fff;
}

footer .companylist ul li h6 {
  font-size: 13px;
  color: #fff;
  margin-left: 10px;
}

footer .companylist ul li p {
  font-size: 14px;
  color: #fff;
  margin-left: 10px;
}

footer .companylist p {
  color: #fff;
  margin-left: 40px;
  font-size: 14px;
  margin-top: 15px;
}

footer .companylist ul li a {
  color: #fff;
  font-size: 15px;
  padding-left: 10px;
}

footer .companylist ul li span {
  color: #fff;
  font-size: 13px;
  padding-left: 10px;
}

.contact footer {
  padding-top: 0;
}

footer .companylist .key-information {
  padding-left: 90px;
}

.contact .customers {
  padding-top: 100px;
}

/**.customer-images{
  margin-left:160px;
}**/

.customer .customer-images .image-box img {
  margin: 10px 0px;
  height: 60px;
  width: 100%;
}

footer .logos-row {
  margin-top: -111px;
  margin-bottom: 20px;
  margin-left: 0;
  justify-content: center;
}

footer .logos img {
  height: 65px;
  margin-left: 0;
  margin: auto;
}

footer .logos {
  text-align: left;
  width: 25%;
}

footer .logos-row.logos-row2 {
  display: none;
}

footer .logos .box {
  margin: 10px auto;
  display: inline;
}

footer .logos {
  margin-top: 70px;
  width: 20%;
}

footer .logos .sarthi {
  height: 95px;
  margin-left: 30px;
  margin-top: -25px;
}

footer .logos .LIVVLife {
  height: 75px;
}

footer .logos .livvsafe {
  height: 70px;
  margin-left: -90px;
}

footer .logos .iitm {
  height: 70px;
  margin-left: 30px;
  margin-top: -2px;
}

footer .logos .livvair {
  height: 95px;
  margin-top: -25px;
}

footer .logos .airsteril {
  height: 65px;
  margin-left: -70px;
}

footer .logos .rfactor {
  height: 50px;
  margin-left: -20px;
  margin-top: 10px;
}

footer .logos .cc {
  height: 45px;
  margin-left: 30px;
}

footer .logos .carbon-dynamics {
  height: 25px;
}

footer .customers p {
  font-size: 18px;
  font-weight: regular;
  color: #FFF;
}

@media (max-width: 676px) {
  .customer .customer-content {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 0px;
    margin-left: -34px;
  }

  footer .logos-row.logos-row2 {
    display: block;
    text-align: center;
  }

  footer .logos-row.logos-row2 .logos {
    display: inline-block;
    width: 48%;
    text-align: center;
    margin-bottom: 40px;
  }

  footer .logos-row.logos-row2 .logos .livvsafe {
    height: 17px;
    margin-left: -13px;
  }

  footer .logos-row.logos-row2 .logos .livvair {
    height: 27px;
    margin-top: -8px;
  }

  footer .logos-row.logos-row2 .logos:last-child {
    margin-bottom: 30px;
  }

  footer .logos-row.logos-row2 .logos .airsteril {
    height: 17px;
    margin-left: -14px;
  }

  footer .logos-row.logos-row2 .logos .rfactor {
    height: 14px;
    margin-top: 0px;
    margin-left: -15px;
  }

  footer .logos-row.logos-row2 .logos .sarthi {
    height: 30px;
    margin-left: -18px;
    margin-top: 0px;
  }

  footer .logos-row {
    display: none;
  }

  .customer .customer-images .image-box img {
    margin: 10px 0px;
    height: 100%;
    width: 100%;
  }

  footer .logos {
    margin-top: 70px;
    width: 20%;
  }
}

.customer .customer-content {
  padding-left: 50px;
  padding-right: 20px;
  margin-top: 10px;
}

@media (max-width: 991px) {
  .customer-images {
    margin-left: 0px;
  }
}

footer a {
  color: inherit;
}

footer a:hover {
  color: inherit;
}

footer .blacker {
  background-color: #000;
}

footer .customers {
  padding-bottom: 125px;
}

footer .customers p {
  font-family: 'Myriad Pro', sans-serif;
  font-size: 18px;
  font-weight: regular;
  color: #FFF;
}

footer .customers p.text-uppercase {
  margin-top: 60px;
  font-family: 'Montserrat', sans-serif;
}

footer .customers h6 {
  font-size: 11px;
  color: #FFF;
}

footer .customers .list-inline li {
  display: table-cell;
  width: 32%;
  height: 130px;
  vertical-align: middle;
}

footer .blacker.links {
  padding: 20px 0 10px;
}

footer .blacker.links li {
  width: 150px;
}

footer .blacker.links li a {
  font-family: 'Montserrat', sans-serif;
  line-height: 30px;
  color: #aaaaaa;
}

footer .blacker.media {
  padding: 30px 0 10px 0;
}

footer .blacker.media p {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #FFF;
}

footer .blacker.media p:last-of-type {
  margin-top: -12px;
}

footer .blacker.media p a {
  margin: 0 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #FFF;
}

footer h5 {
  margin-top: 90px;
  padding-left: 40px;
  color: #cccccc;
}

footer .companylist ul {
  margin-bottom: 100px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  line-height: 29px;
  list-style-type: none;
  color: #cccccc;
}

footer span.glyphicon {
  padding-right: 20px;
}

.row-nomargin .col-xs-12 {
  padding-right: 0;
  padding-left: 0;
}

/*--------------------------------------------------------------
# Blog
--------------------------------------------------------------*/
.blog {
  padding: 40px 0 20px 0;
}

.blog .title h2 {
  color: #002e00;
  margin-bottom: 35px;
}

.blog .entry {
  padding: 30px;
  margin-bottom: 60px;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.blog .entry .entry-img {
  max-height: 440px;
  margin: -30px -30px 20px -30px;
  overflow: hidden;
}

.blog .entry .entry-img img {
  object-fit: cover;
}

.blog .entry .entry-title {
  font-size: 25px;
  font-weight: bold;
  padding: 0;
  margin: 0 0 20px 0;
}

.blog .entry .entry-title a {
  color: #333333;
  transition: 0.3s;
}

.blog .entry .entry-title a:hover {
  color: #002e00;
}

.blog .entry .entry-meta {
  margin-bottom: 15px;
  color: #666;
}

.blog .entry .entry-meta ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  align-items: center;
  padding: 0;
  margin: 0;
}

.blog .entry .entry-meta ul li+li {
  padding-left: 20px;
}

.blog .entry .entry-meta ul li {
  font-size: 14px;
  text-transform: uppercase;
}

.blog .entry .entry-meta i {
  font-size: 16px;
  margin-right: 8px;
  line-height: 0;
}

.blog .entry .entry-meta a {
  color: #666666;
  font-size: 14px;
  display: inline-block;
  line-height: 1;
}

.blog .entry .entry-content p {
  line-height: 24px;
}

/*.blog .entry .entry-content .read-more {
  -moz-text-align-last: right;
  text-align-last: right;
}*/
.blog .articles-btn {
  display: inline-block;
  float: right;
  color: #333;
  transition: 0.3s;
  font-size: 16px;
  border-radius: 50px;
  text-align: left;
}

.blog .entry .entry-content .read-more a {
  display: inline-block;
  color: #002e00;
  transition: 0.3s;
  font-size: 14px;
  border-radius: 50px;
  text-align: left;
}

.blog .entry .blog-content {
  padding: 10px;
  height: 430px;
}

.blog .entry .entry-content .read-more a:hover {
  color: #002e00;
}


.blog .entry .entry-content h3 {
  font-size: 22px;
  margin-top: 30px;
  font-weight: bold;
}

.blog .entry .entry-content blockquote {
  overflow: hidden;
  background-color: #fafafa;
  padding: 60px;
  position: relative;
  text-align: center;
  margin: 20px 0;
}

.blog .entry .entry-content blockquote p {
  color: #666666;
  line-height: 1.6;
  margin-bottom: 0;
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
}

.blog .entry .entry-content blockquote::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #002e00;
  margin-top: 20px;
  margin-bottom: 20px;
}

.blog .entry .entry-footer {
  padding-top: 10px;
  border-top: 1px solid #e6e6e6;
}

.blog .entry .entry-footer i {
  color: #002e00;
  display: inline;
}

.blog .entry .entry-footer a {
  color: #666666;
  transition: 0.3s;
}

.blog .entry .entry-footer a:hover {
  color: #002e00;
}

.blog .entry .entry-footer .cats {
  list-style: none;
  display: inline;
  padding: 0 20px 0 0;
  font-size: 14px;
}

.blog .entry .entry-footer .cats li {
  display: inline-block;
}

.blog .entry .entry-footer .tags {
  list-style: none;
  display: inline;
  padding: 0;
  font-size: 14px;
}

.blog .entry .entry-footer .tags li {
  display: inline-block;
}

.blog .entry .entry-footer .tags li+li::before {
  padding-right: 6px;
  color: #6c757d;
  content: ",";
}

.blog .entry .entry-footer .share {
  font-size: 16px;
}

.blog .entry .entry-footer .share i {
  padding-left: 5px;
}

.blog .entry-single {
  margin-bottom: 30px;
}

.blog .blog-author {
  padding: 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-author img {
  width: 120px;
  margin-right: 20px;
}

.blog .blog-author h4 {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 0px;
  padding: 0;
  color: #333333;
}

.blog .blog-author .social-links {
  margin: 0 10px 10px 0;
}

.blog .blog-author .social-links a {
  color: rgba(51, 51, 51, 0.4);
  margin-right: 5px;
  transition: 0.3s;
}

.blog .blog-author .social-links a:hover {
  color: #002e00;
}

.blog .blog-author p {
  font-style: italic;
  color: #666666;
}

.blog .blog-comments {
  margin-bottom: 30px;
}

.blog .blog-comments .comments-count {
  font-weight: bold;
}

.blog .blog-comments .comment {
  margin-top: 30px;
  position: relative;
}

.blog .blog-comments .comment .comment-img {
  margin-right: 14px;
}

.blog .blog-comments .comment .comment-img img {
  width: 60px;
}

.blog .blog-comments .comment h5 {
  font-size: 16px;
  margin-bottom: 2px;
}

.blog .blog-comments .comment h5 a {
  font-weight: bold;
  color: #666666;
  transition: 0.3s;
}

.blog .blog-comments .comment h5 a:hover {
  color: #333333;
}

.blog .blog-comments .comment h5 .reply {
  padding-left: 10px;
  color: #002e00;
}

.blog .blog-comments .comment h5 .reply i {
  font-size: 20px;
}

.blog .blog-comments .comment time {
  display: block;
  font-size: 14px;
  color: #999999;
  margin-bottom: 5px;
}

.blog .blog-comments .comment.comment-reply {
  padding-left: 40px;
}

.blog .blog-comments .reply-form {
  margin-top: 30px;
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .blog-comments .reply-form h4 {
  font-weight: bold;
  font-size: 22px;
}

.blog .blog-comments .reply-form p {
  font-size: 14px;
}

.blog .blog-comments .reply-form input {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form input:focus {
  box-shadow: none;
  border-color: #666666;
}

.blog .blog-comments .reply-form textarea {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
}

.blog .blog-comments .reply-form textarea:focus {
  box-shadow: none;
  border-color: #666666;
}

.blog .blog-comments .reply-form .form-group {
  margin-bottom: 25px;
}

.blog .blog-comments .reply-form .btn-primary {
  border-radius: 50px;
  padding: 10px 30px;
  border: 0;
  background-color: #002e00;
}

.blog .blog-comments .reply-form .btn-primary:hover {
  background-color: #1ee57a;
}

.blog .blog-pagination {
  color: #002e00;
}

.blog .blog-pagination ul {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.blog .blog-pagination li {
  margin: 0 5px;
  transition: 0.3s;
}

.blog .blog-pagination li a {
  color: #002e00;
  padding: 6px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  font-weight: bold;
}

.blog .blog-pagination li.active,
.blog .blog-pagination li:hover {
  background: #002e00;
  border-radius: 50px;
}

.blog .blog-pagination li.active a,
.blog .blog-pagination li:hover a {
  color: #fff;
}

.blog .sidebar {
  padding: 30px;
  margin: 0 0 60px 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0 0 0 0;
  margin: 0 0 15px 0;
  color: #002e00;
  position: relative;
}

.blog .sidebar .sidebar-item {
  margin-bottom: 30px;
}

.blog .sidebar .sidebar-item ul li a i {
  margin-right: 5px;
  color: #002e00;
  font-size: 22px;
  transition: .5s all ease;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 3px 10px;
  position: relative;
  border-radius: 50px;
}

.blog .sidebar .search-form form input {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 70px);
  box-shadow: none;
}

.blog .sidebar .search-form form input:focus {
  box-shadow: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 30px;
  margin: -1px;
  background: #002e00;
  color: #fff;
  transition: 0.3s;
  line-height: 0;
  border-radius: 50px;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: #13a456;
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li+li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: #002e00;
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: #b3b3b3;
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item+.post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  width: 80px;
  float: left;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  margin-left: 95px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: #333333;
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: #002e00;
}

.blog .sidebar .recent-posts time {
  display: block;
  margin-left: 95px;
  font-style: italic;
  font-size: 14px;
  color: #b3b3b3;
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #333333;
  font-size: 14px;
  padding: 6px 20px;
  margin: 0 6px 8px 0;
  border: 1px solid #002e00;
  display: inline-block;
  border-radius: 50px;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: #fff;
  background: #002e00;
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: white;
  font-size: 14px;
}

.top-box .about-box {
  background: #fff;
  margin-top: -140px;
  border-radius: 20px;
  z-index: 1;
  position: absolute;
  padding: 40px 0;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
}

.top-box .about-box .image {
  float: right;
}

.top-box .about-box .image img {
  height: 60px;
}

.partners .partner-box {
  width: 20%;
}

.partners p {
  text-align: center;
  color: #888;
  padding-left: 180px;
  padding-right: 180px;
  margin-bottom: 40px;
}

.partners .partner-box .image img {
  height: 60%;
  width: 100%;
}

.how-it-works .icon {
  text-align: center;
  margin-top: 20px;
}

.how-it-works .content {
  padding-left: 118px;
}

.how-it-works .content h3 {
  text-align: left;
  margin-top: 30px;
  font-size: 22px;
  color: #444d1b;
  text-transform: capitalize;
  font-weight: 700;
}

.how-it-works .content p {
  margin-bottom: 30px;
}

.how-it-works .icon img {
  height: 80px;
  width: 80px;
  margin-bottom: 20px;
}

.how-it-works .box-second .icon img {
  height: 200px;
  width: 200px;
}

.how-it-works .hiw {
  background: #587b37;
  padding: 40px 20px;
  margin: 20px 80px;
}

.how-it-works .hiw p {
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.how-it-works .hiw h3 {
  color: #fff;
  font-weight: 600;
  margin: 15px auto;
  text-align: center;
}

.how-it-works h4 {
  color: #9ab459;
  font-weight: 600;
  margin: 15px auto;
  font-size: 18px;
  text-align: center;
}

.how-it-works .hiw1 h5 {
  color: #73983f;
  font-weight: 600;
  margin: 15px auto;
  text-align: center;
}

.how-it-works .hiw1 p {
  text-align: center;
  font-size: 13px;
  margin-bottom: 20px;
}

.why-us .box1 {
  background: #9ab459;
  padding-bottom: 10px;
  height: 250px;
}

.why-us .box2 {
  background: #73983f;
  text-align: center;
  padding-bottom: 10px;
  height: 250px;
}

.why-us .box1 p,
.why-us .box2 p {
  color: #fff;
  text-align: center;
  font-size: 13px;
}

.why-us .box1 h3,
.why-us .box2 h3 {
  color: #fff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  font-size: 42px;
  padding-top: 80px;
}

.why-us .box1 .image img,
.why-us .box2 .image img {
  object-fit: cover;
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
}

.why2 .heading-box h2 {
  color: #587b37;
  font-weight: 700;
}

.why2 .box .image img {
  object-fit: cover;
  width: 100%;
  height: 220px;
}

.why2 .box {
  background: #eee;
}

.why2 .box h6 {
  color: #73983f;
  margin-top: 20px;
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 10px;
}

.why2 .box .text-box {
  padding: 20px;
  height: 320px;
}

.why2 .box .text-box .heading {
  border-bottom: 2px solid #999;
}

.why2 .box .text-box .desc {
  margin-top: 10px;
}

.why2 .box .text-box .desc a i {
  margin-top: 10px;
  font-size: 22px;
}

.why2 .box p {
  font-size: 13px;
}

.about-us h1 {
  font-size: 45px;
}
.about-us .img-box img{
  height: 550px;
  float: left;
}
.about-us .top-head{
  margin-left: 30px;
}
.about-us .img-box2{
  float: right;
  margin-top: 80px;
}
.about-us .img-box2 img{
  height: 550px;
  float: right;
}
.sustainability2 .content h4 {
  font-size: 18px;
  font-weight: 700;
}

.sustainability2 .content p {
  font-size: 15x;
}

.sustainability2 img {
  height: 100%;
  width: 100%;
}

.about-us .about-images {
  margin-top: 40px;
}

.about-us .about-images img {
  height: 170px;
  width: 100%;
  border-radius: 5px;
}

.mission .image img {
  width: 100%;
  height: 100%;
}

.mission {
  background: #E1F8D7;
  padding-top: 100px;
  padding-bottom: 100px;
}

.mission .content h3 {
  font-weight: 700;
  font-size: 50px;
}

.vision {
  background: url("../img/vision.jpg") center center;
  background-size: cover;
  position: relative;
  background-attachment: scroll;
  padding: 0;

}

.vision .content {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.7371323529411764) 100%);
  padding: 80px;
  margin: 0;
  box-shadow: 2px 0px 7px 0px rgba(255, 255, 255, 0.7);
}

.vision .content h3 {
  font-weight: 700;
  font-size: 50px;
}

.because {
  background: url("../img/because.jpg") center center;
  background-size: cover;
  position: relative;
  background-attachment: scroll;
  padding: 0;
}

.because .content {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 100%);
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: 200px;
  margin: 0;
  box-shadow: 2px 0px 7px 0px rgba(255, 255, 255, 0.7);
}

.because .content h3 {
  font-weight: 700;
  font-size: 40px;
}

.because .content h3 span {
  font-weight: 700;
  font-size: 70px;
}

.because .content p {
  text-align: justify;
}

.environmental-benefits .heading {
  margin-bottom: 30px;
}

.environmental-benefits .heading h3 {
  font-weight: 700;
  font-size: 40px;
  text-transform: uppercase;
}

.environmental-benefits .heading h3 span {
  font-weight: 700;
  font-size: 70px;
}

.environmental-benefits .content p {
  margin-bottom: 20px;
}

.environmental-benefits .benfits-images img {
  height: 100%;
  width: 100%;
}

.why .content .box .icon {
  text-align: center;
}

.why .content {
  margin-top: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  padding: 40px;
}

.why .content .box .icon img {
  text-align: center;
  margin: 30px auto;
}

.why .content .box h5 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 20px;
}

.why .content .box p {
  font-size: 13px;
}

.about-us img {
  height: 500px
  }
  .about-us .content h3 {
    font-size: 24px;
    font-weight: 500;
  }
.about-us .content img{
  margin-bottom: 20px;
  width: 100%;
  height: 100%;
}
@media (max-width: 786px) {
  #hero {
    width: 100%;
    height: 250px;
  }

  #hero .main-logo-caption p {
    text-align: center;
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
  }

  .brands {
    margin-top: 40px;
    padding: 10px 60px;
    margin-bottom: 40px;
  }

  .inner-page p {
    padding: 15px 25px;
  }

  .about-us p {
    padding: 20px 15px;
    font-size: 13px;
  }

  .about-us .box {
    margin-top: 30px;
  }

  .about-us img {
    height: 100%;
    width: 100%;
  }

  .top-box .about-box {
    background: #fff;
    margin-top: -140px;
    border-radius: 20px;
    z-index: 1;
    margin-left: 30px;
    margin-right: 30px;
    position: absolute;
    padding: 30px 15px;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.75);
  }

  .top-box .about-box .image {
    float: none;
  }

  .top-box .text-box h5 {
    font-size: 14px;
    font-weight: 700;
  }

  .about-us .box h4 {
    padding-left: 10px;
    font-weight: 700;
  }

  .why-us .box1 {
    background: #9ab459;
    padding-bottom: 10px;
    margin-bottom: 30px;
  }

  .why-us .box {
    margin-top: 30px;
  }

  .why2 .box {
    background: #eee;
    margin: 10px 0;
  }

  .why-us .box h4 {
    color: #587b37;
    font-weight: 700;
  }

  .why2 {
    margin-top: -80px;
  }

  .partners {
    padding: 20px 40px;
    margin-top: -43px
  }

  .partners p {
    text-align: left;
    color: #888;
    font-size: 13px;
    padding-left: 0px;
    padding-right: 0px;
    margin-bottom: 20px;
  }
}

.about-us2 {
  margin-top: 0px;
}

.about-us2 p {
  font-size: 13px;
}

.about-us2 .box {
  margin-top: 30px;
}

.about-us2 .image {
  text-align: center;
}

.about-us2 .image img {
  height: 450px;
  width: 450px;
  margin: 50px auto;
  text-align: center;
}

.about-us2 .content h3,
.about-us2 .content h5,
.about-us2 .content h6 {
  font-size: 17px;
  font-weight: 700;
}

.faq {
  background: url(../img/faq.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 150px;
}

.faq .accordion {
  background: #ffffff00;
  border: none;
}

.faq .accordion .accordion-item {
  background: #ffffff00;
  border: none;
  padding: 10px;
  margin-bottom: 20px;
}

.faq .accordion .accordion-item .accordion-header {
  background: #ffffff00;
  color: #444d1b;
  border-bottom: 1px solid #fff;
}

.faq .accordion .accordion-item .accordion-header .accordion-button {
  background: #ffffff00;
  color: #fff;
  font-weight: 700;
}

.faq .accordion h3 {
  color: #fff;
}

.accordion-body {
  color: #fff;
}

.about-us {
  padding: 140px 80px;
}

.about-us2 {
  padding: 30px 80px;
}

.about-us .box h4 {
  line-height: 34px;
}

.about-us h1 {
  font-weight: 400;
}

.about-us p {
  text-align: justify;
  font-weight: 400;
  font-size: 16px;
}

.about-us2 p {
  text-align: justify;
  font-weight: 400;
  font-size: 16px;
}

.about-us .content {
  margin-top: 20px;
}

.sustainability {
  background: url(../img/main-banner1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 80px;
  position: relative;
  z-index: 0;
}

.sustainability h4 {
  color: #fff;
  z-index: 1000;
  margin-bottom: 30px;
}

.sustainability h6, .sustainability h5 {
  color: #fff;
  font-weight: 600;
}

.sustainability p {
  color: #fff;
  z-index: 1000;
  font-size: 13px;
  line-height: 25px;
  margin-top: 25px;
  margin-bottom: 20px;
}

.sustainability a {
  background: #fff;
  color: #222;
  padding: 10px 20px;
  text-align: center;
  z-index: 1000;
  border-radius: 0px;
}
.sustainability ul li{
  color: #fff;
  z-index: 1000;
}

.what-we-do h4 {
  margin-bottom: 25px;
}

.what-we-do p {
  font-size: 13px;
}

.topbar {
  background: #222;
  color: #fff;
  text-align: center;
  height: 40px;
  top: 0;
  display: none;
}

.topbar p {
  padding-top: 10px;
  font-size: 13px;
  letter-spacing: 1px;
}

.topbar p span {
  letter-spacing: 1.7px;
}

.contact p {
  font-size: 18px;
}

.contact ul li {
  display: inline-block;
}

.about2 .content2 {
  background: #cccccc;
  padding: 170px 100px;
}

.about2 .content2 h3 {
  font-size: 36px;
}

.about2 .content2 h3 span {
  color: #002e00;
}

.about2 .content {
  margin-top: 80px;
}

.about2 .left-image {
  width: 100%;
  height: 100%;
  margin-top: 120px;
  margin-left: 80px;
}

.about2 .content2 .right-image {
  width: 100%;
  height: 350px;
  float: right;
}

.bottom-image {
  width: 100%;
  height: 450px;
  margin-top: 80px;
}

.about2 .vision-row {
  margin-top: 150px;
}

.about2 .vision-row .content p {
  font-size: 13px;
}


.products {
  background: #002e00;
  padding: 80px 0;
}

.products .products-box {
  background: #fff;
  padding: 20px;
}

.products .title h3 {
  color: #fff;
  text-align: left;
  margin-bottom: 40px;
}

.products .products-box .img-box img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.products .products-box .content {
  padding-top: 20px;
  height: 230px;
}

.products .products-box .content h5 {
  color: #002e00;
  font-weight: 600;
}

.products .products-box .content p {
  color: #002e00;
  font-size: 14px;
}

.products .products-box .content a {
  color: #002e00;
  text-decoration: underline;
}

footer .newsletter-heading {
  font-size: 16px;
  color: #fff;
  margin-top: 90px;
  padding-left: 0px;
  letter-spacing: 0px;
}

footer .newsletter {
  padding-left: 40px;
}

footer .newsletter p {
  margin-left: 0;
  margin-top: -5px;
}

footer .newsletter-form {
  margin-top: 20px;
}

footer .newsletter-form input {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}

footer .newsletter input:focus,
footer .newsletter textarea:focus {
  border-color: #002e00;
}

footer .newsletter-form input {
  height: 28px;
  background: none;
  border: none;
  width: 220px;
  color: #fff;
  border-bottom: 2px solid #444;
}

footer .newsletter-form input[type=submit] {
  background: #444;
  border: 0;
  padding: 0;
  color: #fff;
  border: 2px solid #444;
  width: 70px;
  font-size: 14px;
  height: 28px;
  transition: 0.4s;
  border-radius: 0px;
}

@media (max-width: 786px) {
  .about-us {
    padding: 30px 0px;
  }

  .products .products-box {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
  }

  .products .products-box .content {
    padding-top: 20px;
    height: 260px;
  }

  footer .logos-row {
    margin-top: 33px;
    margin-bottom: 20px;
  }

  footer .hide-on-mobile {
    display: none;
  }

  footer .newsletter-heading {
    font-size: 16px;
    color: #fff;
    margin-top: 0px;
    padding-left: 0px;
  }

  .col-xs-6,
  .col-sm-6 {
    width: 50%;
  }

  .col-xs-12.newsletter {
    width: 50%;
  }

  footer .logos .airsteril {
    height: 40px;
    margin-left: 0px;
  }

  footer .logos .livvsafe {
    height: 46px;
    margin-left: 12px;
  }

  footer .logos .rfactor {
    height: 38px;
    margin-left: 13px;
  }

  footer .logos .livvair {
    margin-left: 30px;
    height: 86px;
  }

  footer .logos .sarthi {
    height: 78px;
    margin-left: 40px;
    margin-top: -10px;
  }
}

.jurassic-hemp,
.vayuone {
  padding: 40px;
}

.jurassic-hemp img,
.vayuone img {
  height: 100%;
  width: 100%;
}

.about-product {
  background: #f7f7f7;
}

.about-product img {
  height: 100%;
  width: 100%;
  margin-bottom: 20px;
}

.about-product .content h5 {
  font-weight: 700;
  font-size: 16px;
}

.about-product .content h4 {
  font-weight: 700;
  font-size: 17.25px;
  margin-bottom: 20px;
}

.about-product .content p,
.about-product .content ul li {
  font-size: 16px;
}

.technical-specs .btn-default {
  width: 350px;
  margin-top: 60px;
  padding: 20px 0;
  border-color: #393939;
  border-width: 2px;
  border-radius: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
}

.technical-specs .btn-green {
  color: #FFF;
  background-color: #106b3a;
}

.technical-details p {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  color: #1f1f1f;
}

.technical-specs .img-box img,
.technical-details .img-box img {
  height: 100%;
  width: 100%;
}

.service-maintenance .img-box img {
  height: 370px;
  margin-top: 113px;
}

.service-maintenance .content {
  padding-left: 100px;
}

.service-maintenance .content h3 {
  font-weight: 700;
}

.portcolio-details .swiper .swiper-slide img {
  height: 500px;
}

.technical-specs .content,
.technical-details .content {
  background: #f7f7f7;
  padding: 120px 40px;
  height: 1062px;
}

.technical-specs {
  margin-top: -119px;
}

.technical-specs .content h3,
.technical-details .content h3 {
  margin-bottom: 20px;
  font-weight: 700;
}

.technical-specs .content p,
.technical-details .content p {
  font-size: 16px;
}

.technical-details .content .coming-soon {
  margin-top: 171px;
  padding-left: 124px;
  margin-bottom: -36px;
  text-align: left;
}

/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
  background-color: var(--surface-color);
  padding: 30px;
}

.portfolio-details .portfolio-info h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info h5 {
  margin-bottom: 30px;
  margin-top: -28px;
  font-size: 20px;
}

.portfolio-details .portfolio-info h6 {
  color: #545454;
  font-size: 16px;
  margin: 20px 0;
}

.portfolio-details .portfolio-info ul {
  padding-left: 30px;
  font-size: 15px;
  margin-top: 30px;
}

.portfolio-details .portfolio-info ul li+li {
  margin-top: 10px;
}

.portfolio-details .portfolio-info ul li {
  font-size: 16px;
}

.portcolio-details .portfolio-info .knowmore {
  font-size: 13px;
}

.portfolio-details .portfolio-description {
  padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.how-it-works .video-box iframe {
  height: 440px;
  width: 100%;
  margin-bottom: 20px;
}

@media (max-width: 786px) {

  .portcolio-details .swiper .swiper-slide img,
  .service-maintenance .img-box img,
  .technical-specs .img-box img,
  .technical-details .img-box img,
  .about-product img {
    height: 100%;
    width: 100%;
  }

  .service-maintenance .content {
    padding-top: 40px;
  }

  .how-it-works .video-box iframe {
    height: 300px;
    width: 100%;
  }

  .how-it-works .content {
    padding-left: 0px;
  }

  .service-maintenance .content {
    padding-left: 0px;
  }

  .service-maintenance .img-box img {
    height: 100%;
    width: 100%;
    margin-top: 0px;
  }

  .livvair-airsteril .industryblock a>img {
    display: block;
    width: 100%;
    height: auto;
  }

  footer .companylist .key-information {
    padding-left: 10px;
    padding-top: 0px;
  }

  footer .newsletter {
    padding-left: 0;
    margin-top: 0;
  }

  .green h1 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    font-size: 15px;
  }

  footer .companylist ul li a {
    color: #fff;
    font-size: 14px;
    padding-left: 10px;
  }

  footer .companylist p {
    color: #fff;
    margin-left: 40px;
    font-size: 14px;
    margin-top: 15px;
  }

  footer .newsletter p {
    margin-left: 0;
    font-size: 14px;
    margin-top: -5px;
  }

  .video-background {
    position: relative;
    width: 100vw;
    height: 37vh;
    overflow: hidden;
    margin-top: 132px;
  }

  .about-us h1 {
    font-weight: 400;
    padding-left: 40px;
  }

  .blog .articles-btn {
    display: inline-block;
    float: right;
    color: #0d6efd;
    transition: 0.3s;
    font-size: 16px;
    border-radius: 50px;
    text-align: left;
    margin-top: -63px;
    text-decoration: underline;
  }

  .sustainability2 {
    padding: 20px 10px;
  }

  section.sustainability {
    padding: 40px 15px;
  }

  .about-us2 .box {
    margin-top: 30px;
    padding: 0 15px;
  }

  .calculator {
    background: #eee;
    padding: 20px 10px;
  }

  .calculator .image {
    background: url(assets/img/calci.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    height: 454px;
  }

  .about-us2 .top-row {
    padding: 50px 15px 50px 15px;
  }

  .about-us2 .row>.content ul,
  .about-us2 .row>.content ol {
    padding-left: 20px;
  }
}


/*--------------------------------------------------------------
# Responsive Adjustments for Index Page
--------------------------------------------------------------*/
@media (max-width: 1200px) {
  .about-us2 .img2 {
    max-width: 100%;
    object-fit: contain;
  }

  .about-us2 .third-box {
    margin-left: 0 !important;
  }

  .about-us2 .links-list li a {
    font-size: 14px !important;
  }

  .about-us2 .second-box {
    padding-right: 0;
  }


  footer .logos-row {
    margin: 0;
  }

  footer .logos {
    margin-top: 0px !important;
    width: 25% !important;
    text-align: center;
  }

  footer .logos img {
    height: 70px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 100%;
    object-fit: contain;
    max-width: 150px;
  }

  footer .companylist ul {
    margin-bottom: 50px;
  }



}



@media (max-width: 1080px) {
  .about-us2 .third-box {
    margin-left: 0 !important;
  }

  .about-us2 .img1 {
    height: auto !important;
    max-width: 100%;
    width: inherit !important;
  }

  .about-us2 .img2 {
    height: auto !important;
    margin-bottom: 25px !important;
    max-width: 100% !important;
  }

  .about-us2 .second-box {
    padding-right: 0 !important;
  }







}



/* Large tablets and small desktops (max-width: 992px) */


@media (max-width: 992px) {
  .about-us2 .content {
    padding: 0;
  }

  .about-us2 .content p {
    padding: 0;
  }

  footer .companylist h5,
  footer .companylist ul li a {
    padding-left: 0;
  }

  footer .companylist ul li a {
    display: inline-block;
  }



  footer .row .keep-in-touch,
  footer .row .key-information {
    width: 33.33%;
  }

  .navbar li.dropdown a {
    position: relative;
  }

  footer .logos {
    width: 49% !important;
    margin-bottom: 30px;
  }

  footer .logos:last-child {
    margin-bottom: 0;
  }

  footer .newsletter {
    padding-left: 10px;
  }

  #header .logo img {
    max-height: 70px;
  }

  .about img {
    max-width: 100%;
    height: auto !important;
  }

  .navbar li.dropdown>a:after {
    position: absolute;
    content: '';
    right: 10px;
    top: 50%;
    border-top: solid 8px;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    transform: translateY(-50%);
  }

  /* Hero Section */
  #hero {
    height: 80vh;
    /* Slightly reduced height for better content fit */
  }

  #hero .container {
    padding-top: 60px;
    /* Adjust padding for smaller screens */
  }

  #hero h1 {
    font-size: 36px;
    /* Smaller heading */
    line-height: 44px;
  }

  #hero h2 {
    font-size: 18px;
    /* Smaller subheading */
    line-height: 22px;
  }

  #hero .main-logo img {
    height: 150px !important;
    /* Scale down logo */
    width: auto !important;
  }

  #hero .main-logo-caption p {
    font-size: 12px;
    /* Smaller caption */
  }

  footer .logos-row,
  footer .logos {
    margin-top: 0;
  }

  footer .logos img {
    height: 70px !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: 100%;
    object-fit: contain;
    max-width: 150px;
  }

  footer .companylist p {
    margin-left: 0;
  }

  footer .companylist .key-information {
    padding-left: 20px;
  }

  footer h5,
  footer .companylist ul,
  footer .companylist ul li a {
    padding-left: 0;
  }

  #hero iframe {
    width: 100vw;
    /* Ensure iframe scales to viewport width */
    height: 56.25vw;
    /* Maintain 16:9 aspect ratio */
  }


  /* Brands Section */
  .brands {
    padding: 10px 40px;
    /* Further reduce padding */
  }

  .brands .icon-box {
    height: auto;
    /* Allow flexible height */
    margin-bottom: 20px;
    /* Space between stacked boxes */
  }

  .brands .box1,
  .brands .box2,
  .brands .box3,
  .brands .box4 {
    background-size: cover;
    /* Ensure background images scale */
    height: 200px;
    /* Reduce height for smaller screens */
  }

  .brands .icon-box a img {
    max-height: 60px;
    /* Scale down brand images */
  }

  .navbar li:last-child a.nav-link.social-linkedin {
    display: inline-block;
    color: #000;
    margin-left: 15px;
    margin-top: 10px;
    padding: 10px;
    width: 43px;
  }

  .navbar-mobile .dropdown ul {
    margin: 10px;
  }

  .navbar li:last-child a.nav-link.social-linkedin:hover,
  .navbar li:hover a.nav-link.social-linkedin {
    color: #fff !important;
  }

  .navbar-mobile .dropdown ul li {
    padding: 0 !important;
  }

  .navbar .nav-link.social-linkedin i {
    color: inherit;
  }

  footer {
    margin-top: 30px;
  }

  #hero {
    min-height: 600px;
  }

  .contact .contact-inform {
    margin-left: 0;
  }

  .contact .php-email-form {
    padding: 20px;
  }

  section#contact.contact.inner-pages .container>.row {
    flex-direction: column-reverse;
  }

  section#contact.contact.inner-pages .row .col-sm-7,
  section#contact.contact.inner-pages .row .col-sm-5 {
    width: 100%;
  }


}

/* Tablets (max-width: 768px) */
@media (max-width: 768px) {
  footer .companylist ul {
    margin-bottom: 30px;
  }

  .col-xs-12.newsletter {
    width: 50%;
    margin-top: 20px;
  }

  footer .row .keep-in-touch,
  footer .row .key-information {
    width: 50%
  }

  footer .companylist h5.text-uppercase {
    margin-top: 50px;
  }



  section.team {
    padding: 60px 15px;
  }

  section#contact.contact.inner-pages>.container>.row {
    flex-direction: column-reverse;
  }

  section#contact.contact.inner-pages>.container>.row .col-sm-7,
  section#contact.contact.inner-pages>.container>.row .col-sm-5 {
    width: 100%;
  }

  .blog .col-lg-12.entries,
  .blog .title {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog .entry .blog-content {
    height: auto;
  }

  .about-us2 .img1 {
    float: none !important;
    width: inherit !important;
  }

  .about-us2 .content ul,
  .about-us2 .content ol {
    padding-left: 20px;
  }

  .about-us2 .links-list li a {
    font-size: 14px !important;
  }

  section.team .col-lg-4 .box {
    max-width: 420px;
    margin: auto;
    margin-bottom: 40px;
  }

  footer .companylist ul {
    margin-bottom: 30px;
  }

  .col-xs-12.newsletter {
    margin-bottom: 50px;
  }

  .blog {
    padding: 40px 15px 20px 15px;
  }

  .blog .entry {
    box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  }

  /* Hero Section */
  #hero {
    height: 60vh;
    /* Adjusted height for tablets */
    background-position: top center;
    /* Ensure key part of background is visible */
  }

  #hero h1 {
    font-size: 28px;
    line-height: 34px;
  }

  #hero h2 {
    font-size: 16px;
    line-height: 20px;
  }

  #hero .main-logo img {
    height: 100px !important;
    width: auto !important;
  }

  #hero .main-logo-caption p {
    font-size: 11px;
    padding: 0 15px;
  }

  /* Brands Section */
  .brands {
    padding: 10px 20px;
    /* Minimal padding */
    display: flex;
    flex-wrap: wrap;
    /* Stack boxes vertically */
    justify-content: center;
  }

  .brands .icon-box {
    width: 100%;
    /* Full width for stacking */
    max-width: 300px;
    /* Prevent overly wide boxes */
    margin: 10px auto;
    /* Center boxes */
  }

  .brands .box1,
  .brands .box2,
  .brands .box3,
  .brands .box4 {
    height: 150px;
    /* Smaller height for mobile */
  }

  .navbar-mobile a:hover,
  .navbar-mobile .active,
  .navbar-mobile li:hover>a,
  .navbar-mobile .dropdown ul a:hover,
  .navbar-mobile .dropdown ul .active:hover,
  .navbar-mobile .dropdown ul li:hover>a {
    color: #fff !important;
  }
}

/* Mobile phones (max-width: 576px) */
@media (max-width: 576px) {
  .calculator .image {
    height: auto;
    text-align: center;
  }

  .about iframe {
    height: 360px;
  }

  ol.links-list {
    padding-left: 20px;
  }

  .calculator .image img {
    float: none !important;
    max-width: 100%;
    height: auto !important;
  }

  .col-xs-6,
  .col-sm-6,
  .col-xs-12.newsletter {
    width: 100%;
  }

  .blog .col-lg-12.entries,
  .blog .title {
    padding-left: 0;
    padding-right: 0;
  }

  .blog .entry .blog-content {
    height: auto;
    /* margin-left: -20px;
    margin-right: -20px; */
    margin-bottom: 20px;
  }

  .col-xs-6.keep-in-touch,
  footer .companylist .key-information,
  .col-xs-12.newsletter {
    padding-left: 15px;
  }

  section.about ol {
    padding-left: 20px;
  }

  footer h5 {
    margin-top: 30px;
  }

  .col-xs-12.newsletter {
    margin-bottom: 60px;
  }

  /* Hero Section */
  #hero {
    height: 50vh;
    /* Compact height for mobile */
  }

  #hero .container {
    padding-top: 40px;
  }

  #hero h1 {
    font-size: 24px;
    line-height: 30px;
  }

  #hero h2 {
    font-size: 14px;
    line-height: 18px;
  }

  #hero .main-logo img {
    height: 30px;
  }

  #hero .main-logo-caption p {
    font-size: 10px;
  }

  /* Navigation Menu */
  .navbar-mobile ul {
    padding: 15px;
    /* Add padding for better touch targets */
  }

  .navbar-mobile a,
  .navbar-mobile a:focus {
    font-size: 14px;
    /* Slightly smaller font for mobile */
    padding: 8px 15px;
  }

  /* Brands Section */
  .brands {
    padding: 10px 15px;
  }

  .brands .icon-box {
    max-width: 100%;
    /* Full width for small screens */
  }

  .brands .box1,
  .brands .box2,
  .brands .box3,
  .brands .box4 {
    height: 120px;
    /* Compact height */
    background-size: cover;
  }

  .brands .icon-box a img {
    max-height: 50px;
    /* Smaller images */
  }
}




@media only screen and (max-height: 428px) and (orientation: landscape) {
  /* Your styles here */


  #hero.homebanner {
    width: 100%;
    height: 600px;
    padding-top: 0;
    min-height: 600px;
  }

  #hero {
    height: 360px !important;
    padding-top: 130px;
    min-height: inherit;
  }
}

.table-wrapper {
    max-width: 900px;
    margin: auto;
  }

  table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    background-color: #d7e6f2;
  }

  th, td {
    border: 2px solid #4a8bbf;
    padding: 14px 16px;
    text-align: left;
    vertical-align: top;
    font-size: 15px;
    line-height: 1.5;
  }

  th {
    background-color: #bcd4e6;
    font-weight: bold;
  }

  th:first-child,
  td:first-child {
    width: 22%;
    font-weight: bold;
  }

  td:nth-child(2),
  td:nth-child(3) {
    width: 39%;
  }

  tr:nth-child(even) td {
    background-color: #c9dced;
  }

  .box .icon {
    text-align: center;
    margin: 0 auto;
  }
  .box .icon img {
    height: 100px;
    width: 100px;
  }
  .about-product {
    background: #fff;
  }
  .reports .box{
    margin-bottom: 20px;
  }
  .reports .box img{
    height: 100%;
    width: 100%;
    border: 10px solid #2077b8;
  }
   .reports .box .text {
    text-align: center;
    margin-top: 15px;
   }
   .clients .box img{
    height: 100%;
    width: 100%;
   }
   .about-product h5{
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 20px;
   }
   .products-section a img{
    height: 100%;
    width: 100%;
   }
   .doubled:first-of-type {
    margin-bottom: 3px;
}
.doubled {
    width: 60px;
    margin-left: 0;
    border-color: #e4e4e4;
    border-width: 2px;
}
.doubled:nth-of-type(2) {
    margin-top: 3px;
    margin-left: 10px;
}
.doubled:first-of-type {
    margin-bottom: 3px;
}
.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}
.team-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}
.technical img {
    margin-bottom: 40px;
    height: 583px;
}
.technical .content{
  float: right;
}
.carousel-inner>.item>a>img, .carousel-inner>.item>img, .img-responsive, .thumbnail a>img, .thumbnail>img {
    display: block;
    max-width: 100%;
    height: auto;
}
.products .options h1 {
    margin-top: 20px;
}
.options h1 {
    margin-top: 50px;
    letter-spacing: 0px !important;
    letter-spacing: 5px;
}
.text-uppercase {
    text-transform: uppercase;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    line-height: 1.1;
}
.h1, h1 {
    font-size: 36px;
}
.h1, .h2, .h3, h1, h2, h3 {
    margin-top: 20px;
    margin-bottom: 10px;
}
.options h2 {
    margin-left: 10px;
}
.options p:first-of-type {
    padding-top: 25px;
}
.options p {
    font-size: 16px;
    line-height: 25.6px;
    margin-left: 10px;
    color: #666;
    margin-right: 60px;
}
.lgreen ul li {
    margin-bottom: 25px;
    font-weight: 300;
    line-height: 25px;
}
.technical h5 {
    font-size: 16px;
    color: #333333;
}
.description h3 {
    margin-top: 60px;
    font-size: 24px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    letter-spacing: 2px;
    color: #5a5a5a;
    margin-bottom: 10px;
}
h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    letter-spacing: 2px;
}
 h2 {
    font-size: 30px;
}
.description p {
    font-size: 16px;
}
.technical hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee;
    margin: 1rem 0;
    border: 0;
    border-top: 1px solid;
    opacity: .25;
    display: block;
    margin-block-start: 0.5em;
    margin-block-end: 0.5em;
    margin-inline-start: auto;
    margin-inline-end: auto;
    color: gray;
    unicode-bidi: isolate;
    overflow: hidden;
    border-style: inset;
    border-width: 1px;
}
hr.control {
    width: 100px;
    margin-left: 10px;
    border-color: #212121;
    border-width: 2px;
}
.team-header {
  text-align: center;
  margin-bottom: 60px;
}

.team-header h2 {
  font-size: 42px;
  font-weight: 700;
}

.team-header p {
  max-width: 800px;
  margin: 10px auto 0;
  color: #666;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.team-card {
  text-align: center;
}

.team-card img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  margin-bottom: 20px;
}

.team-card h4 {
  font-size: 26px;
  margin-bottom: 5px;
}

.team-card span {
  display: block;
  color: #777;
  margin-bottom: 15px;
}

.team-card p {
  font-size: 14px;
  color: #555;
  text-align: justify;
  line-height: 1.7;
  margin-bottom: 10px;
}
.green.touch h1 {
    font-family: 'Myriad Pro', sans-serif !important;
    font-size: 45px;
    font-weight: 300;
    color: #fff;
}
.green h5 {
    line-height: 38px;
    font-size: 14px;
    color: #fff;
}
.green img {
    margin-right: 30px;
}
.green img {
    margin-right: 10px;
     margin-left: 0px !important;
    height: 50%;
}
.green h5 {
    margin: 0;
    line-height: 70px;
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.case-stuidies {
  padding: 80px 0;
}
.zigzag-row {
  display: flex;
  align-items: center;
  gap: 40px;
}

.zigzag-row.reverse {
  flex-direction: row-reverse;
}

.zigzag-img img {
  width: 100%;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
  .zigzag-row {
    flex-direction: column;
  }

  .zigzag-row.reverse {
    flex-direction: column;
  }
}
.about-us2.zigzag-section{
    background: url(../img/abtt3.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 120px 80px;
    position: relative;
    z-index: 0;
}

.about-us2.zigzag-section p {
    text-align: justify;
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    z-index: 1000;
}
.about-us.zigzag-section img{
  float: right !important;
}
.technical p.text-uppercase {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #1f1f1f;
}
.technical p strong {
    font-weight: 700;
}
p {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #1f1f1f;
}
.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #002e00 !important;
    overflow-y: auto;
    transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #fff !important;
}
@media (max-width: 786px) {
    #hero .main-logo-caption {
        margin-top: -15px !important;
    }
    .about-us .img-box img {
    height: 100% !important;
    float: left;
}
.about-us.advance {
    padding: 80px 0px 30px 0px !important;
}
.about-us .img-box2 img {
    height: 100% !important;
    float: right;
    margin-bottom: 30px;
}
.about-us .plant-based .content {
    margin-top: 134px !important;
}
.about-us .content h3 {
    font-size: 24px;
    font-weight: 500;
    margin-left: 18px;
}
.product-overview img{
  margin-bottom: 20px;
}
.green.touch h1 a {
    color: #FFF;
    font-size: 31px;
    display: inline-block;
}
.green.touch {
    margin-top: 0;
    margin-bottom: -30px;
}
#hero {
    width: 100%;
    margin-top: 99px !important;
}
.contact {
    margin-top: -14px;
}
.contact .contact-logo {
    height: 90px;
}
.contact .multi-logos{
  height: 100% !important;
  width: 100% !important;
}
}