.houseShowcase
{
	display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
	
	position: relative;
    min-height: 600px;
	margin-top: 3em;
	background-size: cover;
    background-position: center;
}

.houseShowcase > .houseShowcaseTitleContainer
{
	position: relative;
    z-index: 3;
}

.houseShowcase > .houseShowcaseTitleContainer >.sectionHeader:not(.headerTextShadow)
{
	position: relative;
    z-index: 3;
}

.houseShowcase > .houseShowcaseTitleContainer > .sectionHeader.headerTextShadow
{
	position: absolute;
	top: 0px;
    z-index: 2;
}

.houseShowcase > .houseShowcaseTitleContainer > .sectionHeader:not(.headerTextShadow) h1,
.houseShowcase > .houseShowcaseTitleContainer > .sectionHeader:not(.headerTextShadow) h2
{
	color: white;
}

.houseShowcase > .houseShowcaseTitleContainer > .sectionHeader.headerTextShadow h1,
.houseShowcase > .houseShowcaseTitleContainer > .sectionHeader.headerTextShadow h2
{
	-webkit-text-stroke: 2px #1c315663;
}

.houseShowcase > .regularButton
{
    position: relative;
    top: 0px;
    z-index: 2;
	
    background: white;
    border: 1px solid white;
	
	color: #1c3156;
}

.houseShowcase > video
{
    position: absolute;
    top: 0;
    z-index: 0;
    
	width: 100%;
	height: 100%;
    object-fit: cover;
}

.houseShowcase::before
{
	content: '';
    
	position: absolute;
    top: 0;
    z-index: 1;
	
	width: 100%;
    height: 100%;
    background: #30292966;
}



@media (max-width: 600px)
{
	.houseShowcase
	{
		min-height: 400px;
	}
}