* {
	padding: 0;
	/*! margin: 0; */
	box-sizing: border-box;
}

button {
	background: none;
}

/*
LESS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: @icon-home-width;
}

The large array-like variables contain all information about a single icon
@icon-home: x y offset_x offset_y width height total_width total_height image_path name;

At the bottom of this section, we provide information about the spritesheet itself
@spritesheet: width height image @spritesheet-sprites;
*/

/*
The provided classes are intended to be used with the array-like variables

.icon-home {
  .sprite-width(@icon-home);
}
.icon-email {
  .sprite(@icon-email);
}

Example usage in HTML:

`display: block` sprite:
<div class="icon-home"></div>

To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:

// CSS
.icon {
  display: inline-block;
}

// HTML
<i class="icon icon-home"></i>
*/

/*
The `.sprites` mixin generates identical output to the CSS template
  but can be overridden inside of LESS

This must be run when you have at least 2 sprites.
  If run with a single sprite, then there will be reference errors.

.sprites(@spritesheet-sprites);
*/

body {
	min-width: 1024px;
}

.wrap-1024 {
	width: 1024px;
	margin-left: auto;
	margin-right: auto;
}

.flex-wrap-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header,
footer {
	font-family: 'Open Sans', sans-serif;
	line-height: 1.5;
}

header a,
footer a {
	text-decoration: none;
	color: #003399;
}

header a:hover,
footer a:hover {
	color: #3f90ff;
}

header li,
footer li {
	position: relative;
	list-style: none;
	margin-bottom: 15px;
	padding-left: 23px;
	font-size: 1rem;
	color: #676767;
	font-weight: 300;
}

header li:before,
footer li:before {
	position: absolute;
	left: 0;
	content: "\2014";
	color: #003399;
}

header h1,
footer h1,
header h2,
footer h2,
header h3,
footer h3,
header h4,
footer h4,
header .h2-like,
footer .h2-like,
header .h3-like,
footer .h3-like,
header .h4-like,
footer .h4-like {
	font-family: 'Open Sans', sans-serif;
	text-transform: uppercase;
}

header a,
footer a,
header p,
footer p {
	font-family: 'Open Sans', sans-serif;
}

header p,
footer p {
	font-size: 1rem;
	line-height: 24px;
	font-weight: 300;
	color: #676767;
}

header p:not(:last-of-type),
footer p:not(:last-of-type) {
	margin-bottom: 15px;
}

header h1,
footer h1,
header .h2-like,
footer .h2-like {
	text-align: left;
	text-transform: uppercase;
	font-weight: 400;
	margin-bottom: 32px;
	letter-spacing: 1px;
	font-size: 1.563rem;
	color: #676767;
}

header h2,
footer h2,
header h3,
footer h3,
header .h3-like,
footer .h3-like,
header h4,
footer h4,
header .h4-like,
footer .h4-like {
	color: #484848;
	font-weight: 400;
	font-size: 1.25rem;
	text-transform: none;
	margin-bottom: 7px;
}

.button.-rect {
	max-width: 248px;
	padding: 13px 30px;
	line-height: 1em;
	display: inline-block;
	font-size: 0.75rem;
	text-align: center;
	color: #003399;
        background-color: #FFFFFF;
	text-transform: uppercase;
	text-decoration: none;
	cursor: pointer;
	font-weight: 400;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	border: 1px solid #003399;
	border-radius: 4px;
	outline: none;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}

.no-touch .button.-rect:hover,
.touch .button.-rect:active {
	color: #fff;
	border-color: #3f90ff;
	background-color: #3f90ff;
}

.slider-btn {
	position: absolute;
	display: block;
	cursor: pointer;
	z-index: 5;
	line-height: 0;
	font-size: 0;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
	outline: none;
}

.slider-btn svg {
	width: 48px;
	height: 48px;
	fill: #3f90ff;
}

.clients-slider .slider-btn svg {
	fill: #676767;
	width: 42px;
	height: 42px;
}

.no-touch .clients-slider .slider-btn:hover svg {
	fill: #3f90ff;
}

.no-touch .slider-btn:hover svg {
	fill: #fff;
}

