html, body, div, span, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, img, ins, kbd, q, s, samp, small, strike, strong, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline; background: transparent;text-decoration:none;} 
body {line-height: 1;} 
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;}
body {
	font-family:'Myriad Pro', Tahoma, Geneva, sans-serif;
	/*min-width:1200px;*/
	margin:0;
	background:#fff;
	font-weight: normal;
	font-style: normal;
	font-size: 18px;
}
input {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}


/*HEADER*/
#header {
	width: 100%;
	background: #fff;
}
#header .cont {
    width: 90%;
    max-width: 1460px;
	margin: auto;
	padding: 20px 0;
}
#header .cont div {
	display: table-cell;
	vertical-align: middle;
}
#header .cont .logo {
	background: url(../img/logo2.svg) no-repeat;
}
#header .cont .logo.en {
	background: url(../img/logo2en.svg) no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
#header .cont .logo a img {
    -webkit-transition: opacity 0.1s ease-in-out;
    -moz-transition: opacity 0.1s ease-in-out;
    -o-transition: opacity 0.1s ease-in-out;
    transition: opacity 0.1s ease-in-out;
}
#header .cont .logo a:hover img {
	opacity: 0;
}
#header .cont .desc {
	width: 100%;
}
#header .cont .desc p {
	border-left: 2px solid #1c75b7;
	padding: 10px 0 10px 30px;
	margin-left: 30px;
	line-height: 22px;
	color: #1c75b7;
	/*font-weight: 600;*/
	margin-bottom: 3px;
	font-size: 19px;
}
#header .cont img {
	display: block;
}
#header .cont .button a {
	display: block;
	width: 286px;
	background: #1c75b7;
	padding: 13px 0 11px;
	border-radius: 30px;
	text-align: center;
	color: #fff;
	text-transform: uppercase;
	font-weight: 600;
	letter-spacing: 0.6px;
	font-size: 17px;
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    -o-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}
#header .cont .button a:hover {
	background: #2982c4;
}
#header .cont .button a .icon {
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 20px;
	margin-right: 6px;
	background: url(../img/reg1.svg) no-repeat;
	margin-bottom: 5px;
}
#header .cont .button a .arrow {
	display: inline-block;
	vertical-align: middle;
	width: 5px;
	height: 9px;
	margin-left: 8px;
	background: url(../img/arr1.svg) no-repeat;
	margin-bottom: 2px;
}

/*MENU*/
#menu {
	width: 100%;
	background: #1c75b7;
}
#menu .cont {
    width: 90%;
    max-width: 1460px;
	margin: auto;
}
#menu .cont .menu,
#menu .cont .lang {
	display: table-cell;
	vertical-align: middle;
}
#menu .cont .menu {
	width: 100%;
}
#menu .cont .menu .mobmenu p {
	width: 53px;
	height: 53px;
	position: absolute;
	left: 0;
	top: 0;
	background: url(../img/mobmenu1.svg) no-repeat;
	cursor: pointer;
	display: none;
}
#menu .cont .menu .mobmenu p:hover {
	background-position: 0 -53px;
}
#menu .cont .menu .mobmenu p.active {
	background-position: 0 -106px;
}
#menu .cont .menu ul {
	font-size: 0;
}
#menu .cont .menu ul li {
	display: inline-block;
	margin-right: 4%;
}
#menu .cont .menu ul li.last {
	margin-right: 0;
}
#menu .cont .menu ul li.active a {
	color: #fff;
}
#menu .cont .menu ul li a {
	display: block;
	text-transform: uppercase;
	color: #def7ff;
	font-weight: 600;
	letter-spacing: 0.6px;
	font-size: 17px;
	padding: 18px 0;
    -webkit-transition: color 0.1s ease-in-out;
    -moz-transition: color 0.1s ease-in-out;
    -o-transition: color 0.1s ease-in-out;
    transition: color 0.1s ease-in-out;
}
#menu .cont .menu ul li a:hover {
	color: #fff;
}


#menu .cont .lang {
	position: relative;
	height: 53px;
}
#menu .cont .lang .mml_links {
	width: 56px;
	position: relative;
	z-index: 2;
}
#menu .cont .lang .mml_links li {
	display: none;
	position: absolute;
	top: 28px;
	font-size: 18px;
}
#menu .cont .lang .mml_links li.active {
	display: block;
	position: relative;
	top: 0;
}
#menu .cont .lang .mml_links li.active a {
	border-top: none;
	border-radius: 12px;
}
#menu .cont .lang .mml_links li.active.open a {
	border-top: none;
	border-radius: 12px 12px 0 0;
}
#menu .cont .lang .mml_links li a {
	width: 26px;
	display: block;
	padding: 6px 20px 4px 10px;
	text-transform: uppercase;
	font-weight: 600;
	color: #1d304c;
	background: #f6c24a;
	border-top: 1px solid #c9992a;
	border-radius: 0 0 12px 12px;
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    -o-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}
#menu .cont .lang .mml_links li a:hover {
	background: #ffcf57;
}
#menu .cont .lang .arrow {
	position: absolute;
	top: 12px;
	right: 10px;
	display: block;
	width: 7px;
	height: 5px;
	background: url(../img/arr2.svg) no-repeat;
	z-index: 1;
	display: none;
}
#menu .cont .lang .active .arrow {
	display: block;
}

