@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', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-size: 16px;
}



.sec1 {
    position: relative;
    width: 100%;
    height: 400px;
    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;
    top: 45%;
    left: 0;
    position:absolute;
    text-align:center;
    width: 100%;
    font-family: "Playfair Display", serif;
    z-index: 10;
  }
  
.section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}
.section:nth-child(odd) {
    background-color: #ffffff;
}
.section:nth-child(even) {
    background-color: #e0e0e0;
}
.content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  text-align: left;
}

.img-wrapper {
  position: relative;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 10px;
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  transition: transform 0.2s ease;
  display: block;
  z-index: 1;
  position: relative;
}

.img-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0);
  transition: background-color 0.2s ease;
  z-index: 2;
}

.img-wrapper:hover img {
  transform: scale(1.2);
}

.img-wrapper:hover::after {
  background-color: rgba(255, 255, 255, 0);
}

.text {
  max-width: 500px;
}

.green {
  color: #43b248;
}
.text {
    max-width: 500px;
    margin: 20px;
}
.text h2 {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #333333;
}
.text p {
    font-size: 16px;
    color: #666666;
}
.text h2.green {
    color: #4CAF50;
}
@media (max-width: 768px) {
    .content {
        flex-direction: column;
        text-align: center;
    }
    .text {
        text-align: center;
    }
}

icon-outline {
  -webkit-text-stroke: 1px #16a34a; /* Custom green outline */
  color: transparent;
}
.icon-outline:hover {
  color: #16a34a; /* Fill color on hover */
}

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;
}


.specialbtn2 {
  background-color: #43b248;
  color: white;

  border: unset;
  border-radius: 2px;
  font-weight: 600;
  display: inline-flex; /* Asegura que los elementos internos estén en una línea */
  align-items: center; /* Centra verticalmente */
  justify-content: center; /* Centra horizontalmente */
  font-size: 16px;
  cursor: pointer;
}


.specialbtn2:hover {
  background: linear-gradient(43deg, var(--myColor1) 0%, var(--myColor2) 46%, var(--myColor3) 100%);
 transition: --myColor1 0.4s, --myColor2 0.5s, --myColor3 0.2s;
 --myColor1: #43b248;
 --myColor2: #d4b757;
 --myColor3: #ffdb98;
}

.specialbtn2:not(:hover){
  background: linear-gradient(var(--myColor1), var(--myColor2));
 transition: --myColor1 0.4s, --myColor2 0.5s, --myColor3 0.2s;
}

@property --myColor1 {
  syntax: '<color>';
  initial-value: #43b248;
  inherits: false;
}

@property --myColor2 {
  syntax: '<color>';
  initial-value: #43b248;
  inherits: false;
}
@property --myColor3 {
  syntax: '<color>';
  initial-value: #43b248;
  inherits: false;
}

.hiddenscroll{
  opacity: 0;
  transition: all 1s cubic-bezier(.07,.04,.09,1.00);
  transform: translateY(+30px);
}

.showscroll {
  opacity: 1;
  transform: translateY(0px);
}
