/*
----------------------------------------------------------------------------------------------------
[Table of Contents]

1. Base page configuration
2. Elements of interface, Global classes and other blocks
3. Layouts
   3.1 Base layout
4. Blocks
   4.1 blockName                       		  | .className

----------------------------------------------------------------------------------------------------
*/


/*
####################################################################################################
[1. Base page configuration]
####################################################################################################
*/

body,div,dl,dt,dd,ul,ol,li,form,
h1,h2,h3,h4,h5,h6,pre,p,span,b,i,
input,textarea, fieldset { margin:0; padding:0;}

ul { list-style-type:none;}
img, fieldset { border:none;}
table { border-collapse:collapse; border-spacing:0;}

h1,h2,h3,h4,h5,h6 { font-weight:normal;}

html {
	height:100%;
	min-width: 320px;
}
body {
    font-size:16px;
	line-height:28px;
	font-family: 'Open Sans', sans-serif;
	font-weight: 300;
	color:#000;
    /*background:#fff;*/
	background-color: #25a4d3;

	text-rendering: optimizelegibility;

	-webkit-tap-highlight-color:rgba(0,0,0,0);
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;

	-moz-tap-highlight-color:rgba(0,0,0,0);
	-moz-text-size-adjust: none;
	-moz-font-smoothing: antialiased;

	-ms-tap-highlight-color:rgba(0,0,0,0);
	-ms-text-size-adjust: none;
	-ms-font-smoothing: antialiased;
}

input, textarea, select, label {
	font-size:1em; font-family:inherit;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;

}
input[type="submit"] {cursor:pointer;}
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}
input[type="submit"] {
	-webkit-appearance: none;
}

a {
    color:#1e98ca;
    -webkit-transition:color .3s ease;
    -moz-transition:color .3s ease;
    -ms-transition:color .3s ease;
    -o-transition:color .3s ease;
    transition:color .3s ease;
	text-decoration:none;
}
a:hover {

}
.see-more {
	padding: 8px 0 0;
	font-weight: 700;
}
.see-more__link:hover {
	text-decoration: underline;
}

/* ===== [ link-preset ] ===== */

.b-link { display:inline-block; vertical-align:top; text-decoration:none;}
    .b-link__inner { line-height:1.2; text-decoration:none; border-bottom:1px solid;}

a.b-link:hover { }

.b-link_pseudo { }
    .b-link_pseudo .b-link__inner { border-bottom:1px dotted;}

	.more-link:hover {
		text-decoration: underline;
	}

/*
####################################################################################################
[2. Elements of interface, Global classes and other blocks]
####################################################################################################
*/

.g-clear { clear:both;}
.g-right { float:right !important;}
.g-left { float:left !important;}

