@import url(../../fonts.googleapis.com/css-family=PT+Sans-400,700&subset=cyrillic,latin.css);
@import url(../../fonts.googleapis.com/css-family=Open+Sans-400,800&subset=latin,cyrillic.css);

/*reset*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html, body {
	height: 100%;
}
body {
	line-height: 1.2;
	//overflow-x: hidden;
	font-family: 'PT Sans', sans-serif;
	/*font-family: 'Open Sans', sans-serif;*/
	/*Extrabold - 800*/
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input, textarea, button {
	outline: none;
}
button {
	cursor: pointer;
}
input, button, a {
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.left {
	float: left;
}
.right {
	float: right;
}
.row:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/*----------------------
		fonts
----------------------*/

/*----------------------
		general
----------------------*/
#wrap {
	max-width: 1920px;
	min-width: 1000px;
	height: 100%;
	margin: 0 auto;
}
.wrapper {
	max-width: 1920px;
	min-width: 1000px;
}
.inner {
	width: 1000px;
	margin: 0 auto;
}

/*----------------------
		menu
----------------------*/
.bt-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 0;
	z-index: 100;
	border-width: 0px;
	border-style: solid;
	border-color: #F2F2F2;
	background-color: rgba(0,0,0,0);
	-webkit-backface-visibility: hidden;
	-webkit-transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
	transition: border-width 0.3s, background-color 0.3s, height 0s 0.3s;
}
.bt-menu ul {
	left: -100% !important;
}
.bt-menu-open ul {
	left: 0 !important;
}
.bt-menu.bt-menu-open {
	height: 100%;
	z-index: 100;
	border-width: 0px 0px 50px 280px;
	background-color: rgba(0,0,0,0.3);
	-webkit-transition: border-width 0.3s, background-color 0.3s;
	transition: border-width 0.3s, background-color 0.3s;
}
.bt-overlay {
	position: absolute;
	width: 100%;
}
.bt-menu-open .bt-overlay {
	height: 100%;
}
.bt-menu-trigger {
	width: 130px;
	height: 38px;
	position: fixed;
	left: 0;
	top: 40px;
	background: #F2F2F2 url(../img/bg-menu.png) no-repeat top right;
	color: #808080;
	font-family: Arial,sans-serif;
	font-weight: bold;
	font-size: 21px;
	text-transform: uppercase;
	line-height: 38px;
	padding: 0 0 0 15px;
	text-decoration: none;
	z-index: 9999 !important;
}
.bt-menu ul {
	position: fixed;
	margin: 0;
	padding: 0;
	list-style: none;
}
.bt-menu ul:first-of-type {
	top: 100px;
	left: 0;
}

.bt-menu ul:nth-of-type(2) {
	right: 0;
	bottom: 0;
}

.bt-menu ul li,
.bt-menu ul li a {
	display: block;
}

.bt-menu ul:nth-of-type(2) li {
	float: left;
	font-size: 0px;
}

.bt-menu ul li {
	visibility: hidden;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
	transition: transform 0.3s, opacity 0.2s, visibility 0s 0.3s;
}

.bt-menu.bt-menu-open ul:first-of-type li,
.bt-menu.bt-menu-open ul:nth-of-type(2) li {
	visibility: visible;
	opacity: 1;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.3s 0.1s;
	transition: transform 0.3s, opacity 0.3s;
}

/* First menu */
.bt-menu ul:first-of-type li {
	width: 280px;
	height: 50px;
	line-height: 50px;
	-webkit-transform: translate3d(-100%,50%,0);
	transform: translate3d(-100%,50%,0);
}

