.IntroVideo
{
	width: 100%;
	height: fit-content;
	overflow: hidden;
	border-radius: 15px;
	margin: 0 0 40px 0;
	position: relative;
}

.IntroVideo > .SignUp
{
	position: absolute;
	width: 120px;
	bottom: 50px;
	right: 50px;
	border-radius: 30px;
	padding: 30px;
	text-align: center;
	overflow: hidden;
	z-index: 3;
	color: white;
}

.IntroVideo > .SignUp > a
{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	line-height: 60px;
	color: white;
	font-weight: bold;
	background: #078FDA;
	opacity: 0.8;
	transition: opacity 0.2s;
}
.IntroVideo > .SignUp > a:hover
{
	opacity: 1;
}
.IntroVideo > .SignUp > a:after
{
	content: " ";
	position: absolute;
	pointer-events: none;
	width: calc(100% - 4px);
	height: calc(100% - 4px);	
	top: 2px;
	left: 2px;
	border-radius: 60px;
	background: linear-gradient(0deg, #4DBBF888, transparent, #4DBBF844);
}

h2.Center
{
	text-align: center;
}

.IntroVideo > video
{
	width: 100%;
	height: auto;
	display: block;
}

@media (max-width: 1200px)
{
	.IntroVideo
	{
		width: 100%;
		height: fit-content;
		overflow: hidden;
		border-radius: 15px;
		margin: 0 0 40px 0;
	}
}

@media (max-width: 1024px)
{
	.IntroVideo
	{
		display: none;
	}
	.IntroVideo + .AfterVideo
	{
		display: none;
	}
}

.Scene
{
    width: 100%;
    height: 480px;
    position: relative;
    opacity: 0;
    transition: opacity 0.5s;
    overflow: hidden;
    border-radius: 15px;
}

.Scene > img
{
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    height: 1px;
    width: 1px;
}

.Scene.Loaded
{
    opacity: 1;
}

.Scene .Rect
{
    position: absolute;
    background-color: red;
    transition: height 1s;
    top: 0;
    overflow: hidden;
}

.Scene .Rect .ImageClip
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: top center;
    background-size: 512px;
    mix-blend-mode: hard-light;
    transition: background-size 5.5s;
    opacity: 0.3;
    filter: brightness(1.5);
}

.Scene .Rect h2
{
    letter-spacing: 2px;
    position: absolute;
    top: 480px;
    left: 0;
    width: 100%;
    height: 0px;
    overflow: hidden;
    line-height: 40px;
    text-align: center;
    background-color: rgba(0,0,0,0.4);
    color: white;
    text-transform: uppercase;
    transition: top,height 0.5s,0.5s;
}

.Scene .Rect.Mark h2
{
    top: 440px;
    height: 40px;
}

.Scene .Rect.Initialized .ImageClip
{
    background-size: 480px;
}

.Scene .Rect
{
    background-color: #058ED9;
}

.Scene .Rect + .Rect
{
    background-color: #20374D;
}

.Scene .Rect + .Rect + .Rect
{
    background-color: #d7c2ad;
}

.Scene .Rect + .Rect + .Rect + .Rect
{
    background-color: #FF82A9;
}

@media (max-width: 1024px)
{
    html .Scene
    {
        height: calc(50vh);
    }
    
    html .Scene .Rect h2
    {
        top: calc(25vh);
        font-size: 14px;
    }
    
    html .Scene .Rect.Mark h2
    {
        top: calc(25vh - 40px);
    }
    
    html .Scene .Rect .ImageClip
    {
        height: calc(25vh + 20px);
    }
    
    html .Scene .Rect.Initialized .ImageClip
    {
        height: calc(25vh);
    }
    
    HTML .Scene .Rect.Initialized .ImageClip
    {
        background-size: 300px;
    }
    
}