.g-black { color:#000 !important;}
.g-red { color:#c00 !important;}

.g-hidden { display:none !important;}

.line { overflow:visible;}

.line:after {
    font-size:0;
    content:".";
    display:block;
    height:0;
    clear:both;
    visibility:hidden;
}

/* ###########################################################################
    [3. Layouts]
########################################################################### */

.wrap {
	position:relative;
	width: 100%;
	overflow: hidden;

	/*  Prevents Flickering  */
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
}
.page {
	position: relative;
	width: 100%;
	overflow: hidden;
	background: #fff;
	z-index: 5;
}

.case {
	max-width:980px;
	margin:0 auto;
	position: relative;
}

/* header */
.hdr {
	position: fixed;
	width: 100%;
	z-index: 100;
	height: 189px;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-ms-backface-visibility: hidden;
}
.hdr__holder {
	display: block;
	position: absolute;
	left:0;
	top:0;
	z-index: 5;
	height: 65px;
	padding: 10px 0;
	width: 100%;
	background: url("../img/bg-hdr.png") repeat scroll 0 0 rgba(255, 255, 255, 1);
}

	.hdr__right {
		float: right;
		margin: 0 -10px 0 0;
		/*min-width: 389px;*/
	}

	.no-js  .hdr  {
		/*background: #fff;*/
	}

.cnt {
	position: relative;
	z-index: 3;
}

	.inner-page .cnt {
		/*padding: 25px 0 0;*/
	}



/* footer */
.ftr {
	font-size: 14px;
	line-height: 22px;
	color: #fff;
    position:relative;
	z-index: 1;
	width: 100%;
	padding: 56px 0 30px;
	background:#0564a3 url(../img/bg-ftr.jpg) repeat-y 50% 0;
}
.ftr a {
	color: #fff;
}
	.ftr__left {
		float: left;
		width: 75%;
		padding: 8px 0 0;
	}
	.ftr__right {
		float: right;
		width: 25%;
	}
	.ftr__social {
		overflow: hidden;
		margin: 0 0 24px;
	}
	.ftr__social li {
		float: right;
		margin: 0 0 0 15px;
	}
	.ftr__social-link {
		display: block;
		width: 47px;
		height: 47px;
		overflow: hidden;
		text-indent: -9999px;
    outline:none;
	}
	.ftr__social_fb {
		background: url(../img/bg-social.png) no-repeat;
	}
	.ftr__social_fb:hover { background: url(../img/bg-social.png) no-repeat -47px 0; }
	.ftr__social_tw {background: url(../img/bg-social.png) no-repeat 0 -48px;}
	.ftr__social_tw:hover {background: url(../img/bg-social.png) no-repeat -47px -48px;}
	.ftr__social_in {background: url(../img/bg-social.png) no-repeat 0 -96px;}
	.ftr__social_in:hover {background: url(../img/bg-social.png) no-repeat -47px -96px;}
	.ftr__copy {
		display: block;
		text-align: right;
	}
	.ftr__col {
		float: left;
	}
	.ftr__col01 {
		width: 62%;
	}
	.ftr__col02 {
		width: 38%;
	}
	.ftr__nav {
		font-size: 16px;
		line-height: 30px;
		display: inline-block;
		vertical-align: top;
		width: 27%;
	}
	.ftr__nav_large {
		width: 44%;
	}
	.ftr__col02 .ftr__nav {
		width: 49%;
	}
	.ftr__nav-link {
		font-size: 18px;
		line-height: 22px;
		font-family: 'Montserrat', sans-serif;
		text-transform: uppercase;
    outline:none;
	}
	.ftr__nav-link:hover {
		text-decoration: underline;
	}
	.ftr__nav-drop a:hover {
		text-decoration: underline;
	}

	.ftr .menu {
		padding: 0;
	}
	.nav__drop-ttl {
		text-transform: uppercase;
	}
	.ftr .nav__drop-ttl {
		padding: 1px 0 4px;
	}
	.ftr .nav__drop-ttl:hover {
		background: none;
		text-decoration: underline;
		color: #fff;
	}

	.ftr .menu__sub {
		padding: 0;
		display: block;
	}
	.ftr .menu__sub li:first-child {
		word-spacing: 2px;
	}
	.ftr .menu__item {
		display: inline-block;
		vertical-align: top;
		width: 16%;
	}
	.ftr_mobile .menu__sub {
		display: none;
    white-space:nowrap;
	}
	.ftr_mobile .menu_open .menu__sub {
		display: block;
	}
	.ftr .menu__item ul a {
		padding-bottom: 4px; 
	}
	.ftr .menu__item ul li:first-child a {
		/* word-spacing: 8px; */
	}


/* ###########################################################################
    [4. Blocks]
########################################################################### */

/*---------------------------------------------------------------------------
    [4.1 Icons]
---------------------------------------------------------------------------*/

.ico {
	display:inline-block;
	/*background:url(../img/ico.png) no-repeat;*/
}

.ico_pdf {
	height:36px;
	width:35px;
	background: url(../img/ico-pdf.png) no-repeat;
	margin: 0 5px -11px 0;
}

.ico_download {
	height:36px;
	width:35px;
	background: url(../img/ico-download.png) no-repeat;
	margin: 0 15px -11px 0;
}


/*---------------------------------------------------------------------------
    [4.2 Buttons]
---------------------------------------------------------------------------*/

.btn {
	font-size: 24px;
	line-height: 28px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
    position:relative;
    display:inline-block;
    vertical-align:top;
	border:3px solid #fff;
	padding: 16px 26px;
	color: #fff;
  white-space:nowrap;
}
.btn_blue {
	background: #25a4d3;
}
.btn_blue:hover { background: #67bfe0; }
.btn_grey {
	background: #9f948e;
}
.btn_grey:hover { background: #bcb4b0; }
.btn_orange {
	background: #ff8a00;
}
.btn_orange:hover { background: #ffad4d; }
.btn_pdf {
  padding: 15px 26px;
}



a.btn:hover { }
a.btn:active {}


/*---------------------------------------------------------------------------
    [4.3 Forms]
---------------------------------------------------------------------------*/

.b-input-i {
	position:relative;
	width: 100%;
}

.b-input {
	font-size: 14px;
	line-height: 17px;
	padding: 9px 13px;
	margin: 0;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	background: #fff;
	border:1px solid #e7e7e7;
}

.b-ta {}

.form {
	line-height: 20px;
}

.form__row {
	width: 100%;
	padding: 0 0 18px;
}
.form__row-in {
	padding: 0 0 0 90px;
}
.form__col {
	float: left;
	width: 40%;
	margin: 0 0 0 20%;
}
.form__col:first-child {
	margin: 0;
}
.form_sign .b-input-i {

}
.form_sign  .form__label {
	font-size: 16px;
	line-height: 20px;
	float: left;
	width: 85px;
	text-align: right;
	text-transform: uppercase;
}
.form_sign  .form__info {
	font-size: 16px;
	line-height: 18px;
	padding: 0 0 13px 90px;
	color: #fff;
}
.form_sign a {
	color: #0d5772;
}
.form_sign a:hover {
	color: #fff;
}
.sign-area .form__info {
	color: #000;
}
.sign-area .form_sign a {
	color: #25a4d3;
}

.b-check {
	display: inline-block;
	vertical-align: top;
	width: 13px;
	height: 13px;
	margin: 3px 5px 0 0;
	padding: 0;
	background: #fff;
}
.form__links {
	font-size: 15px;
	line-height: 20px;
	overflow: hidden;
}
.form__links li {
	float: left;

}
.form__links li:first-child {
	/*border-right:1px solid #5cc1e7;
	margin: 0 4px 0 0;
	padding: 0 4px 0 0;*/
}
.form__btm {
	padding: 5px 0 0;
	text-align: right;
}

.form__keep {
	font-size: 16px;
	line-height: 20px;
	display: inline-block;
	vertical-align: top;
	width: 74px;
	padding: 0 0 0 21px;
	position: relative;
	text-align: left;
}
.form__keep .b-check {
	position: absolute;
	left:0;
	top:0;
}

.btn_submit {
	font-size: 22px;
	line-height: 25px;
	font-family: 'Montserrat', sans-serif;
	display: inline-block;
	vertical-align: top;
	width: 124px;
	height: 48px;
	border:2px solid #fff;
	text-transform: uppercase;
	background: #25a4d3;
	color: #fff;
}
.btn_submit:hover,
.btn_search:hover {
	cursor: pointer;
}
.form_sign .btn_submit:hover {
	color: #25a4d3;
	background: #fff;
}
.form_sign input[type="checkbox"]:hover { cursor:pointer; }

.form_search {
	width: 100%;
	position: relative;
}
.btn_search {
	position: absolute;
	z-index: 2;
	right: 0;
	top:0;
	width: 36px;
	height: 35px;
    margin-top: 1px;
	background:#fff url(../img/ico-search.png) no-repeat 50%;
	overflow: hidden;
	text-indent: -9999px;
	border:0;
}
.form_search .b-input {
	padding-right: 42px;
}

.form_contact {
	width: 662px;
}
.form_contact .form__left {
	float: left;
	text-align: right;
	width: 138px;
	margin: 0 13px 0 0;
}
.form_contact .b-label {
	display: inline-block;
	vertical-align: top;
	color: #000;
	margin: 15px 0 0;
}
.form_contact .form__right {
	overflow: hidden;
	margin: 0 0 0 151px;
}
.form_contact .b-input {
	border:1px solid #c5dfd2;
	padding: 12px 11px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	position: relative;
}
.form_contact .form__row {
	padding: 0 0 5px;
}

.b-select-i {
	width: 99.6%;
	position: relative;
}
.b-select {
	display: block;
	width: 100%;
}

.form_contact .form__btm {
	text-align: right;
}
.btn_send {
	font-size: 24px;
	line-height: 27px;
	font-family: 'Montserrat', sans-serif;
	display: inline-block;
	vertical-align: top;
	background: #ff961a;
	padding: 0;
	color: #fff;
	width: 106px;
	height: 59px;
	border:1px solid #fff;
	text-transform: uppercase;
}
.btn_send:hover {
	cursor: pointer;
    opacity:0.8;
}

/*---------------------------------------------------------------------------
    [4.4 Elements]
---------------------------------------------------------------------------*/
.logo {
	float: left;
	width: 165px;
	height: 40px;
	margin: 12px 0;
	overflow: hidden;
	text-indent: -9999px;
	/* background: url(../img/logo.png) no-repeat; */
	background: url(../img/logo_ukr.png) no-repeat;
}
	.logo a {
		display: block;
		height: 100%;
	}

.navigation {
	float: right;
}

.topbar {
	padding: 85px 0 0;
	height: 104px;
	background: #8ec6e1 url(../img/bg-topbar.jpg) no-repeat 50% 0;
    width: 100%;
	overflow: hidden;
	position: relative;
	z-index: 1;
}


	.topbar .case {
		position: relative;
		height: 100%;
	}
	.topbar__img {
		position: absolute;
		right: 0;
		bottom: 0;
		width: 313px;
	}
	.topbar__img img {
		display: block;
		width: 100%;
		height: auto;
	}
	.topbar__ttl {
		font-size: 30px;
		line-height: 34px;
		font-family: 'Open Sans', sans-serif;
		font-weight: 300;
		color: #fff;
		padding: 11px 0 23px;
	}
	.back-link {
		font-size: 18px;
		line-height: 24px;
		font-family: 'Montserrat', sans-serif;
		text-transform: uppercase;
		color: #fff;
		word-spacing: -2px;
		padding: 8px 0 0 11px;
	}
	.back-link a {
		color: #fff;
	}

	.add-nav {
		font-size: 18px;
		line-height: 24px;
		font-family: 'Montserrat', sans-serif;
		overflow: hidden;
		text-transform: uppercase;
		position: absolute; /*new*/
		left:0;             /*new*/
		bottom:0;           /*new*/
		height: 34px;       /*new*/
	}
	.add-nav li {
		float: left;
		margin: 0;
	}
	.add-nav a {
		display: block;
		padding: 5px 9px;
		color: #FFF;
	}
	.add-nav__item_active a,
	.add-nav a:hover {
		background: #fff;
		color: #25a4d3;
	}

.nav {
	font-size: 18px;
	line-height: 20px;
	font-family: 'Montserrat', sans-serif;
	float: right;
	padding: 28px 35px 30px;
	margin: -10px 0;
}
	.nav:hover {
		cursor: pointer;
		background: #25a4d3;
	}
	.nav__link {
		display: block;
		width: 27px;
		height: 27px;
		overflow: hidden;
		text-indent: -9999px;
		margin: 0 auto;
		background: url(../img/ico-nav.png) no-repeat;
	}
	.nav:hover .nav__link {
		background-position: 0 -28px;
	}

	.nav__drop,
	.sign__drop,
	.search__drop{
		font-size: 16px;
		line-height: 30px;
		font-family: 'Open Sans', sans-serif;
		font-weight: 300;
		padding: 30px 9999px 35px;
		margin: 0 -9999px;
		width: 100%;
		color: #fff;
		position: absolute;
		left:0;
		top:75px;
		background: #25a4d3;
		display: none;
		cursor: default;
	}
	.nav.hover .nav__drop,
	.sign.hover .sign__drop,
	.search.hover .search__drop{
		display: block;
	}

	.menu__item {
		display: inline-block;
		vertical-align: top;
		margin:0;
	}
	.menu__item ul {
		padding: 0 0 0 20px;
	}
	.menu__item ul a {
		display: inline-block;
		vertical-align: top;
	}
	.menu__item ul a:hover {
		text-decoration: underline;
	}
	.menu__item a {
		color: #fff;
	}
	.nav__drop-ttl {
		display: inline-block;
		vertical-align: top;
		font-size: 16px;
		line-height: 20px;
		font-family: 'Montserrat', sans-serif;
		font-weight: 700;
		padding: 3px 19px;
	}
	.menu__item_active .nav__drop-ttl,
	.nav__drop-ttl:hover {
		background: #fff;
		color: #25a4d3;
	}

	.burger-nav {
		font-size: 22px;
		line-height: 26px;
		font-family: 'Montserrat', sans-serif;
		text-transform: uppercase;
		position: absolute;
		top: 0;
		right: 5px;
		width: 263px;
		z-index: 0;
        display:none;
		/*opacity: 0;*/
	}
	.burger-nav .menu__item {
		display: block;
		border-bottom: 4px solid #3badd7;
		display:block;
		padding: 8px 10px;
		width: auto;
	}
	.burger-nav li li {
		border-bottom: 0;
		border-top: 4px solid #3badd7;
		padding: 4px 0;
	}
	.burger-nav li ul {
		padding: 8px 0 0;
		margin: 0 -10px -8px;
	}
	.burger-nav a {
		font-size: 12px;
		color: #fff;
		display: inline-block;
		padding: 8px 20px;
	}
	.burger-nav .current_page_item > a,
	.burger-nav a:hover {
		background: #fff;
		color: #25a4d3;
	}
	.burger-nav ul li li a {
		font-size: 14px;
		font-family: 'Open Sans', sans-serif;
		text-transform: none;
		display: block;
		padding: 8px 20px 8px 50px;
	}
	.burger-nav ul li li a:hover {
		background: #3badd7;
		color: #fff;
	}
	.burger-nav li.active .burger-nav__link {
		background: #fff;
		color:#25a4d3 ;
	}
	.burger-nav__drop {
		display: none;
	}
	.burger-nav__has-drop {
		background:url(../img/bur-arrow.png) no-repeat 83% 23px;
	}
	.burger-nav__has-drop.active {
		background:url(../img/bur-arrow-a.png) no-repeat 83% 23px;
	}


.sign {
	font-size: 18px;
	line-height: 20px;
	font-family: 'Montserrat', sans-serif;
	float: right;
	padding: 33px 21px 35px;
	margin: -10px 0;
}
.sign:hover {
	background: #25a4d3;
	cursor: pointer;
}
.sign__link {
	text-transform: uppercase;
}
.sign:hover .sign__link {
	color: #fff;
}
	.sign__left {
		float: left;
		width: 32%;
		padding: 1px 32px 1px 0 ;
		border-right: 1px solid #60b8d9;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
		position: relative;
	}
	.sign__right {
		float: left;
		width: 65%;
		margin: 0 0 0 3%;
		-webkit-box-sizing: border-box;
		-moz-box-sizing: border-box;
		box-sizing: border-box;
	}
	.sign__divider {
		position: absolute;
		right:-11px;
		top:50%;
		margin: -20px 0 0 ;
		background: #25a4d3;
	}
	.sign-area .sign__divider {
		font-size: 17px;
		color: #8b8b8b;
		background: #eeebe8;
		font-weight: bold;
	}
	.sign-area .sign__left {
		border-color: #cfcfcf;
		border-width: 2px;
	}
	.sign-area .form_sign a:hover {
		color: #0D5772;
		text-decoration: underline;
	}
	.sign-area .form {
		padding: 9px 0 0;
	}
	.sign-area .b-input {
		padding: 6px 13px;
	}
	.sign-area .form_sign .form__label {
		font-size: 16px;
		line-height: 18px;
	}
	.sign-area .form__row {
		padding: 0 0 17px;
	}

.search {
	float: right;
	padding: 34px 35px;
	margin: -10px 0;
}
.search:hover {
	background: #25a4d3;
	cursor: pointer;
}
	.search-btn {
		display: block;
		width: 17px;
		height: 17px;
		background: url(../img/ico-search.png) no-repeat;
		overflow: hidden;
		text-indent: -9999px;
	}
	.search:hover .search-btn {
		background: url(../img/ico-search-h.png) no-repeat;
	}

.intro {
	position: relative;
	z-index: 1;

}
.carousel {
	/*max-width: 2000px;*/
	width: 100%;
	margin: 0 0 00px;
}

	.carousel__paging {
		top:100px;
		width: 100%;
		text-align: center;
		position: absolute;
		z-index: 2;
		padding: 10px 0;
	}
	.carousel__paging ul {
		display: inline-block;
		vertical-align: top;
	}
	.carousel__paging ul li {
		display: inline-block;
		vertical-align: top;
		margin: 0 9px;
		position: relative;
	}
	.carousel__paging ul a {
		display: block;
		width: 10px;
		height: 10px;
		border: 2px solid #25a4d3;
		text-indent: -9999px;
		background: #25a4d3;
		-webkit-border-radius: 7px;
		-moz-border-radius: 7px;
		border-radius: 7px;
		position: relative;
	}
	.carousel__paging ul .active a {
		background: none;
	}
	.carousel__prev {
		position: absolute;
		z-index: 10;
		left:50%;
		top:50%;
		margin: -34px 0 0 -490px;
		width: 40px;
		height: 68px;
		overflow: hidden;
		text-indent: -9999px;
		background: url(../img/btn-carousel.png) no-repeat;
	}
	.carousel__next {
		position: absolute;
		z-index: 10;
		right:50%;
		top:50%;
		margin: -34px -490px 0 0;
		width: 40px;
		height: 68px;
		overflow: hidden;
		text-indent: -9999px;
		background: url(../img/btn-carousel.png) no-repeat 0 -68px;
	}
	.carousel__mask {
		overflow: hidden;
		width: 100%;
		position: relative;
		z-index: 1;
	}
	.carousel__mask-testimonial {
		overflow: hidden;
		width: 100%;
		position: relative;
		z-index: 1;
	}
	.carousel__slider {
		width: 100%;
		overflow: hidden;
		min-height: 695px;
	}
	.carousel__slide-bg {
		width: 100%;
		height: 100%;
		position: absolute;
		z-index: 1;
		left:50%;
		/*margin: 0 0 0 -1000px;*/
	}
	.carousel__slide-bg img {
		position: absolute;
		left:0;
		top:0;
		width: auto;
		height: 100%;
	}
	.carousel__slide {
		font-size: 22px;
		line-height: 40px;
		padding: 0 0 30px;
		text-align: center;
		width: 100%;
		float: left;
		position: absolute;
		z-index: 1;
		color: #002553;
		background: #fff;
	}
	.carousel__slide .carousel__slide-in {
		padding: 0 0 65px;
	}
	.carousel__slide01 .carousel__slide-in {
		background:#f7f7f6 url(../img/bg-slide01.jpg) no-repeat 50% 0;
	        background-size: 100% 100%;
	}
	.carousel__slide02 .carousel__slide-in {
		background:#cadde0 url(../img/bg-slide02.jpg) no-repeat 50% 0;
	        background-size: 100% 100%;
	}
	.carousel__slide03 .carousel__slide-in {
		background:#c2d9dd url(../img/bg-slide03.jpg) no-repeat 50% 0;
	        background-size: 100% 100%;
	}
	.carousel__slide04 .carousel__slide-in {
		background:#cadde0 url(../img/bg-slide04.jpg) no-repeat 50% 0;
	        background-size: 100% 100%;
	}
	.carousel__slide05 .carousel__slide-in {
		background:#cadde0 url(../img/bg-slide05.jpg) no-repeat 50% 0;
	        background-size: 100% 100%;
	}
	.carousel__slide06 .carousel__slide-in {
		background:#cadde0 url(../img/bg-slide03.jpg) no-repeat 50% 0;
	        background-size: 100% 100%;
	}
	.carousel__slide01-nobg .carousel__slide-in {
	}
	.carousel__slide02-nobg .carousel__slide-in {
	}
	.carousel__slide03-nobg .carousel__slide-in {
	}
	.carousel__slide04-nobg .carousel__slide-in {
	}
	.carousel__slide05-nobg .carousel__slide-in {
	}
	.carousel__slide06-nobg .carousel__slide-in {
	}
	.carousel__slide .case {
		position: relative;
		z-index: 2;
		padding: 164px 50px 0;
		max-width: 880px;
	}
	.carousel__slide h2 {
		font-size: 58px;
		line-height: 62px;
		font-weight: 400;
		font-family: 'Montserrat', sans-serif;
		color: #002553;
		margin: 0 0 38px;
		letter-spacing: -1px;
	}
	.carousel__visual {
		width: 100%;
		padding: 35px 0 35px;
	}
	.carousel__visual img {
		display: block;
		/*width: 40%;*/
		height: auto;
		margin: 0 auto;
	}
	.carousel__slide .btn__holder {
		text-align: center;
		position: absolute;
		left:0;
		bottom: -95px;
		width: 100%;
	}
	.carousel__slide.active {
		z-index: 5;
	}

  .carousel__slide-desc {
    display:none;
  }
  .carousel__slide-desc a:hover {
    text-decoration:underline;
  }
  .carousel__slide .btn_pdf {
    display:none;
  }
  .jsMoreText_open .btn_pdf {
    display:inline-block;
  }
  .jsMoreText_open .btn_learn-more {
    display:none;
  }


.promo-solutions {
	min-height: 500px;
	background:#c2b7ac url(../img/bg-faq.jpg) no-repeat 50% 0;
	background-size: 100% 500px;
}
.promo-services {
	min-height: 500px;
	background:#c2b7ac url(../img/bg-events.jpg) no-repeat 50% 0;
	background-size: 100% 825px;
}
.promo {
	min-height: 800px;
	background:#c2b7ac url(../img/bg-services.jpg) no-repeat 50% 0;
}
    .promo_video { margin:60px 0 100px 0; text-align: center;}
    
    .video-wrapper {
        width: 600px;
        max-width: 100%;
        margin: 0 auto;
    }
    .video-container {
        position: relative;
        padding-bottom: 56.25%;
        height: 0;
        overflow: hidden;
    }

    .video-container iframe,  
    .video-container object,  
    .video-container embed {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }    
    
    
	.promo__ttl {
		font-size: 58px;
		line-height: 62px;
		font-weight: 400;
		font-family: 'Montserrat', sans-serif;
		color: #002553;
		margin: 0 0 35px;
		text-align: center;
		letter-spacing: -1px;
	}
	.promo__txt {
		font-size: 24px;
		line-height: 40px;
		text-align: center;
		margin: 0 0 46px;
		color: #002553;
	}
  .promo p {
    margin:0 0 15px;
  }
	.promo__visual {
		margin: 0 -9999px;
		padding: 0 9999px;
		border-bottom:3px solid #fff;
		position: relative;
		z-index: 5;
	}
	.promo__visual-img {
		width: 100%;
	}
	.promo__visual img {
		display: block;
		width: 66.6%;
		height: auto;
		margin: 0 auto;
	}
	.promo__visual .btn__holder {
		text-align: center;
		margin: -33px 0;
	}
	.promo__visual .btn {
		margin: 0 10px;
	}
	.promo__features {
		padding:80px 0 78px;
		position: relative;
		z-index: 1;
	}
	.promo__mask {
		overflow: hidden;
		width: 100%;
		position: relative;
	}
   .promo__slider {
	   width: 104%;
	   overflow: hidden;
	   position: relative;
   }
   .promo__slide {
	   /*font-size: 18px;
	   line-height: 28px;*/
	   display: inline-block;
	   vertical-align: top;
	   width: 28%;
	   padding: 0 3.5% 0 1.5%;
   }
   .promo__slide-top {
	   padding: 20px 0 21px 96px;
	   min-height: 80px;
	   position: relative;
   }
   .slideset_slide .promo__slide-top {
	   padding: 20px 0 21px 110px;
	   min-height: 80px;
	   position: relative;
   }
	.promo__slide-top img {
		position: absolute;
		left:-14px;
		top:0;
	}
	.slideset_slide .promo__slide-top img {
		left:0;
	}
	.promo__slide h3,
	.slideset_slide h3 {
		font-size: 30px;
		line-height: 36px;
		font-weight: 700;
		font-family: 'Montserrat', sans-serif;
		color: #fff;
	}
	.promo__more,
	.listing__more {
		display: inline-block;
		vertical-align: top;
		width: 32px;
		height: 32px;
		background: url(../img/arrow-more.png) no-repeat;
		overflow: hidden;
		text-indent: -9999px;
		margin: 0 0 0 4px;
	}
	a.promo__more:hover {opacity:0.85;}

  .promo__paging {
    position:absolute;
    left:0;
    bottom:10px;
    display:inline-block;
    vertical-align:top;
    width:100%;
    text-align:center;
  }
  .promo__paging li {
    display:inline-block;
    vertical-align:top;
    margin:0 5px;
  }
  .promo__paging a {
    display:block;
    width: 15px;
    height: 15px;
    overflow:hidden;
    text-indent:-9999px;
    padding:5px;
  }
  .promo__paging em {
    display: block;
    width: 10px;
    height: 10px;
    border: 2px solid #FFF;
    text-indent: -9999px;
    background: #FFF;
    border-radius: 7px;
    position: relative;
  }

  .promo__desc {
    display:none;
  }
  .jsInfoContainer_open .promo__more {
    display:none;
  }
  .promo__more_open {
    background:url(../img/arrow-more-hide.png) no-repeat;
    display:inline-block !important;
    margin:0 5px;
  }




.section {
	font-size: 24px;
	line-height: 40px;
	padding: 66px 0 40px;
	text-align: center;
}
	.section__ttl {
		font-size: 58px;
		line-height: 62px;
		font-weight: 400;
		font-family: 'Montserrat', sans-serif;
		color: #002553;
		margin: 0 0 36px;
		text-align: center;
		letter-spacing: -1px;
	}
	.section p {
		margin: 0;
	}
	.section__contact {
		margin: 0 0 -75px;
	}
	.section__contact p {
		margin: 0 0 25px;
	}

.partners-list {
	width: 100%;
	position: relative;
	padding: 37px 0 41px;
}
	.partners__left {
		position: absolute;
		z-index: 3;
		left:0;
		top:0;
		background: url(../img/partners-l.png) repeat-y;
		width: 46px;
		height: 80px;
	}
	.partners__right {
		position: absolute;
		z-index: 3;
		right:0;
		top:0;
		background: url(../img/partners-r.png) repeat-y;
		width: 46px;
		height: 80px;
	}
	.partners-list__mask {
   		width: 100%;
    height: 120px;
		overflow: hidden;
		position: relative;
		z-index: 1;
	}
	.partners-list__slider {
		overflow: hidden;
		width: 9999px;
		position: relative;
	}
	.partners-list__slide {
		height: 120px;
		float: left;
		margin: 0 15px 0 0;
		white-space:nowrap;
		text-align: center;
    position:relative;
	}
	.partners-list__slide:after{
		content:'';
		display:inline-block;
		height:100%;
		width:1px;
		overflow:hidden;
		margin:0 0 0 -5px;
		vertical-align:middle;
	}
	.partners-list__slide img{
		vertical-align:middle;
		display:inline-block;
		white-space:normal;
		width:70%;
		opacity: 0.4;
	}
  .partners-shdw {
    position:absolute;
    z-index:10;
    left:0;
    top:0;
    width:100%;
    height:100%;
    background:url(../img/partners-shdw.png);
  }
  .partners-list__slide:hover img {
    -display:none;
	opacity: 1;
  }
/*  .partners-list__slide img:nth-child(2) {
    display:none;
  }
  .partners-list__slide:hover img:nth-child(2) {
    display:inline-block;
  } */
  #tooltip div {
    font-size:15px;
    line-height:17px;
    text-align:left;
    /*position:relative;*/
    z-index:10;
  }
  #tooltip {
    position:absolute;
    z-index:20;
    left:-100px;
    top:100px;
    display:block;
    padding:15px 18px;
    background:#fff;
	background-color: #fff;
    color:#3e3e3e;
    width:400px;
    border:1px solid #b1b1b1;
	/*opacity: 0.85;*/
  }


.burger-opener {
	float: left;
	width: 83px;
	height: 83px;
	margin: -9px 10px 0 -10px;
	background: url(../img/bg-nav-m.png) no-repeat 0 -415px;
	overflow: hidden;
	text-indent: -9999px;
	display: none;
}
.open .burger-opener {
	background:#25a4d3 url(../img/bg-nav-m.png) no-repeat 0 -332px;
}

.gallery-holder {
	max-width: 512px;
	margin: 0 auto;
	overflow: hidden;
	padding: 80px 0 68px;
	display: none;
}
.gallery-holder .gholder {
	width: 100%;
}
.gallery-holder .gholder:after {
	content:"";
	display:block;
	clear:both;
}
.gallery-holder .gmask-center {
	margin: 0;
}
.gallery-holder .gmask {
	position: relative;
	overflow: hidden;
	width: 100%;
	float: left;
}
.gallery-holder .gmask .slideset {
	position: relative;
	overflow: hidden;
	list-style: none;
	width: 99999px;
	float: left;
	padding: 0;
	margin: 0;
}
.gallery-holder .gmask .slideset_slide {
	font-size: 18px;
	line-height: 28px;
	float: left;
	width: 512px;
	min-height: 250px;
}
.gallery-holder .pagination{
	width: 100%;
	text-align: center;
	z-index: 2;
	padding: 30px 0 0;
}
.gallery-holder .pagination {
	display: inline-block;
	vertical-align: top;
}
.gallery-holder .pagination li {
	display: inline-block;
	vertical-align: top;
	margin: 0 13px;
	position: relative;
}
.gallery-holder .pagination a {
	display: block;
	width: 11px;
	height: 11px;
	border: 2px solid #fff;
	text-indent: -9999px;
	background: #fff;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	position: relative;
}
.gallery-holder .pagination .active a {
	background: none;
}


.staff-slider {
	max-width: 512px;
	margin: 0 auto;
	overflow: hidden;
	padding: 10px 0 18px;
	display: none;
}
.staff-slider .gholder {
	width: 100%;
}
.staff-slider .gholder:after {
	content:"";
	display:block;
	clear:both;
}
.staff-slider .gmask-center {
	margin: 0;
}
.staff-slider .gmask {
	position: relative;
	overflow: hidden;
	width: 100%;
	float: left;
}
.staff-slider__slideset {
	position: relative;
	overflow: hidden;
	list-style: none;
	width: 99999px;
	float: left;
	padding: 0;
	margin: 0;
	min-height: 540px !important;
}
.staff-slider_slide {
	font-size: 18px;
	line-height: 28px;
	float: left;
	width: 512px;
}

.staff-slider .pagination {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	text-align: center;
}
.staff-slider .pagination li {
	display: inline-block;
	vertical-align: top;
	margin: 0 10px;
	position: relative;
}
.staff-slider .pagination a {
	display: block;
	width: 11px;
	height: 11px;
	border: 2px solid #fff;
	text-indent: -9999px;
	background: #fff;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	border-radius: 7px;
	position: relative;
}
.staff-slider .pagination .active a {
	background: none;
}
.staff-slider .person {
	padding: 0;
}

/* beacuse of fixed header and on page menu * /
@media only screen and (min-width: 781px) {
	.cnt .area { padding-top:200px !important; margin-top:-170px !important; }
	.cnt .area #Demonstration { padding-top:200px !important; margin-top:-170px !important; }
	.cnt .area.board,
	.cnt .area.staff,
	.cnt .area.careers,
	.cnt .area.privacy,
	.cnt .area.events,
	.cnt .area:first-child { padding-top:200px !important; margin-top:0 !important; }
	.cnt.homepage .area  { padding-top:84px !important; margin-top:0 !important; }
} */
@media only screen and (min-width: 781px) {
	.cnt {
		padding-top:189px;
		margin-top:0;
	}
	.cnt.homepage  {
		padding-top:0;
		margin-top:0;
	}
}


.area {}
.area h2 {
	font-size: 36px;
	line-height: 40px;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 16px;
	letter-spacing: -1px;
}
.area p {
	margin: 0 0 20px;
}

.area.post {
	padding: 25px 0 0;
  	background:#fff url(../img/bg-post.jpg) no-repeat 50% 100%;
}
	.post__visual {
		padding: 15px 0 0;
	}
	.post__visual-left {
		float: left;
		width: 45%;
	}
	.post__visual-right {
		float: left;
		width: 55%;
	}
	.post__visua-txt {
		display: block;
		padding: 0;
		overflow: hidden;
	}
	.post__visual h4 {
		font-size: 36px;
		line-height: 40px;
		font-weight: 400;
		font-family: 'Montserrat', sans-serif;
		margin: 0 0 16px;
		letter-spacing: -1px;
	}
	.post__visual p {
	}
	.post__visual-img {
		display: block;
		position: relative;
	}
	.post__visual-img img {
		display: block;
		width: 100%;
		height: auto;
		vertical-align: top;
		position: relative;
		z-index: 1;
	}
	.post__visual-img .btn {
		position: absolute;
		z-index: 10;
		top:50%;
		left:50%;
		margin: -33px 0px 0px -102px;
		width: 220px;
		height: 28px;
	}
	.post__visual-img .middle-btns {
		position:absolute;
		left:50%;
		top:50%;
		white-space:nowrap;
	}
	.post__visual-img .middle-btns .frame {
		position:relative;
		left:-50%;
	}
	.post__visual-img .middle-btns .btn {
		display:block;
		width:auto;
		margin:0;
		position:relative;
		left:0;
		top:0;
	}
	.post__visual-img .middle-btns .frame:before {
		content:'';
		display:inline-block;
		height:1px;
		width:0;
		overflow:hidden;
	}
	.post__visual-img .middle-btns  .holder {
		position:relative;
		display:inline-block;
		vertical-align:middle;
		margin:-50% 0 ;
	}
	.post__visual-img .middle-btns .btn:first-child ~ .btn {
		margin-top:10px;
	}
	.trial {
		padding: 45px 0 33px 0;
		background: #ddf3da url(../img/bg-trial.jpg) no-repeat 50% 100%;
		clear:both;
	}


	.trial__inner {
		padding: 9px 200px 0 0;
		position: relative;
	}
	.trial__img {
		position: absolute;
		z-index: 1;
		right: -38px;
		top: -26px;
		width: 239px;
		height: 239px;
	}
	.trial__img img {
		display: block;
		vertical-align: top;
		width: 100%;
		height: auto;
	}


#Resources.container { min-height: 250px; }
.container {
	padding: 30px 0;
}
.container h2 {
	font-size: 36px;
	line-height: 40px;
	font-weight: 400;
	font-family: 'Montserrat', sans-serif;
	margin: 0 0 16px;
	letter-spacing: -1px;
}
.container p {
	margin: 0 0 9px;
}
.links {
	padding: 0 0 2px;
	/* width: 60%; */
}

	.links li {
		display: inline-block;
		vertical-align: top;
		width: 33%;
		margin: 0 0 10px;
	}
.container .btn {
	padding: 16px 26px;
}

.area.entry {
	padding: 25px 0 19px;
	background: #ffffff;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlYmY1ZmEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #ffffff 50%, #ebf5fa 90%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(50%,#ffffff), color-stop(90%,#ebf5fa));
	background: -webkit-linear-gradient(top,  #ffffff 50%,#ebf5fa 90%);
	background: -o-linear-gradient(top,  #ffffff 50%,#ebf5fa 90%);
	background: -ms-linear-gradient(top,  #ffffff 50%,#ebf5fa 90%);
	background: linear-gradient(to bottom,  #ffffff 50%,#ebf5fa 90%);
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ebf5fa',GradientType=0 );*/
	min-height: 100px;
}
.area.entry_big {
	padding: 35px 0 25px;
}
/* .area.entry_big .case {
	padding-top: 30px !important;
} */
.area.entry p {
	margin: 0 0 13px;
}


.area.staff {
	background:#fdf7f1 url(../img/bg-staff.jpg) no-repeat 50% 100%;
	padding: 30px 0 9px;
}
.staff-list {
	padding: 10px 0 0;
}
.staff-list li {
	display: inline-block;
	vertical-align: top;
	width: 49%;
	padding: 12px 0 11px;
}
.staff-list li:nth-child(odd) .staff__item {
	padding: 0 55px 0 0;
}
.staff-list li:nth-child(even) .staff__item {
	padding: 0 0 0 65px;
}
.staff__item-top {
	overflow: hidden;
	padding: 0 0 14px;
}
.staff__item-photo {
	float: left;
	width: 161px;
	height: 161px;
	margin: 0 7% 0 0;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transition:all .3s ease;
	-moz-transition:all .3s ease;
	-ms-transition:all .3s ease;
	-o-transition:all .3s ease;
	transition:all .3s ease;
}
.staff__item-photo img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	display: block;
	width: 100%;
	height: auto;
}
.staff__item-name {
	font-size: 21px;
	line-height: 27px;
	font-family: 'Montserrat', sans-serif;
	overflow: hidden;
	height: 161px;
}
.staff__item-name h3 {
	font-size: 26px;
	line-height: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	margin: 0 0 11px;
}
.staff__item-name-in {
	display: table;
	width: 100%;
	height: 100%;
}
.staff__item-name-fr {
	display: table-cell;
	width: 100%;
	vertical-align: middle;
}

.area.board {
	padding: 30px 0 15px;
	background:#f3f7fa url(../img/bg-board.jpg) no-repeat 50% 100%;
}
.area.board_blue {
	font-size: 18px;
	line-height: 32px;
	padding: 45px 0 45px;
	color: #002553;
}
.area.board_blue h2 {
	color: #000;
	margin: 0 0 21px;
}
.area.board_blue .btn__holder {
	padding: 5px 0 0;
}
.area.board_blue .btn {
	padding: 16px;
}

.person-list__wrap {
	overflow: hidden;
	width: 100%;
	position: relative;
}
.person-list {
	margin: 0 0 0 -80px;
	padding: 16px 0 0;
}
.person-list li {
	display: inline-block;
	vertical-align: top;
	width: 32%;
}
.person {
	padding: 0 0 0 80px;
}
.person__top {
	margin: 0 0 10px;
}
.person__photo {
	width: 161px;
	height: 161px;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	overflow: hidden;
	-webkit-transition:all .3s ease;
	-moz-transition:all .3s ease;
	-ms-transition:all .3s ease;
	-o-transition:all .3s ease;
	transition:all .3s ease;
	margin: 0 0 23px;
}
.person__photo img {
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	display: block;
	width: 100%;
	height: auto;
}
.person__name {
	font-size: 26px;
	line-height: 30px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	margin: 0 0 5px;
	display: block;
}
.area.careers {
	padding: 36px 0 38px;
	background: #ffffff;
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlYmY1ZmEiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  #ffffff 0%, #ebf5fa 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#ebf5fa));
	background: -webkit-linear-gradient(top,  #ffffff 0%,#ebf5fa 100%);
	background: -o-linear-gradient(top,  #ffffff 0%,#ebf5fa 100%);
	background: -ms-linear-gradient(top,  #ffffff 0%,#ebf5fa 100%);
	background: linear-gradient(to bottom,  #ffffff 0%,#ebf5fa 100%);
}
	.area.careers p{
		margin: 0 0 14px;
	}
	.area.careers .btn__holder {
		padding: 16px 0 0;
	}

	.area.contacts {
		padding: 40px 0;
	}

	.area.article {
		padding:24px 0 50px;
	}
	.area.article_partners {
		padding:32px 0 12px;
	}
	.date {
		display: inline-block;
		vertical-align: top;
		color: #ff961a;
		font-style: normal;
	}
	.area.article .date {
		display: block;
		margin: -3px 0 2px;
	}
	.area.article p {
		margin: 0 0 32px;
	}

.area.jobs {
	padding: 1px 0 69px;
	background: #fff url(../img/bg-jobs.jpg) no-repeat 50% 0;
}
	.accordion {}
	.accordion li{
		padding: 29px 0 20px;
		border-bottom: 3px solid #f8f6f7;
	}
	.accordion .opener {
		font-size: 36px;
		line-height: 40px;
		font-family: 'Montserrat', sans-serif;
		display: block;
		padding: 0 0 15px 33px;
		position: relative;
		color: #002553;
		word-spacing: -8px;
	}
	.accordion .opener .ico {
		position: absolute;
		left:0;
		top:7px;
		width: 23px;
		height: 23px;
		background: url(../img/ico-acordion.png) no-repeat;
	}
	.accordion .active .opener .ico {
		background-position: 0 -24px;
	}
	.accordion__slide {
		font-size: 16px;
		line-height: 28px;
		padding: 0 0 0 33px;
		/*display: none;*/
	}
	.accordion__slide strong {
		font-weight: 600;
	}
	.area.jobs .accordion p {
		padding: 0 0 6px;
		margin: 0;
	}

.partners {
	padding: 12px 0 0;
}
	.partners__item {
		overflow: hidden;
		padding: 0 0 25px;
	}
	.partners__img {
		float: left;
		width: 200px;
		margin: 8px 50px 0 0;
		text-align: -webkit-center
	}
	.partners__img img {
		display: block;
		vertical-align: top;
        max-width: 200px;
	}
	.partners__cnt {
		overflow: hidden;
	}

.area.faq {
	padding:23px 0 106px;
	background: url(../img/bg-faq.jpg) no-repeat 50% 100%;
}
	.faq__list {}
		.faq__list li {
			padding: 0 0 4px;
		}
		.faq__list h3 {
			font-size: 15px;
			padding: 0 0 3px 32px;
			font-weight: 700;
			color: #034275;
			position: relative;
			word-spacing: 1px;
		}
		.faq__list p {
			margin: 0 0 8px;
		}
		.faq__list .ico_faq {
			position: absolute;
			left:1px;
			top:4px;
			width: 21px;
			height: 22px;
			background: url(../img/ico-faq.png) no-repeat;
		}

.area.blog,
.area.articles {
	padding: 23px 0 26px;
	background: rgb(255,255,255);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNjY2U2ZjYiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(204,230,246,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(204,230,246,1)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(204,230,246,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(204,230,246,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(204,230,246,1) 100%);
	background: linear-gradient(to bottom,  rgba(245,245,245,1) 0%,rgba(204,230,246,1) 100%);
	/*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#cce6f6',GradientType=0 );*/
}
.area.articles h2,
.area.pressreleases h2,
.area.blog h2,
.area.events h2 {
	margin: 0 0 12px;
}
.cnt .back-link {
	font-size: 18px;
	color: #25a4d3;
	display: none;
}
.cnt .back-link a {
	color: #25a4d3;
}
.cnt .area.jobs .back-link {
	padding: 20px 0 0;
}
.area.pressreleases {
	padding: 24px 0;
	background:#e8e0dd url(../img/bg-releases.jpg) no-repeat 50% 100%;
}
.area.blog {
	padding: 24px 0;
	background:#fff url(../img/bg-events.jpg) no-repeat 50% 100%;
}
.area.events {
	padding: 24px 0;
	background:#fff url(../img/bg-events.jpg) no-repeat 50% 100%;
}
.listing {
	padding: 1px 0 0;
}
	.listing li {
		padding: 0 0 14px;
	}
	.listing .date {
		color: #ff961a;
		display: block;
		font-style: normal;
		margin: 0 0 -5px;
	}
	.listing h3 {
		font-size: 18px;
		font-weight: 600;
		color: #000;
		margin: 0 0 3px;
	}
	.listing h3 a {
		color: #000;
	}
	.listing h3 a:hover {
		text-decoration: underline;
	}

.area.articles p,
.area.pressreleases p,
.area.blog p,
.area.events p {
	margin: 0 0 12px;
}

.area.product,
.area.sign-area {
	padding: 24px 0 36px;
	background: url(../img/bg-releases.jpg) no-repeat 50% 100% #e8e0dd;
}
.area.product {padding-bottom:0;}
.area.product .btn {margin-top:10px;}

.area.terms {
	padding: 30px 0 28px;
	background: url(../img/bg-events.jpg) no-repeat 50% 100%;
}
.area.privacy {
	padding: 30px 0 28px;
	background: rgb(255,255,255);
	background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmMGYyZjAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
	background: -moz-linear-gradient(top,  rgba(255,255,255,1) 0%, rgba(240,242,240,1) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(240,242,240,1)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(240,242,240,1) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(240,242,240,1) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,1) 0%,rgba(240,242,240,1) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,1) 0%,rgba(240,242,240,1) 100%);
}
.area.terms p {
	margin: 0 0 12px;
}
.area.privacy p {
	margin: 0 0 12px;
}


@media screen and (max-width: 960px) {
	.case {
		padding: 0 20px;
	}
	.nav__drop-inner {
		padding-right: 10px;
		padding-left: 10px;
		width: auto;
	}
	.sign__drop .form__holder {
		padding-right: 10px;
		padding-left: 10px;
		width: auto;
	}
	.form_search {
		padding-right: 10px;
		padding-left: 10px;
		width: auto;
	}

	.carousel__slide {
		font-size: 16px;
		line-height: 25px;
	}
	.carousel__slide .case {
		padding-left: 70px;
		padding-right: 70px;
		padding-top: 140px;
	}
	.carousel__slide h2 {
		font-size: 50px;
		margin-bottom: 20px;
	}
	.carousel__visual img {
		width: 70%;
	}
	.carousel__slide03 .carousel__visual img {
		width: 80%;
	}


	.promo {
		min-height: 20px;
	}
	.promo__ttl {
		font-size: 50px;
	}
	.promo__mask {
		width: 512px;
		margin: 0 auto;
	}
	.promo__slider {
		width: 9999px;
	}
	.promo__slide {
		width: 492px;
		padding: 0 0 0 20px;
	}
	.promo__txt {
		font-size: 23px;
	}
	.promo__visual img {
		width: 80%;
	}

	.ftr__left {
		float: none;
		width: auto;
		padding: 0 0 10px;
	}
	.ftr__right {
		float: none;
		width: auto;
		text-align: center;
	}
	.ftr__col01 {
		width: 70%;
	}
	.ftr__col02 {
		width: 30%;
	}

	.ftr__social {
		text-align: center;
	}
	.ftr__social li {
		display: inline-block;
		vertical-align: top;
		float: none;
	}
	.ftr__copy {
		text-align: center;
	}
	.gallery-holder {
		display: block;
	}
	.promo__features {
		display: none;
	}
	.staff-list {
		display: none;
	}
	.person-list {
		display: none;
	}
	.staff-slider {
		display: block;
	}
    
    .carousel__slider { min-height: 605px; }
}

@media only screen and (max-width: 900px) {
	.hdr.homepage {
		height: 84px;
	}
	.nav__drop {
		font-size: 14px;
	}
	.nav__drop-ttl {
		font-size: 16px;
	}
	.sign__left {
		float: none;
		width: auto;
		border-width: 0 0 1px;
		border-color: #60b8d9;
		border-style: solid;
		margin: 0 0 20px;
		padding: 0 0 20px;
	}
	.sign-area .sign__left {
		border-width: 0 0 2px;
		border-color: #cfcfcf;
	}
	.sign__divider {
		line-height: 30px;
		left:50%;
		bottom: -15px;
		margin: 0 0 0 -22px;
		top:auto;
		width: 45px;
		height: 30px;
		text-align: center;
	}
	.form__info {
		text-align: right;
	}
	.form__links {
		display: inline-block;
		vertical-align: top;
		float: none;
	}
	.sign-area .sign__divider {
		background: #fff;
	}
	.form__keep {
		float: left;
		width: 140px;
	}

	.sign__right {
		float: none;
		width: auto;
	}
	.form_sign .form__row {
		padding: 0 0 20px;
	}
	.sign__right .form_sign .form__row {
		padding: 0;
	}
	.form_sign .form__col {
		width: auto;
		float: none;
		padding: 0 0 20px;
		margin: 0;
	}

	.add-nav {
		display: none;
	}
	.topbar {
		height: 76px;
	}
	.topbar .topbar__img {
		height: 76px;
	}
	.topbar__ttl {
		padding: 20px 0 0;
		font-size: 38px;
		line-height: 42px;
	}
	.back-link {
		display: none;
	}
	.cnt .back-link {
		display: block;
		padding: 0 0 10px;
	}
	.hdr {
		height: 159px;
	}
	.cnt {
		padding-top: 159px;
	}

	.trial__inner {
		padding: 0;
	}
	.trial__inner .btn__holder {
		text-align: right;
		padding: 20px 0 0 40px;
	}
	.trial__img {
		left:0;
		bottom: -30px;
		top:auto;
		right: auto;
		margin: 0 0 10px;
		width: 150px;
		height: 150px;
	}
	.trial__inner .btn {
		padding-left: 30px;
		padding-right: 30px;
	}


	.links {
		width: 100%;
	}
	.links li {
		width: 47%;
		display: inline-block;
		vertical-align: top;
		padding: 0 1% 0 0;
	}
	.links a:hover {
		text-decoration: underline;
	}

	.staff__item-photo {
		width: 120px;
		height: 120px;
	}
	.staff__item-name {
		height: 120px;
	}
	.staff__item-name h3 {
		font-size: 23px;
		line-height: 30px;
	}
	.staff__item-name {
 		font-size: 18px;
		line-height: 24px;
	}
	.person-list li {
		width: 49%;
	}

  .menu__item {
    width:13%;
  }



}

@media only screen and (max-width: 780px) {

	.hdr {
		height: 159px;
	}
	.hdr.homepage {
		height: 84px;
	}
	.hdr__holder {
		padding: 9px 0;
		height: 65px;
	}
	.hdr .case {
		padding: 0 10px;
	}

	.nav__drop,
	.sign__drop,
	.search__drop {
		top:73px;
	}

	.navigation .nav {
		display: none;
	}
    .burger-nav,
	.burger-opener {
		display: block;
	}
	.sign {
		margin: -9px 0;
		padding: 0;
	}
   	.sign__link {
		display: block;
		height: 83px;
		width: 83px;
		overflow: hidden;
		text-indent: -9999px;
		background: url(../img/bg-nav-m.png) no-repeat 0 -249px;
	}
	.sign:hover .sign__link {
		background-position: 0 -166px;
	}
	.search {
		margin: -9px 0;
		padding: 0;
	}
	.search-btn {
		display: block;
		height: 83px;
		width: 83px;
		overflow: hidden;
		text-indent: -9999px;
		background: url(../img/bg-nav-m.png) no-repeat 0 -83px;
	}
	.search:hover .search-btn {
		background: url(../img/bg-nav-m.png) no-repeat 0 0;
	}

	/*  Nav Drawer Layout  */
	.burger-nav {
		position: relative;
	}
	.burger-nav ul {
		height: 100%;
		overflow-y: auto;
	}
	.burger-nav li {
		display: block;
		float: none;
	}
	.burger-nav li a.logo {
		display: none;
	}

	/* NAVIGATION ANNIMATION */
	.burger-nav {
		width: 263px;
		height: 100%;
		position: fixed;
		z-index: 1;
		left: 0;
		top: 0;
		margin: 0;
		/* starting point */
		-webkit-transform: translate3d(240px,0,0)scale(.97);
		-moz-transform: translate3d(240px,0,0)scale(.97);
		transform: translate3d(240px,0,0)scale(.97);
	}

	/*Nav Expanding Open Effect*/
	.burger-nav.open {
		opacity: 1;

		-webkit-transform: translate3d(0,0,0)scale(1);
		-webkit-animation: slideIn .35s ease-in-out;

		-moz-transform: translate3d(0,0,0)scale(1);
		-moz-animation: slideIn .35s ease-in-out;

		transform: translate3d(0,0,0)scale(1);
		animation: slideIn .35s ease-in-out;
	}
	@-webkit-keyframes slideIn {
		0%       {opacity: .3;
			-webkit-transform: translate3d(240px,0,0)scale(.97);}
		100%  {opacity: 1;
			-webkit-transform: translate3d(0,0,0)scale(1);}
	}
	@-moz-keyframes slideIn {
		0%      {opacity: .3;
			-moz-transform: translate3d(240px,0,0)scale(.97);}
		100%  {opacity: 1;
			-moz-transform: translate3d(0,0,0)scale(1);}
	}
	@keyframes slideIn {
		0%      {opacity: .3;
			transform: translate3d(240px,0,0)scale(.97);}
		100%  {opacity: 1;
			transform: translate3d(0,0,0)scale(1);}
	}

	/*Nav Shrinking Closed Effect*/
	.burger-nav.close {
		opacity: .3;

		-webkit-transform: translate3d(240px,0,0)scale(.97);
		-webkit-animation: slideOut .3s ease-in-out;

		-moz-transform: translate3d(240px,0,0)scale(.97);
		-moz-animation: slideOut .3s ease-in-out;

		transform: translate3d(240px,0,0)scale(.97);
		animation: slideOut .3s ease-in-out;
	}
	@-webkit-keyframes slideOut {
		0%      {opacity: 1;
			-webkit-transform: translate3d(0,0,0)scale(1);}
		100%  {opacity: .3;
			-webkit-transform: translate3d(240px,0,0)scale(.97);}
	}
	@-moz-keyframes slideOut {
		0%      {opacity: 1;
			-moz-transform: translate3d(0,0,0)scale(1);}
		100%  {opacity: .3;
			-moz-transform: translate3d(240px,0,0)scale(.97);}
	}
	@keyframes slideOut {
		0%      {opacity: 1;
			transform: translate3d(0,0,0)scale(1);}
		100%  {opacity: .3;
			transform: translate3d(240px,0,0)scale(.97);}
	}

	/* CONTENT ANNIMATION */
	.page {
		/* starting point */
		margin: 0;
	}
	/*Content Sliding Open Effect*/
	.page.open
	{
		margin: 0 0 0 240px;
		-webkit-animation: open .5s ease-in-out;
		-moz-animation: open .5s ease-in-out;
		animation: open .5s ease-in-out;
	}
	@-webkit-keyframes open {
		0%    {margin: 0 0 0 0px;}
		70%   {margin: 0 0 0 240px;}
		100%  {margin: 0 0 0 240px;}
	}
	@-moz-keyframes open {
		0%    {margin: 0 0 0 0px;}
		70%   {margin: 0 0 0 240px;}
		100%  {margin: 0 0 0 240px;}
	}
	@keyframes open {
		0%    {margin: 0 0 0 0px;}
		70%   {margin: 0 0 0 240px;}
		100%  {margin: 0 0 0 240px;}
	}

	/*Content Sliding Closed Effect*/
	.page.close
	{
		margin: 0 0 0 0;
		-webkit-animation: close .3s ease-in-out;
		-moz-animation: close .3s ease-in-out;
		animation: close .3s ease-in-out;
	}
	@-webkit-keyframes close {
		0%    {margin: 0 0 0 240px;}
		100%  {margin: 0 0 0 0;}
	}
	@-moz-keyframes close {
		0%    {margin: 0 0 0 240px;}
		100%  {margin: 0 0 0 0;}
	}
	@keyframes close {
		0%    {margin: 0 0 0 240px;}
		100%  {margin: 0 0 0 0;}
	}


	.ftr__col01 {
		float: left;
		width: 49%;
	}
	.ftr__col02 {
		float: left;
		width: 49%;
	}
	.ftr__nav {
		display: block;
		float: none;
		width: 100%;
	}
	.ftr__col02 .ftr__nav {
		text-align: right;
		width: 100%;
	}
	.ftr__nav-drop {
		display: none;
	}
	.ftr__nav-link {
    	font-size: 16px;
    	line-height: 20px;
		display: inline-block;
		vertical-align: top;
		padding: 0 25px 0 0;
   	 	white-space:nowrap;
	}
	.ftr__col02 .ftr__nav-link {
		padding: 0 0 0 25px;
	}
	.ftr__nav-has-drop .ftr__nav-link,
	.ftr__nav-has-drop .ftr__nav-link:hover {
		background: url(../img/arrow01.png) no-repeat 100% 4px;
	}
	.ftr__col02 .ftr__nav-has-drop .ftr__nav-link,
	.ftr__col02 .ftr__nav-has-drop .ftr__nav-link:hover {
		background: url(../img/arrow01.png) no-repeat 0 4px;
	}

	.ftr .menu__item {
		display: inline-block;
		vertical-align: top;
		width: 49%;
		padding: 0 0 10px;
	}
	.ftr_mobile .menu__sub {
		display: none;
	}
	.ftr .nav__drop-ttl {
		font-size: 16px;
		line-height: 20px;
		display: inline-block;
		vertical-align: top;
		padding: 0 25px 0 0;
		white-space:nowrap;
	}
	.ftr .ftr__nav-has-drop .nav__drop-ttl {
		background: url(../img/arrow01.png) no-repeat 100% 4px !important;
	}
	.ftr .menu__item.ftr__nav-has-drop:nth-child(even) .nav__drop-ttl,
	.ftr .menu__item.ftr__nav-has-drop:nth-child(even) .nav__drop-ttl:hover {
		padding: 0 0 0 25px;
		background: url(../img/arrow01.png) no-repeat 0 4px !important;
	}
	.ftr .menu__item:nth-child(even) {
		text-align: right;
	}

   .post__visual-left {
	   float: none;
	   width: 100%;
	   padding: 0 0 20px;
   }
	.post__visual-right {
		float: none;
		width: 100%;
		padding: 0;
	}
	.post__visua-txt {
		padding: 0;
		font-size: 22px;
		line-height: 28px;
	}

	.staff-list li {
		display: block;
		width: 100%;
	}
	.staff-list li .staff__item {
		padding: 0 !important;
	}
	.staff__item-photo {
		width: 160px;
		height: 160px;
	}
	.staff__item-name {
		height: 160px;
	}
	.staff__item-name h3 {
		font-size: 30px;
		line-height: 34px;
	}
	.staff__item-name {
		font-size: 22px;
		line-height: 26px;
	}
	.person-list li {
		width: 100%;
		display: block;
	}
	.person__top {
		overflow: hidden;
	}
	.person__photo {
		width: 160px;
		height: 160px;
		float: left;
		margin: 0 4% 0 0;
	}
	.person__name {
		overflow: hidden;
		display: block;
		vertical-align: middle;
		margin: 55px 0 0;
	}


	.form_contact {
		width: 100%;
	}
	.form_contact .form__left {
		float: none;
		margin: 0 0 5px;
		text-align: left;
		width: 100%;
	}
	.form_contact .form__right {
		float: none;
		padding: 0;
		margin: 0;
	}
	.form_contact .form__row {
		padding: 0 0 5px;
	}

	.form_contact .form__btm {
		padding: 10px 0 0;
	}

	.partners__img {
		float: none;
		display: block;
		width: 100%;
		padding: 0 0 15px;
		margin: 0;
	}
	.cnt {
		padding-top:159px;
		margin-top:0;
	}
	.cnt.homepage  {
		padding-top:0; /*design*/
		margin-top:0;
	}
    
    .carousel__slider { min-height: 925px; }
}


@media only screen and (max-width: 550px) {

  body {
    font-size: 14px;
    line-height: 24px;
  }
  .logo {
    width: 89px;
    height:21px;
    background-size:89px 21px;
    margin:20px -38px 0 0;
  }
  .hdr .case.line { padding: 0 10px; }
  .topbar__img img {display:none;}

  .promo__mask {
    width: 300px;
    margin: 0px auto;
  }
  .promo__slide {
    width:300px;
    padding:0;
  }
  .promo__slide-top img {
    left:0;
  }
  .promo__slide-top {
    padding: 20px 0px 21px 105px;
  }
  .burger-opener {
    /*margin-right:5px;*/
    width:75px;
  }
  .search-btn {
    width:70px;
    background: url('../img/bg-nav-m.png') no-repeat scroll 4px -54px;
    background-size: 90%;
  }
  .search:hover .search-btn {
    background: url(../img/bg-nav-m.png) no-repeat 4px 8px;
    background-size: 90%;
  }
  .sign__link {
    width:70px;
    background: url(../img/bg-nav-m.png) no-repeat 4px -180px;
    background-size: 90%;
  }
  .sign:hover .sign__link {
    background-position: 4px -117px;
    background-size: 90%;
  }
  .form_sign .form__info {
    padding: 0px 0px 13px 10px;
  }

  .carousel__slide .case {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 140px;
  }
  .carousel__slide h2 {
    font-size: 30px;
    line-height:34px;
    margin-bottom: 10px;
  }
  .carousel__slide {
    font-size:15px;
    line-height:22px;
  }
  .promo__ttl {
    font-size:40px;
  }
  .section__ttl {
    font-size:40px;
  }

  .promo__visual img {
    width: 100%;
  }
  .btn {
    font-size:14px;
    line-height:20px;
    padding: 16px 16px;
  }
  .btn_pdf {
    padding: 15px 16px;
  }
  .btn_pdf .ico_pdf {
	  background-size: 22px 22px;
	  margin: 0 5px -7px 0;
	  width: 22px;
	  height: 22px;
  }
  .promo__visual .btn {
    margin:0 5px;
  }
  .promo__visual .btn__holder {
    margin: -29px 0;
  }
  .promo__slide h3 {
    font-size: 30px;
    line-height: 36px;
  }
  .promo__slide {
    font-size:16px;
    line-height:26px;
  }
  .section {
    font-size:16px;
    line-height:26px;
  }
  .ftr__col01 {
    float:none;
    width:100%;
  }
  .ftr__col02 {
    float:none;
    width:100%;
    text-align:left;
  }
  .ftr__col02 .ftr__nav {
    text-align:left;
  }
  .ftr__col02 .ftr__nav-link {
    padding: 0 25px 0 0;
  }
  .ftr__nav-has-drop .ftr__nav-link {
    background: url(../img/arrow01.png) no-repeat 100% 4px;
  }
  .ftr__col02 .ftr__nav-has-drop .ftr__nav-link {
    background: url(../img/arrow01.png) no-repeat 100% 4px;
  }

	.topbar {
		overflow: hidden;
	}
	.topbar__ttl {
		padding: 23px 0 0;
		font-size: 30px;
		line-height: 34px;
	}
	.topbar__img {
		margin: 40px 0 0 -200px;
		width: 200px;
	}
	.topbar__back-link {
		display: none;
	}

	.column__top {
		min-height: 110px;
		padding: 0 0 0 150px;
	}
	.column__inner {
		padding: 9px 0 0 0;
	}

	.links li {
		display: block;
		width: 100%;
	}

	.staff__item-photo {
		width: 130px;
		height: 130px;
	}
	.staff__item-name {
		height: 130px;
	}
	.staff__item-name h3 {
		font-size: 22px;
		line-height: 28px;
	}
	.staff__item-name {
		font-size: 18px;
		line-height: 22px;
	}

	.person__photo {
		width: 130px;
		height: 130px;
		float: left;
		margin: 0 4% 0 0;
	}
	.person__name {
		overflow: hidden;
		display: block;
		vertical-align: middle;
		margin: 35px 0 0;
	}
	.ftr .menu__item {
		display: block;
		vertical-align: top;
		width: 100%;
	}
	.ftr .ftr__nav-has-drop .nav__drop-ttl {
		font-size: 16px;
		line-height: 20px;
		display: inline-block;
		vertical-align: top;
		padding: 0 25px 0 0;
		white-space:nowrap;
		background: url(../img/arrow01.png) no-repeat 100% 4px !important;
	}
	.ftr .menu__item.ftr__nav-has-drop:nth-child(even) .nav__drop-ttl,
	.ftr .menu__item.ftr__nav-has-drop:nth-child(even) .nav__drop-ttl:hover{
		padding: 0 25px 0 0;
		background: url(../img/arrow01.png) no-repeat 100% 4px !important;
	}
	.ftr .menu__item:nth-child(even) {
		text-align: left;
	}

  #tooltip {
    width:300px;
    font-size:13px;
  }

	.staff-slider__slideset {
		min-height: 615px !important;
	}
	.board  .staff-slider__slideset {
		min-height: 520px !important;
	}

	.post__visual-img .btn {
		margin: -27px 0px 0px -63px;
		width: 127px;
		height: 20px;
	}
}

@media only screen and (max-width: 479px) {
	.staff-slider__slideset {
		min-height: 730px !important;
	}
	.board  .staff-slider__slideset {
		min-height: 600px !important;
	}

	.carousel__prev,
	.carousel__next { display:none; }
    
    .carousel__slider { min-height: 575px; }
}



/*custom select*/
/* hide original element */
.jcf-hidden {
	display: block !important;
	position: absolute !important;
	left: -9999px !important; /* change to right: -9999px on RTL sites */
}
/* custom select styles */
.select-area {
	border: 1px solid #c5dfd2;
	position: relative;
	overflow: hidden;
	cursor: default;
	height: 41px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	float: left;
}
.select-focus {
	/*border-color: #f00;*/
}
.select-area .center {
	white-space: nowrap;
	padding: 10px 11px;
	display: block;
	overflow: hidden;
}
.select-disabled {
	background: #eee;
}
.select-area .select-opener {
	position: absolute;
	height: 41px;
	width: 42px;
	right: 0;
	top: 0;
	background: url(../img/select-dropdown.png) no-repeat;
}
.select-options {
	position: absolute;
	overflow: hidden;
	background: #fff;
	z-index: 2000;
}
.select-options .drop-holder {
	border: 1px solid #c5dfd2;
	overflow: hidden;
	height: 1%;
	-webkit-border-radius:0 0 3px 3px;
	-moz-border-radius: 0 0 3px 3px;
	border-radius: 0 0 3px 3px;
}
.select-options ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.select-options ul li {
	width: 100%;
	float: left;
}
.select-options ul a {
	text-decoration: none;
	padding: 5px 10px;
	display: block;
	cursor: default;
	color: #000;
	height: 1%;
}
.select-options .item-selected a {
	text-decoration: none;
	background: #c5dfd2;
	color: #fff;
}
.select-area img, .select-options a img {
	vertical-align: top;
	margin: 0 5px 0 0;
}
/* select options optgroup example styles */
.select-options .optgroup {
	clear: both;
}
.select-options .optgroup strong {
	display: block;
	padding: 5px;
}
.select-options .optgroup ul a {
	padding-left: 30px;
}
/* multiple select styles */
.select-multiple-area {
	border: 1px solid #777;
	clear: both;
}
.select-multiple-area .multiple-list{
	border: none;
	position: static;
}
.select-multiple-area .multiple-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.select-multiple-area .multiple-list li {
	margin: 0;
}
.select-multiple-area .multiple-list a:hover {
	text-decoration: none;
	background: #fff;
	color: #000;
}
.select-multiple-area .multiple-list a {
	display: block;
	cursor: default;
	padding: 5px;
	color: #000;
}
.select-multiple-area .multiple-list .item-selected a {
	background: #007;
	color: #fff;
}
.select-multiple-area .multiple-list .optgroup strong {
	display: block;
	padding: 5px;
}
.select-multiple-area .multiple-list .optgroup a {
	padding-left: 30px;
}
.select-disabled  .multiple-list .item-selected a {
	background: #777;
}
.live-example fieldset .select-multiple-area .scrollable-area-wrapper {
	margin: 0;
}

p.mark {font-weight: 600;}
.message { background-color: #cfc; padding: 20px; margin-bottom: 20px; color: #090; display:none;}
.message.error { background-color: #fcc; color: #900;}
.jsInfoDesc {display: none;}
/*bottom in css*/

ol {
	margin:0 0 20px;
	padding:0;
	width:100%;
	overflow:hidden;
	counter-reset:item;
}
ol ol{
	margin: 0 0 0 -49px;
	padding: 0;
}
ol ol ol {
	margin: 0 0 0 -49px;
}
ol li {
	padding:0 0 0 49px;
}
ol li:before,
ol .num {
	float:left;
	width:49px;
	margin:0 0 0 -49px;
	content:counters(item, ".") ". ";
	counter-increment:item;
}


.tabset {
	list-style:none;
	margin:0;
	padding:0;
	overflow:hidden;
	display:inline-block;
	vertical-align:top;
	position:relative;
	top:4px;
}
.tabset li {
	float:left;
	margin:0 5px 0 0;
}
.tabset a {
	float:left;
	padding:4px 10px;
	background:#ccc;
	color:#fff;
}
.tabset a.active {background:#8ec6e1;}
.tabset a:hover {
	background:#bbb;
	text-decoration:none;
}
.tabset a.active:hover {background:#7bbad8;}
.tab .see-more .see-more__link.active {
	overflow:hidden;
	font-size:0;
}
.tab .see-more .see-more__link.active:before {
	content:'READ LESS';
	text-indent:0;
	float:left;
	margin:0 0 0 -999xp;
	font-size:16px;
}
.area .heading {margin:0 0 12px;}
.area .heading h2 {
	display:inline-block;
	vertical-align:top;
	margin:0 10px 0 0;
}
