/* INTRO.CSS */

.intro-ctn {
	position: relative;
	background-image: url(../images/layout/bg-intro-mobile.jpg);
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	overflow: hidden;
	transition: all 2s ease-in-out;
}

.intro {
	display: inline-block;
	width: 100%;
	color: #0e0502;
	padding: 125px 0 65px;
	margin-top: 120px;
	transition: all .65s ease-in-out;
}

.intro-ctn.active .overlay {
	opacity: 0;
	visibility: hidden;
}

.intro-ctn .overlay {
	position: absolute;
	display: none;
	min-width: 100%;
	min-height: 100%;
	background-image: url(../images/layout/start-frame.jpg);
	background-repeat: no-repeat;
	background-position: center;
	top: 50%;
	left: 50%;
	z-index: 2;
	transform: translate(-50%, -50%);
	transition: all .65s ease-in-out;
}

.intro-ctn #fullsize {
	position: absolute;
	display: none;
	min-width: 100%;
	min-height: 100%;
	top: 50%;
	left: 50%;
	z-index: 1;
	transform: translate(-50%, -50%);
}

.intro-ctn .row {
	position: relative;
	z-index: 3;
}

.intro h1 {
	position: relative;
	display: block;
	font-size: 60px;
	font-weight: 900;
	line-height: 40px;
	text-transform: uppercase;
	transition: all 2s ease-in-out;
}

.intro.active h1 {
	transform: translateX(-50%);
	opacity: 0;
	visibility: hidden;
}

.intro h1::before, .intro .btn.videostart::after {
	position: absolute;
	content: '';
	background-color: #0e0502;
	height: 2px;
}

.intro h1::before {
	width: 2000px;
	right: calc(100% + 97px);
	top: 0;
}

.intro .btn.videostart::after {
	width: 2000px;
	left: calc(100% + 195px);
	top: 130px;
}

.intro h1 span {
	display: block;
	font-size: 20px;
	font-weight: 300;
	line-height: 16px;
	padding-left: 5px;
	margin-top: 10px;
}

.intro .btn.videostart {
	position: relative;
	display: none;
	margin-top: 30px;
	transition: all 0.3s ease-in-out;
}

.nojs .intro .btn.videostart {
	display: none;
}

.intro.active .btn.videostart {
	transform: translateX(50%);
	opacity: 0;
	visibility: hidden;
}

@media only screen and (min-width: 752px) {

	.intro {
		margin-top: 118px;
		padding-left: 35px;
	}

}

@media only screen and (min-width: 992px) {

	.intro-ctn #fullsize, .intro-ctn .overlay {
		display: block;
	}

	.intro-ctn {
		background-image: none;
	}

	.intro {
		padding-left: 235px;
	}

	.intro h1 {
		font-size: 85px;
		line-height: 51px;
	}

	.intro h1 span {
		margin-top: 16px;
	}

	.intro .btn.videostart {
		display: table;
	}

	.intro .btn.videostart:hover {
		color: #0e0502;
		background-color: #956d5a;
	}

}

@media only screen and (min-width: 1200px) {

	.intro-ctn {
		background-position: center;
	}

	.intro {
		padding: 252px 0 129px 145px;
	}

	.intro h1 {
		font-size: 100px;
		line-height: 62px;
		float: left;
	}

	.intro h1 span {
		margin-top: 18px;
	}

	.intro .btn.videostart {
		color: #956d5a;
		border: 2px solid #956d5a;
		margin-left: 280px;
		margin-top: 8px;
		float: left;
	}

}

/* END OF INTRO.CSS */