.slider-btn.-prev {
	left: -68px;
	top: 138px;
}

.clients-slider .slider-btn.-prev {
	top: 15px;
	left: -48px;
}

.slider-btn.-next {
	right: -68px;
	top: 138px;
}

.clients-slider .slider-btn.-next {
	top: 15px;
	right: -48px;
}

form.search {
	position: relative;
	display: inline-block;
}

form.search input {
	width: 260px;
	height: 40px;
	border: none;
	border-radius: 4px;
	outline: none;
	padding: 10px 35px 10px 15px;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: 0.3s all ease;
	transition: 0.3s all ease;
}

form.search input.-visible {
	visibility: visible;
	opacity: 1;
}

form.search .search-toggle,
form.search .search_submit {
	position: absolute;
	line-height: 0;
	border: none;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	right: 10px;
	outline: none;
}

form.search .search-toggle:hover,
form.search .search_submit:hover {
	cursor: pointer;
}

form.search .search-toggle:hover svg,
form.search .search_submit:hover svg {
	fill: #3f90ff;
}

form.search .search-toggle svg,
form.search .search_submit svg {
	max-width: 16px;
	max-height: 16px;
	fill: #003399;
}

.hide,
.hidden-cont {
	display: none !important;
}

.lock {
	overflow-y: hidden !important;
}

.clearfix:after {
	content: "";
	display: table;
	clear: both;
}

.fade {
	opacity: 0;
}

.img_wrapper {
	display: block;
	position: relative;
	overflow: hidden;
}

.img_wrapper .img_grayscale {
	position: absolute;
	z-index: 5;
	opacity: 0;
}

header {
	background-color: #f5f5f5;
	margin-bottom: 20px;
}

header li {
	list-style: none;
	margin: 0;
	padding: 0;
	display: inline-block;
}

header li:before {
	display: none;
}

header .top-menu {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 7px 0 12px;
}

header .top-menu > ul {
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	margin-right: 35px;
}

header .top-menu > ul a {
	color: #003399;
	font-weight: 400;
	font-size: 14px;
	line-height: unset;
}
}

header .logo {
	display: inline-block;
	line-height: 0;
}

header .logo img {
	width: 390px;
}

