@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@100;200;300;400;500;600;700&display=swap');
:root {
  --primary-color: #6b8d14;
  --secondry-color:#677f0c;
  --body-color: #425951;
  --vibrant-color: #ffd4bc;
  --light: #f2f7ff;
  --facebook: #4267b2;
  --twitter: #00acee;
  --linkedin: #0e76a8;
  --youtube: #ff0000;
  --whatsapp: #25d366;
  --instagram: #c92bb7;
  --josefin: "Josefin Sans", sans-serif;
  --golden-gradient:#6b8d14;
}
 
body {
	font-family: 'Josefin Sans', sans-serif;
  overflow-x: hidden;
  min-height: 100vh;
  font-size: 1.1rem;
}

svg:not([fill]) {
  fill: currentColor;
}

.font-weight-bolder{
  font-weight: 800 !important;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

a {
  color: #8aa90a;
  transition: all 300ms ease-in-out;
}

a.bg-primary:hover {
  background-color: var(--primary-color) !important;
}
html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 100%;
}

.object-cover {
  object-fit: cover;
}
.secondry-color
{
  background: #ffffff !important;
  color: #000 !important;
}
.text-secondry-color
{
  color:var(--secondry-color) !important;
}
.container-fluid {
  padding-left: 3rem;
  padding-right: 3rem;
}

.filter-white {
  -ms-filter: brightness(70);
  filter: brightness(70);
}

.filter-dark {
  -ms-filter: grayscale(1) brightness(0.5);
  filter: grayscale(1) brightness(0.5);
}

/*header*/
.header {
  width: 100%;
  top: 0;
  background-color: #fff;
  z-index: 997;
  transition: all 300ms ease-in-out;
  padding:5px 0;
}

.header.fixed {
  background-color: #fff;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%);
  position: fixed;
}
.header .d-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  width: 230px;
  position: relative;
  min-height: 1px;
  transition: all 300ms ease-in-out;
}
.estates-logo {
  font-size: 2rem;
  font-weight: 600;
  color: var(--body-color);
}

.navi {
  display: flex;
  gap: 30px;
}

.navi ul {
  gap: 0 10px;
}

.navi li a {
  color: var(--body-color);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 8px;
  font-weight: 600;
  position: relative;
  transition: all 300ms ease-in-out;
}

.navi li a.active,
.navi li:hover > a {
  color: #000000;
}

.header.fixed .navi li a {
  font-size: 14px;
}

.navi li a i {
  font-size: 11px;
  color: var(--primary-color);
}