/*BANNER*/
#banner {
	width: 100%;
	background: url(../img/banner2.png) 100% 0;
}
#banner .left {
	background: url(../img/banner3.png) no-repeat 100% 100%;
	position: absolute;
    width: 25%;
	height: 492px;
	z-index: 1;
}
#banner .cont {
	background: url(../img/banner1.png) no-repeat 100% 100%;
    width: 90%;
    max-width: 1460px;
	margin: auto;
	height: 492px;
}
#banner .cont .text {
	position: relative;
	z-index: 1;
	display: table-cell;
	vertical-align: middle;
	height: 492px;
}
#banner .cont .text .title {
	font-size: 36px;
	line-height: 38px;
	font-weight: bold;
	border-radius: 0 8px 0 0;
	background: none;
	margin-top: 0;
}
#banner .cont .text p {
	color: #1d304c;
	font-size: 20px;
	line-height: 24px;
	max-width: 630px;
	padding: 15px 20px 20px 0;
	border-radius: 0 8px 8px 0;
	margin-top: -10px;
}
#banner .cont .text .links {
	font-size: 0;
	border-radius: 0 0 8px 0;
	background: none;
	margin-top: 0;
}
#banner .cont .text .links a {
	display: inline-block;
	font-size: 21px;
	line-height: 24px;
	border: 1px solid #1d304c;
	background: #1d304c;
	color: #e2efff;
	text-align: center;
	letter-spacing: 0.5px;
	padding: 11px 19px 13px;
	border-radius: 6px;
	margin-right: 10px;
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    -o-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}
#banner .cont .text .links a.link1 {
	padding: 11px 30px 13px;
}
#banner .cont .text .links a.link1:hover {
	background: #2a3d59;
}
#banner .cont .text .links a .arrow {
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	margin-left: 8px;
	background: url(../img/arr3.svg) no-repeat;
	margin-bottom: 0;
}
#banner .cont .text .links a.link2 {
	background: none;
	border: 1px solid #c1cedd;
	color: #1d304c;
	background: #fff;
}
#banner .cont .text .links a.link2:hover {
	background: #f0f9ff;
}
#banner .cont .text .links a.link2 .arrow {
	background: url(../img/arr4.svg) no-repeat;
	margin-left: 4px;
}


/*BLOCK1*/
#block {
	width: 100%;
	background: #fff;
}
#block.blue {
	background: #eaf4fc;
}
#block .cont {
    width: 90%;
    max-width: 1460px;
	margin: auto;
	padding: 40px 0 40px;
}
#block .cont .icons {
	background: url(../img/dot1.svg) repeat-x 50% 100%;
	padding-bottom: 40px;
}
#block .cont .icons td {
	width: 16.6%;
	text-align: center;
}
#block .cont .icons td .img {
	display: inline-block;
	margin-bottom: 10px;
}
#block .cont .icons td .text {
	display: inline-block;
	font-weight: 600;
	font-size: 19px;
	line-height: 21px;
	width: 100%;
}
#block .cont .icons td .br {
	display: none;
}
#block .cont .table {
	margin-top: 40px;
}
#block .cont .table td {
	/*border: 1px solid #ccc;*/
	vertical-align: middle;
}
#block .cont .table td .img {
	margin-right: 40px;
	margin-bottom: 0;
}
#block .cont .table td .img.margin {
	margin-right: 80px;
}
#block.blue .cont .table td .img {
	margin-right: 0;
	margin-left: 80px;
}
#block.imgrgt .cont .table td .img {
	margin-right: 0;
	margin-left: 80px;
}
#block.imglft .cont .table td .img {
	margin-right: 50px;
	margin-left: 0;
}
#block .cont .table td .img img {
	border-radius: 8px;
}
#block .cont h2 {
	text-transform: uppercase;
	color: #1c75b7;
	font-size: 20px;
	margin-bottom: 15px;
	letter-spacing: 0.3px;
}
#block .cont h4 {
	color: #1d304c;
	font-size: 24px;
	line-height: 28px;
	margin-bottom: 15px;
	letter-spacing: 0.1px;
}
#block .cont p {
	color: #1d304c;
	font-size: 20px;
	line-height: 28px;
	margin-bottom: 10px;
	/*text-align: justify;*/
}
#block .cont .table .link {
	font-size: 20px;
	line-height: 24px;
	margin-bottom: 0;
	margin-top: 22px;
}
#block .cont .table .link a {
	color: #1d304c;
	border: 1px solid #1d304c;
	display: inline-block;
	font-size: 20px;
	line-height: 23px;
	text-align: center;
	font-weight: 600;
	letter-spacing: 0.5px;
	padding: 9px 16px 12px 21px;
	border-radius: 6px;
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    -o-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}
#block .cont .table .link a .arrow {
	display: inline-block;
	vertical-align: middle;
	width: 15px;
	height: 15px;
	margin-left: 6px;
	background: url(../img/arr5.svg) no-repeat;
	margin-bottom: 1px;
}
#block .cont .table .link a:hover {
	background: #f0f9ff;
}
#block .cont .table ul {
	margin-bottom: 10px;
}
#block .cont .table ul.check li {
	color: #1d304c;
	font-size: 20px;
	line-height: 28px;
	padding-left: 28px;
	margin-bottom: 1px;
	background: url(../img/check1.svg) no-repeat 0px 1px;
}
#block .cont .table ul.check li.plus {
	background: url(../img/plus1.svg) no-repeat 0px 1px;
}
#block .cont .table ul.check.strong li {
	background: url(../img/check2.svg) no-repeat 0px 2px;
}
#block .cont .table ul.check li strong {
	font-weight: 600;
}
#block .cont .table ul.margin li {
	margin-bottom: 6px;
}


