<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/***********************************************************************************************************************************************
  /$$$$$$  /$$$$$$$$ /$$$$$$  /$$   /$$ /$$$$$$$   /$$$$$$  /$$$$$$$  /$$$$$$$        /$$$$$$$$ /$$$$$$$  /$$$$$$ /$$$$$$$$ /$$$$$$  /$$$$$$$
 /$$__  $$|__  $$__//$$__  $$| $$$ | $$| $$__  $$ /$$__  $$| $$__  $$| $$__  $$      | $$_____/| $$__  $$|_  $$_/|__  $$__//$$__  $$| $$__  $$
| $$  \__/   | $$  | $$  \ $$| $$$$| $$| $$  \ $$| $$  \ $$| $$  \ $$| $$  \ $$      | $$      | $$  \ $$  | $$     | $$  | $$  \ $$| $$  \ $$
|  $$$$$$    | $$  | $$$$$$$$| $$ $$ $$| $$  | $$| $$$$$$$$| $$$$$$$/| $$  | $$      | $$$$$   | $$  | $$  | $$     | $$  | $$  | $$| $$$$$$$/
 \____  $$   | $$  | $$__  $$| $$  $$$$| $$  | $$| $$__  $$| $$__  $$| $$  | $$      | $$__/   | $$  | $$  | $$     | $$  | $$  | $$| $$__  $$
 /$$  \ $$   | $$  | $$  | $$| $$\  $$$| $$  | $$| $$  | $$| $$  \ $$| $$  | $$      | $$      | $$  | $$  | $$     | $$  | $$  | $$| $$  \ $$
|  $$$$$$/   | $$  | $$  | $$| $$ \  $$| $$$$$$$/| $$  | $$| $$  | $$| $$$$$$$/      | $$$$$$$$| $$$$$$$/ /$$$$$$   | $$  |  $$$$$$/| $$  | $$
 \______/    |__/  |__/  |__/|__/  \__/|_______/ |__/  |__/|__/  |__/|_______/       |________/|_______/ |______/   |__/   \______/ |__/  |__/
***********************************************************************************************************************************************/

/* Banner Text */
.banner-container .banner-caption-container
{
	position: absolute;
	z-index: 15;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
	text-align: center;
	max-width: 1200px;
	height: 100%;
}

.banner-container .banner-caption-container .banner-caption
{
	display:  inline-block;
	position: relative;
	z-index: 15;
    font-family: 'SourceSans3_semibold',sans-serif;
	font-size: calc(26px + (48 - 26) * ((100vw - 400px) / (2000 - 400)));
	text-shadow: 0 0 2px rgba(0,0,0,0.9);
	font-weight: normal;
	color: #ffffff;
	margin: 0 0 5px 0;
	line-height: 1.2;
	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
	{
		font-size: 48px;
	}
}

.banner-container .banner-caption-container .banner-description
{
	display:  inline-block;
	position: relative;
	z-index: 15;
    font-family: 'SourceSans3_semibold',sans-serif;
	font-size: calc(18px + (26 - 18) * ((100vw - 400px) / (2000 - 400)));
	text-shadow: 0 0 2px rgba(0,0,0,0.9);
	font-weight: normal;
	color: #ffffff;
	margin: 0;
	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: 26px;
	}
}

.banner-container .banner-caption-container .banner-link a:link,
.banner-container .banner-caption-container .banner-link a:visited
{
	display: inline-block;
	position: relative;
	z-index: 15;
    font-family: 'SourceSans3',sans-serif;
	font-size: 12pt;
	font-weight: normal;
	color: #ffffff;
	margin: 20px 0 0 0;
	opacity: 0;
	transition: all 200ms;
	background: linear-gradient(to bottom, #d11242, #a80e35);
	text-decoration: none;
	transition: all 200ms;
	padding: 8px 25px;
	animation: fadein ease-in 1;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 900ms;
}

.banner-container .banner-caption-container .banner-link a:hover
{
	background: linear-gradient(to bottom, #DB1345, #BE0D3A);
}

.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 &gt; div:first-of-type
{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	transition: all 200ms;
}</pre></body></html>