header .middle-menu {
	background-color: #fff;
	box-shadow: 0px 16px 13px 0px rgba(19, 81, 153, 0.17);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

header .middle-menu .icon.sticky-only {
	display: none;
}

header .middle-menu_wrap {
	padding: 12px 0 13px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header .middle-menu .button {
	margin-right: 31px;
	padding: 13px 35px;
}

header .middle-menu.-sticky {
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	z-index: 100;
	-webkit-animation: opac-drop 0.3s ease forwards;
	animation: opac-drop 0.3s ease forwards;
}

header .middle-menu.-sticky .contacts-wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

header .middle-menu.-sticky .button {
	margin-right: 0;
}

header .middle-menu.-sticky .middle-menu_wrap {
	padding: 10px 0;
}

header .middle-menu.-sticky .logo img {
	width: 180px;
}

header .middle-menu.-sticky .icon.sticky-only {
	display: inline-block;
}

header .middle-menu.-sticky .phone-h {
	margin-right: 10px;
}

header .middle-menu.-sticky .phone-h .icon {
	display: none;
}

header .middle-menu.-sticky .phone {
	display: inline-block;
	margin-right: 10px;
}

header .middle-menu.-sticky .phone span {
	display: inline-block;
}

header .middle-menu.-sticky .phone span:not(:last-of-type):after {
	content: ",";
}

header .middle-menu.-sticky .phone span.phone-h:after {
	display: none;
}

header .middle-menu.-sticky .email {
	display: inline-block;
	vertical-align: text-bottom;
	margin-top: 0;
}

header .phone span {
	display: block;
	font-weight: 700;
	font-size: 15px;
	line-height: 22px;
	color: #676767;
	padding-left: 2px;
}

header .phone .phone-h {
	margin-bottom: 5px;
	font-weight: 300;
	font-size: 12px;
	line-height: 15px;
	padding-left: 0;
}

header .phone .icon {
	display: inline-block;
	background-image: url(../img/sprite.png);
	background-position: -25px -24px;
	width: 16px;
	height: 18px;
	vertical-align: middle;
	margin-right: 3px;
}

header .email {
	margin-top: 10px;
	font-size: 12px;
	color: #676767;
	line-height: 20px;
	padding-left: 3px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.gecko header .email {
	padding-left: 3px;
	margin-top: 9px;
}

header .email a {
	color: #676767;
}

header .email a:hover {
	text-decoration: underline;
}

header .email .icon {
	display: inline-block;
	background-image: url(../img/sprite.png);
	background-position: -56px 0px;
	width: 14px;
	height: 10px;
	margin-right: 4px;
	vertical-align: middle;
}

header .bottom-menu {
	padding: 28px 0;
}

header .bottom-menu > ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

header .bottom-menu > ul a {
	text-transform: uppercase;
	font-weight: 700;
	letter-spacing: 1px;
	color: #0051b1;
}

header .bottom-menu > ul a:hover {
	color: #3f90ff;
}

footer {
	background-color: #003399;
	color: #fefefe;
	font-weight: 300;
	padding: 35px 0 38px;
	margin-top: 80px;
}

footer .wrap-1024 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

footer .email,
footer .phone,
footer .address {
	position: relative;
	padding-left: 23px;
}

footer .email .icon,
footer .phone .icon,
footer .address .icon {
	position: absolute;
	top: 3px;
	left: 0;
}

footer .phone .icon {
	background-image: url(../img/sprite.png);
	background-position: 0px 0px;
	width: 17px;
	height: 21px;
}

footer .phone {
	-webkit-box-flex: 5;
	-ms-flex: 5;
	flex: 5;
}

footer .address {
	-webkit-box-flex: 3;
	-ms-flex: 3;
	flex: 3;
	margin-left: -24px;
}

footer .address .icon {
	background-image: url(../img/sprite.png);
	background-position: 0px -31px;
	width: 15px;
	height: 22px;
}

footer .email {
	-webkit-box-flex: 4;
	-ms-flex: 4;
	flex: 4;
}

footer .email span {
	display: block;
	margin-left: 10px;
}

footer .email .icon {
	background-image: url(../img/sprite.png);
	background-position: -27px 0px;
	width: 19px;
	height: 15px;
}

footer .email a {
	color: #fefefe;
}

footer .email a:hover {
	text-decoration: underline;
}

footer .sht {
	margin-top: -10px;
}

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

.wrap-1024 {
	padding-left: 10px;
	padding-right: 10px;
}

header .top-menu ul,
header .bottom-menu ul,
header .middle-menu_wrap,
header .middle-menu.-sticky .middle-menu_wrap {
	padding-left: 10px;
	padding-right: 10px;
}

}

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

.slider-btn.-prev,
.clients-slider .slider-btn.-prev {
	left: 0;
}

.slider-btn.-next,
.clients-slider .slider-btn.-next {
	right: 0;
}

}

@media only screen and (max-width: 1160px) {

.slider-btn.-prev,
.clients-slider .slider-btn.-prev {
	left: 0;
}

.slider-btn.-next,
.clients-slider .slider-btn.-next {
	right: 0;
}

}

@media only screen and (max-width: 1024px) {

.wrap-1024 {
	padding-left: 10px;
	padding-right: 10px;
}

header .top-menu ul,
header .bottom-menu ul,
header .middle-menu_wrap,
header .middle-menu.-sticky .middle-menu_wrap {
	padding-left: 10px;
	padding-right: 10px;
}

}

@-webkit-keyframes opac-anim {

0% {
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

100% {
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

}

@keyframes opac-anim {

0% {
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';
	filter: alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
}

100% {
	-ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=100)';
	filter: alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}

}

@-webkit-keyframes opac-drop {

0% {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

100% {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

}

@keyframes opac-drop {

0% {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

100% {
	-webkit-transform: translateY(0%);
	transform: translateY(0%);
}

}

@-webkit-keyframes fade-out {

100% {
	opacity: 0;
}

}

@keyframes fade-out {

100% {
	opacity: 0;
}

}

