/* Common styles
  ========================================================================== */

/**
 * 1. Change from `box-sizing: content-box` so that `width` is not affected by `padding` or `border`;
 * 2. Set default font (2.1) and default font size (2.2);
 * 3. Correct the line height in all browsers;
 * 4. Prevent adjustments of font size after orientation changes in IE on Windows Phone and in iOS;
 * 5. Setting @viewport causes scrollbars to overlap content in IE11 and Edge, so we force a non-overlapping, non-auto-hiding scrollbar to counteract;
 * 6. Change the default tap highlight to be completely transparent in iOS.
**/

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  font-family: sans-serif;
  font-size: 1rem;
  /* 2 */
  line-height: 1.15;
  /* 3 */
  -ms-text-size-adjust: 100%;
  /* 4 */
  -webkit-text-size-adjust: 100%;
  /* 4 */
  -ms-overflow-style: scrollbar;
  /* 5 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  /* 6 */
}

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

/* Sections
  ========================================================================== */

/**
 * Removes the default spacing and border for appropriate elements and add default styles.
**/

body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
**/

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

/* Text-level semantics
  ========================================================================== */

/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
**/

a {
  background-color: transparent;
  /* 3 */
  -webkit-text-decoration-skip: objects;
  /* 4 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
**/

abbr[title] {
  border-bottom: none;
  /* 1 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari
**/

b,
strong {
  font-weight: bolder;
}

/**
 * Reset margin
**/

blockquote,
dl,
dd,
figure,
p,
pre {
  margin: 0;
}

/**
 * Add the correct font italic in Chrome, Edge, and Safari and Android 4.3-.
**/

address,
cite,
dfn,
em,
i {
  font-style: italic;
}

/**
 * Reset styles for titles
**/

h1,
h2,
h3,
h4,
h5,
h6 {
  text-rendering: optimizelegibility;
  font-weight: normal;
  margin: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
*/

pre,
code,
kbd,
samp {
  font-family: monospace;
  /* 1 */
  font-size: 1rem;
  /* 2 */
}

/**
 * Hide focus effect
**/

summary {
  outline: none;
}

/**
 * Add the correct font size in all browsers.
**/

small {
  font-size: 80%;
}

/**
 * Reset offsets from lists
**/

ol,
ul {
  margin: 0;
  padding: 0;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in all browsers.
**/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/**
 * Tables
**/

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

th {
  text-align: left;
  font-weight: normal;
}

/* Grouping content
  ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
**/

hr {
  min-height: 1px;
  background-color: #000000;
  overflow: visible;
  /* 2 */
  margin: 0;
  border: 0;
}

/* Embedded content
   ========================================================================== */

/**
 * Remove the border on images inside links in IE 10-.
**/

img {
  border-style: none;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

.header__logo img{
  width: 311px;
}

/**
 * Hide the overflow in IE.
**/

svg:not(:root) {
  overflow: hidden;
}

/**
 * Add the correct display in iOS 4-7.
**/

audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove border
**/

iframe {
  border: 0;
}

/* Forms
  ========================================================================== */

button {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  padding: 0;
  background-color: transparent;
  border: 0;
}

button:focus {
  outline: none;
}

/**
   * 1. Change the font styles in all browsers (opinionated).
   * 2. Remove the margin in Firefox and Safari.
  **/

button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

input:focus,
optgroup:focus,
select:focus,
textarea:focus {
  outline: none;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
**/

button,
select {
  text-transform: none;
}

select {
  cursor: pointer;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
**/

button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
**/

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* Bug with placeholder */

input::-webkit-input-placeholder,
input::-moz-placeholder,
input:-ms-input-placeholder,
input:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1;
}

/**
 * Restore the focus styles unset by the previous rule.
**/

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
**/

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
**/

legend {
  color: inherit;
  /* 2 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
**/

progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
**/

textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
**/

[type="checkbox"],
[type="radio"] {
  padding: 0;
  /* 1 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
**/

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
**/

[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
**/

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
**/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Hidden
  ========================================================================== */

/**
 * Add the correct display in IE.
 */

template {
  display: none;
}

[hidden] {
  display: none;
}

.btn {
  white-space: nowrap;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: pointer;
  display: inline-block;
  outline: none;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn span {
  z-index: 2;
  position: relative;
}

.nav ul {
  list-style: none;
}

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

.nav.nav--vertical > ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.panel .panel__col.panel__col--content {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

/* Folders
========================================================================== */

/* Fonts
========================================================================== */

/* Layout
========================================================================== */

/* Default styles
========================================================================== */

/* Grid
========================================================================== */

/* Response
========================================================================== */

@font-face {
  font-family: "OpenSans";
  font-style: normal;
  font-weight: 700;
  src: url(./fonts/OpenSans-Bold/OpenSans-Bold.eot), url(./fonts/OpenSans-Bold/OpenSans-Bold.woff) format("woff"), url(./fonts/OpenSans-Bold/OpenSans-Bold.woff2) format("woff2"), url(./fonts/OpenSans-Bold/OpenSans-Bold.ttf) format("truetype");
  font-display: swap;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 1260px;
}

@media (max-width: 1260px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}

.container--xl {
  margin-left: auto;
  margin-right: auto;
  width: 1440px;
}

@media (max-width: 1440px) {
  .container--xl {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}

.container--lg {
  margin-left: auto;
  margin-right: auto;
  width: 1280px;
}

@media (max-width: 1280px) {
  .container--lg {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}

.container--md {
  margin-left: auto;
  margin-right: auto;
  width: 980px;
}

@media (max-width: 980px) {
  .container--md {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}

.container--sm {
  margin-left: auto;
  margin-right: auto;
  width: 768px;
}

@media (max-width: 768px) {
  .container--sm {
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
  }
}

.grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.grid .col-1 {
  -ms-flex-preferred-size: 8.33333%;
      flex-basis: 8.33333%;
}

.grid .col-2 {
  -ms-flex-preferred-size: 16.66667%;
      flex-basis: 16.66667%;
}

.grid .col-3 {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

.grid .col-4 {
  -ms-flex-preferred-size: 33.33333%;
      flex-basis: 33.33333%;
}

.grid .col-5 {
  -ms-flex-preferred-size: 41.66667%;
      flex-basis: 41.66667%;
}

.grid .col-6 {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.grid .col-7 {
  -ms-flex-preferred-size: 58.33333%;
      flex-basis: 58.33333%;
}

.grid .col-8 {
  -ms-flex-preferred-size: 66.66667%;
      flex-basis: 66.66667%;
}

.grid .col-9 {
  -ms-flex-preferred-size: 75%;
      flex-basis: 75%;
}

.grid .col-10 {
  -ms-flex-preferred-size: 83.33333%;
      flex-basis: 83.33333%;
}

.grid .col-11 {
  -ms-flex-preferred-size: 91.66667%;
      flex-basis: 91.66667%;
}

.grid .col-12 {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  background-color: #f0f0f0;
  color: #141414;
}

b,
strong {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-weight: 700;
}

address,
cite,
dfn,
em,
i {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-style: italic;
}

pre,
code,
kbd,
samp {
  font-family: Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.layout {
  background-color: #fff;
  margin-top: 45px;
}

.page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px;
}

.page__content h1 {
  color: #900022;
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 23px;
}

a {
  text-decoration: none;
}

.hide {
  display: none;
}

.slick-arrow {
  display: block;
  width: 28px;
  height: 28px;
  z-index: 100;
  cursor: pointer;
  outline: none;
  border-radius: 2px;
}

.slick-next {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAcCAYAAABoMT8aAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAABA0lEQVQ4y5XUyyqFURjH4c9FyHa+CCRyiDIxkpBS4hZcggwkEUlGRtyEkosgpzA2I+yBHB4Du+Tz7qz1n/+eelu1ClRwgCMMF7nDoZ9VMZYLHPu9KkZygFG8Bkj6OZiogwzlIJMB8oLBHGQKbyXkGQM5yDTeS8gT+nOQmQB5RF8OMlsH6c1B5uogPTnIfB2kOwdZCJAHdOUgi/goIWc5QCfuy8+bGnfgzt8tpcTtuA3i5ZS4DTdBvJISt+I6iFdT4hZcBfFaStyMyyBeT4kruAjijZS4CedBvJkSN+IsiLfRkBKfBvHOv3EN2A/i3aS4BpyU4r3kuAaM+/7CP7GVFRdF8QWUF71DCQLrywAAAABJRU5ErkJggg==) no-repeat center;
}

.slick-prev {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAcCAYAAABoMT8aAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAAs0lEQVQ4y73VywrCMBBA0UHxz3xVW63P/wcVtXurVfG6MCCUhGT6mmXgHrIYEhHlAAlwAjIg1cYb4Ml/sjoxwCE03lriOzCsE09D45clnlSN89B410Y8Do3fVeO9Jb51EqeOeOSNDXC2xP4NM9MTkU/prC8ig1BAgBgoSrd4AJEGWVuQQousHMiscyR1IHMNsmwTiZtAEg2yaAJJHIj/XfQgx2DAIOW1v6oAg0T8vrYLEH8Bl8+aZU33DuwAAAAASUVORK5CYII=) no-repeat center;
}

@media (max-width: 768px) {
  .page__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0;
  }

	.post__footer-share{
		display:none;
	}
}

/* Folders
========================================================================== */

/* Fonts
========================================================================== */

/* Layout
========================================================================== */

/* Default styles
========================================================================== */

/* Grid
========================================================================== */

/* Response
========================================================================== */

.post__lead {
  font-weight: 700;
  font-size: 22px;
  margin-bottom: 25px;
}

.plain-text {
  font-family: /*"OpenSans", */sans-serif;
  color: #050505;
}

.plain-text p {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 25px;
}

.plain-text p em {
  font-size: 17px;
}

.plain-text ul {
  font-size: 17px;
  line-height: 24px;
  margin-bottom: 25px;
  padding-left: 20px;
}

.plain-text .fb-video {
  max-width: 100% !important;
	width: 720px;
}

.plain-text .fb-video span {
  width: 100% !important;
}

.plain-text .fb-video span iframe {
  width: 100% !important;
}

.plain-text a {
  color: #4c97ec;
}

.header {
  padding: 10px 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #4d4f53;
  border-bottom: 1px solid #dcdcdc;
}

.header .panel__col {
  -ms-flex-preferred-size: 45%;
      flex-basis: 45%;
}

.header .panel__col.panel__col--center {
  -ms-flex-preferred-size: 40%;
      flex-basis: 40%;
}

.header .panel__col.panel__col--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.header .header__resnav {
  padding: 7px 25px 7px 0;
  border-right: 1px solid #dcd6e4;
  margin-right: 25px;
  display: none;
}

.header .header__slogan {
  font-size: 18px;
}

.header .header__logo {
  text-align: center;
}

.header .header__controls .social ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .header__controls .social ul li a {
  display: block;
  width: 23px;
  height: 23px;
}

.header .header__controls .social ul li a.social__fb {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAYAAADgKtSgAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAABr0lEQVRIx7XUv2oUURTH8c9uJopgTCw0IEJ0QAQrS1EstPEJ1ErwTx0YgoVRsLGxnNJOsVCwNy+QB1BQES1GFNxAJGFJQDHZXS3uHRxDdtmd1R9cOPfMvd85c86c08ilU1jEDRxAV3010cMSFhPcx2208AUTY8B7mMRlHEpwE19xBW+xZwx4J379E1xMsA+reJUpfowBLtXOpR9xIYlvSzCFkeG5dDbe38gUm9G9V3SW+jUi9Cqu4ahQyGd4WD2TjAKsgOfxANMV99zOcyPDc+kZLERwD+sxta2x4TiLY9F+irv4jq1/AW9W7OeZYqXfwaHguXQSh4Xunak8OpJLy4JuZIp2nchP4JGQ27Tiv4NbQle/QF4HfhDnd/GfjAte1koLNvEpRjjtzy+4hp/4huW68Pc4F+15YYqWaVkSarFeC54ptrECubRdebSWKVr97jWNrupIHhhcHfjQqsIb/wM+IcyIYcdtt49d1VYJ7wjzd2ZIeGcnZBfNQiOXPsZ1vMNng4u0jVM4HvdvhGlYprQrNNxpfEhwD/txSWjt3gB4I0a7Gvdz/h4HjbheY+E3wJhfK7EamfgAAAAASUVORK5CYII=) no-repeat center;
}

.header .header__controls .social ul li a.social__tg {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAUCAYAAACJfM0wAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAACZElEQVQ4y63UT4iWVRTH8c+Mr3/SDNRMCTG8ouZCAxUhW1TYJJGYihGEiLUwEYmraKt2CYO7uywyE8QKZSSSihIMgsBAnYWOf1IvLiYEQ4kckTGtFu+ZHKbXybCzuc/znHO+nOd3zj1t/gcr0iw8h5ewDFcbDwBr4Bksxwt4Cm3hPv+fwUV6FCuwCk9jUouwY/cFLlIb5uM1rMYTGIOvcAWv4xrOYAnONf4F9jA6sA7PYhz6sBd7MBYfRspWpND6QnsL4ENFmoftOIouLMVFvIsFWd2AEdiHqdiU1U+xELdRG4OAU8LxKtZEtb04gM/wZVb7I/blgI7Alqx+VKSJUXEvehtFehIvRnc78Ae6cQhfZLV7yB+tCBlG4e2s7grXDDyGE7jZwDeYHs4fsBNHsnqjhUyv4ONo3Oas7h7knoHJOIX+dvTgVjinYDEWFWnMEOhq7A6J3hoChZlooCerd9pjVDqi0tHRoIPYX6Q5AV0T3R+HN7K6t8UgzY3zJ+7eFEUaGRp1YBMWYRtOYz/asSGrn7SQaBI+j6qXZPXS31OR1d/xM/YU6SS+xWY8gvExUv+Ahk2NPp3Fb6KKVtaDS5FwGTfwZpGWF2lUi/jHMS3AfcOB+3E8grahM6Q5hM4iTRsSPytYF7N6657grP6J7zTHZyUmhOtXzat7oEhLB6XMjvP0wIfhllA3rmNjvHfhA82duwUHi9SJXSFZX/TIcFKIoBPx/B42ZvUw3sFaXA2JuvC85sW4dj8V92lOxWR8n9U7IdNt7CvSj9ihuUrha/wykNzmAaxIY7FecxPuzOr7A76/AKNQqL/skAdoAAAAAElFTkSuQmCC) no-repeat center;
  margin-left: 10px;
}

.header .header__controls .search {
  padding: 5px 0 5px 25px;
  border-left: 1px solid #dcd6e4;
  margin-left: 25px;
}

.header .header__controls .search .search__trigger {
  height: 36px;
  width: 36px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAkCAYAAADhAJiYAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAD1klEQVRYw82YXWwUVRiGn5lKgf7BopUbsHZcaBUlYCi0lp/ULaEEFi4qGrkx1sREaHXsDRcYryDRG1h1awIJqwFjo6SJdiVK6sKFDYSfCpUfu7GdAnJDC22zVhe67I4XM7OYdXHOoaX1vdlkz/vNefacnXO+71OQVACtFFgHrASeBkqAQnv4D+Aq8CvQCRzVMfplnq8IQuQALwONQJVoHGACJ4Eg8LWOkRw3UACtFvgEKJddzQz1AE06xo8PBBRAmwF8BLw5TpBM7Qfe0TFuCwMF0IqBI0DFBMM4OgNs0DEGXYFsmJ+AsocE4ygKrMqEUjNg8oDwJMBgzxG258wOhPWfWTEJMI5W2HOmld4y+23qmESYf2qt8/YpNowKXMQ66KZCPcCzOkbyEfuLV2RgZj7mYWnzG5RufBHPwlIAhnv6MNojnP/4c+I3h2WByrEO3lZnhTqBapFIb30dtQc+YPqswqzjY7FROhp20Nv2gyzUCR2jWrHvpj4ETm1vfR0bDgdBUTDCEc7tDXHjzC8AzK1YzPP2qmGaHNnSKAtlAt6cOjyvAhvd3DOL51Af+YKcGdM5+d4ejm97n9iV66TGEqTGEsSuXCfaGsa8m2S+7wWerFvD5dBhEn/GRYEUIKqKbtWSptfILSqg/7tjnN7dcl/f6d0tGOEIuUUFLNFfl922ahVYJOLUNvkA+HnPAVfvub0hAGv75PSMCswXcXrKnwJg4OwFV6/j8ZRpskAlKveSqwmTaZrWZ9I1/clUgSrqHO7pA+DxZc+5eudWLLZioob0j1Gx0k5XGe0RAJa+2+DqdTz94WOyPKMq8LuIszt4kLHYKJrfx/Kd2+/rW75zO5rfx52RGN0th2SBrqnAZRHnXwO36GjYAaZJ1a5m/N/sY15NJdPy85iWn8e8mkr83+6jalczAPHBIcxUShbokhJAewv4VDRiwUvrqQ19SG5hftbxOyMx4jeHme0t4dal32ir2Up8cEj08duUAJoG9CJeSaQvV83vw1OmkUokGOm9ihGO0B08hJlMUn/8Sx5dtEAGygS80perMHTxnDTUQNdFWpdtdgs5oWNUO699i5tbVvHBIdpqtnLj7AXuxm+LhAThXoKWg5Wgjbf2elClEzQVwK4om6YIBuBtp6pNn9R2TvvZFMCEdIx0Lp95dTQCpyYR5hQZO/P/LhQBbMNqoOshwnQBq7OV0llvex1jAFiF1RiYaO0HVtpz/Esi7Zi1WO2Y8W5hFKsd85/FqGzDqgmoFI2z5TSsvpqQhlUWuFJgPVZLrxx4Aiiyh2PANayDrhP4Xral9zc+5ESG7Pd0BAAAAABJRU5ErkJggg==) center no-repeat;
}

.main-nav ul.menu {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main-nav ul.menu li.current-menu-item a {
  color: #b01313;
}

.main-nav ul.menu li a {
  color: #424445;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 35px;
  margin: 0 38px;
}

.main-nav ul.menu li a:hover {
  text-decoration: underline;
}

.main-nav.oo_submenu ul.menu li a {
	color: #424445;
  font-weight: normal;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 15px;
  margin: 0 10px;
}
.main-nav.oo_submenu ul.menu li a:hover {
	text-decoration: underline;
}
.main-nav.oo_submenu>div>ul.menu>li>a {
	font-weight: bold;
}
.main-nav.oo_submenu>div>ul.menu>li.menu-item {
	border-left: 1px solid #dcdcdc;
}



.fresh-news {
  background-color: #585858;
  padding: 45px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.fresh-news .fresh-news__article {
  -ms-flex-preferred-size: 350px;
      flex-basis: 350px;
}

.fresh-news .fresh-news__article a {
  color: #ffffff;
  text-decoration: none;
}

.fresh-news .fresh-news__article a:hover .fresh-news__title {
  text-decoration: underline;
}

.fresh-news .fresh-news__article .panel {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.fresh-news .fresh-news__article .fresh-news__img {
  width: 100px;
  height: 100px;
  margin-right: 15px;
}

.fresh-news .fresh-news__article .fresh-news__img img {
  border-radius: 20px;
}

.fresh-news .fresh-news__article .fresh-news__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 12px;
  margin-bottom: 5px;
}

.fresh-news .fresh-news__article .fresh-news__date .fresh-news__time {
  margin-right: 5px;
}

.fresh-news .fresh-news__article .fresh-news__date .fresh-news__d {
  font-weight: 600;
}

.fresh-news .fresh-news__article .fresh-news__title {
  font-weight: 600;
}

.fresh-news-mobile {
  display: none;
}

.sidebar {
  -ms-flex-preferred-size: 330px;
      flex-basis: 330px;
  margin-right: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.sidebar:after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.9)));
  background: -webkit-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  background: -o-linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.9));
}

.sidebar .widget {
  overflow: hidden;
  overflow-y: auto;
  width: 350px;
  height: 1300px;
}

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

.sidebar .post__links h2 {
  margin-right: 30px;
}

.sidebar .post__links h2 a {
  color: #b4c0c6;
  font-size: 20px;
  font-weight: 700;
}

.sidebar .post__links h2 a:hover {
  text-decoration: underline;
}

.sidebar .post__links h2 {
  margin-right: 30px;
}

.sidebar .post__links h3 a {
  color: #b4c0c6;
  font-size: 20px;
  font-weight: 700;
}

.sidebar .post__links h3 a:hover {
  text-decoration: underline;
}

.sidebar .post__links h4 a {
  color: #900022;
  font-size: 12px;
  text-decoration: underline;
}

.sidebar .post__links h4 a:hover {
  text-decoration: none;
}

.sidebar .posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-right: 20px;
}

.sidebar .posts .post {
  border-bottom: 1px solid #dfe6ec;
}

.sidebar .posts .post.post--hot {
  background-color: #e9e9e9;
}

.sidebar .posts .post:last-child {
  border-bottom: 0;
}

.sidebar .posts .post:first-child .post__date {
  margin-top: 0;
}

.sidebar .posts .post .post__date {
  margin-bottom: 10px;
  margin-top: 25px;
  color: #313436;
  font-size: 20px;
  position: relative;
  padding-left: 30px;
}

.sidebar .posts .post .post__date:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAACsElEQVQ4y6XUT4hXVRQH8M9v5jemMbVoIWnpJqioTZvALi0eVo6LR9HCSlokBIH0Z6FFu1bVwhZRShDlSBDWIqLiYRhFF8oHNVqMBBPpRAhWBqUOmTPOjL8W7zz7CYa/pgOHd+8973zvOd9z7unokyrXm7EDz5RFetcAUuU64W28WBbpzfa8G8aVuBl3YjVSlevf0LkMbg8J12FdletpTJdFOtapcn07XsEdg0Q4gEzi2S5exjrswlrci4/xJZZdBmQet+IBfIaDeAKvdiPSz8siPVnl+pFI7b2ySOMDcrweBaqySDurXK/Gli4WQuFDTGH6P6T+Ne7DT7E/h4VOleuTOIv9+BOzuBJXDAg8jzNYjiHcjZVdzGEVtvyvkl0sJ7q4GhPYipkwrNC00ixGQmfjbDkWI+VlmpY9G349vISxIQzjVFmkQ/gdc2WRDgfX53CsLNIk/sBfYZsO8KNhO4OZskhHcALDQ3FT+x3H91Wu1+IuHMW2KtejeAeTVa7X4KEA3xx+32BfX9TNy/PPC/sEx6OIx7Eb32q6Zh++i+h+wBs4En57I9sLQXaqXM/hADaURWrbbslS5XoPHm4j7pVFWqhyvRW34DnNzHg8Iv00irsGz+MmPIrxskh1lesdOF0W6YXI7gK3vfhuwIMYxfXB5W1R/fV9thuwCTeG3yZsjPViP8dDVa6HsQ3X4Fecwj34OTjfHm34i2aWjAXXLfB8rEf6gXuhi+2Nffs2m/OhrW2htZVFOthHc+ciKsoincdOZFyrmc0H8Fikvyu4XoUSX+D+fytiN8DbKD/Q9O4MfsTr+Erzsj7CoaBoCm/h8CUw59FpqRitct0ti7Sn74fTwXkrr/WtJ0IvJVdhuFPl+v1IbX8UZsTSZFEzdzZiqouno9pjQXxvicCd0Ak89Tc9IuIlAnIsnAAAAABJRU5ErkJggg==) no-repeat center;
  width: 22px;
  height: 22px;
  display: block;
}

.sidebar .posts .post__content {
  padding: 20px 10px;
}

.sidebar .posts .post__content .post__time {
  color: #9aa4aa;
  font-size: 12px;
  padding-top: 3px;
  margin-right: 10px;
  margin-bottom: 5px;
}

.sidebar .posts .post__content .post__icons .post__icon {
  width: 21px;
  height: 21px;
  margin-bottom: 3px;
}

.sidebar .posts .post__content .post__icons .post__icon svg {
  fill: #b4c0c6;
}

.sidebar .posts .post__content h3 {
  margin-bottom: 5px;
  color: #000000;
  font-size: 16px;
  font-weight: 700;
}

.sidebar .posts .post__content .post__short-body {
  font-size: 11px;
  color: #2a3033;
  line-height: 14px;
}

.sidebar .posts .post__content:hover h3 {
  color: #d82f1f;
}

.sidebar .posts .post__content:hover .post__icons svg {
  fill: #d82f1f;
}

.articles .article__category {
  position: absolute;
  top: 15px;
  left: 15px;
  border-radius: 7px;
  color: #ffffff;
  text-transform: uppercase;
  background-color: rgba(0, 0, 0, 0.7);
  font-size: 11px;
  font-weight: 700;
  z-index: 5;
  line-height: 26px;
  padding: 0 15px;
}

.articles .articles__news .article {
  background-color: #e1e1e1;
  margin-bottom: 15px;
  position: relative;
}

.articles .articles__news .article .article__img {
  overflow: hidden;
  position: relative;
  height: 270px;
}

.articles .articles__news .article .article__img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.articles .articles__news .article .article__content {
  padding: 20px;
}

.articles .articles__news .article .article__content .article__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 12px;
}

.articles .articles__news .article .article__content .article__date {
  color: #040404;
  font-size: 12px;
  margin-right: 10px;
}

.articles .articles__news .article .article__content .article__title {
  color: #090909;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
}

.articles .articles__news .article .article__content .article__comments {
	display: none;
/*  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;*/
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles .articles__news .article .article__content .article__comments .article__comments-img {
  width: 18px;
  height: 18px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAABTklEQVQ4y63UPU8VQRTG8d+u3EJppBIqEhu+AAVstfQbKShJtNLOAkJHS0EsSIiJMWBItCAkUFAshVRTmJHSTvgEJhooeAkiASx2NzFyCS+Xp3tmcv4zc86ck6hVhvgILzGOfrRw4bJSnGAH89go8uwkqSF9eI9nbq85zDwoQ3yKNxi7AwSG8SvFNEbuCGn0OkWOJx2C+lM87hCCqgL/6zNe4Evt1/EK32r/TlXd79eB3hZ59gmbtV8q8mwRAcdYLfLsQ71/3gR1tQGNlyEeYaj2o2WIvzGIhxgpQ2wh+/ciSRniHnruI0cH95XsiN0OOT9SzOBrh6CFptcGsKRK4G21jKmkcWWIvZhAoer+7jZBx6rO/4OfWMDHIs/2k3ZHlCHOYlI1So6wgjVs4xCnOCzy7KyJafePqOZQC1uYKPJs67r3pVesn2IVz28Cgb+kG1bWbyBXdgAAAABJRU5ErkJggg==) no-repeat center;
  margin-right: 5px;
}

.articles .articles__news .article .article__content .article__comments .article__comments-count {
  color: #b4c0c6;
  font-weight: 600;
}

.articles .articles__news .article .article__content p {
  color: #090909;
  font-size: 11px;
  line-height: 16px;
}

.articles .articles__news .article:hover .article__title {
  color: #900022;
}

.articles.articles--photo {
  -ms-flex-preferred-size: 360px;
      flex-basis: 360px;
}

.articles.articles--photo article {
  position: relative;
  margin-bottom: 20px;
}

.articles.articles--photo article .article__content {
  color: #ffffff;
  padding: 165px 20px 15px 20px;
}

.articles.articles--photo article .article__content h3 {
  color: #ffffff;
  position: relative;
  z-index: 2;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 10px;
}

.articles.articles--photo article .article__content p {
  color: #fff;
  font-size: 11px;
  line-height: 16px;
  position: relative;
  z-index: 2;
}

.articles.articles--photo article .article__content .article__img {
  overflow: hidden;
}

.articles.articles--photo article .article__content .article__img img {
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.articles.articles--photo article .article__content .article__icons {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles.articles--photo article .article__content .article__icons .article__icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

.articles.articles--photo article .article__content .article__icons .article__icon .article__comment-img {
  height: 18px;
  width: 25px;
}

.articles.articles--photo article .article__content .article__icons .article__icon.article__icon--video {
  margin-right: 10px;
}

.articles.articles--photo article .article__content .article__icons .article__icon.article__icon--video .article__comment-img {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAASCAYAAACuLnWgAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAABSUlEQVQ4y7XVu4oVQRSF4W+3LaODg3jQ8R00NTH1AoK33EQUFDMTMx9BIzMfYBIzwUADZSLB3GxAMNNAHC+gzjgsg+4DCkL3OdB/UhWs3at21aqugiSHcRlnsI5VrOAgDvTzBvEvwS/8xI9+/I7PeIWnVfVFkrUkG5mGjSRrleQinpmOKw3OTmgA5xqcHCH8hjdLmpxocHSE8AOu4S7eL2gya3RJGqSq3lXVI1zCQ12qxrDS6OI5RJNkf2/2Fvd1cX8yZn3Ngq3Pu9qpqte4gTsD8rZdxgSSHMJV3BzSLmLyu//4Kk7jHi6MqWvnxQPsVlWSnMJt3Fqk6RZfRwiPJHmA6zi2gAHstPg0Qni8355l2G6wtWTxWLYabE5ssinJLMnziX71L5LMCpKs6y7Wed3B7tPFez7+78H6mz3s6pK6h228xOOq+vgHrB4OeJYZiBoAAAAASUVORK5CYII=) no-repeat;
}

.articles.articles--photo article .article__content .article__icons .article__icon.article__icon--comments .article__comment-img {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAABJUlEQVQ4y62SP0tCcRSGn9+lSYI0mxqtLWiMJiGoTxDUVwga3LTNMRqD1j5FixA0FkVDYDQEFURDFEr/CEPwabnB9YKQV5/tHHhf3vNyAjHqHLADlIEiEBjMG3AG7IUQmiRMVtRnh+dD3QQIagk4B2bIxg9QRj3MkCRNI6h3QCljmj+eIiA/oglALkotesA+sAV8AQK7QDXuogNUgDrQ7VOqrcStL4n9ifqamK/U68TcTOhaE6lEBbUK3ACLQF7dBtrAPNBT14GpdK9BbQOFETtqR8DnGMruRMDpGIxug7oAXAC5EYxWAVA31O8MH91TK32W6rJ6pD6o3QHC9/hdHtVjdW1gRjWnXibE92pNXVJn1Wl18l8Hx8+neqAWMzenNtT6MJpf8/OUPfMXLbUAAAAASUVORK5CYII=) no-repeat;
}

.articles.articles--photo article .article__content .article__icons .article__icon.article__icon--comments .article__comment-count {
  color: #fff;
}

.articles.articles--photo article .article__content .article__shadow {
  position: absolute;
  bottom: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.7)));
  background: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  background: -o-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  width: 100%;
  height: 75%;
}

.articles.articles--photo article:hover h3 {
  color: #ea4646;
}

.articles.articles--list .articles_date {
  color: #313436;
  font-size: 20px;
  font-weight: 700;
  margin: 25px 0;
}

.articles.articles--list article {
  border-bottom: 1px solid #eff2f6;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.articles.articles--list article .article__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.articles.articles--list article .article__content .article__img {
  margin-right: 25px;
  width: 100px;
  height: 100px;
}

.articles.articles--list article .article__content .article__img img {
  border-radius: 20px;
}

.articles.articles--list article .article__content .article__title {
  color: #900022;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.articles.articles--list article .article__content .article__date {
  color: #9aa4aa;
  font-size: 12px;
  margin-right: 15px;
}

.articles.articles--list article .article__content .article__comments {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles.articles--list article .article__content .article__comments .article__comments-img {
  width: 18px;
  height: 18px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAABTklEQVQ4y63UPU8VQRTG8d+u3EJppBIqEhu+AAVstfQbKShJtNLOAkJHS0EsSIiJMWBItCAkUFAshVRTmJHSTvgEJhooeAkiASx2NzFyCS+Xp3tmcv4zc86ck6hVhvgILzGOfrRw4bJSnGAH89go8uwkqSF9eI9nbq85zDwoQ3yKNxi7AwSG8SvFNEbuCGn0OkWOJx2C+lM87hCCqgL/6zNe4Evt1/EK32r/TlXd79eB3hZ59gmbtV8q8mwRAcdYLfLsQ71/3gR1tQGNlyEeYaj2o2WIvzGIhxgpQ2wh+/ciSRniHnruI0cH95XsiN0OOT9SzOBrh6CFptcGsKRK4G21jKmkcWWIvZhAoer+7jZBx6rO/4OfWMDHIs/2k3ZHlCHOYlI1So6wgjVs4xCnOCzy7KyJafePqOZQC1uYKPJs67r3pVesn2IVz28Cgb+kG1bWbyBXdgAAAABJRU5ErkJggg==) no-repeat center;
}

.articles.articles--list article .article__content .article__comments .article__comments-count {
  color: #b4c0c6;
  font-weight: 700;
  margin-left: 5px;
}

.articles.articles--list article .article__content .panel__d-c {
  margin-bottom: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.articles.articles--list article .article__content p {
  color: #050505;
  line-height: 20px;
  margin-bottom: 10px;
}

.articles.articles--list article .article__content .article__tags a {
  background-color: #900022;
  border-radius: 3px;
  padding: 0 7px;
  line-height: 18px;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  font-size: 10px;
}

.articles.articles--list article .article__content .article__tags a:first-child {
  display: none;
}

.footer {
  background-color: #606060;
  padding: 35px 25px;
  color: #ffffff;
}

.footer .footer__content > .panel__col.panel__col--left {
  -ms-flex-preferred-size: 525px;
      flex-basis: 525px;
  padding-right: 90px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.footer .footer__content > .panel__col.panel__col--right {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.footer .footer__content .footer__desc {
  margin-bottom: 25px;
}

.footer .footer__content .footer__desc .panel__col {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

.footer .footer__content .footer__info h5 {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 20px;
  width: 52%;
}

.footer .footer__content .footer__info p {
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 16px;
}

.footer .footer__content .footer__info a {
		color: #FFFFFF;
/*	color: #900022;*/
  text-decoration: none;
	font-weight: bold;
}

.footer .footer__content .footer__info p:last-child {
  margin-bottom: 0;
}

.footer .footer__content .footer__copyright {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .footer__content .footer__copyright .footer__copyright-logo {
  margin-right: 25px;
}

.footer .footer__content .footer__menu ul {
  list-style: none;
}

.footer .footer__content .footer__menu ul li {
  margin-bottom: 15px;
}

.footer .footer__content .footer__menu ul li a {
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
}

.footer .footer__content .footer__menu ul li:hover {
  text-decoration: underline;
}

.footer .footer__content .footer__contacts a {
  color: #ffffff;
  font-weight: 600;
  font-size: 18px;
  display: block;
}

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

.footer .footer__content .footer__contacts a.footer__phone {
  margin-bottom: 13px;
}

.footer .footer__content .footer__contacts .footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 20px;
}

.footer .footer__content .footer__contacts .footer__social ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer__content .footer__contacts .footer__social ul li a {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADkAAAAXCAYAAACxvufDAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAAEEklEQVRYw82X64uVVRSHn6VHy8ukZTZqN7uYYaRCUVloRRlFZiWWoBSmRSIVKRL4tSKF/oEiQ0OyQJIw9EMfyiyKwjKwScXKC14wGpvG+2Xm6cPeB98Onjgz5zS24OW8Z+2113p/e629LqE2AYuBZ4CLgA66T72ATmA9sDgidtahq2EU6pvAImA/0A70rkNfJ9AHGAlsiIj7zjfAMshW4DjwJPAT0LcOfWdI0bACuDci4nwDBEA9pm5V+zVQ51uq5wnPKPU5dY16VN1TIp1+CWgiebSrSpvz/vaIOJzZF/QwsBJwFzAFuB8YB5SjaEepKNtFxTOAp4ArSAlnFbC0h8FdCkwFHgcmAEPOIbap1CWtZ5W/CLwGDCqwr+4hYAGMBWYA07LdC0kZ/XdgJnAI2ArcCWzvMkj1DmBhBtiZFZ4hZef/EthAYDLwNHA3MAA4AqwkJbr+wDt5y0LgWuAe4BfUdnWHOrRGgws9S8vV4eqgYuLK/LoTj9pPvVl9RW3JNg+rmzJvZJabqB5Uj6tzM2+Nekod151w7VV4/yAiDjTMZWfBNQO3AE8A00le3AusBj4E1kXEySz7MPA+qb4viIh31UtIntwL7K0JpNoHuIzUDQ0uLI1Qy4mnPSLa6gR3I/AAKUtOJl2HzcAnwNqI2FwhP5UUqn2BlyJiWV66Jn/vD8DxmsJVHaNuVD9TdxXCdZv6pfq1+nJBvlvhqu4u6P5KfUQdUEX2UfVQrvNzKtamq6fVpWrvWsP1YmDiOfij8wOwrh4vZmoBhmXPNAO3Ae3qtxFxogBiGinJDATmRsTKCj3XkWp3S0R01OrJsepv+aTbCqf9h7pP/VGdVJDvricHq5OyB/ZkG63qWnV0wUut6gl1VhU9K/Le28uMWkD2yVl0uPpGAeSz6gi1Od/bukBW2Ltcna1+p3bmrP5g/t4j6swqe4fkK7S/nH1rCteIOA0cyEraCkutEdHw+pjt7QNWqFuAT4EXSM1/EzA/IlZV2T4MuArYRpqq/lEOaqXiKNatjqmL1ALsyh9/ADgKzFGnqOeamEaQWs1tpGahWyB7mk4C3+cPXgQsAW4llZUluYQVaVTG9WtEnKoE+f+Y/SooIgQ+B4YCj5EyPUAbqX1brRaH8xvy789lRokUfp3UPmZ1VHkv0qkGY90MHAbm5f8fAW8DDwELgDXqEmAZKayPkO50IvWvXOCvrMVaRe86pYrMx40cmtUmdUO2+WoesVBL6qxc3lS/yD3sN8UwDnU5MJt0wXfz78nkNDCG1DYBbCFNH+VQ7yCF03hge0SMbxDIAG4ihezGiOioWL8eeJ00fgG8Bzxf7m/JdW51rj/Hcg2q9hxV/8yndTBHQeX6sXySExrlyRoPor86X92pziuu/Q3VVVfV7Cr/+wAAAABJRU5ErkJggg==) no-repeat;
  display: block;
  width: 23px;
  height: 23px;
}

.footer .footer__content .footer__contacts .footer__social ul li a.footer__social-fb {
  margin-right: 12px;
}

.footer .footer__content .footer__contacts .footer__social ul li a.footer__social-tg {
  background-position: -34px 0;
}

.footer .footer__content .footer__tg {
  padding: 8px 15px;
  width: 600px;
  border-radius: 10px;
  position: relative;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #222222;
  font-weight: 600;
  font-size: 16px;
}

.footer .footer__content .footer__tg a {
  color: #900022;
  text-decoration: none;
}

.footer .footer__content .footer__tg svg {
  margin-right: 15px;
}

.footer .footer__content .footer__authors {
  margin-top: 30px;
  padding-left: 50%;
}

.footer .footer__content .footer__authors a {
  color: #ffffff;
}

.post-pagination {
  padding-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.post-pagination .page-numbers {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  -ms-flex-preferred-size: 45px;
      flex-basis: 45px;
  line-height: 45px;
  border-radius: 3px;
  color: #222222;
  margin-right: 20px;
}

.post-pagination .page-numbers:last-child {
  margin-right: 0;
}

.post-pagination .page-numbers:hover {
  background-color: #f4f4f4;
}

.post-pagination .page-numbers.current {
  background-color: #900022;
  color: #fff;
}

.tags a {
  background-color: #900022;
  border-radius: 3px;
  padding: 0 7px;
  line-height: 18px;
  text-transform: uppercase;
  color: #ffffff;
  display: inline-block;
  font-size: 10px;
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.search-modal .screen-reader-text {
  display: none;
}

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

.search-modal .search-form .oo-search-field {
  font-size: 28px;
  padding: 0 12px;
  width: 100%;
  pointer-events: auto;
  border: 1px solid #d2dadd;
  border-right: 0;
  border-radius: 5px 0 0 5px;
  height: 80px;
}

.search-modal .search-form .oo-search-submit {
  padding: 0 12px;
  height: 80px;
  background-color: #fff;
  border: 1px solid #d2dadd;
  border-left: 0;
  border-radius: 0 5px 5px 0;
}

.search-modal.search-modal--open {
  opacity: 1;
  visibility: visible;
}

.home .articles .articles__news {
  -ms-flex-preferred-size: 480px;
      flex-basis: 480px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 20px;
}

.home .articles .articles__news .article:last-child {
  margin-bottom: 0;
}

/* Folders
========================================================================== */

/* Fonts
========================================================================== */

/* Layout
========================================================================== */

/* Default styles
========================================================================== */

/* Grid
========================================================================== */

/* Response
========================================================================== */

.single-post .post__title {
  margin-bottom: 20px;
}

.single-post .post__date {
  color: #9aa4aa;
  font-family: sans-serif;
  font-size: 12px;
  margin-bottom: 20px;
}

.single-post .post__img {
  margin-bottom: 25px;
}

.single-post .post__social {
  background-color: #f4f4f4;
  padding: 23px 10px;
  text-align: center;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  margin: 50px 0 25px 0;
}

.single-post .post__social a {
  text-decoration: underline;
}

.single-post .post__social a:hover {
  text-decoration: none;
}

.single-post .post__social .post__social-fb {
  color: #52bcff;
}

.single-post .post__social .post__social-tw {
  color: #3452a7;
}

.single-post .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 35px;
}

.single-post .tags ul {
  list-style: none;
}

.single-post .tags .post-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-post .tags .post-categories li {
  margin: 0 2px;
}

.single-post .post__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 45px;
}

.single-post .post__footer .post__footer-col.post__footer-col--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-post .post__footer .post__footer-another {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #4c97ec;
  text-decoration: underline;
}

.single-post .post__footer .post__footer-another:hover {
  text-decoration: none;
}

.single-post .post__footer .post__footer-share {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
}

.single-post .comment-form-block {
  background-color: #ececec;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 45px;
}

.single-post .comment-form-block h3 {
  color: #222222;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 20px;
}

.single-post .comment-form-block .logged-in-as {
  display: none;
}

.single-post .commentlist {
  list-style: none;
}

.single-post .commentlist .comment-form {
  background-color: #ececec;
  padding: 20px;
  border-radius: 10px;
  margin-bottom: 45px;
}

.single-post .commentlist ul {
  list-style: none;
}

.single-post .commentlist li {
  margin-bottom: 15px;
}

.single-post .commentlist li .comment__body {
  background-color: #f4f4f4;
  padding: 15px 25px;
  border-radius: 5px;
}

.single-post .commentlist li .comment__body .comment__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}

.single-post .commentlist li .comment__body .comment__top .comment__date {
  margin-right: 10px;
}

.single-post .commentlist li .comment__body .comment__top .comment__date a {
  color: #9aa4aa;
  font-size: 12px;
}

.single-post .commentlist li .comment__body .comment__top .comment__author {
  color: #222222;
  font-weight: 700;
}

.single-post .commentlist li .comment__body .comment__content {
  color: #121212;
  font-size: 16px;
  margin-bottom: 5px;
}

.single-post .commentlist li .comment__body .comment-reply-link,
.single-post .commentlist li .comment__body #cancel-comment-reply-link {
  color: #4c97ec;
}

.single-post .commentlist li .children li {
  margin-left: 35px;
}

.single-post .commentlist li .children li:first-child {
  margin-top: 5px;
}

.single-post .commentlist li:last-child {
  margin-bottom: 0;
}

.single-post .comment-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.single-post .comment-form label {
  display: none;
}

.single-post .comment-form textarea {
  padding: 20px;
  border-radius: 5px;
  resize: none;
  width: 100%;
  border: 0;
  position: relative;
  z-index: 2;
}

.single-post .comment-form input[type=text] {
  height: 42px;
  padding: 15px;
  border: 0;
  width: 100%;
  border-radius: 3px;
}

.single-post .comment-form .comment-form-comment {
  position: relative;
  margin-bottom: 12px;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}

.single-post .comment-form .comment-form-comment:before {
  content: '';
  position: absolute;
  top: -15px;
  left: 15px;
  display: block;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAFkAAAAXCAYAAABgWeOzAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsSAAALEgHS3X78AAADRUlEQVRo3u2YzWsTQRiHZ7LpO7GmbfRSBKEIklKwB0EPgqQI9VIvUk+CntJ/wOLBgz3qSRKqUNCTmEPQQ06lPYhQ9FQiQpOKwWKaQpqNMUnTpLubnd3MeHALacxX2yTbpn1gD2F3MjMPs+/s/BCqwrDTOTjsdA6iU9oDAegRRXG2UCgE701OXiQANgJgNXtcXQUBgO3t7U+cc65pmrKzs/M1Go0+IgDnCUDfqfQWQAB6FUWJ8woYY5xSKkuSFN7Y2Hg67HQOEoB+AtB7Kn2feD2eEU3TirwBjDGuaVpRlqRIPB5/NuV2D5VJ7zF7HkcWAmBZXV19yBhjjSTXkE5lWY6Kouidnp6+RAAGTqVXYGx63v0KroWu65qiKLFUKvXa6/GMEADHiZdOAGySJIVaJbmKdF1RlHg6nX7n9/uvlUkHAmAxe/6dktxHKZXaJbmSUqlUKhaLyWw2GwgEAjcM6faulj7ldg8dpB63UDpTVfXP1tbW/NLS0rgh/WzXSCcA1vX19cdmCa4jPZvL5T4Gg8G7BOCcsdJtx1I6ASCFQmHZbLH1YIwxVVVz+Xz+cygUemAckOwEgBAAwWyHtcBlku35QiEOAANmD6pZOOdI1/UdVVW/i4nE29HR0Q8IIc24dJVS3ewxIrRXskOS5bQgCEd2RTTCkC5TSiPJZNJ3Z2LCH4vFFIQQRWZL363HJu557SovXNM0ZTcKGHO5Lhin0s7nLwQAcrncotlSOiRdlSXpx+bm5nMjZexMFGCEQjGzJZgkncqy/EsUxdmZmZnLbYsCptzuIUqpbPakjwJGFLCRSqXezM3NXSk/lR5mFVtWVlbul0ql7irILcKIAjbT6bTP5/NdPVAUQAB6EonEC7Mnc1wwooDfmUzm/eLCws1mogBMAEg6k/lit9uvt7QGnRAYY1zX9Ywsy8vhcPjV7fHxZbT3W51hAmD9ubb2xOFw3OKc64Ig9GOMqxZ9zjm3WCwEY3ymRp8cISRgjG0YY8H4/R8YYytCqN7GgmuNoewBASFU63XlGGMLxhij+jR6pFF7VNnekJ5TFOVbJBJ5OeZyzWOE/n0nlw0YN/Hnh80NmmnfUJBx8Rr3W9lHLXiVfnRUsZL/Agxil5ewHWuVAAAAAElFTkSuQmCC) no-repeat center;
  width: 89px;
  height: 23px;
  z-index: 1;
}

.single-post .comment-form .comment-form-author,
.single-post .comment-form .comment-form-email {
  margin-right: 4px;
}

.single-post .comment-form .comment-form-author,
.single-post .comment-form .comment-form-email,
.single-post .comment-form .comment-form-url {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  margin-bottom: 20px;
}

.single-post .comment-form .comment-form-email {
  text-align: right;
}

.single-post .comment-form .form-submit {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  margin-top: 10px;
}

.single-post .comment-form .form-submit input[type=submit] {
  background-color: #900022;
  color: #ffffff;
  line-height: 42px;
  padding: 0 20px;
  border: 0;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
}

.single-post .comment-form .form-submit input[type=submit]:hover {
  background-color: #650018;
}

.single-post .comment-form .comment-notes {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.category-material .articles__news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category-material .articles__news article {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  margin-right: 20px;
}

.category-material .articles__news article:nth-child(even) {
  margin-right: 0;
}

.category-photo .articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category-photo .articles article {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  margin-right: 20px;
}

.category-photo .articles article:nth-child(even) {
  margin-right: 0;
}

.category-video .articles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.category-video .articles article {
  -ms-flex-preferred-size: 48%;
      flex-basis: 48%;
  margin-right: 20px;
}

.category-video .articles article:nth-child(even) {
  margin-right: 0;
}

@media (max-width: 1260px) {
  .header {
    padding: 10px 0;
  }
}

@media (max-width: 768px) {
  .header {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }

  .header .header__resnav {
    display: block;
  }

  .header__logo {
    margin-bottom: 20px;
  }

  .header .header__slogan {
    display: none;
  }

  .header .panel__col.panel__col--right {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
}

@media (max-width: 1260px) {
  .footer .footer__content .footer__tg {
    width: 100%;
  }
}

@media (max-width: 1000px) {
  .footer .footer__content .footer__desc {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer .footer__content .footer__menu {
    margin-bottom: 20px;
  }

  .footer .footer__content .footer__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .footer .footer__content .footer__menu ul li {
    margin: 0 5px;
  }

  .footer .footer__content > .panel__col.panel__col--left {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (max-width: 768px) {
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .footer .footer__content > .panel__col.panel__col--left {
    padding-right: 0;
  }

  .footer .footer__content .footer__copyright {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 25px;
  }

  .footer .footer__content .footer__desc .panel__col {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }

  .footer .footer__content .footer__info h5,
  .footer .footer__content > .panel__col.panel__col--left {
    width: 100%;
    text-align: center;
  }

  .footer .footer__content .footer__authors {
    padding-left: 0;
    text-align: center;
  }
}

@media (max-width: 425px) {
  .footer .footer__content .footer__contacts a {
    font-size: 16px;
  }
}

@media (max-width: 1000px) {
  .fresh-news .fresh-news__article {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    padding-right: 10px;
  }

  .fresh-news .fresh-news__article:last-child {
    display: none;
  }
}

@media (max-width: 768px) {
  body:not(.home) .fresh-news {
    display: none;
  }

  .fresh-news {
    padding: 20px 40px;
  }
}

@media (max-width: 600px) {
  .fresh-news .fresh-news__article:last-child {
    display: block;
  }

  .fresh-news-desktop {
    display: none;
  }

  .fresh-news-mobile {
    display: block;
  }
}

@media (max-width: 768px) {
  body:not(.home) .sidebar {
    display: none;
  }

  .sidebar {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }

  .sidebar .widget {
    overflow: auto;
    width: 100%;
    height: auto !important;
  }
}

@media (max-width: 425px) {
  .articles.articles--list article .article__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .articles.articles--list article .article__content .article__img {
    margin-bottom: 10px;
  }

  .articles.articles--photo article .article__content .article__img img {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media (max-width: 768px) {
  .post-pagination {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .post-pagination .page-numbers {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
    margin-right: 0;
  }
}

@media (max-width: 1200px) {
  .home .articles .articles__news,
  .home .articles .panel__col--right {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (max-width: 1000px) {
  .articles .panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .home .articles .articles__news {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 950px) {
  .category-material .articles article {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .category-material .articles__news {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .category-material .articles__news .article {
    margin-right: 0;
  }

  .category-material .articles__news article {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}

@media (max-width: 660px) {
  .category-material .articles__news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 950px) {
  .category-photo .articles article {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .category-photo .articles {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .category-photo .articles article {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}

@media (max-width: 425px) {
  .category-photo .articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 950px) {
  .category-video .articles article {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .category-video .articles {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }

  .category-video .articles article {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}

@media (max-width: 425px) {
  .category-video .articles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

@media (max-width: 768px) {
  .single-post .fresh-news,
  .single-post .sidebar {
    display: none;
  }

  .single-post .comment-form .comment-form-author,
  .single-post .comment-form .comment-form-email,
  .single-post .comment-form .comment-form-url {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    padding-right: 0;
    margin: 10px 0;
  }
}

@media (max-width: 425px) {
  .single-post .post__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .post__footer-col--left {
    margin-bottom: 10px;
  }

  .single-post .post__title {
    font-size: 26px;
  }
}

.post__comments {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
/*    display: none;*/
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
	flex-direction: column;
	padding-right: 10px;
}

.article__comments-img {
    width: 18px;
    height: 18px;
    background: url("./img/comment3.svg") no-repeat center;
}

.article__comments-count {
    color: #b4c0c6;
    font-weight: 600;
}

#breadcrumbs{
	margin-bottom: 10px;
/*	display:none;*/
}

.lang-switch{
	font-size: 18px;
	margin-right:10px;
	float: left;
	display: flex;
}
.lang-switch select{
	color: #900022;
	border-color: #900022;
	background-color: #fff;
	font-weight: bold;
}
.lang-switch select option{
	background-color: #fff;
	cursor:pointer;
}

ul.lang-switch li{
	padding-right: 5px;
	list-style: none;
}

a.tags {
    background-color: #900022;
    border-radius: 3px;
    padding: 0 7px;
    line-height: 18px;
    text-transform: uppercase;
    color: #ffffff;
    display: inline-block;
    font-size: 12px;
		margin-bottom: 5px !important;

		width: 68px;
    float: right;
}

/*# sourceMappingURL=styles.css.map*/