:root{
	--green: #008000;
	--lightgreen: #3a6a4e;
	--blue: #1b35c0;
	--white: #fff;
	--text-color: #333;
	--black:#000;
    --fontfam: "Roboto", sans-serif;
}

/*Default-CSS*/
input[type="file"]::-webkit-file-upload-button {
	cursor:pointer;
	max-width: 100%;
}
input[type="file"]::-moz-file-upload-button {
	cursor:pointer;
	max-width: 100%;
}
input[type="file"]::-ms-file-upload-button {
	cursor:pointer;
	max-width: 100%;
}
input[type="file"]::-o-file-upload-button {
	cursor:pointer;
	max-width: 100%;
}
input[type="file"] {
	cursor:pointer;
	max-width: 100%;
}
html body{
	font-family: var(--fontfam);
	margin:0;

}
*::-moz-selection {
	color: var(--white);
	background:var(--black);
}
*::-webkit-selection {
	color: var(--white);
	background:var(--black);
}
*::-webkit-input-placeholder {
	color: #232323;
	opacity:1;
}
*:-moz-placeholder {
	color: #232323;
	opacity:1;
}
*::-moz-placeholder {
	color: #232323;
	opacity:1;
}
*:-ms-input-placeholder {
	color: #232323;
	opacity:1;
}
a,div a:hover, div a:active, div a:focus, button {
	text-decoration: none;
	-webkit-transition:all 0.5s ease 0s;
	-moz-transition:all 0.5s ease 0s;
	-ms-transition:all 0.5s ease 0s;
	-o-transition:all 0.5s ease 0s;
	transition:all 0.5s ease 0s;
}
a, span,div a:hover, div a:active, button {
	text-decoration: none;
}
*::after, *::before, * {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, nav, section {display:block;}

ul, ul li, ol, li {list-style: outside none none;font-family: var(--fontfam); color: var(--black);}
body ul {margin:0;padding:0;}

body a {
	outline: none;
	color: var(--white);
}
body a:hover {
	color: #fff;
}
body .clearfix, body .clear {
	clear:both;
	line-height:100%;
}
body .clearfix{
	height:auto;
}
*{
	outline:none!important;
}
*{
 -webkit-tap-highlight-color: rgba(0,0,0,0);
 -webkit-tap-highlight-color: transparent; /* For some Androids */

}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
div input, div select, div textarea, div button{
	font-family: var(--fontfam);
}
body h1, body h2, body h3, body h4, body h5, body h6{
	font-family: var(--fontfam);
	line-height:120%;
	color:var(--text-color);
	font-weight: 500;
	margin:0 0 15px;
}
body h1 { font-size: 42px;}
body h2 { font-size: 38px;}
body h3 { font-size: 32px;}
body h4 { font-size: 28px;}
body h5 { font-size: 24px;}
body h6 { font-size: 18px;}
body h1:last-child,
body h2:last-child,
body h3:last-child,
body h4:last-child,
body h5:last-child,
body h6:last-child{
	margin-bottom:0;
}
div select {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
div select option {
	font-size: 13px;
	color:var(--text-color);
	padding: 2px 5px;
}
img {
	margin: 0 auto;
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height:auto;
}
body p {
    color: #232323;
    font-family: var(--fontfam);
    font-size: 18px;
    line-height: 140%;
    margin: 0 0 15px;
    padding: 0;
    font-weight: 400;
}
body p:empty{
	margin:0;
	line-height:0;
}
body p:last-child{
	margin-bottom:0;
}
p strong {
	font-weight: bold;
}
.kd-left{
	text-align:left;
}
.kd-right{
	text-align:right;
}
.kd-center{
	text-align:center;
}

label em {
	color: var(--red);
	display: inline-block;
	font-style: normal;
	vertical-align: top;
	margin-left:5px;
}
.hidden{
	display:none!important;
}
iframe{
	display:block;
	width:100%;
}
.container{
	width:100%;
	max-width: 1440px;
	padding-left:15px;
	padding-right:15px;
	margin:0 auto;
	position:relative;
	float:none;
}
body .container .container{
	padding-left:0;
	padding-right:0;
}
/*scroll Hide*/
html.no-scroll{
	overflow: hidden;
}
html.no-scroll body {
	overflow: hidden;
	height:100%;
}


/*button*/
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* Buttons styles start */
.btn, button {
    display: inline-block;
    border: none;
    padding: 12px 22px;
    margin: 0;
    text-decoration: none;
    background: var(--green);
    color: var(--white);
    font-size: 16px;
    line-height: 120%;
    cursor: pointer;
    text-align: center;
    border-radius: 0px;
    border: 1px solid var(--green);
}

.btn.btn-primary{
	background-color: var(--green);
	color: var(--white);
	border: 1px solid transparent;
}

.btn.btn-primary:hover{
	background-color: var(--white);
	color: var(--lightgreen);
	border-color: var(--green);
}

.btn.btn-secondary{
	background-color: var(--white);
	color: var(--black);
	border: 1px solid var(--green);
}

.btn.btn-secondary:hover{
	background-color: var(--green);
	color: var(--white);
}

.btn:hover,
.btn:focus,
button:hover,
button:focus {
    background-color: var(--green);
    color: var(--white);
}

.round-coner{
	border-radius: 5px;
}

/* Button styles end */

/*lozad*/

.lozad {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}


[data-loaded="true"] {
  animation-name: fade;
  animation-duration: 1s;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

@keyframes fade {
	from {
	    opacity: 0.8;
		background: url("../images/logo-placeholder.png") center center;
		background-size: cover;
	}
	to {
	    opacity: 1;
	    filter: unset;
	}
}

/*lozad*/

.main-wrapper {
	min-height: 100vh;
}
/*Gapping*/
.section-gapping,
section {
	padding-bottom: 60px;
	padding-top: 60px;
}
/*Gapping close*/
.row{
	display: flex;
	flex-wrap: wrap;
}
/*Default-CSS close*/


/*information css remove if when you star work*/
#header,
#footer {
    background-color: var(--black);
    padding: 60px 0;
    text-align: center;
}
#header h1,
#footer h1{
	color: var(--white);
}
#content {
    min-height: 350px;
    text-align: center;
}
/*close information css*/



