body {
	overflow: hidden;
}
#drone {
	height: 420px;
	overflow: hidden;
}
#drone video {
	border-radius: 1px;
	object-fit: cover;
	height: 100%;
	width: 100%;	
}

.mobile {
	display: none;
}
.desktop {
	display: inline;
}
@media (max-width: 600px){
	.desktop {
		display: inline;
	}
	.mobile {
		display: block
	}
}