* {
	margin: 0;
	padding: 0;
	border: 0;
	outline: none
}


html {
	height: 100%;
	left: 0;
}

body {
	height: 100%;
	box-sizing: border-box;
	min-height: 100%;
	min-width: 100%;
	position: relative;
	z-index: 1;
	margin: 0;
	padding: 0;
	overflow: hidden;
	background-color: #111111;
}

body > .main-container {
	height: 100%;
	min-height: 100%;
	min-width: 100%;
	transition: all .6s ease-in-out;
	-webkit-transition: all .6s ease-in-out;
	-moz-transition: all .6s ease-in-out;
	-o-transition: all .6s ease-in-out;
	z-index: 0;
	overflow: hidden;
	position: initial!important;
	overflow-y: auto;

}

.bg-img{
	width: 100%;
	height: 100%;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
}
.bg-img img, .bg-img source{
	position: absolute;
	visibility: visible;
	z-index: -1;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: auto;
	height: auto;
	min-width: 100%;
	min-height: 100%;
}

@supports (object-fit: cover){
	.bg-img img, .bg-img source{
		min-height: 100%;
		min-width: 100%;
		object-fit: cover;
		max-width: 100%;
		max-height: 100%;
	}

}
