body {
	background: #fff;
	font-size: 16px;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #484848;
	letter-spacing: 0.01rem;
	line-height: 1.2;
}

.white-placeholder::placeholder {
  color: white;
  opacity: 1; /* Ensures full visibility */
}

/* For better browser support */
.white-placeholder input::placeholder,
.white-placeholder textarea::placeholder {
  color: white;
  opacity: 1;
}

.white-placeholder input:-ms-input-placeholder, /* IE 10-11 */
.white-placeholder textarea:-ms-input-placeholder {
  color: white;
}

.white-placeholder input::-ms-input-placeholder, /* Edge */
.white-placeholder textarea::-ms-input-placeholder {
  color: white;
}
.white-placeholder select option {
  background-color: #fff;
  color: #000;
  border-radius: 0 !important;
}
a {
	text-decoration: none;
}
h1, h2, h3, h4, h5, h6 {
	font-family: "Inter", sans-serif;
	font-weight: 600;
}
b, strong {
	font-weight: 700;
}
ul, li {
	list-style-type: none;
	padding: 0px;
	margin: 0px;
}
p {
	line-height: 1.6rem;
	font-family: "IBM Plex Sans", sans-serif;
	font-weight: normal;
}
.ff-inter{
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.ff-ibm{
  font-family: "IBM Plex Sans", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.section {
	position: relative;
	display: block;
}
.header {
	position: relative;
	left: 0;
	right: 0;
	z-index: 101;
	top: 0;
	display: block;
	padding: 0;
	background-color: #413f40;
}
.header-top-section-wrapper{
	background-color: #529b52;
}
.header-top-left{
	position: relative;
  z-index: 1;
  padding: 10px 0;
  font-size: 12px;
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.04rem;
  text-transform: uppercase;
}
.header-top-left:before {
  position: absolute;
  background: #413f40;
  content: "";
  top: 0;
  right: 0;
  width: 3030px;
  height: 120%;
  -webkit-transform: skewX(-30deg);
  transform: skewX(-30deg);
  z-index: -1;
}


/* NAV BAR */
.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0;
}
@media (min-width: 1400px) {
.nav {
	max-width: 1320px;
}
}
.nav-left {
	display: flex;
	gap: 20px;
	flex: 1;
	justify-content: start;
}
.nav a {
	color: #000;
	text-decoration: none;
}
.nav a.active {
	color: gold;
}
.nav ul {
	display: flex;
	flex-direction: row;
	gap: 0;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav ul li {
	position: relative;
}
.nav ul li a {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 0.04rem;
	text-decoration: none !important;
	text-transform: uppercase;
	color: #fff;
	padding: 0.625rem 2rem;
	display: block;
	background-color: transparent;
}
.nav ul li a:hover,  .nav ul li a:focus {
	color: #529b52;
	background-color: transparent;
}
/* SUBMENU STYLES */
.nav ul li .submenu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	background: #fff;
	min-width: 220px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.1);
	padding: 10px 0;
}
.nav ul li .submenu li {
	padding: 0;
}
.nav ul li .submenu li a {
	display: block;
	padding: 8px 20px;
	white-space: nowrap;
}
.nav ul li.has-submenu:hover > .submenu {
	display: block;
}
.submenu-toggle {
	display: none; /* hidden on desktop */
}
/* LOGO & HAMBURGER */
.logo-left {
	display: none;
	align-items: center;
}
.logo-left img {
	height: 40px;
}
.logo-center img {
	height: 40px;
}
.hamburger {
	width: 30px;
	height: 22px;
	position: absolute;
	right: 20px;
	top: 30px;
	cursor: pointer;
	display: none;
	z-index: 1001;
}
.hamburger span {
	background: #fff;
	height: 3px;
	width: 100%;
	position: absolute;
	left: 0;
	transition: 0.3s ease;
}
.hamburger span:nth-child(1) {
	top: 0;
}
.hamburger span:nth-child(2) {
	top: 9px;
}
.hamburger span:nth-child(3) {
	top: 18px;
}
.hamburger.active span:nth-child(1) {
	transform: rotate(45deg);
	top: 9px;
}
.hamburger.active span:nth-child(2) {
	opacity: 0;
}
.hamburger.active span:nth-child(3) {
	transform: rotate(-45deg);
	top: 9px;
}