#block .cont .contact1 {
	margin-bottom: 40px;
	padding-bottom: 20px;
    background: url(../img/dot1.svg) repeat-x 50% 100%;
}
#block .cont .contact1.noline {
	margin-bottom: 0;
	padding-bottom: 20px;
    background: none;
}
#block .cont .contact1 .first {
	margin-bottom: 20px;
}
#block .cont .contact1 .first {
	margin-right: 40px;
}
#block .cont .contact1 .first td,
#block .cont .contact2 .first td {
	padding-right: 10px;
}
#block .cont .contact1 p,
#block .cont .contact2 p {
	margin-bottom: 0;
}
#block .cont .contact1 p strong,
#block .cont .contact2 p strong {
	font-weight: 600;
}
#block .cont .contact1 p a {
	color: #1d304c;
    -webkit-transition: color 0.1s ease-in-out;
    -moz-transition: color 0.1s ease-in-out;
    -o-transition: color 0.1s ease-in-out;
    transition: color 0.1s ease-in-out;
}
#block .cont .contact1 p a:hover {
	color: #1550a5;
}

#block .cont .contact2 .link {
	width: 1%;
	vertical-align: middle;
}
#block .cont .contact2 .link p {
	text-transform: uppercase;
	display: inline-block;
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	letter-spacing: 0.5px;
	background: #1c75b7;
	color: #fff;
	text-align: center;
	width: 270px;
	padding: 11px 0;
	border-radius: 6px;
	margin-right: 10px;
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    -o-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
	cursor: pointer;
}
#block .cont .contact2 .link p .arrow {
	display: inline-block;
	vertical-align: middle;
	width: 7px;
	height: 9px;
	margin-left: 8px;
	background: url(../img/arr6.svg) no-repeat;
	margin-bottom: 2px;
}
#block .cont .contact2 .link p:hover {
	background: #2982c4;
}
#block .cont hr {
	border: none;
	height: 3px;
	width: 100%;
	background: url(../img/dot1.svg) repeat-x 50% 100%;
	margin: 30px 0 40px;
}
#block .cont p.strong {
	text-align: center;
	font-weight: bold;
}
#block .cont .directions {
	margin-top: 20px;
	margin-bottom: 20px;
}
#block .cont .directions .margin {
	padding: 0 10px;
	background: none;
}
#block .cont .directions td {
	position: relative;
}
#block .cont .directions .tbl1 {
	margin-bottom: 20px;
}
#block .cont .direction {
	background: #fff;
	padding: 12px 15px 2px;
	border-radius: 8px;
}
#block .cont .direction .padding {
	padding-right: 20px;
}
#block .cont .direction .title {
    font-weight: 600;
}
#block .cont .direction .title.icn {
	padding-left: 30px;
}
#block .cont .direction .title.icn.th1 {
	background: url(../img/icon10.svg) no-repeat 0px 0px;
}
#block .cont .direction .title.icn.th2 {
	background: url(../img/icon11.svg) no-repeat 0px 0px;
}
#block .cont .direction .title.icn.th3 {
	background: url(../img/icon12.svg) no-repeat 0px 0px;
}
#block .cont .direction .title.icn.th4 {
	background: url(../img/icon13.svg) no-repeat 0px 0px;
}
#block .cont  .direction ul.check {
	margin-bottom: 10px;
}
#block .cont  .direction ul.check li {
	color: #1d304c;
	font-size: 20px;
	line-height: 24px;
	padding-left: 28px;
	margin-bottom: 4px;
	background: url(../img/check1.svg) no-repeat 0px -1px;
}
#block .cont  .direction .title {
	margin-bottom: 5px;
}

#block .cont .contact1.padding {
	padding-bottom: 40px;
}
#block .cont .contact1.padding .margin  {
	padding-right: 20px;
}
#block .cont .contact1 .blue {
	width: 1%;
	padding-left: 20px;
	vertical-align: middle;
}
#block .cont .contact1 .blue .blueblock {
	width: 500px;
	background: #eaf4fc;
	padding: 20px;
	border-radius: 8px;
}
#block .cont .contact1 .blue .blueblock h4 {
	font-size: 20px;
	color: #1d304c;
	font-weight: bold;
}
#block .cont .contact1 .colspan {
	padding-top: 40px;
	
}

