/***********************************************************************************************************************************************
  /$$$$$$  /$$$$$$$  /$$    /$$  /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$$$ /$$$$$$$        /$$$$$$$$ /$$$$$$$  /$$$$$$ /$$$$$$$$ /$$$$$$  /$$$$$$$ 
 /$$__  $$| $$__  $$| $$   | $$ /$$__  $$| $$$ | $$ /$$__  $$| $$_____/| $$__  $$      | $$_____/| $$__  $$|_  $$_/|__  $$__//$$__  $$| $$__  $$
| $$  \ $$| $$  \ $$| $$   | $$| $$  \ $$| $$$$| $$| $$  \__/| $$      | $$  \ $$      | $$      | $$  \ $$  | $$     | $$  | $$  \ $$| $$  \ $$
| $$$$$$$$| $$  | $$|  $$ / $$/| $$$$$$$$| $$ $$ $$| $$      | $$$$$   | $$  | $$      | $$$$$   | $$  | $$  | $$     | $$  | $$  | $$| $$$$$$$/
| $$__  $$| $$  | $$ \  $$ $$/ | $$__  $$| $$  $$$$| $$      | $$__/   | $$  | $$      | $$__/   | $$  | $$  | $$     | $$  | $$  | $$| $$__  $$
| $$  | $$| $$  | $$  \  $$$/  | $$  | $$| $$\  $$$| $$    $$| $$      | $$  | $$      | $$      | $$  | $$  | $$     | $$  | $$  | $$| $$  \ $$
| $$  | $$| $$$$$$$/   \  $/   | $$  | $$| $$ \  $$|  $$$$$$/| $$$$$$$$| $$$$$$$/      | $$$$$$$$| $$$$$$$/ /$$$$$$   | $$  |  $$$$$$/| $$  | $$
|__/  |__/|_______/     \_/    |__/  |__/|__/  \__/ \______/ |________/|_______/       |________/|_______/ |______/   |__/   \______/ |__/  |__/                                     
***********************************************************************************************************************************************/
.banner-container
{
	margin-top: -115px;
}

@media screen and (max-width: 1200px)
{
	.banner-container
	{
		margin-top: -60px;
	}	
}

.banner-advanced-editor-html-container
{
	position: absolute;
	z-index: 15;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	height: 100%;
}

.media-inner-wrapper
{
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	flex-flow: column nowrap;
	width: 100%;
	height: 100%;
	max-width: 1200px;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}

.media-inner-wrapper > div
{
	max-width: 450px;
	margin-top: -35px;
}

@media screen and (max-width: 1440px)
{
	.media-inner-wrapper > div
	{
		margin-top: 0;
		max-width: 550px;
	}	
}

@media screen and (max-width: 767px)
{
	.media-inner-wrapper > div
	{
		margin-top: 35px;
	}	
}

.media-inner-wrapper .banner-inner-container
{
	display: flex;
	justify-content: center;
	align-items: center;
}

.media-inner-wrapper .media-background-video
{
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: auto;
	height: 100%;
}

@media screen and (min-width: 1440px)
{
	.media-inner-wrapper .banner-caption,
	.media-inner-wrapper h1
	{	
		font-size: 84px;		
	}	
}

.media-inner-wrapper .banner-caption,
.media-inner-wrapper h1
{
	font-family: dm_serif_display;
	font-size: calc(32px + (84 - 32) * ((100vw - 300px) / (1600 - 300)));
	color: #FFFFFF !important;
	text-shadow: 0 0 5px black;
	line-height: 1;
}

@media screen and (min-width: 2000px)
{
	.media-inner-wrapper .banner-caption,
	.media-inner-wrapper h1
	{
		font-size: 84px;
	}
}

.media-inner-wrapper .banner-description
{
	font-family: lato;
	font-weight: bold;
	font-size: calc(16px + (21 - 16) * ((100vw - 300px) / (1600 - 300)));
	color: #FFFFFF !important;
	text-shadow: 0 0 5px black;
	margin: 15px 0;
	line-height: 1.4;
}

@media screen and (min-width: 1440px)
{
	.media-inner-wrapper .banner-description
	{
		font-size: 21px;
	}
}

@media screen and (max-width: 767px)
{
	.media-inner-wrapper .banner-description
	{
		margin: 8px 0;
		line-height: 1.3;
	}
}

.media-inner-wrapper .banner-links
{
	display: flex;
	gap: 15px;
}

.media-inner-wrapper .banner-list
{
	font-family: lato_semibold;	
	font-size: calc(16px + (21 - 16) * ((100vw - 300px) / (1600 - 300)));
	color: #FFFFFF !important;
	text-shadow: 0 0 5px black;
}

.banner-list-container 
{
	height: 117px;
	overflow: hidden;
	position: relative;
	mask-image: linear-gradient(to top, transparent 0%, #000000 30%, #000000 70%, transparent 100% );
	-webkit-mask-image: linear-gradient(to top, transparent 0%, #000000 30%, #000000 70%, transparent 100% )
}

.banner-list-container ul 
{
	margin: 0;
	padding: 0;
	-webkit-animation: scrollUp 2s 2s infinite forwards;
			animation: scrollUp 2s 2s infinite forwards;
}

.banner-list-container ul li 
{
	opacity: 1;
	height: 20px;
	padding: 10px;
	list-style: none;
	margin-bottom: 5px;
}

@-webkit-keyframes fadeOut 
{
	from 
	{
		opacity: 1;
	}
	to 
	{
		opacity: 0;
	}
}

@keyframes fadeOut 
{
	from 
	{
		opacity: 1;
	}
	to 
	{
		opacity: 0;
	}
}
@-webkit-keyframes scrollUp 
{
	from 
	{
		transform: translateY(0);
	}
	to 
	{
		transform: translateY(-33.3333333333%);
	}
}
@keyframes scrollUp 
{
	from 
	{
		transform: translateY(0);
	}
	to 
	{
		transform: translateY(-33.3333333333%);
	}
}