/*header*/
.header {
    position: fixed;
    top: 0;
    width: 100%;
    transition: all 0.5s ease 0s;
    z-index: 999999;
}

.header-top {
    padding: 10px 0;
	background-color: var(--green);

}

.topbar-left-info ul {
    display: flex;
}

.topbar-left-info ul li a {
    color: var(--white);
    font-size: 16px;
}

.topbar-left-info ul li a i {
    margin-right: 10px;
    position: relative;
}
.header-top .row {
    align-items: center;
    justify-content: space-between;
}

.menu-block > h2 {
	display: none;
}

.topbar-right-info ul {
    display: flex;
}

.topbar-right-info ul li:first-child {
    margin-left: 0;
}

.topbar-right-info ul li {
    margin-left: 18px;
}

.topbar-right-info ul li a {
    color: var(--white);
    font-size: 18px;
}

.header-bottom {
    padding: 14px 0;
    position: relative;
    box-shadow: 10.777px 7.27px 8px rgba(0,0,0,0.04);
    background-color: #ffffff;
    border-bottom: 1px solid var(--green);
}

.header-bottom .row {
    align-items: center;
    justify-content: space-between;
}

.togglebtn {
    width: 25px;
    height: 25px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.togglebtn span {
    position: relative;
    height: 2px;
    background-color: var(--green);
    width: 100%;
    transition: all 0.5s ease 0s;
}

.menu-block ul {
    display: flex;
    align-self: center;
} 	

.menu-block ul > li:first-child {
    margin-left: 0;
}

.menu-block ul > li.active a {
    color: var(--green);
}

.menu-block ul > li {
    margin-left: 26px;
    position: relative;
}

.menu-block ul > li > a {
    font-size: 16px;
    color: #232323;
    display: block;
}

.togglebtn span:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
    top: -9px;
    background-color: var(--green);
    transition: all 0.5s ease 0s;
}

.togglebtn span:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
    bottom: -9px;
    background-color: var(--green);
    transition: all 0.5s ease 0s;
}

body.menu_open{
	overflow: hidden;
}

body.menu_open .togglebtn span:after {
    bottom: 0;
    transform: rotate(45deg);
}

body.menu_open .togglebtn span:before {
    top: 0;
    transform: rotate(-45deg);
}

body.menu_open .togglebtn span {
    background-color: transparent;
    filter: blur(1px);
}

.logo-block a.logo {
    display: flex;
    align-items: center;
    max-width: 195px;
    line-height: 0;
}

a.logo span {
    color: #000;
    font-size: 16px;
    letter-spacing: 1px;
    margin-left: 10px;
}

