svg.svg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.cliente img {
    width: 100%;
    height: auto;
}

figure.cliente figcaption {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
}

svg.svg path {
    fill: rgba(0, 114, 189, 0.9);
}

figure.cliente figcaption a {
    bottom: 0;
    position: absolute;
    text-align: center;
    width: 100%;
    background-color: #0072BD;
    border: 0;
    left: 0;
    padding: 2% 0;
    transition: all 0.5s;
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.115, 1);
    -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.115, 1.445);
    timing-function: cubic-bezier(0.250, 0.250, 0.115, 1.445);
    color: #fff;
}

figure.cliente figcaption h2,figure.cliente figcaption p {
    transform: translateY(50px);
    -webkit-transform: translateY(50px);
    margin: 2% 0;
    transition: all 0.5s;
    -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.115, 1);
    -webkit-transition-timing-function: cubic-bezier(0.250, 0.250, 0.115, 1.445);
    timing-function: cubic-bezier(0.250, 0.250, 0.115, 1.445);
    color: #fff;
}

figure.cliente:hover figcaption h2, figure.cliente:hover figcaption p {
    transform: translateY(10px);
    font-size: 120%;
}

figure.cliente:hover figcaption p {
    opacity: 0;
}

figure.cliente:hover figcaption a {
    transform: translateY(0px);
    -webkit-transform: translateY(0px);
}
figure.cliente {
    position: relative;
    display: inline-block;
    width: 80%;
    margin: 3%;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
}

figure.cliente figcaption h2 {
    font-size: 200%;
}

@media screen and (min-width: 600px) {
    figure.cliente{
        width: 40%;
    }    
}

@media screen and (min-width: 900px) {
    figure.cliente{
        width: 25%;
    }    
}