/* FONTS
*********************************/
@font-face {
	font-family: 'SegoeUi Bold';
	src: url('../fonts/segoe_ui_bold.eot');
	src: url('../fonts/segoe_ui_bold.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/segoe_ui_bold.woff') format('woff'),
		 url('../fonts/segoe_ui_bold.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'SegoeUi Light';
	src: url('../fonts/segoe_ui_light.eot');
	src: url('../fonts/segoe_ui_light.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/segoe_ui_light.woff') format('woff'),
		 url('../fonts/segoe_ui_light.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

/* RESET
*********************************/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
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;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* ANIMATIONS
*********************************/

/* fadeIn */
.fadeIn {
	visibility: visible !important;
	animation-name: fadeIn;
	-webkit-animation-name: fadeIn;

	animation-duration: 1s;
	-webkit-animation-duration: 1s;

	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
}

@keyframes fadeIn {
	0% {
		transform: scale(0);
		opacity: 0.0;
	}
	100% {
		transform: scale(1);
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		-webkit-transform: scale(0);
		opacity: 0.0;
	}
	100% {
		-webkit-transform: scale(1);
		opacity: 1;
	}		
}


/* slideDown */
.slideDown {
	visibility: visible !important;
	animation-name: slideDown;
	-webkit-animation-name: slideDown;

	animation-duration: 1s;
	-webkit-animation-duration: 1s;

	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
}

@keyframes slideDown {
	0% {
		transform: translateY(-100%);
	}
	100% {
		transform: translateY(0%);
	}
}

@-webkit-keyframes slideDown {
	0% {
		-webkit-transform: translateY(-100%);
	}
	100% {
		-webkit-transform: translateY(0%);
	}
}

/* slideUp */
.slideUp {
	visibility: visible !important;
	animation-name: slideUp;
	-webkit-animation-name: slideUp;

	animation-duration: 1s;
	-webkit-animation-duration: 1s;

	animation-timing-function: ease;
	-webkit-animation-timing-function: ease;
}

@keyframes slideUp {
	0% {
		transform: translateY(100%);
	}
	100% {
		transform: translateY(0%);
	}
}

@-webkit-keyframes slideUp {
	0% {
		-webkit-transform: translateY(100%);
	}
	100% {
		-webkit-transform: translateY(0%);
	}
}

/* slideLeft */
.slideLeft{
	visibility: visible !important;
	animation-name: slideLeft;
	-webkit-animation-name: slideLeft;

	animation-duration: 1s;
	-webkit-animation-duration: 1s;

	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
}

@keyframes slideLeft {
	0% {
		transform: translateX(150%);
	}
	100% {
		transform: translateX(0%);
	}
}

@-webkit-keyframes slideLeft {
	0% {
		-webkit-transform: translateX(150%);
	}
	100% {
		-webkit-transform: translateX(0%);
	}
}

/* slideRight */
.slideRight {
	visibility: visible !important;
	animation-name: slideRight;
	-webkit-animation-name: slideRight;

	animation-duration: 1s;
	-webkit-animation-duration: 1s;

	animation-timing-function: ease-in-out;
	-webkit-animation-timing-function: ease-in-out;
}

@keyframes slideRight {
	0% {
		transform: translateX(-150%);
	}
	100% {
		transform: translateX(0%);
	}
}

@-webkit-keyframes slideRight {
	0% {
		-webkit-transform: translateX(-150%);
	}
	100% {
		-webkit-transform: translateX(0%);
	}
}

.ef {visibility: hidden;}
.ef1 {transition-delay:0.4s; animation-delay:0.4s;-webkit-transition-delay:0.4s; -webkit-animation-delay:0.4s;}
.ef2 {transition-delay:0.5s; animation-delay:0.5s;-webkit-transition-delay:0.5s; -webkit-animation-delay:0.5s;}
.ef3 {transition-delay:0.6s; animation-delay:0.6s;-webkit-transition-delay:0.6s; -webkit-animation-delay:0.6s;}
.ef4 {transition-delay:0.7s; animation-delay:0.7s;-webkit-transition-delay:0.7s; -webkit-animation-delay:0.7s;}
.ef5 {transition-delay:0.8s; animation-delay:0.8s;-webkit-transition-delay:0.8s; -webkit-animation-delay:0.8s;}
.ef6 {transition-delay:0.9s; animation-delay:0.9s;-webkit-transition-delay:0.9s; -webkit-animation-delay:0.9s;}
.ef7 {transition-delay:1s; animation-delay:1s;-webkit-transition-delay:1s; -webkit-animation-delay:1s;}
.ef8 {transition-delay:1.1s; animation-delay:1.1s;-webkit-transition-delay:1.1s; -webkit-animation-delay:1.1s;}

/* START STYLES
*********************************/

body {
	background: #fff;
	font-family: "SegoeUi Light", Arial, Helvetica, sans-serif;
	font-size: 18px;
	line-height: 1.333333;
	color: #444;
}
body, html {
	min-width: 1260px;
}
a,img, input, textarea{
	outline: none;
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
.container {
	width: 1260px;
	padding-left: 15px;
	padding-right: 15px;
	margin: 0 auto;
}
.vert-helper {
	display: inline-block;
	vertical-align: middle;
	width: 0;
	height: 100%;
}

/* FORM
*********************************/
.form__legend {
	width: 100%;
	color: #fff;
}
.form__legend-big {
	display: block;
	font-size: 2.22222em;
	text-transform: uppercase;
	background: #23b2ff;
	padding: 26px 20px;
	text-align: center;
}
.form__legend-small {
	display: block;
	background: #35a2d5;
	font-size: 1.22222em;
	line-height: 1.09090em;
	text-align: center;
	padding: 29px 0;
}
.form__legend strong {
	text-transform: uppercase;
}
.form input,
.form textarea {
	width: 100%;
	display: block;
	font: 1.33333em/1em "SegoeUi Light", Arial, Helvetica, sans-serif;
	width: 100%;
	padding: 13px 30px 14px;
	position: relative;
	border: none;
	background: #fff;
}
.form__fields {
	padding: 15px 0 0;
}
.form__fields li {
	position: relative;
}
.form__fields li + li {
	margin: 15px 0 0;
}
.form__icon {
	display: block;
	width: 65px;
	height: 60px;
	line-height: 60px;
	background: #35a2d5;
	position: relative;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;

	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.form__icon:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 9px 0 9px 9px;
	border-color: transparent transparent transparent #35a2d5;
	position: absolute;
	top: 50%;
	margin-top: -9px;
	right: -9px;

	-webkit-transition: border-color .3s;
	-moz-transition: border-color .3s;
	-ms-transition: border-color .3s;
	-o-transition: border-color .3s;
	transition: border-color .3s;
}
.form__icon:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	background: url("../images/outsourcing/sprite.png") no-repeat;
	position: relative;
	top: -3px;
}
.form__icon_name:before {
	width: 25px;
	height: 25px;
	background-position: -108px -368px;
}
.form__icon_phone:before {
	width: 16px;
	height: 27px;
	background-position: -133px -368px;
}
.form__fields input {
	height: 60px;
	padding-left: 90px;
}
.form__fields input:focus + .form__icon {
	background: #23b2ff;
}
.form__fields input:focus + .form__icon:after {
	border-color: transparent transparent transparent #23b2ff;
}
.form__fields input.invalid {
	background: #ffeaea;
}
.form__fields input.invalid + .form__icon {
	background: #b9362b;
}
.form__fields input.invalid + .form__icon:after {
	border-color: transparent transparent transparent #b9362b;
}
input.test-bot {
	display: none;
}
.send-btn {
	display: block;
	width: 50%;
	height: 60px;
	float: left;
	position: relative;
	color: #fff;
	text-decoration: none;
	font-size: 1.11111em;
	text-align: center;
	background: #f4ac01;

	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.send-btn span {
	display: inline-block;
	vertical-align: middle;
}
.send-btn span b {
	display: block;
	font: 0.9em/1em "SegoeUi Bold", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}
.send-btn:hover,
.send-btn:focus {
	background: #ffc104;
}
.send-btn__icon_send {
	display: block;
	width: 65px;
	height: 60px;
	line-height: 60px;
	background: #f49001;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;

	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.send-btn__icon_send:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 33px;
	height: 33px;
	background: url("../images/outsourcing/sprite.png") no-repeat -54px -322px;
	position: relative;
	top: -3px;
}
.send-btn:hover .send-btn__icon_send,
.send-btn:focus .send-btn__icon_send {
	background: #f4ac01;
}
.form__privacy {
	text-align: center;
	margin: 25px 0 0;
}
.form__privacy a {
	display: inline-block;
	font-size: 0.88888em;
	color: #fff;
	text-decoration: underline;
}
.form__privacy a:hover {
	text-decoration: none;
}

.form__status {
	overflow: hidden;
}
.form__status-overview {
	width: 200%;
}
.subj {
	display: none;
}
.status {
	width: 50%;
	display: block;
	float: left;
	height: 60px;
	text-align: center;
	background: #2dcc70;
	color: #fff;
	position: relative;
	margin-left: -50%;

	-webkit-transition: margin .3s;
	-moz-transition: margin .3s;
	-ms-transition: margin .3s;
	-o-transition: margin .3s;
	transition: margin .3s;
}
.status.ok {
	margin-left: 0;
}
.status span {
	display: inline-block;
	vertical-align: middle;
}
.status span b {
	display: block;
	font: 1em/1em "SegoeUi Bold", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}
/* HEADER
*********************************/
.header {
	background: #fff;
	padding: 25px 0;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 899;

	-webkit-box-shadow: 0 0 5px #eee;
	-moz-box-shadow: 0 0 5px #eee;
	box-shadow: 0 0 5px #eee;
}
.locked .header {
	left: -17px;
}
h1#logo {
	display: block;
	float: left;
	width: 297px;
	height: 59px;
	/*background: url("../images/outsourcing/logo");*/
	margin: 22px 72px 0 0;
}
#logo img {
	display: block;
	max-width: 100%;
}

/* MAIN MENU */
.nav {
	display: block;
	float: left;
}
.nav li {
	display: block;
	float: left;
}
.nav li + li {
	margin: 0 0 0 1px;
}
.nav a {
	display: block;
	width: 103px;
	height: 103px;
	text-align: center;
	font-size: 0.88888em;
	text-decoration: none;
	color: #fff;
}
.nav li:first-child a {
	background: url("../images/outsourcing/nav-bg.jpg");
}
.nav li:first-child + li a {
	background: #f4ac01;
}
.nav li:first-child + li + li a {
	background: url("../images/outsourcing/nav-bg.jpg") -115px 0;
}
.nav li:first-child + li + li + li a {
	background: #35a2d5;
}
.nav li:first-child + li + li + li + li a {
	background: url("../images/outsourcing/nav-bg.jpg") -230px 0;
}
.nav li:first-child + li + li + li + li + li a {
	background: #34495e;
}
.nav a:hover {
	-webkit-animation: navAnimate .6s;
	-o-animation: navAnimate .6s;
	animation: navAnimate .6s;
}
@-webkit-keyframes navAnimate {
	from {
		-webkit-transform: scale(1.1);
	} to {
		-webkit-transform: scale(1);
	}
}
@-moz-keyframes navAnimate {
	from {
		-moz-transform: scale(1.1);
	} to {
		-moz-transform: scale(1);
	}
}
@-o-keyframes navAnimate {
	from {
		-o-transform: scale(1.1);
	} to {
		-o-transform: scale(1);
	}
}

/* MAIN MENU ICONS */
.nav__icon {
	display: block;
	height: 75px;
	overflow: hidden;
}
.nav__icon:after {
	content: "";
	display: block;
	background: url("../images/outsourcing/sprite.png") no-repeat;
	margin-left: auto;
	margin-right: auto;
}
.nav__icon_display:after {
	width: 40px;
	height: 37px;
	background-position: -128px -322px;
	margin-top: 28px;
}
.nav__icon_money:after {
	width: 33px;
	height: 39px;
	background-position: -168px -322px;
	margin-top: 27px;
}
.nav__icon_set:after {
	width: 46px;
	height: 38px;
	background-position: -201px -322px;
	margin-top: 28px;
}
.nav__icon_medal:after {
	width: 33px;
	height: 45px;
	background-position: -247px -322px;
	margin-top: 28px;
}
.nav__icon_chat:after {
	width: 52px;
	height: 35px;
	background-position: -280px -322px;
	margin-top: 32px;
}
.nav__icon_env:after {
	width: 36px;
	height: 24px;
	background-position: -332px -322px;
	margin-top: 35px;
}

/* HEADER CONTACTS */
.header__contacts {
	float: right;
	text-align: center;
}
.header__contacts span {
	display: block;
	font-size: 1.44444em;
	color: #4d4d4d;
	margin: 0 0 12px;
}
.header__contacts span b {
	color: #35a2d5;
}
.callback-btn {
	display: block;
	font-size: 1.33333em;
	color: #fff;
	text-decoration: none;
	text-align: center;
	background: #35a2d5;
	padding: 12px 0;

	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.callback-btn:hover {
	background: #23b2ff;
}


/* PROMO
*********************************/
.promo {
	max-height: 661px;
	background: url("../images/outsourcing/bg-01.jpg") no-repeat center top;
	margin: 153px 0 65px;
	padding: 65px 0 50px;
	color: #fff;
}
/* PROMO LEFT */
.promo-left {
	width: 52%;
	float: left;
}
.promo h1 {
	font-size: 2.66666em;
	line-height: 1.2em;
	margin: 0 0 40px;
}
.promo h1 b {
	display: block;
	font-family: "SegoeUi Bold", Arial, Helvetica, sans-serif;
	letter-spacing: -2px;
	text-transform: uppercase;
	color: #ffca40;
}
.promo__desc {
	background: #35a2d5;
	padding: 25px 70px 25px 105px;
	font-size: 1.5em;
	line-height: 1.11111em;
	position: relative;
	margin: 0 0 55px;
}
.promo__desc:after {
	content: "";
	display: block;
	width: 45px;
	height: 44px;
	background: url("../images/outsourcing/bgel-01.png") no-repeat;
	position: absolute;
	left: 0;
	bottom: -44px;
}
.promo__icon_check {
	display: block;
	width: 59px;
	height: 51px;
	background: url("../images/outsourcing/sprite.png") no-repeat -391px -189px;
	position: absolute;
	left: 20px;
	top: 50%;
	margin-top: -25px;
}
.promo__list {
	padding: 0 0 0 105px;
	font-size: 1.33333em;
}
.promo__list li + li {
	margin: 20px 0 0;
}
.promo__icon {
	display: inline-block;
	vertical-align: middle;
	width: 50px;
}
.promo__icon:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	background: url("../images/outsourcing/sprite.png") no-repeat;
}
.promo__icon_nonstop:after {
	width: 37px;
	height: 35px;
	background-position: -357px -265px;
}
.promo__icon_contract:after {
	width: 37px;
	height: 37px;
	background-position: -320px -265px;
}
.promo__icon_grid:after {
	width: 28px;
	height: 28px;
	background-position: -394px -265px;
}
/* PROMO RIGHT */
.promo-right {
	width: 39%;
	float: right;
}
.promo .form__privacy {
	margin: 50px 0 0;
}

/* BENEFITS
*********************************/
.benefits {
	padding: 35px 0 100px;
}
.b-title {
	height: 141px;
	float: left;
	padding: 0 30px 0 35px;
}
.benefits h2 {
	display: inline-block;
	vertical-align: middle;
	font-size: 2.55555em;
	line-height: 1em;
	color: #35a2d5;
}
.benefits h2 b {
	display: block;
	color: #3f3f3f;
	text-transform: uppercase;
}
.benefits__table {
	overflow: hidden;
}
.b-row {
	overflow: hidden;
}
.b-inner {
	overflow: hidden;
}
.b-row + .b-row {
	margin: 1px 0 0;
}
.b-row:first-child .b-inner {
	margin: 0 0 0 180px;
}
.b-row:first-child + .b-row .b-inner {
	float: right;
	clear: both;
}
.b-row:first-child + .b-row + .b-row + .b-row .b-inner {
	float: right;
	clear: both;
}
.b-img {
	width: 141px;
	height: 141px;
	float: left;
	margin: 0 0 0 1px;
	background: url("../images/outsourcing/b-sprite.jpg") no-repeat;
}
.b-img:first-child {
	margin: 0;
}
.b-img_1 {
	background-position: 0 0;
}
.b-img_2 {
	background-position: -141px 0;
}
.b-img_3 {
	background-position: -282px 0;
}
.b-img_4 {
	background-position: -423px 0;
}
.b-img_5 {
	background-position: -564px 0;
}
.b-img_6 {
	background-position: -705px 0;
}
.b-img_7 {
	background-position: -846px 0;
}
.b-text {
	width: 285px;
	height: 141px;
	float: left;
	padding: 0 5px 0 30px;
	margin: 0 0 0 1px;
	color: #fff;
	position: relative;
	overflow: hidden;
}
.b-text:first-child {
	margin: 0;
}
.b-text p {
	display: inline-block;
	vertical-align: middle;
}
.b-text_yellow {
	background: #ff9d00;
}
.b-text_dblue {
	background: #34495e;
}
.b-text_red {
	background: #e84c3d;
}
.b-text_green {
	background: #2dcc70;
}
.b-text_lblue {
	background: #35a2d5;
}

.b-text:before {
	content: "";
	display: block;
	background: url("../images/outsourcing/sprite.png") no-repeat;
	position: absolute;
	opacity: .3;
}
.b-icon_check:before {
	width: 68px;
	height: 68px;
	background-position: -72px -189px;
	right: -19px;
	bottom: -11px;
}
.b-icon_people:before {
	width: 85px;
	height: 57px;
	background-position: 0 -265px;
	right: -18px;
	bottom: -11px;
}
.b-icon_clock:before {
	width: 65px;
	height: 65px;
	background-position: -140px -189px;
	right: -18px;
	bottom: -17px;
}
.b-icon_percent:before {
	width: 55px;
	height: 51px;
	background-position: -85px -265px;
	right: -8px;
	bottom: -2px;
}
.b-icon_timer:before {
	width: 65px;
	height: 76px;
	background-position: -205px -189px;
	right: -17px;
	bottom: -15px;
}
.b-icon_sign:before {
	width: 72px;
	height: 72px;
	background-position: 0 -189px;
	right: -19px;
	bottom: -12px;
}
.b-icon_gear:before {
	width: 55px;
	height: 56px;
	background-position: -140px -265px;
	right: -23px;
	bottom: -12px;
}
.b-icon_shield:before {
	width: 55px;
	height: 68px;
	background-position: -270px -189px;
	right: -16px;
	bottom: -19px;
}
.b-icon_pig:before {
	width: 66px;
	height: 66px;
	background-position: -325px -189px;
	right: -13px;
	bottom: -13px;
}

/* ACTION
*********************************/
.action {
	max-height: 829px;
	background: url("../images/outsourcing/bg-02.jpg") no-repeat center top;
	color: #fff;
	padding: 65px 0 50px;
	margin: 0 0 65px;
}
.action__header {
	width: 1020px;
	margin: 0 auto;
	position: relative;
}
/* .action__header:after {
	content: "";
	display: block;
	width: 100%;
	height: 73px;
	background: url("../images/outsourcing/action-shade.png") no-repeat;
	background-size: cover;
} */
.action-shade {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}
.action__col {
	width: 509px;
	height: 160px;
	float: left;
	position: relative;
	padding: 20px 40px 20px 160px;
	position: relative;
}
.action__col:first-child {
	margin: 0 2px 0 0;
}
.action__col_blue {
	background: #35a2d5;
}
.action__col_yellow {
	background: #ff9d00;
}
.action__col h3 {
	font: 1.66666em "SegoeUi Bold", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	margin: 0 0 5px;
}
.action__col p {
	text-transform: uppercase;
}
.action__col em {
	display: block;
	font-size: 0.77777em;
	color: #fff373;
}
.action__icon {
	display: block;
	background: url("../images/outsourcing/sprite.png") no-repeat;
	position: absolute;
	left: 35px;
	top: 50%;
}
.action__icon_money {
	width: 83px;
	height: 99px;
	background-position: -350px 0;
	margin-top: -50px;
}
.action__icon_present {
	width: 88px;
	height: 85px;
	background-position: -262px 0;
	margin-top: -43px;
}
.action .form {
	width: 480px;
	margin: 0 auto;
}

/* WORK
*********************************/
.work {
	position: relative;
	padding: 35px 0 100px;
}
.work__bg {
	position: absolute;
	width: 100%;
	height: 585px;
	background: url("../images/outsourcing/light-pattern.jpg");
	bottom: 0;
	left: 0;
	z-index: 1;
}
.work > .container {
	position: relative;
	z-index: 2;
}
.work h2 {
	text-align: center;
	font-size: 2.11111em;
	margin: 0 0 50px;
}
.work h2 b {
	display: inline-block;
	padding: 0 0 10px;
}
.work h2 b:first-child {
	color: #5c5c5c;
	border-bottom: 1px solid #5c5c5c;
}
.work h2 b:first-child + b {
	color: #2e89b3;
	border-bottom: 1px solid #2e89b3;
}
.work__row {
	margin: 0 -10px;
}
.work__col {
	width: 33.3333333%;
	float: left;
	padding: 0 15px;
}
.work__col_yellow article header {
	background: #f49001;
}
.work__col_yellow .work__text {
	border-bottom: 8px solid #f49001;
}
.work__col_blue article header {
	background: #35a2d5;
}
.work__col_blue .work__text {
	border-bottom: 8px solid #35a2d5;
}
.work__col_green article header {
	background: #2ccb76;
}
.work__col_green .work__text {
	border-bottom: 8px solid #2ccb76;
}
.work__col article {
	background: #fff;
	padding: 0 0 15px;
}
.work__col article header {
	padding: 0 0 35px;
	text-align: center;
}
.work__col h3 {
	color: #fff;
	font: 1.66666em/1em "SegoeUi Bold", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
}
.work__icon {
	display: block;
	height: 190px;
	line-height: 190px;
	position: relative;
}
.work__icon:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	background: url("../images/outsourcing/sprite.png") no-repeat;
	position: relative;
	top: -3px;
}
.work__icon_set:after {
	width: 88px;
	height: 81px;
	background-position: -174px 0;
}
.work__icon_display:after {
	width: 92px;
	height: 82px;
	background-position: 0 0;
}
.work__icon_shield:after {
	width: 82px;
	height: 100px;
	background-position: -92px 0;
}
.work__text {
	padding: 50px 30px 30px;
	text-align: center;
	font-size: 1.33333em;
	color: #464646;
}


/* TECHNOLOGY
*********************************/
.tech {
	max-height: 717px;
	background: url("../images/outsourcing/bg-03.jpg") no-repeat center top;
	padding: 65px 0 50px;
}
.tech__left {
	width: 42%;
	float: left;
	color: #6b6969;
}
.tech h2 {
	font-size: 2.11111em;
	line-height: 90px;
	color: #fff;
	background: #1da9f4;
	text-transform: uppercase;
	height: 90px;
	position: relative;
	text-align: center;
	padding: 0 105px 0 40px;
	margin: 0 0 40px;
}
.tech-title__icon {
	display: block;
	width: 90px;
	height: 90px;
	background: #1b97d9;
	line-height: 90px;
	position: absolute;
	top: 0;
	right: 0;
}
.tech-title__icon:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 41px;
	height: 41px;
	background: url("../images/outsourcing/sprite.png") no-repeat -87px -322px;
	position: relative;
	top: -5px;
}
.partners-list li {
	display: inline-block;
	width: 48%;
	margin: 30px 0;
	text-align: center;
	cursor: pointer;
}
.partners-list img {
	display: inline-block;
	max-width: 100%;
	opacity: .2;
	cursor: pointer;

	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
}
.partners-list img:hover {
	opacity: 1;
}
.tech__right {
	width: 48%;
	float: right;
	color: #fff;
	font-size: 1.11111em;
}
.tech-list li {
	position: relative;
	padding: 0 0 0 50px;
}
.tech-list li + li {
	margin: 25px 0 0;
}
.tech-list li:before {
	content: "";
	display: block;
	width: 18px;
	height: 18px;
	background: url("../images/outsourcing/sprite.png") no-repeat -184px -368px;
	position: absolute;
	left: 0;
	top: 5px;
}

