/* Consulte HTML Template */

/************ TABLE OF CONTENTS ***************
1. Fonts
2. Reset
3. Global
4. Main Header
5. Home Page
6. About Page
7. Services/Solutions Page
8. VWP/Technology Page
9. Patents Page
10. Blog Page
11. Blog Detail Page
12. Contact Page
13. Footer

****************************************** 1. Fonts **********************************************/
/*	
	font-family: 'Libre Baskerville', serif;
	font-family: 'Work Sans', sans-serif;
	font-family: 'Heebo', sans-serif;	
*/

@import url("animate.css");
@import url("owl.css");
@import url("fontawesome.min.css");
@import url("jquery.mCustomScrollbar.min.css");

/*** ========================================= 2. Reset ================================================***/

* {
  margin: 0px;
  padding: 0px;
  border: none;
  outline: none;
}

@font-face {
  font-family: "icofont";
  src: url("../fonts/icofont.eot");
  src: url("../fonts/icofontd41d.eot?#iefix") format("embedded-opentype"),
    url("../fonts/icofont.woff") format("woff"),
    url("../fonts/icofont.ttf") format("truetype"),
    url("../fonts/icofont.svg#icofont") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "simple-line-icons";
  src: url("../fonts/simple-Line-Icons.eot");
  src: url("../fonts/simple-Line-Iconsd41d.eot?#iefix")
      format("embedded-opentype"),
    url("../fonts/simple-Line-Icons.woff") format("woff"),
    url("../fonts/simple-Line-Icons.ttf") format("truetype"),
    url("../fonts/simple-Line-Icons.svg#simple-Line-Icons") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "themify";
  src: url("../fonts/themify9f24.eot?-fvbane");
  src: url("../fonts/themifyd41d.eot?#iefix-fvbane") format("embedded-opentype"),
    url("../fonts/themify9f24.woff?-fvbane") format("woff"),
    url("../fonts/themify9f24.ttf?-fvbane") format("truetype"),
    url("../fonts/themify9f24.svg?-fvbane#themify") format("svg");
  font-weight: normal;
  font-style: normal;
}

/*** ================================================= 3. Global Settings =============================================***/

body {
  font-family: "Roboto", sans-serif !important;
  font-size: 17px;
  color: #000000;
  line-height: 1.7em;
  font-weight: 400;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  overflow-x: hidden;
}

.bordered-layout .page-wrapper {
  padding: 0px 50px 0px;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #006600;
}

.logo-text-span {
  color: #006600;
}

button,
a:hover,
a:focus,
a:visited {
  text-decoration: none;
  outline: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.6em;
  font-family: "Work Sans", sans-serif;
}

.pull-left {
  float: left;
}

.pull-right {
  float: right;
}

/* Typography */

h1 {
  font-size: 60px;
}

