* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

 html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, td, blockquote, pre, a, button, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, hr, 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 {
  font-size: 100%;
  //font: inherit;
  border: 0;
  vertical-align: baseline;
  padding: 0;
  //margin: 0;
}

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

ul {
  list-style: none;
   }

ol {
  list-style: decimal;
  margin-left: 20px;
 }
 
blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}

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

a, a:hover, a:focus, a:active, button, select, option {
  cursor: pointer;
  text-decoration: underline;
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

input, textarea {
  outline: none;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

@font-face {
  font-family: "ProximaNovaRegular";
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/ProximaNovaRegular/ProximaNovaRegular.eot");
  src: url("../fonts/ProximaNovaRegular/ProximaNovaRegular.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaRegular/ProximaNovaRegular.woff") format("woff"), url("../fonts/ProximaNovaRegular/ProximaNovaRegular.ttf") format("truetype");
}

@font-face {
  font-family: "ProximaNovaBold";
  font-weight: normal;
  font-style: normal;
  text-rendering: optimizeLegibility;
  src: url("../fonts/ProximaNovaBold/ProximaNovaBold.eot");
  src: url("../fonts/ProximaNovaBold/ProximaNovaBold.eot?#iefix") format("embedded-opentype"), url("../fonts/ProximaNovaBold/ProximaNovaBold.woff") format("woff"), url("../fonts/ProximaNovaBold/ProximaNovaBold.ttf") format("truetype");
}

.preloader {
  position: fixed;
  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;
  top: inherit;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100vh;
  background: -webkit-gradient(linear, left top, right top, from(#346635), to(#f7fdf7));
  background: linear-gradient(to right, #346635, #f7fdf7);
  z-index: 9999;
}

.preloader .pulse {
  position: relative;
}

.preloader .pulse:before, .preloader .pulse:after {
  position: absolute;
  content: '';
  width: 80px;
  height: 80px;
  border: 5px solid #fff;
  -webkit-border-radius: 500px;
          border-radius: 500px;
  margin: 0 0 0 -40px;
}

.preloader .pulse:before {
  -webkit-animation: pulse-outer 0.8s ease-in infinite;
          animation: pulse-outer 0.8s ease-in infinite;
}

.preloader .pulse:after {
  -webkit-animation: pulse-inner 0.8s linear infinite;
          animation: pulse-inner 0.8s linear infinite;
}

@-webkit-keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@keyframes pulse-outer {
  0% {
    opacity: 1;
    filter: alpha(opacity=100);
  }
  50% {
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
  }
}

@-webkit-keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

@keyframes pulse-inner {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
    opacity: 0;
    filter: alpha(opacity=0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
    filter: alpha(opacity=100);
  }
}

html {
  overflow-x: hidden;
}

body {
  position: relative;
  font: 16px/1.4 "ProximaNovaRegular", sans-serif;
  color: #000;
  background: #f7fdf7;
  overflow: hidden;
}

h2 {
  color: #b30303;
  font: 20px/1 "ProximaNovaBold", sans-serif;
  margin: 0 0 15px;
}

h3 {
  font-family: "ProximaNovaBold", sans-serif;
}

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

.navigation {
  display: inline-block;
  padding: 0 25px;
  margin: 30px 0 15px;
}

.navigation ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  background: #c9e3fc;
  -webkit-border-radius: 10px 0 10px 0;
          border-radius: 10px 0 10px 0;
  padding: 5px 15px;
}

.navigation li {
  position: relative;
}

.navigation li:not(:last-child) {
  margin: 0 20px 0 0;
}

.navigation li:not(:last-child):after {
  content: ':';
  position: absolute;
  top: -3px;
  right: -11px;
  color: #000494;
  font-size: 13px;
}

.navigation a {
  display: block;
  color: #000494;
  font-size: 13px;
  line-height: 1;
}

.navigation a:hover {
  color: #0777ab;
}

.navigation-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 13px;
  line-height: 1;
  color: #fff;
  background: #686868;
  -webkit-border-radius: 10px 0 10px 0;
          border-radius: 10px 0 10px 0;
  padding: 5px 15px;
}

.head-logo {
  background: #fbfafa;
  padding: 0px 0px 0px;
  width: 100%;
  }

.head-logo a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4382d5;
    font: 18px/1.2 "ProximaNovaBold", sans-serif;
    width: 100%;
    }

.head-logo a p {
  margin: 5px 0 0 25px;
  width: 100%;
  }

.head-nav {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 62px;
  background: #686868;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  padding: 0 15px;
}

.head-icon {
  margin: 0 25px 0 0;
}

.head-menu {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}

.head-menu > ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-menu > ul > li {
  position: relative;
  margin: 5px 0 0;
}

.head-menu > ul > li:hover .head-menu-dropdown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.head-menu > ul > li:not(:last-child) {
  margin: 5px 25px 0 0;
}

.head-menu > ul > li > a {
  display: block;
  color: #fff;
  font: 18px/1 "ProximaNovaBold", sans-serif;
  border-bottom: 1px solid transparent;
}

.head-menu > ul > li > a:hover {
  color: #fff;
  border-bottom: 1px solid #fff;
}

.head-menu > ul > li > span {
  display: block;
  color: #fff;
  font: 18px/1 "ProximaNovaBold", sans-serif;
  cursor: pointer;
  user-select: none;
}

.head-menu-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  width: auto;
  background: #686868;
  -webkit-border-radius: 3px;
          border-radius: 3px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(15px);
      -ms-transform: translateY(15px);
          transform: translateY(15px);
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  padding: 20px 20px 15px;
  z-index: 10;
}

.head-menu-dropdown li:not(:last-child) {
  margin: 0 0 10px;
}

.head-menu-dropdown li a {
  display: block;
  color: #fff;
  line-height: 1.2;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  white-space: nowrap;
}

.head-menu-dropdown li a:hover {
  color: #fff;
  -webkit-text-decoration-color: #fff;
          text-decoration-color: #fff;
}

.head-search {
  position: relative;
  z-index: 11;
}

.head-search form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.head-search button {
  background: none;
  border: none;
  margin: 0 5px 0 0;
}

.head-search input {
  width: 155px;
  height: 38px;
  font-size: 18px;
  border: 1px solid #799a7a;
  padding: 0 10px;
}

.head-toggle {
  display: none;
  width: 30px;
  cursor: pointer;
}

.head-toggle.open hr:nth-child(1) {
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: 3px 7px;
      -ms-transform-origin: 3px 7px;
          transform-origin: 3px 7px;
}

.head-toggle.open hr:nth-child(2) {
  opacity: 0;
}

.head-toggle.open hr:nth-child(3) {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transform-origin: 3px -3px;
      -ms-transform-origin: 3px -3px;
          transform-origin: 3px -3px;
}

.head-toggle hr {
  display: block;
  width: 100%;
  height: 4px;
  background: #fff;
  border: none;
  -webkit-border-radius: 25px;
          border-radius: 25px;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  margin: 0;
}

.head-toggle hr:nth-child(2) {
  margin: 6px 0;
}

.main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: wrap;
      -ms-flex-flow: wrap;
          flex-flow: wrap;
  background: #fdfdfd;
}

