html, body{
	margin: 0;
	padding: 0;
	width: 100%;
	height: 100%;
	font-size: 16px;
	color: #ffffff;
	line-height: 1.26em;
	background: #ffffff;
	min-width: 980px;
}
body{
	overflow-y: scroll !important;
}
html, body, A, input, select, textarea{
	font-family: 'Baloo Bhaina', Arial, Tahoma, Geneva, Kalimati, sans-serif;
}
A{
	text-decoration: none;
	color: #ffffff;
	transition: all 0.25s ease 0s;
	outline: none;
}
A:hover{
	text-decoration: underline;
}
img, object, iframe{ border: 0; vertical-align: top; }
header, nav, menu, main, aside, address, section, article, footer, figure, figcaption{ display: block; }
form, figure, menu{ margin: 0; padding: 0; }
input[type="text"], input[type="password"], input[type="email"], input[type="tel"], select, textarea{
	height: 40px;
	margin: 0;
	padding: 0 15px;
	font-size: 16px;
	color: #1d1915;
	border: 1px solid #f2f2f2;
	background: #f2f2f2;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	outline: none;
}
select{
	padding: 0 8px;
}
textarea{
	height: 160px;
	padding: 10px 15px;
	resize: vertical;
}
input[type="submit"], input[type="reset"], input[type="button"]{ border: 0; }
input[type="image"], input[type="button"], input[type="submit"], label{ cursor: pointer; }
table{ width: 100%; border-collapse: collapse; border-spacing: 0; border: 0; }
input[type="checkbox"], input[type="radio"]{ position: relative; top: 2px; *top: 0; margin: 0 5px 0 0; padding: 0; height: auto; }
@media not all and (-webkit-min-device-pixel-ratio){ input[type="checkbox"], input[type="radio"] { top: 0; } }
.clear, .hr{ clear: both; height: 0; font-size: 0; line-height: 0; overflow: hidden; }
.clearfix:before, .clearfix:after{ content: "."; display: block; height: 0; visibility: hidden; }
.clearfix:after{ clear: both; }
.clearfix{ zoom: 1; }
.flexible{ overflow: hidden; zoom: 1; }
.text_center{ text-align: center !important; }
.text_left{ text-align: left !important; }
.text_right{ text-align: right !important; }
.fl_left{ float: left; }
.fl_right{ float: right; }
.cur, .active, .active > a{ cursor: default; }
.niceCheck, .niceRadio{
	display: none;
}
label{
	position: relative;
}
label:before{
	position: absolute;
	content: "";
}
.niceCheck + label{
	padding: 0 0 0 36px;
}
.niceCheck + label:before{
	top: -1px;
	left: 0;
	width: 24px;
	height: 24px;
	background: url("../images/checkbox.html") left top no-repeat;
}
.niceRadio + label{
	padding: 0 0 0 26px;
}
.niceRadio + label:before{
	top: 0;
	left: 0;
	width: 21px;
	height: 21px;
	background: url("../images/radio.html") left top no-repeat;
}
.niceCheck:checked + label:before, .niceRadio:checked + label:before{
	background-position: left bottom !important;
}

/* ----- all ----- */
.all{
	height: 100%;
	min-height: 800px;
	background: url("../images/bg.jpg") center center no-repeat;
	background-size: cover !important;
	position: relative;
	z-index: 1;
}
.video_holder, .video{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
	z-index: 1;
}
.video_holder:before{
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	content: "";
	background: rgba(0,0,0,.5);
	z-index: 2;
}
.video_holder{
	overflow: hidden;
}

/* ----- header ----- */
.header{
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 20px 60px;
	overflow: hidden;
	z-index: 3;
}
.logo{
	float: left;
	width: 160px;
	height: 80px;
	margin: 20px 0 0 0;
	background: url("../images/logo_vikings.png") left top no-repeat;
}
.logo_best_web_game{
	float: right;
	width: 193px;
	height: 118px;
	background: url("../images/logo_best_web_game.png") left top no-repeat;
}

/* ----- content ----- */
.content{
	max-width: 1120px;
	margin: 0 auto;
	padding: 30px 20px 180px 20px;
	text-align: center;
	position: relative;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
}
.block h1{
	margin: 0 0 6px 0;
	font-size: 40px;
	color: #a6ebfe;
	line-height: 40px;
	font-weight: normal;
	text-transform: uppercase;
	text-shadow: 0 2px rgba(0,0,0,.28);
}
.block h2{
	margin: 0 0 60px 0;
	font-size: 32px;
	line-height: 32px;
	font-weight: normal;
	text-shadow: 0 2px rgba(0,0,0,.28);
}
.block_imgs{
	margin: 0 -10px;
}
.card{
	float: left;
	width: 360px;
	margin: 0 10px;
	border-radius: 8px;
	position: relative;
	transition: transform 0.25s ease;
	perspective: 500px;
	perspective-origin: 50% 50%;
	transform-style: preserve-3d;
}
.card:before{
	position: absolute;
	top: -43px;
	left: 50%;
	content: "";
	width: 38px;
	height: 26px;
	margin: 0 0 0 -19px;
	background: url("../images/arrow_bottom.png") left top no-repeat;
	-webkit-animation: scroll_anim .5s 1s alternate infinite;
	animation: scroll_anim .5s 1s alternate infinite;
	z-index: 3;
}
@keyframes scroll_anim{
	from { top: -33px; }
	to { top: -53px; }
}
@-webkit-keyframes scroll_anim{
	from { top: -33px; }
	to { top: -53px; }
}
.card:hover:before{
	opacity: 0;
}
.card:hover{
	transform: scale(1.1);
	box-shadow: none;
}
.card.hover--ending{
	transition: box-shadow 0.5s ease;
}
.highlight{
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	width: 100px;
	height: 100px;
	background: radial-gradient(60px at 50%, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0) 100%);
	transition: opacity 0.25s ease;
	opacity: 0;
	z-index: 3;
}
.card__link{
	display: block;
	width: 360px;
	height: 470px;
	border-radius: 8px;
	position: relative;
	transition: none;
	transform-origin: center center;
	transform-style: preserve-3d;
}
.card__image{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 8px;
	object-fit: cover;
}
.card__link .title{
	position: absolute;
	bottom: -38px;
	left: 30px;
	text-indent: -700em;
	white-space: nowrap;
	overflow: hidden;
	z-index: 3;
}
.card__link .title_1{
	width: 214px;
	height: 105px;
	background: url("../images/title_1.png") left top no-repeat;
}
.card__link .title_2{
	width: 214px;
	height: 105px;
	background: url("../images/title_2.png") left top no-repeat;
}
.card__link .title_3{
	width: 214px;
	height: 105px;
	background: url("../images/title_3.png") left top no-repeat;
}
.card:hover .title_1{
	background: url("../images/title_1_hover.png") left top no-repeat;
}
.card:hover .title_2{
	background: url("../images/title_2_hover.png") left top no-repeat;
}
.card:hover .title_3{
	background: url("../images/title_3_hover.png") left top no-repeat;
}

/* ----- preload_bg ----- */
.preload_bg{
	position: absolute;
	top: -1000em;
	left: -1000em;
	background-image: url("../images/title_1_hover.png"), url("../images/title_2_hover.png"), url("../images/title_3_hover.png");
}

@media screen and (max-width: 980px){
	.header{
		padding: 20px;
	}
}
@media screen and (max-height: 800px){
	.all{
		height: auto;
	}
	.content{
		top: 0;
		transform: translateY(0);
	}
}