h2{
    font-size: 22px;
    color:#324F23;
}
p{
    font-size: 12px;
    color:#324F23;
}
ul{
    font-size: 12px;
    color:#324F23;
}
.banner-3imgs {
    width: 100%;
    height: 600px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
}

/* imágenes + overlay verde */
.banner-3imgs .bimg {
    position: relative;
    background-size: cover;
    background-position: center;
}

.banner-3imgs .bimg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(50, 100, 50, 0.42);
}


.banner-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    z-index: 10;
}


.icon-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

@media (max-width: 768px) {
    .icon-row {
        grid-template-columns: 1fr;
    }
}

.icon-text-holder{
    position: relative;
    width: 100%;
    height: 100%;
}

.text-holder{
    background-color: white;
    width: 85%;
    height: 400px;
    position: absolute;
    border-radius: 12px;
    display: none;
    flex-direction: column;
    padding: 15px;
}

.th-top{
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
}

.th-bot{
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

.card{
    background-color: white;
    width: 100%;
}
.icon {
    width: 140px;
    height: 140px;
    background: white;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.icon img.icon-img {
    width: 140px;
    height: 140px;
    z-index: 3;
}

.mob-banner-3imgs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
}


.mob-text-holder{
    background-color: white;
    margin: 40px;
    border: 1px solid green;
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    padding: 15px;
    text-align: center;

}