.menuBtn {
  height: 40px;
  background-color: transparent;
  padding: 0;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 300ms ease-in-out;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.menuBtn .menuLine {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
  width: 26px;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover {
  color: #000;
}

.menuBtn .menuLine::before,
.menuBtn .menuLine::after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--primary-color);
  transform-origin: center center;
  transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.menuBtn:hover .menuLine::before,
.menuBtn:hover .menuLine::after {
  opacity: 0.75;
}

.menuBtn .menuLine::before {
  width: 100%;
}

.menuBtn .menuLine::after {
  width: 70%;
}
.menuBtn:hover .menuLine::after {
  width: 85%;
}

.header.fixed .menuBtn .menuLine::before,
.header.fixed .menuBtn .menuLine::after {
  background-color: var(--body-color);
}

.menuBtn.closeMenuBtn {
  gap: 2px;
}

.menuBtn.closeMenuBtn .menuLine::before {
  -webkit-transform: rotate(45deg) translate(3px, 2px);
  transform: rotate(45deg) translate(3px, 2px);
}

.menuBtn.closeMenuBtn .menuLine::after {
  width: 100%;
  -webkit-transform: rotate(-45deg) translate(3px, -2px);
  transform: rotate(-45deg) translate(3px, -2px);
}

.header.notfixed {
  top: -100px;
}

.mbMenuContainer {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 100;
  background: rgb(0 0 0 / 90%);
  backdrop-filter: blur(10px);
  display: none;
  overflow: hidden;
}

.mbMenuContainer .inner {
  position: relative;
  height: 100%;
  width: 420px;
  padding: 0 24px 24px;
  background-color: #fff;
  margin-left: auto;
  margin-right: -1px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(-50%) scale(0.2);
  transform-origin: top right;
  transition: all 0.5s linear 500ms;
}

.mbMenuContainer.active .inner {
  opacity: 1;
  transform: translateY(0%) scale(1);
}

.mbMenuHeader {
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}

.mbMenuContainer .mbMenu {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.mbMenuContainer .mbMenu ul {
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
}

.mbMenuContainer .mbMenu ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed rgb(0 0 0 / 10%);
  color: var(--body-color);
  font-weight: 800;
  font-size: 2rem;
  transition: all 300ms ease-in-out;
  position: relative;
}

.mbMenuContainer .mbMenu ul li:last-of-type a {
  border-bottom: 0;
}

.mbMenuContainer .mbMenu ul li:hover > a,
.mbMenuContainer .mbMenu ul li a.active {
  color: var(--primary-color);
}

.mbMenuContainer .mbMenu ul li a i {
  transform: rotate(90deg);
  font-size: 80%;
  opacity: 0.2;
}
.mbMenuContainer .mbMenu ul li a.active i,
.mbMenuContainer .mbMenu ul li:hover > a i,
.mbMenuContainer .mbMenu ul li a:focus i {
  opacity: 1;
}
.hero
{
  width: 100%;
  height: calc(100vh - 70px);
}
.hero img
{
  height: 100%;
  object-fit: cover;
}
.padding
{
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.overview-icon-img
{
  width: 80px;
  margin: auto;
  margin-bottom: 10px;
}
.overview-icon
{
  margin-top: 1rem;
  box-shadow: 0 0 2px #7bc703;
  padding: 1rem;
}




























/*Footer*/
.footer-area {
  background: url(../images/footer-img.png) bottom center / 100% no-repeat, linear-gradient(to top, #eaffcd 0%, #c4ffde 100%);
  position: relative;
  z-index: 1;
}

/* .footer-area::before{
  content: '';
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 92%);
  backdrop-filter: grayscale(1);
  z-index: -1;
} */

.footer-area a{color:var(--secondary-color);}
.footer-area a:hover{color: var(--primary-color);}

.mainFooter{
  margin-bottom: 12vw;
}

.footerAbout {
  font-size: 1rem;
}

.footerAbout .footer-title{
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: .75rem;
  color: var(--most-prime-color);
}

.footerAbout .footerSocial {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.footerAbout .footerSocial li a {
  color: #fff;
  font-size: 14px;
  text-align: center;
}

.footerAbout .footerSocial li a i{
  display: block;
  width: 35px;
  height: 35px;
  line-height: 33px;
  border: 1px solid rgb(255 255 255 / 15%);
  border-radius: 50%;
  transition: all 300ms ease-in-out;
}

.footerSocial li a .fa-facebook-f{
	background-color: var(--facebook);
}
.footerSocial li a .fa-linkedin-in{
	background-color: var(--linkedin);
}
.footerSocial li a .fa-twitter{
	background-color: var(--twitter);
}
.footerSocial li a .fa-youtube{
	background-color: var(--youtube);
}
.footerSocial li a .fa-whatsapp{
	background-color: var(--whatsapp);
}
.footerSocial li a .fa-instagram{
	background-color: var(--instagram);
}
.footerSocial li a:hover .fa-facebook-f{
	color: var(--facebook);
}
.footerSocial li a:hover .fa-linkedin-in{
	color: var(--linkedin);
}
.footerSocial li a:hover .fa-twitter{
	color: var(--twitter);
}
.footerSocial li a:hover .fa-youtube{
	color: var(--youtube);
}
.footerSocial li a:hover .fa-whatsapp{
	color: var(--whatsapp);
}
.footerSocial li a:hover .fa-instagram{
	color: var(--instagram);
}

.footerAbout .footerSocial li a:hover i {
  background-color: #fff !important;
  box-shadow: 0 10px 20px rgb(0 0 0 / 25%);
}

.footerBox ul li {
  margin: 8px 0;
}

.footerBox ul li a {
  position: relative;
  padding-bottom: 5px;
  display: inline-block;
  transition: all 300ms ease-in-out;
}

.footerBox .footerLinks li a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  border-bottom: 1px solid;
  transition: all 300ms ease-in-out;
}

.footerBox .footerLinks li a:hover:before {
  width: 100%;
}

.footerAddress{
  margin-bottom: 2rem;
}

.footerAddress p{
  display: flex;
  gap: 0 5px;
  margin-bottom: 8px;
}

.footerAddress p i{
  font-size: 13px;
  margin-top: 4px;
  color: var(--most-prime-color);
}

.footer-area .bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  color: #fff;
}

.footer-area .bottom ul {
  display: flex;
  justify-content: flex-end;
  flex-basis: 0;
  flex-grow: 1;
}

.footer-area .bottom li {
  font-size: 12px;
  display: flex;
  margin: 0 10px;
  line-height: 1;
}

.footer-area .bottom li a{
  color: #fff;
}
.footer-area .bottom li a:hover{
  color: yellow;
}

.footer-area .bottom p {
  display: flex;
  font-size: 12px;
  align-items: center;
  margin-bottom: 0;
  flex-basis: 0;
  flex-grow: 1;
}

.footer-area .bottom p:last-child {
  justify-content: flex-end;
}

.footer-area .bottom p img {
  width: 20px;
}

.button-top {
  background: rgba(0, 0, 0, 0.32);
  position: fixed;
  right: 20px;
  bottom: 40px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 8;
  cursor: pointer;
}

.button-top:hover {
  background: var(--primary-color);
}
/*Footer*/

.service-slider .innerBox {
  height: 100%;
  padding: 2rem;
  border-radius: 1rem;
  background-color: #fff;
  border-top: 2px solid var(--secondary-color);
}
.service-slider .innerBox .box-head{
	display: flex;
	align-items: center;
	gap: 0 .5rem;
	margin-bottom: 1.25rem;
}
.service-slider .innerBox .box-head .img-fluid{
	max-width: 80px;
	flex: 0 0 80px;
}
.service-slider .innerBox .box-head h6{
	font-weight: 700;
	color: var(--primary-color);
  font-size: 1.5rem;
}
.hm-services-wrapper
{
  background: #016533;
}
.products
{box-shadow: 0 0 2px #ccc; padding: 10px;}
.products .products-img
{width: 100px;margin: auto;}

.products p
{
  font-size: 1rem;
}
.heading
{
  margin-bottom: 1rem;
}
.products-con
{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #ccc;
}


.insidehero
{
  height: 50vh;
}