/***********************************************************************************************************************************************
  /$$$$$$  /$$$$$$$$ /$$$$$$  /$$   /$$ /$$$$$$$   /$$$$$$  /$$$$$$$  /$$$$$$$        /$$$$$$$$ /$$$$$$$  /$$$$$$ /$$$$$$$$ /$$$$$$  /$$$$$$$
 /$$__  $$|__  $$__//$$__  $$| $$$ | $$| $$__  $$ /$$__  $$| $$__  $$| $$__  $$      | $$_____/| $$__  $$|_  $$_/|__  $$__//$$__  $$| $$__  $$
| $$  \__/   | $$  | $$  \ $$| $$$$| $$| $$  \ $$| $$  \ $$| $$  \ $$| $$  \ $$      | $$      | $$  \ $$  | $$     | $$  | $$  \ $$| $$  \ $$
|  $$$$$$    | $$  | $$$$$$$$| $$ $$ $$| $$  | $$| $$$$$$$$| $$$$$$$/| $$  | $$      | $$$$$   | $$  | $$  | $$     | $$  | $$  | $$| $$$$$$$/
 \____  $$   | $$  | $$__  $$| $$  $$$$| $$  | $$| $$__  $$| $$__  $$| $$  | $$      | $$__/   | $$  | $$  | $$     | $$  | $$  | $$| $$__  $$
 /$$  \ $$   | $$  | $$  | $$| $$\  $$$| $$  | $$| $$  | $$| $$  \ $$| $$  | $$      | $$      | $$  | $$  | $$     | $$  | $$  | $$| $$  \ $$
|  $$$$$$/   | $$  | $$  | $$| $$ \  $$| $$$$$$$/| $$  | $$| $$  | $$| $$$$$$$/      | $$$$$$$$| $$$$$$$/ /$$$$$$   | $$  |  $$$$$$/| $$  | $$
 \______/    |__/  |__/  |__/|__/  \__/|_______/ |__/  |__/|__/  |__/|_______/       |________/|_______/ |______/   |__/   \______/ |__/  |__/
***********************************************************************************************************************************************/

/* Banner Text */
.banner-container .banner-caption-container
{
	position: absolute;
	z-index: 15;
	bottom: 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: calc(100% - 117px);
}

.banner-container .banner-caption-container .banner-caption h1
{
	display:  inline-block;
	position: relative;
	z-index: 15;
	font-family: poppins_semibold, sans-serif;
	font-size: calc(22px + (50 - 22) * ((100vw - 300px) / (1600 - 300)));
	color: #FFFFFF !important;
	text-shadow: 0 0 5px black;
	font-weight: normal;
	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: 69px;
	}
}

.banner-container .banner-caption-container .banner-description
{
	display:  inline-block;
	position: relative;
	z-index: 15;
	font-family: poppins_medium, sans-serif;
	font-size: calc(22px + (50 - 22) * ((100vw - 300px) / (1600 - 300)));
	color: #FFFFFF !important;
	text-shadow: 0 0 5px black;
	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
{
	margin-top: 15px;
}

.banner-container .banner-caption-container .banner-link a:link,
.banner-container .banner-caption-container .banner-link a:visited
{
	position: relative;
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	align-items: center;
	font-family: poppins_semibold, sans-serif;
	font-size: 12pt;
	font-weight: normal;
	font-style: normal !important;
	color: #ffffff !important;
	text-decoration: none !important;
	background-color: transparent;
	padding: 8px 15px;
	border: none;
	cursor: pointer;
	text-align: center;
	transition: all 0.2s;
	-webkit-tap-highlight-color: transparent;
	z-index: 1;
}

.banner-container .banner-caption-container .banner-link a span
{
	position: relative;
	z-index: 9;
}

.banner-container .banner-caption-container .banner-link a:link::before,
.banner-container .banner-caption-container .banner-link a:visited::before
{
	content: '';
    display: block;
    position: absolute;
    transform: skew(325deg);
    background: #C30000;
    height: 100%;
    width: 100%;
}

.banner-container .banner-caption-container .banner-link a:link::after,
.banner-container .banner-caption-container .banner-link a:visited::after
{
	content: '';
    display: block;
    position: absolute;
    background: #C30000;
    height: 101%;
    right: -14px;
    width: 100%;
    top: 0;
}

/* Banner image */
.banner-container .banner-media-container > div:first-of-type
{
	width: 100%;
	height: 100%;
	margin: 0 auto;
	transition: all 200ms;
}