@charset "utf-8";

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba( 0, 0, 0, 0.45 );
  z-index: -1;
}

.hero-container {
	position: absolute;
	top: 50px;
	right: 00px;
	left: 0px;
	bottom: 0px;
	overflow: hidden;
	height: 100%;
}

.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	-ms-transform: translateX( -50% ) translateY( -50% );
	-moz-transform: translateX( -50% ) translateY( -50% );
	-webkit-transform: translateX( -50% ) translateY( -50% );
	transform: translateX( -50% ) translateY( -50% );
}

.hero-video-overlay {
	width: 100%;
	height: 100%;
	position: absolute;
	background: rgba( 1, 1, 1, 0.4 ); 
}

.hero-video-overlay-content {
	color: var( --text-color-white );
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate( -50%, -50% );
	text-align: center;
	box-sizing: border-box;
}

.hero-img {
	margin-bottom: 10px;
}

.hero-img img {
	width: 150px;
	animation: rotateOnY 4s infinite linear;
}

.hero-title {
	font-size: 60px;
	font-family: var( --font-bold );
}

.hero-message {
	color: var( --primary-color );
	font-family: var( --font-regular );
	font-size: 18px;
}

.hero-main-flex {
	display: flex;
	gap: 20px;
	max-width: 1200px;
	margin: 0 auto;
}

.hero-actions {
	margin-top: 40px;
}

.hero-actions-flex {
	display: flex;
	gap: 20px;
	width: 100%;
	justify-content: center;
}

.hero-action-column {
	width: 200px;
}

.hero-actions-flex {
	display: flex;
	gap: 20px;
	width: 100%;
	justify-content: center;
}

.hero-action-column {
	width: 100%;
}

.features-container {
	font-family: var( --font-medium );
	margin-top: 100vh;
	margin-top: calc( 100vh + 30px );
	margin-bottom: 40px;
	text-align: center;
}

@media only screen and ( max-width: 1200px ) { /* mobile: do things when size is 1200px or less */	
	.hero-container {
		top: 45px;
		height: calc( 100vh - 46px );
	}

	.hero-video-overlay-content {
		padding: 20px;
		width: 100%;
		top: 280px;
	}

	.hero-title {
		font-size: 38px;
	}

	.hero-message {
		font-size: 16px;
	}

	.features-container {
		margin-top: calc( 100vh - 40px );
		margin-bottom: 20px;
	}

	.hero-main-flex {
		display: block;
	}
}