a.logo h2 {
	font-size: 30px;
	margin-bottom: 0px;
}

li.dropdown:hover > .dropdown-menu{
	opacity: 1;
	visibility: visible;
	top: 30px;
}
.dropdown > .dropdown-menu {
    position: absolute;
    width: 200px;
    top: 60px;
    background-color: var(--green);
    padding: 9px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease 0s;
}


.dropdown > .dropdown-menu a {
    color: var(--white);
    padding: 0 15px;
    font-size: 16px;
}

.dropdown > .dropdown-menu a i{
	margin-right: 5px;
}

/* header.fixed .menu-block ul > li > a,
header.fixed .topbar-right-info ul li a,
header.fixed .topbar-left-info ul li a {
    font-size: 14px;
} */
/*Headre End*/
/*Baner Start*/

.inner-content {
    padding-top: 106px;
}

.banner-slider-sec{
	padding: 0;
	position: relative;
}

.banner-slide {
    padding-top: 47.3%;
    position: relative;
    overflow: hidden;
}

.banner-slide > img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	object-position: center top;
	object-fit: cover;
	height: 100%;
	width: 100%;
}

.banner-slide > iframe,
.banner-slide > video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.banner-info {
    position: absolute;
    top: 0;
    max-width: 1200px;
    margin: auto;
    z-index: 99;
    display: flex;
    align-items: center;
    z-index: 99;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0 15px;
    text-align: center;
    justify-content: center;
}

.banner-info p{
	color: #fff;
}

.banner-info h2 {
    color: #fff;
    font-size: 60px;
    font-weight: 600;
    text-transform: uppercase;
}

.banner-slider{
	z-index: unset;
}

.banner-slide:before{
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.4);
	display: block;
	z-index: 1;
}

/*Banner End*/
/*Top Class Css Start*/
.top-class-left-block p {
    color: var(--lightgreen);
    font-size: 20px;
    text-transform: uppercase;
}

.top-class-left-block h2{
	color: #000;
	font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -0.32px;
}

.col-6{
	width: 50%;
}

.behind-brand-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    position: absolute;
    bottom: 0;
    background: rgba(255,255,255,0.9);
    padding: 20px 20px;
    left: 0;
    right: 0;
}

.behind-brand-cta p {
    margin: 0;
    font-size: 30px;
    width: 100%;
    max-width: calc(50% - 8px);
    font-weight: 300;
    color: var(--lightgreen);
    text-transform: uppercase;
}

.behind-brand-cta p span {
    color: var(--lightgreen);
    font-weight: 600;
}

.top-class-different-content {
    margin-bottom: 30px;
}

.behind-brand-img {
    position: relative;
    z-index: 1;
    line-height: 0;
}

/*.top-class-sec .row{
	align-items: center;
}*/

/*.small-pro-slider {
    padding-top: 130%;
    position: relative;
    overflow: hidden;
    border: 3px solid var(--blue);
}

.small-product-slider .owl-nav {
    display: flex;
    justify-content: space-around;
    width: 50px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 12px;
}

.small-pro-slider > img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
	object-fit: cover;
	object-position: top;
}*/

/*.top-class-right-block .owl-item.active{
	z-index: -1;
	transform: scale(0.8);
	
}

.top-class-right-block .owl-item{
	transition: all 0.5s ease 0s;
	transform: scale(0.7);
}

.top-class-right-block .owl-item.active.center{
	z-index: 99;
	transform: scale(1);
}*/


/*Top Class Css End*/

/*Product Catogry Home Start*/


.px-0{
	padding-top: 0;
	padding-bottom: 0;
}

.col-4{
	width: 33.33%;
}

.pb-0{
	padding-bottom: 0;
}

.pt-0{
	padding-top: 0;
}

.sec-heading{
	margin-bottom: 50px;
}

.sec-heading > h2{
	font-size: 48px;
	color: var(--black);
}

.sec-heading label {
	color: var(--green);
	text-transform: uppercase;
}

.sec-heading p {
    font-size: 24px;
    color: #606060;
}

.col-8{
	width: 66.66%;
}

.about-left-image {
	line-height: 0;
}

.about-home-sec .row {
    align-items: center;
}

/*About End*/
/* Cartoon Sec Sraert*/
.cartoon-sec {
    background-color: #000;
    padding: 0;
    margin-top: 102px;
}

.cartoon-text h3{
	color: #fff;
	font-size: 36px;
}

