body {
	padding: 0;
	text-align: center;
	margin: 0;
	background: #fff;
}
body::-webkit-scrollbar {
	width: 20px;
}
body::-webkit-scrollbar-track {
	background: #fff;
}
body::-webkit-scrollbar-thumb {
	height: 125px;
	border: 8px #fff solid;
	background: #ccc;
}
body::-webkit-scrollbar-thumb:hover {
	background: #5fc2d8;
}
.header {
	position: absolute;
	top: 0;
	left: 50%;
	width: 1920px;
	max-width: 100%;
	object-fit: cover;
	box-shadow: 0 0 0 transparent;
	transform: translateX(-50%);
	transition: box-shadow 250ms;
	z-index: 30;
}
.header.fixed {
	position: fixed;
	top: -34px;
	box-shadow: 0 0 30px rgba(50,50,50,0.125);
}
.form {
	position: absolute;
	top: 173px;
	left: 50%;
	transform: translateX(250px);
	z-index: 20;
}
.form.fixed {
	position: fixed;
	top: 139px;
}
.form.bottom {
	position: absolute;
	top: 2984px;
}
.home {
	display: block;
	width: 1920px;
	max-width: 100%;
	object-fit: cover;
	margin: 0 auto;
	vertical-align: top;
	z-index: 10;
}