/*FOOTER*/
#footer {
	width: 100%;
	background: #6196bf;
}
#footer .cont {
    width: 90%;
    max-width: 1460px;
	margin: auto;
	padding: 30px 0;
}
#footer .cont table {
    width: 100%;
}
#footer .cont .first {
    width: 1%;
	min-width: 260px;
}
#footer .cont .logo {
	margin-bottom: 20px;
}
#footer .cont .other .ua,
#footer .cont .other .kh {
	display: inline-block;
	margin-right: 20px;
	font-size: 20px;
	line-height: 22px;
	color: #1d304c;
	font-weight: 600;
}
#footer .cont .other .ua .icon {
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 18px;
	margin-right: 8px;
	background: url(../img/ua1.svg) no-repeat;
	margin-bottom: 4px;
}
#footer .cont .other .kh .icon {
	display: inline-block;
	vertical-align: middle;
	width: 21px;
	height: 23px;
	margin-right: 8px;
	background: url(../img/kh1.svg) no-repeat;
	margin-bottom: 3px;
}
/*#footer .cont .last {
	vertical-align: top;
}
#footer .cont .last td {
	width: 1%;
}
#footer .cont .last td p {
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 16px;
}
#footer .cont .last td a {
	color: #1d304c;
}
#footer .cont .last td p a:hover {
	color: #133f80;
}*/
#footer .cont .center {
	width: 100%;
	text-align: right;
}
#footer .cont .center .middle {
	display: inline-block;
}
#footer .cont .center .middle td {
}
#footer .cont .center td {
	width: 1%;
	text-align: center;
}
#footer .cont .last {
	padding-left: 30px;
}
#footer .cont .center,
#footer .cont .last {
	vertical-align: top;
}
#footer .cont .center p,
#footer .cont .last p {
	font-size: 20px;
	line-height: 22px;
	font-weight: 600;
	margin-top: 30px;
	margin-bottom: 16px;
}
#footer .cont .center p a,
#footer .cont .last p a {
	color: #1d304c;
}
#footer .cont .center p a:hover,
#footer .cont .last p a:hover {
	color: #133f80;
}

#footer .cont .last ul li {
	line-height: 20px;
	margin-bottom: 4px;
}
#footer .cont .last ul li a {
	padding-left: 28px;
	position: relative;
	display: block;
	color: #1d304c;
}
#footer .cont .last ul li a:hover {
	color: #133f80;
}
#footer .cont .last ul li a .icon {
	width: 19px;
	height: 21px;
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	margin-right: 6px;
}
#footer .cont .last ul li a.tel .icon {
	background: url(../img/icon7.svg) no-repeat;
}
#footer .cont .last ul li a.map .icon {
	background: url(../img/icon8.svg) no-repeat;
}
#footer .cont .last ul li a.mail .icon {
	background: url(../img/icon9.svg) no-repeat;
}
#footer .cont .last ul li a:hover .icon {
	background-position: 0 -21px;
}
#footer .cont .last ul li a.mail:hover .icon {
	background-position: 0 -20px;
}

#footer .bottom {
	background: #1d304c;
	text-align: center;
	padding: 18px 0;
}
#footer .bottom p {
	color: #6196bf;
	font-size: 20px;
}
#footer .bottom .m2 {
	display: none;
}

/*SHOWBLOCKS*/
#showblocks {
	position:fixed;
	width:100%;
	height:100%;
	background-color: rgba(0, 0, 0, 0.7);
	z-index:3;
	top:0;
	display: none;
}
#showblocks .block {
	width:350px;
	margin:100px auto;
	border-radius:8px;
	box-shadow: 0px 0px 10px #000;
	background:#fff;
	overflow:hidden;
	position:absolute;
	padding:15px 10px 15px 15px;
	left: 50%;
	top: -50%;
	margin-top: -187px;
	margin-left:-184px;
}
#showblocks .block.bl2 {
	margin-top: -210px;
}
#showblocks .block.bl3 {
	margin-top: -190px;
}
#showblocks .block.bl4 {
	margin-top: -236px;
}
#showblocks .block .top {
	border-bottom: 1px solid #c8dae5;
	padding-bottom: 16px;
	margin-bottom: 16px;
}
#showblocks .block .top .close {
	display: block;
	border: 1px solid #c8dae5;
	border-radius: 5px;
	margin: auto;
	cursor: pointer;
	position:absolute;
	z-index:1;
	right:8px;
	top:8px;
	color: #1d304c;
	padding: 5px 5px 4px 5px;
	line-height: 18px;
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    -o-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}
#showblocks .block .top .close:hover {
	background: #d1edff;
}
#showblocks .block .top p {
    color: #1d304c;
    font-weight: bold;
	font-size: 20px;
	text-align: left;
	margin-bottom: 0;
}
#showblocks .block p {
	text-align: center;
	margin-bottom: 10px;
	line-height: 22px;
    color: #1d304c;
}
#showblocks .block p strong {
	font-weight: 600;
}
#showblocks .block p.tel a {
	font-weight: 600;
	color: #1d304c;
    -webkit-transition: color 0.1s ease-in-out;
    -moz-transition: color 0.1s ease-in-out;
    -o-transition: color 0.1s ease-in-out;
    transition: color 0.1s ease-in-out;
}
#showblocks .block p.tel a:hover {
	font-weight: 600;
	color: #4189f3;
}
#showblocks .block hr {
	/*border: none;
	height: 2px;
	background: url(../img/dot1.svg) repeat-x 50% 100%;*/
	border: none;
	border-bottom: 1px solid #c8dae5;
}
#showblocks .block .bottom {
	text-align: center;
}
#showblocks .block .close2 {
	margin-top: 10px;
	margin-bottom: 5px;
	display: inline-block;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 24px;
	border: 1px solid #1d304c;
	background: #1d304c;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	padding: 9px 19px 10px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: 600;
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    -o-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
}
#showblocks .block .close2:hover {
	background: #2a3d59;
}