.cartoon-image {
    position: absolute;
    right: 20px;
    bottom: 0px;
}

.cartoon-image img {
    width: 100%;
    max-width: 78%;
}

.cartoon-sec > div {
    padding: 50px 15px;
}

.cartoon-text {
    width: calc(100% - 260px);
}

/* Cartoon Sec End*/

/*Why Necon Start*/
.text-center{
	text-align: center;
}

.w-100{
	width: 100%;
}

.text-white{
	color: #fff;
}

.center-arrow-slider .owl-nav button {
    color: #fff !important;
    font-size: 26px !important;
}

.center-arrow-slider .owl-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: -30px;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
}

.center-arrow-slider .owl-dots > button {
    width: 10px;
    height: 10px;
    background: #fff !important;
    display: inline-block;
    border-radius: 100%;
    opacity: 0.8;
    margin: 0 4px;
}

.center-arrow-slider .owl-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 26px;
}

.center-arrow-slider .owl-dots > button.active{
	opacity: 1;
}

/*Footer Start*/


/*====================   About Page Css Start =============*/

.about-banner-img {
    padding-top: 30%;
    overflow: hidden;
    position: relative;
}

.about-banner-img:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0,0,0,0.7);
	z-index: 1;
}

.about-banner-img > img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	object-fit: cover;
	object-position: center;
	height: 100%;
	width: 100%;
}

.about-banner-info{
	text-align: center;
}

.about-banner-sec{
	position: relative;
}

.about-banner-info{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 1;
	left: 0;
	right: 0;
	margin: auto;
}
.about-banner-info label{
	margin-bottom: 6px;
	display: block;
	color: #fff;
}

.about-banner-info-news {
    text-align: center;
    max-width: 500px;
}

.about-banner-info h1{
	max-width: 1021px;
	font-size: 32px;
	color: #ffffff;
	font-weight: 700;
	margin-left: auto;
	margin-right: auto;
}

.reverse-cartoon-sec .row,
.reverse-about-home-sec .row{
	flex-direction: row-reverse;
}

.reverse-cartoon-sec .cartoon-image {
    right: auto;
    left: 20px;
    bottom: -4px;
}

.reverse-cartoon-sec .cartoon-text{
	text-align: right;
}

.location-infobtm .btn-group {
    margin-top: 20px;
}

a.send-inquiry-btn i {
    padding-left: 5px;
}

a.send-inquiry-btn:hover{
	color: var(--blue);
}

.nature-box {
    box-shadow: 12.728px 12.728px 55.5px rgba(0,0,0,0.11);
    background-color: #fefefe;
    padding: 30px;
    display: flex;
    margin-right: 6%;
    margin-bottom: 7%;
}

.nature-box label{
	color: #232323;
	font-weight: 400;
	margin-bottom: 10px;
	display: block;
}

.nature-box h3 {
    font-size: 26px;
    color: var(--green);
}

.nature-box-list{
	display: flex;
	flex-wrap: wrap;
	margin-top: 40px;
	position: relative;
}

.nature-box-list:before {
	content: "";
	position: absolute;
	bottom: 12px;
	top: 12px;
	width: 1px;
	background-color: var(--green);
	left: 3px;
    display: none;
}

.nature-box-list li{
	position: relative;
	padding-left: 16px;
}

.nature-box-list li:before {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background-color: var(--green);
    border-radius: 100%;
    left: 0;
    top: 10px;
}

.nature-box-list strong{
	font-size: 20px;
	color: #232323;
	font-weight: 600;
}

.nature-box-list p {
    margin-bottom: 6px;
    font-size: 16px;
}

.nature-left-block{
	width: calc(100% - 46%);	
}

.nature-right-block {
    width: 46%;
    border-radius: 22px;
    box-shadow: 12.728px 12.728px 55.5px rgba(0,0,0,0.11);
    background-color: #fefefe;
    position: relative;
    right: -9%;
    height: auto;
    margin-bottom: -9%;
    overflow: hidden;
}

.nature-right-block > img{
	height: 100%;
	width: 100%;
	object-position: center;
	object-fit: cover;
}

.product-banner-img {
    padding-top: 29.3%;
    position: relative;
    overflow: hidden;
}

.product-banner-img > img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    object-fit: cover;
    object-position: center 15%;
    height: 100%;
    width: 100%;
}

.post-meta span {
    margin-right: 5px;
}