.main-content {
  width: 65%;
  border-right: 2px solid #c31313;
  padding: 0 0 100px;
}

.main-block {
  padding: 20px 25px;
}

.main-block:not(:last-child) {
  border-bottom: 2px solid #c31313;
}

.main-block a {
  color: #000;
}

.main-block a:hover {
  color: #686868;
}

.main-row {
  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-half {
  width: -webkit-calc(50% - 5px);
  width: calc(50% - 5px);
}

.main-half h2 {
  text-align: right;
}

.main-half:first-child h2 {
  text-align: left;
}

.main-half:first-child .box-row {
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.main-half:first-child .box-links {
  -webkit-box-ordinal-group: 0;
  -webkit-order: -1;
      -ms-flex-order: -1;
          order: -1;
  text-align: right;
  margin: 0 20px 0 0;
}

.main-half .box-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px;
}

.main-half .box-img {
  width: 112px;
  height: 70px;
}

.main-half .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-half .box-links {
  font-size: 12px;
  margin: 0 0 0 20px;
}

.main-half .box-links h3 {
  line-height: 1;
  margin: 0 0 10px;
}

.main-half .box-links a {
  display: block;
  line-height: 1.2;
}

.main-all {
  font-size: 18px;
  line-height: 1;
}

.main-all a {
  display: block;
  margin: 0 0 10px;
}

.main-news .box-sm {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 40px;
}

.main-news .box-sm-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 297px;
  margin: 0 25px 0 0;
}

.main-news .box-sm-img img {
  max-width: 100%;
}

.main-news .box-sm-links a {
 /// display: block;
///  font-size: 14px;
}