.bt-menu.bt-menu-open ul:first-of-type li {
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
/* Second menu */
.bt-menu ul:nth-of-type(2) li {
	width: 60px;
	height: 50px;
	line-height: 50px;
	-webkit-transform: scale(0);
	transform: scale(0);
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li:first-child { 
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li:nth-child(2) { 
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li:nth-child(3) { 
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li:nth-child(4) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.bt-menu.bt-menu-open ul:nth-of-type(2) li {
	-webkit-transform: scale(1);
	transform: scale(1);
}

.bt-menu ul li a {
	display: block;
	outline: none;
	text-decoration: none;
}

.bt-menu ul:first-of-type li a {
	padding: 0 20px;
	box-shadow: inset 0 1px rgba(0,0,0,0.2);
	color: #808080;
	font-family: Arial,sans-serif;
	text-transform: uppercase;
	font-size: 16px;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.bt-menu ul:first-of-type li:last-child a {
	box-shadow: inset 0 1px rgba(0,0,0,0.2), inset 0 -1px rgba(0,0,0,0.2);
}

.bt-menu ul:nth-of-type(2) li a {
	color: transparent;
	text-align: center;
	font-size: 0px;
}

.bt-menu ul li a:before {
	color: #FFFF64;
	font-size: 24px;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
}

.bt-menu ul:first-of-type li a:hover,
.bt-menu ul:first-of-type li a:focus,
.bt-menu ul li a:hover:before,
.bt-menu ul li a:focus:before {
	color: #FFF800;
}
/*----------------------
	general-block
----------------------*/
.container {
	height: 100%;
	//overflow-x: hidden;
	border-top: 1px solid #000;
}
#wr-general-block {
	position: relative;
	overflow: hidden;
	max-height: 846px;
	min-height: 650px;
	border-top: 1px solid rgba(129,133,142, .6);
}
.container-video {
	position: relative;
	width: 100%;	
	top: 0;
	left: 50%;
	margin-left: -50%;
	min-height: 650px;
	max-height: 846px;
	z-index: 1;
}
.container-video video {
	display: block;
	margin: 0 auto;
	width: 100%;
}
.wrap-rastr {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: url(../img/video_raster2.png) no-repeat top center;	
}
.container-head-info {
	width: 1000px;
	position: absolute;
	top: 10%;
	left: 50%;
	margin-left: -500px;
	text-align: center;
	z-index: 4;
}
h2 {
	color: #fff;
	font-size: 16px;
	padding: 8px 0 0;
}
.btn-general {
	margin-top: 40px;
	padding: 15px 50px;
	border: 6px solid #FFFF64;
	border-radius: 90px;
	-webkit-border-radius: 90px;
	-moz-border-radius: 90px;
	background: rgba(255,255,255, .3);
	box-shadow: 0 5px 10px rgba(0,0,0, .4),
	inset 0 3px 14px rgba(0,0,0, .5);
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0, .4),
	inset 0 3px 14px rgba(0,0,0, .5);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .4),
	inset 0 3px 14px rgba(0,0,0, .5);
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	font-family: 'PT Sans', sans-serif;
	-webkit-text-shadow: 1px 1px 2px rgba(0,0,0, .5);
	-moz-text-shadow: 1px 1px 2px rgba(0,0,0, .5);
	text-shadow: 1px 1px 2px rgba(0,0,0, .5);
}
.btn-general:hover {
	background: rgba(255,255,100, 1);
	color: #282828;
	box-shadow: 0 0 0;
	text-shadow: 0 0 0;
}
.descr-general {
	font-size: 21px;
	color: #fff;
	font-family: 'georgia',serif;
	padding: 20px 0 0;
}
.contacts-head {
	position: absolute;
	width: 263px;
	top: 20px;
	right: 75px;
	z-index: 10;
	background: url(../img/phone.png) no-repeat top left;
	text-align: right;
	color: #fff;
}
.tel-head {
	font-size: 24px;
	font-family: Arial,sans-serif;
	font-weight: bold;
	padding: 10px 0 0;
	letter-spacing: 1px;
	text-shadow: 1px 2px 3px rgba(0,0,0, .4);
	-webkit-text-shadow: 1px 2px 3px rgba(0,0,0, .4);
	-moz-text-shadow: 1px 2px 3px rgba(0,0,0, .4);
}
.btn-tel span {
	font-size: 16px;
	font-family: Arial,sans-serif;
	font-weight: bold;
	padding: 5px 0 2px;
	cursor: pointer;
	text-shadow: 1px 2px 3px rgba(0,0,0, .4);
	-webkit-text-shadow: 1px 2px 3px rgba(0,0,0, .4);
	-moz-text-shadow: 1px 2px 3px rgba(0,0,0, .4);
	border-bottom: 2px dashed #FFFF64;
	display: inline-block;
}
.btn-tel span:hover {
	border-bottom: none;
}
.wave {
	position: relative;
	z-index: 80;
	margin-top: -70px;
	height: 106px;
	width: 100%;
	background: url(../img/wave1.png) no-repeat center bottom;
	background-size: cover;
}
/*----------------------
		partners
----------------------*/
#wr-partners {
	background: #fff;
}
#partners {
	text-align: center;
	padding: 0 0 50px;
}
/*----------------------
		timer
----------------------*/
#wr-timer-big {
	background: url(../img/landscape.jpg) no-repeat fixed center;
	background-size: cover;
	position: relative;
}
.cont-overflow {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, .7);
	z-index: 1;
}
#timer-big {
	position: relative;
	z-index: 2;
	padding: 60px 0 65px;
}
h3 {
	text-align: center;
	color: #fff;
	font-size: 36px;
	font-weight: 800;
	font-family: 'Open Sans', sans-serif;
}
#timer-big h3 {
	background: url(../img/title-border-2.png) no-repeat 45px center,
	url(../img/title-border-2.png) no-repeat 880px center;
}
#timer-big .row {
	width: 536px;
	margin: 0 auto;
	padding: 35px 0 0;
}
#timer-big .left {
	width: 154px;
	text-align: right;
	color: #fff;
	font-size: 16px;
	padding: 3px 0 0;
}
#timer-big .right {
	width: 366px;
}
#timer-wrap {
	color: #fff;
	width: 366px;
	height: 50px;
}
#clock {
	width: 366px;
	height: 50px;
}
#clock p {
	float: left;
	line-height: 0.9;
	font-size: 48px;
}
#day1, #hour1, #min1, #sec1 {
	width: 42px;
	height: 50px;
	padding: 0 15px 0 0;
}
#day0, #hour0, #min0, #sec0 {
	width: 42px;
	height: 50px;
	padding: 0 0 0 15px;
}
.razd {
	width: 10px;
	height: 50px;
	float: left;
	font-size: 48px;
	line-height: 0.9;
}
#stop {
	display: block;
	width: 354px;
	height: 81px;
	text-align: center;
	line-height: 71px;
	font-size: 1.4em;
	font-weight: bold;
	text-shadow: 1px 1px 2px rgba(0,0,0, .5);
}
.container-btn {
	text-align: center;
}
/*----------------------
		products
----------------------*/
#wr-products {
	background: url(../img/tours.jpg) no-repeat top center;
}
#products {
	padding: 75px 0 85px;
}
#products h3 {
	color: #0B194A;
	background: url(../img/title-border.png) no-repeat 175px center,
	url(../img/title-border.png) no-repeat 750px center;
}
#products .row {
	width: 910px;
	margin: 0 auto;
	padding: 40px 0 0;
}
.bl-prod {
	width: 250px;
	float: left;
	margin: 0 26px;
}
.inner-prod {
	position: relative;
}
.container-image-prod {
	overflow: hidden;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
}
.container-image-prod img {
	display: block;
}
.wrap-price {
	position: absolute;
	top: 175px;
	left: 0;
	width: 88px;
	height: 88px;
	background: #0B194A;
	color: #fff;
	text-align: center;
	font-size: 18px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-moz-transition: 0.3s;
	-ms-transition: 0.3s;
	-o-transition: 0.3s;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.wrap-price p {
	padding: 23px 0 0;
}
.name-prod {
	padding: 20px 0 0;
	font-size: 25px;
	font-weight: 800;
	font-family: 'Open Sans', sans-serif;
}
.btn-more {
	display: inline-block;
	color: #00C5C3;
	font-size: 16px;
	cursor: pointer;
	border-bottom: 2px dashed #00C5C3;
	margin-top: 5px;
}
.btn-more:hover {
	border-bottom: 1px solid #00C5C3;
}
.bl-prod:hover .wrap-price {
	background: #FFFF64;
	color: #000;
}
/*----------------------
		sail
----------------------*/
#wr-sail {
	background: url(../img/sun.png) no-repeat top center;
}
#sail {
	padding: 80px 0 75px;
}
#sail h3 {
	color: #0B194A;
	background: url(../img/title-border.png) no-repeat 100px center,
	url(../img/title-border.png) no-repeat 815px center;
}
.desctipt-sail {
	text-transform: uppercase;
	color: #00C5C3;
	font-size: 21px;
	text-align: center;
	padding: 10px 0 0;
}
.bl-sail {
	width: 145px;
	float: left;
	margin: 40px 27px 0;
}
.inner-sail {
	position: relative;
}
.container-img-sail {
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	overflow: hidden;
}
.container-img-sail img {
	display: block;
}
.sum-sail {
	position: absolute;
	top: 100px;
	left: 0;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	text-align: center;
	color: #fff;
	background: #0B194A;
}
.sum-sail p {
	font-size: 17px;
	font-weight: bold;
	line-height: 49px;
}
.text-sale {
	font-weight: bold;
	padding: 3px 0 0;
	font-size: 16px;
	font-weight: 800;
	font-family: 'Open Sans', sans-serif;
}
#sail .btn-general {
	background: #FFFF64;
	color: #000;
	text-shadow: 0 0 0;
	-webkit-text-shadow: 0 0 0;
	-moz-text-shadow: 0 0 0;
	box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .4);
}
#sail .btn-general:hover {
	background: #FFF800;
	border-color: #FFF800;
	box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .4);
}
/*----------------------
		reasons
----------------------*/
#wr-reasons {
	background: url(../img/5-reasons.jpg) no-repeat top center;
	background-size: cover;
}
#reasons {
	padding: 65px 0 80px;
}
#reasons h3 {
	background: url(../img/title-border-2.png) no-repeat 175px center,
	url(../img/title-border-2.png) no-repeat 750px center;
}
.container-reasons {
	width: 720px;
	margin: 65px auto 0;
}
.bl-reas {
	padding: 0 0 20px 80px;
	background: url(../img/star.png) no-repeat top left;
}
.title-reas {
	display: inline-block;
	background: #0B194A;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 5px 15px 5px 12px;
}
.text-reas {
	font-size: 16px;
	font-weight: bold;
	padding: 10px 0 0 10px;
}
/*----------------------
		reviews
----------------------*/
#wr-reviews {
	padding: 85px 0 0;
}
#wr-reviews h3 {
	color: #0B194A;
	background: url(../img/title-border.png) no-repeat 215px center,
	url(../img/title-border.png) no-repeat 700px center;
}
#photostack-1 figure a {
	cursor: pointer;
}
.descript-reviews {
	text-align: center;
	color: #00C5C3;
	font-size: 21px;
	font-family: 'Open Sans', sans-serif;
	padding: 10px 0 15px;
}
/* Button on photostack container */
.btn-act-rev {
	font-weight: bold;
	font-size: 24px;
	font-family: 'PT Sans', sans-serif;
	position: absolute;
	border: 3px solid #fff;
	text-align: center;
	white-space: nowrap;
	left: 40%;
	top: 45%;
	-webkit-transform: none !important;
	transform: none !important;
	padding: 10px 20px;
	color: #fff;
	cursor: pointer;
	z-index: 101;
	padding: 15px 50px;
	border: 6px solid #FFFF64;
	border-radius: 90px;
	-webkit-border-radius: 90px;
	-moz-border-radius: 90px;
	background: rgba(255,255,255, .3);
	box-shadow: 0 5px 10px rgba(0,0,0, .4),
	inset 0 3px 14px rgba(0,0,0, .5);
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0, .4),
	inset 0 3px 14px rgba(0,0,0, .5);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .4),
	inset 0 3px 14px rgba(0,0,0, .5);
	text-shadow: 1px 1px 1px rgba(0,0,0, .3);
	-webkit-text-shadow: 1px 1px 1px rgba(0,0,0, .3);
	-moz-text-shadow: 1px 1px 1px rgba(0,0,0, .3);
}
.btn-act-rev:hover {
	background: rgba(255,255,100, 1);
	color: #282828;
	box-shadow: 0 0 0;
	text-shadow: 0 0 0;
}
.hidden-btn-rev {
	display: none;
}
/*----------------------
		sertif
----------------------*/
#sertif {
	padding: 80px 0;
}
#sertif h3 {
	color: #0B194A;
	padding: 0 0 15px;
	background: url(../img/title-border.png) no-repeat 150px center,
	url(../img/title-border.png) no-repeat 770px center;
}
#sertif .row {
	width: 984px;
	margin: 0 auto;
}
.bl-sert {
	width: 136px;
	margin: 28px 30px 0;
	float: left;
}
.bl-sert a {
	display: block;
	position: relative;
}
.bl-honor img {
	display: block;
	max-width: 100%;
}
.hover-hidden {
	position: absolute;
	top: 0;
	opacity: 0;
	-moz-transition: 0.5s;
	-ms-transition: 0.5s;
	-o-transition: 0.5s;
	-webkit-transition: 0.5s;
	transition: 0.5s;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, .6) url(../img/lupa.png) no-repeat center
}
.bl-sert a:hover .hover-hidden {
	opacity: 1;
}
/*----------------------
		contacts
----------------------*/
#wr-contacts {
	background: url(../img/wave2.png) no-repeat bottom center;
	height: 150px;
	padding: 10px 0 0;
	position: relative;
	z-index: 5;
}
#wr-contacts h3 {
	color: #0B194A;
	background: url(../img/title-border.png) no-repeat 300px center,
	url(../img/title-border.png) no-repeat 620px center;
}
#map {
	position: relative;
	height: 620px;
	z-index: 1;
	margin-top: -60px;
}
.address {
	position: absolute;
	z-index: 2;
	display: inline-block;
	background: #0B194A;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 7px 15px;
	top: 110px;
	left: 15%;
}
.contact-bottom {
	background: #fff;
	width: 258px;
	position: absolute;
	z-index: 2;
	top: 400px;
	right: 15%;
	padding: 0 0 10px;
	text-align: right;
}
.contact-bottom p {
	color: #0B194A;
	font-size: 24px;
	font-weight: bold;
	padding: 10px 15px 0 0;
}
.contact-email {
	position: absolute;
	z-index: 2;
	display: inline-block;
	background: #0B194A;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	padding: 7px 15px 7px 40px;
	top: 500px;
	right: 15%;
}
/*----------------------
		footer
----------------------*/
footer {
	background: url(../img/footer.png) no-repeat top center;
	position: relative;
	z-index: 10;
	margin-top: -60px;
}
#footer {
	height: 633px;
}
#footer h3 {
	padding: 140px 0 0;
}
#footer .btn-general {
	background: #FFFF64;
	text-shadow: 0 0 0;
	-webkit-text-shadow: 0 0 0;
	-moz-text-shadow: 0 0 0;
	color: #000;
	margin-top: 50px;
	box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .4);
}
#footer .btn-general:hover {
	background: #FFF800;
	border-color: #FFF800;
	box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .4);
}
.tel-footer {
	text-align: center;
	color: #fff;
	font-weight: 800;
	font-size: 36px;
	margin-top: 80px;
	font-family: 'Open Sans', sans-serif;
}
.container-copyright {
	width: 600px;
	text-align: center;
	margin: 140px auto 0;
}
.container-copyright p {
	display: inline-block;
	padding: 0 10px;
	font-size: 16px;
	font-weight: bold;
}
.container-copyright a {
	color: #000;
	text-decoration: none;
}
.container-copyright p.center {
	border-left: 1px solid #000;
	border-right: 1px solid #000;
}
/*---------------------
	  arctic-modal
----------------------*/
.a-modal {
	position: relative;
	width: 800px;
	margin: 10% auto;
	background: #fff;
	padding: 25px 20px;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border: 3px solid #c0c0c0;
	color: #282828;
}
.b-modal {
	position: relative;
	width: 550px;
	height: 550px;
	text-align: center;
	margin: 5% auto;
	background: #fff;
	border-radius: 50%;
	-moz-border-radius: 50%;
	-webkit-border-radius: 50%;
	border: 6px solid #FFFF64;
}
.wr-hidden {
	overflow: hidden;
}
.a-modal img {
	float: left;
	padding: 0 20px 10px 0;
}
.title_form {
	font-size: 24px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 800;
	padding: 45px 120px 12px;
}
.suc_hide_zakaz label {
	position: relative;
}
.suc_hide_zakaz input {
	width: 315px;
	height: 44px;
	background: #F2F2F2;
	border: 2px solid #FFFF64;
	padding: 0 15px;
	font-size: 18px;
	color: #0B194A;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 7px;
}
.suc_hide_zakaz textarea {
	width: 315px;
	height: 120px;
	background: #F2F2F2;
	border: 2px solid #FFFF64;
	padding: 15px;
	font-size: 18px;
	color: #0B194A;
	font-family: 'Open Sans', sans-serif;
	margin-bottom: 7px;
	resize: none;
}
.button {
	display: inline-block;
	text-decoration: none;
	background: #FFFF64;
	text-shadow: 0 0 0;
	-webkit-text-shadow: 0 0 0;
	-moz-text-shadow: 0 0 0;
	color: #000;
	margin-top: 5px;
	box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .4);
	padding: 7px 40px;
	border: 6px solid #FFFF64;
	border-radius: 90px;
	-webkit-border-radius: 90px;
	-moz-border-radius: 90px;
	font-size: 24px;
	font-weight: bold;
	font-family: 'PT Sans', sans-serif;
}
.button:hover {
	background: #FFF800;
	border-color: #FFF800;
	box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-webkit-box-shadow: 0 5px 10px rgba(0,0,0, .4);
	-moz-box-shadow: 0 5px 10px rgba(0,0,0, .4);
}
.g-hidden { display: none; }
.g-line { zoom: 1; }
.g-line:after { content: "."; display: block; height: 0; clear: both; visibility: hidden; }
.arcticmodal-close {
	position: absolute;
	width: 20px;
	height: 20px;
	background: url(../img/cross.png) no-repeat top left;
	top: 10px;
	right: 10px;
	cursor: pointer;
}

