#main {
	float: left;
	width: 100%;
	height: 200px;
	position: relative;
}

#main_overlay_wrapper {
	float: left;
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

#main_overlay {
	float: left;
	width: 100%;
	height: 100%;
	background: linear-gradient(0deg, rgb(0 0 0 / 90%), rgb(0 0 0 / 80%)), url(/design/img/index/phone-bg.webp);
	background-size: cover;
	position: absolute;
	z-index: 2;
}

#main_overlay_wrapper h1 {
	position: absolute;
	color: #fff;
	font-size: 16px;
	font-family: var(--main-font-family);
	top: 110px;
	z-index: 3;
	width: 90%;
}

#main_overlay_wrapper h2 {
	position: absolute;
	color: #afafaf;
	font-size: 14px;
	top: 165px;
	z-index: 3;
	width: 90%;
}

#main_overlay_wrapper img {
	display: none;
}

@media screen and (min-width:960px) {

	#main_overlay {
		background: rgb(0 0 0 / 75%);
	}

	#main_overlay_wrapper h1 {
		font-size: 28px;
	}

	#main_overlay_wrapper img {
		display: block;
		float: left;
		width: 100%;
		z-index: 1;
		margin-top: -75px;
	}
}