/***********************************************************************************************************************************************
  /$$$$$$  /$$$$$$$  /$$    /$$  /$$$$$$  /$$   /$$  /$$$$$$  /$$$$$$$$ /$$$$$$$        /$$$$$$$$ /$$$$$$$  /$$$$$$ /$$$$$$$$ /$$$$$$  /$$$$$$$
 /$$__  $$| $$__  $$| $$   | $$ /$$__  $$| $$$ | $$ /$$__  $$| $$_____/| $$__  $$      | $$_____/| $$__  $$|_  $$_/|__  $$__//$$__  $$| $$__  $$
| $$  \ $$| $$  \ $$| $$   | $$| $$  \ $$| $$$$| $$| $$  \__/| $$      | $$  \ $$      | $$      | $$  \ $$  | $$     | $$  | $$  \ $$| $$  \ $$
| $$$$$$$$| $$  | $$|  $$ / $$/| $$$$$$$$| $$ $$ $$| $$      | $$$$$   | $$  | $$      | $$$$$   | $$  | $$  | $$     | $$  | $$  | $$| $$$$$$$/
| $$__  $$| $$  | $$ \  $$ $$/ | $$__  $$| $$  $$$$| $$      | $$__/   | $$  | $$      | $$__/   | $$  | $$  | $$     | $$  | $$  | $$| $$__  $$
| $$  | $$| $$  | $$  \  $$$/  | $$  | $$| $$\  $$$| $$    $$| $$      | $$  | $$      | $$      | $$  | $$  | $$     | $$  | $$  | $$| $$  \ $$
| $$  | $$| $$$$$$$/   \  $/   | $$  | $$| $$ \  $$|  $$$$$$/| $$$$$$$$| $$$$$$$/      | $$$$$$$$| $$$$$$$/ /$$$$$$   | $$  |  $$$$$$/| $$  | $$
|__/  |__/|_______/     \_/    |__/  |__/|__/  \__/ \______/ |________/|_______/       |________/|_______/ |______/   |__/   \______/ |__/  |__/
***********************************************************************************************************************************************/
.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: 95%;
	max-width: 1200px;
	height: 100%;
	margin: 0 auto;
}

.media-inner-wrapper .red-line-container:before
{
	content: '';
	width: 0;
	height: 20%;
	position: absolute;
	border: 4px solid #e02e26;
	left: -20px;
}

.media-inner-wrapper .media-background-video
{
	position: absolute;
	z-index: -1;
	left: 0;
	top: 0;
	width: auto;
	height: 100%;
}

.media-inner-wrapper .banner-caption,
.media-inner-wrapper h1
{
	font-family: montserrat;
	font-weight: bold;
	font-size: calc(24px + (46 - 24) * ((100vw - 300px) / (1600 - 300)));
	color: #FFFFFF !important;
}

@media screen and (min-width: 1440px)
{
	.media-inner-wrapper .banner-caption,
	.media-inner-wrapper h1
	{
		font-size: 46px;
	}
}

.media-inner-wrapper h2
{
	font-family: montserrat;
	font-weight: bold;
	font-size: calc(24px + (46 - 24) * ((100vw - 300px) / (1600 - 300)));
	color: #FFFFFF !important;
}

@media screen and (min-width: 1440px)
{	
	.media-inner-wrapper h2
	{
		font-size: 46px;
	}
}

.media-inner-wrapper .banner-caption-lesser
{
	font-family: open_sans;
	font-size: calc(16px + (16 - 16) * ((100vw - 300px) / (1600 - 300)));
	background-color: #000000;
	color: #FFFFFF !important;
}

@media screen and (min-width: 1440px)
{
	.media-inner-wrapper .banner-caption-lesser
	{
		font-size: 16px;
	}
}

.media-inner-wrapper .banner-description
{
	font-family: open_sans;
	font-size: calc(16px + (16 - 16) * ((100vw - 300px) / (1600 - 300)));
	color: #FFFFFF !important;
}

@media screen and (min-width: 1440px)
{
	.media-inner-wrapper .banner-description
	{
		font-size: 16px;
	}
}


/*Scrolling Icon*/
.mouse-scroll
{
	z-index: 100;
	position: absolute;
	bottom: 30px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%)
}

@keyframes scroll {
	0% {
		transform: translateY(0);
	}
	30% {
		transform: translateY(60px);
	}
}
svg #wheel {
	animation: scroll ease 2s infinite;
}


@media screen and (max-width: 768px)
{
	.mouse-scroll
	{
		display: none;
	}
}