.product-banner-img:before{
	content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
    z-index: 1;
}

.product-banner-sec {
    position: relative;
}

.inquiry-from-sec > .container{
	max-width: 993px;
}

.inquiry-form {
    border-radius: 0;
    box-shadow: 20.353px 12.718px 23px rgba(9,32,21,0.09);
    background-color: #fefefe;
    border: 0;
    padding: 15px;
}

section.contact-form {
    background-color: #edede9;
}

.inquiry-form .field-row > div {
	width: 100%;
	max-width: 100%;
}

.inquiry-form h3{
	font-size: 35px;
	color: var(--green);
	font-weight: 700;
	margin-bottom: 30px;
}

.field > input,
.field > select,
.field > textarea{
	height: 50px;
	border-radius: 0;
	background-color: #ffffff;
	border: 1px solid #dadada;
	padding-left: 10px;
	width: 100%;
}

form .field > textarea{
	height: 82px;
	padding-top: 10px;
	padding-left: 10px;
}


.field > label{
	margin-bottom: 10px;
	display: inline-block;
}

.required-star{
	color: red;
}

.field{
	margin-bottom: 15px;
}

.field-row {
    display: flex;
    width: auto;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.form-bottom-part .checkmark {
    margin-bottom: 15px;
}

.field-row.field-col-2 > div.field{
	width: 50%;
	padding: 0 10px;
}

.text-right{
	text-align: right;
}

.file-uplode-btn{
	max-width: 100%;
}

.single-product-show-list-head{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	border-bottom: 1px solid var(--lightgreen);
	padding-bottom: 10px;
	margin-bottom: 10px;
}

.single-product-show-list-head > p > a {
    color: var(--lightgreen);
    font-weight: 500;
}

.single-product-show-list-head > p {
	margin-bottom: 0;
}

.single-product-show-list-head > a{
	color: #000;
}

.single-product-show-list-head > a i{
	color: var(--lightgreen);
}

.single-product-show-list .product-information-details-table{
	margin-bottom: 15px;
	overflow: auto;
}

.single-product-show-list{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.single-product-show-list-details{
	width: calc(100% - 240px);
	padding-right: 20px;
}

.single-product-show-list-image{
	width: 240px;
}

.single-product-show-list:last-child{
	margin-bottom: 0px;
}

.map-frame{
	padding-top: 30%;
	overflow: hidden;
	position: relative;
}

.map-frame > iframe{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	height: 100%;
	width: 100%;
}

.pro-img-block {
    padding-top: 62%;
    position: relative;
    overflow: hidden;
}

.pro-img-block > img{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	object-fit: cover;
	object-position: center center;
	height: 100%;
	width: 100%;	
}

.all-single-products-list{
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.all-single-products-list li {
    width: 100%;
    max-width: calc(100% / 3 - 10px);
    overflow: hidden;
    border-bottom: 1px solid #ccc;
    padding-bottom: 15px;
}

.pro-img-info {
    padding: 0;
    margin-top: 10px;
    border-radius: 0;
}

.post-meta {
    color: #999999;
    letter-spacing: 1.46px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.post-meta img {
    position: relative;
    vertical-align: top;
    margin-right: 5px;
    top: -2px;
}

.pro-img-info p {
    font-weight: 300;
}

.post-meta > * {
    display: inline-block;
}

.pro-img-info a{
	margin-top: 9px;
}

.pro-img-info h3{
	font-size: 22px;
}

.all-single-products-list li a{
	display: block;
}
.all-single-products-list li a .btn{
	transition: all 0.5s ease 0s;
}
.all-single-products-list li a:hover .btn{
	background-color: transparent;
	color: var(--lightgreen);
	border-color: var(--lightgreen);

}

.certificate-list li {
    width: 60px;
    margin-right: 8px;
}

.certificate-list{
	display: flex;
	margin-top: 25px;
}

.stack-box h4 {
	font-size: 60px;
}

.stack-box span {
	font-size: 22px;
	text-transform: uppercase;
}

.stack-box p {
	letter-spacing: 3px;
	text-transform: uppercase;
}

.we-stack-sec {
	background-image: url(../images/bannerimg1.jpeg);
	position: relative;
}

.we-stack-sec:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
}

ul.we-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

ul.we-stack-list li {
    width: 100%;
    max-width: calc(100% / 4 - 12px);
    border: 1px solid #fff;
    padding: 10px;
    background-color: #fff;
}

.stack-box * {
    color: #000;
}

.we-stack-sec .sec-heading p,
.we-stack-sec .sec-heading h2 {
	color: #fff;
}

.difference-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.difference-list li {
    width: 100%;
    max-width: calc(100% / 3 - 15px);
    background-color: #f7f7f7;
}

.difference-img {
    line-height: 0;
}

.difference-img img {
    width: 100%;
}

.difference-info {
    padding: 15px;
    background-color: #f7f7f7;
}

.difference-info h3 {
    color: var(--green);
}

.how-we-different .sec-heading {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto; 
}

.footer-top {
    background-color: var(--green);
    padding: 30px 0;
}

.footer-menu nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu nav ul li a {
    font-size: 18px;
}

.footer-menu nav ul li:not(:last-child) {
	margin-right: 10px;
	padding-right: 10px;
	border-right: 1px solid #fff;
}

.footer-menu nav ul li a:hover {
	color: #000;
}

.muted-contact-foot ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

.muted-contact-foot ul li {
	color: #fff;
}

.muted-contact-foot {
    padding-top: 15px;
}

.muted-contact-foot ul li:not(:last-child) {
	border-right: 1px solid #fff;
	padding-right: 15px;
	margin-right: 15px;
}

.muted-contact-foot ul li a:hover {
	color: #000;
}

.banner-slider .owl-nav > button {
    width: 40px;
    height: 40px;
    background-color: var(--green) !important;
    border-radius: 0 !important;
    color: #fff !important;
}

.banner-slider .owl-nav {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1;
    display: flex;
    gap: 10px;
}

.about-banner-info p {
    color: #fff;
}

.stand-for-img-block {
    line-height: 0;
}

.stand-for-images {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

.stand-for-img-block img {
    width: 100%;
    max-width: 100%;
}

.stand-for-images > div {
	width: 100%;
	max-width: 50%;
}

.nature-box-list li p {
    font-size: 20px;
}

.nature-box-list li:not(:last-child) {
    margin-bottom: 15px;
}

ul.address-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    counter-reset: section;
    gap: 16px;
}

ul.address-list li {
    width: 100%;
    max-width: calc(100% / 2 - 8px);
    position: relative;
}

ul.address-list li:before {
    counter-increment: section;
    content: counter(section);
    font-size: 26px;
    background: #E6F0ED;
    height: 50px;
    width: 50px;
    display: flex;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-top: 16px solid #fff;
    border-bottom: 0 solid #E6F0ED;
    border-right: 25px solid #E6F0ED;
    border-left: 25px solid #E6F0ED;
    margin-left: 5px;
}

.address-box:before {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    right: 0;
    top: 0;
    border-top: 1px solid var(--green);
    border-right: 1px solid var(--green);
}

.address-box {
    padding: 15px;
    transition: all 0.5s ease 0s;
    border-left: 1px solid var(--green);
    border-bottom: 1px solid var(--green);
    position: relative;
}

.address-box:hover {
    border-color: #000;
}

ul.address-list li a {
    position: relative;
}

.address-box a {
    color: #000;
    display: block;
    font-size: 22px;
    font-weight: 500;
}

ul.address-list li a i {
    position: absolute;
    right: 30px;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    opacity: 0.3;
    font-size: 30px;
    transition: all 0.5s ease 0s;
    display: none;
}

.address-box h3 {
    font-weight: 400;
    color: var(--green);
}

ul.address-list li:hover i {
    opacity: 1;
}

.location-infobtm {
    text-align: center;
    max-width: 670px;
    margin: 0 auto;
    margin-top: 30px;
}

.location-map-sec {
	padding: 0;
}

.full-img {
    padding: 0;
    line-height: 0;
    position: relative;
    padding-top: 33%;
}

.full-img > img {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.full-img:before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
	z-index: 1;
}

ul.people-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

ul.people-list li {
    width: 100%;
    max-width: calc(100% / 3 - 10px);
}

.people-img {
    line-height: 0;
    margin-bottom: 0;
}

.people-info h3 {
    color: var(--green);
}

.people-info label {
    font-size: 18px;
    margin-bottom: 15px;
    display: block;
}

.people-info {
    padding: 10px;
    background-color: #f7f7f7;
}

.people-box {
    height: 100%;
    border: 1px solid #cccccc4a;
    background: #f7f7f7;
}

.key-people-sec {
    background-image: url('../images/storerepetbg.jpg');
    position: relative;
    border-bottom: 1px solid #ccc;
}

.key-people-sec:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.95);
}

.core-value-list li {
    font-size: 18px;
    font-weight: 300;
    width: 100%;
    max-width: calc(100% / 3);
    padding: 15px;
    position: relative;
}

.core-value-list li:before {
    background: var(--green);
    width: 24px;
    height: 24px;
    border-radius: 100%;
    margin-bottom: 24px;
    display: block;
    content: "";
}

.core-value-list li b {
    font-weight: 400;
    display: block;
    padding-bottom: 10px;
}

.core-value-list {
    display: flex;
    flex-wrap: wrap;
}

.about-home-right-info {
	padding-left: 15px;
}

.about-home-right-info .sec-heading {
    margin-bottom: 15px;
}

.pb-0 {
	padding-bottom: 0 !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}

.file-upload-btn {
    display: inline-block;
    position: relative;
}

.file-upload .file-input {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
}

.btn-bkc .btn {
	min-width: 130px;
}

.get-in-img-row {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.get-in-img-row > div {
    width: 100%;
    max-width: 50%;
    background-color: #edede9;
    padding-top: 30%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 30px;
    padding-right: 30px;
}

.get-ing1 {
	background-image: url('../images/natureimg.png');
}

.get-ing2 {
	background-image: url('../images/stand1.jpg');
}

.get-ing-img-block.get-ing1:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.7);
}

