@charset "UTF-8";
@font-face{
    font-family: 'Marmelad';
    src: url('../fonts/marmelad-regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
/* common */
html,body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,hr,pre,code,form,input,button,textarea,p,blockquote,th,td,figure,figcaption,nav,section,menu,main{
	margin: 0;
	padding: 0;
}
table{
	border-spacing: 0;
}
img{
	border: none;
}
ul li, menu li{
	list-style: none;
}
h1,h2,h3,h4,h5,h6{
	font-size: inherit;
	font-weight: normal;
}
sup,sub{
	vertical-align: baseline;
}
*{
	outline: none !important;
	box-sizing: border-box;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
}
input,button,textarea,select,optgroup,option{
 	font-family: inherit;
	font-size: inherit;
	font-style: inherit;
	font-weight: inherit;
}
::-webkit-input-placeholder{
	opacity: 1;
	color: inherit;
	transition: all .4s ease;
}
::-moz-input-placeholder{
	opacity: 1;
	color: inherit;
	transition: all .4s ease;
}
:-moz-input-placeholder{
	opacity: 1;
	color: inherit;
	transition: all .4s ease;
}
:input-placeholder{
	opacity: 1;
	color: inherit;
	transition: all .4s ease;
}
.error::-webkit-input-placeholder{
	color: #f45803;
}
.error::-moz-input-placeholder{
	color: #f45803;
}
.error:-moz-input-placeholder{
	color: #f45803;
}
.error:input-placeholder{
	color: #f45803;
}
select:invalid{
	color: #acacac;
}
option{
	color: #555;
}
:focus::-webkit-input-placeholder{
	opacity: 0;
	text-indent: -100px;
}
:focus:-moz-placeholder{
	opacity: 0;
	text-indent: -100px;
}
:focus::-moz-placeholder{
	opacity: 0;
	text-indent: -100px;
}
:focus:input-placeholder{
	opacity: 0;
	text-indent: -100px;
}
input[type='checkbox'],input[type='submit'],input[type='reset'],input[type='radio'],input[type='image'],input[type='file'],button,label{
	cursor: pointer;
}
a{
	text-decoration: underline;
	outline: none;
	color: inherit;
	transition: all .4s ease;
}
a[href^='tel'],
a.noline{
	text-decoration: none;
}
@media only screen and (min-width: 321px){
	a:hover{
		text-decoration: none;
	}
}
body{
    font: normal 14px/1.72 'Marmelad', Ubuntu, sans-serif;
	color: #c9b8d0;
	background: #fff;
}
input[type='text'], input[type='password'], input[type='email'], input[type='tel'], input[type='number'], input[type='search'], input[type='url'], input[type='time'], textarea, select{
	display: block;
	width: 100%;
	height: 40px;
	margin: 0;
	padding: 10px 10px 11px;
	font-size: 14px;
	font-weight: normal;
	line-height: normal;
	color: #fff;
	text-align: left;
	text-indent: 0;
	border: 1px solid #fff;
	background: rgba(0,0,0,.1);
	border-radius: 3px;
	box-shadow: inset 0 0 0 1000px rgba(255,255,255,0) !important;
	transition: all .4s ease;
}
@media only screen and (min-width: 321px){
	input[type='text']:hover, input[type='password']:hover, input[type='email']:hover, input[type='tel']:hover, input[type='number']:hover, input[type='search']:hover, input[type='url']:hover, input[type='time']:hover, textarea:hover, select:hover{
		box-shadow: inset 0 0 0 1000px rgba(255,255,255,.05) !important;
	}
}
input[type='text']:focus, input[type='password']:focus, input[type='email']:focus, input[type='tel']:focus, input[type='number']:focus, input[type='search']:focus, input[type='url']:focus, input[type='time']:focus, textarea:focus, select:focus{
	box-shadow: inset 0 0 0 1000px rgba(255,255,255,.1) !important;
}
input.error,
textarea.error,
select.error{
	font-weight: bold !important;
	color: #f45803 !important;
	border-color: #f45803 !important;
}
select{
	cursor: pointer;
	line-height: normal;
	padding: 0 30px 0 6px;
	background: #fff url('../images/select.png') no-repeat right 10px center;
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;
	-o-appearance: none;
	appearance: none;
}
select::-ms-expand{
	display: none;
}
textarea{
	height: 118px;
	text-align: left;
	resize: none;
}
input[type='checkbox'],
input[type='radio']{
	display: none;
}
input[type='checkbox']+.input,
input[type='radio']+.input{
	display: inline-block;
	position: relative;
	width: 30px;
	height: 30px;
	margin: 0 15px 0 0;
	vertical-align: -9px;
	border: 2px solid #fff;
	border-radius: 100%;
}
input[type='checkbox']+.input:after,
input[type='radio']+.input:after{
	opacity: 0;
	position: absolute;
	left: 50%;
	top: 50%;
	width: 20px;
	height: 20px;
	margin: -10px 0 0 -10px;
	content: '';
	background: #fff;
	border-radius: 100%;
	transition: all .4s ease;
}
input[type='checkbox']:checked+.input:after,
input[type='radio']:checked+.input:after{
	opacity: 1;
}
.button{
	cursor: pointer;
	display: inline-block;
	width: auto;
	min-width: 200px;
	height: 46px;	   
	margin: 0 0 3px;
	padding: 14px 18px 15px;
	font-size: 14px;
	font-weight: normal;
	line-height: normal;
	color: #064a4e;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	text-shadow: 0 1px 0 #5af5fe;
	white-space: nowrap;
	border: 0 none;
	background: #3dd9e3;
	background: -webkit-linear-gradient(45deg, #32ced8 66%, #3dd9e3 66%);
	background: -moz-linear-gradient(45deg, #32ced8 66%, #3dd9e3 66%);
	background: linear-gradient(45deg, #32ced8 66%, #3dd9e3 66%);
	border-radius: 3px;
	box-shadow: 0 3px 0 #099ea7 !important;
	transition: all .4s ease;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.button.small{
	height: 64px;
	padding-top: 20px;
	padding-bottom: 25px;
	font-size: 16px;
}
.button.inline-flex{
	padding-top: 0;
	padding-bottom: 6px;
}
.button.light{
	padding: 26px 136px;
	height: 80px;
	border: 2px solid #cdcdcd;
	font-size: 20px;
	font-weight: bold;
	color: #8d8d8d;
	text-shadow: none;
	background: #fbfbfb;
	box-shadow: none !important;
}
.button:focus{
	-webkit-transform: scale(1.02);
	-ms-transform: scale(1.02);
	transform: scale(1.02);
}
@media only screen and (min-width: 321px){
	.button:hover{
		-webkit-transform: scale(1.05);
		-ms-transform: scale(1.05);
		transform: scale(1.05);
	}
}
.button:active{
	-webkit-transform: scale(.95);
	-ms-transform: scale(.95);
	transform: scale(.95);
}
.button.active{
	cursor: default;
}
[disabled],
.disabled{
	cursor: not-allowed !important;
	-webkit-filter: grayscale(1) !important;
	filter: grayscale(1) !important;
	-webkit-transform: none !important;
	-ms-transform: none !important;
	transform: none !important;
}
[disabled]:not(.button),
.disabled:not(.button){
	color: #aaa !important;
	border-color: #aaa !important;
	background: none !important;
}
.button.inline-table{
	padding-top: 0;
	padding-bottom: 0;
}
.button .img{
	height: 38px;
	padding-top: 2px;
	padding-right: 10px;
}
.button .img img{
	max-width: none;
	max-height: none;
}
.button .txt{
	text-align: left;
}
.nobr{
	white-space: nowrap;
}
.relative{
	position: relative;
}
.center{
	text-align: center;
}
.justify{
	text-align: justify;
}
.left{
	float: left;
}
.right{
	float: right;
}
.clear{
	display: block;
	clear: both;
}
.clearfix:before,
.clearfix:after{
	float: none !important;
	content: '';
	display: block;
	clear: both;
	height: 0;
	overflow: hidden;
}
.animate{
	transition: all .4s ease;
}
.cover,
.cover [class*='type-'],
.passive [class*='type-']{
	opacity: 0;
}
@media only screen and (min-width: 768px){ 
	.cover,
	.cover [class*='type-'],
	.passive [class*='type-']{
		-webkit-filter: blur(5px);
		filter: blur(5px);
	}
}
.wait-1{
	transition-delay: .2s;
}
.wait-2{
	transition-delay: .4s;
}
.wait-3{
	transition-delay: .6s;
}
.wait-4{
	transition-delay: .8s;
}
.wait-5{
	transition-delay: 1s;
}
.wait-6{
	transition-delay: 1.2s;
}
.wait-7{
	transition-delay: 1.4s;
}
.wait-8{
	transition-delay: 1.6s;
}
.wait-9{
	transition-delay: 1.8s;
}
.wait-10{
	transition-delay: 2s;
}
.wait-11{
	transition-delay: 2.2s;
}
.wait-12{
	transition-delay: 2.4s;
}
.wait-13{
	transition-delay: 2.6s;
}
.wait-14{
	transition-delay: 2.8s;
}
.wait-15{
	transition-delay: 3s;
}
.wait-16{
	transition-delay: 3.2s;
}
.wait-17{
	transition-delay: 3.4s;
}
.wait-18{
	transition-delay: 3.6s;
}
.wait-19{
	transition-delay: 3.8s;
}
.wait-20{
	transition-delay: 4s;
}
.wait-21{
	transition-delay: 4.2s;
}
.wait-22{
	transition-delay: 4.4s;
}
.wait-23{
	transition-delay: 4.6s;
}
.wait-24{
	transition-delay: 4.8s;
}
.wait-25{
	transition-delay: 5s;
}
.wait-26{
	transition-delay: 5.2s;
}
.wait-27{
	transition-delay: 5.4s;
}
.wait-28{
	transition-delay: 5.6s;
}
.wait-29{
	transition-delay: 5.8s;
}
.wait-30{
	transition-delay: 6s;
}
.wait-31{
	transition-delay: 6.2s;
}
.wait-32{
	transition-delay: 6.4s;
}
.wait-33{
	transition-delay: 6.6s;
}
.wait-34{
	transition-delay: 6.8s;
}
.wait-35{
	transition-delay: 7s;
}
.cover .type-top,
.passive .type-top{
	-webkit-transform: translateY(-100px);
	-ms-transform: translateY(-100px);
	transform: translateY(-100px);
}
.cover .type-left,
.passive .type-left{
	-webkit-transform: translateX(-100px);
	-ms-transform: translateX(-100px);
	transform: translateX(-100px);
}
.cover .type-right,
.passive .type-right{
	-webkit-transform: translateX(100px);
	-ms-transform: translateX(100px);
	transform: translateX(100px);
}
.cover .type-bottom,
.passive .type-bottom{
	-webkit-transform: translateY(100px);
	-ms-transform: translateY(100px);
	transform: translateY(100px);
}
.cover .type-zoom-in,
.passive .type-zoom-in{
	-webkit-transform: scale(0);
	-moz-transform: scale(0);
	transform: scale(0);
}
.cover .type-zoom-out,
.passive .type-zoom-out{
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	transform: scale(2);
}
.circle{
	border-radius: 100%;
}
.uppercase{
	text-transform: uppercase;
}
hr{
	height: 0;
	margin: 0;
	padding: 0;
	border: 0 none;
	border-top: 1px solid #bdbea8;
	border-bottom: 1px solid #fff;
	background: none;
}
.table{
	display: table;
	border-spacing: 0;
	width: 100%;
	margin-bottom: 0;
}
.table .table{
	background: none;
}
.inline-table{
	display: inline-table;
	border-spacing: 0;
}
.tr{
	display: table-row;
}
.td{
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.td.left{
	text-align: left;
}
.td.right{
	text-align: right;
}
.td.top{
	vertical-align: top;
}
.td.bottom{
	vertical-align: bottom;
}
.img{
	font-size: 0;
	line-height: 0;
}
.img img{
	max-width: 100%;
	max-height: 100%;
}
.inline-block{
	display: inline-block;
}
.noselect{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.flex{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-align:center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.inline-flex{
	display: -webkit-inline-flex;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-align:center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}
.flex.row,
.inline-flex.row{
	-webkit-flex-flow: row wrap;
	-ms-flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-flow: row wrap;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-align-content: flex-start;
	-ms-flex-align: start;
	align-content: flex-start;
}
.flex.row.around,
.inline-flex.row.around{
	-webkit-justify-content: space-around;
	justify-content: space-around;
}
/* off */

/* text */
.plaintext h1,
.plaintext h2,
.plaintext h3,
.title{
	margin-bottom: 30px;
	font-size: 34px;
	line-height: 1;
	text-transform: none;
}
.plaintext h1:before,
.plaintext h2:before,
.title:before,
.plaintext h1:after,
.plaintext h2:after,
.title:after{
	display: inline-block;
	width: 31px;
	height: 3px;
	content: '';
	vertical-align: 8px;
	background: rgba(255,255,255,.2);
	border-radius: 3px;
}
.plaintext h1:before,
.plaintext h2:before,
.title:before{
	margin-right: 16px;
}
.plaintext h1:after,
.plaintext h2:after,
.title:after{
	margin-left: 16px;
}
.plaintext h1,
h1.title{
	font-size: 48px;
}
.plaintext h3,
h3.title,
.title.small{
	font-size: 24px;
	margin-bottom: 20px;
}
.plaintext blockquote{
	padding: 10px 30px;
	font-size: 14px;
	line-height: 1.72;
	color: #c9b8d0;
	background: rgba(49,22,58,.5);
}
.plaintext p,
.plaintext > img,
.plaintext hr,
.plaintext blockquote{
	margin: 0 0 16px;
}
.plaintext img{
	max-width: 100%;
}
.plaintext img[style*='float:left'],
.plaintext img[style*='float: left']{
	margin: 0 20px 16px 0 !important;
}
.plaintext img[style*='float:right'],
.plaintext img[style*='float: right']{
	margin: 0 0 16px 20px !important;
}
.plaintext ol,
.plaintext ul{
	margin: 0 0 16px;
	padding: 0 17px;
}
.plaintext ol ol,
.plaintext ul ol,
.plaintext ul ol,
.plaintext ul ul{
	margin: 0;
}
.plaintext ol ol li{
	list-style: lower-alpha;
}
.plaintext ul li,
.plaintext ol ul li{
	list-style: disc;
}
.plaintext ul ul li{
	list-style: square;
}
.plaintext table{
	margin: 0 0 16px;
}
.plaintext table img,
.plaintext table p{
	margin: 0;
}
.plaintext sup,
.plaintext sub{
	font-size: .7em;
	line-height: 100%;
	vertical-align: 4px;
}
.plaintext sub{
	vertical-align: -2px;
}
.plaintext > *:nth-last-child(2){
	margin-bottom: 0;
}
/* off */
.white{
	color: #fff !important;
}
.orange{
	color: #efa400 !important;
}
.wrapper{
	overflow: hidden;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	position: relative;
	min-width: 1140px;
    min-height: 100vh;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-align-content: stretch;
	-ms-flex-align: stretch;
	align-content: stretch;
	background: #447ab8 url('../images/bg.jpg') no-repeat center top;
/*	background: url('../images/tmp.jpg') no-repeat center top;*/
}
header,
footer{
	-webkit-flex-shrink: 0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
}
.inside{
	width: 1140px;
	margin: 0 auto;
}
/* header */
header{
	z-index: 10;
}
header .inside,
.quest-data .tab-nav{
	height: 67px;
	padding-top: 17px;
	border-bottom: 1px solid #4a3250;
}
.nav li{
	margin: 9px;
	font-size: 14px;
	line-height: 1;
}
.nav .active a{
	color: #fff;
}
@media only screen and (min-width: 321px){
	.nav a:hover{
		color: #fff;
	}
}
.nav .active a{
	cursor: default;
}
.nav a:after,
.quest-data .tab-nav li:after{
	pointer-events: none;
	position: absolute;
	left: 50%;
	top: 100%;
	width: 0;
	height: 0;
	margin: 26px 0 0;
	content: '';
	border-bottom: 1px solid #32ced8;
	transition: all .4s ease;
}
.nav .active a:after,
.quest-data .tab-nav li.active:after{
	left: 0;
	width: 100%;
}
@media only screen and (min-width: 321px){
	.nav a:hover:after,
	.quest-data .tab-nav li:hover:after{
		left: 0;
		width: 100%;
	}
}
.phone{
	margin: -3px 0 0;
}
.phone .code{
	font-size: 12px;
	vertical-align: 6px;
}
.phone .num{
	font-size: 22px;
	color: #fff;
}
/* header off */

/* content */
main{
	margin-top: -1px;
	padding-top: 1px;
	-webkit-flex: 1 0 auto;
	-ms-flex: 1 0 auto;
	flex: 1 0 auto;
}
fieldset{
	margin: 0;
	padding: 0;
	border-width: 1px;
	border-color: #fff;
	border-radius: 0 0 3px 3px;
}
fieldset.plaintext{
	margin: 60px 68px 0;
	padding: 0 0 1px;
	border-radius: 3px 3px 0 0;
}
fieldset.plaintext > *:not(legend){
	padding-left: 20px;
	padding-right: 20px;
}
.facts.plaintext > *:not(legend){
	padding-left: 40px;
	padding-right: 40px;
}
legend{
	white-space: nowrap;
	text-align: center;
}
fieldset.plaintext legend{
	margin-bottom: 4px;
	padding: 0 20px;
	font-size: 40px;
	color: #32ced8;
}
fieldset.plaintext{
	font-size: 18px;
}
fieldset.plaintext small{
	display: block;
	font-size: 14px;
}
fieldset.plaintext .button{
	position: relative;
	top: 15px;
	margin-bottom: -9px;
}
fieldset.plaintext form table{
	width: 100%;
	margin: 0;
	border-spacing: 8px 0;
}
fieldset.plaintext form .after-send table{
	font-size: 24px;
	color: #32ced8;
}
fieldset.plaintext+.quests-list{
	margin: 158px 0 0;
}
.quests-list+fieldset.plaintext{
	top: -123px;
	height: 114px;
	margin-bottom: -35px;
}
.quests-list{
	z-index: 1;
}
.quests-list.small{
	margin-top: 80px;
}
.quests-list li.left{
	overflow: hidden;
	width: 568px;
	height: 310px;
	margin: 4px 0 0 4px;
	background: #000;
	border-radius: 3px;
}
.quests-list.small li.left{
	width: 360px;
	height: 196px;
	margin: 30px 0 0 30px;
}
.quests-list li.left:nth-child(1),
.quests-list li.left:nth-child(2),
.quests-list.small li.left:nth-child(3){
	margin-top: 0;
}
.quests-list:not(.small) li.left:nth-child(2n+1),
.quests-list.small li.left:nth-child(3n+1){
	margin-left: 0;
}
.quests-list .img{
	opacity: .6;
}
@media only screen and (min-width: 321px){
	.quests-list li.left:hover .img{
		opacity: 1;
	}
	.quests-list .img img{
		border-radius: 3px;
		-webkit-backface-visibility: hidden;
	}
}
.quests-list .txt{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	font-size: 40px;
	line-height: normal;
	text-decoration: none;
}
.quests-list.small .txt{
	font-size: 24px;
}
.status-bar{
	position: absolute;
	z-index: 2;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 40px;
	background: rgba(0,0,0,.5);
	border-radius: 0 0 3px 3px;
}
.quest-name .status-bar{
	left: auto;
	right: 13px;
	bottom: 50%;
	width: auto;
	margin-bottom: -20px;
	background: none;
}
.status-bar .table{
	height: 40px;
}
.quest-name .table{
	width: auto;
}
.status-bar .td{
	width: 1000px;
	color: #32ced8;
	text-align: left;
}
.status-bar .td:empty{
	display: none;
}
.quest-name .status-bar .td{
	width: 0;
}
.status-bar .td:first-child,
.status-bar .td:last-child{
	width: 0;
}
.status-bar .td:first-child{
	padding-left: 12px;
}
.status-bar .td:last-child{
	padding-right: 12px;
}
.status-bar .icon{
	width: 0;
	padding-right: 12px;
	font-size: 0;
}
.status-bar img{
	vertical-align: middle;
}
.rules-block .info{
	font-size: 16px;
	line-height: 1.5;
}
.rules-list{
	margin-top: 46px;
}
.rules-list li.left{
	width: 555px;
	height: 200px;
	margin: 25px 0 0 30px;
	padding: 20px;
	background: rgba(38,57,27,.5);
}
.rules-list li.left:nth-child(1),
.rules-list li.left:nth-child(2){
	margin-top: 0;
}
.rules-list li.left:nth-child(2n+1){
	margin-left: 0;
}
.rules-list .img,
.why-list .img .inline-flex{
	width: 100px;
	height: 100px;
	margin: 30px 0 0 7px;
	background: rgba(68,122,184,1);
	box-shadow: 0 0 0 7px rgba(68,122,184,.16);
}
.rules-list .img:before,
.rules-list .img:after{
	position: absolute;
	left: 50%;
	bottom: 100%;
	width: 1px;
	height: 17px;
	margin: 0 0 0 -.5px;
	content: '';
	background: rgba(68,122,184,1);
}
.rules-list .img:after{
	width: 100px;
	height: 1px;
	margin-bottom: 17px;
}
.rules-list .plaintext{
	margin-left: 128px;
}
.rules-list .plaintext *:nth-last-child(2){
	margin-bottom: 16px;
}
.rules-list .plaintext *:last-child{
	margin-bottom: 0;
}
.rules-list h3{
	margin: 0 0 18px 46px !important;
	color: #fff;
}
.reviews-block,
.video-block{
	margin: 74px 0 0;
}
.reviews-list{
	padding: 70px 0 0;
}
.reviews-list li.left{
	width: 264px;
	margin: 84px 0 0 28px;
}
.reviews-list li.left:nth-child(1),
.reviews-list li.left:nth-child(2),
.reviews-list li.left:nth-child(3),
.reviews-list li.left:nth-child(4){
	margin-top: 0;
}
.reviews-list li.left:nth-child(4n+1){
	margin-left: 0;
}
.reviews-list li.left fieldset{
	height: 330px;
	padding: 5px;
}
.reviews-list li.left legend{
	width: 190px;
	height: 0;
}
.reviews-list li.left legend img{
	top: -64px;
	max-height: none;
}
.reviewer{
	height: 130px;
	margin: 0 0 10px;
	padding: 65px 0 0;
	background: rgba(49,47,95,.6);
}
.reviewer .name{
	font-size: 16px;
	color: #00baff;
}
.reviewer .desc{
	font-size: 12px;
}
.reviews-list .txt{
	overflow: hidden;
	display: -webkit-box;
	height: 176px;
	padding: 0 10px;
	line-height: 1.6;
	text-align: left;
	-webkit-line-clamp: 8;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}
.video-list{
	padding: 6px 0 0;
}
.video-list li.left{
	width: 360px;
	margin: 30px 0 0 30px;
}
.video-list li.left:nth-child(1),
.video-list li.left:nth-child(2),
.video-list li.left:nth-child(3){
	margin-top: 0;
}
.video-list li.left:nth-child(3n+1){
	margin-left: 0;
}
.video-list li.left .img{
	overflow: hidden;
	height: 240px;
	background: #000;
}
.video-list li.left .video{
	width: 100%;
	height: 100%;
}
.video-list li.left .video{
	opacity: .6;
}
.video-list li.left.active .video{
	opacity: 1;
}
@media only screen and (min-width: 321px){
	.video-list li.left:hover .video{
		opacity: 1;
	}
}
.video-list li.left .img,
.video-list li.left .img .video{
	border-radius: 3px;
}
.video-list li.left .txt{
	overflow: hidden;
	display: -webkit-box;
	height: 34px;
	margin: 14px 0 0;
	line-height: 1.25;
	text-align: left;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	text-overflow: ellipsis;
}
.video-button{
	cursor: pointer;
	position: absolute;
	z-index: 5;
	left: 50%;
	top: 50%;
	width: 45px;
	height: 32px;
	margin: -16px 0 0 -22.5px;
	transition: transform .4s ease;
}
@media only screen and (min-width: 321px){
	.video-button:hover{
		-webkit-transform: scale(1.25);
		-ms-transform: scale(1.25);
		transform: scale(1.25);
	}
	.video-button:active{
		-webkit-transform: scale(1.15);
		-ms-transform: scale(1.15);
		transform: scale(1.15);
	}
}
.svg-shadow{
	opacity: .12;
	fill: #000;
}
.svg-button{
	fill: #fff;
}
.contacts-block{
	margin: 61px 0 0;
	font-size: 16px;
}
.contacts-block > .inside{
	z-index: 2;
}
.tab-nav{
	z-index: 2;
	padding: 17px 0 0 26px;
}
.quest-data .tab-nav{
	padding-left: 0;
}
.quest-data .dates.tab-nav{
	padding: 20px 0 10px;
	border: 0 none;
}
.tab-nav li{
	cursor: pointer;
	font-size: 16px;
	line-height: 1.72;
	vertical-align: middle;
}
.tab-nav li.active{
	cursor: default;
}
.tab-nav li:not(.active) .txt{
	color: #96b0de;
}
.switch{
	cursor: ew-resize;
	width: 74px;
	height: 40px;
	margin: 0 9px 0 -2px;
	background: #385f9e;
	border-radius: 40px;
	box-shadow: inset 0 3px 0 #2d518a;
}
.switch:before{
	position: absolute;
	left: 40px;
	top: 5px;
	width: 30px;
	height: 30px;
	content: '';
	background: #fff;
	border-radius: 100%;
	transition: all .4s ease;
}
.active+li .switch:before{
	left: 5px;
}
.tab-nav li img{
	margin: 0 -5px 0 5px;
	vertical-align: middle;
}
.tab-nav li:last-child img{
	margin: 0 16px 0 12px;
}
@media only screen and (min-width: 321px){
	.tab-nav li:not(.active):hover .txt{
		color: #fff;
		-webkit-transform: translateX(10px);
		-ms-transform: translateX(10px);
		transform: translateX(10px);
	}
	.tab-nav li:not(.active):last-child:hover .txt{
		-webkit-transform: translateX(-10px);
		-ms-transform: translateX(-10px);
		transform: translateX(-10px);
	}
	.tab-nav li:not(.active):hover img{
		-webkit-transform: scale(.8);
		-ms-transform: scale(.8);
		transform: scale(.8);
	}
}
.tab-nav li:not(.active):active img{
	-webkit-transform: scale(.6);
	-ms-transform: scale(.6);
	transform: scale(.6);
}
.tab{
	height: 180px;
	margin: 12px 68px 0;
	padding: 13px 31px;
	font-size: 14px;
	line-height: 1.6;
	color: #b2c9ee;
	text-align: left;
	background: #385f9e;
}
.tab:before{
	position: absolute;
	bottom: 100%;
	left: 343px;
	width: 0;
	height: 0;
	content: '';
	border-style: solid;
	border-width: 0 68px 93px 68px;
	border-color: transparent transparent #385f9e transparent;
}
.tab2:before{
	left: 534px;
}
.after-send{
	display: none;
}
.banner{
	margin: 54px 0 0;
}
.banner img{
	width: 100%;
}
.appeal,
.events-block,
.why-block,
.prices-block{
	margin: 66px 0 0;
	font-size: 16px;
}
.events-block{
	font-size: 24px;
	line-height: normal;
}
.events-block:after{
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 100vw;
	height: 142px;
	margin: 0 0 0 -50vw;
	content: '';
	background: rgba(38,27,57,.5);
}
.events-block .title{
	margin: 0;
}
.events-list{
	z-index: 1;
}
.events-list .td{
	width: 10000px;
}
.events-list li.td:first-child,
.events-list li.td:last-child{
	width: 0;
}
.events-list .img .td{
	height: 210px;
	vertical-align: bottom;
}
.events-list .img img{
	max-width: none;
}
.events-list .txt .td{
	height: 76px;
	padding: 10px 0;
	white-space: normal;
}
.why-list{
	padding: 60px 0 0;
}
.why-list li{
	width: 220px;
	margin: 76px 0 0 10px;
}
.why-list li:nth-child(1),
.why-list li:nth-child(2),
.why-list li:nth-child(3),
.why-list li:nth-child(4),
.why-list li:nth-child(5){
	margin-top: 0;
}
.why-list li:nth-child(5n+1){
	margin-left: 0;
}
.why-list fieldset{
	height: 164px;
}
.why-list .img{
	width: 170px;
	height: 0;
}
.why-list .img .inline-flex{
	top: -50px;
	margin: 0;
}
.why-list .txt{
	padding: 76px 10px 0;
	line-height: 1.375;
}
.prices-table table{
	width: 100%;
}
.prices-table th,
.prices-table td{
	padding: 12px 16px;
	font-weight: normal;
	text-align: left;
}
.prices-table th+th,
.prices-table td+td{
	padding-left: 90px;
}
.prices-table th{
	font-size: 12px;
	color: #b5b8dd;
	background: rgba(38,27,57,.5);
}
.prices-table td{
	border-bottom: 1px solid #736ec5;
}
.prices-table tbody tr:last-child td,
.prices-table tbody td[rowspan]{
	border-bottom: 0 none;
}
.prices-table td:first-child{
	border-right: 1px solid #736ec5;
}
.quest-info{
	padding: 20px;
	background: rgba(44,16,50,.6);
}
.quest-info .info-block{
	margin: 14px 0 0;
}
.quest-data .tab-nav li{
	height: 49px;
	margin: 0 25px;
	font-size: 34px;
	line-height: 49px;
	color: #c9b8d0;
}
.quest-data .dates.tab-nav li{
	opacity: .3;
	width: 10000px;
	font-size: 30px;
	line-height: normal;
	color: #c9b8d0 !important;
	text-align: left;
}
.quest-data .dates.tab-nav li:last-child{
	width: 0;
}
.quest-data .dates.tab-nav li .small{
	margin: 10px 0 0;
	font-size: 12px;
	color: #fff;
}
.quest-data .tab-nav li:after{
	margin: 0;
}
.quest-data .dates.tab-nav li:after{
	content: none;
}
.quest-data .tab-nav li.active{
	color: #fff;
}
.quest-data .dates.tab-nav li.active{
	opacity: 1;
}
@media only screen and (min-width: 321px){
	.quest-data .tab-nav li:hover{
		color: #fff;
	}
	.quest-data .dates.tab-nav li:hover{
		opacity: 1;
	}
}
.quest-data .tab{
	height: auto;
	margin: 0;
	padding: 0;
	font-size: inherit;
	line-height: inherit;
	color: inherit;
	text-align: inherit;
	background: none;
}
.quest-data .tabs{
	padding: 30px 0 0;
}
.quest-data .tab:before{
	content: none;
}
.quest-data .reviews-block{
	margin: 0;
}
.quest-data .reviews-block .title{
	display: none;
}
.schedule{
	width: 100%;
	width: calc(100% + 14px);
	margin: 0 calc(-7px);
	color: #fff;
	border-spacing: 7px 0;
}
.schedule.small{
	width: auto;
}
.schedule th,
.schedule td{
	text-align: left;
	font-weight: normal;
}
.schedule.small td{
	width: 72px;
}
.schedule td:not([colspan]):not(:first-child),
.schedule.small td:not([colspan]){
	cursor: pointer;
	padding: 7px 0;
	text-align: center;
	border: 1px solid #fff;
	background-color: transparent;
	border-radius: 3px;
	transition: all .4s ease;
}
.schedule td.disabled:not([colspan]):not(:first-child),
.schedule.small td:not([colspan]).disabled{
	cursor: auto !important;
	opacity: .3;
	color: #fff !important;
	border-color: #fff !important;
}
.schedule td:not(:empty):not(.disabled):not([colspan]):not(:first-child):hover,
.schedule.small td:not(:empty):not(.disabled):not([colspan]):hover{
	border-color: #32ced8;
	background-color: #32ced8;
}
.schedule td[colspan],
.schedule:not(.small) td:first-child{
	padding: 2px 0 23px;
}
.schedule td[colspan]{
	overflow: hidden;
	position: relative;
}
.schedule td[colspan]:after{
	position: absolute;
	content: '.  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .  .';
	font-size: 10px;
	margin: 1px 0 0 4px;
	white-space: nowrap;
}
.schedule tr:last-child td[colspan],
.schedule:not(.small) tr:last-child td:first-child{
	padding-bottom: 0;
}
.schedule th,
.schedule td[colspan]{
	width: 115px;
	color: #c9b8d0;
}
.schedule th{
	font-size: 34px;
	line-height: 40px;
}
s{
	display: inline-block;
	position: relative;
	text-decoration: none;
}
s:before{
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	margin-top: 1px;
	line-height: 0;
	content: '-';	
}
.facts{
	margin: 74px 0 0 !important;
	padding: 0 0 60px !important;
}
.facts legend{
	top: -3px;
	margin-bottom: 30px !important;
	font-size: 34px !important;
}
.facts-events{
	margin-top: -48px;
}
.facts-events li.td{
	width: 10000px !important;
}
.facts-events:after{
	left: 0;
	width: 100%;
	height: 152px;
	margin-left: 0;
	background: rgba(49,47,95,.6);
}
.facts-events .events-list .img .td{
	height: 114px;
}
.facts-events .events-list .txt .td{
	padding-bottom: 20px;
}
.blue-title{
	margin: 50px 0 0;
	font-size: 40px;
	line-height: 1;
	color: #32ced8;
}
.quest-name{
	margin: 0 0 10px;
	padding: 9px 25px 10px;
	background: rgba(44,16,50,.5);
}
.quest-name h2{
	font-size: 24px;
	margin-right: 200px;
}
table+.quest-name{
	margin-top: 23px;
}
.what-list{
	z-index: 1;
	margin: 30px 0 0;
}
.what-list li{
	padding: 20px;
	background: rgba(44,16,50,.5);
}
.what-list li:not(:first-child),
.questions-list li:not(:first-child){
	margin-top: 10px;
}
.what-list .img{
	width: 0;
	text-align: left;
}
.what-list .img img{
	position: relative;
	left: -40px;
	max-width: none;
	max-height: none;
}
.what-list .txt+.img img{
	left: 40px;
}
.what-list .txt{
	width: 10000px;
	text-align: left;
}
.what-list h2{
	margin: 0 0 16px;
	font-size: 24px;
	line-height: normal;
	color: #32ced8;
}
.quest-desc{
	margin: -20px 0 0;
	padding: 80px 0 60px;
	color: #c3d6ec;
	background: url('../images/bg-desc.jpg') no-repeat center center/cover;
}
.interest-block{
	margin: 50px 0 0;
}
.interest-block .info{
	font-size: 24px;
}
.questions-block{
	margin: 60px 0 0;
}
.questions-list li{
	padding: 20px 20px 0;
	border: 1px solid #fff;
	border-radius: 0 0 3px 3px;
	background: rgba(0,0,0,0);
	transition: background .4s ease;
}
.questions-list li.active{
	background: rgba(0,0,0,.1);
}
.question-button{
	left: auto !important;
	right: auto !important;
	top: auto !important;
	bottom: auto !important;
	margin: -4px 0 0 !important;
}
.question-button:before,
.question-button:after{
	position: absolute;
	left: 50%;
	top: 50%;
	width: 10px;
	height: 1px;
	margin: -.5px 0 0 -5px;
	content: '';
	box-shadow: inset 0 1px 0 #fff, inset 0 -1px 0 #fff;
	transition: all .4s ease;
}
.question-button:after{
	height: 7px;
	margin-top: -3.5px;
}
li.active .question-button:before{
	-webkit-transform: rotate(405deg);
	-ms-transform: rotate(405deg);
	transform: rotate(405deg);
}
li.active .question-button:after{
	height: 1px;
	margin-top: -.5px;
	-webkit-transform: rotate(-405deg);
	-ms-transform: rotate(-405deg);
	transform: rotate(-405deg);
}
.questions-list h3{
	margin: 0 0 20px;
	font-size: 18px;
}
.answer{
	color: #c3d6ec;
}
.answer *:nth-last-child(2){
	margin-bottom: 20px;
}
/* content off */

/* footer */
footer{
	padding: 33px 0;
	font-size: 12px;
	line-height: 1.75;
	color: #b2c9ee;
/*	background: #4479b7;*/
}
footer a{
	text-decoration: none;
}
.copy{
	margin-right: 100px;
}
.payment{
	margin: 10px 0 0;
}
.payment img{
	margin-left: 13px;
	vertical-align: middle;
}
.payment img:last-child{
	position: relative;
	top: -2px;
}
.socials{
	margin: 5px 0 0;
}
.socials .img{
	width: 36px;
	height: 36px;
	margin-left: 15px;
	vertical-align: middle;
	background: #3a6ca7;
}
.socials .img+.img{
	margin-left: 4px;
}
@media only screen and (min-width: 321px){
	.socials .img:hover img{
		-webkit-transform: rotate(360deg);
		-ms-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
.contacts-footer{
	margin-left: 94px;
}
/* footer off */

/* slider */
.slider-box{
	overflow: hidden;
}
.mainslider{
	margin-top: -67px;
}
.mainslider:before{
	pointer-events: none;
	position: absolute;
	z-index: 3;
	left: 0;
	top: 0;
	width: 100%;
	height: 41.51515151515152%;
	content: '';
	background: -webkit-linear-gradient(top, rgba(22,8,26,1) 0%,rgba(22,8,26,0) 100%);
	background: -moz-linear-gradient(top, rgba(22,8,26,1) 0%, rgba(22,8,26,0) 100%);
	background: linear-gradient(to bottom, rgba(22,8,26,1) 0%,rgba(22,8,26,0) 100%);
}
.caroufredsel_wrapper[style*='move']{
	cursor: url('../images/Move.cur'), auto !important;
}
#slider{
	width: 99999px;
}
.slider-box li{
	-webkit-backface-visibility: hidden;
}
#slider li{
	width: 100vw;
}
#slider img{
	width: 100%;
}
.slider-nav{
	cursor: pointer;
	position: absolute;
	z-index: 5;
	top: 50%;
	margin: -12px 0 0;
}
@media only screen and (min-width: 321px){
	.slider-nav{
		opacity: .3;
	}
	.slider-nav:hover{
		opacity: 1;
	}
}
.slider-nav.prev{
	left: 0;
}
.slider-nav.next{
	right: 0;
	-webkit-transform: scale(-1);
	-ms-transform: rotate(180deg);
	transform: scale(-1);
}
.slider-bottom{
	position: absolute;
	z-index: 5;
	left: 0;
	bottom: 0;
	width: 100%;
	background: rgba(37,12,43,.7);
}
.slider-bottom .inside{
	height: 100px;
}
.slider-bottom h1{
	margin-bottom: 10px;
	font-size: 40px;
	line-height: 1.5;
}
.info-block li{
	font-size: 14px;
	color: #32ced8;
}
.info-block li:not(:first-child){
	margin-left: 50px;
}
.info-block li,
.info-block li *{
	vertical-align: middle;
}
.info-block img{
	top: -2px;
}
.info-block img:first-child{
	margin-right: 10px;
}
.info-block .star:not(.active){
	opacity: .6;
}
.slider-pager{
	z-index: 5;
	height: 100px;
}
.slider-pager a{
	display: inline-block;
	margin: 0 3px;
	padding: 3px;
	width: 20px;
	height: 20px;
	border: 2px solid #32ced8;
	border-radius: 100%;
}
.slider-pager a span{
	overflow: hidden;
	display: block;
	width: 6px;
	height: 6px;
	margin: 2px;
	text-indent: 100%;
	background: transparent;
	border-radius: 100%;
	-webkit-transform: scale(3);
	-ms-transform: scale(3);
	transform: scale(3);
	transition: all .4s ease;
}
.slider-pager a.selected span{
	background: #32ced8;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
}
@media only screen and (min-width: 321px){
	.slider-pager a:hover span{
		background: #32ced8;
		-webkit-transform: scale(1);
		-ms-transform: scale(1);
		transform: scale(1);
	}
}
.slider-pager a.selected{
	cursor: default;
}
/* slider off */

/* gmap */
.gmap{
	margin: -17px 0 0;
}
.gmap,
#map-canvas{
	width: 100%;
	height: 426px;
}
.gmnoprint[style*='z-index: 1000001'],
[target*='_new'],
[style*='margin-left: 5px; margin-right: 5px;'],
[style*='position: relative; padding-right: 6px; padding-left: 6px;']{
	display: none !important;
}
/* gmap off */

/* fancybox */
.fancybox-lock{
	overflow: visible !important;
}
[class*='fancybox']{
	box-sizing: content-box;
}
.popup,
.popup .fancybox-skin{
	font: inherit;
	color: inherit;
	border: 0 none;
	background: none;
	border-radius: 0;
	box-shadow: none;
}
.form,
.popup .fancybox-close,
.question-button{
	width: 414px;
	padding: 25px;
	background: #622e7d !important;
	background-clip: padding-box !important;
	border-radius: 3px;
	border: 3px solid rgba(224,197,230,.16);
}
.popup .fancybox-close,
.question-button{
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-align-content: center;
	-ms-flex-align:center;
	align-content: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	left: 50%;
	top: auto;
	bottom: 100%;
	width: 44px;
	height: 44px;
	margin: 0 0 12px -22px;
	padding: 0;
	color: #fff;
	text-align: center;
	text-decoration: none;
	border-radius: 100%;
	transition: all .4s ease;
}
.question-button{
	cursor: pointer;
	width: 38px;
	height: 38px;
	padding: 0;
	border-width: 7px;
	border-color: rgba(68,122,184,.16);
	background-color: #447ab8 !important;
}
@media only screen and (min-width: 321px){
	.popup .fancybox-close:hover{
		-webkit-transform: scale(1.25);
		-ms-transform: scale(1.25);
		transform: scale(1.25);
	}
	.popup .fancybox-close:active{
		-webkit-transform: scale(1.15);
		-ms-transform: scale(1.15);
		transform: scale(1.15);
	}
}
.popup .fancybox-close:before{
	content: 'X';
}
.form h3{
	margin: 0 0 30px;
	font-size: 24px;
}
.form table{
	width: 100%;
}
form table tr:not(:first-child) td{
	padding-top: 10px;
}
.form table tr:not(:first-child):last-child td{
	padding: 40px 0 5px;
}
.form input:not([type='submit']){
	background: #582970;
}
/* fancybox off */














/* eof */