@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root{
  --color-1: white;
  --text-color: #333333;
  --accent-color: #43b248;
 }

*{
  margin: 0;
  padding: 0;
}

html{
  font-size: 16px;
  font-family: "Playfair Display", serif;
}


body {
  font-family: "Lato", serif;
}



.sec1 {
  position: relative;
  width: 100%;
  height: 400px;
  margin-bottom: 100px;
  overflow: hidden;
}

.image-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.imgsec1 {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  object-position: left center;
}

.green-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 93, 0, 0.25);
  z-index: 1;
  pointer-events: none;
}

.sec1 h1{
   
  position: absolute;
  color: white;
  font-weight: 400;
  font-size: 45px;
  font-family: "Playfair Display", serif;
  top: 45%;
   left: 0;
    position:absolute;
    text-align:center;
    width: 100%;
    z-index: 10;
}


.containa {
   font-family: "Lato", serif;
   width: 70%;
   
   margin: auto;
   display: grid;
   grid-template-columns: 1fr;
   gap: 20px;
   margin-bottom: 80px;
 }

 .text-area {
   background: #f6f6f6;
   padding: 36px;

  

 }

 .text-area h2 {
   font-family: "Playfair Display", serif;
   font-size: 1.5rem;
   margin-bottom: 18px;
   color: #333;
 }

 .text-area span {
   padding-top: 20px;
   font-size: 16px;

   color: #4c4c4c;
 }

 .text-area hr {
   margin-bottom: 12px;
 }

 .text-area img {
   width: 12px;
   height: 12px;
   margin-right: 6px;
 }

 @media (min-width: 768px) {
   .containa {
     grid-template-columns: repeat(2, 1fr);
   }
 }

 @media (min-width: 1024px) {
   .containa {
     grid-template-columns: repeat(3, 1fr);
   }
 }


 footer{
  background-color: #144816;
  color: white;
  padding-top: 80px;
  padding-left: 120px;
  padding-right: 120px;
  padding-bottom: 20px;
}
.flogo {
  width: auto;
  height: 75px;
}

footer li {
  font-size: 14px;
}

footer p {
  font-size: 14px;
}

footer .text-green-600 {
  font-size: 18px;
}


.navpadding {
  margin-left: 30px;
  height: 100%;
  width: auto;
}
.navpadding2 {
  margin-right: 30px;
}