.get-in-img-row > div .get-in-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 15px;
}

.get-in-info p {
    color: #fff;
    font-size: 42px;
    max-width: 360px;
}

.get-ing-img-block.get-ing2:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--green);
    opacity: 0.7;
}

.get-ing-img-block.get-ing2 .btn.btn-primary {
	background-color: #fff;
	color: #000;
}

.get-ing-img-block.get-ing2 .btn.btn-primary:hover {
	background-color: #000;
	color: #fff;
}

.get-in-box-ctc span {
    display: block;
    line-height: 0;
    margin-bottom: 15px;
}

li.get-in-box-ctc {
    text-align: center;
}

.get-in-box-ctc a {
	color: #000	;
	font-size: 22px;
}

.get-in-box-ctc a:hover {
	color: var(--green);
}

.contact-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.contact-info-list li {
    width: 100%;
    max-width: calc(100% / 3 - 10px);
    background-color: #ffffff;
    padding: 20px;
}

.contact-contact-us-sec {
	background-color: #edede9;
}

.footer-logo a h2 {
    font-size: 34px;
    color: #fff;
    text-align: center;
    margin-bottom: 0;
}

.footer-logo a span {
    display: block;
    text-align: center;
}

.footer-logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.footer-logo a {
    display: inline-block;
    max-width: 220px;
    background: #fff;
    padding: 5px;
    line-height: 0;
}