/* REASONS
*********************************/
.reasons {
	margin: 0 0 65px;
}
.reasons__top {
	max-height: 457px;
	background: url("../images/outsourcing/bg-04.jpg") no-repeat center top;
	padding: 65px 0 75px;
	overflow: hidden;
}
.reasons h2 {
	font-size: 2.11111em;
	line-height: 1em;
	margin: 0 0 50px;
	text-transform: uppercase;
}
.reasons h2 b {
	color: #fff;
}
.reasons-list {
	overflow: hidden;
	margin: -20px -15px 0;
}
.reasons-list li {
	display: block;
	width: 33.3333333%;
	height: 89px;
	float: left;
	padding: 10px 15px 0 120px;
	margin: 20px 0 0;
	position: relative;
}
.reasons__icon {
	display: block;
	background: url("../images/outsourcing/sprite.png") no-repeat;
	position: absolute;
	left: 15px;
	top: 0;
}
.reasons__icon_display {
	width: 75px;
	height: 68px;
	background-position: -149px -100px;
}
.reasons__icon_cycle {
	width: 74px;
	height: 69px;
	background-position: -75px -100px;
}
.reasons__icon_wallet {
	width: 70px;
	height: 70px;
	background-position: -224px -100px;
}
.reasons__icon_shield {
	width: 73px;
	height: 89px;
	background-position: -367px -100px;
}
.reasons__icon_note {
	width: 73px;
	height: 75px;
	background-position: -294px -100px;
}
.reasons__icon_lamp {
	width: 75px;
	height: 87px;
	background-position: 0 -100px;
}

