* {
	outline: 0 !important;
	-webkit-font-smoothing: antialiased;
}

html {
	overflow-x: hidden;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}

body {
	overflow-x: clip;
	margin: 0;
	padding: 0;
  	font-family: "Noto Serif", serif;
  	font-optical-sizing: auto;
  	font-style: normal;
	background-color: #011D35!important;
}

.hero {
	position: relative;
	width: 100vw;
	min-height: 100svh;
	min-height: 100vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.hero .logo {
	position: absolute;
	z-index: 3;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.hero .logo svg {
	max-width: 100%;
}
.hero .content {
	position: relative;
	z-index: 3;
	text-align: center;
	color: #f6f6f6;
	padding-left: 15px;
	padding-right: 15px;
	padding-bottom: 70px;
}
.hero .content h1 {
	font-size: 20px;
	line-height: 1.4;
	font-weight: 600;
	margin-bottom: 20px;
	margin-top: 0;
}
.hero .content p {
	font-size: 12px;
	line-height: 1.4;
	margin-top: 0;
	margin-bottom: 0;
}
.hero .background-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	min-height: 100svh;
	min-height: 100vh;
	z-index: 0;
	padding: 0;
}
.hero .background-video video {
	display: block;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100vw;
	min-height: 100svh;
	min-height: 100vh;
	z-index: 1;
}

@media only screen and (max-width: 568px) {
    .hero .content {
        padding-bottom: 50px;
    }
.hero .content h1 {
    font-size: 18px;
}
}

@media (max-width: 991px) and (orientation: landscape) {
.hero .logo {
    top: 40%;
	max-width: 300px;
}
.hero .content {
    padding-bottom: 30px;
}
}
