@charset "UTF-8";
/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
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: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/* Welcome to Compass.
 * In this file you should write your main styles. (or centralize your imports)
 * Import this file using the following HTML or equivalent:
 * <link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css" /> */
/* Код для подключения шрифта в /css/stylename.css */
/* font-family: "RobotoRegular"; */
@font-face {
  font-family: "RobotoRegular";
  src: url("../fonts/RobotoRegular/RobotoRegular.eot");
  src: url("../fonts/RobotoRegular/RobotoRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoRegular/RobotoRegular.woff") format("woff"), url("../fonts/RobotoRegular/RobotoRegular.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "RobotoLight"; */
@font-face {
  font-family: "RobotoLight";
  src: url("../fonts/RobotoLight/RobotoLight.eot");
  src: url("../fonts/RobotoLight/RobotoLight.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoLight/RobotoLight.woff") format("woff"), url("../fonts/RobotoLight/RobotoLight.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "RobotoMedium"; */
@font-face {
  font-family: "RobotoMedium";
  src: url("../fonts/RobotoMedium/RobotoMedium.eot");
  src: url("../fonts/RobotoMedium/RobotoMedium.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoMedium/RobotoMedium.woff") format("woff"), url("../fonts/RobotoMedium/RobotoMedium.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/* font-family: "RobotoBold"; */
@font-face {
  font-family: "RobotoBold";
  src: url("../fonts/RobotoBold/RobotoBold.eot");
  src: url("../fonts/RobotoBold/RobotoBold.eot?#iefix") format("embedded-opentype"), url("../fonts/RobotoBold/RobotoBold.woff") format("woff"), url("../fonts/RobotoBold/RobotoBold.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  margin-right: -1px;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-dots {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin-top: 10px;
}
.owl-dots .owl-dot {
  background: #d8d8d8;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  margin: 0 3px;
  display: inline-block;
}

.owl-dot.active {
  background: #ffcf18;
}

body {
  font-family: "RobotoRegular";
}

strong {
  font-family: "RobotoBold";
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}

.container {
  max-width: 70em;
  margin-left: auto;
  margin-right: auto;
  width: 1170px !important;
}
.container:after {
  content: " ";
  display: block;
  clear: both;
}

.search {
  position: relative;
  /* Firefox 19+ */
  /* Firefox 18- */
}
.search ::-webkit-input-placeholder {
  font-family: "RobotoLight";
  color: #000;
}
.search ::-moz-placeholder {
  font-family: "RobotoLight";
  color: #000;
}
.search :-moz-placeholder {
  font-family: "RobotoLight";
  color: #000;
}
.search :-ms-input-placeholder {
  font-family: "RobotoLight";
  color: #000;
}
.search__input {
  width: 100%;
  border: 1px solid #fff;
  height: 29px;
  color: #000;
  padding-left: 20px;
  box-sizing: border-box;
  background: #8682bb;
  outline: none;
  font-family: "RobotoRegular";
  font-size: 12px;
}
.search__button {
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 3px;
  right: 0;
}

.header {
  padding-top: 30px;
}
.header__name {
  font-size: 19px;
  text-transform: uppercase;
  color: #fff;
}
article h2 {
    font-size: 24px;
}
article h3 {
    font-size: 22px;
}
article h4 {
    font-size: 20px;
}
article h5 {
    font-size: 18px;
}
.header__name span {
  line-height: 29px;
  padding: 0 30px;
  margin-top: 20px;
  font-family: "RobotoLight";
  display: block;
  font-size: 17px;
  font-weight: 800;
}
.header__logo img {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.header .eye-version {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 60px;
}
.header .eye-version span {
  line-height: 18px;
  font-size: 12px;
}
.header .eye-version img {
  display: block;
  float: left;
  padding-top: 7px;
  padding-right: 5px;
}
.header nav {
  margin-top: 10px;
  padding-left: 81px;
  background: url(../img/menu.png) 0% 0% no-repeat;
}
.header nav ul {
  background: #605c9c;
  padding-left: 20px;
  display: table;
}
.header nav ul li {
  display: table-cell;
       width: 16.666%;
    position: relative;
  vertical-align: middle;
  
}
.header nav>ul>li {
    height: 54px;
}

.header nav ul li a {
  color: #fff;
      vertical-align: middle;

text-align: center;
  text-decoration: none;
  display: block;
  font-family: "RobotoLight";
}

.header nav ul li a:hover{
  color: #ffcc00;
}
.header nav .active{
    background: #45408b;
}
.header nav ul li > ul > li:hover img {
  display: block;
}
.header nav ul li:hover .corner-top {
  display: block;
}
.header nav ul li:hover > ul {
  display: block;
}
.header nav ul ul {
  display: none;
  position: absolute;
  z-index: 10;
  padding: 0;
  background: #45408b;
  border-top: 2px solid #7773af;
    top: 54px;
    left: -20px;
}
.header nav ul ul li {
  display: block;
  width: 195px;
  margin: 0 20px;
  position: relative;
}
.header nav ul ul li img {
  vertical-align: middle;
}
.header nav ul ul li a {
  border-bottom: 1px #fff dotted;
  padding: 12px 10px;
}
.header nav ul ul li ul {
  position: absolute;
  left: 110px;
  top: 40px;
  background: #2f2f75;
}
.header nav ul ul li:last-child a {
  border-bottom: none;
}

.corner-top {
  position: absolute;
  top: 45px;
  z-index: 11;
  left: 0px;
  display: none;
}

.header nav ul li ul li img {
  position: absolute;
  top: 31px;
  z-index: 11;
  left: 123px;
  display: none;
}
.header nav ul li ul li a{
    text-align: left;
}

.breadcrumbs {
  margin: 20px 0;
  border-bottom: 1px solid #45408b;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li a {
  color: #979797;
  text-decoration: none;
}
.breadcrumbs li a:after {
  content: "/";
  padding-left: 5px;
}
.breadcrumbs li span {
  color: #706caf;
}

.push-3 {
  margin-left: 25%;
}

.push-2 {
  margin-left: 16.66667%;
}

.col-3 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

.col-2 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 16.66667%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

.col-4 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 33.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
.col-5 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 41.66666667%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

.col-6 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 50%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

.col-8 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 66.66667%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

.col-9 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 75%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

.col-10 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 83.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}

.col-12 {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}


aside {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 25%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  margin-bottom: 40px;
}
aside img {
  width: 100%;
}
aside nav {
  background: #45408b;
  margin: 10px 0;
  padding: 30px 0;
}
aside nav li {
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  position: relative;
}
aside nav li img {
  position: absolute;
  right: 10px;
  left: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  width: auto;
}
aside nav li .corner-left {
  display: none;
  position: absolute;
  top: -15px;
  right: -2px;
  z-index: 11;
}
aside nav li:hover {
  background: #969696;
}
aside nav li:hover .corner-left {
  display: block;
}
aside nav li:hover ul {
  display: block;
}
aside nav li:hover > a {
  color: #ffcc00;
}
aside nav li a {
  color: #fff;
  padding: 10px 0;
  margin: 0 10px;
  border-bottom: 1px #fff dotted;
  display: block;
  padding-left: 20px;
  text-decoration: none;
  font-family: "RobotoLight";
}
aside nav li:last-child a {
  border-bottom: none;
}
aside ul ul {
  display: none;
  position: absolute;
  z-index: 10;
  padding: 0;
  left: 261px;
  background: #45408b;
  border-left: 2px solid #7773af;
  top: 0px;
}
aside ul ul li {
  display: block;
  width: 195px;
  margin: 0 20px;
  position: relative;
  background: #45408b;
  text-transform: none;
}
aside ul ul li:hover {
  background: #45408b;
}
aside ul ul li a {
  border-bottom: 1px #fff dotted;
  padding: 5px 10px;
  background: #45408b;
}
aside ul ul li a:hover {
  color: #ffcc00;
}
aside ul ul li:last-child a {
  border-bottom: none;
}

.vk {
  text-transform: uppercase;
}
.vk img {
  vertical-align: middle;
}

article {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 75%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
article h1 {
  color: #45408b;
  font-family: "RobotoBold";
  font-size: 20px;
  margin-bottom: 20px;
}
article ul {
  margin-left: 20px;
  list-style: disc outside;
}
article ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

footer {
  background: #706caf;
  color: #fff;
  min-width: 1170px;
}

.footer {
  padding: 20px 0;
}
.footer__left-content {
  float: left;
  width: 490px;
}
.footer__left-content p {
  font-size: 14px;
}
.footer__right-content {
  float: right;
}
.footer__right-content img {

    display: inline-block;
    padding: 2px;
    vertical-align:bottom;
}
.clearfix {
    clear: both;
}

.owl-carousel {
  margin: 40px 0;
}

.item img {
  width: 100%;
  border: 1px solid #706caf;
  box-sizing: border-box !important;
}

.form {
  font-size: 0px;
  margin-bottom: 40px;
  margin-top: 20px;
  /* Firefox 19+ */
  /* Firefox 18- */
}
.form ::-webkit-input-placeholder {
  font-family: "RobotoMedium";
  color: #706caf;
}
.form ::-moz-placeholder {
  font-family: "RobotoMedium";
  color: #706caf;
}
.form :-moz-placeholder {
  font-family: "RobotoMedium";
  color: #706caf;
}
.form :-ms-input-placeholder {
  font-family: "RobotoMedium";
  color: #706caf;
}
.form h2 {
  font-size: 27px;
  color: #45408b;
  margin-bottom: 10px;
}
.form p {
  color: #727272;
}
.form__input {
  height: 47px;
  border: 1px solid #dadada;
  box-sizing: border-box;
  font-family: "RobotoRegular";
  font-size: 14px;
  outline: none;
  padding-left: 10px;
  width: 32%;
  margin-right: 2%;
  display: inline-block;
  margin-bottom: 20px;
  margin-top: 10px;
}
.form__textarea {
  width: 100%;
  border: 1px solid #dadada;
  box-sizing: border-box;
  font-size: 14px;
  font-family: "RobotoRegular";
  height: 100px;
  resize: none;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
}
.form__button {
  background: #45408b;
  color: #ffcc00;
  border: none;
  font-family: "RobotoMedium";
  font-size: 20px;
  border-radius: 5px;
  width: 200px;
  padding: 10px 0;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  outline: none;
}
.form__button:hover {
  background: #343068;
}

.f-block {
  background: #f1f1f1;
  padding: 10px 0;
  box-sizing: border-box;
  margin-bottom: 40px;
}
.f-block__img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 58.33333%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
.f-block__right {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 41.66667%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  border-top: 1px solid #706caf;
  border-bottom: 1px solid #706caf;
  padding: 30px 0;
}
.main-header {
    font-size: 22px;
    padding: 5px 0;
    display: block;
    color: #797979;
    text-transform: uppercase;
  border-top: 1px solid #706caf;
  border-bottom: 1px solid #706caf;
  margin-bottom: 10px;
  margin-top: 40px;
}
.block-h {
    background: #2f2f75;
    color: #fff;
font-family: "RobotoBold";
    padding: 12px 10px;
    font-size: 20px;
    text-transform: uppercase;
}
.h1 {
  font-size: 27px;
  color: #706caf;
  width: 100%;
  display: block;
  text-transform: uppercase;
  font-family: "RobotoRegular";
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 5px;
}

.contact-block {
  margin-bottom: 40px;
}
.contact-block h4 {
  font-size: 21px;
  color: #706caf;
  border-bottom: 1px solid #000;
  padding-bottom: 13px;
  margin-bottom: 10px;
}

.block {
  width: 30%;
  float: left;
  margin-right: 5%;
  margin-bottom: 30px;
}
.block_big {
  width: 48%;
  float: left;
  margin-right: 4%;
  margin-bottom: 30px;
  
 
}
.block_big img {
    box-sizing: border-box;
     border: 3px solid #706caf;
}
.block_big:last-child {
    margin-right: 0;
}
.block__img {
  position: relative;
}
.block__img img {
  width: 100%;
  vertical-align: bottom;
}
.block__inner {
  z-index: -1;
  position: absolute;
  background: #706caf;
  display: block;
  text-transform: uppercase;
  background: rgba(112, 108, 175, 0.8);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.block__inner a {
  position: absolute;
  color: #fff;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 251px;
}
.block__header {
  text-align: center;
  margin: 10px 0 20px 0;
  text-transform: uppercase;
  color: #706caf;
  font-family: "RobotoBold";
  font-size: 18px;
  display: block;
}
.block:hover {
  cursor: pointer;
}
.block:hover .block__header {
  color: #a6a6a6;
}
.block:hover .block__inner {
  z-index: 2;
}

.block:nth-child(3) {
  margin-right: 0;
}

body {
  font-family: "RobotoRegular";
}

strong {
  font-family: "RobotoBold";
}

p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
}
.search {
  position: relative;
  /* Firefox 19+ */
  /* Firefox 18- */
}
.search ::-webkit-input-placeholder {
  font-family: "RobotoLight";
  color: #000;
}
.search ::-moz-placeholder {
  font-family: "RobotoLight";
  color: #000;
}
.search :-moz-placeholder {
  font-family: "RobotoLight";
  color: #000;
}
.search :-ms-input-placeholder {
  font-family: "RobotoLight";
  color: #000;
}
.search__input {
  width: 100%;
  border: 1px solid #fff;
  height: 29px;
  color: #000;
  padding-left: 20px;
  box-sizing: border-box;
  background: #8682bb;
  outline: none;
  font-family: "RobotoRegular";
  font-size: 12px;
}
.search__button {
  background: transparent;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 3px;
  right: 0;
}

.header {
  padding-top: 30px;
}
.header__name {
  font-size: 19px;
  text-transform: uppercase;
  color: #fff;
}
.header__name span {
  line-height: 29px;
  padding: 0 30px;
  margin-top: 0;
  font-family: "RobotoLight";
  display: block;
  font-size: 17px;
}
.header__logo img {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}
.header .eye-version {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 20px;
  margin-left: 60px;
}
.header .eye-version span {
  line-height: 18px;
  font-size: 12px;
}
.header .eye-version img {
  display: block;
  float: left;
  padding-top: 7px;
  padding-right: 5px;
}




.breadcrumbs {
  margin: 20px 0;
  border-bottom: 1px solid #45408b;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li a {
  color: #979797;
  text-decoration: none;
}
.breadcrumbs li a:after {
  content: "/";
  padding-left: 5px;
}
.breadcrumbs li span {
  color: #706caf;
}



header {
  background: #706caf;
  min-width: 1170px;
}



.vk {
  text-transform: uppercase;
}
.vk img {
  vertical-align: middle;
}

article {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 75%;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
article h1 {
  color: #45408b;
  font-family: "RobotoBold";
  font-size: 20px;
  margin-bottom: 20px;
}
article ul {
  margin-left: 20px;
  list-style: disc outside;
}
article ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 24px;
}

footer {
  background: #706caf;
  color: #fff;
  min-width: 1170px;
}


.owl-carousel {
  margin: 40px 0;
}

.item img {
  width: 100%;
  border: 1px solid #706caf;
  box-sizing: border-box !important;
}

.form {
  font-size: 0px;
  margin-bottom: 40px;
  margin-top: 20px;
  /* Firefox 19+ */
  /* Firefox 18- */
}
.form ::-webkit-input-placeholder {
  font-family: "RobotoMedium";
  color: #706caf;
}
.form ::-moz-placeholder {
  font-family: "RobotoMedium";
  color: #706caf;
}
.form :-moz-placeholder {
  font-family: "RobotoMedium";
  color: #706caf;
}
.form :-ms-input-placeholder {
  font-family: "RobotoMedium";
  color: #706caf;
}
.form h2 {
  font-size: 27px;
  color: #45408b;
  margin-bottom: 10px;
}
.form p {
  color: #727272;
}
.form__input {
  height: 47px;
  border: 1px solid #dadada;
  box-sizing: border-box;
  font-family: "RobotoRegular";
  font-size: 14px;
  outline: none;
  padding-left: 10px;
  width: 32%;
  margin-right: 2%;
  display: inline-block;
  margin-bottom: 20px;
  margin-top: 10px;
}
.form__textarea {
  width: 100%;
  border: 1px solid #dadada;
  box-sizing: border-box;
  font-size: 14px;
  font-family: "RobotoRegular";
  height: 100px;
  resize: none;
  outline: none;
  padding: 10px;
  margin-bottom: 20px;
}
.form__button {
  background: #45408b;
  color: #ffcc00;
  border: none;
  font-family: "RobotoMedium";
  font-size: 20px;
  border-radius: 5px;
  width: 200px;
  padding: 10px 0;
  text-transform: uppercase;
  cursor: pointer;
  display: block;
  margin: 0 auto;
  outline: none;
}
.form__button:hover {
  background: #343068;
}

.f-block {
  background: #f1f1f1;
  padding: 10px 0;
  box-sizing: border-box;
  display: table;
}
.f-block__img {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 66.33333%;
  display: table-cell;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
}
.f-block__right {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 32.66667%;
    display: table-cell;
  float: left;
  padding-left: 0.83333%;
  padding-right: 0.83333%;
  border-top: 1px solid #706caf;
  border-bottom: 1px solid #706caf;
    padding: 10px 0;
    margin: 30px 0;
    margin-right: 1%;
}
.f-block__right h4 {
    font-size: 20px;
    color: #706caf;
    line-height: 25px;
    margin-bottom: 10px;
    font-family: "RobotoBold";
}
.f-block__right p {
    font-size: 15px;
}
.h1 {
  font-size: 27px;
  color: #706caf;
  text-transform: uppercase;
  font-family: "RobotoRegular";
  border-bottom: 1px solid #cbcbcb;
  padding-bottom: 5px;
}

.contact-block {
  margin-bottom: 40px;
}
.contact-block h4 {
  font-size: 21px;
  color: #706caf;
  border-bottom: 1px solid #000;
  padding-bottom: 13px;
  margin-bottom: 10px;
}

.block__inner {
  z-index: -1;
  position: absolute;
  background: #706caf;
  display: block;
  text-transform: uppercase;
  background: rgba(112, 108, 175, 0.8);
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.block__inner a {
  position: absolute;
  color: #fff;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-align: center;
  line-height: 251px;
}
.block__header {
  text-align: center;
  margin: 10px 0 20px 0;
  text-transform: uppercase;
  color: #706caf;
  font-family: "RobotoBold";
  font-size: 18px;
  display: block;
}
.block:hover {
  cursor: pointer;
}
.block:hover .block__header {
  color: #a6a6a6;
}
.block:hover .block__inner {
  z-index: 2;
}

.block_big:hover {
  cursor: pointer;
}
.block_big:hover .block__header {
  color: #a6a6a6;
}
.block_big:hover .block__inner {
  z-index: 2;
}


.block:nth-child(3) {
  margin-right: 0;
}
.attention-block {
    border-radius: 5px;
    border: 4px solid #706caf;
    padding: 30px;
    margin-bottom: 40px;
}
.attention-block h4 {
    color: #706caf;
    font-size: 27px;
    padding-bottom: 10px;
    border-bottom: 1px solid #706caf;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.attention-block p {
    font-size: 17px;
    
}
.block-gallery .block__inner{
    background: rgba(255, 255, 255, 0.5);
}
.block__inner img {
        position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}
.img-list {
    list-style: none;
    margin: 0;
    padding: 0;
   
}
.img-list li {
    float: left;
    width: 20%;
     margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
}
.img-list .img-list__img {
    height: 100px;
}
.img-list .img-list__img img {
    vertical-align: middle;
}
.img-list .img-list__desc {
    font-size: 12px;
    display: block;
}
#map {
    margin-bottom: 40px;
}
.main-list__block {
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    position: relative;
}
.main-list__block  img {
    width: 100%;
}
.main-list__header {
    position: absolute;
    width: 100%;
        background: rgba(112, 108, 175, 0.8);
        text-align: center;
        text-decoration: none;
        color: #fff;
        height: 38px;
        padding: 10px 0;
        line-height: 20px;
        text-transform: uppercase;
        bottom: 20px;
        display:table;
}
.main-list__block:hover .main-list__header {
    color: #ffcc00;
}
.main-list__block:nth-child(3n){
    margin-right: 0;
}
.main-list__header:before {
     content: "";
  display: inline-block;
  min-height: inherit;
  height: 100%;
  vertical-align: middle;
}
.main-list__header span {
    display: inline-block;
  vertical-align: middle;
}
.eye-version a {
    color: #fff;
    text-decoration: none;
}
input.error {
    border: 1px solid brown;
}
/*** sizes */
.a-fontsize-small-body article p, .a-fontsize-small-body article li {
    font-size: 14px;
}

.a-fontsize-normal-body article p, .a-fontsize-normal-body article li{
    font-size: 16px;
}
.a-fontsize-big-body article p,.a-fontsize-big-body article li {
    font-size: 18px;
}
.a-color1-body .eye-version, .a-color2-body .eye-version, .a-color3-body .eye-version {
    display: none !important;
}
/*** color1 */
.a-color1-body .header {
    background: #fff;
    color: #000;
}
.a-color1-body .corner-top,  .a-color1-body .corner-top2,.a-color1-body .corner-left, .a-color2-body .corner-top,  .a-color2-body .corner-top2,.a-color2-body .corner-left ,.a-color3-body .corner-top,  .a-color3-body .corner-top2,.a-color3-body .corner-left  {
    display: none !important;
}
.a-color1-body .header__name span{
    color: #000;
}
.a-color1-body .header nav{
    background: none !important;
    padding-left: 102px;
}
.a-color1-body .header nav ul {
    padding-left: 0;
}
.a-color1-body .header nav ul {
    background: #fff;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
}
.a-color1-body .header nav ul a {
    color: #000;
}
.a-color1-body .search__input{
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
.a-color1-body aside nav{
    background: #fff;
}
.a-color1-body aside nav ul li a {
    color: #000;
    border-color: #000;
}
.a-color1-body footer {
    background: #fff;
    border-top: 2px solid #000;
}
.a-color1-body footer .footer__left-content {
    color: #000;
}
.a-color1-body .main-list__header {
        background: rgba(0, 0, 0, 0.8);
}
.a-color1-body .block-h {
    background: #000;
}
.a-color1-body .h1 {
    color: #000;
}
.a-color1-body .search {
    margin-top: 56px;
}
.a-color1-body .header nav .active {
    background: #000;
 
}
.a-color1-body .header nav .active>a {
       color: #fff;
}
.a-color1-body aside ul ul {
    background: #fff;
    color: #000;
    border: 1px solid #000;
}
.a-color1-body aside ul ul li,.a-color1-body aside ul ul li a {
     background: #fff;
}
/**** color-2 */

.a-color2-body .header {
    background: #000;
    color: #fff;
}
.a-color2-body .header__name span{
    color: #fff;
}
.a-color2-body .header nav{
    background: none !important;
    padding-left: 102px;
}
.a-color2-body .header nav ul {
    padding-left: 0;
}
.a-color2-body .header nav ul {
    background: #000;
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
}
.a-color2-body .header nav ul a {
    color: #fff;
}
.a-color2-body .search__input{
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}
.a-color2-body aside nav{
    background: #000;
}
.a-color2-body aside nav ul li a {
    color: #fff;
    border-color: #fff;
}
.a-color2-body footer {
    background: #000;
    border-top: 2px solid #fff;
}
.a-color2-body footer .footer__left-content {
    color: #fff;
}
.a-color2-body .main-list__header {
        background: rgba(0, 0, 0, 0.8);
}
.a-color2-body .block-h {
    background: #000;
}
.a-color2-body .h1 {
    color: #000;
}
.a-color2-body .search {
    margin-top: 56px;
}
.a-color2-body .header nav .active {
    background: #fff;
    color: #000;
}
.a-color2-body .header nav .active>a {
       color: #000;
}
.a-color2-body  .search ::-webkit-input-placeholder {
  font-family: "RobotoLight";
  color: #fff;
}
.a-color2-body  .search ::-moz-placeholder {
  font-family: "RobotoLight";
  color: #fff;
}
.a-color2-body  .search :-moz-placeholder {
  font-family: "RobotoLight";
  color: #fff;
}
.a-color2-body  .search :-ms-input-placeholder {
  font-family: "RobotoLight";
  color: #fff;
}
.a-color2-body aside ul ul {
    background: #000;
    color: #fff;
    border-color: #000;
}
.a-color2-body aside ul ul li,.a-color2-body aside ul ul li a {
     background: #000;
}
/***** color3 */

.a-color3-body .header {
    background: #9dd1ff;
    color: #000;
}
.a-color3-body aside ul ul {
    background: #9dd1ff;
    color: #000;
    border-color: #000;
}
.a-color3-body aside ul ul li,.a-color3-body aside ul ul li a {
     background: #9dd1ff;
}
.a-color3-body .header__name span{
    color: #000;
}
.a-color3-body .header nav{
    background: none !important;
    padding-left: 102px;
}
.a-color3-body .header nav ul {
    padding-left: 0;
}
.a-color3-body .header nav ul {
    background: #9dd1ff;
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    border-left: 1px solid #000;
}
.a-color3-body .header nav ul a {
    color: #000;
}
.a-color3-body .search__input{
    background: #9dd1ff;
    color: #000;
    border: 1px solid #000;
}
.a-color3-body aside nav{
    background: #9dd1ff;
}
.a-color3-body aside nav ul li a {
    color: #000;
    border-color: #000;
}
.a-color3-body footer {
    background: #9dd1ff;
    border-top: 2px solid #000;
}
.a-color3-body footer .footer__left-content {
    color: #0009dd1;
}
.a-color3-body .main-list__header {
        background: rgba(157, 209, 255, 0.8);
}
.a-color3-body .block-h {
    background: #9dd1ff;
}
.a-color3-body .h1 {
    color: #000;
}
.a-color3-body .search {
    margin-top: 56px;
}
.a-color3-body .header nav .active {
    background: #fff;
    color: #000;
}
.a-imagesoff-body article img{
    display: none !important;
}
.a-imagesoff-body .owl-carousel {
    display: none;
}
.a-imagesoff-body .main-list img {
    visibility: hidden;
    display: block !important;
}
.a-imagesoff-body aside img {
    display: none;
}
.left-news {
    width: 33.3333%;
    float: left;
    height: 260px;
    overflow: hidden;
    background: #45408b;
}
.right-news {
    float: left;
    width: 66.6666%;
    overflow: hidden;
}
.news {
    margin-bottom: 40px;
    height: 260px;
}
.news img {
    width: 100%;
}
.left-news p,.left-news span{
     padding: 0 10px;  
     font-size: 15px;
     color: #fff;
}
.left-news span {
    color: #ffcc00;
    padding-top: 10px;
    display: block;
}
.left-news a {
     padding: 0 10px; 
     display: block;
     color: #fff;
}
.left-news a:hover {
    color: #ffcc00;
}
.right-news__block {
    background: #cacaca;
        height: 80px;
    padding-left: 30px;
    font-size: 15px;
    display: block;
    box-sizing: border-box;
    padding-top:10px;
    color: #3b3b3b;
    cursor: pointer;
    margin-bottom: 10px;
    overflow: hidden;
}
.right-news__block span {
    text-decoration: underline;
}
.right-news__block h4 {
    padding: 10px 0;
    font-size: 15px;
}
.right-news__block:hover {
    background: #8f8f8f;
    color: #fff;
}
.docs {
    margin-bottom: 40px;
}
.docs h4 {
    border-bottom: 3px solid #d1d1d1;
    margin-bottom: 15px;
    padding-bottom: 5px;
    font-family: "RobotoBold";
    font-size: 24px;
}
.docs a {
    color: #000;
    padding: 5px 0;
    display: block;
    text-decoration: none;
}