body {
	background: #ffffff;
	font-size: 1rem;
	font-family: "Poppins", sans-serif;
	font-weight: normal;
	font-style: normal;
	margin: 0;
	padding: 0;
	color: #000000;
	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: "Poppins", sans-serif;
	font-weight: normal;
	color: #000000;
}
.ff-inter{
  font-family: "Inter", sans-serif !important;
  font-optical-sizing: auto;
  font-style: normal;
}
.ff-poppins{
  font-family: "Poppins", sans-serif !important;
  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 0;
	background-color: #ffffff;
}
.header-top-section {
	background: #173b5a none repeat scroll 0 0;
	color: #eee;
}
.header-top-left {
  position: relative;
  z-index: 1;
  padding: 10px 0;
}
.header-top-left:before {
	position: absolute;
	background: #fff none repeat scroll 0 0;
	content: "";
	top: 0;
	right: -12%;
	width: 3030px;
	height: 120%;
	-webkit-transform: skewX(45deg);
	transform: skewX(45deg);
	z-index: -1;
}
.header-top-right {
  padding: 10px 0;
}
.nav-section-wrapper {
  width: 100%;
}
.logo {
  margin-top: -40px;
  padding: 5px 0;
}
.header-nav-section{
	padding: 0 0 0 0;
}


/* NAV BAR */
.nav {
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 1200px;
	margin: 0 auto;
}
@media (min-width: 1400px) {
.nav {
	max-width: 1320px;
}
}
.nav-left {
	display: flex;
	gap: 0;
	flex: 1;
	justify-content: center;
}
.nav a {
	color: #000;
	text-decoration: none;
}
.nav a.active {
	color: gold;
}
.nav ul {
	display: flex;
	flex-direction: row;
	gap: 2.5rem;
	list-style: none;
	margin: 0;
	padding: 0;
}
.nav ul li {
	position: relative;
}
.nav ul li a {
	font-size: 1.063rem;
	font-weight: 600;
	letter-spacing: 0.04rem;
	text-decoration: none !important;
	text-transform: uppercase;
	color: #000000;
	position: relative;
	overflow: hidden;
	transition: all .4s ease;
	padding: 0px;
	display: block;
}
.nav ul li a:hover,  .nav ul li a:focus {
	color: #5e8042;
}

