.hero
{
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
	align-content: center;
	padding-left: calc(var(--defaultInterval)*.5);
	padding-right: calc(var(--defaultInterval)*.5);
	overflow: hidden;
	z-index: 100;
	box-sizing: border-box;
	min-height: calc(var(--defaultInterval)*2);
	position: relative;
	display: flex;
	width: 100%;
	justify-content: center;
	align-content: center;
	overflow: hidden;
	z-index: 100;
	margin-top: calc(var(--defaultInterval)*1);
	margin-bottom: calc(var(--defaultInterval)*1);
	padding-top: 0px;
	background-position:top-ri;
}
.hero .text
{
	max-width:var(--maxWidth);
	/*bottom: calc(var(--defaultInterval)*1);*/
	width: 100%;
	height: 100%;
	/*padding-left: calc(var(--defaultInterval)*1);*/
	/*padding-right: calc(var(--defaultInterval)*1);*/
	z-index: 500;
	box-sizing: border-box;
	margin-top: 0;
	padding-left: 0;
}
.hero .text h1.title
{
	font-size:var(--h1Size);
}
.hero.withImage .title
{
	display: block;
	height: auto;
	position: absolute;
	bottom: calc(var(--defaultInterval)*1);
	z-index: 1000;
}
.hero.withImage
{
	height: 35vw;
	margin-top: 0;
	margin-bottom: 0;
	position: relative;
}
.hero.withImage .photoSource
{
	position: absolute;
	z-index: 10000;
	background-color: rgba(0, 0, 0, 0.421);
	bottom: 0;
	right: 0;
	padding: calc(var(--defaultInterval)*.25) calc(var(--defaultInterval)*.25) calc(var(--defaultInterval)*.125) calc(var(--defaultInterval)*.25);
	font-size:var(--vsmall);
	border-top-left-radius:var(--defaultBorderRadius);
	color: black;
	background-color: rgba(255, 255, 255, 0.855);
	font-weight: bold;
}
#SD .hero.withImage .photoSource a
{
	color:var(--colB);
}
#SD .hero.withImage .photoSource a:hover
{
	color:var(--colC);
	background-position: ;
}
.hero.withImage:before
{
	content: "";
	position: absolute;
	z-index: 500;
	width: 100%;
	height: 30vw;
	/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#ffffff+0,ffffff+100&0+0,1+100 */
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	/* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	/* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	/* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00ffffff', endColorstr='#ffffff',GradientType=0 );
	/* IE6-9 */
	box-sizing: border-box;
	bottom: 0;
	opacity: 1;
}
.hero .image
{
	height: 100%;
	background-size: cover;
	box-sizing: border-box;
	background-position: center;
	/*background-position: bottom left;*/
	width: 100%;
	z-index: 100;
	position: absolute;
}
.hero.withImage .image.parallax
{
	/*background-position: top center;*/
	/*border: 7px solid #08CE59;*/
	background-attachment: fixed;
}
@media only screen and (max-width: 770px)
{
	.hero
	{
		padding: 0px;
		background-color: transparent;
	}
	.hero.withImage
	{
		display: grid;
		grid-template-rows: auto auto;
		grid-template-areas: "image" "text";
		grid-template-columns: 1fr;
		height: auto;
	}
	.hero.withImage .photoSource
	{
		grid-area: text;
		top: 0;
		bottom: auto;
		border-top-left-radius: 0;
		border-bottom-left-radius:var(--defaultBorderRadius);
	}
	.hero.withImage .image
	{
		grid-area: image;
		min-width: 100px;
		width: 100%;
		position: relative;
		height: auto;
		min-height: 300px;
	}
	.hero.withImage .text
	{
		grid-area: text;
		position: relative;
		width: 100%;
		min-width: 100px;
		max-width: none;
		width: 100%;
		height: 100%;
		z-index: 500;
		box-sizing: border-box;
		height: auto;
		padding-left: calc(var(--defaultInterval)*0);
		padding-right: calc(var(--defaultInterval)*.5);
		margin-left: 0px;
	}
	.hero .text
	{
		margin-left: calc(var(--defaultInterval)*.5);
	}
	#SD .hero.withImage .title
	{
		position: relative;
		bottom: auto;
		margin-top: calc(var(--defaultInterval)*1);
		margin-bottom: calc(var(--defaultInterval)*1);
	}
	#SD .hero.withImage.withSource .title
	{
		margin-top: calc(var(--defaultInterval)*2);
	}
	.hero.withImage .image.parallax
	{
		/*background-position: top center;*/
		/*border: 7px solid #08CE59;*/
		background-attachment: scroll;
	}
}