h2 {
  font-size: 46px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 1.5rem;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

input,
button,
select,
textarea {
}

textarea {
  overflow: hidden;
}

p {
  position: relative;
  line-height: 1.8em;
}

.auto-container {
  position: static;
  max-width: 1200px;
  padding: 0px 15px;
  margin: 0 auto;
}

.medium-container {
  max-width: 850px;
}

.page-wrapper {
  position: relative;
  margin: 0 auto;
  width: 100%;
  min-width: 300px;
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

img {
  display: inline-block;
  max-width: 100%;
}

.theme-btn {
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.centered {
  text-align: center;
}

/*Btn Style One*/

.btn-style-one {
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 1;
  color: #ffffff;
  padding: 20px 30px;
  font-weight: 600;
  overflow: hidden;
  border-radius: 2px;
  background-color: #006600;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
}

.btn-style-one:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #262626;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
}

.btn-style-one i {
  position: relative;
  top: 1px;
  margin-left: 4px;
}

.btn-style-one .txt {
  position: relative;
  z-index: 1;
}

.btn-style-one:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn-style-one:hover {
  color: #ffffff;
}

/* Btn Style Two */

.btn-style-two {
  position: relative;
  display: inline-block;
  font-size: 14px;
  line-height: 30px;
  color: #006600;
  padding: 9px 24px;
  font-weight: 700;
  overflow: hidden;
  border-radius: 2px;
  letter-spacing: 1px;
  background-color: #ffffff;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
}

.btn-style-two:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  background-color: #262626;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: scale(0.2, 1);
  transform: scale(0.2, 1);
}

.btn-style-two i {
  position: relative;
  top: 1px;
  margin-left: 4px;
}

.btn-style-two .txt {
  position: relative;
  z-index: 1;
}

.btn-style-two:hover::before {
  opacity: 1;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
}

.btn-style-two:hover {
  color: #ffffff;
}

.theme_color {
  color: #006600;
}

img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/*** ================ Scroll To Top style ======================***/

.scroll-to-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
  line-height: 60px;
  text-align: center;
  z-index: 100;
  cursor: pointer;
  /* background: #0a0a0a; */
  background: #006600;
  display: none;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.scroll-to-top:hover {
  color: #ffffff;
  background: #006600;
}

/*** ============== Section Title ==========***/

.sec-title {
  position: relative;
  margin-bottom: 30px;
}

.sec-title .title {
  position: relative;
  color: #666666;
  font-size: 17px;
  line-height: 1.6em;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.sec-title h2 {
  position: relative;
  color: #000000;
  font-weight: 300;
  line-height: 1.3em;
  margin-top: 5px;
}

.sec-title h2 span {
  position: relative;
  color: #006600;
  font-weight: 600;
}

.sec-title .text {
  position: relative;
  color: #666666;
  font-size: 18px;
  line-height: 1.8em;
  margin-top: 20px;
}

.sec-title.centered {
  text-align: center !important;
}

.sec-title.light .title {
  color: #006600;
  background-color: #ffffff;
}

.sec-title.light h2 {
  color: #ffffff;
}

.page-title-section {
  position: relative;
  padding: 50px 0px 0px;
}

.page-title-section h2 {
  position: relative;
  color: #000000;
  font-weight: 300;
  line-height: 1.3em;
  margin-top: 30px;
}

.page-title-section h2 span {
  position: relative;
  font-weight: 600;
  color: #006600;
}

.page-title-section.style-two h2 {
  font-weight: 600;
  font-size: 36px;
}

/* Work Details CSS */
.mb-n30 {
  margin-bottom: -30px;
}

.mt-lg-30 {
  margin-top: 30px;
}

.mt-lg-100 {
  margin-top: 100px;
}

.mt-lg-70 {
  margin-top: 70px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mtb-30 {
  margin: 30px 0;
}

.section-padding-top-70 {
  padding-top: 70px;
}

/*** =================================================== 4. Main Header style =========================================***/

.main-header {
  position: absolute;
  z-index: 999;
  width: 100%;
  -ms-animation-duration: 500ms;
  -moz-animation-duration: 500ms;
  -op-animation-duration: 500ms;
  -webkit-animation-duration: 500ms;
  animation-duration: 500ms;
}

.main-header.style-two {
  position: relative;
}

.main-header.style-three {
  position: relative;
  border-bottom: 1px solid #d9d9d9;
}

/* Header Top */
.header-top {
  background-color: #006600;
}

.main-header .header-top {
  position: relative;
}

.main-header .header-top .inner-container {
  position: relative;
}

.main-header .header-top .top-left {
  position: relative;
  float: left;
  padding: 10px 0px;
  padding-right: 50px;
}

.main-header .header-top .top-center {
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.3rem 0;
}

.main-header .header-top .info-list {
  position: relative;
}

.main-header .header-top .info-list li {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  margin-right: 45px;
  display: inline-block;
}

.main-header .header-top .info-list li:last-child {
  margin-right: 0px;
}

.main-header .header-top .info-list li .icon {
  position: absolute;
  left: 0px;
  top: 1px;
  color: #ffffff;
  font-size: 16px;
  line-height: 1em;
}

.main-header .header-top .info-list li a {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  padding-left: 25px;
  font-weight: 400;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .header-top .info-list li a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.main-header .header-top .top-right {
  position: relative;
  padding: 10px 0px;
}

.main-header .header-top .top-right .social-box {
  position: relative;
}

.main-header .header-top .top-right .social-box li {
  position: relative;
  margin-left: 14px;
  display: inline-block;
}

.main-header .header-top .top-right .social-box li.share {
  position: relative;
  color: #ffffff;
  font-size: 14px;
}

.main-header .header-top .top-right .social-box li a {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .header-top .top-right .social-box li a:hover {
  color: #ffffff;
}

.main-header .main-box {
  position: relative;
  padding: 0px 0px;
  left: 0px;
  top: 0px;
  width: 100%;
  background: none;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-header .header-upper {
  position: relative;
  z-index: 1;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  background: #ffffff;
}

.main-header .header-upper .inner-container {
  position: relative;
}

.main-header .header-upper .outer-box .nav-toggler {
  position: relative;
  font-size: 28px;
  color: #ff9600;
  cursor: pointer;
  display: inline-block;
}

/* Sticky Header */

.sticky-header {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 0px 0px;
  background: #222222;
  z-index: 0;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sticky-header .logo {
  padding: 8px 0px 8px;
}

.sticky-header .main-menu .navigation > li > a {
  padding: 23px 0px !important;
  color: #ffffff !important;
}

.sticky-header .main-menu .navigation > li > a:after {
  display: none;
}

.main-header .nav-outer {
  position: relative;
  /* padding-left: 100px; */
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .header-upper .logo-box {
  position: relative;
  z-index: 10;
  padding: 9px 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .header-upper .logo-box .logo {
  position: relative;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-header .header-upper .outer-box {
  /* position: absolute; */
  right: 0px;
  margin-left: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu {
  position: relative;
  float: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navbar-collapse {
  padding: 0px;
  display: block;
}

.main-menu .navigation {
  position: static;
  margin: 0px;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-menu .navigation > li {
  position: relative;
  float: none;
  display: inline-block;
  /* margin-right: 45px; */
  text-align: left;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li:last-child {
  margin-right: 0px;
}

.main-header .header-upper .upper-right {
  position: relative;
}

.main-menu .navigation > li > a,
.main-header.fixed-header .main-menu .navigation > li > a {
  position: relative;
  display: block;
  color: #333;
  text-align: center;
  line-height: 30px;
  text-transform: uppercase;
  letter-spacing: 0px;
  opacity: 1;
  font-weight: 600;
  padding: 20px 0px;
  font-size: 16px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > ul > li.current > a,
.main-menu .navigation > li.current > a,
.main-header.fixed-header .main-menu .navigation > li.current > a,
.main-header.fixed-header .main-menu .navigation > li:hover > a {
  color: #006600;
  font-weight: bold;
  /*color:#ffffff;*/
}

.main-menu .navigation > li:hover > a,
.main-menu .navigation > li.current > a,
.main-header.light-version .main-menu .navigation > li:hover > a,
.main-header.light-version .main-menu .navigation > li.current > a {
  opacity: 1;
}

.main-menu .navigation > li > ul {
  position: absolute;
  left: -30px;
  top: 100%;
  width: 230px;
  z-index: 100;
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  padding: 20px 10px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.main-menu .navigation > li > ul.from-right {
  left: auto !important;
  right: -30px !important;
}

.main-menu .navigation > li > ul > li {
  position: relative;
  width: 100%;
}

.main-menu .navigation > li > ul > li > a {
  position: relative;
  display: block;
  padding: 6px 10px;
  line-height: 24px;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  color: #222222;
  padding-left: 10px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > a:before {
  position: absolute;
  top: -6px;
  left: 8px;
  color: transparent;
  content: ".";
  text-shadow: 0 0 transparent;
  font-size: 2em;
  line-height: 1em;
  -webkit-transition: text-shadow 0.3s, color 0.3s;
  -moz-transition: text-shadow 0.3s, color 0.3s;
  transition: text-shadow 0.3s, color 0.3s;
  pointer-events: none;
  animation: opacitychange 1s ease-in-out infinite;
}

.main-menu .navigation > li > ul > li:hover > a::before {
  opacity: 1;
  color: #000000;
  text-shadow: 8px 0 #006600, -8px 0 #006600;
}

.main-menu .navigation > li > ul > li:hover > a {
  color: #006600;
  padding-left: 30px;
}

.main-menu .navigation > li > ul > li.dropdown > a:after {
  font-family: "Font Awesome 5 Free";
  content: "\f105";
  position: absolute;
  right: 10px;
  top: 10px;
  width: 10px;
  height: 20px;
  display: block;
  color: #253d4a;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  z-index: 5;
  font-weight: 800;
}

.main-menu .navigation > li > ul > li.dropdown:hover > a:after {
  color: #222222;
}

.main-menu .navigation > li > ul > li > ul {
  position: absolute;
  left: 120%;
  top: 0%;
  width: 230px;
  z-index: 100;
  display: none;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  padding: 20px 15px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.main-menu .navigation > li > ul > li > ul.from-right {
  left: auto;
  right: 0px;
}

.main-menu .navigation > li > ul > li > ul > li {
  position: relative;
  width: 100%;
}

.main-menu .navigation > li > ul > li > ul > li:last-child {
}

.main-menu .navigation > li > ul > li > ul > li > a {
  position: relative;
  display: block;
  padding: 6px 18px;
  line-height: 24px;
  font-weight: 500;
  font-size: 15px;
  text-transform: capitalize;
  color: #222222;
  padding-left: 10px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li > a:before {
  position: absolute;
  top: -6px;
  left: 8px;
  color: transparent;
  content: ".";
  text-shadow: 0 0 transparent;
  font-size: 2em;
  line-height: 1em;
  -webkit-transition: text-shadow 0.3s, color 0.3s;
  -moz-transition: text-shadow 0.3s, color 0.3s;
  transition: text-shadow 0.3s, color 0.3s;
  pointer-events: none;
  animation: opacitychange 1s ease-in-out infinite;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a::before {
  opacity: 1;
  color: #000000;
  text-shadow: 8px 0 #006600, -8px 0 #006600;
}

.main-menu .navigation > li > ul > li > ul > li:hover > a {
  color: #006600;
  padding-left: 30px;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown > a:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  right: 10px;
  top: 11px;
  width: 10px;
  height: 20px;
  display: block;
  color: #272727;
  line-height: 20px;
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  z-index: 5;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown:hover > a:after {
  color: #ffffff;
}

.main-menu .navigation > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 100%;
  left: 0px;
}

.main-menu .navigation > li.dropdown:hover > ul.from-right {
  right: 0px !important;
}

.main-menu .navigation li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  top: 0;
  left: 107%;
  transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
}

.main-menu .navbar-collapse > ul li.dropdown .dropdown-btn {
  position: absolute;
  right: 10px;
  top: 6px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #ffffff;
  line-height: 28px;
  border: 1px solid #ffffff;
  background-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: none;
}

.main-header .header-upper .outer-box .social-icon-one {
  position: relative;
  float: left;
}

.main-header.fixed-header .header-upper {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 9999;
  width: 100%;
  padding-top: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-header .header-upper .outer-box .sidebar-btn {
  position: relative;
  width: 52px;
  height: 52px;
  float: left;
  color: #ffffff;
  font-size: 18px;
  margin-left: 14px;
  cursor: pointer;
  line-height: 52px;
  text-align: center;
  border-radius: 50px;
  background-color: #05db56;
}

.main-menu .navigation > li > ul > li > ul > li > ul {
  position: absolute;
  left: 100%;
  top: 100%;
  width: 210px;
  z-index: 100;
  display: none;
  opacity: 0;
  text-align: left;
  visibility: hidden;
  transition: all 900ms ease;
  -moz-transition: all 900ms ease;
  -webkit-transition: all 900ms ease;
  -ms-transition: all 900ms ease;
  -o-transition: all 900ms ease;
  padding: 0px 0px;
  background-color: #1e1e1e;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.main-menu .navigation > li > ul > li > ul > li > ul > li {
  position: relative;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-menu .navigation > li > ul > li > ul > li > ul > li > a {
  position: relative;
  padding: 10px 18px;
  display: block;
  line-height: 20px;
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-menu .navigation > li > ul > li > ul > li.dropdown:hover > ul {
  visibility: visible;
  opacity: 1;
  border-top: 0px !important;
  -moz-transform: rotateX(0deg);
  -webkit-transform: rotateX(0deg);
  -ms-transform: rotateX(0deg);
  -o-transform: rotateX(0deg);
  transform: rotateX(0deg);
}

.main-menu .navigation > li > ul > li > ul > li > ul > li > a:hover {
  background-color: #006600;
  color: #ffffff;
}

.main-header .header-upper .outer-box .menu-toggler {
  position: relative;
  float: right;
  cursor: pointer;
  color: #ffffff;
  font-size: 28px;
  margin-left: 30px;
  padding-left: 30px;
}

.main-header .header-upper .outer-box .menu-toggler:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 5px;
  width: 1px;
  height: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.main-header .header-upper .inner-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.main-header .header-upper .logo-box {
  display: flex;
  justify-content: center;
  max-width: 5rem;
  align-items: center;
}

/***  =============== Mobile Menu =========***/

.main-header .mobile-nav-toggler {
  position: relative;
  float: right;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  color: #222222;
  display: none;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  width: 300px;
  padding-right: 30px;
  max-width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 999999;
}

.mobile-menu .nav-logo {
  position: relative;
  padding: 20px 20px;
  text-align: left;
}

.mobile-menu .nav-logo img {
  max-width: 80px;
}

.mobile-menu-visible {
  overflow: hidden;
}

.mobile-menu-visible .mobile-menu {
  opacity: 1;
  visibility: visible;
}

.mobile-menu .menu-backdrop {
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.9);
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-backdrop {
  display: none;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
  -ms-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .menu-box {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  max-height: 100%;
  overflow-y: auto;
  background: #ffffff;
  padding: 0px 0px;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  border-radius: 0px;
  -webkit-transform: translateX(101%);
  -ms-transform: translateX(101%);
  transform: translateX(101%);
}

.mobile-menu-visible .mobile-menu .menu-box {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.7s ease 500ms;
  -moz-transition: all 0.7s ease 500ms;
  -ms-transition: all 0.7s ease 500ms;
  -o-transition: all 0.7s ease 500ms;
  transition: all 0.7s ease 500ms;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.mobile-menu .close-btn {
  position: absolute;
  right: 10px;
  top: 34px;
  line-height: 30px;
  width: 30px;
  text-align: center;
  font-size: 24px;
  color: #000000;
  cursor: pointer;
  z-index: 10;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  /* -webkit-transform: translateY(-50px);
  -ms-transform: translateY(-50px);
  transform: translateY(-50px); */
}

.mobile-menu-visible .mobile-menu .close-btn {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

.mobile-menu .close-btn:hover {
  opacity: 0.5;
}

.mobile-menu .navigation {
  position: relative;
  display: block;
  width: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li {
  position: relative;
  display: block;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li > ul > li:last-child {
  border-bottom: none;
}

.mobile-menu .navigation li > ul > li:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu .navigation li > a {
  position: relative;
  display: block;
  line-height: 24px;
  padding: 14px 20px;
  font-size: 15px;
  color: #404040;
  font-weight: 600;
  text-transform: uppercase;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.mobile-menu .navigation li:hover > a,
.mobile-menu .navigation li.current > a {
  color: #006600;
}

.mobile-menu .navigation li.dropdown .dropdown-btn {
  position: absolute;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 16px;
  line-height: 52px;
  color: #404040;
  cursor: pointer;
  z-index: 5;
}

.mobile-menu .navigation li.dropdown .dropdown-btn span {
  position: absolute;
  right: 0px;
  top: 3px;
  height: 44px;
  width: 50px;
  line-height: 44px;
}

.mobile-menu .navigation li.dropdown .dropdown-btn span:after {
  content: "";
  position: absolute;
  left: 0px;
  top: 10px;
  width: 1px;
  height: 24px;
  border-left: 1px solid rgba(0, 0, 0, 0.1);
}

/* .mobile-menu .navigation li > ul,
.mobile-menu .navigation li > ul > li > ul {
  display: none;
} */
ul.dropdown-menu {
  position: relative;
  background: #d1d1d13d;
  padding: 0;
  border: 0;
  margin: 0 auto;
  margin-left: 2em;
  width: 90%;
  border: 1px solid #ddd;
  border-top: 0;
}

.sticky-header .navbar-header {
  display: none;
}

.sticky-header .mobile-nav-toggler {
  display: none;
}

/*** ============================================= 5. Home Page  ==================================================***/

.banner-section {
  position: relative;
  background-color: #e7ecef;
}

.banner-section .mouse-btn-down {
  position: absolute;
  left: 50%;
  margin-left: -20px;
  bottom: 20px;
  width: 30px;
  height: 68px;
  cursor: pointer;
  display: block;
  z-index: 1;
  cursor: pointer;
}

@keyframes move {
  25% {
    opacity: 1;
  }

  33% {
    opacity: 1;
    transform: translateY(30px);
  }

  67% {
    opacity: 1;
    transform: translateY(40px);
  }

  100% {
    opacity: 0;
    transform: translateY(55px) scale3d(0.5, 0.5, 0.5);
  }
}

@keyframes pulse {
  to {
    opacity: 1;
  }
}

.banner-section .slide {
  position: relative;
  overflow: hidden;
  height: 600px;
  /*padding-top: 160px;*/
  background-size: cover;
  background-position: center center;
  display: flex;
  align-items: center;
}

.banner-section .content-column {
  position: relative;
}

.banner-section .content-column .inner-column {
  position: relative;
  margin-right: -60px;
}

.banner-section .content-column .title {
  position: relative;
  color: #ffffff;
  font-weight: 500;
  line-height: 1em;
  opacity: 0;
  font-size: 20px;
  letter-spacing: 2px;
  transform: scaleY(0);
  transform-origin: top;
  text-transform: uppercase;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-section .active .content-column .title {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 300ms;
  -moz-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  transition-delay: 300ms;
}

.banner-section .content-column h1 {
  position: relative;
  color: #ffffff;
  font-weight: 600;
  line-height: 1.1em;
  opacity: 0;
  margin: 20px 0;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-section .content-column h1 span {
  position: relative;
  font-weight: 600;
  color: #ffffff;
}

.banner-section .active .content-column h1 {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 600ms;
  -moz-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  transition-delay: 600ms;
}

.banner-section .content-column .text {
  position: relative;
  color: #666666;
  font-weight: 400;
  line-height: 1.7em;
  opacity: 0;
  font-size: 18px;
  margin-top: 50px;
  margin-bottom: 75px;
  transform: scaleY(0);
  transform-origin: top;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-section .active .content-column .text {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 900ms;
  -moz-transition-delay: 900ms;
  -ms-transition-delay: 900ms;
  -o-transition-delay: 900ms;
  transition-delay: 900ms;
}

.banner-section .content-column .btn-box {
  position: relative;
  transform: scaleY(0);
  transform-origin: top;
  text-transform: uppercase;
  -webkit-transition: all 1000ms ease;
  -moz-transition: all 100ms ease;
  -ms-transition: all 1000ms ease;
  -o-transition: all 1000ms ease;
  transition: all 1000ms ease;
}

.banner-section .active .content-column .btn-box {
  opacity: 1;
  transform: scaleY(1);
  -webkit-transition-delay: 1200ms;
  -moz-transition-delay: 1200ms;
  -ms-transition-delay: 1200ms;
  -o-transition-delay: 1200ms;
  transition-delay: 1200ms;
}

.banner-section .owl-dots,
.project-section .owl-dots {
  display: none;
}

.banner-section .owl-nav,
.project-section .owl-nav {
  position: absolute;
  left: 0px;
  top: 50%;
  z-index: 1;
  width: 100%;
  opacity: 0;
  margin-top: -30px;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.banner-section .owl-nav .owl-prev,
.project-section .owl-nav .owl-prev {
  position: absolute;
  left: 20px;
  width: 60px;
  height: 60px;
  color: #ffffff;
  line-height: 62px;
  font-size: 24px;
  text-align: center;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: rgba(0, 0, 0, 0.1);
}

.banner-section .owl-nav .owl-next,
.project-section .owl-nav .owl-next {
  position: absolute;
  right: 20px;
  color: #ffffff;
  font-size: 24px;
  width: 60px;
  height: 60px;
  color: #ffffff;
  line-height: 62px;
  text-align: center;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  background-color: rgba(0, 0, 0, 0.1);
}

.banner-section .owl-nav .owl-prev:hover,
.project-section .owl-nav .owl-prev:hover,
.banner-section .owl-nav .owl-next:hover,
.project-section .owl-nav .owl-next:hover {
  color: #ffffff;
  background-color: #006600;
}

.banner-section:hover .owl-nav,
.project-section:hover .owl-nav {
  opacity: 1;
}

/***==============  Reputation Section =================***/

.reputation-section {
  position: relative;
  padding-top: 120px;
  background-color: #f8f6f7;
}

.reputation-section .image-column {
  position: relative;
}

.reputation-section .image-column .inner-column {
  position: relative;
}

.reputation-section .content-column {
  position: relative;
  margin-bottom: 40px;
}

/* .reputation-section .content-column .inner-column {
  position: relative;
  padding-left: 70px;
} */

.reputation-section .content-column .blocks-outer {
  position: relative;
  margin-top: 80px;
}

.reputation-block {
  position: relative;
  margin-bottom: 28px;
}

.reputation-block .inner-box {
  position: relative;
}

.reputation-block .inner-box h5 {
  position: relative;
  color: #000000;
  font-weight: 600;
  line-height: 1.3em;
  display: flex;
  align-items: center;
}

.reputation-block .inner-box .text {
  position: relative;
  color: #666666;
  font-size: 16px;
  line-height: 1.9em;
  margin-top: 15px;
}

.reputation-block i {
  color: #01940a;
  font-size: 35px;
}

.reputation-block span.icon {
  padding: 0 15px 0 0;
}

.reputation-section-two {
  position: relative;
  padding: 80px 0px;
  /* background-color: #f8f6f7; */
}

.reputation-section-two .content-column {
  position: relative;
  /*margin-bottom: 40px;*/
}

.reputation-section-two .content-column .inner-column {
  position: relative;
}

/*.reputation-section-two .content-column .sec-title {
  margin-bottom: 90px;
}*/

.reputation-section-two .form-column {
  position: relative;
  margin-bottom: 40px;
}

.reputation-section-two .form-column .inner-column {
  position: relative;
}

.reputation-section-two .form-column .form-boxed {
  position: relative;
  border-radius: 3px;
  padding: 55px 45px 0px;
  border: 1px solid #c0c8cd;
  background-color: #ffffff;
}

.reputation-section-two .form-column h5 {
  position: relative;
  color: #006600;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 35px;
  text-transform: uppercase;
}

/* .reputation-section-two.style-two .content-column .inner-column {
  padding-left: 170px;
} */

/*** ======= Project Section =====***/

.project-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0px;
}

.project-section .sec-title .cases {
  position: relative;
  color: #000000;
  font-size: 14px;
  margin-top: 60px;
  display: inline-block;
  text-transform: uppercase;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.project-section .sec-title .cases span {
  position: relative;
  font-size: 12px;
}

.project-section .sec-title .cases:hover {
  color: #006600;
}

.project-section .outer-container {
  position: relative;
}

.project-section .column {
  padding: 0px 2px;
}

.project-section .column .row {
  margin: 0px -2px;
}

.project-section .inner-column {
  padding: 0px 2px;
}

.gallery-block {
  position: relative;
  margin-bottom: 5px;
  margin-top: 35px;
}

.gallery-block .inner-box {
  position: relative;
  overflow: hidden;
}

.gallery-block .inner-box .image {
  position: relative;
  margin-bottom: 0px;
  transition: all 500ms ease;
}

.gallery-block .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
  filter: brightness(90%);
  max-height: 330px;
}

.gallery-block .inner-box .image:hover img {
  transform: scale(1.1);
  filter: brightness(120%);
}

.gallery-block .inner-box .image .overlay-box {
  position: absolute;
  left: 0px;
  bottom: -120px;
  /* bottom: 0px; */
  right: 0px;
  /* padding: 22px 30px; */
  padding: 20px;
  background-color: #006600;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.gallery-block .inner-box:hover .image .overlay-box {
  bottom: 0px;
}

.gallery-block .inner-box .image .overlay-box .overlay-inner {
  position: relative;
}

.gallery-block .inner-box .image .overlay-box .overlay-inner h3 {
  position: relative;
  font-weight: 600;
  line-height: 1.3em;
}

.gallery-block .inner-box .image .overlay-box .overlay-inner h3 a {
  position: relative;
  color: #ffffff;
}

.gallery-block .inner-box .image .overlay-box .overlay-inner .designation {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  margin-top: 4px;
}

.gallery-block .inner-box .image .overlay-box .overlay-inner .arrow {
  position: absolute;
  right: -10px;
  top: 5px;
  line-height: 1em;
  color: #ffffff;
  font-size: 60px;
}

/*** ========= Testimonial Section =========***/
.testimonial-section,
.whychoose-section,
.visionmission-section {
  position: relative;
  padding: 80px 0;
}

.testimonial-section.style-two {
  /*padding-top: 0px;*/
}

.testimonial-section.style-two .inner-container {
  /*padding-top: 100px;*/
  /*border-top: 1px solid #d9d9d9;*/
}

/*.testimonial-section .sec-title {
  margin-bottom: 70px;
}*/

.testimonial-section .owl-nav {
  position: absolute;
  right: -10px;
  top: -120px;
}

.testimonial-section .owl-nav .owl-prev,
.testimonial-section .owl-nav .owl-next {
  position: relative;
  color: #666666;
  font-size: 48px;
  margin-left: 0px;
  font-weight: 300;
  display: inline-block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.testimonial-section .owl-nav .owl-prev:hover,
.testimonial-section .owl-nav .owl-next:hover {
  color: #000000;
}

.testimonial-block,
.whychoose-block {
  position: relative;
  margin-bottom: 30px;
  text-align: center;
}

.testimonial-block .inner-box,
.whychoose-section .inner-box {
  position: relative;
  /* padding: 45px 45px;
  border: 1px solid #e1e1e1;*/
  height: 100%;
  transition: all 500ms ease;
  width: 100%;
  background: #ffffff;
  border-radius: 10px;
  box-shadow: -1px 2px 14px #f6efef;
  overflow: hidden;
}

/*.testimonial-block:hover .inner-box{
  background-color: #ffffff;
}*/

/* .testimonial-block .inner-box .image2 {
  display: flex;
  flex-direction: column;
} */

/* .testimonial-block .inner-box .image2 image {
  margin: 0 auto;
  height: 128px;
  width: 128px;
} */

.testimonial-block .inner-box:before,
.visionmission-block .inner-box:before {
  position: absolute;
  content: "";
  left: 0px;
  top: 0px;
  right: 0px;
  height: 5px;
  opacity: 0;
  transform: scale(0.3, 1);
  background-color: #006600;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

/*.testimonial-block .inner-box:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}*/

.testimonial-block .inner-box:hover {
  box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

/* .testimonial-block:hover .image img {
	transform: scale(1.1);
} */

.testimonial-block .inner-box .quote,
.visionmission-block .inner-box .quote {
  position: relative;
  font-size: 32px;
  color: #006600;
  line-height: 1em;
  text-align: right;
  display: flex;
  justify-content: end;
}

.testimonial-block .inner-box .author,
.visionmission-block .inner-box .author {
  position: relative;
  color: #000000;
  font-size: 18px;
  font-weight: 600;
  margin-top: 4px;
}

.testimonial-block .inner-box .author span {
  position: relative;
  font-weight: 400;
  color: #666666;
  font-size: 14px;
}

.testimonial-block .inner-box .text {
  position: relative;
  margin: 20px;
  /*display: -webkit-box;
   -webkit-box-orient: vertical;
   -webkit-line-clamp: 5;
   overflow: hidden;*/
}

.whychoose-section .text {
  position: relative;
  margin: 10px;
}

.testimonial-block .inner-box .text p,
.whychoose-section .text p {
  color: #666666;
  font-size: 16px;
  line-height: 1.8em;
}

.testimonial-block .inner-box .text h4 {
  font-weight: 700;
  margin-bottom: 1rem;
}

.testimonial-block .inner-box .image img {
  margin-bottom: 10px;
  width: 100%;
  max-height: 250px;
  /* height: 100%; */
  object-fit: cover;
  transition: all 500ms ease;
}

.whychoose-block .inner-box .image2 {
  padding-top: 10px;
}

.whychoose-block .inner-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);
}

/*** ================================================ 6. About Page ===================================================***/

.about-section,
.patents-section,
.serviceoverview-section,
.vwp-section,
.products-section,
.vwpabout-section,
.soilimprover-section,
.bioethanol-section,
.environmental-section,
.advantage-section,
.specification-section,
.management-section,
.limitation-section,
.overview-section,
.endorsements-section,
.vwpprocess-section,  
.managing-section {
    position: relative;
    padding: 80px 0;
}

.about-section .inner-container {
  position: relative;
  padding-bottom: 12px;
  /*border-bottom: 1px solid #c0c8cd;*/
}

.about-image.leftside {
  display: flex;
  margin-left: -90px;
  align-items: center;
  justify-content: center;
}

.about-image.leftside .about-inner-image img {
  transition: all 500ms ease;
}

.about-image.leftside .about-inner-image:hover img {
  transform: rotate(5deg);
  /* transform: translateY(-8px) scale(1.05);*/
  /* box-shadow: 0px 10px 25px rgba(0, 0, 0, 0.3); */
}

.about-image.rightside {
  display: flex;
  margin-right: -90px;
  align-items: center;
  justify-content: center;
}

.products-section .auto-container {
  padding: 80px 0;
  /* border-top: 1px solid #d9d9d9;*/
}

.max-width-470 {
  max-width: 470px;
}

.mt-110 {
  margin-top: 110px !important;
}

.content-column {
  position: relative;
  /*margin-bottom: 40px;*/
}

.content-column .inner-column {
  position: relative;
  padding-top: 3px;
  /* padding-left: 100px; */
}

/*.content-column .sec-title {
  margin-bottom: 25px;
}*/

.content-column .text {
  position: relative;
  margin-bottom: 25px;
}

.content-column .text p {
  position: relative;
  color: #666666;
  font-size: 16px;
  line-height: 2em;
  margin-bottom: 20px;
}

.content p {
  font-size: 15px;
  line-height: 2em;
}

.content-column .text p:last-child {
  margin-bottom: 0px;
}

.content-column .text ul {
  padding-left: 2rem;
}

.content-column .text ul li {
  list-style: disc;
  margin-bottom: 10px;
}

.about-section .content-column .signature {
  position: relative;
  font-size: 30px;
  font-weight: 400;
  font-family: "Sacramento", cursive;
}

.about-section .content-column .signature span {
  position: relative;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
}

.endorsements-section .testimonial {
  background: #f8f9fa;
  /* Light gray background */
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #006600;
  /* Blue left border for emphasis */
  border-radius: 5px;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
  transition: 500ms all ease-in-out;
}

.endorsements-section .testimonial:hover {
  box-shadow: 0 10px 10px 0px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.endorsements-section .testimonial blockquote {
  font-size: 18px;
  font-style: italic;
  color: #333;
  margin: 0 0 10px 0;
  padding-left: 10px;
}

.endorsements-section .testimonial cite {
  font-size: 16px;
  font-weight: bold;
  display: block;
  color: #006600;
  text-align: right;
}

.about-section-two {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}

.about-section-two .inner-container {
  position: relative;
}

.about-section-two .image-column {
  position: relative;
}

.about-section-two .image-column .inner-column {
  position: relative;
  margin-left: -80px;
  padding-right: 70px;
}

.about-section-two .content-column {
  position: relative;
  margin-bottom: 40px;
}

.about-section-two .content-column .inner-column {
  position: relative;
  padding-top: 20px;
}

/*.about-section-two .content-column .sec-title {
  margin-bottom: 25px;
}*/

.about-section-two .content-column .text {
  position: relative;
  /* margin-bottom: 75px;*/
}

.about-section-two .content-column .text p {
  position: relative;
  color: #666666;
  font-size: 16px;
  line-height: 2em;
  margin-bottom: 20px;
}

.about-section-two .content-column .text p:last-child {
  margin-bottom: 0px;
}

.about-section-two .content-column .signature {
  position: relative;
  font-size: 30px;
  font-family: "Sacramento", cursive;
  font-weight: 400;
}

.about-section-two .content-column .signature span {
  position: relative;
  font-weight: 600;
  color: #000000;
  font-size: 14px;
  display: block;
  margin-top: 10px;
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
}

/*** ========== VisionMission Section ====== ***/

.visionmission-block .inner-box {
  position: relative;
  padding: 45px 45px;
  border: 1px solid #e1e1e1;
  height: 100%;
  background: #ffffff;
}

.visionmission-block .inner-box:hover::before {
  opacity: 1;
  transform: scale(1, 1);
}

.visionmission-block .inner-box .text {
  position: relative;
  color: #666666;
  font-size: 16px;
  line-height: 1.8em;
  margin-top: 20px;
}

/*** ================================================ 7. Services/Solutions Page ===========================================***/

.section-padding {
  padding: 30px 0 !important;
}

.services-section {
  position: relative;
  padding: 80px 0px;
}

.servicesSticky {
  position: sticky;
  top: 98px;
  background: #ffffff !important;
  z-index: 1;
}

.services-section .inner-container {
  position: relative;
  border: 1px solid #ebebeb;
  border-bottom: 0;
}

.services-section .inner-container .service-block {
  border-right: 1px solid #e3e3e3;
  border-bottom: 1px solid #ebebeb;
}

.services-section .inner-container .service-block:nth-child(4n + 0) {
  border-right: none;
}

.service-block {
  position: relative;
}

.service-block .inner-box {
  position: relative;
  padding: 45px 25px 45px 35px;
  border-top: 4px solid transparent;
  height: 100%;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.service-block.style-two {
  margin-bottom: 30px;
}

.service-block.style-two .inner-box {
  border: 1px solid #ebebeb;
}

.service-block.style-two .inner-box h5 {
  font-size: 18px;
}

.service-block.style-two .inner-box .text {
  margin-bottom: 0px;
}

.service-block .inner-box:hover {
  border-color: #006600;
  background-color: #f2f5f6;
}

.service-block .inner-box .icon-box {
  position: relative;
  line-height: 1em;
  font-size: 46px;
  color: #006600;
  display: inline-block;
  transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.service-block .inner-box:hover .icon-box {
  -webkit-transform: scale(-1) rotate(180deg);
  -moz-transform: scale(-1) rotate(180deg);
  -ms-transform: scale(-1) rotate(180deg);
  -o-transform: scale(-1) rotate(180deg);
  transform: scale(-1) rotate(180deg);
}

.service-block .inner-box h5 {
  position: relative;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.service-block .inner-box h5 a {
  position: relative;
  font-weight: 600;
  color: #010101;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.service-block .inner-box h5 a:hover {
  color: #006600;
}

.service-block .inner-box .text {
  position: relative;
  color: #666666;
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 20px;
}

.service-block .inner-box .read-more {
  position: relative;
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
}

.service-block .inner-box .read-more span {
  position: relative;
  top: 1px;
  font-size: 12px;
}

.service-block .inner-box:hover .read-more {
  color: #006600;
}

.service-banner-section {
  background-size: cover;
  background-position: center center;
  position: relative;
  /* padding-top: 120px;*/
  overflow: hidden;
  background-color: #efefeb;
  color: #ffffff;
}

.service-banner-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Dark overlay */
  z-index: 1;
}

.service-banner-section .content-box {
  position: relative;
  max-width: 600px;
  z-index: 2;
  padding-top: 120px;
  padding-bottom: 120px;
  color: #ffffff;
}

.service-banner-section .content-box h1 {
  font-size: 53px;
}

.service-banner-section .content-box h2 {
  font-weight: 300;
  line-height: 1.3em;
  margin-top: 15px;
}

.service-banner-section .content-box h2 span,
h2 span {
  position: relative;
  font-weight: 600;
  color: #006600;
}

.service-banner-section .content-box .text {
  font-size: 18px;
  line-height: 1.7em;
  margin-top: 15px;
  margin-bottom: 50px;
}

.service-banner-section .content-box .lower-box {
  position: relative;
  margin-top: 140px;
}

.service-banner-section .content-box .lower-box .book {
  position: relative;
  padding-left: 50px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.service-banner-section .content-box .lower-box .book .icon {
  position: absolute;
  left: 0px;
  top: 7px;
  width: 34px;
  height: 34px;
  color: #ffffff;
  border-radius: 3px;
  text-align: center;
  line-height: 34px;
  font-size: 20px;
  display: inline-block;
  background-color: #006600;
}

.service-banner-section .content-box .lower-box .phone {
  position: relative;
  font-size: 36px;
  color: #000000;
  font-weight: 400;
  line-height: 1.2em;
}

.service-banner-section .side-image {
  position: absolute;
  right: 100px;
  bottom: 0px;
}

.bg-light {
  background-color: #f7f7f7 !important;
}

.table thead tr th {
  background: #006600;
}

/*** ============================================ 8. VWP/Technology Page ====================================================***/

.vwpprocess-section .icon-box {
  border: 2px solid #006600;
  border-radius: 10px;
  padding: 10px 20px;
  text-align: center;
  /*margin: 10px 0;*/
  display: flex;
  flex-direction: column;
  /*justify-content: space-between;*/
  background-color: #fff;
  transition: transform 0.2s ease;
}

.vwpprocess-section .icon-box:hover {
  transform: translateY(-5px);
}

.vwpprocess-section .icon-box img {
  max-height: 100px;
  max-width: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

.vwpprocess-section .icon-box p {
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
}

.vwpprocess-section .icon-text {
  font-size: 14px;
  color: #000;
  margin-top: auto;
}

.vwpprocess-section .solutionsblock {
  display: flex;
  justify-content: center;
  align-items: center;
}

.vwpprocess-section .arrow-label {
  background-color: #006600;
  padding: 15px 20px;
  color: #ffffff;
  font-weight: bold;
  position: relative;
  display: inline-block;
  z-index: 1;
  font-size: 1.2rem;
}

.vwpprocess-section .arrow-label::after {
  content: "";
  position: absolute;
  top: 0;
  right: -20px;
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 20px solid #006600;
}

.vwpprocess-section .box-dashed,
.vwpprocess-section .box-solid {
  border: 2px dashed #006600;
  padding: 30px 40px;
  margin-left: -10px;
  flex-grow: 1;
  height: 100%;
}

.vwpprocess-section .box-solid {
  border-style: solid;
}

.vwpprocess-section .list-green {
  color: #006600;
  font-size: 15px;
}

.vwpprocess-section .solutionsblock ul {
  padding-left: 2rem;
  margin-bottom: 1rem;
}

.vwpprocess-section .solutionsblock ul li {
  list-style: disc;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.bg-dark-gray {
  background-color: transparent !important;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-item.active,
.dropdown-item:active {
  color: var(--bs-dropdown-link-active-color);
  text-decoration: none;
  background-color: transparent;
}

/***============================================ 9. Patents Page ================================================***/

.sponsors-section {
  position: relative;
  padding: 60px 0px 90px;
}

.sponsors-section .owl-nav,
.sponsors-section .owl-dots {
  display: none;
}

.sponsors-section .image-box {
  position: relative;
  opacity: 0.7;
  filter: grayscale(100%);
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sponsors-section .image-box:hover {
  opacity: 1;
  filter: grayscale(0%);
}

/***============================================ Technical Specification Page ================================================***/

.page-banner-image-section {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.page-banner-image-section .image {
  /* position: relative;*/
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.page-banner-image-section .image img {
  position: relative;
  width: 100%;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(50%);
}

.page-banner-image-section h1 {
  position: relative;
  z-index: 2;
  font-size: 42px;
  font-weight: bold;
  text-transform: uppercase;
}

.portfolio-main-info .title {
  font-size: 42px;
  line-height: 1.3;
  margin-bottom: 0;
  font-weight: 500;
  color: #000;
}

.lower-box {
  position: relative;
  margin-top: 70px;
}

.lower-box .book {
  position: relative;
  padding-left: 50px;
  color: #000000;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

.lower-box .book .icon {
  position: absolute;
  left: 0px;
  top: 7px;
  width: 34px;
  height: 34px;
  color: #ffffff;
  border-radius: 3px;
  text-align: center;
  line-height: 34px;
  font-size: 20px;
  display: inline-block;
  background-color: #006600;
}

.lower-box .phone {
  position: relative;
  font-size: 36px;
  color: #000000;
  font-weight: 400;
  line-height: 1.2em;
}

/*** ================================================== 10. Blog Page ==================================================***/

.blog-section,
.whychoose-section {
  position: relative;
  padding: 80px 0px;
  /*background-color: #eef1f3;*/
}

.blog-section .column {
  padding: 0px;
  float: left;
}

.our-blogs {
  padding-right: 80px;
  margin-bottom: 80px;
}

.news-block {
  position: relative;
}

.news-block .inner-box {
  position: relative;
  background-color: #ffffff;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box .image-column {
  position: relative;
  padding: 0px;
  float: left;
}

.news-block .inner-box .image-column .inner-column {
  position: relative;
}

.news-block .inner-box .image-column .image {
  position: relative;
}

.news-block .inner-box .image-column .image img {
  position: relative;
  width: 100%;
  display: block;
}

.news-block .inner-box .content-column {
  position: relative;
  padding: 0px;
  float: left;
}

.news-block .inner-box .content-column .arrow-one {
  position: absolute;
  top: 50%;
  left: -20px;
  border-top: 10px solid transparent;
  border-right: 20px solid #ffffff;
  border-bottom: 10px solid transparent;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box:hover .content-column .arrow-one {
  border-right-color: #006600;
}

.news-block .inner-box .content-column .arrow-two {
  position: absolute;
  top: 50%;
  right: -20px;
  z-index: 1;
  border-top: 10px solid transparent;
  border-left: 20px solid #ffffff;
  border-bottom: 10px solid transparent;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box:hover .content-column .arrow-two {
  border-left-color: #006600;
}

.news-block .inner-box .content-column .inner-column {
  position: relative;
  text-align: center;
  padding: 24px 15px 80px;
}

.news-block .inner-box .content-column .title {
  position: relative;
  color: #006600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box .content-column h4 {
  position: relative;
  font-weight: 600;
  line-height: 1.3em;
  margin-top: 18px;
  margin-bottom: 30px;
}

.news-block .inner-box .content-column h4 a {
  position: relative;
  color: #006600;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block .inner-box:hover {
  background-color: #006600;
}

.sidebar .popular-posts .post .text .post-date,
.news-block .inner-box .post-date,
.news-block .inner-box .post-content {
  position: relative;
  color: #333;
  font-size: 14px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .popular-posts .post .text .post-date {
  margin-top: 8px;
}

.news-block .inner-box .post-date span {
  position: relative;
  color: #000000;
}

.news-block .inner-box:hover .content-column .title,
.news-block .inner-box:hover .post-content,
.news-block .inner-box:hover .post-date span,
.news-block .inner-box:hover .content-column h4 {
  color: #ffffff;
}

.news-block-three {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  /* border-bottom: 1px solid #dbdbdb; */
  transition: all 500ms ease;
  border-radius: 10px;
}

.news-block-three:hover {
  /* background-color: #f2f5f6; */
  box-shadow: 0 5px 5px 0px rgba(0, 0, 0, 0.1);
}

.news-block-three .inner-box {
  position: relative;
  /* min-height: 195px; */
  /* padding-left: 330px; */
  display: flex;
  flex-direction: column;
}

.news-block-three .inner-box .image {
  position: relative;
  left: 0px;
  top: 0px;
  /* width: 300px; */
  border-radius: 5px;
  overflow: hidden;
  background-color: #006600;
}

.news-block-three .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-three .inner-box:hover .image img {
  opacity: 0.7;
  transform: scale(1.05, 1.05) rotate(2deg);
}

.news-block-three .inner-box .title {
  position: relative;
  color: #006600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-block-three .inner-box h4 {
  position: relative;
  line-height: 1.1em;
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 20px;
}

.news-block-three .inner-box h4 a {
  position: relative;
  color: #000000;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  /* font-weight: 500; */
  font-size: 1.1rem;
}

.news-block-three .inner-box:hover h4 a {
  color: #006600;
}

.news-block-three .inner-box .post-date {
  position: relative;
  color: #666666;
  font-size: 14px;
}

.news-block-three .inner-box .post-date span {
  position: relative;
  color: #000000;
}

.news-block-three:last-child {
  border-bottom: none;
  padding-bottom: 0px;
  margin-bottom: 0px;
  min-height: auto;
}

.blog-slider img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-slider .owl-nav button {
  background: none !important;
  border: none !important;
  font-size: 0; /* hide default text/icons */
}

.blog-slider .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none; /* arrows won’t block image clicks */
}

.blog-slider .owl-nav button {
  background: rgba(0,0,0,0.4) !important;
  color: #fff !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 18px !important;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all; /* clickable */
  transition: background 0.3s ease;
}

.blog-slider .owl-nav button:hover {
  background: rgba(0,0,0,0.7) !important;
}

.blog-slider .owl-dot.active span {
  background: #28a745; /* green highlight */
  transform: scale(1.2);
}

.blog-slider .owl-nav .owl-prev { left: -20px; }
.blog-slider .owl-nav .owl-next { right: -20px; }

.blog-detail .owl-dots {
  display: none;
}


/*** ======== Sidebar ============***/
.sidebar-page-container {
  position: relative;
  padding: 90px 0px 70px;
}

.sidebar-page-container.style-two {
  padding-bottom: 0px;
}

.sidebar-side {
  position: -webkit-sticky; /* Safari */
  position: sticky;
  top: 0; /* Stick to very top */
  align-self: flex-start; /* Prevent flexbox push */
  height: 100vh; /* Full viewport height */
  overflow-y: auto; /* Enable scroll */

  /* Hide scrollbar styles */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge */
}

.sidebar-side::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Opera */
}


.sidebar-page-container .content-side,
.sidebar-page-container .sidebar-side {
  margin-bottom: 30px;
}

/* .sidebar-page-container .sidebar-side .sidebar.margin-left {
  margin-left: -30px;
} */

.sidebar-page-container .service-title-box {
  position: relative;
  margin-bottom: 60px;
}

.sidebar-page-container .service-title-box h2 {
  position: relative;
  color: #000000;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3em;
}

.sticky-top {
  top: 110px;
  z-index: 1;
}

.sidebar-widget {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-widget:last-child {
  margin-bottom: 0px;
}

.sidebar-title {
  position: relative;
  margin-bottom: 30px;
}

.sidebar-title h4 {
  position: relative;
  color: #000000;
  font-weight: 600;
}

/*Search Box Widget*/
.sidebar .search-box .form-group {
  position: relative;
  margin: 0px;
}

.sidebar .search-box .form-group input[type="text"],
.sidebar .search-box .form-group input[type="search"] {
  position: relative;
  line-height: 30px;
  padding: 10px 60px 10px 20px;
  border: 1px solid transparent;
  background: #ffffff;
  display: block;
  font-size: 14px;
  width: 100%;
  height: 50px;
  color: #8d9aa8;
  border-radius: 0px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.sidebar .search-box .form-group button {
  position: absolute;
  right: 0px;
  top: 0px;
  height: 50px;
  width: 50px;
  display: block;
  font-size: 16px;
  color: #ffffff;
  font-weight: 300;
  line-height: 52px;
  background: #006600;
  border-radius: 0px;
  cursor: pointer;
}

.sidebar .search-box .form-group input::-webkit-input-placeholder {
  color: #333333;
}

.categories-blog ul {
  position: relative;
}

.categories-blog ul li {
  position: relative;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.categories-blog ul li:first-child a {
  padding-top: 0px;
}

.categories-blog ul li a {
  position: relative;
  font-size: 14px;
  font-weight: 400;
  color: #000000;
  display: block;
  padding: 13px 0px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  border-bottom: 1px solid #ebebeb;
}

.categories-blog ul li span {
  position: absolute;
  right: 0px;
}

.categories-blog ul li:last-child a {
  border-bottom: none;
  border-bottom: 0px;
}

.categories-blog ul li.active a,
.categories-blog ul li a:hover {
  color: #006600;
}

/*Post Widget*/

.sidebar .popular-posts .widget-content {
  position: relative;
}

.sidebar .popular-posts .post {
  /* position: relative; */
  font-size: 14px;
  color: #666666;
  padding: 0px 0px;
  /* padding-left: 100px; */
  min-height: 75px;
  margin-bottom: 20px;
  border-bottom: 1px solid #d3d8dc;
}

.sidebar .popular-posts .post:last-child {
  margin-bottom: 0px;
  border: none;
}

.sidebar .popular-posts .post .post-thumb {
  /* position: absolute; */
  left: 0px;
  top: 0px;
  /* width: 79px; */
  overflow: hidden;
  border-radius: 0px;
}

.sidebar .popular-posts .post:hover .post-thumb img {
  opacity: 0.7;
}

.sidebar .popular-posts .post .post-thumb img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sidebar .popular-posts .post .text {
  /* position: relative; */
  /* top: -4px; */
  font-size: 15px;
  margin: 0px 0px 10px 0px;
  font-weight: 400;
  color: #000000;
  line-height: 1.3em;
  text-transform: capitalize;
}

.sidebar .popular-posts .post .text a {
  color: #000000;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.sidebar .popular-posts .post a,
.sidebar .popular-posts .post a:hover {
  color: #006600;
}

/*Popular Tags*/

.sidebar .tags a {
  position: relative;
  display: inline-block;
  line-height: 24px;
  padding: 6px 15px 6px;
  margin: 0px 4px 10px 0px;
  color: #666666;
  background: #ffffff;
  text-align: center;
  font-size: 13px;
  background: none;
  font-weight: 400;
  border-radius: 0px;
  border: 1px solid #d7d7d7;
  text-transform: capitalize;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.sidebar .tags a:hover {
  background-color: #006600;
  border-color: #006600;
  color: #ffffff;
}

/*** =========== Styled Pagination ===============***/

.styled-pagination {
  position: relative;
}

.styled-pagination li.blogPaginate {
  position: relative;
  /* margin-right: 35px; */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: 1px solid #006600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.styled-pagination li.blogPaginate:hover {
  background-color: #e6e6e6;
}

.styled-pagination li a {
  position: relative;
  color: #666666;
  font-size: 18px;
  font-weight: 400;
  display: inline-block;
  transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
}

.styled-pagination li.active a,
.styled-pagination li:hover a {
  color: #000000;
}

.styled-pagination li.next a {
  font-size: 14px;
}

/*** ================================================= 11. Blog Detail Page =================================================***/

.blog-detail {
  position: relative;
}

.blog-detail .inner-box {
  position: relative;
  padding-right: 80px;
}

.blog-detail .inner-box .image {
  position: relative;
}

.blog-detail .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
}

.blog-detail .inner-box .lower-content {
  position: relative;
  padding-top: 40px;
}

.blog-detail .inner-box .lower-content .post-info {
  position: relative;
  color: #666666;
  font-size: 14px;
  margin-bottom: 35px;
}

.blog-detail .inner-box .lower-content .post-info span {
  text-transform: uppercase;
}

.blog-detail .inner-box .lower-content .post-info i {
  color: #000000;
  font-style: normal;
}

.blog-detail .inner-box .lower-content p {
  position: relative;
  color: #666666;
  font-size: 16px;
  line-height: 1.8em;
  margin-bottom: 45px;
}

.blog-detail .inner-box .middle-image {
  position: relative;
  margin-bottom: 50px;
}

.blog-detail .inner-box .lower-content h4 {
  position: relative;
  color: #000000;
  font-weight: 600;
  line-height: 1.3em;
  margin-bottom: 35px;
}

.blog-detail .inner-box .lower-content blockquote {
  position: relative;
  margin: 80px 0px;
  padding-left: 105px;
}

.blog-detail .inner-box .lower-content blockquote .blockquote-text {
  position: relative;
  color: #000000;
  font-weight: 300;
  font-size: 24px;
  line-height: 1.5em;
}

.blog-detail .inner-box .lower-content blockquote .blockquote-text .quote {
  position: absolute;
  left: -20px;
  top: -5px;
  color: #000000;
  font-size: 16px;
  line-height: 1em;
}

/*post share options*/

.blog-detail .inner-box .lower-content .post-share-options {
  position: relative;
  margin-top: 70px;
  padding-bottom: 60px;
  border-bottom: 1px solid #dddddd;
}

.blog-detail .inner-box .lower-content .post-share-options .tags a {
  position: relative;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1em;
  margin-right: 4px;
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid #d7d7d7;
  text-transform: capitalize;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.blog-detail .inner-box .lower-content .post-share-options .tags a:hover {
  color: #ffffff;
  border-color: #006600;
  background-color: #006600;
}

/* Related Projects */

.related-projects {
  position: relative;
  margin-top: 75px;
  padding-right: 80px;
}

.related-projects .title-box {
  position: relative;
  margin-bottom: 35px;
}

.related-projects .title-box h3 {
  position: relative;
  color: #000000;
  font-weight: 600;
  line-height: 1.3em;
}

.news-block-four {
  position: relative;
  margin-bottom: 30px;
}

.news-block-four .inner-box {
  position: relative;
}

.news-block-four .inner-box .image {
  position: relative;
  overflow: hidden;
  margin-bottom: 30px;
  background-color: #006600;
}

.news-block-four .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.news-block-four .inner-box:hover .image img {
  opacity: 0.7;
  transform: scale(1.05, 1.05) rotate(2deg);
}

.news-block-four .inner-box .title {
  position: relative;
  color: #006600;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.news-block-four .inner-box h4 {
  position: relative;
  line-height: 1.3em;
  font-weight: 600;
  margin-top: 10px;
  margin-bottom: 20px;
}

.news-block-four .inner-box h4 a {
  position: relative;
  color: #000000;
  transition: all 300ms ease;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
}

.news-block-four .inner-box:hover h4 a {
  color: #006600;
}

.sidebar-page-container .lower-section {
  position: relative;
  margin-top: 60px;
  padding: 90px 0px 100px;
  background-color: #eef1f3;
}

.sidebar-page-container .lower-section .comment-form {
  position: relative;
  max-width: 770px;
}

/* Comment Form */

.comment-form .group-title {
  position: relative;
  margin-bottom: 40px;
}

.comment-form .group-title h3 {
  position: relative;
  color: #000000;
  font-weight: 600;
}

.comment-form .group-title .text {
  position: relative;
  color: #666666;
  font-weight: 400;
  font-size: 14px;
  margin-top: 6px;
}

.comment-form .form-group {
  position: relative;
  margin-bottom: 30px;
}

.comment-form .form-group:last-child {
  margin-bottom: 0px;
}

.comment-form .form-group input[type="text"],
.comment-form .form-group input[type="password"],
.comment-form .form-group input[type="tel"],
.comment-form .form-group input[type="email"],
.comment-form .form-group select {
  position: relative;
  display: block;
  width: 100%;
  color: #222222;
  line-height: 28px;
  padding: 10px 20px;
  height: 50px;
  font-size: 14px;
  border-radius: 0px;
  background-color: #ffffff;
  border: 1px solid transparent;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.comment-form .form-group input[type="text"]:focus,
.comment-form .form-group input[type="password"]:focus,
.comment-form .form-group input[type="tel"]:focus,
.comment-form .form-group input[type="email"]:focus,
.comment-form .form-group select:focus,
.comment-form .form-group textarea:focus {
  border-color: #006600;
}

.comment-form .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 15px 20px;
  color: #222222;
  height: 210px;
  resize: none;
  font-size: 14px;
  border-radius: 0px;
  background-color: #ffffff;
  border: 1px solid transparent;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.comment-form .theme-btn {
  cursor: pointer;
  border-radius: 0px;
  font-family: "Heebo", sans-serif;
}

/*** ================================================== 13. Footer =====================================================***/

.main-footer {
  position: relative;
}

.main-footer.style-two {
  border-top: 1px solid #dfdfdf;
}

.main-footer .footer-widget {
  position: relative;
  margin-bottom: 30px;
}

.main-footer .widgets-section {
  position: relative;
  padding: 75px 0px 65px;
}

.main-footer .footer-widget h5 {
  position: relative;
  font-weight: 600;
  color: #000000;
  line-height: 1.2em;
  margin-top: 25px;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.main-footer .logo-widget {
  position: relative;
  text-align: center;
}

.main-footer .logo-widget .logo {
  position: relative;
  margin-bottom: 0px;
  /* max-width: 6rem;
  margin-left: 50px;*/
}

.main-footer .logo-widget .logo img {
  max-width: 6rem;
}

.main-footer .logo-widget .call {
  position: relative;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
  text-transform: uppercase;
}

.main-footer .logo-widget .call .phone {
  position: relative;
  color: #000000;
  font-size: 24px;
  display: block;
  margin-top: 15px;
  margin-bottom: 7px;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-footer .logo-widget .call .email {
  position: relative;
  color: #000000;
  font-size: 16px;
  display: block;
  margin-top: 0px;
  text-transform: capitalize;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
}

.main-footer .logo-widget .call .phone:hover,
.main-footer .logo-widget .call .email:hover {
  color: #0052e7;
}

/* List Link */

.list-link {
  position: relative;
}

.list-link li {
  position: relative;
  margin-bottom: 8px;
}

.list-link li a {
  position: relative;
  color: #666666;
  font-size: 14px;
  font-weight: 400;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.list-link li a:hover {
  color: #006600;
}

.main-footer .newsletter-widget .text {
  position: relative;
  color: #666666;
  font-size: 14px;
  line-height: 1.8em;
  margin-bottom: 15px;
}

.main-footer .footer-bottom {
  position: relative;
  border-top: 1px solid #e1e1e1;
}

.main-footer .footer-bottom .bottom-inner {
  position: relative;
  padding: 35px 0px;
  /* border-top: 1px solid #e1e1e1; */
}

.main-footer .footer-bottom .copyright {
  position: relative;
  color: #666666;
  font-size: 16px;
}

.main-footer .footer-bottom .copyright a {
  position: relative;
  color: #000000;
  font-weight: 700;
}

.main-footer .footer-bottom .social-nav {
  position: relative;
  text-align: right;
}

.main-footer .footer-bottom .social-nav li {
  position: relative;
  margin-left: 10px;
  display: inline-block;
}

.main-footer .footer-bottom .social-nav li a {
  position: relative;
  color: #666666;
  font-size: 16px;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.main-footer .footer-bottom .social-nav li a:hover {
  color: #006600;
}

/*** ============================================ 12. Contact Page ====================================================***/
.contact-page-section {
  position: relative;
  padding-bottom: 100px;
  background-color: #eef1f3;
}

.contact-page-section .contact-info-boxed {
  position: relative;
  z-index: 10;
  padding: 90px 65px 95px;
  background-color: #006600;
  top: -100px;
  margin-bottom: 0px;
}

.contact-page-section .contact-info-boxed h2 {
  position: relative;
  color: #ffffff;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.3em;
  margin-bottom: 12px;
}

.contact-page-section .contact-info-boxed h2 span {
  position: relative;
  color: #ffffff;
  font-weight: 700;
}

.contact-page-section .contact-info-boxed .text {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8em;
}

.contact-page-section .contact-info-boxed .email {
  position: relative;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  margin-top: 10px;
}

.contact-page-section .contact-info-boxed .email a {
  position: relative;
  color: #b3d1c2;
  font-weight: 400;
}

.contact-page-section .contact-info-boxed .call {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 40px;
  /* text-transform: uppercase; */
}

.contact-page-section .contact-info-boxed .call a {
  position: relative;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1em;
  margin-top: 15px;
  display: inline-block;
}

.contact-page-section .contact-info-boxed .location-list {
  position: relative;
}

.contact-page-section .contact-info-boxed .location-list li {
  position: relative;
  color: #b3d1c2;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 400;
  margin-bottom: 30px;
}

.contact-page-section .contact-info-boxed .location-list li span {
  position: relative;
  display: block;
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8em;
  font-weight: 600;
}

.contact-page-section .contact-info-boxed .location-list li:last-child {
  margin-bottom: 0px;
}

.contact-page-section .form-boxed {
  position: relative;
}

.contact-page-section .form-boxed .boxed-inner {
  position: relative;
  padding: 40px;
  background-color: #ffffff;
  max-width: 850px;
}

/* Contact Form */

.contact-form .form-group,
#contactModal .form-group {
  position: relative;
  margin-bottom: 30px;
}

.contact-form .form-group input[type="text"],
.contact-form .form-group input[type="password"],
.contact-form .form-group input[type="tel"],
.contact-form .form-group input[type="email"],
.contact-form .form-group select,
#contactModal .form-group input[type="text"],
#contactModal .form-group input[type="password"],
#contactModal .form-group input[type="tel"],
#contactModal .form-group input[type="email"],
#contactModal .form-group select {
  position: relative;
  display: block;
  width: 100%;
  color: #222222;
  line-height: 28px;
  padding: 10px 20px;
  height: 50px;
  font-size: 14px;
  border-radius: 0px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.contact-form .form-group input[type="text"]:focus,
.contact-form .form-group input[type="password"]:focus,
.contact-form .form-group input[type="tel"]:focus,
.contact-form .form-group input[type="email"]:focus,
.contact-form .form-group select:focus,
.contact-form .form-group textarea:focus {
  border-color: #006600;
}

.contact-form .form-group textarea,
#contactModal .form-group textarea {
  position: relative;
  display: block;
  width: 100%;
  line-height: 24px;
  padding: 15px 20px;
  color: #222222;
  height: 210px;
  resize: none;
  font-size: 14px;
  border-radius: 0px;
  background-color: #ffffff;
  border: 1px solid #d9d9d9;
  -webkit-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  transition: all 300ms ease;
}

.contact-form .theme-btn {
  cursor: pointer;
  border-radius: 0px;
  font-family: "Heebo", sans-serif;
}

.contact-form input.error,
.contact-form select.error,
.contact-form textarea.error {
  border-color: #ff0000 !important;
}

.contact-form label.error {
  display: block;
  line-height: 24px;
  padding: 5px 0px 0px;
  margin: 0px;
  text-transform: uppercase;
  font-size: 12px;
  color: #ff0000;
  font-weight: 500;
}

/*** ================= Map Section =============***/

.map-section {
  position: relative;
  padding: 0px 0px;
}

.contact-map-area iframe {
  width: 100%;
  height: 500px;
  border: 0 none;
}

.map-canvas {
  height: 640px;
  width: 100%;
}

.map-data {
  text-align: left;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8em;
}

.map-section .gm-style-iw {
  width: 270px;
  padding: 15px 20px;
  border-radius: 3px;
  text-align: left;
}

.map-data h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000000;
}

.map-section .map-data .map-content {
  position: relative;
  color: #000000;
  font-size: 14px;
}

/****************************************************** 7-july : Devarsh ******************************************/

.sustainableWaste {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.stepsCounter {
  position: absolute;
  bottom: 95%;
  /* top: 0; */
  /* right: 0; */
  /* background: #006600; */
  left: 50%;
  transform: translateX(-50%);
}

.stepsCounter h5 {
  /* font-weight: bolder; */
  padding: 1px 3px;
  font-size: 20px;
  background: #006600;
  /* border-radius: 4px; */
  border-radius: 50%;
  color: #ffffff;
  height: 50px;
  width: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.project-section .owl-carousel .owl-stage-outer {
  overflow: visible !important;
}

/* Chat Box */
#chat-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #198754;
  color: #fff;
  font-size: 24px;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

#chat-box {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 300px;
  display: none;
  z-index: 1000;
  border-radius: 15px;
  overflow: hidden;
}

.Dessertslider .owl-item img, .Landfillslider .owl-item img {
    height: 400px;
    width: 400px;
}

.Dessertslider .item, .Landfillslider .item {
    display: flex;
    justify-content: center;
    align-items: center;
}

/******************************  Sustainable Waste *********************************/

.process-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    max-width: 1200px;
}

.process-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.process-step {
    text-align: center;
    position: relative;
    width: 330px;
}

.process-step img {      
    object-fit: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

.process-step h3 {
    margin-top: 20px;
    font-size: 1.2rem;
    color: #004d25;
    font-weight: 600;
}

.step-num {
    position: absolute;
    top: 15px;
    left: 15px;
    background: radial-gradient(circle at top left, #00c853, #00796b);
    color: #fff;
    font-weight: 700;
    font-size: 20px;
    padding: 10px 18px;
    border-radius: 50px;
    box-shadow: 0 0 12px rgba(0, 200, 83, 0.6);
    transition: all 0.3s ease;
}

.image-box:hover .step-num {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.8);
}

.connector {
    font-weight: bold;
    user-select: none;
    font-size: 2rem;
    color: #0ea15b; /* green arrow */
}

.arrow {
    display: inline-block;
    transform: translateY(5px);
    font-style: normal;
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .process-flow {
        flex-direction: column;
        gap: 30px;
    }

    .connector {
        transform: rotate(90deg);
    }
}



   