.reasons__bottom {
	background: #e68e00;
	border-top: 1px solid #fcb950;
	text-align: center;
	padding: 10px 0;
}
.reasons__bottom .popup-btn {
	position: relative;
	top: -45px;
}
.popup-btn {
	display: inline-block;
	height: 72px;
	position: relative;
	color: #fff;
	text-decoration: none;
	font-size: 1.11111em;
	text-align: center;
	background: #444;

	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.popup-btn span {
	display: inline-block;
	vertical-align: middle;
	color: #ffff00;
	padding: 0 65px 0 130px;
}
.popup-btn span b {
	display: block;
	font: 0.9em/1em "SegoeUi Bold", Arial, Helvetica, sans-serif;
	text-transform: uppercase;
	color: #fff;
}
.popup-btn:hover,
.popup-btn:focus {
	background: #4d4d4d;
}
.popup-btn__icon_send {
	display: block;
	width: 72px;
	height: 72px;
	line-height: 72px;
	background: #393939;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;

	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.popup-btn__icon_send:before {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 46px;
	height: 46px;
	background: url("../images/outsourcing/sprite.png") no-repeat -195px -265px;
	position: relative;
	top: -3px;
}
.popup-btn:hover .popup-btn__icon_send,
.popup-btn:focus .popup-btn__icon_send {
	background: #444;
}

/* WARRANTY
*********************************/
.warranty {
	padding: 35px 0 0;
	margin: 0 0 65px;
}
.warranty h2 {
	font-size: 2.11111em;
	line-height: 1em;
	margin: 0 0 50px;
	text-transform: uppercase;
}
.warranty h2 b {
	color: #f89903;
}
.warranty-list__left {
	width: 614px;
	float: left;
}
.warranty-list__right {
	width: 614px;
	float: right;
}
.warranty-item_2 {
	margin: 0 0 4px;
}
.warranty-list figure {
	position: relative;
	overflow: hidden;
}
.warranty-list figure img {
	display: block;
	max-width: 100%;
}
.warranty-list figcaption {
	width: 100%;
	height: 100%;
	font-size: 0.94444em;
	padding: 15px 15px 5px 90px;
	position: absolute;
	left: 0;
	color: #fff;
	overflow: hidden;

	-webkit-transition: all .9s;
	-moz-transition: all .9s;
	-ms-transition: all .9s;
	-o-transition: all .9s;
	transition: all .9s;
}
.warranty-list figcaption p {
	margin: 10px 0;
}
.warranty-list figcaption:after {
	content: "";
	display: block;
	width: 45px;
	height: 45px;
	background: url("../images/outsourcing/sprite.png") no-repeat -241px -265px;
	position: absolute;
	top: 10px;
	left: 25px;
}
.warranty-list figcaption h3 {
	font-size: 1.41176em;
	text-transform: uppercase;
	margin: 0 0 15px;
}
.warranty-list figcaption strong {
	font-weight: bold;
}
.warranty-item_1 figcaption {
	background: rgb(36, 166, 235);
	background: rgba(36, 166, 235, .85);
	top: 275px;
}
.warranty-item_2 figcaption {
	background: rgb(244, 155, 9);
	background: rgba(244, 155, 9, .85);
	top: 125px;
}
.warranty-item_3 figcaption {
	background: rgb(43, 203, 118);
	background: rgba(43, 203, 118, .85);
	top: 128px;
}
.warranty-list figure:hover figcaption {
	top: 0;
}

/* REVIEWS
*********************************/
.reviews {
	padding: 35px 0 100px;
}
.reviews h2 {
	font-size: 2.111111em;
	line-height: 1em;
	margin: 0 0 50px;
	text-transform: uppercase;
}
.reviews h2 b {
	color: #3598db;
}
.bx-wrapper {
	margin: 0 auto;
	position: relative;
}
.reviews-slider {
	padding: 0 75px;
}
.reviews-slider li {
	overflow: hidden;
}
.review__author {
	width: 345px;
	float: left;
	overflow: hidden;
	border-right: 1px solid #ccc;
}
.review__author-avatar {
	display: block;
	width: 116px;
	float: left;
}
.review__author-info {
	width: 215px;
	float: right;
	padding: 0 15px 0 0;
}
.review__author-info h4 {
	margin: 0 0 10px;
}
.review__author-site {
	display: inline-block;
	margin: 0 0 16px;
	color: #1888c3;
	text-transform: uppercase;
	text-decoration: none;

	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}
.review__author-site:hover {
	color: #1471a2;
}
.reviews__social {
	overflow: hidden;
}
.reviews__social li {
	display: block;
	float: left;
}
.reviews__social li + li {
	margin: 0 0 0 1px;
}
.reviews__social a {
	display: block;
}
.social__icon {
	display: block;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;

	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.social__icon:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	background: url("../images/outsourcing/sprite.png") no-repeat;
	position: relative;
	top: -3px;
}
.social__icon_vk {
	background: #1da9f4;
}
.social__icon_vk:hover {
	background: #56baf0;
}
.social__icon_vk:after {
	width: 24px;
	height: 14px;
	background-position: -149px -368px;
}
.social__icon_fb {
	background: #1888c3;
}
.social__icon_fb:hover {
	background: #1ea2e7;
}
.social__icon_fb:after {
	width: 11px;
	height: 21px;
	background-position: -173px -368px;
}
.review__text {
	width: 700px;
	float: right;
}
.review__text h3 {
	font: 1.33333em/1em "SegoeUi Bold", Arial, Helvetica, sans-serif;
	color: #1888c3;
	margin: 0 0 20px;
}
.bx-prev,
.bx-next {
	display: block;
	width: 27px;
	height: 44px;
	background: url("../images/outsourcing/sprite.png") no-repeat 0 -322px;
	position: absolute;
	top: 50%;
	left: -75px;
	margin-top: -56px;
	text-indent: -9999px;

	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
}
.bx-next {
	background-position: -27px -322px;
	right: -75px;
	left: auto;
}
.bx-prev:hover,
.bx-next:hover {
	opacity: .5;
}
.bx-prev.disabled,
.bx-next.disabled {
	visibility: hidden;
}

.bx-pager {
	text-align: center;
	height: 14px;
	margin: 20px 0 0;
}
.bx-pager-item {
	display: inline-block;
}
.bx-pager-link {
	display: inline-block;
	cursor: pointer;
	margin: 0 2px;
	width: 14px;
	height: 14px;
	text-indent: -9999px;
	border: 1px solid #1da9f4;

	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;

	-webkit-transition: background-color .3s;
	-moz-transition: background-color .3s;
	-ms-transition: background-color .3s;
	-o-transition: background-color .3s;
	transition: background-color .3s;
}
.bx-pager-link:hover,
.bx-pager-link.active {
	background: #1da9f4;
}

/* VIDEO
*********************************/
.video {
	padding: 50px 0;
	background: url("../images/outsourcing/light-pattern.jpg");
}
.video h2 {
	font-size: 2.11111em;
	line-height: 1em;
	margin: 0 0 40px;
	text-transform: uppercase;
}
.video h2 b {
	color: #3598db;
}
.video-slider iframe {
	width: 640px;
	height: 360px;
	border: none;
}

/* STEPS
*********************************/
.steps {
	padding: 35px 0 0;
	margin: 0 0 65px;
}
.steps h2 {
	font-size: 2.11111em;
	line-height: 1em;
	text-transform: uppercase;
	margin: 0 0 50px;
}
.steps h2 b {
	color: #1e85bc;
}
.steps-list {
	overflow: hidden;
}
.steps-list li {
	display: block;
	width: 25%;
	height: 150px;
	float: left;
	padding: 45px 60px 0 20px;
	color: #fff;
	position: relative;
}
.steps-list li:first-child {
	background: #23b2ff;
	border-right: 1px solid #49b4ee;
	padding-top: 65px;
}
.steps-list li:first-child + li {
	background: #21a3e9;
	border-right: 1px solid #57b3e4;
}
.steps-list li:first-child + li + li {
	background: #1e94d4;
	border-right: 1px solid #47a4d6;
}
.steps-list li:first-child + li + li + li {
	background: #1e85bc;
}

.steps-list li:after {
	content: "";
	display: block;
	width: 26px;
	height: 18px;
	background: url("../images/outsourcing/sprite.png") no-repeat -82px -368px;
	position: absolute;
	right: 15px;
	bottom: 15px;
}
.steps-list li:first-child + li + li + li:after {
	width: 18px;
	height: 26px;
	background-position: -64px -368px;
	right: 15px;
	bottom: 20px;
}

.steps__icon {
	display: block;
	background: url("../images/outsourcing/sprite.png") no-repeat;
	position: absolute;
	top: 20px;
	right: 15px;
}
.steps__icon_plane {
	width: 32px;
	height: 32px;
	background-position: -368px -322px;
}
.steps__icon_gear {
	width: 32px;
	height: 32px;
	background-position: -400px -322px;
}
.steps__icon_sheet {
	width: 32px;
	height: 30px;
	background-position: 0 -368px;
}
.steps__icon_hand {
	width: 32px;
	height: 32px;
	background-position: -32px -368px;
}


/* MAP
*********************************/
.wifi_block12 {
	padding: 35px 0 0;
}
.wifi_block12title span {
	color: #444;
	line-height: 1em;
	text-transform: uppercase;
	margin: 0 0 50px;
}
.wifi_block12title {
	color: #1e85bc;
	font-size: 2.11111em;
	line-height: 1em;
	text-transform: uppercase;
	margin: 0 0 50px;
}
.wifi_block12 .container {
	position: relative;
}
.map-container {
	height: 510px;
}
.map-address {
	position: absolute;
	right: 15px;
	padding: 20px 50px;
	background: rgb(36, 166, 235);
	background: rgba(36, 166, 235, .9);
	color: #fff;
	z-index: 10;
	top: 165px;
}
.map-address strong {
	font-weight: bold;
}
/* .map-address__icon-mark {
	width: 85px;
	height: 110px;
	line-height: 110px;
	text-align: center;
	position: absolute;
	left: 0;
	top: 0;
	background: rgb(53, 162, 213);
	background: rgba(53, 162, 213, .8);
}
.map-address__icon-mark:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	width: 34px;
	height: 45px;
	background: url("../images/outsourcing/sprite.png") no-repeat -286px -265px;
	position: relative;
	top: -3px;
} */

/* FOOTER
*********************************/
.footer {
	color: #999;
}
.footer__top {
	background: url("../images/outsourcing/grey-pattern.jpg");
	padding: 20px 0;
}

.footer__bottom {
	background: url("../images/outsourcing/dark-pattern.jpg");
	border-top: 1px solid #393638;
	padding: 20px 0;
}
.footer__info {
	float: left;
	margin: 25px 0 0;
	line-height: 1.5;
}
.footer__info a {
	color: #999;
}
.footer__info a:hover {
	text-decoration: none;
}
.footer__docs {
	width: 660px;
	float: left;
	text-align: center;
	line-height: 1;
}
.footer__docs li {
	display: inline-block;
	margin: 0 5px;
}
.footer__docs li a {
	display: inline-block;
	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
}
.footer__docs li a:hover {
	opacity: .8;
}
.footer__docs li img {
	display: inline-block;
	max-width: 100%;
}
.footer__contacts {
	float: right;
    text-align: center;
    margin: 10px 0 0;
}
.footer__contacts span {
	display: block;
	font-size: 1.44444em;
	margin: 0 0 20px;
}
.footer__contacts span b {
	color: #35a2d5;
}
.footer__copyright {
	float: left;
}


/* ARCTICMODAL
*********************************/
.arcticmodal-overlay,
.arcticmodal-container { display: block; position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 10000; }
.arcticmodal-container { overflow: auto; margin: 0; padding: 0; border: 0; border-collapse: collapse; }
*:first-child+html .arcticmodal-container { height: 100% }
.arcticmodal-container_i { height: 100%; margin: 0 auto; position: relative; }
.arcticmodal-container_i2 { padding: 45px 24px 45px; margin: 0; border: 0; vertical-align: middle; }
.arcticmodal-error { padding: 20px; border-radius: 10px; background: #000; color: #fff; }
.arcticmodal-loading { width: 80px; height: 80px; border-radius: 10px; background: #000 }


/* MODAL
*********************************/
.hidden {
	display: none;
}
.modal {
	position: relative;
}
.modal__close {
	width: 31px;
	height: 31px;
	background: url("../images/outsourcing/sprite.png") no-repeat -202px -368px;
	position: absolute;
	right: -31px;
	top: -31px;
	cursor: pointer;

	-webkit-transition: opacity .3s;
	-moz-transition: opacity .3s;
	-ms-transition: opacity .3s;
	-o-transition: opacity .3s;
	transition: opacity .3s;
}
.modal__close:hover {
	opacity: .5;
}
.modal-order {
	width: 495px;
}
.modal-conf {
	width: 800px;
	background: #fff;
	padding: 50px 20px;
	font-size: 1.11111em;
}
.modal-conf .center {
	text-align: center;
}
.modal-conf h3 {
	margin: 0 0 15px;
	font-size: 1.33333em;
	text-transform: uppercase;
	color: #2e89b3;
}
.modal-conf p {
	margin: 15px 0;
}
.modal-conf ul {
	list-style: none;
	padding: 0 0 0 15px;
	margin: 15px 0;
}

.modal-img img {
	display: block;
	max-width: 100%;
}



@media (max-width: 1260px) {
body {
	font-size: 16px;
}
body, html {
	min-width: 960px;
}
.container {
	width: 960px;
	padding-left: 10px;
	padding-right: 10px;
	margin: 0 auto;
}
.header__logo {
	width: 226px;
	margin: 16px 35px 0 0;
}
.nav a {
	width: 78px;
	height: 78px;
}
.nav__icon {
	height: 57px;
}
.nav__icon_display:after {
	margin-top: 17px;
}
.nav__icon_money:after {
	margin-top: 16px;
}
.nav__icon_set:after {
	margin-top: 17px;
}
.nav__icon_medal:after {
	margin-top: 17px;
}
.nav__icon_chat:after {
	margin-top: 20px;
}
.nav__icon_env:after {
	margin-top: 22px;
}
.header__contacts span {
	margin: 0 0 5px;
}
.callback-btn {
	padding: 7px 0;
}
.promo {
	margin-top: 128px;
}
.promo h1 {
	 font-size: 2.3em;
}
.form__legend-big {
	font-size: 1.7em;
}
.form__icon {
	width: 55px;
	height: 50px;
	line-height: 50px;
}
.form__fields input {
	height: 50px;
	padding-left: 80px;
}
.send-btn {
	height: 50px;
}
.send-btn__icon_send {
	width: 55px;
	height: 50px;
	line-height: 50px;
}
.status {
	height: 50px;
}
.b-title {
	height: 105px;
}
.b-row:first-child .b-inner {
	margin: 0 0 0 102px;
}
.b-img {
	width: 105px;
	height: 105px;
}
.b-text {
	width: 225px;
	height: 105px;
	padding-left: 10px;
}
.action__header {
	width: 100%;
}
.action__col {
	width: 469px;
}
.action .form {
	width: 445px;
}
.work__col h3 {
	font-size: 1.5em;
}
.reasons-list {
	margin: -20px 0 0;
}
.reasons-list li {
	padding-left: 100px;
}
.warranty-list__left {
	width: 469px;
}
.warranty-list__right {
	width: 469px;
}
.warranty-item_2 {
	margin: 0 0 3px;
}
.warranty-list figcaption h3 {
	font-size: 1.2em;
}
.warranty-list figcaption p {
	margin: 5px 0;
}
.warranty-list figcaption {
	padding-left: 20px;
	font-size: 0.9em;
}
.warranty-list figcaption:after {
	display: none;
	/* opacity: .2;
	top: 4px;
	left: -10px; */
}
.warranty-item_1 figcaption {
	top: 202px;
}
.warranty-item_2 figcaption {
	top: 93px;
}
.warranty-item_3 figcaption {
	top: 93px;
}
.review__text {
	width: 440px;
}
.review__author {
	width: 320px;
}
.review__author-info {
	width: 190px;
}
.steps-list li {
	padding: 35px 45px 0 20px
}
.steps-list li:after {
	right: 7px;
}
.steps__icon {
	right: 7px;
}
.footer__docs {
	width: 530px;
}


}

@media (max-width: 1280px) {
	.wifi_block12{
		padding:0;
	}
	
	.wifi_block12title{
		margin:0px;
	}
	
	.review__author-site{
		font-size:15px;
	}
	
	h1#logo {
	display: block;
	float: left;
	width: 297px;
	height: 59px;
/*	background: url("../images/outsourcing/logo"); */
	margin: 8px -30px 0 0;
}
}

.feedback{
	cursor:pointer;
}