

:root{
	--primary-color				: #03221B;
	--secondary-color			: #FAFAFA;
	--text-color				: #727272;
	--accent-color				: #8EC73D;
	--accent-secondary-color	: #F9900A;
	--white-color				: #FFFFFF;
	--divider-color				: #03221B1A;
	--dark-divider-color		: #FFFFFF25;
	--error-color				: rgb(230, 87, 87);
	--default-font				: "DM Sans", sans-serif;
	--accent-font				: "Rajdhani", sans-serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body{
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	 background: #ffffff; 
	/* background: #ffffff; */
}

/* ::-webkit-scrollbar-track{
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar{
	width: 7px;
	background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb{
	background: var(--accent-color);
} */

/* ::selection{
	color: var(--primary-color);
	background-color: var(--secondary-color);
	filter: invert(1);
} */

p{
	line-height: 1.6em;
	margin-bottom: 1.57em;
}

h1,
h2,
h3,
h4,
h5,
h6{
	margin :0;
	font-family: var(--accent-font);
	font-weight: 600;
	line-height: 1.1em;
	color: var(--primary-color);
}

figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}

.container{
	max-width: 1200px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl{
	position: relative;
    padding-right: 15px;
    padding-left: 15px;
	z-index: 1;
}

/* .image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
} */
.testimonial-pagination {
	text-align: center;
	margin-top: 20px;
  }
  .custom-bullet {
	display: inline-block;
	width: 10px;
	height: 10px;
	margin: 0 5px;
	background: #ccc;
	border-radius: 50%;
	cursor: pointer;
	transition: background 0.3s;
  }
  .custom-bullet.active {
	background: green; /* Active bullet color */
  }
  
.row{
    margin-right: -15px;
    margin-left: -15px;
}

.row > *{
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters{
    margin-right: 0px;
    margin-left: 0px;
}

.row.no-gutters > *{
    padding-right: 0px;
    padding-left: 0px;
}
.header-contact-btn .btn-default{
	position: relative;
    display: inline-block;
    background: #2e7d32;
	border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 13px 22px 13px 22px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}
.btn-default{
	position: relative;
    display: inline-block;
    background: #2e7d32;
    font-size: 16px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 13px 22px 13px 22px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}

.btn-default:hover{
	background: transparent;
	color: var(--white-color);
	border: 1px solid #909090;
}

/* .btn-default::before{
	content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url('../images/arrow-white.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}

.btn-default:hover::before{
	transform: translate(-17px, -50%);
} */

.btn-default::after{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
	right: 0;
    width: 0;
    height: 106%;
    background: var(--primary-color);
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.btn-default:hover:after{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.btn-default.btn-highlighted:hover{
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover::before{
	filter: brightness(1) invert(1);
}

.btn-default.btn-highlighted::after{
	background: var(--white-color);
}

.readmore-btn{
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: normal;
	text-transform: capitalize;
    color: #2e7d32;
	padding-right: 30px;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover{
	color: var(--primary-color);
}
.readmore-btn::before {
	font-family: "Material Design Icons"; /* Required to render MDI icons */
	content: "\F0142"; /* Unicode for mdi-chevron-right */
	margin-right: 6px;
	font-size: 18px;
	vertical-align: middle;
	right: 0;
	top: 2px;
	position: absolute;
  }
/* .readmore-btn::before{
	content: '';
    position: absolute;
	right: 0;
	top: 1px;
	transform: translateX(-3px);
    background: url('../images/arrow-accent-secondary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
} */

.readmore-btn:hover::before{
	filter: brightness(0) invert(0);
	transform: translateX(0px);
}

/* .cb-cursor:before{
	background: #2e7d32;
} */

.preloader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading{
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container{
	margin: 40px auto;
}

.loading{
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading{
	transition: all 0.5s ease-in-out;
}

#loading-icon{
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading{
	0%{
		transform: rotate(0deg);
	}

	100%{
		transform: rotate(360deg);
	}
}

.section-row{
	margin-bottom: 80px;
}

.section-row .section-title{
	margin-bottom: 0;
}

.section-title{
	margin-bottom: 25px;
}

.section-title h3{
	display: inline-block;
	position: relative;
	font-family: var(--default-font);
	font-size: 16px;
    font-weight: 600;
	line-height: 1.5em;
	letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
	/* background: url('../images/icon-sub-heading.svg') no-repeat;
	padding-left: 34px; */
	background-position: left center;
	background-size: 24px auto;
    margin-bottom: 12px;
}

.section-title h1{
	font-size: 37px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 10px;
	font-family: "Poppins", sans-serif;
}

.section-title h2{
	color: #2b2b2b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 38px;
    font-family: "Poppins", sans-serif;
}

.section-title p{
	margin-top: 4px;
	margin-bottom: 10px;
}

.section-title-content p{
	margin: 0;
}

.section-btn{
	text-align: right;
}

.section-content-btn .section-btn{
	text-align: left;
	margin-top: 30px;
}

.dark-section{
	
}

.dark-section .section-title-content p,
.dark-section .section-title p,
.dark-section .section-title h3,
.dark-section .section-title h2,
.dark-section .section-title h1{
	color: #2b2b2b;
}

.help-block.with-errors ul{
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li{
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header{
	position: fixed;
    top: 0;
    width: 100%;
    border-bottom: 1px solid var(--dark-divider-color);
    z-index: 100;
	
}

header.main-header .header-sticky{
	position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: #fff; /* Ensure it's not transparent */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header.main-header .header-sticky.hide{
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
	border-radius: 0;
}

header.main-header .header-sticky.active{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
    transform: translateY(0);
	background: var(--primary-color);
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar{
	padding: 3px 0;
	align-items: center;
	background: #ffffff;
	/* box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 6px; */
}
.home-banner{
	/* box-shadow: rgba(0, 0, 0, 0.35) 0px 0px 4px;
	margin-top: 75px; */
}

.navbar-brand{
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper{
	flex: 1;
	text-align: right;
	margin: 0 20px;
}

.main-menu .nav-menu-wrapper > ul{
	align-items: center;
	display: inline-flex;
}

.main-menu ul li{
	margin: 0;
	position: relative;
}

.main-menu ul li a{
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 15px 20px !important;
	color: #000;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}
/* .fixed-pickup-btn {
    position: fixed;
    bottom: 30px;
    left: 10px;
    z-index: 9999;
	margin-top: 10px;
} */

.fixed-pickup-btn a {
	padding: 13px 13px 13px 12px;
    background-color: #2e7d32;
    color: #ffffff;
    font-weight: bold;
   
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.fixed-pickup-btn a:hover {
    background-color: #badfb3;
    color: #fff;
}
.main-menu ul li.submenu > a:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus{
	color: #2e7d32;
}

.main-menu ul ul{
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 20px;
	position: absolute;
	left: 0;
	top: 100%;
	background: #fff;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul{
    width: 235px;
}

.main-menu ul ul ul{
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover > ul{
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
    padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu > a:after{
    content: '\f105';
    float: right;
}

.main-menu ul ul li{
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a{
	color: #000;
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
	font-weight: 500;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus{
	color: #225f25;
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu{
    display: none;
}
.navbar-nav .nav-link.active {
	color: #225f25 !important;
	font-weight: 500;
  }
.responsive-menu,
.navbar-toggle{
	display: none;
}

.responsive-menu{
	top: 0;
	position: relative;
}

.slicknav_btn{
	background: #cbe6be;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
}

.slicknav_icon .slicknav_icon-bar{
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child{
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child{
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1){
    transform: rotate(-45deg) translate(-5px, 5px);
	background-color: var(--primary-color);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2){
    opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3){
    transform: rotate(45deg) translate(-5px, -5px);
	background-color: var(--primary-color);
}

.slicknav_menu{
	position: absolute;
    width: 100%;
    padding: 0;
    z-index: 107;
    background: #f3f3f3;
}

.slicknav_menu ul{
	margin: 5px 0;
}
.hero-content .section-title h1{
    color: #ffffff;
}
.hero-content .section-title h3{
    color: #ffffff;
}
.hero-content .section-title p{
    color: #ffffff;
}
.slicknav_menu ul ul{
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a{
	position: relative;
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	padding: 8px 20px;
	color: #000;
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover{
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a{
    padding: 8px 20px 8px 30px;
}

.slicknav_arrow{
	font-size: 0 !important;
}

.slicknav_arrow:after{
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color:#242424;
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open > a .slicknav_arrow:after{
    transform: translateY(-50%) rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero{
	position: relative;
	background: url('../images/hero-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 215px 0 150px;
}

/* .hero::before{
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(3, 34, 27, 0) 74.01%, rgba(3, 34, 27, 0.9) 100%), linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgba(3, 34, 27, 0.516) 41.43%, rgba(3, 34, 27, 0.86) 58.93%);
	width: 100%;
	height: 100%;
	z-index: 1;
} */

.hero.hero-video .hero-bg-video{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout{
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide{
	position: relative;
    /* padding: 260px 0 150px; */
}

/* .hero.hero-slider-layout .hero-slide::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(360deg, rgba(3, 34, 27, 0) 74.01%, rgba(3, 34, 27, 0.9) 100%), linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgba(3, 34, 27, 0.516) 41.43%, rgba(3, 34, 27, 0.86) 58.93%);
    width: 100%;
    height: 100%;
    z-index: 1;
} */

.hero.hero-slider-layout .hero-slide .hero-slider-image{
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination{
	position: absolute;
    bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2) + 15px);
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    background: var(--dark-divider-color);
    opacity: 1;
    transition: all 0.3s ease-in-out;
    margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active{
    background-color: var(--accent-color);
}

.hero-body{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
}

.hero-review-box{
	display: flex;
    align-items: center;
    gap: 20px;
}

.hero-review-images{
	display: flex;
	align-items: center;
}

.hero-review-image{
    display: inline-block;
    margin-left: -12px;
}

.hero-review-image:first-child{
	margin: 0;
}

.hero-review-image figure{
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
}

.hero-review-image img{
	width: 100%;
	border-radius: 50%;
}
.btn-secondary1{
	border: 1px solid green;
    padding: 5px 10px;
    background: green;
    color: #fff;
    font-size: 14px;
    margin-top: 20px;
}
.wecollect h6{
	font-family: sans-serif;
    font-weight: 300;
    font-size: 13px;
    margin-top: 5px;
	color: #232323;

}
.wecollect p{
	color: #494949;
    font-size: 11px;
    padding-top: 1px;
}
.service-data h5{
	color: #03221b;

}
.btn-secondary1:hover{
	border: 1px solid #000;
  
}
.hero-review-content h3{
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.hero-review-content p{
	color: var(--white-color);
	opacity: 80%;
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-scrolling-ticker{
	background: #589654;
	padding: 14px 0;
}

.scrolling-ticker-box{
	--gap: 20px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content{
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 60s linear infinite;
}

@keyframes scroll{
	from{
		transform: translateX(0);
	}

	to{
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-content span{
	font-family: var(--accent-font);
	display: flex;
	align-items: center;
	font-size: 30px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	line-height: 1em;
	color: var(--white-color);
}

.scrolling-content span img{
	width: 26px;
	margin-right: 20px;
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

.about-us{
	background: #f6f6f6;
    background-position: bottom -70px right -200px;
    background-size: auto;
    padding: 40px 0 30px;
}

.about-images{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-img-1,
.about-img-2{
	width: calc(50% - 15px);
}
.why-choose-content .section-title p{
	margin: 0px auto;
    width: 955px;
	color: #585858;
	margin-bottom: 20px;
}
.about-img-1 figure,
.about-img-2 figure{
	display: block;
	border-radius: 999px;
}

.about-img-1 img,
.about-img-2 img{
	width: 100%;
	aspect-ratio: 1 / 1.9;
	object-fit: cover;
	border-radius: 999px;
}

.about-img-2{
	margin-top: 70px;
}

.years-experience-box{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 160px;
	height: 160px;
	align-content: center;
	text-align: center;
	background: #589654;
	border: 10px solid var(--white-color);
	border-radius: 50%;
	transform: translate(-50%, -50%);
}

.years-experience-box::before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-images:hover .years-experience-box::before{
	transform: scale(1);
}

.years-experience-box h2,
.years-experience-box p{
	position: relative;
	z-index: 1;
}

.years-experience-box h2{
	font-size: 46px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 2px;
}

.years-experience-box p{
	line-height: normal;
	color: var(--white-color);
	margin-bottom: 0;
}

.about-us-content{
	margin-left: 20px;
}
.modal-body .form-select{
	font-size: 14px;
	color: #000;
	border: 1px solid #b5b5b5;
}
.didYouKnowSwiper {
	position: relative;
  }
  
  .swiper-pagination {
	text-align: center;
	margin-top: 10px;
  }
  
  .swiper-pagination-bullet {
	background-color: #28a745;
	opacity: 1;
  }
  .swiper-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{
	margin-bottom: -15px;
  }
  .swiper-pagination-bullet-active {
	background-color: #0f5132;
  }
  
.modal-body .form-control{
	font-size: 14px;
	color: #000;
}
.swiper-pagination-bullet{
	margin-top: 90px;
}
.modal-body .row > *{
	align-items: center;
}
.modal-body input{
	font-size: 14px;
	color: #000;
}
.about-us-body{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.about-us-content .section-title h4{
	font-family: sans-serif;
	margin-bottom: 10px;
	font-size: 20px;
}
.about-us-content .section-title h3{
	font-size: 28px;
	margin-bottom: 20px;
	letter-spacing: 0;
	text-transform: capitalize;
	text-align:center ;
	font-family: sans-serif;
	/* padding-left: 180px; */
}
.why-did{
	padding: 20px 0px;
}
.about-us .section-title i{
	padding-right: 10px;
	color: #00aa29;
	font-size: 32px;
}
.blog-section .section-title h2{
	font-size: 28px;
	font-weight: 600;
	margin-bottom: 20px;
}
.about-body-item{
	/* width: calc(50% - 15px); */
	display: flex;
	align-items: center;
	/* background: #badfb3; */
	/* border: 1px solid var(--divider-color); */
	border-radius: 20px;
    padding: 0px 14px 0px 5px;
}

.about-body-item .icon-box{
	position: relative;
	/* width: 60px;
	height: 60px;
	background: #badfb3; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.about-body-item .icon-box1{
	position: relative;
	/* width: 60px;
	height: 60px;
	background: #badfb3; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.about-body-item .icon-box{
	position: relative;
	/* width: 60px;
	height: 60px;
	background: #badfb3; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}
.about-body-item .icon-box1{
	position: relative;
	/* width: 60px;
	height: 60px;
	background: #badfb3; */
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
}

/* .about-body-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
} */

.about-body-item:hover .icon-box::before{
	transform: scale(1);
}

.about-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 62px;
	z-index: 1;
}
.about-body-item:hover .icon-box1::before{
	transform: scale(1);
}

.about-body-item .icon-box1 img{
	position: relative;
	width: 100%;
	max-width: 62px;
	z-index: 1;
}

.about-body-item-title{
	position: relative;
	/* width: calc(100% - 70px); */
	z-index: 1;
}

.about-body-item-title h3{
	font-size: 20px;
	/* text-transform: capitalize; */
	line-height: 19px;
}

.about-us-footer{
	margin-top: 40px;
}

.about-us-footer{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 50px;
	margin-top: 40px;
}

.about-author-box{
	display: flex;
	align-items: center;
}

.about-author-box .author-image{
	display: block;
	border-radius: 50%;
}

.about-author-box .author-image figure{
	display: block;
	border-radius: 50%;
}

.about-author-box .author-image img{
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.about-author-box .author-info h3{
	font-size: 22px;
	margin-bottom: 5px;
}

.about-author-box .author-info p{
	margin-bottom: 0;
}

/************************************/
/*** 	  07. Our Services css	  ***/
/************************************/

.our-services{
	background: var(--secondary-color) url('../images/section-bg-2.png') no-repeat;
	background-position: bottom -40px left -60px;
	background-size: auto;
    padding: 100px 0;
}

.service-item{
	position: relative;
	/* background-color: #fff; */
	/* border: 1px solid var(--divider-color); */
	/* border-radius: 20px; */
	padding: 10px 10px;
	overflow: hidden;
}	

/* .service-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background:#589654;
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
} */

/* .service-item.active::before,
.service-item:hover::before{
	height: 100%;
	border-radius: 0;
} */

.service-item .icon-box{
	position: relative;
	height: 75px;
	width: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto;
	border-radius: 50%;
	margin-bottom: 10px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}
.service-item .icon-box1{
	position: relative;
	height: 75px;
	width: 75px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0px auto;
	border-radius: 50%;
	margin-bottom: 10px;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

/* .service-item.active .icon-box,
.service-item:hover .icon-box{
	background-color: var(--secondary-color);
} */

.service-item .icon-box img{
	width: 100%;
	max-width: 120px;
	transition: all 0.5s ease-in-out;
}

.service-item.active .icon-box img,
.service-item:hover .icon-box img{
	/* filter: brightness(0) invert(0); */
}
.our-fact-content .section-title p{
	width: 800px;
	margin: 0px auto;
  }   
.service-item-content{
	/* position: relative;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
	transition: all 0.3s ease-in-out;
	z-index: 1; */
}

/* .service-item.active .service-item-content,
.service-item:hover .service-item-content{
	border-bottom-color: var(--dark-divider-color);
} */

.service-item-content h3{
	font-size: 22px;
	transition: all 0.3s ease-in-out;
	text-align: center;
}

.service-item-content h3 a{
	color: #373737;
    font-size: 20px;
    font-weight: 600;
	margin-bottom: 5px;
}
.serv-item img{
	width: 130px;
    height: 125px;
}
.Our-Services{
	padding-bottom: 40px;
}
.Our-Services .serv-item{
	box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 6px;
    height: 100%;
    padding: 10px 10px 20px;
    border-radius: 10px;
}
.service-item-content p{
	color: #4c4c4c;
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
	text-align: center;
	font-size: 14px;
    line-height: 16px;
}

.service-readmore-btn{
	position: relative;
	z-index: 1;
}

/* .service-item.active .service-item-content h3,
.service-item:hover .service-item-content h3,
.service-item.active .service-item-content p,
.service-item:hover .service-item-content p,
.service-item.active .service-readmore-btn .readmore-btn,
.service-item:hover .service-readmore-btn .readmore-btn{
	color: var(--white-color);
}

.service-item.active .readmore-btn::before,
.service-item:hover .readmore-btn::before{
	filter: brightness(0) invert(1);
} */

.service-pagination{
	text-align: center;
	margin-top: 50px;
}

.service-pagination .swiper-pagination-bullet{
    height: 8px;
    width: 8px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 2px;
	border-radius: 100px;
    transition: all 0.3s ease-in-out;
}

.service-pagination .swiper-pagination-bullet-active{
    width: 24px;
    background-color: #2e7d32;
}

/************************************/
/*** 	 08. Why Choose Us css	  ***/
/************************************/

.why-choose-us{
	padding: 30px 0 30px;
	background: #f6f6f6;
	margin-bottom: 40px;
}

.why-choose-list{
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.why-choose-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list ul li{
    background-image: url('../images/arrow-accent-secondary.svg');
	background-repeat: no-repeat;
	background-position: left top 1px;
	background-size: 20px auto;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 25px;
}

.why-choose-list ul li:last-child{
	margin-bottom: 0;
}

.why-choose-btn{
	margin-top: 40px;
}

.why-choose-images{
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
	margin-left: 15px;
}

.why-choose-image-box-1{
	width: calc(48% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-image-box-2{
	width: calc(52% - 15px);
	margin-top: 100px;
}

.why-choose-image{
	width: 100%;
}

.why-choose-image figure{
	display: block;
	border-radius: 20px;
}

.why-choose-image img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image.why-img-1{
	aspect-ratio: 1 / 1.065;
}

.why-choose-image.why-img-2 img{
    aspect-ratio: 1 / 0.78;
}

.why-choose-image.why-img-3 img{
    aspect-ratio: 1 / 1.692;
}

/************************************/
/*** 	 09. Our Projects css	  ***/
/************************************/

.our-projects{
	padding: 100px 0;
}

.project-item{
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-image{
	border-radius: 20px;
	overflow: hidden;
}

.project-image a,
.project-image figure{
	display: block;
	cursor: none;
}

.project-image figure::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(3, 34, 27, 0) 45.62%, rgba(3, 34, 27, 0.8) 76.07%);
	width: 100%;
	height: 100%;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-image img{
	width: 100%;
	aspect-ratio: 1 / 1.24;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-image img{
	transform: scale(1.1);
}

.project-body{
	position: absolute;
	left: 30px;
	bottom: 30px;
	right: 30px;
	transform: translateY(20px);
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-body{
    transform: translateY(0);
}

.project-content h3{
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 15px;
}

.project-content h3 a{
	color: inherit;
}

.project-body p{
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 0;
}

.project-readmore-btn{
	opacity: 0;
	visibility: hidden;
    transition: all 0.3s ease-in-out;
}

.project-item:hover .project-readmore-btn{
    margin-top: 20px;
    opacity: 1;
    visibility: visible;
}

.project-readmore-btn .readmore-btn:hover{
	color: var(--white-color);
}

.project-readmore-btn .readmore-btn:hover::before{
	filter: brightness(0) invert(1);
}

.section-footer-text{
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p{
	margin-bottom: 0;
}

.dark-section .section-footer-text p{
	color: var(--white-color);
}

.section-footer-text span{
	font-family: var(--accent-font);
	font-weight: 600;
	background: #2e7d32;
	padding: 3px 10px;
	border-radius: 100px;
	margin-right: 10px;
}

.section-footer-text p a{
	font-weight: 700;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: #2e7d32;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover{
	color: var(--accent-color);
}

/************************************/
/*** 	10. Our Environment css	  ***/
/************************************/

.our-environment{
	padding: 100px 0;
}

.our-environment-images{
	display: flex;
	align-items: center;
	margin-right: 10px;
}

.environment-img-1,
.environment-img-2{
	width: 100%;
	border-radius: 20px;
}

.environment-img-1 figure,
.environment-img-2 figure{
	display: block;
	border-radius: 20px;
}

.environment-img-1 figure img,
.environment-img-2 figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.environment-img-1 figure img{
	aspect-ratio: 1 / 1.399;
}

.environment-img-2{
	width: 100%;
	max-width: 310px;
	margin-left: -111px;
}

.environment-img-2 figure{
	border: 4px solid var(--white-color);
	border-radius: 24px;
}

.environment-img-2 figure img{
	aspect-ratio: 1 / 1.2;
}

.experience-circle{
	position: relative;
	display: inline-block;
	border: 4px solid var(--white-color);
	border-radius: 50%;
	margin-left: 40px;
	margin-top: -80px;
	z-index: 1;
}

.experience-circle img{
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

@keyframes infiniterotate{
	from{
		transform: rotate(0deg);
	  }
	to{
		transform: rotate(360deg);
	}
}

.environment-body-item{
	text-align: center;
	border-bottom: 1px solid #bcbcbc;
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.environment-body-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
	border: 1px solid #b1b1b1;
    height: 100%;
    border-radius: 20px;
	background: #fff;
}

.environment-body-item .icon-box{
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 20px;
}

.environment-body-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    border-radius: 50%;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
	z-index: 0;
}

.environment-body-item:hover .icon-box::before{
	transform: scale(1);
}

.environment-body-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.environment-body-item-content{
	padding: 20px;
}

.environment-body-item-content h3{
	border-bottom: 1px solid #bcbcbc;
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 10px;
    padding-bottom: 7px;
    color: #474747;
}

.environment-body-item-content p{
	margin-bottom: 0;
	color: #474747;
}
.contact-info-box .row{
	box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 8px 0px;
    border-radius: 20px;
}
/************************************/
/*** 	   11. Our Facts css	  ***/
/************************************/

.our-facts{
	position: relative;
	/* background: url('../images/fact-bg.jpg'); */
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	margin-top: 30px;
}

.our-facts::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background: linear-gradient(270deg, rgb(186 223 179) -31.52%, rgb(253 251 219) 45.81%); */
	width: 100%;
	height: 100%;
	z-index: 0;
}

.our-facts .container{
	position: relative;
	z-index: 1;
}

.our-fact-content{
	height: calc(100% - 100px);
	align-content: center;
	margin: 50px 20px;
}

.fact-list ul{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.fact-list ul li{
	width: calc(50% - 15px);
    line-height: 1.5em;
	color: var(--white-color);
    background-image: url('../images/arrow-accent-secondary.svg');
	background-repeat: no-repeat;
	background-position: left top 1px;
	background-size: 20px auto;
    padding-left: 30px;
}
.left-div p{
	display: none;
}

.fact-counter-list{
	display: flex;
	flex-wrap: nowrap;
    gap: 30px 30px;
	border-top: 1px solid var(--dark-divider-color);
	/* margin-top: 50px; */
	padding-top: 20px;
}

.fact-counter-item{
	position: relative;
    background: #badfb3; 
    padding: 15px;
    border-radius: 20px;
	height: 100%;
}
.home .fact-counter-item{
	position: relative;
    background: #f6f6f6;
    padding: 15px;
    border-radius: 20px;
    height: 100%;
    margin-right: 10px;
}
.fact-counter-item:after{
	content: '';
    position: absolute;
    top: 0;
    right: -30px;
    bottom: 0;
    background: var(--dark-divider-color);
    width: 1px;
    height: 100%;
}

.fact-counter-item:last-child:after,
.fact-counter-item:nth-child(3n + 3)::after{
	display: none;
}

.fact-counter-item img{
	width: 100%;
	max-width: 90px;
    margin-bottom: 3px;
}

.fact-counter-item h2{
	font-size: 16px;
    line-height: 17px;
	color: #000;
	font-family: sans-serif;
	margin-bottom: 0px;
}
.modal-popup{
	padding: 20px 20px 0px;
}
.fact-counter-item p{
	color: #000000;
    opacity: 80%;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 17px;
    margin-top: 5px;
}

.our-fact-image{
	padding-left: 15px;
	margin-top: -30px;
	text-align: center;
}

.our-fact-image figure{
	display: block;
}

.our-fact-image img{
    width: 100%;
    aspect-ratio: 1 / 1.49;
    object-fit: cover;
}

/************************************/
/*** 	  12. What We Do css	  ***/
/************************************/

.what-we-do{
	padding: 100px 0;
}

.What-we-do-content{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.what-we-do-list ul{
	list-style: none;
	margin: 0;
	padding: 0;
	margin-bottom: 20px;
}

.what-we-do-list ul li{
    background-image: url('data:image/svg+xml;utf8,<svg fill="%2300a651" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 12h14M13 6l6 6-6 6"/></svg>');
	background-repeat: no-repeat;
	background-position: left top 1px;
	background-size: 20px auto;
    line-height: 1.5em;
    padding-left: 30px;
	margin-bottom: 20px;
}

.what-we-do-list ul li:last-child{
	margin-bottom: 0;
}

.what-we-do-btn{
	margin-top: 40px;
}

.what-do-item-list{
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
}

.what-we-do-item{
	position: relative;
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.what-we-do-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--accent-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-do-item.active::before,
.what-we-do-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.what-we-do-item .icon-box{
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.what-we-do-item .icon-box img{
	width: 100%;
	max-width: 60px;
	transition: all 0.4s ease-in-out;
}

.what-we-do-item.active .icon-box img,
.what-we-do-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.what-do-item-content h3,
.what-do-item-content p{
	position: relative;
	z-index: 1;
}

.what-do-item-content h3{
	font-size: 22px;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.what-do-item-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.what-we-do-item.active .what-do-item-content h3,
.what-we-do-item:hover .what-do-item-content h3,
.what-we-do-item.active .what-do-item-content p,
.what-we-do-item:hover .what-do-item-content p{
	color: var(--white-color);
}

.what-we-do-box .section-footer-text{
	margin-top: 40px;
}

/************************************/
/*** 	 13. How It Work css	  ***/
/************************************/

.how-it-work{
	background: #ffffff;
	background-repeat: no-repeat;
	background-position: bottom left;
	background-size: 100% auto;
	padding: 30px 0 40px;
}

.work-step-item-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.work-step-item{
	/* width: calc(25% - 22.5px); */
	text-align: center;
	background: #badfb3;
	border-radius: 20px;
}
.hom1 .work-step-item{
	/* width: calc(25% - 22.5px); */
	text-align: center;
	background: #fff;
	border-radius: 20px;
}

.work-step-image{
	margin-bottom: 0px;
}

.work-step-image figure{
	display: block;
	border-radius: 20px;
}

.work-step-image img{
	width: auto;
	height: 120px;
	/* aspect-ratio: 1 / 0.746;
	object-fit: cover; */
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-image img{
	transform: scale(1.1);
}

.work-step-content{
	position: relative;
	/* padding-top: 30px; */
}

.work-step-content h2{
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 90px;
	font-weight: 700;
	line-height: 0.9em;
	color: var(--secondary-color);
	background: var(--divider-color);
	background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-stroke: 2px transparent;
	transition: all 0.4s ease-in-out;
}

.work-step-item:hover .work-step-content h2{
	color: transparent;
}

.work-step-content h3,
.work-step-content p{
	position: relative;
	z-index: 1;
	color: #000;

}
.why-did .container{
	padding: 0px 50px;
}
.why-did .did-you-know-swiper p{
	margin-bottom: 5px;
}
.why-did .did-you-know-swiper .card{
	padding: 20px 15px 10px;
}
.why-did .card{
	background: #badfb3;
  }
  .why-did .card.bg-green-overlay .card-body h5,
  .why-did .card.bg-green-overlay .card-body p {
  color: #fff;
  font-weight: 500;
}
.know-waste .work-step-content h3{
	padding-bottom: 10px;
}
.work-step-content h3{
	font-size: 20px;
    font-family: sans-serif;
}
.work-step-content img{
	width: 50px;
}

.work-step-content {
	margin-bottom:5px;
	
}
.breadcrumb-item+.breadcrumb-item {
    padding-left: 0;
}
.work-step-content p{
	padding: 4px 10px 0px;
    /* font-weight: 600; */
    font-size: 14px;
    line-height: 17px;
}
.work-step-content img{
	padding-top: 3px;
	padding-bottom: 12px;
}
.why-choose-us .why-row{
	background: #badfb3;
	margin: 20px 100px;
	border-radius: 20px;
	padding: 10px;
}
.why-choose-us .section-title h2 {
	color: #2b2b2b;
    font-size: 24px;
    font-weight: 600;
    line-height: 38px;
    font-family: "Poppins", sans-serif;
}
.why-did h2 {
	color: #2b2b2b;
    font-size: 28px;
    font-weight: 600;
    padding-top: 10px;
    line-height: 38px;
	margin-bottom: 20px;
	text-align: center;
    font-family: "Poppins", sans-serif;
}
.donate-box{
	display: flex;
	gap: 30px 60px;
	flex-wrap: wrap;
	border-radius: 20px;
	padding: 80px;
	margin-top: 80px;
	margin-bottom: -220px;
}

.donate-box .section-title{
	width: calc(40% - 30px);
	margin-bottom: 0;
}

.donate-form{
	width: calc(60% - 30px);
}

.donate-form .form-control{
	font-size: 16px;
	line-height: 1.5em;
	font-weight: 700;
	background-color: transparent;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	box-shadow: none;
	outline: none;
	padding: 17px 20px;
}

.donate-form .form-control::placeholder{
	color: var(--white-color);
}

.donate-value-box{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 30px;
}

.donate-form .donate-value{
	width: calc(33.33% - 6.66px);
}

.donate-value-box .donate-value input{
	position: absolute;
	left: -9999px;
}

.donate-value-box .donate-value label{
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	line-height: 1.5em;
	background-color: transparent;
	border: 1px solid var(--dark-divider-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 17px;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
	overflow: hidden;
}

.donate-value-box .donate-value input[type="radio"]:hover+label,
.donate-value-box .donate-value input[type="radio"]:focus+label,
.donate-value-box .donate-value input[type="radio"]:checked+label{
	background: #2e7d32;
	border-color: #2e7d32;
	color: var(--white-color);
}

.donate-form .form-group-btn .btn-default.btn-highlighted{
	width: 100%;
	display: block;
	text-align: center;
	padding: 18px;
}

.donate-form .form-group-btn .btn-default.btn-highlighted::before{
	display: none;
}

/************************************/
/*** 	   14. Our FAQs css 	  ***/
/************************************/

.our-faqs{
	background: #f6f6f6;
    padding: 55px 0;
}
.our-feature .row{
	border: 1px solid #d3d3d3;
    padding: 25px 0px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 8px;
}
.faq-image{
	position: relative;
	overflow: hidden;
	border-radius: 20px;
}
.homeSwiper .swiper-slide {
	transition: transform 0.4s ease, opacity 0.4s ease;
	transform: scale(0.9);
	opacity: 1;
  }
  
element.style {
}
@media (max-width: 1199px) {
    .home-banner .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, 5px);
        right: auto;
    }
}
@media (max-width: 1199px) {
    .swiper-button-prev, .swiper-rtl .swiper-button-next {
        left: var(--swiper-navigation-sides-offset, 0px);
        right: auto;
    }
}
@media (max-width: 1199px) {
    .custom-nav {
        width: 33px;
        height: 33px;
        background-color: rgb(0 0 0 / 39%);
        color: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 14px;
        z-index: 10;
        transition: background 0.3s ease;
    }
	
}
.custom-nav {
    width: 40px;
    height: 40px;
    background-color: rgb(0 0 0 / 39%);
    color: #fff;
    border-radius: 50%;
    display: flex
;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: background 0.3s ease;
}
.swiper-button-prev, .swiper-rtl .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 10px);
    right: auto;
}

 .swiper-slide{
	height: auto;
 }
  /* Active (centered) slide styling */
  .homeSwiper .swiper-slide-active {
	transform: scale(1.0);
	opacity: 1;
	z-index: 2;
	/* box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); */
  }
  
  /* Optional: give each slide a fixed max width for layout consistency */
  .homeSwiper .swiper-slide img {
	border-radius: 16px;
	width: 100%;
	display: block;
  }
.faq-image figure{
	display: block;
}
.about-us-content{
	/* text-align: center; */
}
.faq-image figure::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	/* background: linear-gradient(180deg, rgba(3, 34, 27, 0) 52.02%, rgba(3, 34, 27, 0.8) 100%); */
    width: 100%;
    height: 100%;
    z-index: 1;
}

.faq-image img{
	width: 100%;
	
}

.client-review-content{
	position: absolute;
	text-align: center;
	bottom: 25px;
	right: 25px;
	left: 25px;
	z-index: 1;
}

.client-review-content p{
	font-size: 20px;
	color: var(--white-color);
	font-weight: 600;
	margin-bottom: 10px;
}

.client-review-content ul{
	list-style: none;
	margin: 0;
	padding: 0;
}

.client-review-content ul li{
	display: inline-block;
}

.client-review-content ul li i{
	color: #2e7d32;
}

.faq-accordion .accordion-item{
	position: relative;
    background: #badfb3;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	margin-bottom: 20px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}
.wecollect .row{
	justify-content: left !important;
}
.faq-accordion .accordion-item:last-child{
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button{
	font-size: 17px;
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	line-height: 1.1em;
    background: transparent;
	padding: 11px 50px 11px 20px;
    color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed{
	color: var(--primary-color);
	background:#badfb3;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	content: '\f054';
	font-family: "FontAwesome";
	position: absolute;
    right: 20px;
    top: 50%;
    bottom: auto;
	transform: translateY(-50%) rotate(90deg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    width: 20px;
    height: 20px;
    color: var(--white-color);
    background-color: #2e7d32;
   
	transition: all 0.3s ease-in-out;
}
.date-wrapper {
    position: relative;
    display: inline-block;
    width: 220px;
  }

  .date-wrapper input[type="date"] {
    width: 100%;
    padding-right: 35px; /* space for icon */
    box-sizing: border-box;
    height: 35px;
    font-size: 14px;
  }

  .calendar-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    cursor: pointer;
    pointer-events: auto;
  }

  .calendar-icon i {
    font-size: 16px;
  }
.faq-accordion .accordion-item .accordion-button.collapsed::after{
	transform: translateY(-50%) rotate(0);
}
.mb-3 {
    margin-bottom: 0.9rem !important;
}
.modal-header h5{
	color: #fff;
}
.otp-class{
	width: 35%;
	margin-top: 10px;
}
.mob-class{
	width: 65%;
	margin-top: 10px;
}
.faq-accordion .accordion-item .accordion-body{
	background: transparent;
	border-top: 1px solid var(--divider-color);
	padding: 15px 50px 15px 20px;
}

.faq-accordion .accordion-item .accordion-body p{	
	margin: 0;
	color: #212121;
}
/* .testimonial-content {
	max-height: 120px;
	overflow-y: hidden;
	padding-right: 10px; 
  }
  
  .testimonial-content:hover{
	overflow-y: auto;
	scrollbar-gutter: stable; 
  }
  .testimonial-content::-webkit-scrollbar {
	width: 6px;
  }
  
  .testimonial-content::-webkit-scrollbar-thumb {
	background-color: transparent;
	border-radius: 10px;
  } */
  .testimonial-content {
	max-height: 120px; /* Adjust height as needed */
	overflow-y: auto;
	padding-right: 10px; /* Optional: for better scroll experience */
  }
  .text-div p img{
	width: 18px;
	margin-bottom: 6px;
  }
  /* Optional: style the scrollbar (WebKit only) */
  .testimonial-content::-webkit-scrollbar {
	width: 6px;
  }
  .testimonial-content::-webkit-scrollbar-thumb {
	background: transparent;
	border-radius: 3px;
  }
  .testimonial-content::-webkit-scrollbar-track {
	background: transparent;
  }

  .flatpickr-calendar {
    font-size: 12px !important; /* smaller text */
    width: 220px !important;
	position: fixed;    /* smaller width */
  }

  .flatpickr-day {
    padding: 4px 6px !important; /* smaller day buttons */
  }

  .flatpickr-months .flatpickr-month {
    padding: 5px 0 !important;
  }

  .flatpickr-monthDropdown-months,
  .flatpickr-current-month input.cur-year {
    font-size: 12px !important;
  }
/************************************/
/*** 	15. Our Testimonial css	  ***/
/************************************/
.why-scrap{
	padding: 30px 0px;
	background: #f6f6f6;
}
.our-testimonials{
	background-image: url('../images/testimonials-bg.png');
	background-repeat: no-repeat;
	background-size: cover;
	padding: 0px 0 30px ;
}
.blog-section{
	padding-top: 30px;
    background: #f6f6f6;
    padding-bottom: 40px;
}
.review-box{
	display: flex;
	align-items: center;
	justify-content: end;
}

.review-image{
	border-right: 1px solid var(--dark-divider-color);
	margin-right: 25px;
	padding-right: 25px;
}

.review-image img{
	width: 100%;
	max-width: 150px;
}

.review-content ul{
	list-style: none;
	margin-bottom: 10px;
	padding: 0;
}
.review-content h6{
	margin-bottom: 5px;
    margin-top: 5px;
	font-weight: 600;
    font-size: 20px;
}

.review-content ul li{
	display: inline-block;
}

.review-content ul li i{
	color: #fecc2b;
}
.section-btn img{
	width: 50px;
    height: 50px;
    margin-right: 13px;
}
.review-content p{
	color: #2b2b2b;
	margin-bottom: 0;

}

.testimonial-image figure{
	display: block;
	border-radius: 20px;
}

.testimonial-image img{
	width: 100%;
	aspect-ratio: 1 / 0.79;
	object-fit: cover;
	border-radius: 20px;
}

.testimonial-slider{
	position: relative;
	/* margin-left: 20px; */
}
.testimonial-content p {
    /* display: -webkit-box;
    -webkit-line-clamp: 6; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis; */
  }
.testimonial-slider .swiper-wrapper{
	/* cursor:none; */
}
.bottom-btn a img{
	width: 150px;
    height: 44px;
}
.bottom-btn{
	margin-top:15px;
	display: flex;
}
.testimonial-header{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 17px;
}
.testimonial-item{
	background: #81ae77;
    padding: 12px 20px;
    border-radius: 20px;
	height: 220px;
}
.testimonial-company-logo img{
	width: 100%;
	max-width: 175px;
}

.testimonial-quote img{
	width: 100%;
	max-width: 40px;
}

.testimonial-content{
	/* border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px; */
	font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 20px;
	/* text-align: justify; */
}

.testimonial-author{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
}


.author-image{
	margin-right: 15px;
}

.author-image figure{
	display: block;
	border-radius: 50%;
}

.author-image img{
	width: 100%;
	max-width: 55px;
	border-radius: 50%;
}

.author-content h3{
	font-size: 22px;
	text-transform: capitalize;
	color:#fff;
	margin-bottom: 5px;
}

.author-content p{
	color: #2b2b2b;
	margin-bottom: 0;
}

.testimonial-pagination{
	display: flex;
    bottom: 0;
    align-items: center;
    justify-content: center;
}

.testimonial-pagination .swiper-pagination-bullet{
    height: 8px;
    width: 8px;
    background: #000000cc;
	border-radius: 100px;
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    background: var(--white-color);
	width: 26px;
	border-radius: 100px;
}

.testimonial-company-slider{
	border-top: 1px solid var(--dark-divider-color);
	/* padding: 30px 20px 20px; */
}

.testimonial-company-slider .company-logo{
	text-align: center;
}

.testimonial-company-slider .company-logo img{
	width: 100%;
	max-width: 175px;
	max-height: 40px;
}

/************************************/
/*** 	  16. Our Blog css  	  ***/
/************************************/

.our-blog{
	padding: 100px 0;
}

.post-item{
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--divider-color);
	border-radius:10px;
	margin-bottom: 30px;
	overflow: hidden;
	/* height: 100%; */
	background-color: transparent !important;
}

.post-item:last-child{
	margin-bottom: 0;
}

.post-featured-image{
	width: 100%;
}
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
    transition-property: transform;
    display: block;
    border-radius: 20px;
}
.post-item-body{
	/* margin-top: -24px; */
	width: 100%;
	background: #fff;
	align-content: center;
	padding: 10px 30px 20px;
}

.post-featured-image a{
	height: 100%;
    display: block;
	overflow: hidden;
	cursor: none;
}
.service-img img{
	border-radius: 20px;
}
.post-featured-image figure{
	height: 100%;
}

.post-featured-image img{
    width: 100%;
    /* aspect-ratio: 1 / 0.861;
    object-fit: cover; */
    transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img{
    /* transform: scale(1.1); */
}

.post-item-content{
	margin-bottom: 20px;
}
.main-header .search-btn {
    margin-right: 10px;
    margin-left: 10px;
    color: #000;
}
.main-header .search-container {
    display: flex;
}
.main-header .search-container input{
	border: none;
    border-bottom: 1px solid #ccc;
}
.main-header .search-container input:focus {
    outline: none !important;
    box-shadow: none !important;
    border-bottom: 1px solid #ccc !important; /* keep same border */
}
.post-item-content h2{
	color: var(--primary-color);
    font-size: 19px;
    line-height: 1.1em;
    margin-bottom: 5px;
    font-family: "Poppins", sans-serif;
	text-align: left;
}

.post-item-content h2 a{
	color: inherit;
}

.post-item-content p:last-child{
	margin: 0;
	line-height: 20px;
}

.post-item.highlighted-post-item .post-featured-image,
.post-item.highlighted-post-item .post-item-body{
	width: 100%;
}

.post-item.highlighted-post-item .post-featured-image img{
	/* aspect-ratio: 1 / 0.557; */
}

/************************************/
/*** 	 	17. Footer css		  ***/
/************************************/

.main-footer{
	position: relative;
	background: #ffffff;
	background-position: center center;
	background-size: cover;
	padding: 50px 0px 0px;
}

.main-footer:after{
	content: '';
	position: absolute;
	height: 100%;
	width: 100%;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	/* background-color: var(--primary-color); */
	opacity: 97%;
}

.main-footer-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	/* border-bottom:1px solid #dedede; */
    margin-bottom: 20px;
    /* background: #badfb3; */
    /* border-radius: 20px;*/
	padding: 10px 10px;
}
.footer-logo h3{
	font-size: 22px;
    color: #000;
}
.footer-logo .what-class{
	display: flex;
	color: #000;
	margin-top: 0px;
}
.footer-logo .what-class i{
	font-size: 22px;
    margin-top: 7px;
	margin-right: 10px;
}
.footer-logo .what-class p{
	margin-bottom: 0px;
}
.footer-logo{
	width: 20%;
	margin-top: 0px;
    margin-bottom: 4px;
	padding: 5px 20px;
}
.footer-contact-details .section-btn{
	margin-right: 10px;
}
.footer-logo img{
	width: auto;
    /* height: 80px; */
}
.cont-details{
	margin-top: 10px;
}
.footer-contact-details{
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	gap: 20px 40px;
}

.footer-contact-item{
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.footer-contact-item .icon-box{
	position: relative;
	/* width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	margin-top: -20px;
}



.footer-contact-item:hover .icon-box::before{
	/* transform: scale(1); */
}

.footer-contact-item .icon-box img{
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.footer-contact-item-content{
	width: calc(100% - 80px);
}

.footer-contact-item-content h3{
	color: #181818;
	font-size: 19px;
	text-transform: capitalize;
	margin-bottom: -2px;
}

.footer-contact-item-content p{
	color: #181818;
	margin: 0;
	font-size: 15px;
}

.footer-contact-item-content p a{
	color: inherit;
	transition: all 0.3s ease-in-out;
	font-size: 15px;
}

.footer-contact-item-content p a:hover{
	color: #2e7d32;
}

.about-footer{
	padding-right: 60px;
}

.footer-links p{
	color: var(--white-color);
	margin: 0;
}

.footer-social-links{
	margin-top: 20px;
}

.footer-social-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li{
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.footer-social-links ul li:last-child{
	margin-right: 0;
}

.footer-social-links ul li a{
	background: var(--accent-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li:hover a{
	background: var(--white-color);
	box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 4px;
}

.footer-social-links ul li a i{
	color: #fff;
	font-size: 18px;
}
.footer-social-links ul li:hover a i{
	color: #000;
	font-size: 18px;
}

.search-btn i{
	font-size: 20px;
	color: #000;
}
.footer-links h3{
	color: #2e7d32;
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.footer-links ul{
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-links ul li{
	color:#181818;
	line-height: normal;
	text-transform: capitalize;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.footer-links ul li:last-child{
	margin-bottom: 0;
}

.footer-links ul li:hover{
	color: #2e7d32;
}

.footer-links ul li a{
	color: inherit;
	display: inline-block;
}

.newsletter-form{
	padding-left: 50px;
}

.newsletter-form p{
	margin-bottom: 30px;
}

.newsletter-form .form-group{
	display: flex;
}

.newsletter-form .form-group .form-control{
	width: 68%;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--white-color);
	background-color: transparent;
	border: 1px solid var(--dark-divider-color);
	border-right: none;
	border-radius: 10px 0 0 10px;
	outline: none;
	box-shadow: none;
	padding: 12px 20px;
}

.newsletter-form .form-group .form-control::placeholder{
	color: var(--text-color);
}

.newsletter-form .form-group .btn-default.btn-highlighted{
	width: 32%;
	background-color: var(--accent-color);
	color: var(--primary-color);
	border-radius: 0 10px 10px 0;
    padding: 17px 12px;
    line-height: 1em;
}

.newsletter-form .form-group .btn-default::before{
	display: none;
}

.footer-copyright{
	position: relative;
	/* border-top: 1px solid #ececec; */
    padding: 13px 0;
    margin-top: 25px;
    z-index: 1;
}

.footer-copyright-text p{
	color:#181818;
	margin-bottom: 0;
	font-size: 16px;
}

.footer-privacy-policy{
	text-align: right;
}

.footer-privacy-policy ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-privacy-policy ul li{
	position: relative;
	display: inline-block;
	color:#181818;
	text-transform: capitalize;
	line-height: 1.6em;
	margin-right: 30px;
	transition: all 0.3s ease-in-out;
}

.footer-privacy-policy ul li:hover{
	color: #2e7d32;
}

.footer-privacy-policy ul li:last-child{
	margin-right: 0;
}

.footer-privacy-policy ul li:before{
    content: '/';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -18px;
	color: #181818;
}

.footer-privacy-policy ul li:last-child::before{
	display: none;
}

.footer-privacy-policy ul li a{
	color: inherit;
}

/************************************/
/*** 	 18. About Us Page css	  ***/
/************************************/

.page-header{
    position: relative;
	/* background: url('../images/page-header-bg.jpg'); */
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 150px 0 50px;
	margin: 0px 30px;
}
.breadcrumb-item+.breadcrumb-item::before {
    float: left;
    padding-right: var(--bs-breadcrumb-item-padding-x);
    color: var(--bs-breadcrumb-divider-color);
    content: var(--bs-breadcrumb-divider, "");
}
.page-header::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
	background: #00000070;
	border-radius: 20px;
	width: 100%;
	height: 100%;
}

.page-header-box{
    position: relative;
	text-align: center;
    z-index: 1;
}



.page-header-box h1{
	display: inline-block;
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    cursor: none;
    font-family: "Poppins", sans-serif;
}

.page-header-box ol{
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item{
	font-size: 16px;
	text-transform: capitalize;
	color: #fff;
}

.page-header-box ol li.breadcrumb-item a{
    color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before{
    color: var(--white-color);
}

.our-scrolling-ticker.subpages-scrolling-ticker{
	padding: 15px 0;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-ticker-box{
    --gap: 15px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
    font-size: 40px;
}

.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img{
	width: 20px;
    margin-right: 15px;
}

.our-approach{
	background: var(--secondary-color) url('../images/section-bg-2.png') no-repeat;
    background-position: bottom  left;
    background-size: 290px auto;
    padding: 100px 0;
}

.our-approach-content{
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.our-approach-nav{
	margin-bottom: 40px;
}

.our-approach-nav .nav-tabs{
	padding: 0;
	margin: 0;
	list-style: none;
	background: var(--white-color);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	border: none;
	overflow: hidden;
}

.our-approach-nav ul li{
	width: 33.33%;
}

.our-approach-nav ul li .nav-link{
    position: relative;
	width: 100%;
    display: flex;
	flex-direction: column;
	gap: 20px;
	font-family: var(--accent-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--primary-color);
    background: transparent;
    border-radius: 0;
    border: none;
	border-right: 1px solid var(--divider-color);
    padding: 30px;
    overflow: hidden;
    transition: all 0.4s ease-in-out;
    z-index: 1;
}

.our-approach-nav ul li .nav-link.active,
.our-approach-nav ul li .nav-link:focus,
.our-approach-nav ul li .nav-link:hover{
    background: transparent;
    color: var(--white-color);
}

.our-approach-nav ul li:last-child .nav-link{
	border-right: none;
}

.our-approach-nav ul li .nav-link:before{
	content: "";
	position: absolute;
	top: 100%;
	bottom: 0;
  	left: 0;
  	right: 0;
	background: #2e7d32;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.our-approach-nav ul li .nav-link.active::before,
.our-approach-nav ul li .nav-link:focus::before,
.our-approach-nav ul li .nav-link:hover::before{
  	top: 0;
}

.our-approach-nav ul li .nav-link span{
	background: #2e7d32;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.our-approach-nav ul li .nav-link.active span,
.our-approach-nav ul li .nav-link:focus span,
.our-approach-nav ul li .nav-link:hover span{
  	background: var(--white-color);
}

.our-approach-nav ul li .nav-link span img{
	max-width: 36px;
	transition: all 0.4s ease-in-out;
}

.our-approach-nav ul li .nav-link.active span img,
.our-approach-nav ul li .nav-link:focus span img,
.our-approach-nav ul li .nav-link:hover span img{
  	filter: brightness(0) invert(0);
}

.approach-tab-list-image{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.approach-tab-image,
.approach-tab-list{
	width: calc(50% - 15px);
}

.approach-tab-list ul{
	list-style: none;
	padding: 0;
    margin: 0;
}

.approach-tab-list ul li{
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
	background: url('../images/arrow-accent-secondary.svg') no-repeat;
	background-position: left center;
	background-size: 20px auto;
	padding-left: 30px;
    margin-bottom: 15px;
}
.about-page{
	margin-top: 40px;
}
.about-faq .btn-default {
    border-radius: 10px ;
}
.approach-tab-list ul li:last-child{
    margin-bottom: 0;
}

.approach-tab-image figure{
    display: block;
	border-radius: 20px;
}

.approach-tab-image img{
    width: 100%;
    aspect-ratio: 1 / 0.556;
    object-fit: cover;
	border-radius: 20px;
}

.our-solutions{
	padding: 100px 0;
}

.our-solution-content{
	margin-right: 15px;
}

.our-solution-list ul{
	list-style: none;
	padding: 0;
    margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.our-solution-list ul li{
	position: relative;
	background: url('../images/arrow-accent-secondary.svg') no-repeat;
	background-position: left center;
	background-size: 20px auto;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.our-solution-images{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.solution-image-box{
	width: calc(50% - 15px);
}

.solution-support-box{
	position: relative;
	background: var(--accent-color);
	border-radius: 20px;
	padding: 20px;
	margin-bottom: 30px;
	overflow: hidden;
}

.solution-support-box::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.solution-support-box:hover::before{
	height: 100%;
	border-radius: 0;
}

.solution-support-title{
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.solution-support-title h2{
	font-size: 46px;
	color: var(--white-color);
}

.solution-support-body{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	z-index: 1;
}

.solution-support-body p{
	width: calc(100% - 50px);
	color: var(--white-color);
	margin: 0;
}

.solution-support-body a{
	display: block;
	background: var(--white-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.solution-support-body a img{
	max-width: 20px;
}

.solution-image-2 figure,
.solution-image-1 figure{
	display: block;
	border-radius: 20px;
}

.solution-image-2 img,
.solution-image-1 img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.solution-image-1 img{
	aspect-ratio: 1 / 0.682;
}

.solution-image-2 img{
	aspect-ratio: 1 / 1.365;
}
.clent-text{
	border-top: 1px solid #9f9f9f;
    padding-top: 10px;
}
.our-team{
	padding: 100px 0 70px;
}

.team-item{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 4px;
	background: #f9f9f9;
}
	
.team-image{
	position: relative;
}

.team-image a{
    display: block;
	cursor: none;
}

.team-image img{
    width: 100%;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img{
	transform: scale(1.1);
}

.team-social-icon{
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon{
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul{
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 20px;
}

.team-social-icon ul li a{
	width: 40px;
	height: 40px;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover{
	background: #2e7d32;
}

.team-social-icon ul li a i{
	color: inherit;
	font-size: 18px;
}

.team-content{
	position: relative;
	text-align: center;
	padding: 20px;
	overflow: hidden;
}
.how-service .section-title p {
    margin-top: 4px;
    margin-bottom: 10px;
    width: 900px;
    margin: 0px auto;
}
/* .team-content::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: #2e7d32;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.team-item:hover .team-content::before{
	height: 100%;
} */

.team-content h2{
	position: relative;
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.team-content h2 a{
	color: inherit;
}

.team-content p{
	position: relative;
	text-transform: capitalize;
	margin: 0;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}
.team-content img{
	margin-bottom: 15px;
}
.team-item:hover .team-content img {
    transform: scale(1.1);
}

.our-feature{
	background: #ffffff;
    background-repeat: no-repeat;
    background-position: bottom left;
    background-size: 100% auto;
    padding: 40px 0;
}

.feature-item-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.feature-item{
	/* width: calc(50% - 15px); */
	/* display: flex; */
	/* height: 100%; */
	padding: 0px 20px 0px;
    border-radius: 14px;
	/* border:1px solid #939393; */
}
.m-icon{
	display: flex;
    justify-content: space-between;
}
.m-icon h3{
    color: #00aa00;
	font-weight: 600;
    font-family: sans-serif;
	font-size: 24px;
}
.our-feature-content{
	margin-left: 0px;
}
.feature-item .icon-box{
	position: relative;
    /* margin-right: 20px; */
    /* width: 100%; */
    /* max-width: 55px; */
    /* height: 55px; */
    /* background: #2e7d32; */
    border-radius: 50%;
    display: flex
;
    /* align-items: center; */
    /* justify-content: center; */
    margin-bottom: 10px;
}

.feature-item .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    /* background: var(--primary-color); */
    border-radius: 50%;
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.feature-item:hover .icon-box::before{
	/* transform: scale(1); */
}

.feature-item .icon-box img{
	position: relative;
    margin-top: -10px;
    z-index: 1;
	width: 47px;
    height: 47px;
}

.feature-item-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}
.iclass{
	display: flex;
	justify-content: center;
}
.iclass i {
    color: #ff5050;
    font-size: 25px;
    padding-top: 7px;
    margin-right: 10px;
}

.feature-item-content p{
	margin: 0;
	margin-top: -12px;
}

.feature-list{
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.feature-list ul{
	list-style: none;
	padding: 0;
    margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.feature-list ul li{
	background: url('../images/arrow-accent-secondary.svg') no-repeat;
	background-position: left center;
	background-size: 20px auto;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.feature-images{
	position: relative;
	display: flex;
	margin-left: 15px;
}

.feature-image-1{
	position: relative;
	width: 100%;
	max-width: 330px;
	margin-right: -137px;
	z-index: 1;
}

.feature-image-2{
	width: 100%;
	padding-top: 100px;
}

.feature-image-1 figure,
.feature-image-2 figure{
	display: block;
	width: 100%;
	border-radius: 20px;
}

.feature-image-1 img,
.feature-image-2 img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.feature-image-1 img{
	aspect-ratio:  1 / 1.02;
}

.feature-image-2 img{
	aspect-ratio:  1 / 1.169;
}

.feature-experience-circle{
	position: absolute;
	left: 25px;
	bottom: 50px;
}

.feature-experience-circle img{
	max-width: 140px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services{
	padding: 20px 0 40px;
}
.icon-box {
	position: relative;
  }
  
 .page-services .row1 .icon-box::before {
	content: attr(data-step);
    position: absolute;
    top: -10px;
    right: 72px;
    background-color: #2e7d32;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 2px;
    color: #fff;
    font-weight: bold;
    font-size: 18px;
    width: 35px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
  }
  
.page-services .service-list{
	/* display: flex;
	flex-wrap: wrap;
	gap: 30px; */
    padding-top: 10px;
}

.page-services .service-item{
	/* width: calc(33% - 22.5px); */
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single{
	padding: 100px 0;
}

.page-single-sidebar{
    position: sticky;
    top: 30px;
    margin-right: 20px;
}

.page-catagery-list{
	background-color: #65a763;
    border-radius: 20px;
    margin-bottom: 60px;
	overflow: hidden;
}

.page-catagery-list h3{
	font-size: 22px;
    text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
    padding: 30px;
}

.page-catagery-list ul{
    list-style: none;
    margin: 0;
    padding: 30px;
}

.page-catagery-list ul li{
    margin-bottom: 20px;
}

.page-catagery-list ul li:last-child{
    margin: 0;
}

.page-catagery-list ul li a{
	position: relative;
    display: block;
	line-height: 1.5em;
    text-transform: capitalize;
    color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 12px 50px 12px 20px;
	overflow: hidden;
    transition: all 0.4s ease-in-out;
	z-index: 1;
}

.page-catagery-list ul li:hover a{
    color: var(--white-color);
}

.page-catagery-list ul li a::before{
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    background: url('../images/arrow-text.svg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a:hover::before{
	filter: brightness(0) invert(1);
}

.page-catagery-list ul li a::after{
	content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: #2e7d32;
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.page-catagery-list ul li:hover a::after{
	top: 0;
	height: 100%;
}

.sidebar-cta-box{
	position: relative;
	/* background: url('../images/sidebar-cta-bg.jpg') no-repeat; */
	background-position: center center;
	background-size: cover;
	text-align: center;
	border-radius: 20px;
	padding: 35px 30px;
    overflow: hidden;
}

.sidebar-cta-box:before{
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    background-color: #65a763;
	opacity: 80%;
	width: 100%;
	height: 100%;
}

.sidebar-cta-content,
.sidebar-cta-contact{
	position: relative;
	z-index: 1;
}

.sidebar-cta-content{
	margin-bottom: 18px;
}

.sidebar-cta-content img{
	width: 100%;
	max-width: 125px;
	margin-bottom: 40px;
}

.sidebar-cta-content h3{
	font-size: 22px;
	color: var(--white-color);
}

.sidebar-cta-contact ul{
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-cta-contact ul li{
	display: flex;
	justify-content: center;
	margin-bottom: 13px;
}

.sidebar-cta-contact ul li:last-child{
	margin-bottom: 0;
}

.sidebar-cta-contact ul li a{
	position: relative;
	color: var(--white-color);
	line-height: normal;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 9px 24px;
	overflow: hidden;
}

.sidebar-cta-contact ul li a::before{
	content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -15%;
    right: 0;
    width: 0;
    height: 106%;
    background: #2e7d32;
    transform: skew(45deg);
    transition: all 0.4s ease-in-out;
    z-index: -1;
}

.sidebar-cta-contact ul li a:hover::before{
	width: 100%;
    transform: skew(0deg);
    left: 0;
}

.page-single-image{
	margin-bottom: 40px;
}

.page-single-image figure{
	display: block;
	border-radius: 20px;
}

.page-single-image img{
	width: 100%;
	aspect-ratio: 1 / 0.574;	
	object-fit: cover;
	border-radius: 20px;
}

.service-entry{
	margin-bottom: 60px;
}

.service-entry p{
	margin-bottom: 20px;
}

.service-entry p:last-child{
	margin-bottom: 0;
}

.service-entry h2{
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-entry ul{
	list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.service-entry ul li{
	line-height: 1.5em;
	background-image: url('../images/arrow-accent-secondary.svg');
	background-repeat: no-repeat;
	background-position: left top 1px;
	background-size: 20px auto;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child{
	margin-bottom: 0;
}

.service-solutions-box,
.service-driving-box{
	margin-top: 60px;
}

.service-solutions-box ul{
	margin: 30px 0;
}

.service-solution-steps{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.solution-step-item{
	position: relative;
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.solution-step-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--primary-color);
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.solution-step-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.solution-item-header,
.solution-item-content{
	position: relative;
	z-index: 1;
}

.solution-item-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 40px;
}

.solution-step-item .icon-box{
	height: 70px;
	width: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--accent-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.solution-step-item:hover .icon-box{
	background-color: var(--white-color);
}

.solution-step-item .icon-box img{
	width: 100%;
	max-width: 40px;
	transition: all 0.4s ease-in-out;
}

.solution-step-item:hover .icon-box img{
	filter: brightness(0) invert(0);
}

.solution-step-no h2{
	font-size: 46px;
	font-weight: 700;
	opacity: 5%;
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.solution-step-item:hover .solution-step-no h2{
    color: var(--white-color);
}

.solution-item-content h3{
	font-size: 22px;
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.solution-item-content p{
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.solution-step-item:hover .solution-item-content h3,
.solution-step-item:hover .solution-item-content p{
	color: var(--white-color);
}

.service-driving-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-driving-image-box,
.service-driving-item-list{
	width: calc(50% - 15px);
}

.service-driving-image-box figure{
	display: block;
	border-radius: 20px;
	margin-top: 40px;
}

.service-driving-image-box figure img{
	width: 100%;
	aspect-ratio: 1 / 0.683;
	object-fit: cover;
	border-radius: 20px;
}

.service-driving-item-list .environment-body-item{
    margin-bottom: 30px;
    padding-bottom: 30px;
}

.service-driving-item-list .environment-body-item:last-child{
	margin-bottom: 0;
	padding-bottom: 0;
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog{
	padding: 50px 0 20px;
}

.page-blog .post-item{
	display: block;
	/* height: calc(100% - 30px); */
	margin-bottom: 30px;
}

.page-blog .post-item .post-featured-image,
.page-blog .post-item .post-item-body{
	width: 100%;
}

.page-blog .post-item .post-featured-image img{
	/* aspect-ratio: 1 / 0.673; */
}

.page-pagination{
    margin-top: 30px;
    text-align: center;
}

.page-pagination ul{
    justify-content: center;
    padding: 0;
    margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span{
    display: flex;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 10px;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    font-weight: 700;
    line-height: 1em;
    transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover{
    background: var(--accent-color);
}

/************************************/
/*** 	 22. Blog Single css	  ***/
/************************************/

.page-single-post{
	padding: 100px 0;
}

.post-single-meta ol li{
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child{
	margin-right: 0;
}

.post-single-meta ol li i{
    font-size: 18px;
    color: var(--white-color);
    margin-right: 5px;
}

.post-image{
	position: relative;
	margin-bottom: 30px;
}

.post-image figure{
	display: block;	
	border-radius: 20px;
	overflow: hidden;
}

.post-image img{
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content{
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry{
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
    margin-bottom: 30px;
}

.post-entry:after{
    content: '';
    display: block;
    clear: both;
}

.post-entry a{
    color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6{
	font-weight: 700;
	line-height: 1.1em;
	margin: 0 0 0.435em;
}

.post-entry h1{
	font-size: 75px;
}

.post-entry h2{
	font-size: 46px;
}

.post-entry h3{
	font-size: 40px;
}

.post-entry h4{
	font-size: 30px;
}

.post-entry h5{
	font-size: 24px;
}

.post-entry h6{
	font-size: 20px;
}

.post-entry p{
	margin-bottom: 20px;
}

.post-entry p:last-child{
	margin-bottom: 0;
}

.post-entry p strong{
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol{
    margin: 0 0 30px;
}

.post-entry ul{
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li{
    position: relative;
	font-size: 16px;
    font-weight: 500;
    line-height: 1.5em;
    color: var(--text-color);
    margin-bottom: 15px;
}

.post-entry ul li:last-child{
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul{
    margin-top: 20px;
    margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child{
    margin-bottom: 0;
}

.post-entry blockquote{
	background: url('../images/icon-blockquote.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
    background-size: 45px;
	border-radius: 12px;
    padding: 30px 30px 30px 90px;
    margin-bottom: 30px;
}

.post-entry blockquote p{
	font-size: 20px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child{
	margin-bottom: 0;
}

.tag-links{
    font-size: 22px;
	font-weight: 600;
    text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a{
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    line-height: 1em;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover{
	background: var(--primary-color);
}

.post-social-sharing{
    text-align: right;
}

.post-social-sharing ul{
    list-style: none;
    padding: 0;
    margin: 0;
}
.carousel-indicators [data-bs-target] {
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #28a745; /* green dot */
  }
  .carousel-indicators .active {
	background-color: #155724; /* darker green active dot */
  }
  
element.style {
}
.mt-4 {
    margin-top: 3.5rem !important;
}
.carousel-indicators {
    position: absolute;
    right: 0;
    bottom: -16px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    padding: 0;
    margin-right: 15%;
    margin-bottom: 1rem;
}
.post-social-sharing ul li{
    display: inline-block;
    margin-right: 10px;
}

.post-social-sharing ul li:last-child{
	margin-right: 0;
}

.post-social-sharing ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	background: var(--accent-color);
    color: var(--white-color);
	border-radius: 10px;
    width: 40px;
    height: 40px;
    transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a{
	background: var(--primary-color);
}

.post-social-sharing ul li a i{
    font-size: 18px;
    color: inherit;
}

/************************************/
/*** 	 23. Projects Page css	  ***/
/************************************/

.page-projects{
	padding: 100px 0 70px;
}

/************************************/
/*** 	 24. Project Single css	  ***/
/************************************/

.page-project-single{
	padding: 100px 0;
}

.project-category-list{
	background: var(--secondary-color);
    border-radius: 20px;
    margin-bottom: 60px;
    overflow: hidden;
}

.project-category-list h3{
    font-size: 22px;
    color: var(--white-color);
    text-transform: capitalize;
	background-color: var(--primary-color);
    padding: 30px;
}

.project-category-list ul{
    margin: 0;
    padding: 30px;
    list-style: none;
}

.project-category-list ul li{
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
	line-height: normal;
	color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--divider-color);
    margin-bottom: 20px;
    padding-bottom: 20px;
}

.project-category-list ul li:last-child{
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.project-category-list ul li span{
    width: 65%;
    font-size: 16px;
    font-weight: 400;
    color: var(--text-color);
}

.project-entry{
	margin-bottom: 60px;
}

.project-entry p{
	margin-bottom: 20px;
}

.project-entry p:last-child{
	margin-bottom: 0;
}

.project-entry h2{
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 20px;
}

.project-entry ul{
	list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.project-entry ul li{
	line-height: 1.5em;
	background-image: url('../images/arrow-accent-secondary.svg');
	background-repeat: no-repeat;
	background-position: left top 1px;
	background-size: 20px auto;
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child{
	margin-bottom: 0;
}

.project-innovation-box,
.project-challenge-box{
	margin-top: 60px;
}

.project-innovation-image-list{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	margin-top: 40px;
}

.project-innovation-image,
.project-innovation-list{
	width: calc(50% - 15px);
}

.project-innovation-image figure{
	display: block;
	border-radius: 20px;
}

.project-innovation-image img{
	width: 100%;
	aspect-ratio: 1 / 0.62;
	object-fit: cover;
	border-radius: 20px;
}

.project-challenge-list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	margin-top: 40px;
}

.project-challenge-list .environment-body-item{
	width: calc(50% - 15px);
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.project-challenge-video-box{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.project-challenge-image,
.project-challenge-video{
	width: calc(50% - 15px);
}

.project-challenge-image figure{
	display: block;
	border-radius: 20px;
}

.project-challenge-image img{
	width: 100%;
	aspect-ratio: 1 / 0.881;
	object-fit: cover;
	border-radius: 20px;
}

.challenge-image-video{
	position: relative;
}
.footer-contact-item .icon-box:before{
	content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	background-color: #58965400 !important;
    border-radius: 50%;
    height: 100%;
    width: 100%;
	transform: scale(0);
    transition: all 0.4s ease-in-out;
	
}
.challenge-image-video figure{
	display: block;
	border-radius: 20px;
}

.challenge-image-video img{
	width: 100%;
	aspect-ratio: 1 / 0.634;
	object-fit: cover;
	border-radius: 20px;
}

.challenge-image-video .video-play-button{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a{
	height: 85px;
	width: 85px;
	background-color: #2e7d32;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: none;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover{
	background-color: var(--primary-color);
}

.video-play-button a:before{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 70%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after{
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 70%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
	animation-delay: .3s;
}

@keyframes border-zooming{
	100%{
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i{
	font-size: 30px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.4s ease-in-out;
}

.video-play-button a:hover i{
	color: #2e7d32;
}

.project-challenge-video ul{
	margin: 30px 0 0;
}
b, strong {
    font-weight: bolder;
    color: #000;
}
.modal-body p{
	color: #494949;
	margin-bottom: 8px;
    font-size: 15px;
}
.home-why-did{
	padding-bottom: 35px;
}
/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/
#contactForm .btn-default{
	border-radius: 10px;
}
.page-team{
	padding: 60px 0 70px;
}
.table-success tr th{
   color: #ffffff;
   background: #2e7d32;
}
/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single{
    position: relative;
    padding: 100px 0;
}

.team-about-box,
.team-expertise-experience{
	margin-bottom: 80px;
}

.team-about-box,
.team-expertise-experience,
.team-skills-form{
	display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px 60px;
}

.team-single-image,
.team-about-content{
    width: calc(50% - 30px);
}

.team-single-image figure{
    display: block;
    border-radius: 20px;
}

.team-single-image img{
    width: 100%;
    aspect-ratio: 1 / 0.933;
    object-fit: cover;
    border-radius: 20px;
}

.team-contact-info-box{
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
}

.team-contact-list{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-contact-box{
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.team-contact-box .icon-box{
	position: relative;
	width: 50px;
	height: 50px;
	background: #2e7d32;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 15px;
	overflow: hidden;
}

.team-contact-box .icon-box::before{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
	right: 0;
	left: 0;
    background: var(--primary-color);
   
    width: 100%;
    height: 100%;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.team-contact-box:hover .icon-box::before{
	transform: scale(1);
}

.team-contact-box .icon-box img{
	position: relative;
    width: 100%;
    max-width: 30px;
	z-index: 1;
}

.team-contact-content{
	width: calc(100% - 65px);
}

.team-contact-content h3{
    font-size: 22px;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.team-contact-content p{
	margin: 0;
}

.member-social-list{
    display: flex;
    align-items: center;
    gap: 20px;
	border-top: 1px solid var(--divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.member-social-list h3{
	font-size: 22px;
    text-transform: capitalize;
}

.member-social-list ul{
    list-style: none;
    padding: 0;
    margin: 0;
}

.member-social-list ul li{
    display: inline-block;
    border-radius: 50%;
    margin-right: 10px;
}

.member-social-list ul li:last-child{
	margin-right: 0;
}

.member-social-list ul li a{
    background-color: #2e7d32;
	color: var(--white-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.member-social-list ul li:hover a{
    background-color: var(--accent-color);
}

.member-social-list ul li a i{
    color: inherit;
    font-size: 18px;
}

.team-expertise-experience{
	align-items: start;
}

.team-expertise-box,
.team-experience-box{
	width: calc(50% - 30px);
}

.team-expertise-list ul{
	list-style: none;
	padding: 0;
    margin: 0;
}

.team-expertise-list ul li{
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
	background: url('../images/arrow-accent-secondary.svg') no-repeat;
	background-position: left top 1px;
	background-size: 20px auto;
	padding-left: 30px;
    margin-bottom: 15px;
}

.team-expertise-list ul li:last-child{
    margin-bottom: 0;
}

.team-experience-info-item{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 30px;
}

.team-experience-info-item:last-child{
	margin-bottom: 0;
}

.team-experience-content{
	width: calc(70% - 10px);
}

.team-experience-content h3{
	font-size: 22px;
	margin-bottom: 5px;
}

.team-experience-content p,
.team-experience-year p{
	margin-bottom: 0;
}

.team-experience-year{
	width: calc(30% - 10px);
	text-align: end;
}

.team-skills-box,
.team-member-form{
	width: calc(50% - 30px);
}

.skills-progress-bar{
    margin-bottom: 30px;
}

.skills-progress-bar:last-child{
    margin-bottom: 0px;
}

.skills-progress-bar .skill-data{
	display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.skills-progress-bar .skillbar .skill-progress{
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--secondary-color);
	border-radius: 100px;
    overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar{
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: #2e7d32;
	border-radius: 100px;
}

.team-member-form{
	border-radius: 20px;
}

/************************************/
/***   27. Testimonials Page css  ***/
/************************************/

.page-testimonials{
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item{
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
}

.page-testimonials .testimonial-item .testimonial-header{
	margin-bottom: 20px;
}

.page-testimonials .testimonial-item .testimonial-header .review-content ul{
	margin: 0;
}

.page-testimonials .testimonial-item .testimonial-content{
	border-color: var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.page-testimonials .testimonial-item .author-content p,
.page-testimonials .testimonial-item .testimonial-content{
	color: var(--text-color);
}

.page-testimonials .testimonial-item .author-content h3{
	color: var(--primary-color);
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery{
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery{
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a{
	cursor: none;
}

.page-gallery-box .photo-gallery figure{
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img{
	width: 100%;
	aspect-ratio: 1 / 0.83;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery{
	padding: 100px 0 70px;
}

.video-gallery-image{
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a{
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-color);
	border-radius: 20px;
    opacity: 0%;
    visibility: hidden;
    width: 100%;
    height: 100%;
    z-index: 1;
    transform: scale(0);
    transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before{
    opacity: 40%;
    visibility: visible;
    transform: scale(1);
}

.video-gallery-image a::after{
    content: '\f04b';
	font-family: 'FontAwesome';
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--primary-color);
    border-radius: 50%;
    height: 60px;
    width: 60px;
    cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    z-index: 1;
}

.video-gallery-image:hover a::after{
    opacity: 1;
    visibility: visible;
}

.video-gallery-image img{
	width: 100%;
	aspect-ratio: 1 / 0.83;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	   30. FAQs Page css	  ***/
/************************************/
.page-blog-accordion{
	padding: 30px 30px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 8px 0px;
	border-radius: 20px;
}
.page-blog-accordion ul li{
    margin-bottom: 9px;
    color: #1e1e1e;
}
.page-blog-accordion h2{
    font-family: "Poppins", sans-serif;
	color: #2b2b2b;
	font-size: 28px;
    font-weight: 600;
	margin-bottom: 15px;
    line-height: 25px;
}
.page-blog-accordion h4{
    font-family: "Poppins", sans-serif;
	color: #2b2b2b;
	font-size: 19px;
    font-weight: 600;
    margin-bottom: 6px;
    line-height: 25px;
	margin-top: 15px;
}
.page-blog-accordion h6{
    font-family: "Poppins", sans-serif;
	color: #2a2a2a;
    font-size: 17px;
    font-weight: 600;
    line-height: 25px;
	margin-bottom: 3px;
}
.page-blog-accordion p{
    font-family: "Poppins", sans-serif;
	color: #202020;
    font-size: 15px;
	line-height: 20px;
	margin-bottom: 7px;
}
.page-faqs{
	padding: 30px 0 0px;

}
.form-label {
    margin-bottom: 2px;
}
.modal-footer {
    display: flex;
    flex-shrink: 0;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
	border-top: none;
    padding-top: 0px;
}
.btn-primary {
   color: #fff;
   background: #2e7d32;
    border-color: #2e7d32;
	font-weight: 600;
    padding: 5px 20px;
}
.btn-primary:hover {
   color: #000;
   background: #a5d6a7;
    border-color: #a5d6a7;
}
.modal-body .form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #b5b5b5;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.modal-header{
	background: #2e7d32;
	padding: 8px 16px;
}
.modal-header h5 i{
	font-size: 28px;
}
.modal-title {
	color: #fff;
    font-size: 22px;
    font-weight: 600;
	font-family: "Poppins", sans-serif;
    margin-bottom: 0;
    /* line-height: var(--bs-modal-title-line-height); */
}
.btn-close {
    --bs-btn-close-color: #ffffff;
    --bs-btn-close-bg: url(data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e);
    --bs-btn-close-opacity: 0.5;
    --bs-btn-close-hover-opacity: 0.75;
    --bs-btn-close-focus-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    --bs-btn-close-focus-opacity: 1;
    --bs-btn-close-disabled-opacity: 0.25;
    --bs-btn-close-white-filter: invert(1) grayscale(10%) brightness(500%);
    box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: var(--bs-btn-close-color);
    background: #ffffff var(--bs-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .375rem;
    opacity: 1;
}
.highlight .fa-sack-dollar{
	color:#ffb900; 
	font-size: 1em;
}
.highlight .fa-earth-africa{
	font-size: 1.2em;
	background: linear-gradient(135deg, #2e8b57 45%, #1e90ff 55%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	display: inline-block;
}
.page-faqs-catagery .page-faq-accordion{
    margin-bottom: 25px;
	border-radius: 20px;
}

.page-faqs-catagery .page-faq-accordion:last-child{
    margin-bottom: 0px;
}
.cont-top{
	padding-top: 20px;
}
/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/

.contact-info-box{
	padding: 50px 0 20px;
}
.scrap-pricing-section title p{
	margin-bottom: 0px;
}
.contact-info-item{
	display: flex;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
	border-bottom: 1px solid #e1e1e1;
}
.contact-info-item:last-child {
    border-bottom: none;
}
.contact-info-item::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
	background-color: #58965400 !important;
	border-radius: 500px 500px 0 0;
    height: 0;
    width: 100%;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.contact-info-item:hover::before{
	height: 100%;
	border-radius: 0;
}

.contact-info-item .icon-box,
.contact-info-content{
	position: relative;
	z-index: 1;
}

.contact-info-item .icon-box{
	height: 35px;
    width: 35px;
	background-color:#2e7d32;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
    transition: all 0.5s ease-in-out;
	margin-right: 10px;
}

/* .contact-info-item:hover .icon-box{
	background: var(--white-color);
} */
.breadcrumb .breadcrumb-item{
	display: none;
}
.contact-info-item .icon-box img{
	width: 100%;
	max-width: 17px;
	transition: all 0.5s ease-in-out;
}

.contact-info-item:hover .icon-box img{
	/* filter: brightness(0) invert(0); */
}

.contact-info-content h3{
	font-size: 22px;
	margin-bottom: 0px;
	transition: all 0.4s ease-in-out;
}

.contact-info-content p{
	margin: 0;
	transition: all 0.4s ease-in-out;
	color: #5a5858;
}

.contact-info-content p a{
	color: inherit;
}
.wecollect img{
	width: 42px;
	margin-bottom: 0px;
}
.contact-info-item:hover .contact-info-content h3,
.contact-info-item:hover .contact-info-content p{
	color: #626262;
}
.home-banner .swiper-slide img {
	transition: transform 0.4s ease;
	background: transparent;
	border-radius: 20px;
  }
  
  /* Zoom on hover */
  .home-banner .swiper-slide:hover img .active{
	transform: scale(1.1); /* You can adjust scale value */
	
  }
  
  /* Optional: Prevent image overflow */
  .home-banner .swiper-slide {
	/* overflow: hidden; */
	border-radius: 20px;
  }
.page-contact-us{
	padding: 30px 0 60px;
}

.contact-us-box{
	display: flex;
	flex-wrap: wrap;
	border-radius: 20px;
	overflow: hidden;
}

.contact-us-image,
.contact-us-box .contact-form{
	width: 50%;
}

.contact-us-image figure{
	display: block;
	height: 100%;
}

.contact-us-image img{
	width: 100%;
	/* height: 100%;
	aspect-ratio: 1 / 1.11;
	object-fit: cover; */
}

.contact-us-box .contact-form{
	align-content: center;
	background: #badfb3;
}

.contact-form{
	background-color: var(--secondary-color);
	padding: 30px;
}

.contact-form .form-control{
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: #000000;
    background: #fff;
    border: 1px solid #000000de;
    border-radius: 10px;
    padding: 6px 10px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder{
	color: var(--text-color);
}

.google-map .container-fluid{
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe{
	/* height: 600px; */
	width: 100%;
}

.google-map-iframe iframe{
	/* filter: grayscale(1); */
	transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover{
	filter: grayscale(0);
}

/************************************/
/*** 	 32. Donation Page css	  ***/
/************************************/

.page-donation{
	padding: 100px 0;
}

.donation-box{
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 30px;
	padding: 100px;
}

.donate-form.donate-form-box{
	width: 100%;
}

.donate-form-box .form-control{
	border-color: var(--divider-color);
	color:  var(--text-color);
}

.donate-form-box .form-control::placeholder{
	color: var(--text-color);
	font-weight: 400;
}

.donate-form-box .donate-value-box{
	gap: 15px;
	margin-bottom: 80px;
}

.donate-form-box .donate-value{
	width: calc(16.66% - 12.5px);
}

.donate-value-box .donate-value label{
	background: var(--secondary-color);
	color: var(--text-color);
}

.donate-payment-method{
	margin-bottom: 80px;
}

.donar-personal-info{
	background: var(--secondary-color);
	border-radius: 20px;
}

.donate-payment-method .section-title{
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.donate-payment-type{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.donate-payment-type .payment-method{
	display: flex;
	align-items: center;
}

.donate-payment-type .payment-method input{
	height: 24px;
	width: 24px;
}

.payment-method label{
	text-transform: capitalize;
	padding-left: 10px;
}

/************************************/
/*** 	 33. 404 Error Page css	  ***/
/************************************/

.error-page{
	padding: 100px 0;
}

.error-page-image{
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img{
	width: 100%;
	max-width: 50%;
}

 .error-page-content{
	text-align: center;
}

.error-page-content .section-title{
	margin-bottom: 15px;
}
.review-box{
	display: none;
}
/************************************/
/*** 	 34. Responsive css 	  ***/
/************************************/

.why-did img{
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 6px;
}
.why-did .swiper-slide{
	background: #fff;
}
.navbar-brand img{
	width: 70px;
    height: auto;
}
.sell-btns{
	display: flex;
	    justify-content: center;
	text-align: center;
	padding-top: 10px;
}
.sell-btns .about-us-btn{
	margin-right: 20px;
}
.sell-btns .about-us-btn a{
	border-radius: 10px;
}
.modal-body .text-start {
    text-align: left !important;
    margin-left: 9px;
}
.hero-content{
	border: 1px solid #979797;
    padding: 15px;
    border-radius: 10px;
}
.feature-item .icon-box i{
	font-size: 38px;
	color: #fffefe;
}

.footer-contact-item .icon-box i{
	font-size: 22px;
    color: #181818;
}
.row{
	justify-content: center;
    display: flex
;
}
svg {
    fill: blue;         /* fills the shape */
    stroke: black;      /* outlines the shape */
    stroke-width: 2px;
  }
 .review-content p{
	padding-left: 5px;
	font-size: 16px;
	line-height: 18px;
	color: #fff;
 }
 .testimonial-author .left-div{
	display: flex;
 }
 .mt-2{
	margin-top: 20px;
 }
 .review-content{
	text-align: center;
 }
 .review-section {
	max-width: 420px;
	margin: auto;
	text-align: center;
  }
  .review-slider {
	height: 420px;
	overflow: hidden;
  }

  .swiper-slide {
	background: transparent;
	text-align: left;
	margin-bottom: 10px;
  }
  .our-testimonials  .swiper-slide {
	background: #81ae75;
	text-align: left;
	margin-bottom: 10px;
  }
  .home-banner .swiper-slide {
	background: transparent;
	/* margin-top: 10px; */
  }
 
  .testimonial-company-slider .swiper-slide {
	background: #ffffff;
	border-radius: 15px;
	text-align: left;
	margin-bottom: 10px;
  }
  .wast-popup{
	display: flex;
	align-items: center;
  }
  .wast-popup p{
	margin-bottom: 0px;
  }
  .wast-popup .pop-divimg img{
	width: 30px;
    margin-bottom: 5px;
  }

  .swiper.review-slider {
    height: 400px;
  }

  .scrap-pricing-section h2{
	font-family: "Poppins", sans-serif;
  }
  .scrap-pricing-section .swiper-slide{
    background: #fff;
  }
  .scrap-pricing-section .rate-div{
	text-align: center;
  }
  .left-view-all .view-data {
	padding: 10px 17px;
    text-align: center;
    border: 1px solid #f3f3f3;
    border-radius: 7px;
    background: #f3f3f3;
    color: #000000;
    font-weight: 600;
  }
  .scrap-pricing-section .swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
    opacity: 5;
    cursor: auto;
    pointer-events: none;
}
  .scrap-pricing-section .rate-div h5{
	font-size: 15px;
  }
  .scrap-pricing-section .rate-div img{
    width: 85px;

  }
  .modal-body .pop-img img{
	border-radius: 15px;
	width: 100%;
  }
  .srap-content  h4{
	margin-bottom: 10px;
	
  }
 .profile-button-next,
.profile-button-prev {
  width: 30px;
  height: 30px;
  background-color: #00000080;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  transition: background-color 0.3s ease;
}

.profile-button-next:hover,
.profile-button-prev:hover {
  background-color: #333;
}

.profile-button-next::after,
.profile-button-prev::after {
  font-size: 18px;
}

    .tab-content-section {
      margin-top: 20px;
      padding: 20px;
      border-top: 0px solid #eee;
      background: #f9f9f9;
    }

    .tab-content {
      display: none;
    }

    .tab-content.active {
      display: block;
    }

  .review-section .author-content h3 {
	font-size: 20px;
	color:#fff;
}
.review-section .review-content ul li i {
    color: #ffa400;
}
.review-section .testimonial-item {
    padding: 2px 7px;
    border-radius: 20px;
}
.review-section .author-content p {
    color: #fff;
    margin-bottom: 0;
}
.review-section .testimonial-content {
    font-size: 16px;
	line-height: 19px;
    font-weight: 500;
    color: #ebebeb;
    margin-bottom: 15px;
}
.review-section{
	display: none;
}
.review-section .right-div p{
	font-size: 15px;
	color: #fff;
}
.review-section .bell-icon{
	margin-top: 7px;
}
.right-div p{
	font-size: 15px;
	color: #fff;
}
.page-services .row1{
	margin: 0px 50px;
    padding: 28px 20px;
    background: #589654;
    border-radius: 20px;
}
.page-services .row11{
	background: #fff;
    border-radius: 12px;
}
.page-services .section-title h2 {
	color: #000;
    font-size: 24px;
    font-weight: 600;
    line-height: 22px;
    font-family: "Poppins", sans-serif;
    margin-bottom: 0px;
    padding-top: 20px;
}
.terms-container h2{
	font-size: 22px;
    margin-bottom: 5px;
    margin-top: 20px;
	font-family: "Poppins", sans-serif;
}
.terms-container p{
	font-size: 16px;
	margin-bottom: 6px;
}
.terms-container ul li{
	margin-top: 10px;
}

.banner-section {
	background-image: url('../images/home-images/home-banner.jpg');
	background-size: cover;
	/* background-position: center;
	display: flex;
	align-items: center;
	position: relative;
	color: #fff; */
  }
.movile-view {
	background-image: url('../images/home-images/mobile-banner.jpg');
	background-size: cover;
    background-position: center;
  }
 
  
  
  .text-div h2,
  .text-div p {
	margin-bottom: 15px;
  }
  
  /* .btn-default.btn-highlighted {
	background-color: #ffc107;
	color: #000;
	padding: 10px 20px;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
  } */










.banner-section {
	/* background-color: #fefbdc; */
	padding: 140px 0px 70px;
	margin-top: 75px;
	margin-bottom: 40px;

  }
  .banner-image {
	border-radius: 10px;
	/* padding-bottom: 10px; */
	width: 100%;
	max-width: 100%;
	height: auto;
  }
  .banner-text h2 {
	  color: #2e7d32;
	  font-weight: 700;
	  font-size: 37px;
	  line-height: 45px;
	  margin-bottom: 15px;
  }
  .banner-text p {
	color: #555;
	margin-bottom: 15px;
  }
  .banner-text .highlight {
	color: green;
	font-weight: bold;
  }
  .btn-dark {
	font-weight: bold;
	padding: 10px 20px;
  }
  .text-div{
	margin-top: 0px;
    padding-bottom: 80px;
  }
  .bk{
	  background: #fefbdc;
  }
  .why-choose-content .section-title {
	margin-bottom: 0px;
}
.ab-row{
	padding: 0px 100px;
	margin-left: 160px;
}
.content{
	padding: 50px 50px 0px;
}
.serv-content{
	padding: 50px 50px 30px;
}
.content .serv-title h2{
	color: #2b2b2b;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 38px;
    font-family: "Poppins", sans-serif;
}
.movile-view{
	display: none;
}
.content .serv-title p{
	color: #000;
    margin-bottom: 0px;
}

.how-service .work-step-content h3 {
    font-size: 16px;
	padding: 0px 10px;
    font-family: sans-serif;
    /* margin-bottom: 14px; */
}
.how-service .work-step-content{
	padding-bottom: 0px;
}
.how-service .work-step-item {
    /* width: calc(25% - 22.5px); */
    text-align: center;
    background: #badfb3;
    border-radius: 20px;
    height: 100%;
	width: 100%;
	padding-bottom: 10px;
}
.how-service .work-step-image figure {
    display: block;
    border-radius: 20px;
    padding-top: 15px;
}
.fact-height{
	height: 198px;
}
.fact-height1{
	height: 92%;
}
.fact-height2 {
    height: 190px;
}
.how1 .work-step-content {
    padding-bottom: 10px;
}
.how-content{
	/* border: 1px solid #000; */
}
.how-content .btn-default {
    position: relative;
    display: inline-block;
    background: #2e7d32;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1em;
    text-transform: capitalize;
    color: var(--white-color);
    border: none;
    padding: 9px 26px 9px 8px;
    transition: all 0.5s ease-in-out;
    overflow: hidden;
    z-index: 0;
}
.how-content .btn-default::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px;
    width: 15px;
    height: 15px;
    background-image: url(../images/arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    transform: translate(-20px, -50%);
    transition: all 0.4s ease-in-out;
}
.how-content p{
	font-size: 14px;
    line-height: 17px;
    color: #000;
	margin-bottom: 6px;
	text-align: center;
}
.how-content h6{
	font-size: 16px;
    font-family: "Poppins", sans-serif;
	margin-bottom: 10px;
	text-align: center;
}

.service-icon-box{
	width: 75px;
    margin: 0px auto;
}
.how-work .serv-title h2{
	color: #2b2b2b;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 38px;
    font-family: "Poppins", sans-serif;
}
.how-work .how-content {
    position: relative;
    padding: 10px;
    border-radius: 10px;
}


.how-work{
	padding-bottom: 40px;
}
.enquiry-section .btn-default{
	margin-top: 7px;
    border-radius: 10px;
}
.enquiry-section .container{
	background: #badfb3;
    border: 1px solid #ededed;
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 8px;
}
.enquiry-section h2{
	color: #2b2b2b;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 0px;
    line-height: 38px;
    font-family: "Poppins", sans-serif;
}
.enquiry-section p{
	margin-bottom: 0px;
}
input::placeholder,
textarea::placeholder {
  font-size: 0.775rem; /* or 14px, adjust as needed */
  color: #3a3a3a; /* optional: softer color */
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: #ffffff;
    background-clip: padding-box;
    border: var(--bs-border-width) solid #b5b5b5;
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
form label{
	font-size: 14px;
    color: #494949;
}


.testimonial-button-prev,
.testimonial-button-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  font-size: 2rem;
  color: #000;
  cursor: pointer;
}

.testimonial-button-prev {
  left: 10px;
}

.testimonial-button-next {
  right: 10px;
}
.footer-social-links ul .youtube a{
	background: red;
}
.footer-social-links ul .whatsapp a{
	background: green;
}
.footer-social-links ul .twitter a{
	background: #00acee;
}
.footer-social-links ul .facebook a{
	background: #4285f4;
}
.footer-social-links ul .instagram a{
	background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
}
.ab-text p{
	margin-bottom: 10px;
}
input::placeholder {
	font-size: 14px;
  }
  .what-class p{
	margin-bottom: 0px;
  }
  .fixed-pickup-btn{
	display: none;
}
  
  .serv-title h2{
	font-family: "Poppins", sans-serif;
	margin-bottom: 10px;
	color: #2b2b2b;
    font-size: 30px;
    font-weight: 600;
  }
  .serv-content .howw{
	border: 1px solid #d3d3d3;
    padding: 20px 0px;
    border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 8px;
    text-align: center;
	align-items: center;
  }
.howw{
	border: 1px solid #d3d3d3;
    padding: 20px 0px;
    border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 8px;
  }
  .why-scrap >.row{
	border: 1px solid #d3d3d3;
    padding: 20px 0px;
    border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 8px;
  }
.testimonial-button-prev::after,
.testimonial-button-next::after {
	font-size: 34px !important;
	padding-bottom:10px ;
  color: #fff;
}
.testimonial-button-prev::after {
	content: 'â€¹'; /* Left arrow character */
  }
  .testimonial-button-next::after {
	content: 'â€º'; /* Right arrow character */
  }
.blog-prev {
	left: 10px;
  }
  .blog-next {
	right:10px;
  }
 
.blog-section .swiper-slide {
    background: transparent;
}
.how-it-work .box1{
	border: 1px solid #d3d3d3;
	padding: 20px 0px;
	border-radius: 20px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 1px 8px;
	margin: 0px 50px;
}
.page-header.parallaxie {
	background-image: url('../images/home-images/bread.png');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	min-height: 270px; 
	border-radius: 20px;
  }
  .form-switch .form-check-input {
	width: 40px;
    height: 20px;
  }
  .form-switch label{
	margin-top: 4px;
    margin-left: 6px;
  }
  .form-check-input:checked {
    background-color: #34a853;
    border-color:  #34a853;
}
.form-check-input:focus {
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 .25rem rgb(52 168 83 / 12%);
}
.mobile-show{
	display: none;
}
 .desktop-banner{
	display: block;
}
.mobile-about{
	display: none;
}
.desktop-footer{
	display: block;
}
.mobile-footer{
	display: none;;
}
/* Vertical nav container */
.swiper-navigation {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px; /* space between arrows and divider */
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: -60px; /* adjust as needed */
	z-index: 10;
  }
   .swiper-arrow-navigation{
		transform: translateZ(1px);
	}
	.swiper-arrow-navigation [class*=swiper-button]{
		position: fixed;
	}

	@media (max-width:767px){
		.scrap-pricing-section title p{
			margin-bottom: 0px;
		}
		.our-testimonials .swiper-arrow-navigation .swiper-button-prev{
			left: -7px !important;
		}
		.our-testimonials .swiper-arrow-navigation .swiper-button-next{
			right: -7px !important;
		}
		.swiper-arrow-navigation .swiper-button-prev{
			left: 0px !important;
			top: 50%;
		}
		.swiper-arrow-navigation .swiper-button-next{
			right: 0px !important;
			top: 50%;
		}
		.otp-class{
			width: 50%;
			margin-top: 10px;
		}
		.mob-class{
			width: 130%;
			margin-top: 10px;
		}
	}
	@media (min-width:768px){
		.swiper-arrow-navigation{
			padding:0!important;
		}
		.swiper-arrow-navigation .swiper-button-prev{
			left: -20px !important;
			top: 44%;
		}
		.swiper-arrow-navigation .swiper-button-next{
			right: -20px !important;
			top: 45%;
		}
	}
  /* Rounded arrow buttons */
  .custom-nav {
	width: 40px;
	height: 40px;
	background-color: rgb(0 0 0 / 39%);
	color: #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 18px;
	z-index: 10;
	transition: background 0.3s ease;
  }
  
  .custom-nav:hover {
	background-color: rgb(0 0 0 / 39%);
  }
 
  .swiper-divider {
	width: 2px;
	height: 40px;
	background-color: #ccc;
  }
  .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
    content: 'prev';
    font-size: 14px;
}
.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
    content: 'next';
	font-size: 14px;
}
.page-faqs .faq-div img{
	width: 80px;
}
.desk-row{
	display:block;
}
.mobile-row{
	display:none;
}
.serv-content .serv-title{
	text-align: left;
}
.service-page .serv-title p{
	margin-bottom: 0px;
}
.faq-div{
	/* border: 1px solid #000; */
	text-align: center;
	padding: 5px 10px 10px;
	border-radius: 10px;
}
.faq-div h5{
	font-size: 18px;
}
.categorySwiper .swiper-slide a {
  font-size: 15px;
  display: inline-block;
  padding: 0px 10px 10px;
  border-radius: 20px;
  white-space: wrap;
  text-decoration: none;
  color: #333;
  
}
.page-faq-accordion{
	padding: 20px 20px 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 0px 8px 0px;
    margin-top: 30px;
}
.left-view-all{
	background: #62aa60b0;
    padding: 30px 14px;
    border-radius: 10px;
}
.contact-info-content p {
    width: 310px;
	line-height: 20px;
}
.testimonial-content {
	max-height: 103px;
	overflow-y: auto;
	padding-right: 0px;
}
	.wrap-text {
		word-wrap: break-word;    /* For long words */
		word-break: break-word;   /* Works in modern browsers */
		white-space: normal;      /* Ensures it wraps */
	  }
	.content .serv-title h2 {
		font-size: 24px;
		margin-bottom: 10px;
		font-family: "Poppins", sans-serif;
		line-height: 28px;
	}
	.modal-body .row{
		justify-content: left;
	}
	.how-service .work-step-content {
		padding-bottom: 0px;
	}
	.how-work .how-content::after {
        display: none;
    }
	.testimonial-item {
		background: #81ae77;
		padding: 12px 20px;
		border-radius: 20px;
		height: 210px;
	}
	
	.ab-row {
		padding: 0px 100px;
		margin-left: 0px;
	}
	.Our-Services {
		padding-bottom: 0px;
	}
	.home-ourservice {
		padding-bottom: 30px;
	}
	.review-content ul li i {
		color: #fecc2b;
		font-size: 8px;
	}
	
	.right-div p{
		display:block;
	}
	
	.testimonial-author .left-div {
		display: flex;
		/* flex-wrap: nowrap;
		justify-content: flex-start;
		flex-direction: column; */
	}
	.author-image img {
		width: 100%;
		max-width: 45px;
		border-radius: 50%;
	}
	.review-content p {
        padding-left: 3px;
        font-size: 12px;
        line-height: 23px;
        color: #525252;
    }


	.our-testimonial .section-title h2 {
        font-size: 18px !important;
    }
	.page-services .row1 {
		margin: 0px 0px;
		padding: 0px 20px 20px;
		background: #589654;
		border-radius: 15px;
	}
	.how-service .work-step-content h3 {
		font-size: 15px;
		padding: 0pc 10px;
		line-height: 19px;
		font-family: sans-serif;
	}
	.testimonial-item {
        background: #81ae77;
        padding: 12px 13px;
        border-radius: 20px;
    }
	.fact-height {
		height: auto;
	}
	.fact-height1 {
		height: auto;
	}
	.fact-height2 {
		height: auto;
	}
	.review-section .testimonial-item {
		padding: 20px 12px 10px;
		border-radius: 20px;
	}
	.how-work .col-md-2 .how-content::after {
        content: 'â¬‡';  /* or â†“ */
        position: absolute;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 20px;
        color: #28a745;
    }
	
	.how-work .serv-title h2 {
		text-align: center;
	}
	.serv-title h2 {
		font-family: "Poppins", sans-serif;
		margin-bottom: 10px;
		color: #2b2b2b;
		font-size: 24px;
		font-weight: 600;
	}
	.our-testimonial h2{
		width: 230px;
	}







@media (max-width: 576px) {
    .swiper.review-slider {
      height: 360px;
    }
	.categorySwiper .swiper-slide a {
		font-size: 13px;
	}
	.work-step-image img {
		width: auto;
		height: 75px;
	}
	.review-section .testimonial-content{
		font-size: 13.5px;
		line-height: 19px;
	}
	.our-testimonials{
		display:block;
	}
	.our-testimonials h2{
		width:270px
	}
	.page-services .row1 {
		margin: 5px 0px;
	}
	.row1 .section-title {
        margin-bottom: 0px;
    }
    .wecollect h6 {
        color: #333333;
    }
	.review-content p {
		padding-left: 5px;
		font-size: 16px;
		line-height: 18px;
		color: #525252;
	}
	.fixed-pickup-btn{
		display: block;
	}
	.review-section{
		display: block;
	}
	.header-contact-btn{
		padding-bottom: 18px;
	}
	.how-content .header-contact-btn{
		padding-bottom: 0px;
	}
	.work-step-content p {
		font-size: 13px;
        line-height: 18px;
        font-weight: 400;
		margin-bottom: 8px;
	}
	.box1 .work-step-content p {
		font-size: 10px;
        line-height: 18px;
        font-weight: 400;
	}
	.enquiry-section {
		padding: 0px 15px 30px;
	}
	.section-title {
        margin-bottom: 10px;
    }
	.iclass i {
		color: #ff5050;
		font-size: 28px;
		margin-right: 10px;
		margin-top: 13px;
	}
	
	.swiper-button-next, .swiper-button-prev {
		position: absolute;
		top: var(--swiper-navigation-top-offset, 50%);
	  
	}
	.mobile-show .homeSwiper .swiper-button-next, .swiper-button-prev {
		position: absolute;
		top: var(--swiper-navigation-top-offset, 46%);
	  
	}
  }
 
  @media (max-width: 767px) {
	
	.desk-row{
		display: none;
	}
	.mobile-row{
		display:block;
	}
	
	.btn-secondary1 {
		border: 1px solid green;
		padding: 5px 5px;
		background: green;
		color: #fff;
		font-size: 13px;
		margin-top: 20px;
	}
	.enquiry-section .btn-default{
		margin-top: 7px;
		border-radius: 10px;
	}
	.home .fact-counter-item {
		position: relative;
		background: #ffffff;
		padding:0px 15px;
		border-radius: 20px;
		height: 100%;
	}
	.mobile-footer .review-content ul li i {
        color: #fecc2b;
        font-size: 12px;
        margin-left: 5px;
    }
	.desktop-footer{
		display: none;
	}
	.mobile-footer{
		display: block;
	}
	 .mobile-show{
		display: block;
	}
	 .desktop-banner{
		display: none;
	}
	.movile-view{
		display: block;
	}
	.banner-section{
		display: none;
	}
	.navbar-brand img{
		width: 50px;
		height: auto;
	}
	.movile-view{
		padding: 22px 0px 220px;
		margin-top: 58px;
		margin-bottom: 22px;
	  }
	.how-it-work .box1 {
		margin: 0px 0px;
	}
	.banner-text p {
		color: #555;
		margin-bottom: 4px;
		font-size: 14px;
	}
	.serv-content {
		padding: 30px 20px 0px;
		margin-bottom: 30px;
	}
	.testimonial-content {
		height: 220px;
		/* overflow: hidden; */
	  }
	  .why-did .container {
		padding: 0px 20px;
	}
	  /* .testimonial-content p {
		display: -webkit-box;
		-webkit-line-clamp: 6; 
		-webkit-box-orient: vertical;
		overflow: hidden;
		text-overflow: ellipsis;
	  } */
	.banner-text {
	  text-align: center;
	  /* display: none; */
	}
	.footer-copyright {
        padding: 3px 0 15px !important;
        margin-top: 0;
    }
	.ab-text{
		margin-top: 20px;
	}
	.ab-text p{
		margin-bottom:5px;
	}
	.about-us-content .section-title p{
		margin-bottom:5px;
		text-align: justify;
		padding: 0px 0px;
	}
	.fixed-pickup-btn {
		position: sticky;
		bottom: -3px;
		left: 0px;
		z-index: 1;
		width: 100%;
		padding: 0px;
	}
	.mobile-footer .fixed-pickup-btn{
		/* margin-left: 18px; */
	}
	.fixed-pickup-btn a {
		height: 40px;
        text-align: center;
        font-size: 18px;
        width: 100%;
        padding: 13px 10px 13px 10px;
        background-color: #2e7d32;
        color: #ffffff;
        font-weight: bold;

        text-decoration: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
	}
	.page-services .row1 .icon-box::before {
		content: attr(data-step);
        position: absolute;
        top: -3px;
        right: -6px;
        background-color: #589654;
        color: #fff;
        font-weight: bold;
        font-size: 12px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
	}
	.footer-copyright-text p {
		color: #181818;
		margin-bottom: 0;
		font-size: 14px;
	}
	.banner-image {
		padding-bottom: 0px;
		width: 100%;
		max-width: 100%;
		height: auto;
	}
	.bottom-btn a img {
		width: 150px;
		height: 47px;
	}
	.custom-half-star {
		font-size: 32px;
		position: relative;
		color: gold;
		 /* right half */
	  }
	  
	 .custom-half-star::before {
		content: '\F09A7'; /* Unicode for mdi-star-half */
		font-family: "Material Design Icons";
		color: gray; /* left half */
		position: absolute;
		left: 0;
		width: 50%;
		overflow: hidden;
	  }
	.how-service .section-title p {
		margin-top: 4px;
		margin-bottom: 10px;
		width: auto;
		margin: 0px auto;
	}
	.movile-view .header-contact-btn {
        padding-bottom: 18px;
        text-align: center;
        margin-top: 160px;
        position: absolute;
    }
	.contact-info-box .row {
		flex-direction: column-reverse;
	}
	.service-page .row{
		flex-direction: column-reverse;
	}
	.service-page .service-img img{
		margin-bottom: 20px;
	}
}

  
  @media only screen and (max-width: 767px){
	.page-header.parallaxie {
		background-image: url(../images/home-images/bread.png);
		background-size: cover;
		background-position: center center;
		background-repeat: no-repeat;
		min-height: 170px;
		border-radius: 20px;
	}
	.text-div p img {
		width: 18px;
		margin-bottom: 9px;
	}
	.ab-page .section-title {
        margin-bottom: 10px;
    }
	.ab-page .section-title h3{
		line-height: 1.2em;
    }
	.page-header-box {
		position: relative;
		text-align: center;
		z-index: 1;
		padding-top: 10px;
	}
	.section-row{
		margin-bottom: 30px;
	}
	.left-div p{
		display: block;
        font-size: 12px;
        margin-top: -10px;
        margin-bottom: 7px;
        color: #fff;
	}
	.section-title h1{
		font-size: 30px;
	}
	.right-div p{
		display: none;
	}
	.section-title h2{
		font-size: 23px;
        line-height: 30px;
	}

	.section-title p{
        margin-top: 10px;
    }
	.service-page .serv-title{
		text-align: left;
	}
	
	.how-work .serv-title h2{
        text-align: center;
		padding-left: 10px;
    }
	.enquiry-section p{
		margin-bottom: 0px;
		line-height: 20px;
	}

	.const-service{
		padding-bottom: 20px;
	}
	.section-title-content{
        margin-top: 10px;
    }

	.hero-review-image figure{
		width: 50px;
		height: 50px;
	}

	.scrolling-content span{
        font-size: 18px;
    }

	.scrolling-content span img{
        width: 18px;
    }

	.about-images{
        max-width: 100%;
		gap: 20px;
    }
	.work-step-content img {
		width: 37px;
		padding-bottom: 0px;
		margin-top: -8px;
	}
	.right-div p {
		margin-top: -45px;
		font-size: 12px;
		color: #fff;
	}
		
	.about-img-1,
	.about-img-2{
		width: calc(50% - 10px);
	}

	.about-img-2{
		margin-top: 50px;
	}

	.years-experience-box{
        width: 110px;
        height: 110px;
    }

	.years-experience-box h2{
        font-size: 28px;
    }

	.years-experience-box p{
		font-size: 14px;
	}

	.about-us{
        background-position: bottom -30px right -90px;
		background-size: 130% auto;
    }
	.pop-img{
		text-align: center;
		margin-bottom: 20px;
	}
	.about-us-body{
		gap: 0px;
	}

	.about-body-item{
		width: 100%;
	}
	.page-blog-accordion h2 {
		font-family: "Poppins", sans-serif;
		color: #2b2b2b;
		font-size: 22px;
		font-weight: 600;
		margin-bottom: 15px;
		line-height: 27px;
	}
	.service-item .icon-box {
        margin-bottom: 5px;
    }
	.page-blog-accordion {
		padding: 25px 20px;
		box-shadow: rgba(99, 99, 99, 0.2) 0px 1px 8px 0px;
		border-radius: 20px;
	}
	.page-blog-accordion h4 {
		font-size: 20px;
	}
	.page-services .section-title h2 {
		color: #0a0a0a;
        font-size: 14.5px;
        font-weight: 600;
        margin-top: 0px;
        margin-bottom: 8px;
        line-height: 15px;
		padding-top: 10px;
	}
	.page-services .row1 {
		margin: 0px 0px;
		padding: 0px 16px 15px;
		background: #589654;
		border-radius: 15px;
	}
	.why-choose-list{
        padding: 10px;
		border-radius: 10px;
    }

	.why-choose-list ul li{
		font-size: 14px;
		margin-bottom: 10px;
	}

	.why-choose-btn{
        margin-top: 20px;
    }	

	.why-choose-images{
        max-width: 100%;
		gap: 20px;
    }

	.why-choose-image-box-1{
		width: calc(48% - 10px);
		gap: 20px;
	}
	.serv-title h2 {
		font-family: "Poppins", sans-serif;
		margin-bottom: 10px;
		color: #2b2b2b;
		font-size: 18px;
		line-height: 22px;
		font-weight: 600;
	}
	.why-choose-image-box-2{
		width: calc(52% - 10px);
		margin-top: 50px;
	}
	
	.environment-img-2{
		max-width: 180px;
		margin-left: -80px;
	}

	.environment-img-1 figure img{
        aspect-ratio: 1 / 1.3;
    }

	.experience-circle img{
        max-width: 90px;
    }

	.environment-body-item{
        margin-bottom: 20px;
        padding-bottom: 20px;
    }

	.environment-body-item .icon-box{
		margin-right: 10px;
	}

	.environment-body-item-content{
		/* width: calc(100% - 60px); */
	}
	.mb-2{
		margin-bottom: 30px;
	}
	.fact-list ul{
		gap: 10px;
	}

	.fact-list ul li{
		width: 100%;
	}

	

	.fact-counter-item{
		text-align: center;
		margin-bottom: 5px;
	}

	.fact-counter-item:after{
		right: -10px;
	}

	.fact-counter-item h2{
        font-size: 22px;
    }

	.our-fact-image img{
        max-width: 100%;
    }

	.what-we-do-list ul li{
		margin-bottom: 10px;
	}
	
	.what-we-do-item{
		width: 100%;
	}

	.what-we-do-item .icon-box{
        margin-bottom: 20px;
    }

	.work-step-item{
        width: 100%;
    }

	.work-step-content{
        padding-top: 10px;
    }

	.work-step-content h2{
        font-size: 50px;
    }

	.work-step-content h3{
        margin-bottom: 0px;
    }
	
	.donate-box{
        padding: 30px 20px;
    }
	.left-view-all {
		margin-bottom: 25px;
	}
	.donate-value-box .donate-value label{
		font-size: 14px;
		padding: 10px;
	}
	
	.faq-image img{
        /* aspect-ratio: 1 / 0.82; */
    }

	.client-review-content{
		bottom: 15px;
		right: 15px;
		left: 15px;
	}

	.client-review-content p{
        font-size: 16px;
    }

	.faq-accordion .accordion-item .accordion-body{
		padding: 14px 15px;
	}

	.review-image{
		margin-right: 15px;
		padding-right: 15px;
	}

	.review-image img{
		max-width: 120px;
	}

	.testimonial-image img{
        aspect-ratio: 1 / 0.7;
    }

	.testimonial-header{
        margin-bottom: 20px;
    }

	.testimonial-company-logo img{
		max-width: 150px;
	}

	.testimonial-quote img{
		max-width: 34px;
	}

	.testimonial-content{
		margin-bottom: 0px;
        padding-bottom: 0px;
		font-size: 13px;
        line-height: 16px;
	}

	.testimonial-pagination{
		position: initial;
		margin-top: 20px;
		justify-content: center;
	}

	.testimonial-company-slider{
        /* margin-top: 30px;
        padding-top: 30px; */
    }

	.post-item .post-featured-image,
	.post-item .post-item-body{
		width: 100%;
	}
	.post-item .post-item-body{
		background: #fff;
	}

	.post-item-content{
		margin-bottom: 15px;
	}
	
	.post-item-content h2{
        font-size: 18px;
        margin-bottom: 5px;
    }
	.mobile-about{
		display: none;
	}
	.footer-logo{
		text-align: left;
	}

	.footer-contact-item{
		width: 100%;
	}

	.footer-contact-item .icon-box{
        width: 45px;
        height: 45px;
    }

	.footer-contact-item-content{
        width: calc(100% - 55px);
    }

	.about-footer{
        padding-right: 0px;
    }

	.about-footer .footer-links{
		margin-bottom: 20px;
	}

	.footer-social-links{
        margin-top: 20px;
    }

	.footer-links h3{
        margin-bottom: 15px;
    }

	.newsletter-form p{
		margin-bottom: 20px;
	}

	.footer-copyright{
        padding: 15px 0;
    }

	.footer-privacy-policy,
	.footer-copyright-text{
		text-align: center;
	}

	.footer-privacy-policy{
		margin-top: 5px;
        font-size: 14px;
	}

	.page-header-box h1{
		font-size: 30px;
	}

	.page-header-box ol li.breadcrumb-item{
		font-size: 14px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
		font-size: 20px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img{
        width: 14px;
    }

	.our-approach-nav{
        margin-bottom: 20px;
    }

	.our-approach-nav ul li .nav-link{
        padding: 15px;
        gap: 10px;
        font-size: 18px;
    }

	.our-approach-nav ul li .nav-link span img{
        max-width: 26px;
    }

	.approach-tab-image, .approach-tab-list{
		width: 100%;
	}

	.approach-tab-list ul li{
		margin-bottom: 10px;
		background-size: 18px auto;
    	padding-left: 25px;
	}

	.our-solution-list ul{
		gap: 10px;
	}

	.our-solution-list ul li{
		width: 100%;
		background-size: 18px auto;
		padding-left: 25px;
	}
	.author-content h3 {
		font-size: 22px;
		text-transform: capitalize;
		color: #fff;
		margin-bottom: -5px;
	}
	.testimonial-author {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-bottom: 0px;
	}
	.our-solution-images{
		gap: 20px;
	}

	.solution-image-box{
		width: 100%;
	}

	.solution-support-box{
		margin-bottom: 20px;
	}

	.solution-support-title{
        margin-bottom: 15px;
    }

	.solution-support-title h2{
        font-size: 28px;
    }

	.solution-image-2 img{
		aspect-ratio: 1 / 0.9;
	}

	.team-content{
		padding: 15px;
	}

	.feature-item-box{
		gap: 20px;
	}

	.feature-item{
		width: 100%;
	}
    .about-page .feature-item-content p {
        font-size: 16px;
        line-height: 22px;
        text-align: justify;
    }
	.feature-item-content p{
		font-size: 16px;
        line-height: 22px;
	}
	
	.feature-list{
        margin-top: 20px;
        padding-top: 20px;
    }

	.feature-list ul{
		gap: 10px;
	}

	.feature-list ul li{
		width: 100%;
	}
	.m-icon h3 {
		color: #00aa00;
		font-weight: 600;
		font-family: sans-serif;
		font-size: 22px;
	}
	.feature-image-1{
		max-width: 200px;
		margin-right: -80px;
	}

	.feature-image-2{
		padding-top: 80px;
	}

	.feature-image-2 img{
        aspect-ratio: 1 / 1.1;
    }

	.feature-experience-circle{
		left: 10px;
		bottom: 15px;
	}

	.feature-experience-circle img{
		max-width: 90px;
	}

	.page-services .service-item{
		width: 100%;
	}

	.page-catagery-list h3{
        padding: 15px 20px;
    }

	.sidebar-cta-content img{
        margin-bottom: 20px;
    }

	.page-single-image{
        margin-bottom: 20px;
    }

	.page-single-image img{
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2{
        font-size: 28px;
    }

	.service-solutions-box ul{
        margin: 20px 0;
    }

	.solution-step-item{
		width: 100%;
	}

	.solution-step-item .solution-step-no h2{
		font-size: 36px;
	}

	.service-driving-image-box,
	.service-driving-item-list{
		width: 100%;
	}

	.service-driving-image-box figure{
		margin-top: 20px;
	}

	.service-driving-item-list .environment-body-item{
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

	.post-single-meta ol li{
        font-size: 16px;
    }
    
    .post-single-meta ol li i{
        font-size: 16px;
    }
    
    .post-image img{
        aspect-ratio: 1 / 0.7;
    }
    
    .post-entry blockquote{
        background-position: 15px 15px;
        padding: 60px 15px 15px 15px;
    }
    
    .post-entry blockquote p{
        font-size: 16px;
    }
    
    .post-entry h2{
        font-size: 28px;
    }
    
    .tag-links{
        font-size: 18px;
    }

	.project-category-list h3{
		padding: 15px 20px;
	}

	.project-category-list ul li{
		font-size: 18px;
	}

	.project-category-list ul li span{
		width: 68%;
	}
	
	.project-entry h2{
		font-size: 28px;
	}

	.project-innovation-image,
	.project-innovation-list{
		width: 100%;
	}

	.project-challenge-list .environment-body-item{
		width: 100%;
	}

	.project-challenge-image,
	.project-challenge-video{
		width: 100%;
	}

	.project-challenge-image img{
		aspect-ratio: 1 / 0.68;
	}

	.team-single-image img{
		aspect-ratio: 1 / 0.9;
	}

	.team-contact-list{
		gap: 20px;
	}

	.team-contact-box{
		width: 100%;
	}

	.team-contact-box .icon-box{
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.team-contact-box .icon-box img{
		max-width: 26px;
	}

	.team-contact-content{
		width: calc(100% - 55px);
	}

	.member-social-list{
        margin-top: 20px;
        padding-top: 20px;
    }

	.member-social-list ul li{
		margin-right: 5px;
	}

	.team-experience-info-item{
		gap: 5px;
	}

	.team-experience-content,
	.team-experience-year{
		width: 100%;
	}
		
	.team-experience-year{
		text-align: left;
	}

	.skills-progress-bar .skill-data{
        margin-bottom: 10px;
    }

	.contact-form{
        padding: 20px;
    }

	.google-map-iframe,
	.google-map-iframe iframe{
		height: 220px;
	}

	.donation-box{
		padding: 30px 20px;
	}

	.donate-form-box .form-control{
		padding: 12px 15px;
	}
	
	.donate-form-box .donate-value{
		width: calc(33.33% - 10px);
	}
	.py-5 {
		padding-top: 2rem !important;
		padding-bottom: 1rem !important;
	}
	.donate-payment-type .payment-method input{
		height: 16px;
		width: 16px;
	}
	.review-box{
		display: block !important;
	}
	.testimonial-slider .swiper-slide {
		width: 50%; 
	  }
	  .sell-btns .about-us-btn {
		margin-right: 0px;
	}
	.sell-btns {
		display: flex;
		justify-content: space-evenly;
		text-align: center;
		padding: 10px 0px 5px 0px;
	}
	.hom1 .sell-btns {
		display: flex;
		justify-content: space-evenly;
		text-align: center;
		padding: 10px 0px 15px 0px;
	}
	
	.why-scrap .row{
		justify-content: left;
	}
	.cont-top{
		margin-bottom: 30px;
	}
	.google-map {
		padding: 20px 0px;
	}
}
.service-data a {
    color: #000;
}
 @media only screen and (max-width: 991px){
	    .iclass i {
        color: #ff5050;
        font-size: 28px;
        margin-right: 10px;
        margin-top: 0px;
    }
	.ab-img img{
		border-radius: 15px;
	}
	.wecollect h6{
		font-family: sans-serif;
		font-weight: 600;
        font-size: 12px;
		margin-top: 3px;
		color: #000 !important;
	}
	.content {
		padding: 50px 10px 0px;
	}
	.why-scrap .section-title{
		text-align: center;
	}
	.our-testimonial .section-title h2 {
        font-size: 18px !important;
    }
	.about-us-content .section-title h3 {
		font-size: 22px;
		margin-bottom: 0px;
		letter-spacing: 0;
		text-transform: capitalize;
		padding-left: 10px;
	}
	
	.work-step-item-list{
		display: flex;
		flex-wrap: wrap;
		gap: 0px;
	}
	.ab-row{
		padding: 0px 0px;
	}
	
.swiper-slide {
    flex-shrink: 0;
    width: 100%;
	/* height: 220px; */
}

.btn-primary {
    font-size: 13px;
    color: #fff;
    background: #2e7d32;
    border-color: #2e7d32;
}
	.banner-section {
		background-color: #ffffff;
		padding: 100px 0px 40px;
	}
	.box1 .btn-default {
		padding: 10px 20px 10px 25px;
		line-height: 17px;
		font-size: 16px;
		border-radius: 8px;
	}
	.modal-title {
		color: #fff;
		font-size: 17px;
		font-weight: 600;
		font-family: "Poppins", sans-serif;
		margin-bottom: 0;
		/* line-height: var(--bs-modal-title-line-height); */
	}
	.service-data h5{
		font-size: 12px;
        overflow: hidden;
        font-family: sans-serif;
        font-weight: 500;
		color: #333333;
	}
	.main-footer-box {
		display: flex;
		align-items: flex-end;
		margin-bottom: 30px;
		padding: 30px 0px 0px 15px;
		flex-wrap: nowrap;
	}
	.footer-social-links ul li a {
		background: var(--accent-color);
		border-radius: 50%;
		width: 35px;
		height: 35px;
	}
	.footer-social-links ul li a i {
		color: #fff;
		font-size: 16px;
	}
	.footer-logo {
		padding: 0;
	}
	.btn-default::before{
		width: 18px;
		height: 18px;
		transform: translate(-15px, -50%);
	}
	.text-div {
		padding-left: 0px;
		padding-top: 0px;
	}
	.banner-text h2 {
		color: #2e7d32;
		font-weight: 700;
		font-size: 25px;
        line-height: 26px;
		margin-bottom: 5px;
		margin-top: 0px;
	}
	.our-fact-content .section-title p {
		width: 100%;
		margin: 0px auto;
	}
	.btn-default:hover::before{
		transform: translate(-12px, -50%);
	}

	.navbar{
		padding: 5px 0;
	}
	.navbar-toggle .search-btn i {
		margin-top: 10px;
		font-size: 20px;
		color: #000;
	}
	.slicknav_nav li,
	.slicknav_nav ul{
        display: block;
    }

	.responsive-menu,
    .navbar-toggle{
        display: flex;
    }

	.header-btn{
		display: none;
	}

	.section-row{
		margin-bottom: 40px;
	}
	.review-section .iclass i {
        color: #ff5050;
        font-size: 29px;
        margin-right: 10px;
    }
	.review-section .section-title{
		margin-top: 40px;
		margin-bottom: 10px;
	}
	.section-title{
		margin-bottom: 30px;
	}
	.our-testimonials .section-title{
		margin-bottom: 10px;
	}
	.section-title{
		margin-bottom: 30px;
	}
   .how1 .section-title {
		margin-bottom: 15px;
	}
	.section-title h3{
		font-size: 14px;
		background-size: 22px auto;
		/* padding-left: 30px; */
		margin-bottom: 10px;
	}

	.section-title h1{
		font-size: 55px;
	}

	.section-title h2{
		font-size: 22px;
        line-height: 30px;
	}

	.section-title p{
		margin-top: 10px;
	}

	.section-title-content{
		margin-top: 15px;
	}
	.footer-logo {
        text-align: center;
    }
	.footer-logo .what-class {
		display: flex;
		color: #000;
		justify-content: center;
		margin-top: 0px;
	}
	.section-btn{
		text-align: left;
		margin-bottom: 15px;
	}

	.section-content-btn .section-btn{
		margin-top: 15px;
	}

	.hero{
		padding: 180px 0 90px;
	}

	.hero.hero-slider-layout .hero-slide{
		padding: 180px 0 90px;
	}
	
	.hero.hero-slider-layout .hero-pagination{
		bottom: 30px;
		padding-left: 15px;
	}

	.our-scrolling-ticker{
		padding: 15px 0;
	}
	
	.scrolling-ticker-box{
		--gap: 15px;
	}

	.scrolling-content span{
		font-size: 36px;
	}

	.scrolling-content span img{
		width: 22px;
		margin-right: 15px;
	}

	.about-us{
		padding: 30px 0 50px;
        background-size: 80% auto;
        background-position: bottom -60px right -130px;
    }

	.about-images{
		width: 100%;
		max-width: 75%;
		margin: 0 auto 30px;
	}

	.about-img-1 img,
	.about-img-2 img{
		aspect-ratio: 1 / 1.7;
	}

	.years-experience-box{
		width: 140px;
		height: 140px;
		border-width: 5px;
	}

	.years-experience-box h2{
		font-size: 36px;
	}

	.about-us-content{
		margin-left: 0;
	}

	.about-body-item{
		padding: 5px 0px;
	}

	.about-body-item .icon-box{
		width: 50px;
		height: 50px;
	}

	.about-body-item .icon-box img{
		max-width: 30px;
	}

	.about-body-item-title{
		width: calc(100% - 30px);
	}

	.about-body-item-title h3,
	.about-author-box .author-info h3{
		font-size: 13px;
        font-family: sans-serif;
        line-height: 18px;
        font-weight: 500;

	}
	.our-feature .row {
		margin-right: 0px;
	}
	.about-body-item .icon-box1 img {
		position: relative;
		width: 100%;
		max-width: 45px;
		z-index: 1;
	}
	.about-body-item .icon-box1 {
		margin-right: 5px;
	}
	.about-us-footer{
		margin-top: 30px;
	}
	.row1 .col-lg-4{
		padding-left: 5px;
		padding-right: 5px;
	}
	.our-services{
		background-position: bottom -20px left -20px;
		background-size: 240px auto;
		padding: 50px 0;
	}

	.service-item{
		padding: 4px 0px;
	}

	.service-item .icon-box{
		height: 55px;
        width: 55px;
		margin-bottom: 3px;
	}

	.service-item .icon-box img{
		max-width: 130px;
	}

	.service-item-content{
		/* margin-bottom: 20px;
		padding-bottom: 20px; */
	}

	.service-item-content h3{
		font-size: 12px;
        font-weight: 700;
	}

	.service-pagination{
		margin-top: 30px;
	}

	.why-choose-us{
		padding: 20px 0 0px
	}
	.why-choose-content .section-title p {
		margin-bottom: 20px;
		width: 100%;
		text-align: justify;
	}
	
	.why-choose-content{
		margin: 0 0 10px 0;
	}
	.how-work {
		padding-top: 30px;
		padding-bottom: 40px;
		margin: 0px 15px;
	}
	.how-content h6
{
    font-size: 13px;
	line-height: 16px;
 }
	.why-choose-list{
		padding: 20px;
	}
	.fact-counter-item {
		position: relative;
		/* background: #badfb3; */
		padding: 0px 0px 10px;
		border-radius: 20px;
		height: 100%;
		
	}
	.why-choose-list ul li{
		background-size: 18px auto;
		background-position: left top 2px;
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.why-choose-btn{
		margin-top: 30px;
	}

	.why-choose-images{
		width: 100%;
		max-width: 80%;
		margin: 0 auto;
	}

	.our-projects{
		padding: 50px 0;
	}

	.project-image img{
		aspect-ratio: 1 / 1.02;
	}

	.project-body{
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.project-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.section-footer-text{
		margin-top: 10px;
	}

	.section-footer-text span{
		font-size: 14px;
	}

	.our-environment{
		padding: 50px 0;
	}

	.our-environment-images{
		margin-right: 0;
		margin-bottom: 30px;
	}

	.environment-img-1 figure img{
		width: 100%;
		aspect-ratio: 1 / 1.02;
		border-radius: 20px;
	}

	.environment-img-2 figure img{
		aspect-ratio: 1 / 1.09;
	}

	.experience-circle img{
		max-width: 130px;
	}

	.environment-body-item{
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.environment-body-item-content h3{
		font-size: 20px;
	}

	.our-facts{
		margin-top: 0;
		padding: 50px 0 0;
	}

	.our-fact-content{
		height: auto;
		margin: 0 0 30px 0;
	}

	.fact-list ul{
		gap: 15px 20px;
	}

	.fact-list ul li{
		width: calc(50% - 10px);
		background-size: 18px auto;
		background-position: left top 2px;
		padding-left: 25px;
	}

	.fact-counter-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.fact-counter-item img{
	}
	
	.fact-counter-item h2{
		font-size: 16px;
        margin-bottom: 5px;
        line-height: 17px;
		padding: 0px 5px;
	}
	.fact-counter-item p {
		margin-bottom: 0px;
		padding: 0px 10px;
        font-size: 13px;
        line-height: 17px;
	}
	.how-work .serv-title h2 {
		color: #2b2b2b;
		font-size: 24px;
		margin-bottom: 0;
	}
	.our-fact-image{
		padding: 0;
		margin: 0;
	}

	.our-fact-image img{
		max-width: 60%;
	}

	.what-we-do{
		padding: 50px 0;
	}

	.What-we-do-content{
		position: initial;
		margin: 0 0 30px 0;
	}

	.what-we-do-list ul li{
		background-position: left top 2px;
		background-size: 18px auto;
		padding-left: 25px;
		margin-bottom: 15px;
	}

	.what-we-do-btn{
		margin-top: 30px;
	}

	.what-we-do-item{
		padding: 20px;
	}

	.what-we-do-item .icon-box{
		margin-bottom: 30px;
	}

	.what-we-do-item .icon-box img{
		max-width: 50px;
	}

	.what-do-item-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.what-we-do-box .section-footer-text{
		margin-top: 40px;
	}

	.how-it-work{
		padding: 10px 0 20px;
	}
	.home .fact-counter-item {
		margin-right: 0px;
		margin-bottom: 10px;
	}
	.work-step-item{
		/* width: calc(50% - 15px); */
	}
	.feature-item {
		margin-bottom: 15px;
		padding: 20px 10px 0px 0px;
		border-radius: 14px;
	}
	.work-step-image{
		margin-bottom: 0px;
	}

	.work-step-content{
		padding-top: 5px;
        padding-bottom: 3px;
	}
	.hom1 .work-step-content{
		padding-top: 0px;
		padding-bottom: 6px;
	}

	.work-step-content h2{
		font-size: 65px;
	}
	.work-step-content h3 {
		font-size: 20px;
		padding-bottom: 0px;
		font-family: sans-serif;
	}
	.work-step-content h3{
		font-size: 13px;
		margin-bottom:2px;
	}
	.how-it-work .row > * {
		padding-right: 5px;
		padding-left: 5px;
	}
	.donate-box{
		padding: 40px;
		margin-top: 40px;
	}

	.donate-box .section-title,
	.donate-form{
		width: 100%;
	}

	.donate-form .form-control{
		padding: 12px 15px;
	}

	.donate-value-box .donate-value label{
		padding: 12px;
	}

	.donate-form .form-group-btn .btn-default.btn-highlighted{
		padding: 15px;
	}

	.our-faqs{
		padding: 0px 0 50px;
	}
	.about-faq{
		padding-top: 40px;
	}

	.faq-image{
		margin-bottom: 30px;
	}

	.faq-image img{
		/* aspect-ratio: 1 / 0.56; */
	}

	.client-review-content p{
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-item{
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button{
		font-size: 20px;
		padding: 14px 40px 14px 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after{
		right: 15px;
		font-size: 10px;
		width: 18px;
		height: 18px;
	}

	.faq-accordion .accordion-item .accordion-body{
		padding: 14px 40px 14px 15px;
	}

	.our-testimonials{
		padding: 0px 0;
	}

	.review-box{
		margin-top: 15px;
		justify-content: start;
		margin-bottom: 20px;
	}

	.testimonial-image{
		margin-bottom: 30px;
	}

	.testimonial-image img{
		aspect-ratio: 1 / 0.59;
	}

	.testimonial-slider{
		margin: 0;
	}

	.testimonial-header{
		margin-bottom: 30px;
	}
	.footer-logo h3 {
		font-size: 22px;
		color: #000;
		text-align: center;
	}
	.testimonial-content{
		padding-bottom: 0px;
		margin-bottom: 0px;
	}

	.author-content h3{
		font-size: 17px;
        margin-top: 5px;
	}
	.service-item-content h3 a {
		color: #373737;
		font-size: 11px;
		font-weight: 800;
		margin-bottom: 5px;
	}
	.service-item-content p {
		color: #4c4c4c;
		margin-bottom: 0;
		transition: all 0.3s ease-in-out;
		text-align: center;
		font-size: 13px;
		line-height: 14px;
		margin-top: 2px;
	}
	.testimonial-company-slider{
		/* margin-top: 40px;
		padding-top: 40px; */
	}
	.testimonial-company-slider .swiper-slide {
		background: #ffffff;
		border-radius: 15px;
		text-align: left;
		margin-bottom: 10px;
	}
	.our-blog{
		padding: 50px 0;
	}

	.post-item.highlighted-post-item{
		margin-bottom: 30px;
	}

	.post-featured-image img{
		/* aspect-ratio: 1 / 0.557; */
	}

	.post-item-body{
		padding: 20px;
	}

	.post-item-content h2{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.main-footer{
		padding: 10px 0 0;
	}
	.team-content p {
		font-size: 14px;
	}
	.main-footer-box{
		margin-bottom: 0px;
		padding-bottom: 0px;
	}
	.mobile-footer .row{
		justify-content: left !important;
	}
	.footer-logo img {
		width: auto;
		height: 80px;
	}
	.footer-logo{
		width: 100%;
		text-align: left;
		margin-bottom: 8px;
        margin-top: 14px;
	}
	
	.footer-contact-details{
		width: 100%;
		justify-content: center;
		gap: 20px;
	}

	.footer-contact-item .icon-box{
		width: 50px;
		height: 50px;
		margin-right: 10px;
	}

	.footer-contact-item .icon-box img{
		max-width: 26px;
	}

	.footer-contact-item-content{
		width: calc(100% - 60px);
	}

	.footer-contact-item-content h3{
		font-size: 20px;
	}
	.team-content img {
		margin-bottom: 15px;
		width: 110px;
	}
	.about-footer{
		margin-bottom: 30px;
	}

	.footer-social-links{
		margin-top: 10px;
		margin-left: 5px;
		
	}

	.footer-links{
		margin-bottom: 0px;
		margin-left: 5px;
	}
	.blog-section {
		margin-top: 15px;
		padding-top: 0px;
		background: #f6f6f6;
		padding-bottom: 25px;
	}
	.footer-links h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.footer-links ul li{
		margin-bottom: 10px;
		font-size: 14px;
	}

	.newsletter-form{
		padding-left: 0px;
	}

	.footer-copyright{
		padding: 30px 0;
		margin-top: 0;
	}

	.page-header{
		padding: 100px 0px 30px;
	}

	.page-header-box h1{
		font-size: 23px;
		margin-bottom: 5px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker{
		padding: 10px 0;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img{
		width: 18px;
	}

	.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span{
		font-size: 30px;
	}

	.our-approach{
		background-size: 200px auto;
		padding: 50px 0;
	}

	.our-approach-content{
		position: initial;
		top: 0;
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.our-approach-nav{
		margin-bottom: 30px;
	}

	.our-approach-nav ul li .nav-link{
		padding: 20px;
		gap: 15px;
		font-size: 20px;
	}

	.our-approach-nav ul li .nav-link span{
		width: 50px;
		height: 50px;
	}

	.our-approach-nav ul li .nav-link span img{
		max-width: 30px;
	}

	.our-solutions{
		padding: 50px 0;
	}

	.our-solution-content{
		margin-right: 0px;
		margin-bottom: 30px;
	}

	.solution-support-title{
		margin-bottom: 20px;
	}

	.solution-image-2 img{
		aspect-ratio: 1 / 1.2;
	}

	.solution-support-title h2{
		font-size: 36px;
	}

	.our-team{
		padding: 50px 0 20px;
	}

	.team-image img{
		aspect-ratio: 1 / 0.99;
	}

	.team-content h2{
		font-size: 20px;
        line-height: 20px;
        margin-bottom: 0px;
	}
	.team-item {
		margin-bottom: 20px;
	}
	.our-feature{
		padding: 0px 0 20px;
	}
	.content .serv-title p {
		color: #000;
		text-align: justify;
		margin-bottom: 10px;
	}
	.desk-about{
		display: none;
	}
	.mobile-about{
		display: block;
	}
	.why-did h2 {
		color: #2b2b2b;
		font-size: 22px;
		font-weight: 600;
		padding-top: 10px;
		line-height: 24px;
		margin-bottom: 20px;
		text-align: center;
		font-family: "Poppins", sans-serif;
	}
	.why-choose-us .section-title h2 {
		color: #2b2b2b;
        font-size: 22px;
        font-weight: 600;
        padding-top: 10px;
        margin-top: 10px;
        line-height: 28px;
        font-family: "Poppins", sans-serif;
        padding-top: 15px;
	}
	.our-feature-content{
		margin-bottom: 20px;
	}
	.why-choose-us {
		margin-bottom: 10px;
	}
	.feature-item-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.feature-item .icon-box i {
		font-size: 34px;
		color: #fff;
	}
	.feature-item .icon-box {
		position: relative;
		margin-right: 0px;
		width: 100%;
		max-width: 60px;
		height: 35px;
	}
	.feature-item .icon-box{
		/* width: 60px;
		height: 60px;
		margin-bottom: 20px; */
	}

	.feature-item .icon-box img{
		width: 43px;
        height: 43px;
	}

	.feature-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.feature-images{
		margin-left: 0;
	}

	.feature-image-2 img{
		aspect-ratio: 1 / 0.9;
	}

	.page-services{
		padding: 20px 0 15px;
	}
	.carousel-indicators {
		position: absolute;
		right: 0;
		bottom: -37px;
		left: 0;
		z-index: 2;
		display: flex;
		justify-content: center;
		padding: 0;
		margin-right: 15%;
		margin-bottom: 1rem;
	}
	.page-services .service-item{
		/* width: calc(50% - 15px); */
	}
	.work-step-content p {
		padding: 0px 12px 0px;
	}
	.hom1 .work-step-content p {
		padding: 0px 4px 0px;
		margin-bottom: 5px;
	}
	.page-service-single{
		padding: 50px 0;
	}
	.home-ourservice {
        padding-bottom: 20px;
    }
	.home-ourservice .about-us-content{
        padding-bottom: 20px;
		padding-top: 10px;
    }
	.know-waste .about-us-content{
        padding-top: 10px;
    }
	.know-waste .section-title{
		padding-bottom: 15px;
	}
	.know-waste {
		padding-bottom: 25px;
	}
	.home-banner {
		padding-bottom: 0px;
	}
	.page-single-sidebar{
		position: initial;
		margin: 0 0 30px 0;
	}

	.page-catagery-list{
		margin-bottom: 30px;
	}

	.page-catagery-list h3{
		font-size: 20px;
		padding: 20px;
	}

	.page-catagery-list ul{
		padding: 20px;
	}

	.page-catagery-list ul li a{
		padding: 10px 40px 10px 15px;
	}

	.page-catagery-list ul li a::before{
		right: 15px;
		width: 18px;
		height: 18px;
	}

	.sidebar-cta-box{
		padding: 30px;
	}

	.sidebar-cta-content img{
		margin-bottom: 30px;
	}

	.sidebar-cta-content h3{
		font-size: 20px;
	}

	.sidebar-cta-contact ul li{
		margin-bottom: 15px;
	}

	.sidebar-cta-contact ul li a{
		padding: 6px 20px;
	}

	.page-single-image{
		margin-bottom: 30px;
	}

	.service-entry{
		margin-bottom: 40px;
	}

	.service-entry p{
		margin-bottom: 15px;
	}

	.service-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.service-entry ul li{
		background-position: left top 2px;
		background-size: 18px auto;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.service-solutions-box,
	.service-driving-box{
		margin-top: 40px;
	}

	.service-solutions-box ul{
		margin: 20px 0;
	}
	
	.service-solution-steps{
		margin-top: 30px;
	}

	.solution-step-item{
		padding: 20px;
	}

	.solution-item-header{
		margin-bottom: 30px;
	}

	.solution-step-item .icon-box{
		height: 60px;
		width: 60px;
	}

	.solution-step-item .icon-box img{
		max-width: 36px;
	}

	.solution-step-no h2{
		margin-bottom: 0;
	}

	.solution-item-content h3{
		font-size: 20px;
		margin-bottom: 10px;
	}

	.service-driving-image-box figure{
		margin-top: 30px;
	}

	.service-driving-item-list .environment-body-item{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.page-blog{
		padding: 50px 0;
	}
	
	.page-pagination{
		margin-top: 10px;
	}

	.page-single-post{
        padding: 50px 0;
    }
    
    .post-image{
        margin-bottom: 20px;
    }
    
    .post-entry h1,
    .post-entry h2,
    .post-entry h3,
    .post-entry h4,
    .post-entry h5,
    .post-entry h6{
        margin: 0 0 0.417em;
    }
    
    .post-entry h2{
        font-size: 36px;
    }
    
    .post-entry p{
        margin-bottom: 15px;
    }
    
    .post-entry ol li,
    .post-entry ul li{
        margin-bottom: 10px;
    }
    
    .post-entry blockquote{
        background-position: 20px 20px;
        background-size: 40px;
        padding: 20px 20px 20px 70px;
        margin-bottom: 20px;
    }
    
    .post-entry blockquote p{
        font-size: 18px;
    }
    
    .post-tags{
        margin-bottom: 20px;
    }

	.tag-links{
		font-size: 20px;
	}
    
    .post-tags .tag-links a{
        padding: 12px 15px;
    }
    
    .post-social-sharing ul{
        text-align: left;
    }

	.page-projects{
		padding: 50px 0 20px;
	}

	.page-project-single{
		padding: 50px 0;
	}

	.project-category-list{
		margin-bottom: 30px;
	}

	.project-category-list h3{
		font-size: 20px;
		padding: 20px;
	}

	.project-category-list ul{
		padding: 20px;
	}

	.project-category-list ul li{
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.project-entry{
		margin-bottom: 40px;
	}

	.project-entry p{
		margin-bottom: 15px;
	}

	.project-entry h2{
		font-size: 36px;
		margin-bottom: 15px;
	}

	.project-entry ul li{
		background-position: left top 2px;
		background-size: 18px auto;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.project-innovation-box,
	.project-challenge-box{
		margin-top: 40px;
	}

	.project-innovation-image-list,
	.project-challenge-list,
	.project-challenge-video-box{
		margin-top: 30px;
	}

	.video-play-button a{
		height: 70px;
		width: 70px;
	}

	.video-play-button a i{
		font-size: 28px;
	}

	.project-challenge-video ul{
		margin: 20px 0 0;
	}

	.page-team{
		padding: 50px 0 20px;
	}

	.page-team-single{
		padding: 50px 0;
	}

	.team-about-box,
	.team-expertise-experience{
		margin-bottom: 40px;
	}

	.team-single-image,
	.team-about-content{
		width: 100%;
	}

	.team-single-image img{
		aspect-ratio: 1 / 0.75;
	}

	.team-contact-info-box{
		padding: 20px;
	}

	.team-contact-content h3{
		font-size: 20px;
	}

	.member-social-list{
		margin-top: 30px;
		padding-top: 30px;
	}

	.member-social-list h3{
		font-size: 20px;
	}

	.team-expertise-box,
	.team-experience-box{
		width: 100%;
	}

	.team-expertise-list ul li{
		background-position: left top 2px;
		background-size: 18px auto;
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.team-experience-info-item{
		margin-bottom: 20px;
	}

	.team-experience-content h3{
		font-size: 20px;
	}

	.team-skills-box,
	.team-member-form{
		width: 100%;
	}

	.skills-progress-bar{
		margin-bottom: 20px;
	}

	.skills-progress-bar .skill-data{
		margin-bottom: 15px;
	}

	.skills-progress-bar .skillbar .skill-progress{
		height: 14px
	}

	.page-testimonials{
		padding: 10px 0 20px;
	}

	.page-testimonials .testimonial-item{
		padding: 20px;
	}

	.page-testimonials .testimonial-item .testimonial-header {
		margin-bottom: 10px;
	}

	.page-gallery{
        padding: 50px 0 20px;
    }

	.page-video-gallery{
        padding: 50px 0 20px;
    }

	.page-faqs{
		padding: 10px 0 0px;
	}
	.page-faqs .faq-div img {
		width: 70px;
	}
	.page-faqs-catagery .page-faq-accordion{
        margin-bottom: 40px;
    }

	.contact-info-box{
		padding: 30px 0 0;
	}
	.contact-info-box .row{
		box-shadow: none;
	}

	.contact-info-item{
		padding: 10px 10px 10px;
	}
	.contact-info-item {
		display: flex;
		align-items: center;
		margin-bottom: 0;
	}
	.contact-info-item .icon-box{
		margin-bottom: 0px;
	}

	.contact-info-content h3{
		font-size: 20px;
	}

	.page-contact-us{
		padding: 20px 0 50px;
	}

	.contact-us-image,
	.contact-us-box .contact-form{
		width: 100%;
	}

	.contact-form{
		padding: 40px;
	}
	
	.contact-us-image figure,
	.contact-us-image img{
		height: auto;
	}
	
	.contact-us-image img{
		aspect-ratio: 1 / 0.8;
	}

	.contact-form .form-control{
		padding: 12px 16px;
	}
	
	.google-map-iframe, .google-map-iframe iframe{
		/* height: 450px; */
	}

	.page-donation{
		padding: 50px 0;
	}

	.donation-box{
		padding: 60px 30px;
		border-radius: 20px;
	}

	.donate-form-box .form-control{
		padding: 12px 20px;
	}

	.donate-form-box .donate-value-box{
		margin-bottom: 40px;
	}

	.donate-form-box .donate-value label{
		padding: 12px;
	}

	.donate-payment-method{
		margin-bottom: 40px;
	}

	.donate-payment-method .section-title{
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.donate-payment-type .payment-method input{
		height: 20px;
		width: 20px;
	}

	.error-page{
		padding: 50px 0;
	}
	
	.error-page-image{
		margin-bottom: 20px;
	}

	.error-page-image img{
		max-width: 80%;
	}
	.why-choose-us .why-row {
		background: #badfb3;
		margin: 0;
		border-radius: 20px;
	}
}

@media (max-width: 1024px) {
	.author-content h3 {
		font-size: 22px;
		line-height: 15px;
		text-transform: capitalize;
		color: #fff;
		/* margin-bottom: 5px;*/
	}
	.iclass i {
		color: #ff5050;
		font-size: 28px;
		margin-right: 10px;
		margin-top: 0px;
	}
}
@media (max-width: 1199px) {
	.testimonial-item {
		background: #81ae77;
		padding: 20px 15px 15px;
		border-radius: 20px !important;
	}
	
	.main-menu ul li a {
		font-size: 16px;
		font-weight: 600;
		line-height: 1.2em;
		padding: 15px 12px !important;
		color: #000;
		text-transform: capitalize;
		transition: all 0.3s ease-in-out;
	}
	.how-service .work-step-content h3 {
		font-size: 16px;
		padding: 0px 10px;
		font-family: sans-serif;
		/* margin-bottom: 14px; */
	}
	.how-service .work-step-content h3 {
		font-size: 17px;
		padding: 0px 10px;
		font-family: sans-serif;
		/* margin-bottom: 14px; */
	}
	.serv-content p{
		margin-bottom: 0px;
	}
	.how1 .work-step-item h3 {
        font-size: 13px;
        line-height: 16px;
        padding: 0px 10px 2px;
        font-family: sans-serif;
    }
	.how-hotel .work-step-item h3{
		font-size: 13px;
		line-height: 16px;
		padding: 10px 10px 11px;
		font-family: sans-serif;
	}
	.const-service.work-step-item h3 {
        font-size: 15px;
        line-height: 17px;
        padding: 10px 10px 9px;
        font-family: sans-serif;
    }
	.content {
		padding-bottom: 0px;
	}
	.footer-copyright {
		position: relative;
		/* border-top: 1px solid #ececec; */
		padding: 13px 0;
		margin-top: 12px;
		/* z-index: 0; */
	}
	.contact-form{
		padding: 32px;
	}
	.page-contact-us {
		padding: 22px 0 30px;
	}
	.ab-text p {
		margin-bottom: 5px;
		text-align: justify;
	}
	.page-header.parallaxie {
		background-image: url(../images/home-images/bread.png);
		background-size: cover;
		background-position: center;
		background-repeat: no-repeat;
		min-height: 180px;
		border-radius: 20px;
	}
	.faq-accordion .accordion-header .accordion-button{
		font-size: 17px;
		font-family: "Poppins", sans-serif;
		font-weight: 500;
		line-height: 1.1em;
		background: transparent;
		padding: 12px 50px 11px 20px;
		color: var(--primary-color);
		transition: all 0.3s ease-in-out;
	}
	.why-choose-us {
		padding: 0px 0 20px;
	}
	.page-services .row1 .icon-box::before {
		content: attr(data-step);
        position: absolute;
        top: -2px;
        right: 53px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 2px;
		background-color: #2e7d32;
        color: #ffffff;
        font-weight: bold;
        font-size: 14px;
        width: 23px;
        height: 23px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
	}
	.about-us{
		padding: 1px 0 30px;
	}
	.why-did{
		padding-bottom: 20px;
	}
	.hom1 .about-us-content {
		margin-left: 0px;
		padding-top: 0px;
	}
	.why-scrap .about-us-content {
		margin-left: 0px;
		padding-top: 0px;
	}
	.why-scrap {
		padding: 25px 0px;
		background: #f6f6f6;
	}
	.about-us-content {
		margin-left: 0px;
		padding-top: 20px;
	}
	.custom-nav {
		width: 33px;
		height: 33px;
		background-color: rgb(0 0 0 / 39%);
		color: #fff;
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		font-size: 14px;
		z-index: 10;
		transition: background 0.3s ease;
	}
	.swiper-button-prev, .swiper-rtl .swiper-button-next {
		left: var(--swiper-navigation-sides-offset, 0px);
		right: auto;
	}
	.swiper-button-next, .swiper-rtl .swiper-button-prev {
		right: var(--swiper-navigation-sides-offset, 0px);
		left: auto;
	}
	.home-banner .swiper-button-prev, .swiper-rtl .swiper-button-next {
		left: var(--swiper-navigation-sides-offset, 5px);
		right: auto;
	}
	.home-banner .swiper-button-next, .swiper-rtl .swiper-button-prev {
		right: var(--swiper-navigation-sides-offset, 5px);
		left: auto;
	}
	.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
		content: 'prev';
		font-size: 15px;
	}
	.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
		content: 'next';
		font-size: 15px;
	}
  }

  @media (max-width: 1699px) {
	.banner-section {
		/* background-color: #fefbdc; */
		padding: 140px 0px 130px;
		margin-top: 75px;
		margin-bottom: 40px;
	}
}
  .banner-group {
	justify-content: center;
	gap: 20px;
  }
  
  .banner-box {
	flex: 0 0 48%;
  }
  
  @media (max-width: 767px) {
	.banner-box {
	  flex: 0 0 100%;
	  margin-bottom: 15px;
	}
  }

  .btn.disabled, .btn:disabled, fieldset:disabled .btn {
    color: var(--bs-btn-disabled-color);
    pointer-events: none;
    background-color: #2e7d32;
    border-color: #2e7d32;
    /* opacity: var(--bs-btn-disabled-opacity); */
	margin-bottom: 10px;
}


@media only screen and (max-width: 414px) {
	.about-body-item-title h3, .about-author-box .author-info h3 {
        font-size: 13px;
        font-family: sans-serif;
        line-height: 16px;
        font-weight: 500;
    }
    .page-services .section-title h2 {
		font-size: 14px;
        font-weight: 600;
        margin-top: 10px;
        line-height: 15px;
        margin-bottom: 7px;
    }
	.page-services .row11 {
		background: #fff;
		border-radius: 20px;
		padding: 0px;
	}
	.box1 .btn-default {
		padding: 10px 15px 10px 15px;
        line-height: 17px;
        font-size: 15px;
        border-radius: 8px;
    }
	.page-services .row1 .icon-box::before {
        content: attr(data-step);
        position: absolute;
        top: -2px;
        right: 52px;
        box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 2px;
        background-color: #2e7d32;
        color: #fff;
        font-weight: bold;
        font-size: 14px;
        width: 22px;
        height: 22px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 1;
    }
	.fixed-pickup-btn a {
        height: 40px;
        text-align: center;
        font-size: 16px;
        width: 100%;
        padding: 13px 10px 13px 10px;
        background-color: #2e7d32;
        color: #ffffff;
        font-weight: bold;

        text-decoration: none;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
        transition: all 0.3s ease;
    }
	.btn-default {
		padding: 10px 20px 10px 20px;
		line-height: 17px;
		font-size: 14px;
    }
	.sell-btns .btn-default {
		padding: 10px 20px 10px 20px;
		line-height: 17px;
		font-size: 14px;
    }
	.btn-secondary1 {
		border: 1px solid green;
        padding: 8px 13px;
        background: green;
        color: #fff;
        font-size: 12px;
        margin-top: 18px;
    }
	.hom1 .sell-btns {
		display: flex;
		justify-content: space-evenly;
		text-align: center;
		padding: 10px 0px 0px 0px;
	}
	.footer-copyright-text p {
		color: #181818;
		margin-bottom: 0;
		font-size: 14px;
	}
	.wecollect h6 {
        color: #333333;
    }
	.work-btn .sell-btns {
		display: flex;
		justify-content: space-evenly;
		text-align: center;
		padding: 10px 0px 15px 0px;
	}
	.contact-info-content p {
		width: 250px;
		line-height: 20px;
	}
	.page-contact-us {
        padding: 0px 0 30px;
    }
	.about-faq .section-title {
        margin-bottom: 15px;
    }
	.about-faq .btn-default {
        border-radius: 10px;
    }
	
}


.page-faq-accordion{
	display:none;
}

.page-faq-accordion.open{
	display:block;
}

/*.page-blog-accordion {
	display: none;
	transition: all 0.3s ease-in-out;
  }*/
  .page-blog-accordion.open {
	display: block;
  }