@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
  }

  100% {
    -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
  }
}

@-webkit-keyframes slideUp {
  0%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.5, 1.000);
            transition-timing-function: cubic-bezier(0.5, 1.000);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes slideUp {
  0%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.5, 1.000);
            transition-timing-function: cubic-bezier(0.5, 1.000);
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100px, 0);
            transform: translate3d(0, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes bounceColor {
  0%   { color: #666;}
  50%   { color: #e30613;}
  100% { color: #666;}
}
@keyframes bounceColor {
  0%   { color: #666;}
  50%   { color: #e30613;}
  100% { color: #666;}
}

@-webkit-keyframes bounceZoom {
  0%   {transform: scale(1,1);}
  50%   { transform: scale(1.1,1.1);}
  100% {transform: scale(1,1);}
}
@keyframes bounceZoom {
  0%   {transform: scale(1,1);}
  50%   { transform: scale(1.1,1.1);}
  100% {transform: scale(1,1);}
}


html {
	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
}
body {
	margin:0;
	font:14px/1.2 'Lora', "Times New Roman", Times, serif;
	background:#f5f5f5 url(../images/bg-page.png) no-repeat 50% 130px;
	min-width:320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: none;
	color:#524c48;
	background-attachment: fixed;
}
body > * {
	opacity: 0;
	-webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	transition: all 0.2s linear;
}
body.loaded > * {
	opacity: 1;
}
a {
	color:#f9ae03;
	text-decoration:none;
}
a:hover {
	text-decoration:none;
	color:#e30613;
}
img {border:0;}
form,
fieldset {
	margin:0;
	padding:0;
	border-style:none;
}
input,
textarea,
select {
	vertical-align:middle;
	color:#000;
}
input [type="email"], input [type="tel"], input[type="search"], input[type="text"], input[type="password"], input[type="file"], input[type="submit"], textarea{
	-webkit-appearance:none;
	-webkit-border-radius:0;
	border-radius:0;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
.visible {
  -webkit-animation-name: slideUp;
          animation-name: slideUp;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}
#wrapper {
	position: relative;
	overflow: hidden;
}
#header {
	background: #f0f0f0;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2YwZjBmMCIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNiYmJiYmIiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #f0f0f0 0%, #bbbbbb 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#f0f0f0), color-stop(100%,#bbbbbb));
	background: -webkit-linear-gradient(top,  #f0f0f0 0%,#bbbbbb 100%);
	background: -o-linear-gradient(top,  #f0f0f0 0%,#bbbbbb 100%);
	background: -ms-linear-gradient(top,  #f0f0f0 0%,#bbbbbb 100%);
	background: linear-gradient(to bottom,  #f0f0f0 0%,#bbbbbb 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f0f0f0', endColorstr='#bbbbbb',GradientType=0 );
	box-shadow:0 0 10px rgba(0, 0, 0, 0.8);
	-webkit-box-shadow:0 0 10px rgba(0, 0, 0, 0.8);
	-moz-box-shadow:0 0 10px rgba(0, 0, 0, 0.8);
	padding:0;
	margin:0 0 50px;
	-webkit-transform: translate3d(0, -110%, 0);
            transform: translate3d(0, -110%, 0);
	width: 100%;
	-webkit-transition: all 0.5s linear;
	-moz-transition: all 0.5s linear;
	-o-transition: all 0.5s linear;
	transition: all 0.5s linear;
}
.loaded #header {
	margin:0 0 50px;
	-webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}
#header .holder {
	opacity: 0;
	-webkit-transition: all 0.3s linear 0.5s;
	-moz-transition: all 0.3s linear 0.5s;
	-o-transition: all 0.3s linear 0.5s;
	transition: all 0.3s linear 0.5s;
}
.loaded #header .holder {
	opacity: 1;
	-moz-perspective:2500px;
	-webkit-perspective:2500px;
	-o-perspective:2500px;
	-ms-perspective:2500px;
	perspective:2500px;
	position: relative;
}
.holder {
	margin:0 auto;
	max-width:1024px;
}
.holder:after {
	content:"";
	display:block;
	clear:both;
}
.loaded .logo-ru,
.loaded .logo-ua,
.loaded .logo-eu {
	backface-visibility: visible !important;
	opacity: 1;
	transform: rotate3d(0, 1, 0, 0);
}
.logo-eu:hover,
.logo-ua:hover,
.logo-ru:hover {
	-webkit-animation-name: bounceZoom;
		animation-name: bounceZoom;
	-webkit-animation-duration: 0.5s;
		animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
}
.loaded #about {
	opacity: 1;
	transform: translate(0, 0);
}
#about {
	-webkit-transition: all 0.6s ease-out 0.6s;
	-moz-transition: all 0.6s ease-out 0.6s;
	-o-transition: all 0.6s ease-out 0.6s;
	transition: all 0.6s ease-out 0.6s;
	opacity: 0;
	transform: translate(0, 130px);
}
.logo-ua {
	-webkit-transition: all 0.6s ease-out 0.6s;
	-moz-transition: all 0.6s ease-out 0.6s;
	-o-transition: all 0.6s ease-out 0.6s;
	transition: all 0.6s ease-out 0.6s;
	transform: rotate3d(0, 1, 0, 90deg);
	float:left;
	width:170px;
	height:117px;
	text-indent:-9999px;
	overflow:hidden;
	padding:10px;
	box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	-moz-box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	background:#f5f5f5;
	border-radius:0 0 5px 5px; 
	-moz-border-radius:0 0 5px 5px;
	-webkit-border-radius:0 0 5px 5px;
	margin:0 10px -50px 0;
	border:1px solid #999;
	border-width:0 1px 1px 1px;
	opacity: 0;
}
.logo-ua a {
	display:block;
	height:100%;
	background: url(../images/logo-ua.png) no-repeat;
	background-size:cover;
}
.logo-ru {
	-webkit-transition: all 0.6s ease-out 0.6s;
	-moz-transition: all 0.6s ease-out 0.6s;
	-o-transition: all 0.6s ease-out 0.6s;
	transition: all 0.6s ease-out 0.6s;
	transform: rotate3d(0, 1, 0, 90deg);
	float:left;
	width:170px;
	height:119px;
	text-indent:-9999px;
	overflow:hidden;
	padding:9px 10px;
	box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	-moz-box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	background:#f5f5f5;
	border-radius:0 0 5px 5px; 
	-moz-border-radius:0 0 5px 5px;
	-webkit-border-radius:0 0 5px 5px;
	margin:0 10px -50px 0;
	border:1px solid #999;
	border-width:0 1px 1px 1px;
	opacity: 0;
}
.logo-ru a {
	display:block;
	height:100%;
	background: url(../images/logo-ru.png) no-repeat;
	background-size:cover;
}
.logo-eu {
	-webkit-transition: all 0.6s ease-out 0.6s;
	-moz-transition: all 0.6s ease-out 0.6s;
	-o-transition: all 0.6s ease-out 0.6s;
	transition: all 0.6s ease-out 0.6s;
	transform: rotate3d(0, 1, 0, -90deg);
	float:right;
	width:170px;
	height:98px;
	text-indent:-9999px;
	overflow:hidden;
	padding:18px 10px 19px 10px;
	box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	-webkit-box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	-moz-box-shadow:-2px -2px 6px rgba(0, 0, 0, 0.5) inset;
	background:#f5f5f5;
	border-radius:0 0 5px 5px; 
	-moz-border-radius:0 0 5px 5px;
	-webkit-border-radius:0 0 5px 5px;
	margin:0 0 -50px 10px;
	border:1px solid #999;
	border-width:0 1px 1px 1px;
	opacity: 0;
}
.logo-eu a {
	display:block;
	height:100%;
	background: url(../images/logo-eu.png) no-repeat;
	background-size:cover;
}
.nav {
	overflow:hidden;
	font-size:20px;
}
.nav ul {
	list-style:none;
	margin:0;
	padding:12px 0 0;
	text-align:center;
}
.nav ul.languages {
	padding: 7px 0 0;
}
.nav ul.languages a {
	display: block;
	text-indent: -9999px;
	overflow: hidden;
	width: 30px;
	height: 23px;
	border-radius: 1px;
	background: url(../images/sprite.png) no-repeat 150px 150px;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	box-shadow:0 0 2px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:0 0 2px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:0 0 2px rgba(0, 0, 0, 0.5);
}
.nav ul.languages li {
	padding:0 10px;
	overflow: visible;
}
.nav ul.languages li.current {
	display: none;
}
.nav ul.languages li.current a {
	box-shadow:0 0 2px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:0 0 2px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:0 0 2px rgba(0, 0, 0, 0.5);
}
.nav ul.languages .ukr a {
	background-position: -1px -30px;
}
.nav ul.languages .eng a {
	background-position: -1px -1px;
}
.nav ul.languages a:hover {
	opacity: 0.7;
}
.nav ul.languages .rus a {
	background-position: -1px -60px;
}
.nav ul li {
	display:inline-block;
	vertical-align:top;
	padding:0 5px;
	overflow:hidden;
}
.nav ul a {
	display:block;
	color:#666;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}
.nav ul .active a,
.nav ul a:hover {
	color:#e30613;
	text-decoration:none;
}
.section {
	font-size:18px;
	line-height:34px;
	padding:0 0 50px;
}
.section.alt {
	line-height:28px;
}
.section .frame:after {
	clear: both;
	content: '';
	display: block;
}
.section .frame > img {
	width: 37%;
	vertical-align: top;
	height: auto;
	border: 10px solid #fff;
	box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
}
.section .visible .frame > img {
	-webkit-animation-name: pulse;
    		animation-name: pulse;
	-webkit-animation-duration: 1.2s;
    		animation-duration: 1.2s;
    -webkit-animation-delay: 1.5s;
    		animation-delay: 1.5s;
    -webkit-animation-fill-mode: both;
  			animation-fill-mode: both;
}
.alignleft {
	float: left;
	margin: 5px 2% 10px 0;
}
.alignright {
	float: right;
	margin: 5px 0 10px 2%;
}
.section h2 {
	margin:0 0 25px;
	font-size:35px;
	line-height:40px;
	text-shadow: 1px 1px 2px #000;
	color:#e30613;
	font-weight:normal;
	text-align:center;
	min-height: 40px;
}
.section h3 {
	color:#c60;
	font-size:22px;
	line-height:34px;
	font-style:italic;
	text-shadow: 1px 1px 1px #000;
	margin:0;
	padding:20px 0 0;
}
.section h4 {
	margin:0;
	font-size:16px;
	font-weight:normal;
	font-style:italic;
	line-height:24px;
}
.section p {
	margin:0 0 15px;
	text-align:justify;
}
.section .list {
	list-style:none;
	margin:0;
	padding:0 0 0 15px;
	text-align:justify;
}
.section .list li {
	padding:0 0 0 15px;
	position:relative;
	line-height:28px;
}
.section .list li:after {
	content:'';
	width:6px;
	height:6px;
	background:#e30613;
	position:absolute;
	top:11px;
	left:1px;
	border-radius:4px; 
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	box-shadow:1px 1px 1px #000; 
	-webkit-box-shadow:1px 1px 1px #000;
	-moz-box-shadow:1px 1px 1px #000;
}
.visual-area {
	text-align:center;
	padding:30px 0 80px;
}
.loaded .visual-area .gallery {
	transform: scale(1,1);
	opacity: 1;
}
.visual-area .gallery {
	display:inline-block;
	vertical-align:top;
	border:10px solid #fff;
	box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	transform: scale(0.1,0.1);
	opacity: 0;
	-webkit-transition: all 0.4s ease-out 0.8s;
	-moz-transition: all 0.4s ease-out 0.8s;
	-o-transition: all 0.4s ease-out 0.8s;
	transition: all 0.4s ease-out 0.8s;
}
}
.news-items {
	text-align:center;
}
.section .news-items h4 a,
.section .news-items h4 {
	color:#000;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	text-align:left;
}
.section .news-items h4 a:hover {
	text-decoration:none;
	color:#e30613;
}
.section .news-items {
	font-size:14px;
	line-height:20px;
}
.section .news-items h4 {
	margin:0 0 10px;
}
.news-items .news-box {
	display:inline-block;
	vertical-align:top;
	width:32%;
	padding:0 0.5%;
	text-align:left;
	box-sizing: border-box;
	margin:0 0 25px;
	text-align:right;
}
.news-items .news-box p {
	text-align:left;
}
.news-items .news-box .more {
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
	color:#666;
}
.news-items .news-box .more:hover {
	text-decoration:none;
	color:#e30613;
}

.partners {
/*padding: 0;*/
}

.partners li {
display: inline-block;
width: 48%;
padding: 0;
text-align: center;
}
.partners li a {
display: inline-block;
position: relative;
}
.partners li img.grayscale {
position: absolute;
top: 0;
right: 0;
}
.partners li img {
	-webkit-transition: all 0.4s ease-out;
	-moz-transition: all 0.4s ease-out;
	-o-transition: all 0.4s ease-out;
	transition: all 0.4s ease-out;
}
.partners li.blick img.grayscale,
.partners li a:hover img.grayscale {
	opacity:0;
}

.partners li span {
display: block;
}

.section .map-container {
	border:10px solid #fff;
	box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	-webkit-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	-moz-box-shadow:2px 2px 5px rgba(0, 0, 0, 0.5);
	margin:0 auto;
	max-width:640px;
}
.section .contact dl {
	margin:0 0 40px;
	overflow:hidden;
}
.section .contact dt {
	float:left;
	width:120px;
	clear: both;
}
.section .contact dd {
	overflow:hidden;
	margin: 0;
	clear: right;
}
.section .contact dd span {
	display: inline-block;
}
.section .contact a {
	color:#666;
	-webkit-transition: all 0.2s ease-out;
	-moz-transition: all 0.2s ease-out;
	-o-transition: all 0.2s ease-out;
	transition: all 0.2s ease-out;
}
.section.visible .contact a span {
	-webkit-animation-name: bounceColor;
		animation-name: bounceColor;
	-webkit-animation-duration: 2.7s;
		animation-duration: 2.7s;
	-webkit-animation-fill-mode: both;
		animation-fill-mode: both;
	-webkit-animation-iteration-count: infinite;
		animation-iteration-count: infinite;
}
.section.visible .contact a:hover {
	opacity: 0.7;
}
.typed-cursor {
	display: none !important;
}
img.grayscale { 
	filter: url("data:image/svg+xml;utf8,<svg xmlns=\'http://www.w3.org/2000/svg\'><filter id=\'grayscale\'><feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/></filter></svg>#grayscale");
	filter: gray;
	-webkit-filter: grayscale(100%);
}
.cl-effect a {
	padding: 0 4px;
	white-space:nowrap;
}
.cl-effect a span {
	position: relative;
	display: inline-block;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}
.cl-effect a span::before {
	position: absolute;
	top: 100%;
	content: attr(data-hover);
	font-weight: 700;
	-webkit-transform: translate3d(0,0,0);
	-moz-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}
.cl-effect a:hover span,
.cl-effect a:focus span {
	-webkit-transform: translateY(-100%);
	-moz-transform: translateY(-100%);
	transform: translateY(-100%);
}
@media only screen and (max-width: 1044px){
	body {
		background-size:96% auto; 
	}
	.holder {
		padding: 0 10px
	}
	.nav {
		font-size: 14px;
		line-height: 18px;
	}
	.nav ul li {
		padding: 0 2px;
	}
	.logo-ru {
		width:120px;
		height: 84px;
		margin: 0 0 -20px 5px;
	}
	.logo-eu {
		width:120px;
		height: 69px; 
		padding: 16px 10px 17px 10px;
		margin: 0 0 -20px 4px;
	}
	.logo-ua {
		width:120px;
		height: 83px;
		margin: 0 0 -21px 5px;
	}
	.section {
		font-size: 14px;
		line-height: 20px;
	}
	.news-items .news-box {
		width: 48%;
		padding: 0 1%;
	}
	/*.loaded .logo-ru, .loaded .logo-ua, .loaded .logo-eu {
		transform: scale(0.6,0.6);
	}*/
}
@media only screen and (max-width: 767px){
	.logo-ru {
		margin: 0 5px 10px 0;
	}
	.logo-eu {
		margin: 0 0 10px 5px;
	}
	.logo-ua {
		margin: 0 5px 10px 0;
	}
	.nav {
		clear: both;
	}
	.nav ul {
		padding: 0;
	}
	.nav ul li {
		margin: 7px 0;
	}
	.nav ul.languages li {
		margin: 0;
	}
	.nav ul.languages {
		padding: 0;
	}
	.visual-area {
		padding: 5px 0;
		margin: -50px 0;
	}
	.loaded .visual-area .gallery {
		transform: scale(0.5,0.5);
		margin: 0 0 0 -138px;
	}
	.visual-area {
		text-align: left;
	}
	.section .visible .frame > img {
		width: 100%;
		border-width: 5px;
		box-sizing:border-box;
	}
	.news-items .news-box {
		width: 100%;
		padding:0 0 10px;
	}
	.section .contact dt {
		width: 80px;
	}
	.section h3 {
		font-size: 18px;
		line-height: 26px;
	}
}