<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*****************************************************************************************************
 /$$      /$$ /$$      /$$       /$$$$$$$   /$$$$$$  /$$   /$$ /$$   /$$ /$$$$$$$$ /$$$$$$$   /$$$$$$ 
| $$  /$ | $$| $$  /$ | $$      | $$__  $$ /$$__  $$| $$$ | $$| $$$ | $$| $$_____/| $$__  $$ /$$__  $$
| $$ /$$$| $$| $$ /$$$| $$      | $$  \ $$| $$  \ $$| $$$$| $$| $$$$| $$| $$      | $$  \ $$| $$  \__/
| $$/$$ $$ $$| $$/$$ $$ $$      | $$$$$$$ | $$$$$$$$| $$ $$ $$| $$ $$ $$| $$$$$   | $$$$$$$/|  $$$$$$ 
| $$$$_  $$$$| $$$$_  $$$$      | $$__  $$| $$__  $$| $$  $$$$| $$  $$$$| $$__/   | $$__  $$ \____  $$
| $$$/ \  $$$| $$$/ \  $$$      | $$  \ $$| $$  | $$| $$\  $$$| $$\  $$$| $$      | $$  \ $$ /$$  \ $$
| $$/   \  $$| $$/   \  $$      | $$$$$$$/| $$  | $$| $$ \  $$| $$ \  $$| $$$$$$$$| $$  | $$|  $$$$$$/
|__/     \__/|__/     \__/      |_______/ |__/  |__/|__/  \__/|__/  \__/|________/|__/  |__/ \______/ 
*****************************************************************************************************/
.banner-container
{
	overflow: hidden;
	position: relative;
	margin: -120px auto 0 auto;
	width: 100%;
	max-width: 2000px;
	height: 768px;
}

@media screen and (max-width:991px)
{
	.banner-container
	{
		min-height: 400px;
		max-height: calc(100vw * 0.7);
	}
}

.banner-container .banner-image
{
	position: relative;
	height: 100%;
}

/* Optional Dark Overlay */
.banner-container .banner-image::after
{
	content: '';
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	right: 0;
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.3);
}

.banner-container .banner-image &gt; div:first-of-type
{
	background-position: bottom center;
	height: 100%;
}

/* 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;
	height: 100%;
}

.banner-container .banner-caption-container .banner-caption
{
	display:  inline-block;
	position: relative;
	z-index: 15;
	font-family: 'Source_Sans_3';
	font-size: 38pt;
	font-weight: normal;
	color: #ffffff;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	margin: 0 0 5px 0;
	line-height: 1;
	opacity: 0;
	transition: all 200ms;
	animation: fadein ease-in 1;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 300ms;
}

.banner-container .banner-caption-container .banner-description
{
	display:  inline-block;
	position: relative;
	z-index: 15;
	font-family: 'Source_Sans_3_bold';
	font-size: 60pt;
	font-weight: normal;
	color: #ffffff;
	text-shadow: 0 0 5px rgba(0,0,0,0.5);
	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;
}

.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: 'Source_Sans_3_bold';
	font-size: 13pt;
	font-weight: normal;
	color: #ffffff;
	margin: 30px 0 0 0;
	opacity: 0;
	transition: all 200ms;
	background-color: rgba(0,0,0,0.3);
	border: 1px solid #8e9192;
	text-decoration: none;
	transition: all 200ms;
	padding: 15px 30px;
	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-color: rgba(0,0,0,0.5);
}

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

/* Banner Pagination */
.banner-container .banner-controls.banner-pagination
{
	position: absolute;
	z-index: 10;
	bottom: 10px;
	left: 0;
	right: 0;
	width: 95%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
	display: flex;
	justify-content: flex-end;
}

.banner-container .banner-controls.banner-pagination .swiper-pagination-bullet
{
	width: 12px;
	height: 12px;
	background: transparent;
	opacity: 0.8;
	margin-right: 18px;
	transition: all 200ms;
	border: 2px solid #ffffff;
	border-radius: 0;
}

.banner-container .banner-controls.banner-pagination .swiper-pagination-bullet:hover
{
	opacity: 1;
	border-color: rgba(255,255,255,0.5);
}

