* {
	padding: 0;
	margin: 0;
}

p {
	cursor: default;
}

html {
	overflow: hidden;
	height: 100%;
}

body {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	height: 100%;
}

.container3d {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 1;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}

.container3d_opacity {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
}

.wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	    -ms-flex-direction: row;
	        flex-direction: row;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	overflow: hidden;
}

.start {
	z-index: 4;
	cursor: default;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	width: 100%;
	height: 100%;
	-webkit-transition: width 1s;
	-o-transition: width 1s;
	transition: width 1s;
	position: relative;
}

.scene-name {
	display: flex;
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translate(-50%, 0);
	width: auto;
	white-space: nowrap;
	zoom: 50%;
	height: 50px;
	border: 2px solid red;
	justify-content: center;
	align-items: center;
	padding: 0 20px;
	background: black;
	border-radius: 10px;
}

.scene-name p {
	color: white;
	font-family: Arial;
	font-size: 26px;
	text-shadow: 2px 1px 1px black;
}

.start-progress {
	background: rgba(255, 255, 255, 1.0);
	height: 100%;
	position: absolute;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0;
	bottom: 1px;
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	-webkit-transition: background 1s;
	-o-transition: background 1s;
	transition: background 1s;
	width: 100%;
}

.start-progress_p {
	bottom: 50%;
	position: absolute;
	opacity: 0;
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	-webkit-animation: animOpacity 2s ease-in-out infinite;
	        animation: animOpacity 2s ease-in-out infinite;
}

@-webkit-keyframes animOpacity {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}

}

@keyframes animOpacity {
	0% {
		opacity: 1;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}

}

.start-progress_p p {
	cursor: default;
	text-shadow: 10px 10px 10px black;
	color: white;
	font-family: Arial;
	font-size: 60px;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

@media (max-width: 1441px) {
	.start-progress_p p {
		font-size: 60px;
	}
}

@media (max-width: 768px) {
	.start-progress_p p {
		font-size: 50px;
	}
}

@media (max-width: 425px) {
	.start-progress_p p {
		font-size: 35px;
	}
}

@media (max-width: 320px) {
	.start-progress_p p {
		font-size: 25px;
	}
}

.start-hover:hover .start-p1 p{
	text-shadow: 1px 1px 10px black;
}

.start-background {
	position: relative;
	width: 100%;
	height: 100%;
}

.start-background div {
	width: 100%;
	height: 100%;
	background: white;
	opacity: 1;
	-webkit-transition: opacity 1s;
	-o-transition: opacity 1s;
	transition: opacity 1s;
	z-index: 0;
}

.start-background img {
	z-index: -1;
	position: absolute;
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	   object-fit: cover;
	top: 0;
	left: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.loading-spinner {
	display: none;
	position: absolute;
	bottom: 10%;
	left: calc(50% - 25px);
	width: 50px;
	height: 50px;
	z-index: 1;
	-webkit-animation: loadingSpinner 1s normal infinite;
	        animation: loadingSpinner 1s normal infinite;
}

.loading-spinner._active {
	display: block;
}

#cv {
	height: 100%;
	width: 100%;
}

@-webkit-keyframes loadingSpinner {
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}

@keyframes loadingSpinner {
	to {
		-webkit-transform: rotate(360deg);
		        transform: rotate(360deg);
	}
}



@font-face {
	font-family: Arial;
	src: url(fonts/Acre-Regular.eot);
	src: local('☺'),
		url(fonts/Acre-Regular.woff) format('woff'),
		url(fonts/Acre-Regular.ttf) format('truetype'),
		url(fonts/Acre-Regular.svg) format('svg');
	font-weight: normal;
	font-style: normal;
}