#showblocks .block .hidden {
	position: relative;
	overflow: hidden;
	margin: 0 12px;
	margin-bottom: 10px;
}
#showblocks .block .hidden.last {
	margin-bottom: 0;
	text-align: center;
}
#showblocks .block input {
	width: 304px;
	padding: 10px;
	font-size: 18px;
	line-height: 20px;
	border: 1px solid #c8dae5;
	background: #ebf3f5;
	border-radius: 3px;
	font-family: 'Myriad Pro', Tahoma, Geneva, sans-serif;
    outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#showblocks .block textarea {
	width: 304px;
	height: 128px;
	padding: 10px;
	font-size: 18px;
	line-height: 20px;
	border: 1px solid #c8dae5;
	background: #ebf3f5;
	border-radius: 3px;
	font-family: 'Myriad Pro', Tahoma, Geneva, sans-serif;
    outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
    resize: none;
	margin-bottom: 5px;
}
#showblocks .block #sendsubmit,
#showblocks .block #registersubmit {
	text-transform: uppercase;
	display: inline-block;
	font-size: 18px;
	line-height: 24px;
	font-weight: 600;
	letter-spacing: 0.5px;
	background: #1c75b7;
	color: #fff;
	text-align: center;
	width: 200px;
	padding: 11px 0 10px;
	border-radius: 6px;
	margin-top: 6px;
    -webkit-transition: background 0.1s ease-in-out;
    -moz-transition: background 0.1s ease-in-out;
    -o-transition: background 0.1s ease-in-out;
    transition: background 0.1s ease-in-out;
	cursor: pointer;
}
#showblocks .block #sendsubmit:hover,
#showblocks .block #registersubmit:hover {
	background: #2982C4;
}
#showblocks .block .error {
	position: absolute;
	background: #ed2712;
	padding: 12px 0;
	color: #fff;
	left: 0;
	top:0;
	width: 100%;
	text-align: center;
	border-radius: 3px;
	display: none;
}
#showblocks .block .error.big {
	padding: 66px 0;
}

/*TITLE*/
#title {
    background: #eaf4fc;
}
#title .cont {
    width: 90%;
    max-width: 1460px;
	margin: auto;
	padding: 30px 0;
	font-size: 0;
}
#title .cont .left, 
#title .cont .right {
	display: inline-block;
	width: 50%;
	vertical-align: middle;
	font-size: 20px;
}
#title .cont h1 {
    color: #1d304c;
	font-size: 36px;
	line-height: 38px;
	font-weight: bold;
	margin-bottom: 10px;
}

#title .cont #breadcrumb {
	overflow:hidden;
	padding-left: 0;
}
#title .cont #breadcrumb li {
	float:left;
	color: #1d304c;
	font-size:20px;
    line-height: 24px;
	list-style:none;
}
#title .cont #breadcrumb li a {
	color: #1d304c;
	padding-right:5px;
}
#title .cont #breadcrumb li.last a {
	color: #1c75b7;
}
#title .cont #breadcrumb li a:hover {
	color: #1c75b7;
}
#title .cont #breadcrumb li + li:before {
  content:  '/';
  margin:   0 5px 0 0;
}
#title .cont #breadcrumb .icon {
	display: inline-block;
	vertical-align: middle;
	width: 18px;
	height: 18px;
	margin-right: 6px;
	background: url(../img/home1.svg) no-repeat;
	margin-bottom: 5px;
}
#title .cont #breadcrumb a:hover .icon {
	background-position: 0 -18px;
}
#title .cont .right .other {
	width: 306px;
	height: 86px;
	overflow: hidden;
	float: right;
	color: #1d304c;
	position: relative;
	padding: 0 30px;
}
#title .cont .right .other .slidercont {
	background: #fff;
	border-radius: 8px;
}
#title .cont .right .other .slidercont .slick-arrow {
	background: #fff;
	width: 23px;
	height: 23px;
	position: absolute;
	left: -30px;
	top: 32px;
	border: none;
	overflow: hidden;
	text-indent: 100px;
	cursor: pointer;
	background: url(../img/arrows1.svg) no-repeat;
}
#title .cont .right .other .slidercont .slick-arrow.slick-next {
	left: auto;
	right: -30px;
	background-position: -23px 0;
}
#title .cont .right .other .slidercont .slick-arrow.slick-next:hover {
	left: auto;
	right: -30px;
	background-position: -23px -23px;
}
#title .cont .right .other .slidercont .slick-arrow.slick-prev:hover {
	background-position: 0 -23px;
}
#title .cont .right .table {
	margin: 20px 18px 18px;
	text-align: center;
}
#title .cont .right .table table {
	display: inline-block;
}
#title .cont .right .table td {
	vertical-align: middle;
}
#title .cont .right .table td img {
	margin-right: 14px;
}