.box .title_form , .wrap_form .title_form , .success {
			background: transparent;
			color: #000;
			font-size: 24px;
			line-height: 0.9;
			text-shadow: none;
		}
		
			.success p {
				margin: 0;
				padding: 200px 120px 0;
				line-height: 2;
			}
		
		.call_box input[type="text"] , .box input[type="text"] , .wrap_form input[type="text"] {
							width: 245px;
							height: 38px;
							border-radius: 5px;
							border: 1px solid #bfbfbf;
							font-family: Arial;
							font-size: 15px;
							color: #808080;
							margin: 0 0 10px 0;
							box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3) inset;
						}
						
						
						.box textarea , .wrap_form textarea {
							width: 245px;
							height: 78px;
							border-radius: 5px;
							border: 1px solid #bfbfbf;
							font-family: Arial;
							font-size: 15px;
							color: #808080;
							margin: 0 0 10px 0;
							box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.3) inset;
							resize: none;
						}
							
		.box .buttons a , .wrap_form .buttons a {
			background: none repeat scroll 0 0 #D80D0D;
			border: 0 none;
			border-radius: 0;
			box-shadow: none;
			color: #FFFFFF;
			display: inline-block;
			font-family: 'PT Sans',sans-serif;
			font-size: 16px;
			font-weight: bold;
			line-height: 1em;
			margin: 5px 0 0;
			padding: 15px 73px 16px;
			text-decoration: none;
			text-shadow: none;
			text-transform: uppercase;
			transition: none 0s ease 0s;
		}					
	.buttons {
		padding: 0 5px 20px;
	}
	.close {
		width: 15px;
		height: 14px;
		position: absolute;
		top: 10px;
		right: 10px;
		background: url(../img/popup_close.png) no-repeat;
		z-index: 999;
	}
	

