@charset "UTF-8";
@font-face {
  font-family: Roboto;
  src: url(../fonts/Roboto-Regular.ttf); }

@font-face {
  font-family: RobotoBold;
  src: url(../fonts/Roboto-Bold.ttf); }

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: 16px;
  font: inherit;
  vertical-align: baseline;
  font-family: "Roboto", sans-serif; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1;
  min-width: 320px;
  overflow-x: hidden;
  background: #fff; }

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; }

a {
  -webkit-transition: color .3s;
  transition: color .3s; }

/*глобальные настройки*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

a {
  text-decoration: none;
  -webkit-transition: color .3s, background .3s;
  transition: color .3s, background .3s;
  color: #1c57b3; }
  a:hover {
    color: #256ddd; }

p:not(:last-child) {
  margin-bottom: 10px; }

img {
  height: auto;
  max-width: 100%; }

b, strong, .strong {
  font-family: 'RobotoBold', sans-serif;
  font-weight: bold; }

h1, h2, h3 {
  margin-bottom: 30px;
  font-family: 'RobotoBold', sans-serif; }

h1 {
  font-size: 1.875em; }

h2 {
  font-size: 1.625em; }

h3 {
  font-size: 1.375em; }

ul, ol {
  margin-bottom: 15px;
  padding-left: 30px; }
  ul li, ol li {
    padding: 5px 0; }

ul {
  list-style-type: disc; }

ol {
  list-style-type: decimal; }

.table-wrap {
  width: 100%;
  overflow-x: auto; }

table tr td {
  padding: 5px;
  border: 1px solid #000; }

.container {
  width: 1170px;
  padding: 0 15px;
  margin: 0 auto;
  position: relative; }

.title-section {
  margin-bottom: 30px;
  padding: 10px 0;
  font-family: 'RobotoBold', sans-serif;
  font-size: 1.875em;
  position: relative; }

.title-desc {
  font-size: 1.25em;
  line-height: 30px; }

.mask {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1050; }

html.overflow {
  overflow: hidden; }
  html.overflow .modal {
    overflow-y: auto; }

.hidden {
  display: none; }

.label-checkbox {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding-left: 35px;
  margin-right: 15px;
  font-size: 13px; }
  .label-checkbox::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 10px;
    position: absolute;
    left: 0;
    bottom: -4px;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #b7c3cc; }

input[type=checkbox] {
  width: 1px;
  height: 1px;
  margin: 0; }

input[type=checkbox]:checked + label:before {
  content: "\2713";
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 17px;
  color: #333;
  text-align: center;
  line-height: 15px; }

.input {
  padding: 15px;
  border: 1px solid #ccc; }

.btn {
  display: inline-block;
  padding: 17px 22px;
  border: none;
  cursor: pointer;
  background: #1c57b3;
  text-transform: uppercase;
  color: #fff;
  -webkit-transition: background .3s;
  transition: background .3s; }
  .btn:hover {
    background: #256ddd; }

.scrollTop {
  padding-top: 5px;
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1c57b3;
  color: #fff;
  border: 1px solid #fff;
  width: 30px;
  height: 30px;
  text-align: center; }
  .scrollTop:hover {
    background: #256ddd; }
  .scrollTop i {
    font-size: 1.125em; }

.modal-box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1060;
  visibility: hidden; }
  .modal-box.vis {
    visibility: visible; }
  .modal-box .modal {
    padding: 0;
    width: 0;
    background: #fff;
    border: 2px solid #1c57b3;
    position: relative;
    -webkit-transform: scale(0);
        -ms-transform: scale(0);
            transform: scale(0); }
    .modal-box .modal.open {
      padding: 40px;
      width: 600px;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1);
      -webkit-transition: -webkit-transform .9s;
      transition: -webkit-transform .9s;
      transition: transform .9s;
      transition: transform .9s, -webkit-transform .9s; }
    .modal-box .modal .close {
      position: absolute;
      right: 10px;
      top: 10px;
      font-size: 1.125em;
      color: #1c57b3; }
    .modal-box .modal .title {
      margin-bottom: 30px;
      font-family: 'RobotoBold', sans-serif;
      font-size: 1.25em; }
    .modal-box .modal form {
      text-align: center; }
      .modal-box .modal form .input {
        display: block;
        padding: 15px 25px;
        margin-bottom: 15px;
        width: 100%;
        border: 1px solid #ccc; }
      .modal-box .modal form .submit {
        padding: 15px 40px; }

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  list-style-type: none;
  margin: 30px 0 0;
  padding: 0; }
  .pagination li {
    padding: 0;
    margin-bottom: 5px;
    background: #1c57b3;
    color: #fff; }
    .pagination li.disabled {
      background: #ccc;
      color: #777; }
    .pagination li.active {
      background: #194c9d; }
    .pagination li:not(:last-child) {
      border-right: 1px solid #fff; }
    .pagination li span, .pagination li a {
      display: inline-block;
      padding: 12px; }
    .pagination li a {
      color: #fff; }
      .pagination li a:hover {
        background: #256ddd; }

.blur {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0; }

header {
  padding: 40px 0;
  background-size: cover;
  position: relative;
  overflow: hidden; }
  header .blur {
    background: url("../images/bg_2.jpg") center no-repeat;
    -webkit-filter: blur(6px);
            filter: blur(6px); }
  header .logo {
    margin-bottom: 60px;
    text-align: center; }
    header .logo a {
      font-family: 'RobotoBold', sans-serif;
      font-size: 2.5em;
      color: #fff;
      text-shadow: 0px 1px 0 #006fc7, 0px -1px 0 #006fc7, 1px 0px 0 #006fc7, -1px 0px 0 #006fc7, 1px 1px 0 #006fc7, 1px -1px 0 #006fc7, -1px 1px 0 #006fc7, -1px -1px 0 #006fc7, 0px 2px 0 #006fc7, 0px -2px 0 #006fc7, 2px 0px 0 #006fc7, -2px 0px 0 #006fc7, 2px 2px 0 #006fc7, 2px -2px 0 #006fc7, -2px 2px 0 #006fc7, -2px -2px 0 #006fc7, 3px 3px 1px rgba(0, 0, 0, 0.81);
      -webkit-text-shadow: 0px 1px 0 #006fc7, 0px -1px 0 #006fc7, 1px 0px 0 #006fc7, -1px 0px 0 #006fc7, 1px 1px 0 #006fc7, 1px -1px 0 #006fc7, -1px 1px 0 #006fc7, -1px -1px 0 #006fc7, 0px 2px 0 #006fc7, 0px -2px 0 #006fc7, 2px 0px 0 #006fc7, -2px 0px 0 #006fc7, 2px 2px 0 #006fc7, 2px -2px 0 #006fc7, -2px 2px 0 #006fc7, -2px -2px 0 #006fc7, 3px 3px 1px rgba(0, 0, 0, 0.81);
      -moz-text-shadow: 0px 1px 0 #006fc7, 0px -1px 0 #006fc7, 1px 0px 0 #006fc7, -1px 0px 0 #006fc7, 1px 1px 0 #006fc7, 1px -1px 0 #006fc7, -1px 1px 0 #006fc7, -1px -1px 0 #006fc7, 0px 2px 0 #006fc7, 0px -2px 0 #006fc7, 2px 0px 0 #006fc7, -2px 0px 0 #006fc7, 2px 2px 0 #006fc7, 2px -2px 0 #006fc7, -2px 2px 0 #006fc7, -2px -2px 0 #006fc7, 3px 3px 1px rgba(0, 0, 0, 0.81); }
  header .items-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-evenly;
        -ms-flex-pack: justify;
            justify-content: space-evenly; }
    header .items-box .item {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -webkit-flex-direction: column;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: center;
      -webkit-align-items: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 20px;
      width: 26%;
      text-align: center;
      line-height: 20px;
      opacity: .8;
      -webkit-transition: opacity .3s;
      transition: opacity .3s;
      font-family: 'RobotoBold', sans-serif;
      color: #000;
      text-transform: uppercase; }
      header .items-box .item:hover {
        opacity: 1; }
      header .items-box .item a {
        display: block;
        max-width: 200px;
        background: #fff; }
      header .items-box .item .text {
        padding: 8px;
        font-family: 'RobotoBold', sans-serif;
        font-size: 0.875em;
        color: #000; 
		min-height: 55px;}
  header .search-box {
    margin-top: 30px; }
    header .search-box form {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      opacity: .6;
      -webkit-transition: opacity .3s;
      transition: opacity .3s; }
      header .search-box form:hover {
        opacity: 1; }
      header .search-box form .input {
        padding: 15px 15px;
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        border: none; }
      header .search-box form .submit {
        padding: 5px 20px;
        background: #1c57b3;
        color: #fff;
        border: none;
        font-size: 1.125em;
        cursor: pointer;
        -webkit-transition: background .3s;
        transition: background .3s; }
        header .search-box form .submit:hover {
          background: #256ddd; }
  header .btn {
    padding: 0;
    position: absolute;
    right: 0;
    top: 0;
    background: none; }
    header .btn:hover {
      background: none; }
    header .btn a {
      display: inline-block;
      padding-top: 11px;
      width: 60px;
      height: 60px;
      border: 2px solid #fff;
      border-radius: 50%;
      text-align: center; }
    header .btn i {
      font-size: 1.875em;
      color: #fff; }

.top-menu {
  margin-bottom: 30px;
  border-bottom: 2px solid #1c57b3; }
  .top-menu .btn-open-menu {
    display: none;
    margin: 0 auto;
    width: 50px;
    height: 50px;
    position: relative;
    cursor: pointer; }
    .top-menu .btn-open-menu.active::before {
      content: '\f00d'; }
    .top-menu .btn-open-menu::before {
      content: '\f0c9';
      position: absolute;
      font-family: 'FontAwesome', sans-serif;
      font-size: 1.5em;
      color: #1c57b3;
      left: 50%;
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  .top-menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none; }
    .top-menu ul li {
      padding: 0;
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      text-align: center; }
      .top-menu ul li:not(:last-child) {
        border-right: 1px solid rgba(75, 116, 189, 0.3); }
      .top-menu ul li a {
        display: inline-block;
        padding: 15px;
        width: 100%;
        font-family: 'RobotoBold', sans-serif;
        color: #1c57b3;
        letter-spacing: .5px; }
        .top-menu ul li a:hover {
          background: #1c57b3;
          color: #fff; }

.main .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between; }

.main .left-sidebar {
  margin-right: 30px;
  width: 220px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; }
  .main .left-sidebar .left-menu {
    padding-left: 0;
    margin-bottom: 0;
    list-style-type: none; }
    .main .left-sidebar .left-menu li {
      padding: 0;
      position: relative; }
      .main .left-sidebar .left-menu li:not(:last-child) a {
        border-bottom: 1px solid #ddd; }
      .main .left-sidebar .left-menu li a {
        display: block;
        padding: 5px;
        font-size: 0.9375em;
        color: #1c57b3; }
        .main .left-sidebar .left-menu li a:hover {
          background: #1c57b3;
          color: #fff; }
      .main .left-sidebar .left-menu li.parent a {
        padding-right: 30px; }
      .main .left-sidebar .left-menu li.active > .btn-open-menu {
        -webkit-transform: rotate(180deg);
            -ms-transform: rotate(180deg);
                transform: rotate(180deg); }
      .main .left-sidebar .left-menu li .btn-open-menu {
        position: absolute;
        font-size: 0.875em;
        color: #1c57b3;
        right: 0;
        top: 6px;
        width: 15px;
        height: 15px;
        text-align: center;
        z-index: 10;
        cursor: pointer; }
      .main .left-sidebar .left-menu li ul {
        display: none;
        margin-bottom: 0;
        padding-left: 10px;
        list-style-type: none; }

.main .content {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }
  .main .content .news-box .item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
    .main .content .news-box .item:not(:last-child) {
      margin-bottom: 15px;
      padding-bottom: 15px;
      border-bottom: 1px solid #ddd; }
    .main .content .news-box .item .text {
      width: 75%; }
      .main .content .news-box .item .text .name {
        display: inline-block;
        margin-bottom: 15px;
        font-family: 'RobotoBold', sans-serif;
        color: #1c57b3; }
        .main .content .news-box .item .text .name:hover {
          color: #256ddd; }
      .main .content .news-box .item .text .desc {
        font-size: 0.875em;
        line-height: 20px; }
    .main .content .news-box .item .image {
      width: 20%; }
    .main .content .news-box .item .link {
      margin-top: 15px;
      width: 100%;
      text-align: right; }
      .main .content .news-box .item .link a {
        display: inline-block;
        padding: 8px 15px;
        background: #1c57b3;
        font-size: 0.875em;
        color: #fff; }
        .main .content .news-box .item .link a:hover {
          background: #256ddd; }

.main .right-sidebar {
  margin-left: 30px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 200px; }
  .main .right-sidebar .preview-box, .main .right-sidebar .useful-links {
    padding: 15px 15px 5px;
    border: 1px solid #ddd; }
    .main .right-sidebar .preview-box .title, .main .right-sidebar .useful-links .title {
      margin-bottom: 20px; }
    .main .right-sidebar .preview-box a, .main .right-sidebar .useful-links a {
      display: block;
      margin-bottom: 10px;
      font-size: 0.875em;
      color: #1c57b3; }
      .main .right-sidebar .preview-box a:hover, .main .right-sidebar .useful-links a:hover {
        text-decoration: underline; }
  .main .right-sidebar .preview-box {
    margin-bottom: 15px; }

.feedback {
  margin-top: 50px;
  text-align: center; }
  .feedback a {
    display: inline-block;
    padding: 20px 140px;
    background: #1c57b3;
    color: #fff;
    text-transform: uppercase; }
    .feedback a:hover {
      background: #256ddd; }

footer {
  margin-top: 30px;
  padding: 30px 0;
  background: #1c57b3;
  color: #fff; }
  footer .flex-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }
  footer .copy {
    font-size: 0.875em; }
  footer .soc-box .btn-soc {
    display: inline-block;
    padding-top: 4px;
    width: 30px;
    height: 30px;
    color: #fff;
    font-size: 1.25em;
    border: 1px solid #fff;
    text-align: center; }
    footer .soc-box .btn-soc:hover {
      background: #fff;
      color: #1c57b3; }

.section-page .date {
  text-align: right; }

.section-page p {
  font-size: 0.875em;
  line-height: 20px; }

.form-login {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column; }
  .form-login .input {
    margin-bottom: 15px; }

.sub-page-box {
  margin-top: 20px; }
  .sub-page-box a {
    display: block;
    font-family: 'RobotoBold', sans-serif;
    font-size: 1.125em; }
    .sub-page-box a:not(:last-child) {
      margin-bottom: 15px; }

@media only screen and (max-width: 1200px) {
  .container {
    width: 980px; } }

@media only screen and (max-width: 992px) {
  .container {
    width: 750px; }
  .main .content .news-box .item .text {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2; }
  .main .content .news-box .item .image {
    width: 100%;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1; }
  .main .content .news-box .item .link {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3; } }

@media only screen and (max-width: 768px) {
  .container {
    width: 100%; }
  header {
    padding: 80px 0;
    background: #ffe4c4; }
  header .items-box .item {
    width: 49%; }
  header .btn {
    right: 15px;
    top: -60px; }
  header .btn a {
    border-color: #1c57b3; }
  header .btn i {
    color: #1c57b3; }
  .top-menu .btn-open-menu {
    display: block; }
  .main .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .main .left-sidebar {
    margin-bottom: 20px;
    margin-right: 0;
    width: 100%; }
  .main .right-sidebar {
    margin-top: 20px;
    margin-left: 0;
    width: 100%; }
  .top-menu ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column; }
  .top-menu ul li:not(:last-child) {
    border-right: none; }
  .btn-open-menu {
    display: block; }
  .top-menu ul {
    display: none; } }

@media only screen and (max-width: 480px) {
  header .logo a {
    font-size: 1.5em; }
  .feedback a {
    padding: 20px 30px; }
  .modal-box .modal .title {
    font-size: 1em; } }

@media only screen and (min-width: 769px) {
  .top-menu ul {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important; } }
