/* Seguimos con la descripcion, el titulo de cada imagen que se mostrará y los controles del slider */

/**
 * Caption
 ----------------------------------------*/
.caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(0,0,0,0.6);
    padding: 12px;
    font-family: 'Roboto', Arial, Tahoma, Sans-serif, Verdana, Helvetica;
    font-size: 62.5%;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
 
.caption-title {
    color: #00c5b9;
    font-weight: 700;
    font-size: 1.6em;
    margin-bottom: 10px;
}
 
.caption p {
    color: #FFF;
    font-size: 1.4em;
    line-height: 1.3em;
}

.slider-wrapper .nivoSlider .caption {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
}