@media
only screen and (max-width : 1480px), only screen and  and (max-device-width : 1480px) {

#header .cont,
#menu .cont,
#block .cont,
#footer .cont  {
    width: 96%;
    max-width: none;
}
#banner .cont {
    width: 100%;
    max-width: none;
}
#banner .cont .text {
	display: block;
	width: 96%;
	margin: auto;
	padding-top: 100px;
	height: auto;
}
#banner .cont .text p {
	background: rgba(241, 245, 246, 0.8);
}
#block .cont .icons td .text {
	max-width: 105px;
}
#block .cont .table p {
	text-align: justify;
}
#block .cont .table td {
	vertical-align: top;
}
#block.blue .cont .table td .img {
	margin-left: 40px;
}
#block.imgrgt .cont .table td .img {
	margin-left: 40px;
}
#block.imglft .cont .table td .img {
	margin-left: 0;
	margin-right: 40px;
}
#block .cont .table td .img.margin {
	margin-right: 40px;
}
#block .cont .table p {
    line-height: 26px;
}
#block .cont .contact2 table {
	width: 100%;
}
#block .cont .contact2 td {
	display: block;
}
#block .cont .contact2 td .short {
	width: 1%;
}
#block .cont .contact2 td table td {
	display: table-cell;
}
#block .cont .contact2 .link {
	width: 100%;
	padding-top: 40px;
	margin-top: 40px;
	text-align: center;
    background: url(../img/dot1.svg) repeat-x 50% 0%;
}
#footer .cont .last {
	padding-left: 15px;
}
	
#banner .left {
    width: 10%;
}

#block .cont .direction {
    background: none;
	position: relative;
	z-index: 2;
}
#block .cont .directions .absolute {
	position: absolute;
	width: 100%;
	height: 100%;
	background: #fff;
	border-radius: 8px;
	left: 0;
	top: 0;
	z-index: 1;
}
	
#block .cont .contact1 .blue .blueblock {
    width: 354px;
}

}
@media
only screen and (max-width : 1220px), only screen and  and (max-device-width : 1220px) {
	
#block .cont .table td .img img {
	max-width: 400px;
	height: auto;
}
#header .cont .desc p {
    padding: 10px 0 10px 15px;
    margin-left: 15px;
}
#footer .cont .first {
    min-width: 234px;
}    
#footer .cont .last {
    padding-left: 8px;
}
	
#banner .left {
    width: 4%;
}
	
}
@media
only screen and (max-width : 1120px), only screen and  and (max-device-width : 1120px) {

#banner .left {
    width: 0%;
}
#banner .cont .text p.title {
	background: rgba(241, 245, 246, 0.8);
	padding-bottom: 0;
}
#banner .cont .text p {
	margin-top: 0;
	border-radius: 0 0 8px 8px;
}
#banner .cont .text .links {
    margin-top: 12px;
}
#block .cont .table td .img img {
    max-width: 326px;
    height: auto;
}
#block .cont .contact1 .first {
    margin-right: 10px;
}
#block .cont .contact2 p {
    line-height: 24px;
	margin-bottom: 5px;
}
#footer .cont .center .middle td {
	display: inline-block;
	width: 50%;
	text-align: left;
}
#footer .cont .center p,
#footer .cont .last p {
    margin-top: 9px;
    margin-bottom: 6px;
}
#footer .cont .center {
    text-align: left;
}    
#footer .cont .first {
    min-width: 246px;
}
#header .cont .button a {
    width: 248px;
}
#menu .cont .menu ul li {
    margin-right: 3%;
}
#header .cont .desc p {
    padding: 8px 0 10px 12px;
    margin-left: 12px;
}
#header .cont .desc p {
    border-left: 1px solid #1c75b7;
}
#header .cont .button a .icon {
    margin-right: 2px;
}
#header .cont .button a .arrow {
    margin-left: 4px;
}