.banner-container .banner-controls.banner-pagination .swiper-pagination-bullet:last-of-type
{
	margin-right: 0;
}

.banner-container .banner-controls.banner-pagination .swiper-pagination-bullet-active
{
	border: 2px solid #f79b2e;
	background: #f79b2e;
	opacity: 1;
}

.banner-container .banner-controls.banner-pagination .swiper-pagination-bullet-active:hover
{
	background: #F9B971;
	opacity: 1;
}

/* Prevous and Next Buttons */
.banner-container .banner-controls.banner-button
{
	position: absolute;
	z-index: 10;
	top: 0;
	bottom: 0;
	margin-top: auto;
	margin-bottom: auto;
	display: block;
	width: 60px;
	height: 60px;
}

.banner-container .banner-controls.banner-button.previous
{
	left: 15px;
}

.banner-container .banner-controls.banner-button.next
{
	right: 15px;
}

.banner-container .banner-controls.banner-button::before
{
	position: relative;
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 40px;
	background-color: #ffffff;
	opacity: 0;
	border: 2px solid #E5E5E5;
	border-radius: 50%;
	filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
	transition: all 200ms;
}

.banner-container .banner-controls.swiper-button-disabled
{
	display: none;
}

.banner-container:hover .banner-controls.banner-button::before
{
	opacity: 0.15;
}

.banner-container .banner-controls.banner-button:hover::before
{
	opacity: 0.6;
}

.banner-container .banner-controls.banner-button:active::before
{
	opacity: 0.8;
}

.banner-container .banner-controls.banner-button.previous::before
{
	content: '\276E';
	margin-left: -5px;
}

.banner-container .banner-controls.banner-button.next::before
{
	content: '\276F';
	margin-right: -5px;
}

.banner-container .to-main-content
{
	position: absolute;
	z-index: 10000;
	left: 0;
	right: 0;
	bottom: 20px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 35px;
	height: 35px;
	border: 2px solid #ffffff;
	border-radius: 50%;
	opacity: 0.6;
	transition: all 200ms;
}

.banner-container .to-main-content::before
{
	content: '\f063';
	font-family: font_awesome;
	font-size: 12pt;
	line-height: 1;
	color: #ffffff;
	transition: transform 200ms;
}

.banner-container .to-main-content:hover
{
	opacity: 1;
}

.banner-container .to-main-content:hover::before
{
	transform: translateY(2px);
}

@media screen and (max-width:1200px)
{
	.banner-container .banner-image-container
	{
		top: 60px;
	}
}

@media screen and (max-width:991px)
{	
	.banner-container .banner-image-container .banner-image &gt; div:first-of-type
	{
		background-size: cover !important;
	}

	.banner-container .banner-caption-container .banner-caption
	{
		font-size: 30pt;
	}

	.banner-container .banner-caption-container .banner-description
	{
		font-size: 20pt;
	}

	.banner-container .banner-caption-container .banner-link a:link,
	.banner-container .banner-caption-container .banner-link a:visited,
	.banner-container .banner-caption-container .banner-link a:hover,
	.banner-container .banner-caption-container .banner-link a:active
	{
		font-size: 11pt;
		margin-top: 15px;
	}

	.banner-container .banner-controls.banner-button
	{
		top: 60px;
	}

	.banner-container .banner-controls.banner-button.previous
	{
		left: 0;
	}

	.banner-container .banner-controls.banner-button.next
	{
		right: 0;
	}

	.banner-container .banner-controls.banner-button.previous:hover
	{
		background: linear-gradient(to right, rgba(0,0,0,0.3), transparent);	
	}

	.banner-container .banner-controls.banner-button.next:hover
	{
		background: linear-gradient(to left, rgba(0,0,0,0.3), transparent);	
	}

	.banner-container .banner-controls.banner-button
	{
		width: 80px;
		height: 100%;
		outline: none;
	}

	.banner-container .banner-controls.banner-button::before
	{
		position: relative;
		width: 80px;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 40px;
		background-color: transparent;
		color: #ffffff;
		opacity: 0;
		border: none;
		border-radius: 0;
		filter: drop-shadow(0 0 5px rgba(0,0,0,0.5));
	}
}</pre></body></html>