.box label , .wrap_form label {display:block; position: relative; padding-bottom:0; overflow:visible; text-align:center; display: inline-block; vertical-align:top;}	
	
.error, .empty {
	background: rgba(0, 0, 0, 0.7);
    border-radius: 0 0 9px 9px;
    box-shadow: 0 3px 4px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow: 0 3px 4px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:    0 3px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
    font-family: Arial;
    font-size: 14px;
    font-weight: normal;
    //margin: 0 0 0 25px;
    padding: 4px 12px 7px;
    text-align: left;
    text-shadow: 0 0 1px rgba(0, 0, 0, 0.2);
    text-transform: none;
    width: 75%;
	position: absolute;
	z-index: 9;
	top: 30px;
	left: 50%;
	margin-left: -37.5%;
	}
/*MEDIA SCREEN*/

@media screen and (max-width: 1476px) {
	.container-video {
		width: 1476px;
		margin-left: -738px;
	}
}
@media screen and (max-device-width: 1024px) {
	.ss-effect {
		opacity: 1 !important;
	}
	#wr-timer-big {
		background: url(../img/landscape.jpg) no-repeat center;
		background-size: 100%;
		position: relative;
	}
}
@media screen and (max-device-width: 1200px) {
	.container-video {
		background: url(../img/bg-general.jpg) no-repeat top center;
		background-size: 110%;
	}
	.container-video video {
		display: none;
	}
}