/* //estilos Carrousel */
.carousel-inner{
    height: 199px;
    text-align: center;
    background: rgba(255,255,255,1);
    background: -moz-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgb(114, 114, 114) 47%, rgba(237,237,237,1) 100%);
    background: -webkit-gradient(left bottom, right top, color-stop(0%, rgba(255,255,255,1)), color-stop(47%, rgba(0,90,170,1)), color-stop(100%, rgba(237,237,237,1)));
    background: -webkit-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgb(114, 114, 114) 47%, rgba(237,237,237,1) 100%);
    background: -o-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgb(114, 114, 114) 47%, rgba(237,237,237,1) 100%);
    background: -ms-linear-gradient(45deg, rgba(255,255,255,1) 0%, rgb(114, 114, 114) 47%, rgba(237,237,237,1) 100%);
    background: linear-gradient(45deg, rgba(255,255,255,1) 0%, rgb(114, 114, 114) 47%, rgba(237,237,237,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ededed', GradientType=1 );
}
.carousel-item{
    height: 100%;
}
.carousel-item img{
    height: 100%;
}
@media (min-width: 576px) {
    .carousel-inner{
        height: 230px;
    }
}
@media (min-width: 768px) {
    .carousel-inner{
        height: 500px;
    }
}


@media (min-width: 992px) {
    .carousel-inner{
        height: auto;
    }
}
@media (min-width: 1200px) {
    .carousel-inner{
        height: auto;
    }
}
@media (min-width: 1600px) {
    .carousel-inner{
        height: 700px;
    }
}