/* 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;
	color: #000;
}
.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: 80px;
	width: auto;
	display: block;
}
.logo-center img {
	height: 40px;
}
.hamburger {
	width: 30px;
	height: 22px;
	position: relative;
	right: 0;
	top: 0;
	cursor: pointer;
	display: none;
	z-index: 1001;
}
.hamburger span {
	background: #000;
	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: 991px) {
.header {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.logo-left {
	display: flex;
	padding: 5px 0;
}
.logo-center {
	display: none;
}
.hamburger {
	display: block;
}
.nav {
	display: none;
	flex-direction: column;
	background: #23411f;
	padding: 20px;
	gap: 20px;
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	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;
}
.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: #000000;
	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{
	top: 50%;
}
.carousal-slider-section .slider-arrow{
	background-color: transparent; !important;
	height: 60px;
	width: 60px;
	border-radius: 0%;
	font-size: 50px;
	border: none;
	color: #17234c;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-prev {
  left: -60px;
}
.slider-section.carousal-slider-section .slider-arrow.nav-button-next {
  right: -60px;
}
.heading {
	position: relative;
	display: block;
}
.heading h2 {
	font-size: 2.063rem;
	color: #24261a;
	line-height: 100%;
	letter-spacing: 0.0rem;
	font-weight: 700;
	position: relative;
}
.sub-heading {
	display: block;
	position: relative;
	color: #020202;
	font-size: 1.125rem;
	text-transform: uppercase;
	letter-spacing: 0.1rem;
	width: 100%;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}
.padding-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}
.padding-100{
	padding-top: 100px;
	padding-bottom: 100px;
}
.padding-top-100{
	padding-top: 100px;
}
.padding-30{
	padding-top: 30px;
	padding-bottom: 30px;
}
.img-cover{
	width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.font-size-13{
	font-size: 13px;
}
.font-size-14{
	font-size: 0.875rem;
}
.font-size-15{
	font-size: 0.938rem;
}
.font-size-16{
	font-size: 16px;
}
.font-size-18{
	font-size: 1.125rem;
}
.font-size-20{
	font-size: 1.25rem;
}
.social-icon a {
	width: 36px;
	height: 36px;
	border: 1px solid #5e8042;
	border-radius: 50%;
	display: block;
	color: #5e8042;
}
.social-icon svg {
	width: 18px;
	height: 18px;
	display: block;
}
.social-icon a.facebook svg {
	width: 20px;
	height: 20px;
}
.social-icon a:hover {
	border-color: #5e8042;
	background-color: #5e8042;
	color: #ffffff;
}
.icon-btn {
	font-size: 1.063rem;
	color: #ffffff;
	border: none;
	padding: 0;
	letter-spacing: 0rem;
	font-weight: 400;
}
.icon-btn i {
	margin-right: 0;
	line-height: 100%;
}
.icon-btn i svg {
	width: 42px;
	height: 42px;
	color: #ffffff;
}
.btn-svg-icon {
}
.icon-btn span {	
	font-weight: 700;
	color: #ffffff;
	display: block;
	letter-spacing: 0.01rem;
}
.icon-btn:hover {
	color: #ffffff;
}
.grey-bg{
	background-color: #f6f6f6 !important;
}
.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;
}
.hero-slider-caption-wrapper {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 10;
	background-color: rgba(0, 0, 0, 0.5);
	padding-top: 0px;
}
.caption-para{
	position: relative;
	font-size: 1.125rem;
	color: #ffffff;
}
.caption-para p{
	font-size: 1.125rem;
	color: #ffffff;
	line-height: 1.75rem;
}
.banner-caption h1 {
	font-size: 2.625rem;
	color: #ffffff;
	text-transform: capitalize;
	line-height: 120%;
	letter-spacing: 0.01rem;
	font-weight: 700;
}
.banner-caption h2 {
	font-size: 1.25rem;
	color: #ffffff;
	text-transform: uppercase;
	line-height: 100%;
	letter-spacing: 0.05rem;
	font-weight: 600;
	font-style: italic;
	font-family: "Poppins", sans-serif;
}
.banner-caption h6 {
	font-size: 1.25rem;
	color: #ffffff;
	font-weight: 500;
	margin: 0;
	line-height: 2rem;
	letter-spacing: 0.01rem;
	font-family: "Poppins", sans-serif;
	letter-spacing: 0.01rem;
}
.hero-content-inner{
	display: block;	
	position: relative;
}
.contact-form-wrapper{
}
.contact-form {
  background-color: rgba(255,255,255,1);
  padding: 2rem 1.25rem;
  border-radius:1.25rem;
}
.contact-form .form-control, .contact-form .form-select {
  height: 2.75rem;
  border: 1px solid #d4d4d4;
  background-color: transparent;
  font-size: 0.875rem;
  font-family: "Poppins", sans-serif;
  border-radius: 0.5rem;
  padding: 0.625rem 1rem;
  color: #000;
}
.contact-form textarea {
  height: auto !important;
}
.form-title {
  font-size: 1.688rem;
  font-weight: 700;
  color: #000000;
  margin: 0 0 0px;
  text-align: center;
  text-transform: capitalize;
}
.contact-form p{
	font-size: 1rem !important;
	color: #666666 !important;
	font-weight: 400 !important;
	margin-bottom: 0;
}
.bg-cover{
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
}
.overlay-bg {
  position: relative;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.75);
}
.blue-overlay{	
  background-color: rgba(23, 59, 90, 0.85);
}
.header-top-section .icon-btn i svg{
	width: 26px;
	height: 26px;
}
.custom-btn {
	border-radius: 3.125rem !important;
	color: #fff;
	font-size: 1.25rem;
	letter-spacing: 0.01rem;
	padding: 1rem 2.5rem;
	border-color: transparent;
	line-height: 100%;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	text-transform: capitalize;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 0.625rem;
	background: #173b5a;	
	border: none;
	position: relative;
}
.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 {	
	color: #fff;
	background: #5e8042;	
}
.border-btn {
	border: 2px solid transparent;
	background-color: transparent !important;
	background: 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: #8b181b;
}
.custom-btn-black:hover{
	background-color: #8b181b;
	color: #000;
}
.green-border {
	border-color: #5e8042;
	color: #5e8042;
}
.green-border:hover,
.green-border:focus{
	background-color:#5e8042 !important;
	color: #ffffff;
}
.btn-icon svg{
	width: 24px;
	height: 24px;
}
.custom-green-btn{
	background-color: #5e8042;
	color: #ffffff;
}
.custom-green-btn:hover,
.custom-green-btn:focus{
	background-color: #173b5a;
	color: #ffffff;
}

.service-wrapper{
	display: flex;
	flex-direction: column;
	border-radius: 1.25rem;
	background-color: #ffffff;
	overflow: hidden;
	position: relative;
}
.service-image{
	display: block;
	position: relative;
	height: 532px;
	overflow: hidden;
}
.service-image img{
	transition: all 0.4s ease-in-out;
  transform: scale(1);
}
.service-content{
	display: flex;
	flex-direction: column;
	padding: 2.5rem 1.25rem;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 5;
	background: #000000;
	background: -webkit-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
	background: -moz-linear-gradient(0deg, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000", endColorstr="#000000", GradientType=0);
}
.service-content h4{
	font-size: 1.25rem;
	color: #ffffff;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
	margin-bottom: 0rem;
	min-height: 24px;
	position: relative;
	padding-left: 60px;
}
.service-content h4:before{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	max-width: 53px;
	height: 1px;
	background-color: #ffffff;
	content: "";
	z-index: 1;
}
.service-content p{
	font-size: 0.938rem;
	color: #5a5a5a;
	line-height: 1.4;
}
.service-box-icon{
	position: absolute;
	width: 3.5rem;
	height: 3.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #23411f;
	border: 2px solid #ffffff;
	border-radius: 0.5rem;
	top: -1.75rem;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.service-box-icon svg{
	color: #173b5a;
	width: 1.75rem;
	height: 1.75rem;
}
.service-wrapper:hover .service-image img{
	transform: scale(1.1);
}


.feature-plant-item-style-1 .top-items {
  display: flex;
  gap: 28px;
  margin-bottom: 30px;
}
.feature-plant-item-style-1 .top-items .icon svg {
  transition: 0.3s;
  width: 34px;
  height: 34px;
  color: #23411f;
}
.content h4{
	font-size: 1.125rem;
	color: #010101;
	font-weight: 600;
	margin: 0;
}
.content p{
	font-size: 0.938rem;
	color: #4e4e4e;
	font-weight: 400;
	margin: 0;
	line-height: 1.375rem;
}
.feature-plant-item-style-1 .bottom-item {
  display: flex;
  align-items: center;
  gap: 0px;
  position: relative;
}
@media (max-width: 1600px) {
  .feature-plant-item-style-1 .bottom-item {
  }
}
@media (max-width: 1399px) {
  .feature-plant-item-style-1 .bottom-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.feature-plant-item-style-1 .bottom-item:before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #dcdcdc;
  top: 14px;
  width: 100%;
  left: 0;
  height: 1px;
}
@media (max-width: 1600px) {
  .feature-plant-item-style-1 .bottom-item::before {
  }
}
@media (max-width: 1399px) {
  .feature-plant-item-style-1 .bottom-item:before {
  }
}
.feature-plant-item-style-1 .bottom-item span {
  font-weight: 700;
  color: #687799;
}
.feature-plant-item-style-1:hover .top-items .icon svg {
  animation: zoomIn 0.5s linear;
}
.badge{
	color: #ffffff !important;
	background-color: #580608;
	border-radius: 1.875rem;
	font-weight: 600;
	font-size: 1.063rem;
	font-weight: 600;
	background-color: #23411f;
	padding: 0.4rem 0.875rem;
	position: relative;
	z-index: 2;
}
.feature-plant-item-style-1{
	padding-right: 1rem;
	border-right:1px solid #dcdcdc;
	padding-top: 3.75rem;
	padding-bottom: 3.75rem;
}
.why-choose-us-box:last-child .feature-plant-item-style-1{
	border-right: none;
	padding-right: 0;
}
.list-with-tick{
	display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}
.list-with-tick li{
	position: relative;
	font-size: 1rem;
	letter-spacing: 0rem;
	color: #4d4d4d;
	padding-left: 30px;
	margin-top: 20px;
	display: block;
	line-height: 140%;
}
.list-with-tick li:before{
	position: absolute;
	left: 0;
	top: 0;	
	content: "\F269";
	width: 30px;
	min-height: 20px;
	color: #23411f;
	font-size: 20px;
	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 {
	flex-direction: row;

}
.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;
}


.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: #23411f;
	color: #ffffff;
	font-weight: 500;
}
.grid .img-fluid{
	width: 100%;
}
.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);
}
.medium-heading {
  font-size: 1.688rem;
  color: #000000;
  font-weight: 700;
  letter-spacing: 0.02rem;
}
.map-section iframe {
  width: 100%;
  display: block;
  height: 480px;
  max-height: 480px;
}
.contact-left-section {
	padding: 4rem;
}
.contact-section-wrapper .icon-btn{
	font-size: 1.125rem;
	font-weight: 500;
	gap: 1rem;
}
.contact-section-wrapper .icon-btn i svg{
	color: #173b5a;
}
.contact-section-wrapper .icon-btn span{
	font-size: 1rem;
}
.footer {
  display: block;
  background-color: #fff;
}
.footer-copy-text {
  font-size: 14px;
  color: #151515;
  font-weight: 400;
  letter-spacing: 0.02rem;
  text-transform: capitalize;
}
.footer-menu li{
	border: none !important;
	font-weight: 500;
}
.footer-menu li a{
	color: #000000;
	font-size: 1rem;
}
.footer-social {
	background-color: #ffffff;
	padding: 1rem 0;
	border-bottom: 1px solid #5e8042;
}
.footer-social .social-icon {
}
.footer-bottom-wrapper .sub-title-btn{
	margin-left: 0;
}
ul.list-inline li {
	display: inline-block;
	vertical-align: top;
	border-right: 1px solid #242424;
	padding: 0 15px;
	font-size: 0.875rem;
	text-transform: capitalize;
	letter-spacing: 0.02rem;
}
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: #23411f;
}


.top-contact{
	padding-left: 50px;
}
.content-inner-box{
	background-color: #ececec;
	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: #23411f;
}
.featured-box-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 65px;
  height: 65px;
  background-color: #f3e7e8;
  border-radius: 0.938rem;
  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;
}
.featured-box-wrapper p{
	font-size: 0.938rem;
	line-height: 1.25rem;
	color: #414141;
}
.featured-box:last-child .featured-box-wrapper {
  border-right: none;
}
.images-box-warrper-cover {
  overflow: hidden;
  width: 100%;
}
.why-choose-us-box .featured-box-icon{
	width: 135px;
	height: 135px;
	background-color: #23411f;
	color: #173b5a;
}
.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 {
	display: block;	
	position: relative;
	min-height: 220px;	
}
.testimonial-slider .slider-arrow {
	margin-top: -4%;
}
.review-star {
	font-size: 1.25rem;
  color: #173b5a;
  display: flex;
  flex-direction: row;
  gap: 0.25rem;
}
.text {
  display: inline;
  position: relative;
}
.show-toggle {
  color: #e42032;
  cursor: pointer;
  font-weight: 500;
}
.show-toggle:hover {
  text-decoration: underline;
}
.quote-icon-box{
	position: absolute;
	padding-left: 0px;
	top: 0;
	z-index: -1;
	width: 140px;
	height: 140px;	
	color: #000000;
	opacity: 0.08;
}
.testimonial-box-heading{
	position: relative;
}
.quote-icon-box svg{
	width: 140px;
	height: 140px;
}
.contact-map-wrapper{
	display: block;
	overflow: hidden;
	border-radius: 1.25rem;
}
.contact-map-wrapper iframe{
	width: 100%;
	height: 540px;
	display: block;
}
.contact-section-wrapper .icon-btn{
	color: #000000;
}
.contact-section-wrapper .icon-btn span{
	color: #173b5a;
}
.bg-offwhite{
	background-color: #efebe3;
}
.circle-box-wrapper{
	width: 270px;
	height: 270px;
	border-radius: 50%;
	border: 1px solid #173b5a;
	padding: 3rem;
	text-align: center;
	transition: all 0.4s ease-in-out;
	margin: 0 auto;
}
.circle-box-wrapper-icon{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 93px;
	height: 93px;
	min-width: 93px;
	background-color: #5e8042;
	border-radius: 50%;
	color: #ffffff;
}
.circle-box-wrapper-icon svg{
	width: 45px;
	height: 45px;
}
.circle-box-wrapper h4{
	color: #000000;
	font-size: 1.25rem;
	font-weight: 600;
	text-transform: capitalize;
	margin-top: 1.25rem;
	margin-bottom: 0;
	font-family: "Poppins", sans-serif;
}
.circle-box-wrapper:hover{
	background-color: #173b5a;
}
.circle-box-wrapper:hover h4{
	color: #ffffff;
}
.why-us-box-wrapper{
	display: flex;
	flex-direction: column;
	gap: 1.125rem;
}
.why-us-box-wrapper-icon{
	display: flex;
	justify-content: start;
	flex-direction: column;
	gap: 2.5rem;
	color: #ffffff;
}
.why-us-box-wrapper-icon svg{
	width: 2.688rem;
	height: 2.688rem;;
}
.circle-box-wrapper h4{
	color: #000000;
	font-size: 1.375em;
	font-weight: 500;
	text-transform: capitalize;
	margin-top: 1.25rem;
	margin-bottom: 0;
	font-family: "Poppins", sans-serif;
}
.circle-box-wrapper p{
	color: #000000;
	font-size: 1.0635em;
	font-weight: 400;
	text-transform: capitalize;
	margin-bottom: 0;
	font-family: "Poppins", sans-serif;
}
.features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
}
.feature-item{
    padding:60px;
    border-right:1px solid rgba(255,255,255,.12);
    border-bottom:1px solid rgba(255,255,255,.12);
}
.feature-item:nth-child(3n){
    border-right:none;
}
.feature-item:nth-last-child(-n+3){
    border-bottom:none;
}
@media (max-width: 991px) {
.features-grid {
	grid-template-columns: repeat(2, 1fr);
}
.feature-item {
	border-right: 1px solid rgba(255,255,255,.12);
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.feature-item:nth-child(3n) {
	border-right: 1px solid rgba(255,255,255,.12);
}
.feature-item:nth-child(2n) {
	border-right: none;
}
.feature-item:nth-last-child(-n+2) {
	border-bottom: none;
}
}
@media (max-width: 767px) {
.features-grid {
	grid-template-columns: 1fr;
}
.feature-item {
	padding: 30px;
	border-right: none;
	border-bottom: 1px solid rgba(255,255,255,.12);
}
.feature-item:last-child {
	border-bottom: none;
}
.feature-item:nth-last-child(-n+3){
	border-bottom: 1px solid rgba(255,255,255,.12);
}


}


.accordion__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.accordion__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #242e4c;
  text-align: center;
  margin-bottom: 2rem;
}
.faq-accordion { 
  margin-bottom: 1rem;
  border: 1px solid #68653c;
  border-radius: 1.25rem;
  overflow: hidden;
}
.accordion__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  padding: 1.25rem 1.875rem;
}
.accordion__icon {
  background-color: #5e8042;
  width: 2rem;
  height: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #fff;
  flex-shrink: 0;
  font-size: 1.4rem;
  line-height: 1rem;
}
.accordion__question {
  font-size: 1.125rem;
  font-weight: 600;
  color: #010101;
  margin-bottom: 0;  
}
.accordion__answer {
  padding: 0rem 1.875rem 1.25rem;
  margin-bottom: 0;
}
.accordion__content {
  overflow: hidden;
  height: 0;
  transition: 0.4s ease-in-out;
}
 @media screen and (max-width: 580px) {
.accordion__wrapper {
  padding: 0rem 0rem;
}
.accordion__icon {
  width: 1.5rem;
  height: 1.5rem;
  font-size: 1.2rem;
}
}

.testimonial-content{
	font-size: 1.25rem;
	line-height: 2;
	color: #000000;
	letter-spacing: 0;
}
.client-name{
	font-size: 1.563rem;
	color: #000000;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
}
.client-designation{
	font-size: 1.25rem;
	color: #5e8042;
	font-weight: 500;
	font-family: "Poppins", sans-serif;
	font-style: italic;
}

#testimonial-carousel .slider-arrow{
	background-color: #ffffff !important;
	width: 56px;
	height: 56px;
	color: #000;
	font-size: 26px;
	border-radius: 50% !important;
	line-height: 100% !important;
	left:inherit !important;
	right: 0 !important;
	top: inherit !important;
	bottom: 0 !important;
	transform: translateY(0%);
}
#testimonial-carousel .slider-arrow.nav-button-prev{
	margin-right: 70px !important;
}

.logo img{
	width: 150px;
	height: 124px;
}