.container_webs {
    margin-top: 75px;
}

.webs {
    width: 100%;
    position: absolute;
    left: 0;
    padding: 25px 5%;
    /* background-color: rgb(83, 51, 3); */
    margin-top: 50px;
}
    .web .capa {
        z-index: 000;
        width: 100%;
        height: 100%;
        position: absolute;
        background-color: rgba(71, 88, 88, 0.988);
        opacity: 0%;
        top: 0;
        left: 0;
        cursor: pointer;
    }
        .web .capa:hover {
            transition: .25s;
            opacity: 50%;
        }
.filap {
    justify-content: space-around;
    display: flex;
    height: 250px;
    align-items: center;
}

.web {
    z-index: 999;
    height: 82.5%; 
    width: 31%; 
    /* border: 1px solid white; */
    border-radius: 25px;
    overflow: hidden;
    position: relative;
}
.uno {
    justify-content: center;
}
    .web {
        margin: 1.75%; /* 3,5/2 */
        overflow: hidden;
    }
    .web img {
        width: 100%;
    }
.dos {
    justify-content: space-between;
 }
.web .nombre {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family:sans-serif;
    color: white;
    font-size: 20px;
    text-align: center;
    opacity: 0;
    pointer-events: none;
    background-color: rgb(0, 102, 128);
    padding: 10px;
    border-radius: 10px;
    transition: .5s;
}
.web:hover .nombre {
opacity: 1;
}

.titulo_seccion {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 35px;
    color:  white;
    margin-bottom: 50px;
}