/* MOBILE STYLES */
@media (max-width: 767px) {
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo-left {
	display: flex;
}
.logo-center {
	display: none;
}
.hamburger {
	display: block;
}
.nav {
	display: none;
	flex-direction: column;
	background: #000;
	padding: 20px;
	gap: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 0px;
	z-index: 1000;
}
.nav.show {
	display: flex;
}
.nav-left {
	flex-direction: column;
	align-items: flex-start;
}
.nav ul {
	flex-direction: column;
	gap: 0;
}
.nav ul li {
	width: 100%;
}
.nav ul li a {
	display: block;
	color: #fff;
	min-height: 42px;
	padding:10px 0px;
}
.nav ul li.has-submenu > a{
	padding-right: 42px;
}
/* Show submenu toggle arrow */
.submenu-toggle {
	display: flex;
	cursor: pointer;
	width: 40px;
	height: 42px;
	border-left:1px solid rgba(255, 255, 255, 0.3);	
	position: absolute;
	right: 0;
	z-index: 10;
	top: 0;
	justify-content: center;
	align-items: center;
	font-size: 20px;
	color: #fff;
	text-align: center;	
}
.submenu-toggle i{
	transition: transform 0.3s ease; /* smooth rotation */
	width: 24px;
	height: 20px;
	display: block;
	line-height: 100%;
}
.submenu-toggle.rotate i{
	transform: rotate(180deg);
}
.nav ul li .submenu {
	display: none;
	position: relative;
	width: 100%;
	top: 0;
	background-color: transparent;
}
.nav ul li .submenu.open {
	display: block;	
}
.nav ul li .submenu li a {
	color: #fff;
}
.nav ul li > a{
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.nav ul li .submenu{
	padding: 0;
	box-shadow: none;
	background-color: rgba(255,255,255,0.2);
}
.nav ul li .submenu li a {
  padding: 8px;
  white-space: nowrap;
}
}

.svg-icon{
	width: 40px;
	height: 40px;
	fill: currentColor;
}
.top-right-section{
	gap: 20px;
}
.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}
.slider-arrow {
	width: 60px;
	height: 60px;
	position: absolute;
	top: 50%;
	z-index: 100;
	background-color: transparent !important;	
	transform: rotate(0deg);
	transition: transform 1s linear;
	border: none !important;
	font-size: 50px;
	color: #529b52;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	transform: translateY(-50%);
}
.slider-arrow.nav-button-prev {
	left: -50px;	
}
.slider-arrow.nav-button-next {
	right: -50px;
}
.slider-section .slider-arrow.nav-button-prev{
	left: 0;
}
.slider-section .slider-arrow.nav-button-next {
	right: 0px;
}
.slider-section .slider-arrow{
	color: #fff;
}
#slide-carousel .slider-arrow{
}
.carousal-slider-section .slider-arrow{
	background-color: rgba(0, 0, 0, 0.85) !important;
	height: 46px;
	width: 46px;
	border-radius: 50%;
	font-size: 20px;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-prev {
  left: -23px;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-next {
  right: -23px;
}
.single-arrow .slider-arrow{
	color: #000;
}
.single-arrow .slider-arrow.nav-button-prev {
  left: -50px;
}
.single-arrow .slider-arrow.nav-button-next {
  right: -50px;
}
.heading {
	position: relative;
	display: block;
}
.heading h2 {
	font-size: 35px;
	color: #000000;
	line-height: 100%;
	letter-spacing: 0.02rem;
	font-weight: 700;
}
.sub-heading {
	display: block;
	position: relative;
	color: #529b52;
	font-size: 16px;
	text-transform: uppercase;
	letter-spacing: 0.02rem;
	width: 100%;
	margin: 0px 0 10px;
	font-weight: 600;
	font-family: "IBM Plex Sans", sans-serif;
}
.sub-heading span {
	vertical-align: top;
	font-weight: 500;
	padding: 0 26px;
}
.sub-heading span.heading-top:after,  .sub-heading span.heading-top:before {
	position: absolute;
	top: 5px;
	content: "";
	width: 12px;
	height: 12px;
	z-index: 1;
	background-color: #000;
	display: block;
}
.heading-alt .sub-heading span.heading-top:after,  .heading-alt .sub-heading span.heading-top:before{
	background-color: #fff;
}
.sub-heading span.heading-top:after {
	right: 0;
}
.sub-heading span.heading-top:before {
	left: 0;
}
.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.padding-100{
	padding-top: 100px;
	padding-bottom: 100px;
}
.img-cover{
	width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.font-size-14{
	font-size: 14px;
}
.font-size-16{
	font-size: 16px;
}
.font-size-18{
	font-size: 18px;
}
.font-size-20{
	font-size: 20px;
}
.custom-btn {
	border-radius: 100px;
	color: #fff;
	background-color: #529b52;
	font-size: 18px;
	letter-spacing: 0.04rem;
	padding: 1rem 2rem;
	border-color: transparent;
	line-height: 100%;
	font-weight: 700;
	font-family: "Inter", sans-serif;
	text-transform: uppercase;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.custom-btn-arrow{
	position: relative;
	width: auto;
	height: 100%;
	background-color: transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	right: 0;
	top: 0;
}
.custom-btn-arrow svg{
	width: 15px;
	height: 15px;
}
.custom-btn:hover {
	background-color: #413f40;
	color: #fff;
}
.border-btn {
	border: 2px solid transparent;
	background-color: transparent !important;
}
.white-border {
	border-color: #fff;
	color: #fff;
}
.black-border {
	border-color: #000;
	color: #000;
}
.big-btn {
	padding: 1rem 2rem;
}
.btn-with-arrow{
	padding: 1rem 2rem;
}
.white-border:hover {
	border-color: #fff;
	color: #000;
	background-color: #fff !important;
}
.black-border:hover {
	border-color: #000;
	color: #fff;
	background-color: #000 !important;
}
.black-border:hover .custom-btn-arrow{
	color: #fff;
}
.custom-btn-black{
	background-color: #000;
	color: #529b52;
}
.custom-btn-black:hover{
	background-color: #529b52;
	color: #000;
}
.social-icon a {
	width: 36px;
	height: 36px;
	border: 2px solid #cccccc;
	border-radius: 50%;
	display: block;
}
.social-icon svg {
	width: 14px;
	height: 14px;
	display: block;
}
.social-icon a.facebook svg {
	width: 20px;
	height: 20px;
}
.social-icon a:hover {
	border-color: #000;
}
.footer-social {
  display: block;
  margin: 0;
}
.footer .social-icon a{
	width: 42px;
	height: 42px;
}
.footer-social .social-icon {
}
.footer-social .social-icon svg{
	width: 20px;
	height: 20px;
}
.footer-social .social-icon a.facebook svg {
	width: 22px;
	height: 22px;
}
.footer-social {	
}
.footer-social .social-icon a{
	color: #413f40;
	border-color: #413f40;
}
.footer-social .social-icon a:hover{
	background-color: #529b52;
	border-color: #529b52;
	color: #fff;
}
.grey-bg{
	background-color: #f7f7f7;
}
.list-number li{
	list-style-type: decimal;
	margin-bottom: 15px;
}
.gallery-section ul {
	list-style: none;
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	margin: 0 auto 20px;
}
.gallery-section ul li {
}
.filter-list .nav-link {
	color: #333;
	font-weight: 500;
	border-radius: 0;
	padding: 6px 12px;
	margin: 4px;
	transition: all 0.2s ease-in-out;
}
.filter-list .nav-link:hover {
	background-color: #eee;
}
.filter-list .nav-link.active {
	background-color: #529b52;
	color: #fff;
	font-weight: 500;
}
.grid .img-fluid{
	width: 100%;
}

.top-section{
	background-color: #000000;
	font-size: 14px;
	color: #ffffff;
	font-weight: 400;
	letter-spacing: 0.01rem;
	padding: 5px 0;
	width: 100%;
}
.icon-btn {
	font-size: 21px;
	color: #529b52;
	border: none;
	padding: 0;
	letter-spacing: 0.02rem;
	font-weight: 600;
}
.icon-btn i {
	margin-right: 5px;
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 24px;
  min-height: 24px;
}
.icon-btn i svg {
	width: 24px;
	height: 24px;
	color: #fff;
}
.btn-svg-icon {
}
.icon-btn span {
	font-size: 14px;
	font-weight: 500;
	color: #529b52;
	display: block;
	letter-spacing: 0.02rem;
}
.icon-btn:hover {
	color: #529b52
}
.sub-title-btn-inner.ph-number {
	font-size: 22px;
	font-weight: 600;
}
.header-middle-section{
	padding: 0px 0;
	position: relative;
	z-index: 5;
}
.navigetion-section{
	background-color: transparent;
	width: 100%;
	display: flex;
	justify-content: end;
}
.overlay {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 5;
	background-color: rgba(0,0,0,.70);
}
.hero-slider-caption-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background: #000000;
	background: -webkit-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
	background: -moz-linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
	background: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=1);
}
.banner-caption h1 {
	font-size: 60px;
	color: #ffffff;
	text-transform: capitalize;
	line-height: 100%;
	letter-spacing: 0.06rem;
	font-weight: 700;
}
.banner-caption h2 {
	font-size: 49px;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 100%;
	letter-spacing: 0.06rem;
	font-weight: 600;
}
.banner-caption h6 {
	font-size: 1.25rem;
	color: #ffffff;
	font-weight: 400;
	margin: 0;
	line-height: 1.8rem;
	letter-spacing: 0.01rem;
	font-family: "IBM Plex Sans", sans-serif;
}
.hero-image {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	position: relative;
}

.contact-form {
  background-color: rgba(255,255,255,1);
  padding: 30px;
  border-radius: 20px;
}
.contact-form .form-control, .contact-form .form-select {
  height: 42px;
  border: 1px solid #d4d4d4;
  background-color: transparent;
  font-size: 14px;
  font-family: "IBM Plex Sans", sans-serif;
  border-radius: 0.5rem;  
}
.contact-form textarea {
  height: auto !important;
}
.form-title {
  font-size: 28px;
  font-weight: 700;
  color: #2e2e2e;
  margin: 0 0 0px;
  text-align: center;
  text-transform: capitalize;
}
.contact-form p{
	font-size: 16px !important;
	color: #606060 !important;
	font-weight: 400 !important;
}
.yellow-text{
	color: #529b52 !important;
}
.service-box-wrapper {
	display: block;
	position: relative;
  border-radius: 10px;
  overflow: hidden;
  background-color: #ffffff;
}
.service-box-image{
	display: block;
	position: relative;
	min-height: 359px;
  overflow: hidden;
  background-color: #fff;
  clip-path: polygon(0 0, 100% 0, 100% 89%, 0% 100%);
}
.service-box-image img{
}
.service-box-content {
	width: 100%;
	padding:2.5rem 2rem 3rem;
	position: relative;
	display: flex;
	text-align: left;
	z-index: 5;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: #fff;
	justify-content: start;
	align-items: start;
	top: 0;
	flex-direction: column;
}
.service-box-content:after{
	position: absolute;
	z-index: 1;
	bottom: 0;
	clip-path: polygon(100% 0, 0% 100%, 100% 100%);
	background-color: #333333;
	width: 78px;
	height: 78px;
	right: 0;
	content: "";
}
.service-box-content h4 {
	font-size: 20px;
	color: #333333;
	font-weight: 600;
	letter-spacing: 0.02rem;
	line-height: 100%;
	margin-bottom: 0px;
	font-family: "IBM Plex Sans", sans-serif;
	text-transform: uppercase;
}
.service-box-content p {
	font-size: 16px;
	line-height: 1.4rem;
	color: #181818;
	margin-bottom: 0 !important;
	min-height: 60px;
}
.service-box-wrapper:hover .service-box-content{	
}
.read-more {
	font-size: 14px;
	color: #a81e25;
	text-decoration: none;
	text-transform: uppercase;
	font-weight: 500;
	font-family: "Inter", sans-serif;
	letter-spacing: 0.1rem;
	text-decoration: none !important;
}
.read-more:hover {
	color: #000;
}
.read-more i {
	margin-top: 2px;
}
.circle-icon {
	position: absolute;
	right: -30px;
	top: -36px;
	z-index: 2;
	width: 72px;
	height: 72px;
	border-radius: 50%;
	background: #529b52;
  background: linear-gradient(165deg, rgba(255, 172, 46, 1) 0%, rgba(255, 154, 0, 1) 100%);
	text-align: center;
}
.circle-icon svg {
	display: block;
	width: 40px;
	height: 40px;
	color: #000;
}
.list-with-tick{
	display: flex;
  flex-wrap: wrap;
}
.list-with-tick li{
	position: relative;
	font-size: 17px;
	letter-spacing: 0rem;
	color: #4d4d4d;
	padding-left: 36px;
	margin-top: 20px;
	display: block;
}
.list-with-tick li:before{
	position: absolute;
	left: 0;
	top: 0;	
	content: "\F270";
	width: 30px;
	min-height: 20px;
	color: #529b52;
	font-size: 26px;
	display: inline-block;
  font-family: bootstrap-icons !important;
  font-style: normal;
  font-weight: 400 !important;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  vertical-align: -.125em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.list-with-tick.list-with-tick-alt li{
	font-size: 18px;
	color: #fff;
}
.list-with-tick.list-3 li {
  flex: 1 0 33.333%; 
}
.list-with-tick.list-2 li {
  flex: 1 0 50%; 
}
.cover-bg-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.work-with-us-section {
  max-height: 428px;
  overflow: hidden;
}
.pt-60 {
  padding-top: 60px;
}
.pb-135 {
  padding-bottom: 135px;
}
.overlay-bg {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.7);
}
.box-wrapper {
  padding: 50px 25px 30px;
}
.how-to-work-box {
	border-radius: 10px;
	padding: 20px 25px;
}
.how-to-work-icon svg {
	display: block;
	width: 65px;
	height: 65px;
	color: #529b52;
}
.how-to-work-box-content p {
	font-size: 14px;
	color: #575757;
	letter-spacing: 0.02rem;
	margin-bottom: 0 !important;
	line-height: 1.2rem;
	font-weight: 400;
}

.testimonials-section{
	background:#f8f8f8 ;
	background-size: 50% auto;
	min-height: 200px;
	overflow: hidden;
}
.testimonial-box {
	display: block;
	background-color: #fff;
	padding: 4rem 2rem 2rem;
	position: relative;
	min-height: 250px;
	border-radius: 1rem;
	margin: 30px 12px 20px 12px;
}
.testimonial-slider .slider-arrow {
	margin-top: -4%;
}
.review-star {
	font-size: 17px;
	color: #ff8e00;
}
.font-15 {
	font-size: 15px;
	line-height: 1.4rem;
}
.contact-section {
	background-color: #000000;
}
.contact-section iframe {
	width: 100%;
	height: 523px;
	display: block;
}
.contact-right a{
	color: #000;
	font-size: 18px;
	font-weight: 600;
}
.contact-right .svg-icon{
	color: #529b52;
	width: 24px;
	height: 24px;
}
.contact-icon{
	width: 48px;
	height: 48px;
	border: 2px solid #529b52;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	min-width: 48px;
}
.footer{
	display: block;
	position: relative;
	background-color: #fff;
	padding: 36px 0 20px;
}
ul.footer-menu-section {
	padding: 0;
	margin: 0;
}
ul.footer-menu-section li {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	padding: 0 15px;
	letter-spacing: 0.02rem;
}
ul.footer-menu-section li a {
	color: #fff;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	padding: 12px 0;
}
ul.footer-menu-section li a:hover {
	color: #529b52;
}
.footer-menu-wrapper{
	display: block;
	position: relative;
	background-color: #000;
	margin: 36px 0 20px;
}
.footer-bottom-section{
	display: block;
	position: relative;
}
ul.list-inline li {
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #242424;
	padding: 0 20px;
	font-size: 15px;
	text-transform: capitalize;
	letter-spacing: 0.01rem;
}
ul.list-inline li:last-child{
	border-right: none !important;
}
ul.list-inline li a {
	color: #242424;
	text-decoration: none !important;
}
ul.list-inline li a:hover {
	color: #529b52;
}




.scrollup {
  width: 50px;
  height: 50px;
  opacity: 1;
  position: fixed;
  bottom: 8px;
  left: 15px;
  display: none;
  text-indent: -9999px;
  background: url(../images/icons/circle-arrow.svg) no-repeat;
  z-index: 5;
  background-size: 100% auto;
}
.customers-devider{
	width: 1px;
	background-color: #b0b0b0;
	min-height: 65px;
}
.address-box-inner{
	font-weight: 600;
	color: #000;
}
.text-red{
	color: #529b52;
}
.image-cover{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition: all 0.2s ease-in-out;
}
.service-box-wrapper:hover img.image-cover {
  transform: scale(1.1);
}
.service-tag{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	width: 64px;
	height: 64px;
	background-color: #252525;
	border-radius: 8px;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}
.service-tag svg{
}
.featured-box-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-color: #f3e7e8;
  border-radius: 50%;
  color: #000;
}
.featured-box-icon svg{
	margin-top:-26px;
	width: 53px;
	height: 53px;
}
.featured-box-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: flex;
  position: relative;
  border-right: 1px solid #ffffff85;
}
.featured-box-title {
  font-size: 70px;
  color: #fff;
  font-weight: 700;
  font-family: "Inter", sans-serif;
}
.featured-box:last-child .featured-box-wrapper {
  border-right: none;
}
.bg-cover {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}
.images-box-warrper-cover {
  overflow: hidden;
  width: 100%;
}
.black-overlay-bg{
	background-color: rgba(0, 0, 0, 0.75);
}
.red-overlay-bg{
	background-color: rgba(139, 24, 27, 0.75);
}
.consultation-box{
	display: flex;
	justify-content: center;
	align-items: start;
	flex-direction: column;
	padding: 5rem;
}
.btn-grp-colm {
  gap: 1rem;
}
.circle-image{
	border-radius: 50%;
	border:6px solid #ffffff;
	width: 207px;
	height: 207px;
	display: block;
	overflow: hidden;
}
.circle-image img{
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center;
}
.why-choose-us-box .featured-box-icon{
	width: 135px;
	height: 135px;
	background-color: #413f40;
	color: #529b52;
}
.why-choose-us-box .featured-box-icon svg{
	width: 76px;
	height: 76px;
	margin: 0 !important;
}
.why-choose-us-box .featured-box-title{
	font-size: 20px;
	font-weight: 600;
	color: #2d2d2d;
}
.testimonial-box-quote{
	width: 75px;
	height: 75px;
	background-color: #ffffff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #529b52;
	position: absolute;
	right: 30px;
	top: -30px;
	z-index: 2;
}
.testimonial-box-quote svg,
.testimonial-box-quote i{
	font-size: 40px;
	color: #529b52;
}
.contact-details-left .icon-btn i{
	border-color: #fff;
}
.contact-details-left .icon-btn i svg{
	color: #fff;
}
.logo img{
	width: 100%;
	height: auto;
	display: block;
	max-width: 220px;
}
.footer-logo img{
	width: 100%;
	height: auto;
	display: inline-block;
	max-width: 237px;
}
.header-contact-details{
	padding: 10px 0;
}
.logo{
	padding-bottom: 5px;
}
.content-inner-box{
	background-color: #f1f1f1;
	display: block;
	position: relative;
	padding: 1.25rem 2rem 2rem;
}
.content-inner-box:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  width: 6px;
  background-color: #529b52;
}
.gallery-box-wrapper{
	overflow: hidden;
	border-radius: 10px;
}
.gallery-box-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.2s ease-in-out;
  position: relative;
}
.gallery-box-wrapper:hover img{
	transform: scale(1.1);
}
.gallery-carousel.slider-section .slider-arrow{
	display: none !important;
}
/*.gallery-box-wrapper:after{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: "";
	z-index: 1;
	background-color: rgba(0, 0, 0, 0.60);
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease-in-out;
	margin: 2rem;
	border-radius: 10px;
}
.gallery-box-wrapper:before{
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	content: "+";
	z-index: 2;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease-in-out;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #ffffff;
	font-size: 62px;
}
.gallery-box-wrapper:hover:after,
.gallery-box-wrapper:hover:before{
	visibility: visible;
	opacity: 1;
}*/


ul.footer-menu-section {
	padding: 0;
	margin: 0;
}
ul.footer-menu-section li {
	display: inline-block;
	vertical-align: top;
	font-size: 16px;
	font-weight: 700;
	color: #fff;
	padding: 0 30px;
	letter-spacing: 0.02rem;
}
ul.footer-menu-section li a {
	color: #fff;
	display: block;
	text-decoration: none;
	text-transform: uppercase;
	padding: 12px 0;
}
ul.footer-menu-section li a:hover {
	color: #529b52;
}
.footer-menu-wrapper{
	display: block;
	position: relative;
	background-color: #000;
	margin: 36px 0 20px;
}
.text-green{
	color: #529b52;
}