/***********************************************************************************************************************************************
  /$$$$$$  /$$$$$$$$ /$$$$$$  /$$   /$$ /$$$$$$$   /$$$$$$  /$$$$$$$  /$$$$$$$        /$$$$$$$$ /$$$$$$$  /$$$$$$ /$$$$$$$$ /$$$$$$  /$$$$$$$
 /$$__  $$|__  $$__//$$__  $$| $$$ | $$| $$__  $$ /$$__  $$| $$__  $$| $$__  $$      | $$_____/| $$__  $$|_  $$_/|__  $$__//$$__  $$| $$__  $$
| $$  \__/   | $$  | $$  \ $$| $$$$| $$| $$  \ $$| $$  \ $$| $$  \ $$| $$  \ $$      | $$      | $$  \ $$  | $$     | $$  | $$  \ $$| $$  \ $$
|  $$$$$$    | $$  | $$$$$$$$| $$ $$ $$| $$  | $$| $$$$$$$$| $$$$$$$/| $$  | $$      | $$$$$   | $$  | $$  | $$     | $$  | $$  | $$| $$$$$$$/
 \____  $$   | $$  | $$__  $$| $$  $$$$| $$  | $$| $$__  $$| $$__  $$| $$  | $$      | $$__/   | $$  | $$  | $$     | $$  | $$  | $$| $$__  $$
 /$$  \ $$   | $$  | $$  | $$| $$\  $$$| $$  | $$| $$  | $$| $$  \ $$| $$  | $$      | $$      | $$  | $$  | $$     | $$  | $$  | $$| $$  \ $$
|  $$$$$$/   | $$  | $$  | $$| $$ \  $$| $$$$$$$/| $$  | $$| $$  | $$| $$$$$$$/      | $$$$$$$$| $$$$$$$/ /$$$$$$   | $$  |  $$$$$$/| $$  | $$
 \______/    |__/  |__/  |__/|__/  \__/|_______/ |__/  |__/|__/  |__/|_______/       |________/|_______/ |______/   |__/   \______/ |__/  |__/
***********************************************************************************************************************************************/

/* Banner Text */
.banner-container .banner-caption-container
{
	position: absolute;
	z-index: 15;
	top: 0;
	left: 0;
	right: 0;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: flex-start;
	text-align: center;
	max-width: 1200px;
	height: 100%;	
}


.banner-internal-wrapper
{
	background-color: #932F47;
	padding-top: 30px;
	padding-bottom: 30px;
	padding-left: 80px;
	padding-right: 80px;
}

@media screen and (max-width: 991px)
{
	.banner-internal-wrapper
	{
		background-color: #932F47;
		padding-top: 20px;
		padding-bottom: 20px;
		padding-left: 20px;
		padding-right: 20px;
	}	
}

/* Dark Radial-Gradient behind the caption container to make it easier to read text. */
/* .banner-container .banner-caption-container::before
{
	content: '';
	position: absolute;
	z-index: 10;
	display: block;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(0,0,0,0.2) 0%, transparent 50%);
} */

@media screen and (max-width:1200px)
{
	.banner-container .banner-caption-container
	{
		height: 100%;
	}
}

.banner-container .banner-caption-container .banner-caption h1
{
	display:  inline-block;
	position: relative;
	z-index: 15;
	font-family: noto_sans, sans-serif;
	font-weight: bold;
	font-size: calc(20px + (36 - 20) * ((100vw - 400px) / (2000 - 400)));
	color: #FFFFFF !important;	
	margin: 0 0 5px 0;
	line-height: 1.4;
	opacity: 0;
	transition: all 200ms;
	animation: fadein ease-in 1;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 300ms;
}

@media screen and (min-width:2000px)
{
	.banner-container .banner-caption-container .banner-caption h1
	{
		font-size: 36px;
	}
}

.banner-container .banner-caption-container .banner-description
{
	display:  inline-block;
	position: relative;
	z-index: 15;
	font-family: noto_sans, sans-serif;
	font-weight: normal;
	font-size: calc(14px + (18 - 14) * ((100vw - 400px) / (2000 - 400)));
	color: #FFFFFF !important;	
	margin-bottom: 10px;
	line-height: 1;
	opacity: 0;
	transition: all 200ms;
	animation: fadein ease-in 1;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 600ms;
}

@media screen and (min-width:2000px)
{
	.banner-container .banner-caption-container .banner-description
	{
		font-size: 18px;
	}
}

.banner-container .banner-caption-container .banner-link a:link,
.banner-container .banner-caption-container .banner-link a:visited
{
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: noto_sans_medium, sans-serif;
	font-size: 16px;
	font-weight: normal;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: #932F47;
	border: 2px solid #EFB5C3;
	padding: 8px 15px;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
}

.banner-container .banner-caption-container .banner-link a:hover
{
	background-color: #EFB5C3;
}

.banner-container .banner-caption-container .banner-link a:active
{
	transform: 	translate(0,2px)
 				scale(0.99, 0.99);
    box-shadow: inset 0 0 5px rgba(0,0,0,0.5);
}

/* Banner image */
.banner-container .banner-media-container > div:first-of-type
{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	transition: all 200ms;
}