.main-news .box-sm-date {
  color: #9c1305;
  font: 15px/1 "ProximaNovaBold", sans-serif;
  margin: 0 0 15px;
}

.main-news .box-xl {
  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;
  margin: 0 0 30px;
}

.main-news .box-xl a {
  display: block;
  width: -webkit-calc(100% / 4 - 12px);
  width: calc(100% / 4 - 12px);
  font: 14px/1.2 "ProximaNovaBold", sans-serif;
  letter-spacing: 1px;
}

.main-news .box-xl-img {
  display: block;
  width: 100%;
  height: 188px;
  margin: 0 0 10px;
}

.main-news .box-xl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-news .box-xl-text {
  display: block;
}

.main-eco, .main-history {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.main-eco .box-xl, .main-history .box-xl {
  width: 289px;
  margin: 0 20px 0 0;
}

.main-eco .box-xl-img, .main-history .box-xl-img {
  width: 100%;
  height: 193px;
  margin: 0 0 15px;
}

.main-eco .box-xl-img img, .main-history .box-xl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-eco .box-xl-links h3, .main-history .box-xl-links h3 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 20px;
}

.main-eco .box-xl-links li:not(:last-child), .main-history .box-xl-links li:not(:last-child) {
  margin: 0 0 5px;
}

.main-eco .box-xl-links a, .main-history .box-xl-links a {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.main-eco .box-sm, .main-history .box-sm {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
}

.main-eco .box-sm-row, .main-history .box-sm-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 20px;
}

.main-eco .box-sm-img, .main-history .box-sm-img {
  width: 170px;
  height: 125px;
  margin: 0 10px 0 0;
}

.main-eco .box-sm-img img, .main-history .box-sm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-eco .box-sm-links, .main-history .box-sm-links {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
}

.main-eco .box-sm-links h3, .main-history .box-sm-links h3 {
  font-size: 14px;
  line-height: 1.2;
  margin: 0 0 15px;
}

