/**********************************************************
// Block >> Example
**********************************************************/
.Block-Hover-Text-Block {
	position: relative;
	min-height: 400px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	border-radius: 20px;
}

.Block-Hover-Text-Background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.Block-Hover-Text-Background img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
}

.Block-Hover-Text-Overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	transition: opacity 0.3s ease;
}

.Block-Hover-Text-Content {
	position: relative;
	z-index: 2;
	text-align: center;
	padding: 40px;
	max-width: 600px;
	color: white;
}

.Block-Hover-Text-Initial {
	opacity: 1;
	transition: all 0.3s ease;
}

.Block-Hover-Text-Title {
	font-size: 28px;
	font-weight: bold;
	margin: 0;
}

.Block-Hover-Text-Hover-Content {
	opacity: 0;
	transition: all 0.3s ease;
	pointer-events: none;
	display: none;
}

.Block-Hover-Text-Headline {
	font-size: 22px;
	font-weight: bold;
	margin: 0;
	font-family: var(--Body-Font);
}

.Block-Hover-Text-Copy {
	font-size: 17px;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 0 10px;
}

.Block-Hover-Text-CTA {
	display: block;
	text-align: center;
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	transition: all 0.3s ease;
}

.Block-Hover-Text-CTA:hover {
	color: #1a8ec4;
}

/* Hover Effect */
.Block-Hover-Text-Block:hover .Block-Hover-Text-Initial {
	opacity: 0;
	display: none;
}

.Block-Hover-Text-Block:hover .Block-Hover-Text-Hover-Content {
	opacity: 1;
	display: block;
	pointer-events: auto;
}

.Block-Hover-Text-Block:hover .Block-Hover-Text-Overlay {
	opacity: 0.8;
}

/**********************************************************
// Media Queries
**********************************************************/
@media
all and (max-width: 768px),
all and (max-device-width: 768px)
{
	
}
