.location-concept {
	background-color: var(--location-concept-bg-color);
	margin-top: 0;
	z-index: 1;
}

.location-concept-image {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	position: relative;
}

.location-concept-title {
	position: absolute;
	font-size: 10vw;
	top: -12vw;
	z-index: 3;
}

.location-concept-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	background: linear-gradient(to top, transparent, transparent, transparent, rgba(255,255,255, .7), rgba(255,255,255, 1));
	z-index: 2;
}

/*=====================================
=            Media Queries            =
=====================================*/

	@media (min-width:768px) {
		.location-concept-title {
			font-size: 5vw;
			top: -6vw;
		}
		
		.location-concept-image {
			position: absolute;
		}
	}

	@media (min-width:1500px) {
		.location-concept-title {
			font-size: 80px;
			top: -100px;
		}
	}