#block .cont .directions td td {
	display: block;
}
#block .cont .direction .padding {
    padding-right: 0;
}
#block .cont .direction .padding ul {
    margin-bottom: 0;
}

#block .cont .contact1.padding td {
	display: block;
}
#block .cont .contact1.padding td td {
	display: table-cell;
}
#block .cont .contact1 .blue {
    width: auto;
    padding-left: 0;
	margin-top: 40px;
}
#block .cont .contact1 .blue .blueblock {
    width: auto;
}

}
@media
only screen and (max-width : 812px), only screen and  and (max-device-width : 812px) {

#header .cont,
#menu .cont,
#block .cont,
#footer .cont,
#title .cont {
    width: 94%;
}
#banner .cont .text {
    width: 94%;
}
#menu .cont .menu {
	position: relative;
}
#menu .cont .menu ul {
	position: absolute;
	background: #d6edff;
	top: 53px;
	left: 0;
	z-index: 2;
	border-radius: 0 0 8px 8px;
	box-shadow: 0px 4px 5px rgba(0, 0, 0, 0.3);
	overflow: hidden;
	display: none;
}
#menu .cont .menu ul li {
	display: block;
	margin: 0;
}
#menu .cont .menu ul li a {
	padding-left: 40px;
	padding-right: 90px;
	color: #1d304c;
	border-top: 1px solid #a9cee9;
	font-weight: 600;
	font-size: 18px;
}
#menu .cont .menu ul li.first a {
	border-top: none;
}
#menu .cont .menu ul li.active a {
	color: #1d304c;
}
#menu .cont .menu ul li a:hover {
	color: #1d304c;
	background: #e5f3ff;
}
#menu .cont .menu .mobmenu p {
	display: block;
}
/*#header .cont {
	position: relative;
	padding-bottom: 50px;
}	
#header .cont .desc p {
	position: absolute;
	width: 520px;
	border: none;
	padding: 0;
	margin: 0;
	right: 0;
	bottom: 10px;
	border-top: 1px solid #ccc;
    font-size: 17px;
	padding-top: 10px;
}
#header .cont div {
    display: table-cell;
    vertical-align: top;
}*/
#header .cont .desc p {
	display: none;
}
#block .cont .icons td {
	display: inline-block;
    width: 33%;
	margin-bottom: 20px;
}
#block .cont .icons td .text {
    max-width: none;
}
#block .cont .table td {
	display: inline-block;
	width: 100%;
}
#block .cont .table td .img {
    margin-right: 0;
    margin-bottom: 20px;
	text-align: center;
}
#block .cont .table td .img img {
    max-width: 100%;
    height: auto;
}
#block .cont .table td .img img {
	margin-bottom: 20px;
	margin-top: 10px;
}
#block.blue.imglft .cont .table td .img img {
	margin-top: 10px;
}
#block.blue .cont .table td .img img {
	margin-top: 0;
}
#block.blue .cont .table td .img img {
	margin-bottom: 0;
}
#block.blue .cont .table td .img {
    margin-left: 0;
    margin-top: 30px;
}
#block.imgrgt .cont .table td .img {
	margin-left: 0;
    margin-top: 20px;
}
#block.imgrgt .cont .table td .img img {
	margin-bottom: 0;
}
#block.imglft .cont .table td .img {
	margin-left: 0;
	margin-right: 0;
	margin-top: 0;
}
#block .cont .table td .img.margin {
    margin-right: 0;
	margin-bottom: 40px;
}

#block .cont .contact1 td {
	display: inline-block;
}
#block .cont .contact2 td table td {
	display: inline-block;
}
#block .cont .contact2 td .short {
    width: 100%;
}    
#banner .cont .text {
    width: 100%;
}
#banner .cont .text p.title {
    padding-left: 20px;
}
#banner .cont .text p {
    padding-left: 20px;
}
#block .cont .table .link {
	text-align: center;
}
#footer .cont .center {
    /*display: none;*/
}
#footer .cont .center .middle td {
    width: 100%;
}
#footer .cont .center p, #footer .cont .last p {
    margin-top: 0px;
    margin-bottom: 3px;
}
#footer .cont .first {
    min-width: 226px;
}
#footer .cont .other {
	max-width: 200px;
}
#footer .cont .logo {
    margin-bottom: 10px;
}

#block .cont .directions .tbl1 {
    margin-bottom: 0;
}	
#block .cont .directions td {
	display: block;
}
#block .cont .directions td td {
	display: table-cell;
}
#block .cont .direction .padding {
    padding-right: 20px;
}    
#block .cont .direction {
    margin-bottom: 20px;
}
#block .cont .directions .margin {
	display: none;
}

}

