div.video {
	width:100%;
	border:0px;
	z-index:-1;
	margin:0 0 0 0;
	padding:0px;
	overflow: hidden;
	position:relative;
}
div.video div.contenitoreVideo {
	width:100%;
	height:100%;
	padding:0px 0px;
	overflow: hidden;
	position: relative;
}
div.video article {
	width: auto;
	height:auto;
	padding:0;
	position: absolute;
	top:0;
	left:0;
	right:0;
	bottom:0;
	display: flex;
	flex-flow:column nowrap;
	align-items: center;
	justify-content: center;
	display: -webkit-flex;
	-webkit-flex-flow:column nowrap;
	-webkit-align-items: center;
	-webkit-justify-content: center;
	display: -ms-flexbox;
	-ms-flex-flow:column nowrap;
	-ms-flex-align: center;
	-ms-flex-pack: center;
}
div.video article video {
	position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    background-size: cover;
}
/* Smartphones ----------- */
@media only screen and (max-width : 960px) {
div.video {
	height:20rem;
}
}
/* ipad desktop ----------- */
@media only screen and (min-width : 961px) {
div.video {
	height:30rem;
}
}