.carousel-item {
    height: 50vh;
    min-height: 350px;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

div.carousel-caption{
    text-align: left;
}

div.carousel-caption.left{
    left: 10%;
    right: auto;
}


div.carousel-caption.right{
    left: auto;
    right: 10%;
}

div.carousel-caption.centerH{
    text-align: center !important;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
}

div.carousel-caption.top{
    top: 10%;
    bottom: auto;
}

div.carousel-caption.bottom{
    top: auto;
    bottom: 10%;
}

div.carousel-caption.centerV{
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

div.carousel-caption.centerH.centerV{
    -webkit-transform: translateX(-50%) translateY(-50%) !important;
    -moz-transform: translateX(-50%) translateY(-50%) !important;
    transform: translateX(-50%) translateY(-50%) !important;
}