.mobile-logo {
    background-color: #fff;
    padding: 10px;
    display: none;
}

.mobile-logo h2 {
    font-size: 28px;
    margin-bottom: 0;
    color: var(--green);
}

.mobile-logo span {
	color: #000;
	display: block;
}

i.fas.fa-phone {
    transform: rotate(90deg);
    top: 1px;
}

.reverse-cartoon-sec .cartoon-image {
    text-align: left;
}

.news-blog-img {
    line-height: 0;
    text-align: center;
    max-width: 100%;
}

.news-blog-info {
    padding-top: 30px;
}

.news-blog-info .btn-group {
    margin-top: 30px;
    display: flex;
    gap: 15px;
}

a.green-link {
    color: var(--green);
}

.people-block .sec-heading {
    margin-bottom: 0;
}


ul.list-items {
    font-size: 26px;
    padding-left: 20px;
}

ul.list-items li {
    list-style: disc;
    color: #333;
}

ul.list-items li:not(:last-child) {
    margin-bottom: 25px;
}

.about-right-info ul.list-items {
    margin-top: 50px;
}

section.cms-sec-in-team {
    background: #f7f7f7;
    border-top: 1px solid #ccc;
}

.we-stack-sec .sec-heading h4 {
    color: #fff;
    margin-top: 40px;
}

.people-box {
    height: 100%;
}

.people-img {
    line-height: 0;
    margin-bottom: 0;
    padding-top: 130%;
    position: relative;
}

.people-img img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(1);
}

a.green-link:hover {
    color: #000;
}

section.news-banner {
    padding-top: 0;
}

.news-blog-img img {
    width: 100%;
}