.main-eco .box-sm-links li:first-child, .main-history .box-sm-links li:first-child {
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.main-eco .box-sm-links li:not(:last-child), .main-history .box-sm-links li:not(:last-child) {
  margin: 0 0 5px;
}

.main-eco .box-sm-links a, .main-history .box-sm-links a {
  display: block;
  font-size: 12px;
  line-height: 1.2;
  text-transform: none;
}

.main-history .box-xl-links a {
  text-transform: none;
}

.main-cinema .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-cinema .box-img {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 478px;
  height: 272px;
  margin: 0 20px 0 0;
}

.main-cinema .box-img img {
  max-width: 100%;
  max-height: 100%;
}

.main-cinema .box-links {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 20%;
}

.main-cinema .box-links h3 {
  font-size: 18px;
  line-height: 1;
  margin: 0 0 20px;
}

.main-cinema .box-links li:not(:last-child) {
  margin: 0 0 12px;
}

.main-cinema .box-links a {
  display: block;
  font-size: 13px;
  line-height: 1.2;
  text-transform: uppercase;
}

.main-media {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main-media a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: -webkit-calc(100% / 3 - 10px);
  width: calc(100% / 3 - 10px);
}

.main-media a img {
  max-width: 100%;
  max-height: 100%;
}

.main-sidebar {
  width: 35%;
}

.main-sidebar h2 {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-sidebar h2 img {
  margin: 0 20px 0 0;
}

.main-sidebar a {
  color: #000;
}

.main-sidebar a:hover {
  color: #686868;
}

.main-calendar {
  padding: 15px 25px 25px;
  border-bottom: 2px solid #c31313;
}

.main-calendar .box {
  font-size: 12px;
}

.main-calendar .box-date {
  font-weight: 700;
}

.main-photo {
  padding: 15px 25px 30px;
  border-bottom: 2px solid #c31313;
}

.main-photo-img {
  width: 100%;
}

.main-photo-img img {
  max-width: 100%;
  max-height: 100%;
}

.main-house {
  padding: 15px 25px 15px;
  border-bottom: 2px solid #c31313;
}

.main-house .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  line-height: 1.5;
  margin: 0 0 15px;
}

.main-house .box-img {
  display: block;
  width: 142px;
  height: 98px;
  margin: 0 10px 0 0;
}

.main-house .box-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-house .box-text {
  display: block;
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  width: 50%;
  margin: 5px 0 0;
}

.main-books {
  padding: 15px 25px 25px;
  border-bottom: 2px solid #c31313;
}

.main-books ul li:not(:last-child) {
  margin: 0 0 5px;
}

.main-books ul li a {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.main-books-img {
  width: 100%;
  margin: 15px 0 0;
}

.main-books-img img {
  max-width: 100%;
  max-height: 100%;
}

.main-stories {
  padding: 15px 25px 30px;
  border-bottom: 2px solid #c31313;
}

.main-stories ul li:not(:last-child) {
  margin: 0 0 5px;
}

.main-stories ul li a {
  display: block;
  font-size: 12px;
  line-height: 1.2;
}

.main-video {
  padding: 15px 25px 25px;
}

.main-video a {
  display: block;
  width: 100%;
}

.main-video a img {
  max-width: 100%;
  max-height: 100%;
}

.main-articles {
  padding: 0 25px;
}

.main-articles p {
  line-height: 1.2;
  margin: 15px 0;
  font-size: 100%;
  font: inherit;

}

.main-articles p strong {
  font-family: "ProximaNovaBold", sans-serif;
}

.foot {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 60px;
  background: #686868;
  padding: 0 30px;
}

.foot-contacts {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 50px 0 0;
}

.foot-contacts a {
  display: block;
}

.foot-mail {
  margin: 0 25px 0 0;
}

.foot-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px 0 0;
}

.foot-links a {
  display: block;
  margin: 0 15px 0 0;
}

.foot-copyright {
  -webkit-box-flex: 2;
  -webkit-flex-grow: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  color: #fff;
  font-size: 18px;
  line-height: 1;
}

/*==========  Responsive  ==========*/
@media only screen and (min-width: 576px) {
  .container {
    width: 540px;
  }
}

@media only screen and (min-width: 768px) {
  .container {
    width: 720px;
  }
}

@media only screen and (min-width: 992px) {
  .container {
    width: 960px;
  }
}

@media only screen and (min-width: 1250px) {
  .container {
    width: 1230px;
  }
}

@media only screen and (max-width: 1249px) {
  .head-icon {
    display: none;
  }
  .head-menu {
    position: absolute;
    display: none;
    top: 62px;
    right: 0;
    left: 0;
    background: #686868;
    z-index: 99;
  }
  .head-menu > ul {
    display: block;
    text-align: center;
    padding: 10px 0 20px;
  }
  .head-menu > ul > li {
    margin: 0;
  }
  .head-menu > ul > li:hover .head-menu-dropdown {
    max-height: 260px;
    padding: 10px 0;
  }
  .head-menu > ul > li:not(:last-child) {
    margin: 0 0 10px;
  }
  .head-menu > ul > li > a {
    display: inline-block;
    font-size: 16px;
  }
  .head-menu > ul > li > span {
    display: inline-block;
    font-size: 16px;
  }
  .head-menu-dropdown {
    position: relative;
    top: auto;
    left: auto;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
            transform: translateY(0);
    padding: 0;
  }
  .head-menu-dropdown li a {
    font-size: 15px;
    white-space: normal;
  }
  .head-search {
    -webkit-box-flex: 2;
    -webkit-flex-grow: 2;
        -ms-flex-positive: 2;
            flex-grow: 2;
  }
  .head-search form input {
    width: -webkit-calc(100% - 240px);
    width: calc(100% - 240px);
  }
  .head-toggle {
    display: block;
  }
  .main-row {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .main-half {
    width: 100%;
  }
  .main-half h2 {
    text-align: left;
  }
  .main-half:first-child {
    margin: 0 0 20px;
  }
  .main-half:first-child .box-row {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .main-half:first-child .box-links {
    -webkit-box-ordinal-group: initial;
    -webkit-order: initial;
        -ms-flex-order: initial;
            order: initial;
    text-align: left;
    margin: 0 0 0 20px;
  }
  .main-news .box-xl {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .main-news .box-xl a {
    width: -webkit-calc(100% / 2 - 70px);
    width: calc(100% / 2 - 70px);
    margin: 0 0 30px;
  }
  .main-eco, .main-history {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .main-eco .box-xl, .main-history .box-xl {
    margin: 0 0 30px;
  }
  .main-eco .box-sm, .main-history .box-sm {
    width: 100%;
  }
  .main-cinema .box {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main-cinema .box-img {
    margin: 0 0 20px;
  }
  .main-cinema .box-links {
    width: 100%;
  }
  .foot {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: initial;
    padding: 20px 30px;
  }
  .foot-contacts {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    margin: 0;
  }
  .foot-links {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
    margin: 0;
  }
  .foot-links a {
    margin: 0;
  }
  .foot-links a:not(:last-child) {
    margin: 0 25px 0 0;
  }
  .foot-analytics {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
  }
  .foot-copyright {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
    text-align: center;
    margin: 20px 0 0;
  }
}

@media only screen and (max-width: 991px) {
  .head-logo a {
    font-size: 14px;
  }
  .head-logo a img {
    width: 450px;
  }
  .head-search form input {
    width: -webkit-calc(100% - 70px);
    width: calc(100% - 70px);
  }
  .main-content {
    width: 100%;
    border: none;
    padding: 0 0 30px;
  }
  .main-news .box-xl a {
    width: -webkit-calc(100% / 3 - 12px);
    width: calc(100% / 3 - 12px);
  }
  .main-sidebar {
    width: 100%;
    padding: 0 0 50px;
  }
  .foot-copyright {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .head-logo a {
    font-size: 12px;
  }
  .head-logo a img {
    width: 320px;
  }
  .head-logo a p {
    margin: 5px 0 0 15px;
  }
  .main-content {
    width: 100%;
    border: none;
    padding: 0 0 30px;
  }
  .main-news .box-sm {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .main-news .box-sm-img {
    margin: 0 0 20px;
  }
  .main-news .box-sm-links {
    width: 100%;
  }
  .main-news .box-xl a {
    width: -webkit-calc(100% / 2 - 50px);
    width: calc(100% / 2 - 50px);
  }
  .main-cinema .box-img {
    width: 100%;
    height: auto;
  }
  .foot {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 30px 15px;
  }
  .foot-contacts {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 30px;
  }
  .foot-links {
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 0 30px;
  }
  .foot-copyright {
    margin: 30px 0 0;
  }
}

@media only screen and (max-width: 575px) {
  .container {
    padding: 0;
  }
  .navigation {
    padding: 0 15px;
  }
  .head-logo {
    padding: 20px 15px;
  }
  .head-logo a {
    font-size: 9px;
      }
  .head-logo a img {
    width: 210px;
  }
  .head-logo a p {
    margin: 5px 0 0 10px;
    
  }
  .head-nav {
    -webkit-border-radius: 0;
            border-radius: 0;
  }
  .head-menu > ul > li:hover .head-menu-dropdown {
    max-height: 260px;
    padding: 10px 0;
  }
  .head-menu > ul > li > a {
    font-size: 14px;
  }
  .head-menu > ul > li > span {
    font-size: 14px;
  }
  .head-menu-dropdown li a {
    font-size: 13px;
  }
  .main-content {
    padding: 0;
  }
  .main-block {
    padding: 20px 15px;
  }
  .main-half:first-child {
    margin: 0;
  }
  .main-half:first-child .box-links {
    margin: 15px 0 0;
  }
  .main-half .box-row {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    margin: 0 0 25px;
  }
  .main-half .box-links {
    width: 100%;
    margin: 15px 0 0;
  }
  .main-news .box-xl {
    margin: 0;
  }
  .main-news .box-xl a {
    width: -webkit-calc(100% / 2 - 10px);
    width: calc(100% / 2 - 10px);
  }
  .main-news .box-xl-img {
    height: auto;
  }
  .main-eco .box-sm-row, .main-history .box-sm-row {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    margin: 0 0 30px;
  }
  .main-eco .box-sm-img, .main-history .box-sm-img {
    margin: 0 0 15px;
  }
  .main-eco .box-sm-links, .main-history .box-sm-links {
    width: 100%;
  }
  .main-media {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
  }
  .main-media a {
    width: -webkit-calc(100% / 2 - 10px);
    width: calc(100% / 2 - 10px);
    margin: 0 0 20px;
  }
  .main-calendar {
    padding: 15px 15px 25px;
  }
  .main-photo {
    padding: 15px 15px 30px;
  }
  .main-house {
    padding: 15px;
  }
  .main-house .box {
    -webkit-flex-flow: wrap;
        -ms-flex-flow: wrap;
            flex-flow: wrap;
    margin: 0 0 25px;
  }
  .main-house .box-text {
    width: 100%;
    margin: 10px 0 0;
  }
  .main-books {
    padding: 15px 15px 25px;
  }
  .main-stories {
    padding: 15px 15px 30px;
  }
  .main-video {
    padding: 15px 15px 25px;
  }
  .main-articles {
    padding: 0 15px;
  }
  .foot-copyright {
    font-size: 14px;
    line-height: 1.4;
  }
}

/*==========  End Responsive  ==========*/

