    .contenedor9{
        width: 100%; /* 100 */
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50vh; /* 100   */
    }
    .contenedor9 figure{
       position:relative;
        height: 250px;
        cursor: pointer;
        width: 350px;
        overflow: hidden;
        border-radius: 6px;
        box-shadow: 0px 15px 25px rgba(0,0,0,0.50);
    }
    .contenedor9 figure img{
        width: 100%;
        height: 100%;
        transition: all 400ms ease-out;
        will-change: transform;
    }
    .contenedor9 figure .capa{
        position: absolute;
        top: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,103,123,0.7);
        transition: all 400ms ease-out;
        opacity: 0;
        visibility: hidden;
       text-align: center;
    }
    .contenedor9 figure:hover > .capa {
        opacity: 1;
        visibility: visible;
    }
    .contenedor9 figure:hover > .capa h3{
        margin-top: 70px; /* 70 */
        margin-bottom: 15px;
    }
    .contenedor9 figure:hover > img{
        transform: scale(1.3);
    }
    .contenedor9 figure .capa h3{
        color: #fff;
        font-weight: 400;
        margin-bottom: 120px;
        transition: all 400ms ease-out;
         margin-top: 30px; /* 30 */
    }
    .contenedor9 figure .capa p{
        color: #fff;
        font-size: 15px;
        line-height: 1.5;
        width: 100%;
        max-width: 220px; /* 220 */
        margin: auto;
    }