html, body {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	font: normal 16px Arial;
}

.site-content {
	height: 100%;
}

.section {
	height: 100%;
	position: relative;
}

.logo {
	padding: 20px;
	position: absolute;
	left: 0;
	right: 0;
	/* top: 50%;
	transform: translateY(-50%); */
	top: 0;
	text-align: right;
	z-index: 10;
}
.logo img {
	max-width: 100%;
	height: auto;
	width: 200px;
}

.section--video {
	width: 100%;
	height: 100%;
	background: url('../video/bg.jpg') center center no-repeat;
	background-size: cover;
	overflow: hidden;
}

.section--video video {
	width: 280%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
}

@media (min-width: 768px) {
	.section--video video {
		width: 100%;
	}
}