/***********************************************************************************************************************************************
  /$$$$$$  /$$$$$$$$ /$$$$$$  /$$   /$$ /$$$$$$$   /$$$$$$  /$$$$$$$  /$$$$$$$        /$$$$$$$$ /$$$$$$$  /$$$$$$ /$$$$$$$$ /$$$$$$  /$$$$$$$
 /$$__  $$|__  $$__//$$__  $$| $$$ | $$| $$__  $$ /$$__  $$| $$__  $$| $$__  $$      | $$_____/| $$__  $$|_  $$_/|__  $$__//$$__  $$| $$__  $$
| $$  \__/   | $$  | $$  \ $$| $$$$| $$| $$  \ $$| $$  \ $$| $$  \ $$| $$  \ $$      | $$      | $$  \ $$  | $$     | $$  | $$  \ $$| $$  \ $$
|  $$$$$$    | $$  | $$$$$$$$| $$ $$ $$| $$  | $$| $$$$$$$$| $$$$$$$/| $$  | $$      | $$$$$   | $$  | $$  | $$     | $$  | $$  | $$| $$$$$$$/
 \____  $$   | $$  | $$__  $$| $$  $$$$| $$  | $$| $$__  $$| $$__  $$| $$  | $$      | $$__/   | $$  | $$  | $$     | $$  | $$  | $$| $$__  $$
 /$$  \ $$   | $$  | $$  | $$| $$\  $$$| $$  | $$| $$  | $$| $$  \ $$| $$  | $$      | $$      | $$  | $$  | $$     | $$  | $$  | $$| $$  \ $$
|  $$$$$$/   | $$  | $$  | $$| $$ \  $$| $$$$$$$/| $$  | $$| $$  | $$| $$$$$$$/      | $$$$$$$$| $$$$$$$/ /$$$$$$   | $$  |  $$$$$$/| $$  | $$
 \______/    |__/  |__/  |__/|__/  \__/|_______/ |__/  |__/|__/  |__/|_______/       |________/|_______/ |______/   |__/   \______/ |__/  |__/
***********************************************************************************************************************************************/

/* 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: flex-end;
	align-items: center;
	text-align: center;
	max-width: 1200px;
	height: 100%;
	padding-bottom: 33px;
}

/* 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
{
	font-family: 'Poppins', sans-serif;
    font-size: calc(26px + (42 - 26)*((100vw - 400px) /(2000 - 400)));
	font-weight: 500;
    color: #FFFFFF !important;
    text-shadow: 0 0 15px black;
    text-align: center;
}

@media screen and (min-width:2000px)
{
	.banner-container .banner-caption
	{
		font-size: 42px;
	}
}
.banner-container .banner-caption-container .banner-description
{
	display:  inline-block;
	position: relative;
	z-index: 15;
	font-family: 'Poppins', sans-serif;
	font-size: calc(18px + (23 - 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: 23px;
	}
}

.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: 'OpenSans', sans-serif;
	font-size: 16px;
	font-weight: 600;
	font-style: normal !important;
	color: #2D2D2D !important;
	text-decoration: none !important;
	background-color: #FB8B23;
	padding: 12px 18px;
	border: 1px solid transparent;
	border-radius: 3px;
	cursor: pointer;
	text-align: center;
	transition: all 0.3s;
	-webkit-tap-highlight-color: transparent;
}


.banner-container .banner-caption-container .banner-link a:hover
{
	background-color: #e47914;
	border: 1px solid #458117;
	font-weight: 600;
	transform: scale(1.05);
	box-shadow: inset 0 4px 8px rgba(69, 129, 23, 0.2);
}

.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;
}