@media
only screen and (max-width : 680px), only screen and  and (max-device-width : 680px) {

#block .cont .icons td .text {
    max-width: 105px;
}
#banner .cont .text p {
    border-radius: 0;
}
#banner .cont .text .title {
    border-radius: 0;
}
#banner .cont .text .links {
    text-align: center;
}
#banner .cont .text .links a {
    margin-right: 0;
	margin: 0 3px;
}
#footer .cont .center {
    /*display: none;*/
}
#footer .cont .center .middle td {
    width: 50%;
}
#banner .cont {
	background-position: 82% 100%;
}    
#footer .cont {
	position: relative;
	padding-bottom: 130px;
}    
#footer .cont .last {
	position: absolute;
	left: 0;
	bottom: 20px;
	padding: 0;
}    
#footer .cont .first {
    min-width: 238px;
}
#footer .cont .other {
	max-width: 120px;
	position: absolute;
	right: 0;
	bottom: 40px;
}
#footer .cont table {
	border-bottom: 1px solid #5c78a1;
}
#footer .cont table table {
	border-bottom: none;
}
#footer .bottom .m1 {
	display: none;
}
#footer .bottom .m2 {
	display: inline;
}

#title .cont .left {
	width: auto;
}
#title .cont .right {
	display: none;
}
	
#block .cont .contact1.padding tr tr {
	padding: 10px 0;
    display: block;
}
#block .cont .contact1.padding td td {
    display: block;
}
#block .cont .contact1 .colspan {
    padding-top: 20px;
}

}

@media
only screen and (max-width : 520px), only screen and  and (max-device-width : 520px) {

#header .cont {
	position: relative;
}
#header .cont .button {
	position: absolute;
	right: 0;
	bottom: -53px;
}
#header .cont .button a {
	width: 222px;
    padding: 15px 0 13px;
    border-radius: 0;
	text-align: right;
}
#header .cont .button a .arrow {
	display: none;
}
#header .cont .button a:hover {
	background: none;
}
/*#header .cont .desc p {
    display: block;
}*/
	
#header .cont .logo a img {
	width: 174px;
	height: auto;
}
#header .cont .logo {
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
#menu .cont .lang {
	display: block;
	position: absolute;
	right: 0;
	top: -72px;
}
#menu {
	height: 53px;
}
#menu .cont {
	position: relative;
}
#banner .cont .text {
	overflow: hidden;
}  
#banner .cont .text .title {
    font-size: 24px;
    line-height: 26px;
}    
#banner .cont .text {
    padding-top: 44px;
}
#banner .cont .text .links a {
    padding: 11px 0 13px 0;
	width: 230px;
	width: 274px;
}
#banner .cont .text .links a.link1 {
    padding: 11px 0 13px 0;
	margin-bottom: 6px;
}
#block .cont .icons td {
    width: 50%;
}
#block .cont h4 {
    font-size: 22px;
    line-height: 26px;
}
#block .cont {
    padding: 40px 0 40px;
}
#block .cont .table {
    margin-top: 0;
}
#block .cont .icons {
    padding-bottom: 10px;
	margin-bottom: 30px;
}
#block .cont .table td .img {
    margin-bottom: 0;
}
#footer .cont .logo img {
	width: 160px;
	height: auto;
}
#footer .cont .center {
    display: none;
}
	#footer .cont .other {
        bottom: auto;
		top: 38px;
    }
	#footer .cont .last .right p {
        margin-bottom: 10px;
    }
	#footer .cont .last {
        bottom: 12px;
    }
#footer .cont .last ul li a {
    padding-left: 24px;
}
#footer .cont .last .m1 {
	display: none;
    }
#footer .cont .other .ua, #footer .cont .other .kh {
    margin-right: 0;
}    
#footer .cont .other {
    max-width: 108px;
}
#block .cont .contact2 .link p {
    width: 240px;
    margin-right: 0;
}
	#block .cont .contact1 .first {
        margin-right: 0;
    }
#block .cont .contact1 .first td,
#block .cont .contact2 .first td {
	padding-right: 0;
	display: block;
}
#block .cont p {
    font-size: 19px;
	text-align: left;
    line-height: 26px;
}    
#block .cont .table p {
	text-align: left;
}  
#block .cont .table p.strong {
	text-align: center;
} 
#block .cont .icons p {
	text-align: center;
}
#footer .bottom p {
    font-size: 19px;
}
#footer .cont td {
    display: block;
}
#footer .cont .center {
    display: block;
	position: relative;
	padding-top: 10px;
	margin-top: 10px;
	margin-bottom: 5px;
	border-top: 1px solid #5c78a1;
}    
	#footer .cont .center p {
		text-align: center;
    }
#block .cont .table ul.check li {
    font-size: 19px;
    line-height: 26px;
}
	

#showblocks .block {
	width:260px;
	margin-top: -206px;
	margin-left:-142px;
}

#showblocks .block.bl2 {
	margin-top: -210px;
}
#showblocks .block input {
	width: 214px;
}
#showblocks .block textarea {
	width: 214px;
}

#title .cont h1 {
    font-size: 28px;
    line-height: 30px;
}
#block.imglft .cont .table td .img {
	margin-bottom: 20px;
}

#block .cont .directions td td {
	display: block;
}
#block .cont .direction .padding {
    padding-right: 0;
}
#block .cont .direction .title {
	line-height: 22px;
}
#block .cont h2 {
    font-size: 18px;
}


}