@charset "UTF-8";
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*NORMALIZE.CSS*/
/*! normalize.css v3.0.1 | MIT License | git.io/normalize */
/**
 * 1. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  -ms-text-size-adjust: 100%;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 1 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9/10.
 * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9/10/11.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*NORMALIZE.CSS END*/
/*RESET*/
*,
:focus {
  outline: none; }

body {
  -webkit-fontype-smalloothing: antialiased; }

body,
html {
  height: 100%;
  width: 100%; }

a,
input[type=radio],
input[type=checkbox],
select {
  cursor: pointer; }

select[disabled] {
  cursor: default; }

/*normalization mozila*/
input:-webkit-autofill {
  background-color: transparent; }

/*normalization ie7*/
* + html input[type=checkbox],
* + html input[type=radio] {
  width: 13px;
  height: 13px; }

textarea {
  resize: none;
  vertical-align: top; }

em,
i {
  font-style: italic; }

img {
  vertical-align: top; }

input {
  vertical-align: middle; }

dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0 0 0 40px; }

menu,
ol,
ul {
  padding: 0 0 0 40px; }

nav ul,
nav ol {
  list-style: none outside none; }

blockquote,
q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

:focus {
  -moz-outline: 3px solid #fff !important; }

input[type="radio"]:focus {
  -moz-outline-radius: 12px !important;
  -moz-outline-offset: 0 !important; }

input[type="checkbox"]:focus {
  -moz-outline-offset: -1px !important;
  -moz-outline: 1px solid #000 !important; }

/*fix button click opera old version*/
button:after {
  content: ""; }

del {
  text-decoration: line-through; }

table {
  width: 100%; }

form {
  margin: 0;
  padding: 0; }

input::-ms-clear {
  display: none; }

:-moz-placeholder {
  /* Firefox 18- */
  opacity: 1; }

::-webkit-input-placeholder {
  /* chrome */
  opacity: 1;
  color: inherit; }

::-moz-placeholder {
  /* Firefox 19+ */
  opacity: 1; }

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 {
  border: 0 none;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline; }

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: outside none none; }

blockquote, q {
  quotes: none; }

blockquote::before, blockquote::after, q::before, q::after {
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* BebasNeue => Bold */
@font-face {
  font-family: 'BebasNeue';
  src: url("../fonts/bebas-neue/bold/BebasNeueBold.eot?#iefix") format("embedded-opentype"), url("../fonts/bebas-neue/bold/BebasNeueBold.otf") format("opentype"), url("../fonts/bebas-neue/bold/BebasNeueBold.woff") format("woff"), url("../fonts/bebas-neue/bold/BebasNeueBold.ttf") format("truetype"), url("../fonts/bebas-neue/bold/BebasNeueBold.svg#BebasNeueBold") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl';
  src: url("../fonts/museo-sans-cyrl/900/MuseoSansCyrl-900.eot?#iefix") format("embedded-opentype"), url("../fonts/museo-sans-cyrl/900/MuseoSansCyrl-900.otf") format("opentype"), url("../fonts/museo-sans-cyrl/900/MuseoSansCyrl-900.woff") format("woff"), url("../fonts/museo-sans-cyrl/900/MuseoSansCyrl-900.ttf") format("truetype"), url("../fonts/museo-sans-cyrl/900/MuseoSansCyrl-900.svg#MuseoSansCyrl-900") format("svg");
  font-weight: 900;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl';
  src: url("../fonts/museo-sans-cyrl/700/MuseoSansCyrl-700.eot?#iefix") format("embedded-opentype"), url("../fonts/museo-sans-cyrl/700/MuseoSansCyrl-700.otf") format("opentype"), url("../fonts/museo-sans-cyrl/700/MuseoSansCyrl-700.woff") format("woff"), url("../fonts/museo-sans-cyrl/700/MuseoSansCyrl-700.ttf") format("truetype"), url("../fonts/museo-sans-cyrl/700/MuseoSansCyrl-700.svg#MuseoSansCyrl-700") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl';
  src: url("../fonts/museo-sans-cyrl/500/MuseoSansCyrl-500.eot?#iefix") format("embedded-opentype"), url("../fonts/museo-sans-cyrl/500/MuseoSansCyrl-500.otf") format("opentype"), url("../fonts/museo-sans-cyrl/500/MuseoSansCyrl-500.woff") format("woff"), url("../fonts/museo-sans-cyrl/500/MuseoSansCyrl-500.ttf") format("truetype"), url("../fonts/museo-sans-cyrl/500/MuseoSansCyrl-500.svg#MuseoSansCyrl-500") format("svg");
  font-weight: 500;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl';
  src: url("../fonts/museo-sans-cyrl/300/MuseoSansCyrl-300.eot?#iefix") format("embedded-opentype"), url("../fonts/museo-sans-cyrl/300/MuseoSansCyrl-300.otf") format("opentype"), url("../fonts/museo-sans-cyrl/300/MuseoSansCyrl-300.woff") format("woff"), url("../fonts/museo-sans-cyrl/300/MuseoSansCyrl-300.ttf") format("truetype"), url("../fonts/museo-sans-cyrl/300/MuseoSansCyrl-300.svg#MuseoSansCyrl-300") format("svg");
  font-weight: 300;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSansCyrl';
  src: url("../fonts/museo-sans-cyrl/100/MuseoSansCyrl-100.eot?#iefix") format("embedded-opentype"), url("../fonts/museo-sans-cyrl/100/MuseoSansCyrl-100.otf") format("opentype"), url("../fonts/museo-sans-cyrl/100/MuseoSansCyrl-100.woff") format("woff"), url("../fonts/museo-sans-cyrl/100/MuseoSansCyrl-100.ttf") format("truetype"), url("../fonts/museo-sans-cyrl/100/MuseoSansCyrl-100.svg#MuseoSansCyrl-100") format("svg");
  font-weight: 100;
  font-style: normal; }

@font-face {
  font-family: 'MuseoSlab';
  src: url("../fonts/museo-slab/1000/MuseoSlabW01-1000.eot?#iefix") format("embedded-opentype"), url("../fonts/museo-slab/1000/MuseoSlabW01-1000.woff") format("woff"), url("../fonts/museo-slab/1000/MuseoSlabW01-1000.ttf") format("truetype"), url("../fonts/museo-slab/1000/MuseoSlabW01-1000.svg#MuseoSlabW01-1000") format("svg");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'Stem';
  src: url("../fonts/stem/bold/Stem-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/stem/bold/Stem-Bold.otf") format("opentype"), url("../fonts/stem/bold/Stem-Bold.woff") format("woff"), url("../fonts/stem/bold/Stem-Bold.ttf") format("truetype"), url("../fonts/stem/bold/Stem-Bold.svg#Stem-Bold") format("svg");
  font-weight: 700;
  font-style: normal; }

@font-face {
  font-family: 'MinionPro';
  src: url("../fonts/minion-pro/regular/MinionPro-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/minion-pro/regular/MinionPro-Regular.otf") format("opentype"), url("../fonts/minion-pro/regular/MinionPro-Regular.woff") format("woff"), url("../fonts/minion-pro/regular/MinionPro-Regular.ttf") format("truetype"), url("../fonts/minion-pro/regular/MinionPro-Regular.svg#MinionPro-Regular") format("svg");
  font-weight: normal;
  font-style: normal; }

/* SVG */
.icon-link {
  fill: #b5b5b5;
  height: 18px;
  width: 20px; }

.icon-share {
  fill: #a6a6a6;
  height: 24px;
  width: 22px; }

.icon-arrows {
  stroke: #fff;
  fill: #f73725;
  height: 45px;
  width: 43px; }

.icon-plus {
  height: 16px;
  width: 16px; }

.icon-facebook {
  height: 60px;
  width: 60px; }

.icon-twitter {
  height: 60px;
  width: 60px; }

.icon-instagram {
  height: 60px;
  width: 60px; }

.icon-vk {
  height: 60px;
  width: 60px; }

.icon-youtube {
  height: 60px;
  width: 60px; }

.icon-comment {
  height: 28px;
  width: 30px; }

.icon-arrow-totop {
  fill: #bbbbbb;
  stroke: #bbbbbb;
  height: 23px;
  width: 27px; }

.icon-arrow-circular {
  fill: #ec2e1f;
  stroke: #ec2e1f;
  height: 27px;
  width: 27px; }

.icon-book {
  stroke: #fff;
  height: 24px;
  width: 22px; }

/* SVG END */
.rlist, .checkboxes-list, .checkboxes-inline-list, .radioboxes-list, .radioboxes-inline-list {
  font-size: 0;
  line-height: 0; }

.ulist, .checkboxes-list__item, .checkboxes-inline-list__item, .radioboxes-list__item, .radioboxes-inline-list__item {
  font-size: 20px;
  line-height: 2; }

.text-overflow {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis; }

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  vertical-align: middle; }

/* retina-sprite */
.clearfix:after, .container:after, .comment-item__holder:after, .comment-item__sub:after, .post:after, .worth-item__content-holder:after, .biography-item__row:after, .biography-item__row-cell:after, .main-page__intro-holder:after, .main-page__social-row:after, .space__drop-row:after {
  content: '';
  display: block;
  clear: both; }

body {
  color: #383838;
  font-family: "MuseoSansCyrl", Arial, Verdana, sans-serif;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0;
  font-weight: 500; }

h1, h2, h3, h4, h5, h6 {
  color: #323232;
  font-family: "MuseoSansCyrl", Arial, Verdana, sans-serif;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 900;
  margin: 0; }

a {
  color: #ec2e1f;
  text-decoration: none; }

p {
  margin: 0; }

strong,
b {
  font-weight: 900; }

.static-content {
  font-size: 20px;
  line-height: 2;
  font-weight: 500;
  color: #383838; }
  .static-content h1, .static-content h2, .static-content h3, .static-content h4, .static-content h5, .static-content h6 {
    font-weight: 900; }
  .static-content h1 {
    font-size: 32px;
    padding: 0 0 20px; }
  .static-content h2 {
    font-size: 28px;
    padding: 0 0 20px;
    font-weight: 700; }
  .static-content h3 {
    font-size: 24px;
    padding: 0 0 15px;
    font-weight: 700; }
  .static-content h4 {
    font-size: 20px;
    padding: 0 0 10px; }
  .static-content h5 {
    font-size: 18px;
    padding: 0 0 10px; }
  .static-content h6 {
    font-size: 17px;
    padding: 0 0 10px; }
  .static-content a {
    color: #ec2e1f;
    text-decoration: none; }
    .static-content a:hover {
      text-decoration: underline; }
  .static-content p {
    padding: 0 0 40px;
    margin: 0; }
  .static-content q, .static-content blockquote {
    font-size: 23px;
    line-height: 1.7;
    font-weight: 900;
    margin: 16px 0 65px;
    display: block;
    position: relative; }
    .static-content q:before, .static-content blockquote:before {
      position: absolute;
      content: "";
      height: 87%;
      width: 5px;
      background: #ec2e1f;
      top: 10px;
      left: -62px; }
  .static-content ol {
    list-style-type: decimal;
    list-style-position: inside;
    counter-reset: item;
    padding-bottom: 37px; }
    .static-content ol li {
      display: block;
      padding: 0 0 8px 52px;
      position: relative; }
      .static-content ol li:before {
        content: counters(item, ".") "      .";
        counter-increment: item;
        display: inline;
        vertical-align: top;
        position: absolute;
        top: 0;
        left: 0;
        color: #ec2e1f; }
  .static-content ul {
    padding-bottom: 37px; }
    .static-content ul li {
      padding: 0 0 7px 39px;
      position: relative; }
      .static-content ul li:before {
        content: "";
        display: inline-block;
        position: absolute;
        left: 2px;
        top: 17px;
        width: 6px;
        height: 6px;
        background: #ec2e1f; }
  .static-content figure {
    margin: 80px 0; }
    .static-content figure img {
      margin: 0 0 6px; }
  .static-content figcaption {
    font-size: 12px;
    color: #9b9b9b; }
  .static-content table {
    width: 100%; }
  .static-content th {
    font-weight: 400;
    color: #9b9b9b;
    padding: 0 0 6px 20px;
    text-align: left;
    vertical-align: top; }
    .static-content th:first-child {
      padding-left: 0; }
  .static-content td {
    padding: 12px 0 10px 20px;
    text-align: left;
    vertical-align: middle; }
    .static-content td:first-child {
      padding-left: 0; }
  .static-content img {
    margin: 15px auto 32px; }
  .static-content [style*="float: left"],
  .static-content [style*="float:left"],
  .static-content img[align="left"] {
    margin: 36px 36px 38px 0; }
  .static-content [style*="float: right"],
  .static-content [style*="float:right"],
  .static-content [align="right"] {
    margin: 36px 0 38px 36px; }

.wide-img {
  margin: 16px -9999px 40px; }
  .wide-img img {
    display: block;
    margin: 0 auto; }

.upper {
  text-transform: uppercase; }

.center {
  text-align: center !important; }

.form-row {
  margin: 0 0 10px; }

.label {
  padding: 0 0 6px;
  display: block;
  color: #383838;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900; }

.input-item {
  position: relative; }
  .input-item--password .input {
    padding-right: 70px; }

.input-link {
  position: absolute;
  right: 22px;
  top: 50%;
  margin-top: -9px;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.38); }
  .input-link:hover {
    color: #418dd4; }

.input {
  font-family: "MuseoSansCyrl", Arial, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #7e7e7e;
  text-align: left;
  padding: 14px 20px;
  width: 100%;
  display: block;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
  height: 55px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  -webkit-appearance: none; }
  .input::-webkit-input-placeholder {
    color: #9b9b9b; }
  .input:-moz-placeholder {
    color: #9b9b9b; }
  .input::-moz-placeholder {
    color: #9b9b9b; }
  .input:-ms-input-placeholder {
    color: #9b9b9b; }
  .input.placeholder {
    color: #9b9b9b; }
  .input:focus::-moz-placeholder {
    color: transparent; }
  .input:focus::-webkit-input-placeholder {
    color: transparent; }
  .input:focus:-ms-input-placeholder {
    color: transparent; }
  .input:focus::placeholder {
    color: transparent; }
  .input:focus {
    border-color: #4a4a4a; }
  .input--textarea {
    height: 162px; }

textarea {
  resize: none;
  overflow: auto; }

.select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-family: "MuseoSansCyrl", Arial, Verdana, sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #4a4a4a;
  text-align: left;
  padding: 3px 30px 3px 12px;
  width: 100%;
  display: block;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
  height: 38px;
  border-radius: 3px;
  border: 2px solid rgba(0, 0, 0, 0.05);
  /*&::-ms-expand {
			display: none;
		}*/ }
  .select:focus {
    border-color: #4a4a4a; }

.checkbox {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  min-width: 18px;
  min-height: 18px;
  text-align: left; }
  .checkbox__icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: solid 2px rgba(0, 0, 0, 0.08);
    border-radius: 3px;
    background: #fff; }
    .checkbox__icon-image {
      position: absolute;
      content: '';
      width: 7px;
      height: 13px;
      border-right: 3px solid #ec2e1f;
      border-bottom: 3px solid #ec2e1f;
      top: -1px;
      left: 5px;
      -webkit-transform: rotate(45deg);
          -ms-transform: rotate(45deg);
              transform: rotate(45deg);
      -webkit-transition: all .2s ease;
      transition: all .2s ease;
      opacity: 0; }
  .checkbox__inner {
    padding: 0 0 0 30px;
    display: block; }
  .checkbox__text {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #4a4a4a;
    padding: 3px 0 0;
    display: inline-block;
    vertical-align: top; }
    .checkbox__text--gray {
      color: rgba(0, 0, 0, 0.38); }
    .checkbox__text + .checkbox__text {
      margin-left: 3px; }
    .checkbox__text a {
      text-decoration: underline; }
      .checkbox__text a:hover {
        text-decoration: none; }
  .checkbox__check {
    display: none; }
    .checkbox__check:checked ~ .checkbox__icon .checkbox__icon-image {
      visibility: visible;
      opacity: 1; }
    .checkbox__check:disabled ~ .checkbox__icon {
      opacity: 0.3; }
      .checkbox__check:disabled ~ .checkbox__icon .checkbox__icon-image {
        visibility: visible; }

.checkboxes-list__item + .checkboxes-list__item {
  margin-top: 15px; }

.checkboxes-inline-list {
  margin: -18px 0 0 -28px; }
  .checkboxes-inline-list__item {
    display: inline-block;
    vertical-align: top;
    margin: 18px 0 0 28px; }

.radiobox {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  min-width: 16px;
  min-height: 16px;
  text-align: left; }
  .radiobox__icon {
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: solid 2px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    background: #fff; }
    .radiobox__icon-image {
      position: absolute;
      left: 4px;
      top: 4px;
      visibility: hidden;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ec2e1f; }
  .radiobox__inner {
    padding: 0 0 0 30px;
    display: block; }
  .radiobox__text {
    font-size: 14px;
    line-height: 1;
    font-weight: 400;
    color: #4a4a4a;
    padding: 3px 0 0;
    display: inline-block;
    vertical-align: top; }
  .radiobox__check {
    display: none; }
    .radiobox__check:checked ~ .radiobox__icon .radiobox__icon-image {
      visibility: visible; }
    .radiobox__check:disabled ~ .radiobox__icon .radiobox__icon-image {
      visibility: visible; }

.radioboxes-list__item + .radioboxes-list__item {
  margin-top: 15px; }

.radioboxes-inline-list {
  margin: -18px 0 0 -28px; }
  .radioboxes-inline-list__item {
    display: inline-block;
    vertical-align: top;
    margin: 18px 0 0 28px; }

.btn {
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  border: 0;
  border-radius: 0;
  position: relative;
  -webkit-transition: all .1s ease-in-out;
  transition: all .1s ease-in-out;
  text-decoration: none;
  max-width: 100%;
  line-height: 1;
  background: transparent;
  padding: 0;
  cursor: pointer; }
  .btn:hover {
    text-decoration: none; }
  .btn__text--middle {
    vertical-align: middle; }
  .btn__icon {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
    letter-spacing: 0;
    padding: 0 6px 0 0;
    margin-top: -3px;
  }
  .btn input {
    background: transparent;
    border: 0;
    color: transparent;
    cursor: pointer;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    text-indent: -9999px;
    z-index: 10; }
  .btn-red {
    font-family: "MuseoSansCyrl", Arial, Verdana, sans-serif;
    font-size: 15px;
    color: #fff;
    padding: 19px 50px;
    background: #ec2e1f;
    text-transform: uppercase;
    font-weight: 900;
    min-width: 212px; }
    .btn-red:hover {
      background: #de2a1d;
      -webkit-box-shadow: 0 0 20px rgba(222, 42, 29, 0.5);
              box-shadow: 0 0 20px rgba(222, 42, 29, 0.5);
      -webkit-transition: -webkit-box-shadow 0.5s;
      transition: -webkit-box-shadow 0.5s;
      transition: box-shadow 0.5s;
      transition: box-shadow 0.5s, -webkit-box-shadow 0.5s; }
    .btn-red--large {
      position: relative; }
      .btn-red--large:hover:after {
        opacity: 1;
        -webkit-transition: opacity 0.5s, -webkit-box-shadow;
        transition: opacity 0.5s, -webkit-box-shadow;
        transition: box-shadow, opacity 0.5s;
        transition: box-shadow, opacity 0.5s, -webkit-box-shadow; }
      .btn-red--large:after {
        content: "";
        position: absolute;
        top: -1px;
        left: -1px;
        height: calc(100% + 2px);
        border: 1px solid #ec2e1f;
        width: calc(100% + 2px);
        opacity: 0;
        -webkit-transition: opacity .5s;
        transition: opacity .5s; }
    .btn-red--disabled {
      background: #9b9b9b;
      cursor: default; }
      .btn-red--disabled:hover {
        background: #9b9b9b; }
  .btn--instagram {
    padding-left: 34px; }
    .btn--instagram .btn__icon {
      position: absolute;
      left: 8px;
      top: 50%;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%); }
  .btn-border {
    font-family: "MuseoSansCyrl", Arial, Verdana, sans-serif;
    font-size: 15px;
    color: #363636;
    padding: 19px 50px 19px;
    background: #fff;
    text-transform: uppercase;
    font-weight: 900;
    border: 1px solid #b5b5b5;
    min-width: 372px;
    -webkit-transition: all .1s;
    transition: all .1s;
    position: relative; }
    .btn-border .btn__text {
      display: inline-block;
      vertical-align: middle; }
    .btn-border:after {
      content: "";
      position: absolute;
      top: -2px;
      left: -2px;
      height: calc(100% + 4px);
      border: 1px solid #ec2e1f;
      width: calc(100% + 4px);
      opacity: 0;
      -webkit-transition: opacity 0.3s;
      transition: opacity 0.3s; }
    .btn-border .btn__icon {
      position: relative;
      border: 5px solid transparent;
      border-left: 8px solid #ec2e1f;
      content: "";
      margin-top: -2px;
    }
    .btn-border:hover {
      color: #ec2e1f;
      border-color: transparent;
      -webkit-box-shadow: 0 0 20px rgba(236, 46, 31, 0.1);
              box-shadow: 0 0 20px rgba(236, 46, 31, 0.1);
      -webkit-transition: all .5s;
      transition: all .5s; }
      .btn-border:hover:after {
        opacity: 1;
        -webkit-transition: opacity 0.7s ease 0s;
        transition: opacity 0.7s ease 0s; }
  .btn-link {
    color: #418dd4;
    font-size: 12px; }
    .btn-link:hover .btn__text {
      text-decoration: underline; }
  .btn-image {
    -webkit-transition: fill .5s;
    transition: fill .5s; }
    .btn-image:hover {
      fill: #dc1a08;
      -webkit-transition: fill .5s;
      transition: fill .5s; }

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

html {
  min-height: 100%;
  min-width: 1263px;
  width: 100%; }

body {
  background: #fff;
  min-width: 1263px;
  width: 100%; }

.wrapper {
  position: relative;
  overflow: hidden;
  background: #fff;
  min-width: 1263px;
  padding-top: 102px !important; }

.container {
  margin: 0 auto;
  max-width: 1282px;
  padding: 0 20px; }
  .container--small {
    max-width: 1224px; }

.logo {
  font-size: 0;
  letter-spacing: -5px; }
  .logo__holder {
    display: inline-block; }
  .logo__link {
    display: block;
    font-size: 0;
    letter-spacing: -5px;
    line-height: 1;
    -webkit-transition: opacity .3s;
    transition: opacity .3s; }
    .logo__link-right {
      font-size: 34px;
      background: #ec2e1f;
      color: #fff;
      font-family: "BebasNeue";
      display: inline-block;
      line-height: 1;
      padding: 10px 10px 6px 10px;
      vertical-align: middle;
      letter-spacing: normal; }
    .logo__link-left {
      display: inline-block;
      vertical-align: middle;
      font-family: "BebasNeue";
      font-size: 34px;
      color: #3c3c3c;
      letter-spacing: normal;
      padding: 3px 15px 0; }
  .logo__languages {
    border-left: 1px solid #d9d9d9;
    display: inline-block;
    padding: 6px 13px 5px 13px;
    vertical-align: middle; }
    .logo__languages-select {
      display: inline-block;
      font-size: 16px;
      font-weight: 900;
      letter-spacing: normal;
      color: #323232;
      -webkit-transition: color .3s;
      transition: color .3s; }
      .logo__languages-select:hover {
        color: #ec2e1f;
        -webkit-transition: color .3s;
        transition: color .3s; }

/* header */
.header {
  background: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  min-width: 1263px;
  z-index: 9999;
  padding: 27px 0 25px;
  -webkit-transition: -webkit-box-shadow .7s;
  transition: -webkit-box-shadow .7s;
  transition: box-shadow .7s;
  transition: box-shadow .7s, -webkit-box-shadow .7s;
  height: 102px; }
  .header .container {
    font-size: 0;
    letter-spacing: -5px; }
  .header__left {
    width: 471px;
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    letter-spacing: -5px; }
    @media (max-width: 1366px) {
      .header__left {
        width: 300px; } }
  .header__center {
    width: calc(100% - 471px);
    vertical-align: middle;
    font-size: 20px;
    letter-spacing: normal;
    display: inline-block; }
    @media (max-width: 1366px) {
      .header__center {
        width: calc(100% - 300px);
        text-align: right; } }

.sticky {
  -webkit-box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 7px 3px rgba(0, 0, 0, 0.08);
  -webkit-transition: margin-top .2s;
  transition: margin-top .2s; }

/* header end */
/* content */
.content {
  padding: 0 0 130px;
  position: relative;
  z-index: 30; }
  .content__heading {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 2; }
  .content__container {
    max-width: 1860px;
    margin: 0 auto;
    padding: 0 20px; }
  .content__top {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 218px;
    position: relative;
    padding: 73px 0 0 0;
    text-align: center;
    margin: 0 auto 73px; }
    .content__top:after {
      position: absolute;
      content: "";
      height: 100%;
      width: 100%;
      top: 0;
      left: 0;
      background-color: rgba(0, 0, 0, 0.59);
      z-index: 1; }
    .content__top--gallery {
      padding: 0 50px;
      height: auto;
      margin: 0 auto 66px;
      width: 100%;
      max-width: 1920px; }
      .content__top--gallery:after {
        display: none; }
      .content__top--gallery .content__top-breadcrumbs {
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        margin: 0 auto; }
        @media (max-width: 1366px) {
          .content__top--gallery .content__top-breadcrumbs {
            top: 40px; } }
    .content__top-breadcrumbs {
      z-index: 2;
      position: relative; }
  .content__info {
    max-width: 878px;
    margin: 0 auto 67px;
    text-align: center;
    padding: 0 20px; }
    .content__info--border {
      position: relative;
      padding-bottom: 73px; }
      .content__info--border:after {
        content: "";
        position: absolute;
        height: 4px;
        width: 101px;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0 auto;
        background-color: #ec2e1f; }
    .content__info-text {
      font-size: 22px;
      line-height: 1.5; }
  .content__holder {
    max-width: 847px;
    padding: 0 20px;
    margin: 0 auto; }

/* content end */
/* footer */
.footer {
  position: relative;
  z-index: 60;
  height: 586px;
  overflow: hidden;
  background: url("../img/bg-footer.png"), url("../img/bg-page-bottom.png");
  background-size: 100% 100%, 1114px 113px;
  background-position: 0, bottom left;
  background-repeat: no-repeat;
  padding: 135px 0 0; }
  .footer-top {
    padding: 0 0 56px;
    font-size: 0;
    letter-spacing: -5px; }
    .footer-top__left {
      width: 481px;
      display: inline-block;
      vertical-align: top; }
      .footer-top__left-logo {
        padding: 0 0 53px; }
      .footer-top__left-social {
        font-size: 0;
        letter-spacing: -5px; }
        .footer-top__left-social-heading {
          font-size: 14px;

          display: inline-block;
          vertical-align: middle;
          padding: 0 26px 0 0;
          color: #3c3c3c;
          letter-spacing: normal;
          font-weight: 700;
          padding-top: 5px;
        }
        .footer-top__left-social-list {
          display: inline-block;
          vertical-align: middle; }
    .footer-top__center {
      width: calc(100% - 481px);
      display: inline-block;
      vertical-align: top;
      font-size: 0;
      letter-spacing: -5px;
      padding: 8px 0 0; }
      .footer-top__center-block {
        width: 26%;
        display: inline-block;
        letter-spacing: normal;
        vertical-align: top; }
        .footer-top__center-block--last {
          width: 22%;
          padding: 0 0 0 34px; }
  .footer-bottom {
    font-size: 0;
    letter-spacing: -5px; }
    .footer-bottom__left {
      width: 73%;
      display: inline-block;
      letter-spacing: normal;
      vertical-align: middle; }
      .footer-bottom__left-heading {
        font-size: 12px;
        color: #3c3c3c;
        font-weight: 700;
        display: inline-block;
        padding: 2px 31px 0 0;
        vertical-align: middle; }
      .footer-bottom__left-images {
        max-width: 100%;
        display: inline-block;
        vertical-align: middle; }
    .footer-bottom__right {
      width: 27%;
      display: inline-block;
      font-size: 12px;
      text-align: right;
      color: #b5b5b5;
      font-weight: 700;
      letter-spacing: normal;
      vertical-align: top;
      padding: 28px 0 0; }

/* footer end */
/*  
	--- WIDGETS CONTAINS --- 
	
	1. Slick Slider
	2. Scrollpane
	
*/
/* 1.SLIDER SLIDER */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.slick-dots {
  position: absolute;
  left: 0;
  right: 0;
  top: 32px;
  text-align: center;
  font-size: 0;
  line-height: 0; }
  .slick-dots li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 5px; }
    .slick-dots li.slick-active button {
      opacity: 1;
      background: #383838; }
  .slick-dots button {
    width: 18px;
    height: 3px;
    display: block;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: #383838;
    opacity: 0.2; }

/* 1.SLIDER SLIDER END */
@media (max-width: 1023px) {
  .fancybox-nav span {
    visibility: visible; } }

.card {
  background: #fff;
  -webkit-box-shadow: 0 0 55px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 55px rgba(0, 0, 0, 0.08); }
  .card:hover {
    -webkit-box-shadow: 0 0 55px rgba(247, 55, 37, 0.2);
            box-shadow: 0 0 55px rgba(247, 55, 37, 0.2); }

.date {
  line-height: 1.2;
  font-weight: 900;
  color: #fff;
  background: #ec2e1f;
  display: inline-block;
  font-size: 15px;
  padding: 3px 7px; }
  .date--large {
    letter-spacing: 7.3px;
    text-transform: uppercase;
    font-size: 12px;
    padding: 6px 10px 6px 16px; }
  .date--black {
    background: #383838; }

.video {
  height: 100%;
  width: 100%; }
  .video-holder {
    height: 392px; }
  .video-button {
    cursor: pointer;
    height: 100%;
    width: 100%; }
  .video-image {
    max-height: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto; }
  .video-inner {
    height: 100%;
    width: 100%; }

/* SLICK */
.slick-arrow {
  font-size: 0;
  height: 85px;
  width: 85px;
  background: rgba(50, 50, 50, 0.8);
  border-radius: 50%;
  border: none;
  position: absolute;
  z-index: 99;
  top: calc(50% - 44px);
  -webkit-transition: background .7s;
  transition: background .7s;
  cursor: pointer; }
  .slick-arrow:after {
    content: "";
    position: absolute;
    top: calc(50% - 8px);
    -webkit-transition: border-color .5s;
    transition: border-color .5s; }

.slick-prev {
  left: -44px; }
  @media (max-width: 1366px) {
    .slick-prev {
      left: 10px; } }
  .slick-prev:after {
    border: 9px solid transparent;
    border-right: 14px solid rgba(255, 255, 255, 0.64);
    left: calc(50% - 18px); }
  .slick-prev:hover:after {
    border: 9px solid transparent;
    border-right: 14px solid white;
    -webkit-transition: border-color .5s;
    transition: border-color .5s; }
  .slick-prev-small {
    height: 41px;
    width: 41px;
    left: 0; }
    .slick-prev-small:after {
      content: "";
      position: absolute;
      border: 4px solid transparent;
      border-right: 8px solid rgba(255, 255, 255, 0.64);
      left: calc(50% - 9px);
      top: calc(50% - 4px); }
    .slick-prev-small:hover:after {
      border: 4px solid transparent;
      border-right: 8px solid white; }

.slick-next {
  right: -44px; }
  @media (max-width: 1366px) {
    .slick-next {
      right: 10px; } }
  .slick-next:hover:after {
    border: 9px solid transparent;
    border-left: 14px solid white;
    -webkit-transition: border-color .5s;
    transition: border-color .5s; }
  .slick-next:after {
    border: 9px solid transparent;
    border-left: 14px solid rgba(255, 255, 255, 0.64);
    right: calc(50% - 18px); }
  .slick-next-small {
    height: 41px;
    width: 41px;
    right: 0; }
    .slick-next-small:after {
      content: "";
      position: absolute;
      border: 4px solid transparent;
      border-left: 8px solid rgba(255, 255, 255, 0.64);
      right: calc(50% - 9px);
      top: calc(50% - 4px); }
    .slick-next-small:hover:after {
      border: 4px solid transparent;
      border-left: 8px solid white; }

.slick-dots {
  top: auto;
  bottom: -59px; }
  .slick-dots button {
    border-radius: 50%;
    height: 11px !important;
    width: 11px !important;
    background: #bababa;
    opacity: 1;
    -webkit-transition: background .4s;
    transition: background .4s;
    padding: 0; }
    .slick-dots button:hover {
      background: #f83636;
      -webkit-transition: background .4s;
      transition: background .4s; }
  .slick-dots li {
    margin: 0 14px; }
    .slick-dots li.slick-active button {
      background: #f83636; }

/* SLICK END */
/* NAVIGATION */
.navigation-burger {
  display: none;
  height: 28px;
  width: 28px;
  text-align: center;
  line-height: 0;
  letter-spacing: -5px;
  vertical-align: top; }
  .navigation-burger:before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    height: 100%; }
  .navigation-burger__link {
    height: 4px;
    width: 28px;
    border-radius: 4px;
    background: #ec2e1f;
    font-size: 0;
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-top: -2px;
    -webkit-transition: color .4s;
    transition: color .4s; }
    .navigation-burger__link:before {
      content: "";
      top: -8px;
      height: 4px;
      width: 28px;
      border-radius: 4px;
      background: #ec2e1f;
      position: absolute;
      left: 0; }
    .navigation-burger__link:after {
      content: "";
      bottom: -8px;
      height: 4px;
      width: 28px;
      border-radius: 4px;
      background: #ec2e1f;
      position: absolute;
      left: 0; }

.navigation-list {
  font-size: 0;
  letter-spacing: -5px;
  margin: 0 -26px;
  display: block; }
  @media (max-width: 1366px) {
    .navigation-list {
      margin: 0; } }

.navigation-item {
  display: inline-block;
  font-size: 18px;
  letter-spacing: normal;
  padding: 0 26px;
  position: relative; }
  @media (max-width: 1366px) {
    .navigation-item {
      padding: 0 15px;
      font-size: 16px; } }
  .navigation-item:hover .navigation-item__sub {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity .4s;
    transition: opacity .4s; }
  .navigation-item:hover .sub-menu-item {
    opacity: 1; }
  .navigation-item__link {
    color: #323232;
    font-weight: 700;
    display: inline-block;
    -webkit-transition: color .4s;
    transition: color .4s; }
    .navigation-item__link--active, .navigation-item__link:hover {
      color: #ec2e1f;
      -webkit-transition: color .4s;
      transition: color .4s; }
      .navigation-item__link--active .navigation-item__link-image-img, .navigation-item__link:hover .navigation-item__link-image-img {
        fill: #ec2e1f;
        -webkit-transition: fill .4s;
        transition: fill .4s; }
    .navigation-item__link-text {
      display: inline-block;
      vertical-align: middle;
      font-size: 18px;
      letter-spacing: normal; }
      @media (max-width: 1366px) {
        .navigation-item__link-text {
          font-size: 18px; } }
    .navigation-item__link-image {
      display: inline-block;
      vertical-align: top;
      padding: 6px 8px 0 0; }
      @media (max-width: 1366px) {
        .navigation-item__link-image {
          padding: 7px 8px 0 0;} }
      .navigation-item__link-image-img {
        -webkit-transition: fill .7s;
        transition: fill .7s; }
  .navigation-item--social {
    border-left: 1px solid #ececec;
    padding: 0 23px; }
    @media (max-width: 1366px) {
      .navigation-item--social {
        padding: 0 15px; } }
    .navigation-item--social .navigation-item__link-text {
      padding-bottom: 4px; }
    .navigation-item--social .navigation-item__link {
      display: inline-block;
      vertical-align: middle;
      font-size: 0;
      letter-spacing: -5px; }
    .navigation-item--social .navigation-item__sub {
      left: auto;
      right: 23px; }
      @media (max-width: 1023px) {
        .navigation-item--social .navigation-item__sub {
          left: auto;
          right: 0; } }
  .navigation-item__sub {
    position: absolute;
    top: 100%;
    left: 25px;
    min-width: 277px;
    z-index: 99;
    background: #fff;
    padding: 36px 0 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .7s;
    transition: opacity .7s;
    text-align: left; }

/* NAVIGATION end */
/* BREDCRUMBS */
.breadcrumbs--gray .breadcrumbs-item__link {
  color: #bebebe; }
  .breadcrumbs--gray .breadcrumbs-item__link--home {
    color: #ec2e1f; }

.breadcrumbs-list {
  font-size: 0;
  letter-spacing: -5px; }

.breadcrumbs-item {
  display: inline-block; }
  .breadcrumbs-item:after {
    content: "";
    background: #ec2e1f;
    height: 4px;
    width: 4px;
    display: inline-block;
    margin: 0 26px 0 20px;
    vertical-align: middle; }
  .breadcrumbs-item:last-child:after {
    display: none; }
  .breadcrumbs-item__link {
    font-size: 14px;
    letter-spacing: normal;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: 3px; }
    .breadcrumbs-item__link--home {
      color: #ec2e1f; }
    .breadcrumbs-item__link:hover {
      text-decoration: underline; }
    .breadcrumbs-item__link--active {
      color: #bebebe; }
      .breadcrumbs-item__link--active:hover {
        text-decoration: none; }

/* BREDCRUMBS end */
/* ARTICLES */
.articles-list__item {
  padding: 0 0 29px; }

.articles-list--row {
  font-size: 0;
  letter-spacing: -5px;
  margin: 0 -15px; }
  .articles-list--row .articles-list__item {
    width: 33.33%;
    display: inline-block;
    padding: 0 15px; }
  .articles-list--row .articles-item__image {
    height: 236px;
    margin: 0 0 20px; }
  .articles-list--row .articles-item__content {
    width: 100%;
    padding: 8px 0 37px 31px;
    max-width: 262px;
    min-height: 240px; }
  .articles-list--row .articles-item__image-link {
    height: 236px; }
  .articles-list--row .articles-item__content-button {
    bottom: 22px;
    left: 32px; }
    .articles-list--row .articles-item__content-button-link {
      font-size: 16px; }

.articles-item {
  display: block;
  font-size: 0;
  letter-spacing: -5px;
  background: #fff;
  -webkit-box-shadow: 0 0 55px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 55px rgba(0, 0, 0, 0.08); }
  .articles-item:hover {
    -webkit-box-shadow: 0 0 55px rgba(247, 55, 37, 0.2);
            box-shadow: 0 0 55px rgba(247, 55, 37, 0.2); }
    .articles-item:hover .articles-item__content-heading-link {
      color: #f73725; }
  .articles-item__image {
    display: inline-block;
    width: 402px;
    max-width: 100%;
    vertical-align: top;
    position: relative;
    -webkit-transition: opacity .7s;
    transition: opacity .7s;
    height: 278px; }
    .articles-item__image--hidden:after {
      content: "";
      height: 100%;
      width: 100%;
      background: rgba(0, 0, 0, 0.6);
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1; }
    .articles-item__image--border {
      border-right: 1px solid #f4f4f4; }
    .articles-item__image--twitter {
      background: #00aced; }
      .articles-item__image--twitter:after {
        display: none; }
      .articles-item__image--twitter .articles-item__image-link:after {
        display: none; }
    .articles-item__image--facebook {
      background: #3b5997; }
    .articles-item__image-link {
      height: 278px;
      display: block;
      vertical-align: middle;
      line-height: 0;
      letter-spacing: -5px;
      text-align: center;
      position: relative; }
      .articles-item__image-link:before {
        height: 100%;
        display: inline-block;
        content: "";
        vertical-align: middle; }
      .articles-item__image-link:after {
        content: "";
        height: 100%;
        width: 100%;
        background: #fff;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2; }
      .articles-item__image-link-picture {
        max-width: 100%;
        max-height: 100%;
        display: inline-block;
        vertical-align: middle;
        position: relative;
        z-index: 3; }
        .articles-item__image-link-picture-none {
          content: "";
          height: 100%;
          width: 100%;
          background: rgba(0, 0, 0, 0.6);
          position: absolute;
          top: 0;
          left: 0;
          z-index: 2; }
      .articles-item__image-link-social {
        fill: #fff;
        height: 88px;
        width: 88px; }
  .articles-item__content {
    display: inline-block;
    width: calc(100% - 402px);
    letter-spacing: normal;
    font-size: 20px;
    vertical-align: top;
    padding: 27px 0 37px 59px;
    min-height: 278px;
    position: relative; }
    .articles-item__content-holder {
      max-width: 696px; }
    .articles-item__content-date {
      padding: 0 0 10px;
      line-height: 1.2; }
    .articles-item__content-heading {
      padding: 0 0 10px; }
      .articles-item__content-heading-link {
        font-weight: 900;
        font-size: 26px;
        color: #323232;
        display: inline-block;
        max-height: 122px;
        overflow: hidden; }
    .articles-item__content-text {
      padding: 0 0 50px;
      font-size: 18px;
      line-height: 1.5;
      color: #383838; }
    .articles-item__content-button {
      position: absolute;
      bottom: 30px;
      left: 59px;
      line-height: 1.6; }
      .articles-item__content-button-link {
        font-size: 14px;
        display: block;
        line-height: 1.2; }
        .articles-item__content-button-link:hover {
          text-decoration: underline; }
      .articles-item__content-button-social {
        display: block; }

/* ARTICLES end */
/* ARTICLES-PAGE */
.articles-page__top {
  background-image: url("../img/bg-articles.jpg"); }

.articles-page__holder {
  max-width: 1222px;
  margin: 0 auto;
  padding: 6px 20px 0; }
  .articles-page__holder-list {
    padding: 0 0 20px; }

/* ARTICLES-PAGE end */
/* ARTICLE-PAGE */
.article-page__block {
  padding: 0 0 26px; }
  .article-page__block .article-page__block-heading {
    font-weight: 700;
    letter-spacing: 1.2px; }
  .article-page__block-heading {
    text-align: center; }
  .article-page__block .post {
    margin-right: -39px; }

.article-page__content {
  padding-bottom: 40px; }

.article-page__more-heading {
  font-size: 34px;
  font-weight: 700;
  padding-bottom: 70px;
  color: #383838; }

/* ARTICLE-PAGE END */
/* PAGINATION END */
.pagination {
  padding-bottom: 1px; }
  .pagination-list {
    font-size: 0;
    letter-spacing: -5px;
    margin: 0 -5px; }
  .pagination-item {
    display: inline-block;
    letter-spacing: normal;
    font-size: 15px;
    padding: 0 5px;
    vertical-align: top;
    position: relative; }
    .pagination-item--other {
      vertical-align: bottom;
      line-height: 1; }
    .pagination-item--first .pagination-item__link, .pagination-item--last .pagination-item__link {
      min-width: 140px; }
    .pagination-item--first .pagination-item__link-text:before, .pagination-item--first .pagination-item__link-text:after, .pagination-item--last .pagination-item__link-text:before, .pagination-item--last .pagination-item__link-text:after {
      content: "";
      display: inline-block;
      height: auto;
      width: auto; }
    .pagination-item--first .pagination-item__link-text:before {
      border: 5px solid transparent;
      border-right: 7px solid #ec2e1f;
      margin: 0 4px 0 0; }
    .pagination-item--last .pagination-item__link-text:after {
      border: 5px solid transparent;
      border-left: 7px solid #ec2e1f;
      margin: 0 0 0 4px; }
    .pagination-item__link {
      display: inline-block;
      border: 1px solid #b5b5b5;
      height: 52px;
      min-width: 52px;
      vertical-align: middle;
      text-align: center;
      text-transform: uppercase;
      font-weight: 900;
      color: #363636;
      padding: 0 10px;
      font-size: 15px; }
      .pagination-item__link:before {
        content: "";
        display: inline-block;
        vertical-align: middle;
        height: 100%; }
      .pagination-item__link-text {
        display: inline-block;
        vertical-align: middle; }
      .pagination-item__link:hover {
        border-color: #ec2e1f;
        color: #ec2e1f; }
      .pagination-item__link--active {
        border-color: #363636; }
        .pagination-item__link--active:hover {
          border-color: #363636;
          color: #363636; }
    .pagination-item__other {
      display: inline-block;
      line-height: 1;
      color: #383838;
      letter-spacing: .5px; }
      .pagination-item__other:hover {
        color: #ec2e1f; }

/* PAGINATION END */
/* CASE end */
.case-row {
  font-size: 0;
  letter-spacing: -5px;
  padding: 0 0 29px; }
  .case-row--components {
    margin: 0 -15px; }
    .case-row--components .case-list__item {
      display: inline-block;
      width: 50%;
      padding: 0 15px; }

.case-item {
  padding: 29px 60px 10px 0;
  height: 394px;
  overflow: hidden;
  letter-spacing: normal;
  display: block;
  position: relative; }
  .case-item:after {
    background: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s; }
  .case-item:before {
    background: url("../img/bg-case-close.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    opacity: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s; }
    @media (max-width: 1366px) {
      .case-item:before {
        height: 461px; } }
  .case-item:hover:before {
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s; }
  .case-item:hover:after {
    opacity: 1;
    -webkit-transition: opacity .5s;
    transition: opacity .5s; }
  .case-item:hover .case-item__content-heading-link {
    color: #fff; }
  .case-item:hover .case-item__content-information {
    color: #fff; }
  .case-item__condition {
    padding: 0 0 91px;
    line-height: 1.2;
    z-index: 2;
    position: relative; }
  .case-item__content {
    padding: 0 0 0 39px;
    max-width: 1064px;
    z-index: 2;
    position: relative; }
    .case-item__content:before {
      content: "";
      position: absolute;
      background: #ec2e1f;
      height: 5px;
      width: 107px;
      top: -31px;
      left: 41px; }
    .case-item__content-heading {
      margin: 0 0 10px;
      position: relative;
      overflow: hidden;
      max-height: 66px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      -ms-word-break: break-all;
      word-break: break-word;
      white-space: pre-wrap; }
      .case-item__content-heading-link {
        font-size: 26px;
        color: #383838;
        line-height: 1.3;
        display: inline-block; }
    .case-item__content-information {
      font-size: 18px;
      line-height: 1.6;
      letter-spacing: .15px;
      color: #383838;
      overflow: hidden;
      max-height: 140px;
      display: -webkit-box;
      -webkit-line-clamp: 5;
      -webkit-box-orient: vertical;
      -ms-word-break: break-all;
      word-break: break-word;
      white-space: pre-wrap; }

/* CASE end */
/* CASE-PAGE  */
.cases-page__gallery .main-gallery__item-holder:after {
  background: rgba(22, 22, 22, 0.7); }

.cases-page__content {
  max-width: 1125px;
  margin: 0 auto;
  padding: 7px 151px 47px 0; }
  .cases-page__content-text {
    padding: 0 0 5px 45px; }
  .cases-page__content-work-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    max-width: 667px;
    margin: 0 auto -6px; }

.cases-page__post {
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 0 127px 30px; }

.cases-page__bottom-heading {
  font-size: 34px;
  font-weight: 700;
  padding: 0 0 33px; }

.cases-page__bottom .case-row {
  padding-bottom: 0; }

/* CASES-PAGE end */
/* CASES-LIST  */
.cases-list__top {
  background-image: url(../img/bg-cases.jpg); }

.cases-list__holder-block {
  padding: 0 0 58px; }
.cases-list__holder-block .case-list {
  margin: 0 -15px;
}
.cases-list__holder-block .case-list .case-row {
  padding: 0 15px;
}
/* CASES-LIST end */
/* INITIATIVE end */
.initiative {
  padding: 76px 0 0;
  max-width: 1514px;
  margin: 0 auto;
  background-color: #f5f5f5;
  background-image: url("../img/bg-initiative.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 75px 20px 110px; }
  .initiative-holder {
    background: url("../img/bg-initiative-holder.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;
    -webkit-box-shadow: 0 36px 26px -20px #fff inset;
            box-shadow: 0 36px 26px -20px #fff inset; }
  .initiative-project {
    position: relative;
    font-size: 0;
    letter-spacing: -5px;
    margin: 0 -15px; }
    .initiative-project--slider {
      max-width: 1241px;
      margin: 0 auto;
      background-color: #fff;
      padding: 30px 15px; }
      .initiative-project--slider .initiative-project__item {
        -webkit-box-shadow: none;
                box-shadow: none; }
      .initiative-project--slider .initiative-project__item-content {
        height: 164px;
        max-width: 443px;
        left: 14px;
        right: auto;
        text-align: left;
        padding: 20px 30px 40px 0; }
      .initiative-project--slider .initiative-project__item-content-heading-link {
        -webkit-line-clamp: 3;
        margin: 0; }
      .initiative-project--slider .initiative-project__item-content-button {
        left: 0;
        right: auto;
        bottom: 0;
        z-index: 9999999; }
      .initiative-project--slider .initiative-project__item-image {
        -webkit-box-shadow: none;
                box-shadow: none; }
      @media (max-width: 1366px) {
        .initiative-project--slider .slick-arrow {
          top: 29%; } }
    .initiative-project__item {
      position: relative;
      display: inline-block;
      width: 50%;
      display: inline-block; }
      .initiative-project__item:hover .initiative-project__item-content-heading-link {
        color: #ec2e1f; }
      .initiative-project__item-image {
        display: block;
        -webkit-box-shadow: 0 0 45px rgba(56, 56, 56, 0.1);
                box-shadow: 0 0 45px rgba(56, 56, 56, 0.1); }
        .initiative-project__item-image-img {
          max-width: 100%;
          display: block; }
      .initiative-project__item-holder {
        padding: 0 15px;
        margin: 0 auto;
        position: relative; }
      .initiative-project__item-content {
        position: absolute;
        max-width: 546px;
        width: 100%;
        padding: 36px 0 40px;
        background: #fff;
        height: 180px;
        bottom: -1px;
        left: 0;
        right: 0;
        margin: 0 auto;
        text-align: center; }
        .initiative-project__item-content-heading-link {
          color: #323232;
          font-weight: 900;
          max-width: 365px;
          font-size: 26px;
          display: inline-block;
          margin: 0 auto;
          overflow: hidden;
          max-height: 100px;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          white-space: pre-wrap; }
        .initiative-project__item-content-button {
          position: absolute;
          bottom: 20px;
          left: 0;
          right: 0;
          margin: 0 auto;
          height: 45px;
          width: 43px;
          z-index: 9999999; }
          .initiative-project__item-content-button-link {
            display: block; }
  .initiative-page__content {
    max-width: 807px;
    margin: 0 auto; }
  .initiative-page__block {
    text-align: left;
    padding: 0 0 39px; }
    .initiative-page__block--last {
      padding-bottom: 0; }
    .initiative-page__block--large {
      padding-bottom: 124px; }
    .initiative-page__block--small {
      padding-bottom: 26px; }
    .initiative-page__block-post .post {
      margin-right: -39px; }
  .initiative-page__programms-heading {
    font-size: 34px;
    font-weight: 700;
    padding-bottom: 49px; }

/* INITIATIVE END */
/* PROGRAMMS */
.programms {
  max-width: 840px; }
  .programms-list__item {
    border-bottom: 1px solid #f0f0f0;
    font-size: 0;
    letter-spacing: -5px;
    position: relative; }
    .programms-list__item:last-child {
      border-bottom: none; }
    .programms-list__item:after, .programms-list__item:before {
      content: "";
      width: 100%;
      height: 1px;
      background-color: #fff;
      display: block;
      position: absolute;
      left: 0;
      opacity: 0; }
    .programms-list__item:after {
      bottom: 0; }
    .programms-list__item:before {
      top: 0; }
    .programms-list__item:hover {
      background: #fafafa; }
      .programms-list__item:hover .programms-list__item-button {
        opacity: 1;
        -webkit-transition: opacity .7s;
        transition: opacity .7s; }
      .programms-list__item:hover:after, .programms-list__item:hover:before {
        opacity: 1; }
    .programms-list__item-link {
      display: block;
      padding: 20px 30px 19px 30px; }
    .programms-list__item-info {
      font-size: 20px;
      font-weight: 900;
      display: inline-block;
      letter-spacing: normal;
      width: 70%;
      vertical-align: middle;
      color: #383838; }
    .programms-list__item-button {
      letter-spacing: normal;
      width: 30%;
      display: inline-block;
      text-align: right;
      opacity: 0;
      -webkit-transition: opacity .7s;
      transition: opacity .7s;
      vertical-align: middle;
      padding: 0 0 5px; }
      .programms-list__item-button-link {
        display: inline-block;
        font-size: 18px; }
        .programms-list__item-button-link:hover {
          text-decoration: underline; }

/* PROGRAMMS END */
/* WORK  */
.work-list {
  max-width: 1000px;
  position: relative; }
  .work-list:after {
    content: "";
    background: #d6d6d6;
    height: 83.5%;
    width: 1px;
    top: 45px;
    left: 122px;
    position: absolute;
    z-index: 1; }

.work-item {
  font-size: 0;
  letter-spacing: -5px;
  padding-top: 29px; }
  .work-item:last-child .work-item__content {
    border-bottom: none; }
  .work-item:first-child .work-item__content-info {
    color: #383838; }
  .work-item__date {
    width: 152px;
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    padding: 3px 50px 0 0; }
    .work-item__date-amount {
      font-size: 18px;
      font-weight: 900; }
  .work-item__content {
    width: calc(100% - 152px);
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
    border-bottom: 1px solid #f0f0f0;
    position: relative;
    padding: 0 0 25px;
    vertical-align: top; }
    .work-item__content-info {
      font-size: 20px;
      color: #666666; }
    .work-item__content:before {
      position: absolute;
      top: 13px;
      left: -35px;
      content: "";
      background-color: #ec2e1f;
      height: 11px;
      width: 11px;
      border-radius: 50%;
      background: #ec2e1f;
      z-index: 2; }
    .work-item__content-gallery {
      max-width: 500px; }

/* WORK END */
/* IMAGES-GALLERY  */
.images-gallery {
  font-size: 0;
  letter-spacing: -5px; }
  .images-gallery__item {
    text-align: center;
    padding: 0 5px; }
    .images-gallery__item-link {
      display: inline-block;
      position: relative; }
      .images-gallery__item-link:hover .images-gallery__item-link-plus {
        opacity: 1;
        -webkit-transition: opacity .7s;
        transition: opacity .7s; }
      .images-gallery__item-link-image {
        max-width: 100%; }
      .images-gallery__item-link-plus {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(28, 28, 28, 0.7);
        text-align: center;
        opacity: 0;
        -webkit-transition: opacity .7s;
        transition: opacity .7s; }
        .images-gallery__item-link-plus:before {
          content: "";
          display: inline-block;
          height: 100%;
          vertical-align: middle; }
  .images-gallery .slick-arrow {
    display: inline-block;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    height: 41px;
    width: 41px;
    vertical-align: middle;
    cursor: pointer; }
    .images-gallery .slick-arrow:after {
      top: calc(50% - 4px); }
  .images-gallery .slick-prev {
    margin: 0 5px 0 0; }
    @media (max-width: 1366px) {
      .images-gallery .slick-prev {
        left: 10px; } }
  .images-gallery .slick-next {
    margin: 0 0 0 5px; }
    @media (max-width: 1366px) {
      .images-gallery .slick-next {
        right: 10px; } }
  .images-gallery .slick-list {
    max-width: 399px;
    display: inline-block;
    vertical-align: middle; }

/* IMAGES-GALLERY END */
/* TEXT  */
.text--modifier .text-item {
  padding: 0 0 96px 82px; }
  .text--modifier .text-item:before {
    top: 7px; }

.text--modifier .text-item__heading {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  padding: 0 0 40px; }

.text-item {
  padding: 0 0 59px 108px;
  position: relative; }
  .text-item:before {
    position: absolute;
    top: 5px;
    left: 0;
    content: "";
    height: 27px;
    width: 27px;
    border-radius: 50%;
    background: #ec2e1f; }
  .text-item--black:before {
    background: #383838; }
  .text-item__heading {
    font-size: 34px;
    font-weight: 700;
    padding: 0 0 19px;
    color: #383838; }

/* TEXT END */
/* COMMENT  */
.comment {
  padding-bottom: 120px; }
  .comment-header {
    font-size: 0;
    letter-spacing: -5px;
    padding: 0 0 11px;
    border-bottom: 1px solid #ec2e1f;
    margin: 0 0 22px 5px; }
    .comment-header__image {
      display: inline-block;
      vertical-align: middle;
      padding: 0 5px 0 0; }
    .comment-header__title {
      font-size: 28px;
      font-weight: 700;
      display: inline-block;
      vertical-align: middle;
      letter-spacing: normal;
      padding: 0 5px 0 0; }
    .comment-header__amount {
      display: inline-block;
      vertical-align: middle;
      font-size: 28px;
      letter-spacing: normal;
      font-weight: 300;
      display: inline-block; }
  .comment-item {
    border-bottom: 1px solid #f0f0f0;
    padding: 18px 0 35px 100px; }
    .comment-item:last-child {
      border-bottom: none; }
    .comment-item--personal {
      margin: 0 0 0px;
      padding-bottom: 39px; }
      .comment-item--personal .comment-item__content {
        padding-top: 0; }
    .comment-item__holder {
      max-width: 937px; }
    .comment-item__image {
      width: 120px;
      float: left; }
      .comment-item__image-link {
        display: inline-block;
        border-radius: 50%; }
        .comment-item__image-link-picture {
          max-width: 100%;
          max-height: 100%;
          height: 60px;
          width: 60px;
          border-radius: 50%;
          -webkit-transition: opacity .6s;
          transition: opacity .6s; }
          .comment-item__image-link-picture:hover {
            opacity: .7;
            -webkit-transition: opacity .6s;
            transition: opacity .6s; }
    .comment-item__content {
      width: calc(100% - 120px);
      float: left;
      padding: 17px 0 0 0; }
      .comment-item__content-textarea {
        padding: 0 0 30px; }
        .comment-item__content-textarea-inner {
          font-size: 18px;
          padding: 17px 17px;
          font-weight: 300;
          height: 130px;
          -webkit-box-shadow: none;
                  box-shadow: none; }
          .comment-item__content-textarea-inner::-webkit-input-placeholder {
            color: #9b9b9b; }
          .comment-item__content-textarea-inner:-moz-placeholder {
            color: #9b9b9b; }
          .comment-item__content-textarea-inner::-moz-placeholder {
            color: #9b9b9b; }
          .comment-item__content-textarea-inner:-ms-input-placeholder {
            color: #9b9b9b; }
          .comment-item__content-textarea-inner.placeholder {
            color: #9b9b9b; }
          .comment-item__content-textarea-inner:focus::-moz-placeholder {
            color: transparent; }
          .comment-item__content-textarea-inner:focus::-webkit-input-placeholder {
            color: transparent; }
          .comment-item__content-textarea-inner:focus:-ms-input-placeholder {
            color: transparent; }
          .comment-item__content-textarea-inner:focus::placeholder {
            color: transparent; }
      .comment-item__content-submit {
        text-align: right; }
        .comment-item__content-submit-button {
          min-width: 344px;
          padding: 20px 50px; }
      .comment-item__content-heading {
        font-size: 0;
        letter-spacing: -5px;
        padding: 0 0 4px; }
        .comment-item__content-heading-link {
          letter-spacing: normal;
          display: inline-block;
          font-size: 24px;
          vertical-align: middle;
          color: #383838;
          margin: 0 10px 0 0;
          font-weight: 700;
          line-height: 1.2; }
          .comment-item__content-heading-link:hover {
            color: #ec2e1f; }
        .comment-item__content-heading-arrow {
          display: inline-block;
          vertical-align: top;
          position: relative;
          top: -7px; }
          .comment-item__content-heading-arrow:hover .comment-item__content-heading-arrow-icon {
            stroke: #383838;
            fill: #383838; }
      .comment-item__content-text {
        font-size: 16px;
        line-height: 2.3;
        padding: 0 0 5px; }
      .comment-item__content-button {
        line-height: 1.2; }
        .comment-item__content-button-link {
          font-size: 16px;
          display: inline-block; }
          .comment-item__content-button-link:hover {
            text-decoration: underline; }
    .comment-item__sub {
      padding: 35px 0 0 120px;
      max-width: 1053px; }
  .comment-button {
    text-align: center;
    line-height: 1; }
    .comment-button__link {
      display: inline-block;
      font-size: 0;
      letter-spacing: -5px; }
      .comment-button__link-image {
        display: inline-block;
        vertical-align: middle;
        padding: 0 9px 0 0; }
      .comment-button__link-text {
        display: inline-block;
        vertical-align: middle;
        font-size: 15px;
        letter-spacing: normal;
        color: #383838;
        text-transform: uppercase;
        font-weight: 900; }
      .comment-button__link:hover .comment-button__link-text {
        color: #ec2e1f; }

/* COMMENT END */
/* SHARE  */
.share-list {
  font-size: 0;
  letter-spacing: -5px;
  text-align: center; }
  .share-list__item {
    display: inline-block;
    font-size: 18px;
    letter-spacing: normal;
    vertical-align: top;
    padding: 0 20px;
    min-width: 192px; }

.share-item {
  text-align: center; }
  .share-item--facebook .share-item__image-holder {
    background: #3b5998; }
    .share-item--facebook .share-item__image-holder:hover {
      -webkit-box-shadow: 0 0 30px rgba(59, 89, 152, 0.6);
              box-shadow: 0 0 30px rgba(59, 89, 152, 0.6); }
  .share-item--facebook .share-item__link {
    color: #3b5998; }
  .share-item--twitter .share-item__image-holder {
    background: #00aced; }
    .share-item--twitter .share-item__image-holder:hover {
      -webkit-box-shadow: 0 0 30px rgba(0, 172, 237, 0.6);
              box-shadow: 0 0 30px rgba(0, 172, 237, 0.6); }
  .share-item--twitter .share-item__link {
    color: #00aced; }
  .share-item--instagram .share-item__image-holder {
    background: #6a453b; }
    .share-item--instagram .share-item__image-holder:hover {
      -webkit-box-shadow: 0 0 30px rgba(106, 69, 59, 0.6);
              box-shadow: 0 0 30px rgba(106, 69, 59, 0.6); }
  .share-item--instagram .share-item__link {
    color: #517fa4; }
  .share-item--vk .share-item__image-holder {
    background: #45668e; }
    .share-item--vk .share-item__image-holder:hover {
      -webkit-box-shadow: 0 0 30px rgba(69, 102, 142, 0.6);
              box-shadow: 0 0 30px rgba(69, 102, 142, 0.6); }
  .share-item--vk .share-item__link {
    color: #45668e; }
  .share-item--youtube .share-item__image-holder {
    background: #bb0000; }
    .share-item--youtube .share-item__image-holder:hover {
      -webkit-box-shadow: 0 0 30px rgba(187, 0, 0, 0.6);
              box-shadow: 0 0 30px rgba(187, 0, 0, 0.6); }
  .share-item--youtube .share-item__link {
    color: #bb0000; }
  .share-item__image-holder {
    display: inline-block;
    height: 65px;
    width: 65px;
    border-radius: 50%;
    background: #3b5998;
    line-height: 0;
    letter-spacing: -5px; }
    .share-item__image-holder:before {
      content: "";
      height: 100%;
      display: inline-block;
      vertical-align: middle; }
    .share-item__image-holder:hover {
      -webkit-box-shadow: 0 0 40px rgba(59, 89, 152, 0.6);
              box-shadow: 0 0 40px rgba(59, 89, 152, 0.6);
      height: 75px;
      width: 75px;
      margin: -5px 0; }
    .share-item__image-holder-icon {
      fill: #fff;
      width: 31px;
      height: 31px; }
  .share-item__link {
    color: #3b5998;
    font-weight: 900;
    font-size: 14px;
    display: inline-block;
    margin: 18px 0 0; }
    .share-item__link:hover {
      text-decoration: underline; }

/* SHARE END */
/* SOCIAL  */
.social--large .social-item__link-icon {
  height: 44px;
  width: 44px; }

.social-list {
  font-size: 0;
  letter-spacing: -5px;
  margin: 0 -8px; }
  .social-list__item {
    display: inline-block;
    vertical-align: top;
    padding: 0 8px; }

.social-item--facebook .social-item__link:hover {
  -webkit-box-shadow: 0 0 20px rgba(59, 89, 152, 0.7);
          box-shadow: 0 0 20px rgba(59, 89, 152, 0.7); }

.social-item--facebook .social-item__link-icon {
  fill: #3b5998; }

.social-item--twitter .social-item__link:hover {
  -webkit-box-shadow: 0 0 20px rgba(0, 172, 237, 0.7);
          box-shadow: 0 0 20px rgba(0, 172, 237, 0.7); }

.social-item--twitter .social-item__link-icon {
  fill: #00aced; }

.social-item--vk .social-item__link:hover {
  -webkit-box-shadow: 0 0 20px rgba(69, 102, 142, 0.7);
          box-shadow: 0 0 20px rgba(69, 102, 142, 0.7); }

.social-item--vk .social-item__link-icon {
  fill: #45668e; }

.social-item__link {
  display: block;
  border-radius: 50%; }
  .social-item__link-icon {
    height: 36px;
    width: 36px;
    border-radius: 50%; }

/* SOCIAL END */
/* FOOTER-NAV  */
.footer-nav__item {
  padding: 0 0 20px; }
  .footer-nav__item--heading .footer-nav__item-link {
    font-weight: 700;
    font-size: 18px; }
  .footer-nav__item-link {
    display: inline-block;
    color: #323232;
    font-size: 16px; }
    .footer-nav__item-link:hover {
      color: #ec2e1f; }
    .footer-nav__item-link--inactive:hover {
      color: #383838; }

/* FOOTER-NAV END */
/* PROGRAMM-PAGE  */
.programm-page__top {
  background-image: url("../img/bg-programm.jpg"); }

.programm-page__block {
  max-width: 1077px;
  margin: 0 auto;
  padding: 0 20px; }
  .programm-page__block .text .text-item:last-child {
    padding-bottom: 0; }

/* PROGRAMM-PAGE END */
/* MAIN-GALLERY  */
.main-gallery {
  position: relative; }
  .main-gallery__item {
    text-align: center; }
    .main-gallery__item-holder {
      position: relative; }
      .main-gallery__item-holder:after {
        content: "";
        display: inline-block;
        position: absolute;
        height: 100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.59);
        top: 0;
        left: 0; }
      .main-gallery__item-holder-image {
        max-width: 100%;
        display: block;
        width: 100%;
        margin: 0 auto; }
      .main-gallery__item-holder-block {
        position: absolute;
        top: 99px;
        left: 0;
        right: 0;
        margin: 0 auto;
        max-width: 1240px;
        z-index: 2;
        width: 100%;
        padding: 0 50px; }
        @media (max-width: 1366px) {
          .main-gallery__item-holder-block {
            top: 80px; } }
        .main-gallery__item-holder-block-heading {
          margin: 0 auto;
          padding: 0 0 2px; }
          .main-gallery__item-holder-block-heading--large {
            padding-bottom: 24px; }
          @media (max-width: 1800px) {
            .main-gallery__item-holder-block-heading {
              font-size: 38px; } }
          @media (max-width: 1500px) {
            .main-gallery__item-holder-block-heading {
              font-size: 38px; } }
          @media (max-width: 1366px) {
            .main-gallery__item-holder-block-heading {
              font-size: 34px;
              padding-bottom: 0; } }
        .main-gallery__item-holder-block-info {
          color: #fff;
          padding: 0 0 27px;
          color: #bebebe; }
          @media (max-width: 1800px) {
            .main-gallery__item-holder-block-info {
              font-size: 17px;
              padding: 0 0 10px; } }
          @media (max-width: 1366px) {
            .main-gallery__item-holder-block-info {
              font-size: 16px;
              line-height: 1.4;
              padding: 0 0 15px; } }
  .main-gallery .slick-arrow {
    background: url("../img/slider-arrow.png");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    width: 45px;
    height: 156px;
    border-radius: 0;
    top: 25%;
    top: calc(50% - 78px); }
    .main-gallery .slick-arrow:after {
      border: 8px solid transparent;
      border-left: 12px solid #383838;
      right: 0; }
    .main-gallery .slick-arrow:hover:after {
      border: 8px solid transparent;
      border-left: 12px solid #ec2e1f; }
  .main-gallery .slick-next {
    right: -1px; }
  .main-gallery .slick-prev {
    left: -1px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
    .main-gallery .slick-prev:after {
      left: 27px; }

/* MAIN-GALLERY END */
/* POST  */
.post {
  -webkit-box-shadow: 0 0 55px rgba(56, 56, 56, 0.08);
          box-shadow: 0 0 55px rgba(56, 56, 56, 0.08);
  background: #fff;
  padding: 38px 39px; }
  .post__heading {
    float: left;
    width: 181px;
    line-height: 1;
    font-size: 24px;
    font-weight: 700; }
  .post__social {
    float: left;
    width: calc(100% - 185px); }

/* POST END */
/* WORTH  */
.worth-page__top {
  background-image: url("../img/bg-worth.jpg"); }

.worth-page__holder {
  margin: 0 auto;
  max-width: 1070px;
  padding: 0 20px; }
  .worth-page__holder-block {
    padding: 0 0 50px; }
    .worth-page__holder-block--last {
      margin-bottom: -100px; }
    .worth-page__holder-block-heading {
      padding: 0 0 37px;
      font-size: 34px;
      font-weight: 700;
      text-align: center; }

.worth-list__item {
  padding: 0 0 16px; }
  .worth-list__item--last {
    padding-bottom: 0; }

.worth-item__image-picture {
  max-width: 100%;
  display: block; }

.worth-item__content {
  padding: 0 50px;
  position: relative;
  top: -50px; }
  .worth-item__content-holder {
    background: #fff;
    padding: 45px 55px 0 55px; }
  .worth-item__content-heading {
    float: left;
    width: 289px;
    color: #ec2e1f;
    font-weight: 700;
    font-size: 28px; }
  .worth-item__content-information {
    float: left;
    width: calc(100% - 289px); }

/* WORTH END */
/* CONTACT-PAGE  */
.contacts-page {
  overflow: hidden;
  padding-bottom: 68px;
}
  .contacts-page__holder {
    max-width: 1190px;
    margin: 0 auto;
    padding: 73px 20px 0;
    position: relative;
    z-index: 2; }
    .contacts-page__holder:before {
      background-image: url("../img/bg-contacts.png");
      background-repeat: no-repeat;
      background-position: left 90px bottom;
      background-size: contain;
      padding-top: 72px;
      content: "";
      position: absolute;
      top: 18px;
      left: -456px;
      width: 790px;
      height: 1128px;
      z-index: -1; }
      @media (max-width: 1366px) {
        .contacts-page__holder:before {
          left: -500px;
          top: auto;
          bottom: -130px; } }
    .contacts-page__holder-top {
      padding: 0 0 53px;
      text-align: center; }
    .contacts-page__holder-breadcrumbs {
      padding: 0 0 4px; }
    .contacts-page__holder-heading {
      color: #383838; }
    .contacts-page__holder-share {
      text-align: center;
      padding: 0 0 62px; }
      .contacts-page__holder-share-title {
        font-size: 22px;
        font-weight: 700;
        padding: 0 0 33px;
        max-width: 500px;
        margin: 0 auto;
        line-height: 1.5; }
    .contacts-page__holder-form-heading {
      font-size: 24px;
      font-weight: 900;
      padding: 0 0 50px;
      text-align: center; }

/* CONTACT-PAGE END */
/* FORM-CONNECT  */
.form-connect {
  padding: 58px 59px 61px 59px;
  background: #fff;
  -webkit-box-shadow: 0 0 55px rgba(0, 0, 0, 0.08);
          box-shadow: 0 0 55px rgba(0, 0, 0, 0.08); }
  .form-connect__row {
    padding: 0 0 30px; }
    .form-connect__row--top {
      font-size: 0;
      letter-spacing: -5px;
      margin: 0 -14px;
      padding: 0 0 14px; }
  .form-connect__cell {
    width: 33.33%;
    display: inline-block;
    letter-spacing: normal;
    padding: 0 14px; }
  .form-connect__submit {
    text-align: right; }

/* FORM-CONNECT END */
/* SLIDESHOW  */
.slideshow__main-item {
  position: relative;
  -webkit-box-shadow: 0 20px 20px rgba(0, 0, 0, 0.4);
          box-shadow: 0 20px 20px rgba(0, 0, 0, 0.4); }
  .slideshow__main-item-image {
    position: relative; }
    .slideshow__main-item-image:after {
      content: "";
      height: 30%;
      width: 100%;
      position: absolute;
      bottom: 0;
      left: 0;
      background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), to(transparent));
      background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.6), transparent);
      background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent); }
    .slideshow__main-item-image-img {
      display: block;
      max-width: 100%; }
  .slideshow__main-item-content {
    position: absolute;
    width: 100%;
    content: "";
    left: 0;
    bottom: 0;
    padding: 0 26px 22px;
    color: #fff;
    font-size: 23px; }
    .slideshow__main-item-content-text {
      opacity: 0;
      -webkit-transition: opacity .7s;
      transition: opacity .7s;
      -webkit-transition-delay: 1s;
              transition-delay: 1s; }
  .slideshow__main-item.slick-active .slideshow__main-item-content-text {
    opacity: 1;
    -webkit-transition: opacity .7s;
    transition: opacity .7s;
    -webkit-transition-delay: .7s;
            transition-delay: .7s; }

.slideshow__main .slick-arrow {
  bottom: -72px;
  top: auto; }

.slideshow__main .slick-prev-small {
  left: 0; }

.slideshow__main .slick-next-small {
  left: 111px; }

.slideshow__pageinfo {
  padding: 30px 0 0 64px;
  font-size: 0;
  letter-spacing: -5px; }
  .slideshow__pageinfo-amount {
    color: #383838;
    display: inline-block;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: normal; }
  .slideshow__pageinfo-red {
    color: #ec2e1f; }

/* SLIDESHOW END */
/* BIOGRAPHY-PAGE  */
.biography-page__top {
  background-image: url("../img/bg-biography.jpg"); }

/* BIOGRAPHY-PAGE END */
/* BIOGRAPHY  */
.biography-list {
  padding-bottom: 90px; }

.biography-item {
  margin-bottom: -80px; }
  .biography-item__row {
    position: relative;
    overflow: hidden; }
    .biography-item__row:before {
      content: "";
      height: 100%;
      width: 5px;
      background: #f0f0f0;
      position: absolute;
      top: 0;
      right: 0;
      left: 0;
      margin: 0 auto;
      z-index: 1; }

  .biography-item__row-cell  .biography-item__row-cell-description-text {
    line-height: 1.5;
    max-width: 320px;
    display: block;
    margin-right: 87px;
    float: right;
  }
.biography-item__row-cell--right .biography-item__row-cell-description-text {
  float: none;
  margin-right: 0px;
}
    .biography-item__row-cell {
      float: left;
      width: calc(50% - 120px);
      max-width: 100%;
      position: relative; }
      .biography-item__row-cell--right {
        float: right; }
        .biography-item__row-cell--right .biography-item__row-cell-image {
          float: left; }
      .biography-item__row-cell-image {
        position: relative;
        float: right;
        vertical-align: hidden;
        /* max-width: 789px; */ }
        .biography-item__row-cell-image-img {
          min-width: 100%;
          display: block; }
      .biography-item__row-cell-content {
        position: absolute;
        bottom: -2px;
        left: -2px;
        width: 373px;
        max-width: 100%;
        background: #fff;
        padding: 17px 13px 23px 19px;
        min-height: 108px;
        max-height: 153px;
        overflow: hidden; }
        .biography-item__row-cell-content-text {
          line-height: 1.2;
          display: block;
          font-size: 24px;
          font-weight: 700;
          max-width: 313px; }
      .biography-item__row-cell-description {
        padding: 14px 0 47px 19px;
        width: 100%;
        float: left; }
        .biography-item__row-cell-description-text {
          line-height: 1.5;
          max-width: 320px;
          display: block; }
    .biography-item__row-date {
      padding: 113px 30px 0;
      float: left;
      position: relative;
      width: 240px;
      z-index: 99; }
      .biography-item__row-date--left {
        float: right;
        padding-top: 160px; }
        .biography-item__row-date--left .biography-item__row-date-holder-circle {
          left: auto;
          right: -12px; }
      .biography-item__row-date-holder {
        border: 11px solid #f0f0f0;
        border-radius: 50%;
        height: 170px;
        width: 170px;
        text-align: center;
        position: relative;
        background: #fff;
        margin: 0 auto;
        letter-spacing: -5px;
        line-height: 0; }
        .biography-item__row-date-holder:after {
          height: 100%;
          display: inline-block;
          vertical-align: middle;
          content: ""; }
        .biography-item__row-date-holder:before {
          height: 117px;
          width: 123px;
          border: 2px solid #ec2e1f;
          content: "";
          position: absolute;
          border-radius: 50%;
          left: 0;
          right: 0;
          margin: 0 auto;
          display: inline-block;
          vertical-align: middle;
          top: 15px; }
        .biography-item__row-date-holder-circle {
          height: calc(100% + 22px);
          width: calc(50% + 9px);
          left: -11px;
          top: -11px;
          position: absolute;
          content: "";
          background: #fff;
          z-index: 1; }
        .biography-item__row-date-holder-text {
          display: inline-block;
          vertical-align: middle;
          line-height: 1.3;
          z-index: 2;
          position: relative;
          font-size: 20px;
          font-weight: 900;
          max-width: 100px;
          text-align: left;
          letter-spacing: normal;
          line-height: normal;
          text-align: center; }
          .biography-item__row-date-holder-text--left {
            text-align: left;
            padding: 0 0 0 27px;
            font-size: 18px; }
          .biography-item__row-date-holder-text-month {
            font-size: 11px;
            line-height: 1;
            display: block;
            position: relative;
            padding: 1px 0 0;
            text-transform: uppercase; }

/* BIOGRAPHY END */
/* SUB-MENU  */
.sub-menu--social .sub-menu-item .sub-menu-item__link {
  padding: 7px 16px 5px; }

.sub-menu--social .sub-menu-item:hover .sub-menu-item__link-text {
   }

.sub-menu-item {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  opacity: 0; }
  .sub-menu-item__link {
    font-size: 0;
    letter-spacing: -5px;
    padding: 13px 26px 11px;
    position: relative;
    display: block;
    height: 49px;
    line-height: 0;
    letter-spacing: -5px; }
    .sub-menu-item__link:before {
      position: absolute;
      height: 100%;
      width: 3px;

      top: 0;
      left: 0;
      content: "";
      opacity: 0;
      -webkit-transition: opacity .7s;
      transition: opacity .7s; }
    .sub-menu-item__link:after {
      content: "";
      display: inline-block;
      height: 100%;
      vertical-align: middle; }
    .sub-menu-item__link:hover {
      background: #f0f0f0; }
      .sub-menu-item__link:hover .sub-menu-item__link-text {
        color: #ec2e1f; }
      .sub-menu-item__link:hover:before {
        opacity: 1;
        -webkit-transition: opacity .7s;
        transition: opacity .7s; }
    .sub-menu-item__link-text {
      margin-top: -4px;
      font-size: 16px;
      letter-spacing: normal;
      color: #3c3c3c;
      display: inline-block;
      vertical-align: middle;
      line-height: 1.2;
      letter-spacing: normal; }
    .sub-menu-item__link-image {
      display: inline-block;
      padding: 4px 12px 0 0; }
      .sub-menu-item__link-image-icon {
        height: 27px;
        width: 27px;
        fill: #3b5998; }
        .sub-menu-item__link-image-icon--facebook {
          fill: #3b5998; }
        .sub-menu-item__link-image-icon--twitter {
          fill: #00aced; }
        .sub-menu-item__link-image-icon--youtube {
          fill: #bb0000; }
        .sub-menu-item__link-image-icon--vk {
          fill: #45668e; }
        .sub-menu-item__link-image-icon--instargam {
          fill: #6a453b; }

/* SUB-MENU END */
/* MAIN-PAGE  */
.main-page__intro {
  padding: 141px 0 0;
  height: 974px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  margin: 0 0 259px;
  position: relative; }
  .main-page__intro-image {
    display: none;
    padding: 0 0 30px; }
    .main-page__intro-image-img {
      max-width: 100%;
      display: block;
      max-height: 270px;
      margin: 0 auto; }
  .main-page__intro-holder {
    padding: 0 0 208px; }
  .main-page__intro-block {
    max-width: 660px;
    float: right; }
    .main-page__intro-block-heading {
      font-size: 80px;
      line-height: 1;
      color: #ec2e1f;
      font-weight: 900;
      padding: 0 0 18px; }
    .main-page__intro-block-info {
      font-size: 40px;
      line-height: 1.4;
      color: #151515;
      margin: 0 0 23px;
      font-weight: 900;
      letter-spacing: 1.1px;
      overflow: hidden;
      max-height: 112px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      word-break: break-word;
      white-space: pre-wrap; }
    .main-page__intro-block-button-link {
      padding: 15px 44px;
      position: relative; }
      .main-page__intro-block-button-link .btn__text {
        padding: 3px 0 0;
        display: inline-block;
        vertical-align: middle; }
  .main-page__intro-bottom {
    background: #fff;
    padding: 29px 70px 30px 29px;
    font-size: 0;
    letter-spacing: -5px;
    margin-bottom: -130px;
    -webkit-box-shadow: 0 0 46px rgba(56, 56, 56, 0.07);
            box-shadow: 0 0 46px rgba(56, 56, 56, 0.07); }
    .main-page__intro-bottom-left {
      display: inline-block;
      vertical-align: middle;
      letter-spacing: normal;
      width: 35.2%;
      height: 408px;
      background-color: #f5f5f5;
      background-image: url("../img/bg-main-block.png");
      background-position: bottom;
      background-size: contain;
      background-repeat: no-repeat;
      line-height: 0;
      letter-spacing: -5px;
      text-align: center; }
      .main-page__intro-bottom-left:before {
        content: "";
        height: 100%;
        vertical-align: middle;
        display: inline-block; }
      .main-page__intro-bottom-left-logo {
        display: inline-block;
        vertical-align: middle; }
        .main-page__intro-bottom-left-logo .logo__link-right {
          font-size: 88px;
          padding: 26px 28px 17px 28px;
          margin: 0 0 4px; }
        .main-page__intro-bottom-left-logo .logo__link-left {
          display: block;
          font-size: 28px;
          padding-top: 1px; }
    .main-page__intro-bottom-right {
      display: inline-block;
      vertical-align: top;
      letter-spacing: normal;
      width: 64.8%;
      padding: 52px 0 0 66px;
      font-size: 20px;
      position: relative; }
      .main-page__intro-bottom-right:before {
        content: "";
        top: 28px;
        left: 67px;
        background: #ec2e1f;
        height: 1px;
        width: 118px;
        position: absolute; }
      .main-page__intro-bottom-right-info {
        margin: 0 0 34px;
        font-size: 22px;
        position: relative;
        line-height: 1.47;
        overflow: hidden;
        max-height: 162px;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        white-space: pre-wrap; }
      .main-page__intro-bottom-right-note {
        padding: 0 0 32px;
        font-size: 18px;
        line-height: 1.8;
        height: 94px;
        overflow: hidden; }

.main-page__holder {
  padding: 0 0 133px; }
  .main-page__holder:last-child {
    padding-bottom: 0; }
  .main-page__holder-heading {
    padding: 0 0 35px;
    position: relative; }
    .main-page__holder-heading:after {
      content: "";
      position: absolute;
      top: 13px;
      left: 0;
      width: 100%;
      height: 1px;
      background: #ec2e1f;
      z-index: 1; }
    .main-page__holder-heading-text {
      background: #fff;
      padding: 0 28px 0 0;
      display: inline-block;
      z-index: 2;
      position: relative;
      color: #ec2e1f;
      font-size: 22px;
      font-weight: 900;
      text-transform: uppercase; }
    .main-page__holder-heading--large {
      padding-bottom: 74px; }
  .main-page__holder-events-articles-list {
    padding-bottom: 10px; }
  .main-page__holder-events-button {
    text-align: center; }
  .main-page__holder-video {
    font-size: 0;
    letter-spacing: -5px;
    padding: 77px 77px 74px 77px; }
    .main-page__holder-video:hover {
      -webkit-box-shadow: 0 0 55px rgba(0, 0, 0, 0.08);
              box-shadow: 0 0 55px rgba(0, 0, 0, 0.08); }
    .main-page__holder-video-left {
      display: inline-block;
      vertical-align: top;
      width: 65%;
      letter-spacing: normal; }
    .main-page__holder-video-right {
      display: inline-block;
      vertical-align: top;
      width: 35%;
      font-size: 20px;
      letter-spacing: normal;
      padding: 17px 0 0 31px; }
      .main-page__holder-video-right-heading {
        font-size: 26px;
        font-weight: 900;
        color: #323232;
        line-height: 1.2;
        padding: 0 0 22px; }
      .main-page__holder-video-right-info {
        padding: 0 0 30px;
        color: #323232;
        font-size: 18px;
        line-height: 1.6; }
      .main-page__holder-video-right-button-link {
        width: 346px;
        max-width: 100%;
        padding: 20px 50px 19px;
        position: relative;
        display: inline-block; }
  .main-page__holder-bottom {
    background: url("../img/bg-clouds.png");
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    background-position-y: -250px; }
    .main-page__holder-bottom-space {
      padding: 0 0 113px; }

.main-page__gallery-item {
  position: relative; }
  .main-page__gallery-item-holder {
    position: relative; }
    .main-page__gallery-item-holder:after {
      background: rgba(80, 80, 80, 0.74);
      height: 100%;
      width: 100%;
      content: "";
      position: absolute;
      z-index: 2;
      top: 0;
      left: 0; }
    .main-page__gallery-item-holder-image {
      max-width: 100%;
      display: block; }
    .main-page__gallery-item-holder-marker {
      position: absolute;
      top: 10%;
      left: 0;
      z-index: 3; }
  .main-page__gallery-item-content {
    position: absolute;
    max-width: 1130px;
    padding: 0 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 18.2%;
    z-index: 3;
    width: 100%; }
    .main-page__gallery-item-content-holder {
      max-width: 954px; }
    .main-page__gallery-item-content-number {
      font-size: 98px;
      line-height: 1;
      padding: 0 0 30px; }
      .main-page__gallery-item-content-number-text {
        display: inline-block;
        color: #b5b5b5;
        position: relative; }
        .main-page__gallery-item-content-number-text:after {
          content: "";
          position: absolute;
          bottom: -7px;
          left: 0;
          background: #ec2e1f;
          width: 100%;
          height: 5px; }
    .main-page__gallery-item-content-title {
      font-size: 56px;
      font-weight: 900;
      line-height: 1.2;
      padding: 0 0 3px; }
      .main-page__gallery-item-content-title-link {
        color: #fff;
        display: inline-block;
        line-height: 1.1; }
        .main-page__gallery-item-content-title-link:hover {
          color: #ec2e1f; }
    .main-page__gallery-item-content-info {
      color: #fff;
      font-size: 18px;
      line-height: 1.65; }

.main-page__gallery .slick-dots {
  bottom: 9.8%;
  max-width: 1130px;
  text-align: left;
  margin: 0 auto;
  padding: 0 9px;
  width: 100%; }

.main-page__social-holder {
  padding: 0 0 119px;
  background-position: center bottom;
  background-repeat: no-repeat;
  position: relative;
  margin: 0 0 37px; }
  .main-page__social-holder:after {
    content: "";
    height: 23px;
    position: absolute;
    bottom: -23px;
    margin: 0 auto;
    width: 485px;
    -webkit-box-shadow: 0 -14px 23px -7px rgba(0, 0, 0, 0.5);
            box-shadow: 0 -14px 23px -7px rgba(0, 0, 0, 0.5);
    left: 0;
    right: 0;
    border-radius: 50%;
    z-index: 1; }
  .main-page__social-holder:before {
    content: "";
    background: #fff;
    height: 23px;
    width: 485px;
    bottom: -23px;
    left: 0;
    right: 0;
    margin: 0 auto;
    position: absolute;
    z-index: 2; }
.main-page__social-holder .image_default_after {
  background-position: center bottom;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 1;
  z-index: -1;
  -webkit-transition: opacity .7s;
  transition: opacity .7s;
}
.main-page__social-holder .image_default_after.active {
  opacity: 0;
}
.main-page__social-row {
  padding: 0 0 18px; }
  .main-page__social-row--second {
    max-width: 568px;
    margin: 0 auto;
    padding: 0 10px 70px; }
  .main-page__social-row--third {
    max-width: 695px;
    margin: 0 auto;
    padding: 0 10px; }
  .main-page__social-row-cell {
    height: 100%; }
    .main-page__social-row-cell .share-item__image-holder {
      height: 102px;
      width: 102px;
      z-index: 2; }
      .main-page__social-row-cell .share-item__image-holder:hover {
        height: 128px;
        width: 128px;
        margin: -13px; }
    .main-page__social-row-cell .share-item__image-holder-icon {
      height: 47px;
      width: 47px; }
    .main-page__social-row-cell .share-item__image-holder:after {
      background-position: center bottom;
      background-repeat: no-repeat;
      height: 100%;
      width: 100%;
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 0 auto;
      opacity: 0;
      z-index: -1;
      -webkit-transition: opacity .7s;
      transition: opacity .7s; }
    .main-page__social-row-cell .share-item__image-holder:hover:after {
      opacity: 1;
      -webkit-transition: opacity .7s;
      transition: opacity .7s; }

.main-page__social-row-cell .share-item--facebook .share-item__image-holder:hover:after {
  opacity: 1;
  -webkit-transition: opacity .7s;
  transition: opacity .7s;
}
  .main-page__social-row-left {
    float: left; }
  .main-page__social-row-right {
    float: right; }

.main-page__social-heading {
  font-size: 22px;
  color: #f73c2b;
  text-align: center;
  font-family: "Stem";
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4.5px;
  padding: 0 20px; }

/* MAIN-PAGE END */
/* SPACE  */
.space__heading {
  font-size: 74px;
  color: #e2e2e2;
  font-weight: 500;
  padding: 0 0 49px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 56px;
  line-height: 1;
  margin-left: 62px; }
  @media (max-width: 1366px) {
    .space__heading {
      letter-spacing: 30px;
      margin-left: 30px; } }

.space__holder {
  padding: 43px 0;
  position: relative; }
  .space__holder:before {
    content: "";
    height: 1px;
    width: calc(50% - 410px);
    left: 0;
    top: 50%;
    position: absolute;
    z-index: 5;
    background: #ec2e1f; }
  .space__holder:after {
    content: "";
    height: 1px;
    width: calc(50% - 410px);
    right: 0;
    top: 50%;
    position: absolute;
    z-index: 5;
    background: #ec2e1f; }

.space__inner {
  height: 611px;
  width: 611px;
  margin: 0 auto;
  position: relative; }
  .space__inner.one .space__outside--second {
    bottom: -10px;
    right: 72px; }
  .space__inner.one .space__outside--fourth {
    top: 98px;
    left: -23px; }
  .space__inner.two .space__outside--first {
    top: -10px;
    right: 82px; }
  .space__inner.two .space__outside--third {
    bottom: 98px;
    left: -18px; }
  .space__inner.three .space__outside--second {
    bottom: 81px;
    right: -23px; }
  .space__inner.three .space__outside--fourth {
    top: -23px;
    left: 125px; }
  .space__inner.four .space__outside--first {
    top: 124px;
    right: -54px; }
  .space__inner.four .space__outside--third {
    bottom: -47px;
    left: 157px; }

.space__main-inner {
  border-radius: 50%;
  height: 611px;
  width: 611px;
  margin: 0 auto;
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  position: relative;
  -webkit-transition: opacity 1s;
  transition: opacity 1s; }
  .space__main-inner.active {
    border: 1px solid #ec2e1f;
    opacity: 1;
    visibility: visible;
    height: 611px;
    width: 611px;
    -webkit-transition: opacity 1s;
    transition: opacity 1s; }
    .space__main-inner.active .space__main-inner-center:after {
      opacity: 1;
      -webkit-transition: opacity 1s;
      transition: opacity 1s; }
  .space__main-inner--first .space__main-inner-center:after {
    background-image: url("../pic/space/photo-01.png"); }
  .space__main-inner--second .space__main-inner-center:after {
    background-image: url("../pic/space/photo-07.png"); }
  .space__main-inner--third .space__main-inner-center:after {
    background-image: url("../pic/space/photo-06.png"); }
  .space__main-inner--fourth .space__main-inner-center:after {
    background-image: url("../pic/space/photo-08.png"); }
  .space__main-inner:before {
    height: calc(100% + 95px);
    width: calc(100% + 95px);
    content: "";
    position: absolute;
    top: -47px;
    left: -47px;
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(236, 46, 31, 0.13);
    border-radius: 50%;
    z-index: 1; }
  .space__main-inner:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.32);
    z-index: 2;
    border-radius: 50%; }
  .space__main-inner-center {
    height: 611px;
    letter-spacing: -5px;
    line-height: 0; }
    .space__main-inner-center:before {
      display: inline-block;
      height: 100%;
      vertical-align: middle;
      content: ""; }
    .space__main-inner-center:after {
      height: 100%;
      width: 100%;
      border-radius: 50%;
      position: absolute;
      z-index: 0;
      top: 0;
      left: 0;
      content: "";
      opacity: 0;
      -webkit-transition: opacity 1s;
      transition: opacity 1s;
      background-position: center;
      background-size: contain; }
  .space__main-inner-info {
    display: inline-block;
    vertical-align: middle;
    letter-spacing: -5px;
    line-height: 0;
    z-index: 3;
    border: 40px solid #fafafa;
    height: 529px;
    width: 529px;
    border-radius: 50%;
    position: relative;
    margin: 0 auto;
    background: #fff; }
    .space__main-inner-info:after {
      content: "";
      height: calc(100% + 82px);
      width: calc(100% + 82px);
      left: -41px;
      top: -41px;
      border-radius: 50%;
      position: absolute;
      border: 1px solid #ec2e1f; }
    .space__main-inner-info:before {
      height: 100%;
      vertical-align: middle;
      display: inline-block;
      content: ""; }
    .space__main-inner-info-holder {
      display: inline-block;
      vertical-align: middle;
      letter-spacing: normal;
      line-height: 1.3;
      max-width: 351px; }
    .space__main-inner-info-heading {
      font-size: 26px;
      font-weight: 900;
      letter-spacing: 13px;
      color: #ec2e1f;
      text-transform: uppercase;
      padding: 0 0 42px;
      position: relative; }
      .space__main-inner-info-heading:after {
        content: "";
        position: absolute;
        bottom: 16px;
        left: 0;
        right: 0;
        height: 1px;
        width: 92px;
        background: #f96d64;
        margin: 0 auto; }
    .space__main-inner-info-goal {
      font-size: 16px;
      font-weight: 900;
      padding: 0 0 4px;
      color: #323232; }
    .space__main-inner-info-goaltext {
      color: #323232;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 6.5px;
      padding: 0 0 50px;
      position: relative; }
      .space__main-inner-info-goaltext:after {
        position: absolute;
        bottom: 10px;
        left: 0;
        right: 0;
        margin: 0 auto;
        content: "“";
        font-size: 60px;
        height: 26px;
        line-height: 1;
        font-weight: 500;
        color: #ec2e1f; }
    .space__main-inner-info-text {
      font-size: 18px;
      font-weight: 900;
      color: #323232;
      line-height: 1.5; }

.space__outside {
  height: 128px;
  width: 128px;
  border: 8px solid #fff;
  border-radius: 50%;
  position: relative;
  background-size: 100%;
  background-repeat: no-repeat;
  position: absolute;
  -webkit-transition: -webkit-box-shadow .7s;
  transition: -webkit-box-shadow .7s;
  transition: box-shadow .7s;
  transition: box-shadow .7s, -webkit-box-shadow .7s;
  cursor: pointer;
  z-index: 99999;
  -webkit-box-shadow: 0 0 55px rgba(0, 0, 0, 0.07);
          box-shadow: 0 0 55px rgba(0, 0, 0, 0.07);
  -webkit-transition: all .7s ease 0.2s;
  transition: all .7s ease 0.2s; }
  .space__outside.active {
    -webkit-transform: scale(1.4);
        -ms-transform: scale(1.4);
            transform: scale(1.4);
    -webkit-transition: all .7s ease 0.5s;
    transition: all .7s ease 0.5s;
    cursor: default; }
    .space__outside.active:hover {
      -webkit-transform: scale(1.4);
          -ms-transform: scale(1.4);
              transform: scale(1.4); }
    .space__outside.active .space__outside-inner-plus {
      display: none; }
  .space__outside:after {
    content: "";
    height: 100%;
    width: 100%;
    border: 1px solid #f73725;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: -1; }
  .space__outside:hover {
    -webkit-box-shadow: 0 0 55px rgba(247, 55, 37, 0.44);
            box-shadow: 0 0 55px rgba(247, 55, 37, 0.44);
    -webkit-transition: all .7s;
    transition: all .7s;
    -webkit-transform: scale(1.3);
        -ms-transform: scale(1.3);
            transform: scale(1.3); }
    .space__outside:hover .space__outside-inner {
      background-color: transparent;
      -webkit-transition: background-color .7s;
      transition: background-color .7s; }
    .space__outside:hover .space__outside-inner-plus {
      opacity: 0;
      -webkit-transition: opacity .9s easy-out;
      transition: opacity .9s easy-out;
      -webkit-transition-delay: 0s;
              transition-delay: 0s; }
  .space__outside-link {
    display: block; }
  .space__outside-inner {
    height: 100%;
    width: 100%;
    text-align: center;
    line-height: 0;
    letter-spacing: -5px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    -webkit-transition: background-color .7s;
    transition: background-color .7s;
    z-index: 0; }
    .space__outside-inner:after {
      height: 100%;
      display: inline-block;
      content: "";
      vertical-align: middle; }
    .space__outside-inner-plus {
      display: inline-block;
      vertical-align: middle;
      letter-spacing: normal;
      line-height: 1;
      color: #fff;
      font-size: 56px;
      font-weight: 900;
      opacity: 1;
      -webkit-transition: opacity .9s easy-out;
      transition: opacity .9s easy-out;
      -webkit-transition-delay: .9s;
              transition-delay: .9s;
      -webkit-transform: none;
          -ms-transform: none;
              transform: none; }
      .space__outside-inner-plus--small {
        font-size: 44px; }
  .space__outside--first {
    top: 44px;
    right: 5px; }
  .space__outside--second {
    bottom: 44px;
    right: -5px; }
  .space__outside--third {
    bottom: 44px;
    left: -5px; }
  .space__outside--fourth {
    top: 44px;
    left: 5px; }

.space__drop {
  display: none;
  margin-bottom: -150px;
  padding: 100px 0; }
  .space__drop.active {
    display: block; }
  .space__drop-holder {
    position: relative;
    top: -50px; }
  .space__drop-row {
    text-align: center;
    padding: 0 47px; }
    .space__drop-row--second {
      position: relative;
      top: -114px; }
    .space__drop-row-item {
      float: left; }
      .space__drop-row-item--right {
        float: right; }
      .space__drop-row-item--center {
        float: none; }

/* SPACE END */
/* GOALS  */
.goals-list {
  margin: 0 -2.5px; }

.goals-item {
  display: inline-block;
  padding: 0 2.5px;
  vertical-align: top; }
  .goals-item__link {
    display: inline-block;
    height: 44px;
    width: 44px;
    position: relative; }
    .goals-item__link:hover {
      -webkit-filter: none;
              filter: none; }
      .goals-item__link:hover .goals-item__image {
        display: block;
        opacity: 1;
        -webkit-transition: opacity .5s;
        transition: opacity .5s; }
  .goals-item__image {
    max-width: 100%;
    display: block;
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    -webkit-transition: opacity .5s;
    transition: opacity .5s; }
    .goals-item__image-gray {
      max-width: 100%;
      display: block; }

/* GOALS END */




.header__center .menu-item {
  display: inline-block;
  font-size: 18px;
  letter-spacing: normal;
  padding: 0 26px;
  position: relative;
}

.header__center .menu-item a {
  color: #323232;
  font-weight: 700;
  display: inline-block;
  -webkit-transition: color .4s;
  transition: color .4s;
}

.header__center .sub-menu{
  position: absolute;
  top: 100%;
  left: 25px;
  min-width: 277px;
  z-index: 99;
  background: #fff;
  padding: 36px 0 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .7s;
  transition: opacity .7s;
  text-align: left;
}

.header__center .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  display: block;
}
.header__center .menu-item li {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  opacity: 0;
}


.header__center .sub-menu {
  opacity: 0;
  visibility: visible;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  display: none;
}
.header__center .menu-item:hover .sub-menu  li {
  opacity: 1;
}

.header__center .sub-menu  li:hover {
  background: #f0f0f0;
  color: #ec2e1f;
  border-left:3px solid #ec2e1f;
}
.header__center .sub-menu  li {
  border-left:3px solid #fff;
  width: 100%;
}

.header__center .sub-menu li a {
  font-size: 16px;
  letter-spacing: normal;
  color: #3c3c3c;
  display: block;
  vertical-align: middle;
  line-height: 1.6;
  letter-spacing: normal;
  padding: 13px 26px 11px;
  position: relative;
  display: block;
  height: 49px;
}
.header__center .sub-menu li  {
  padding: 0;
}

.header__center .navigation-item--social:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .4s;
  transition: opacity .4s;
  display: block;
}

.header__center .navigation-item--social:hover .sub-menu{
  left: 0;
  padding: 0;
}

.header__center .sub-menu-item__link-image {
  width: 40px;
  vertical-align: middle;
}

.navigation-list js-navigation__drop .sub-menu-item__link-image img {
  display: block;
}

.footer-top__center .menu-item {
  width: 26%;
  display: inline-block;
  letter-spacing: normal;
  vertical-align: top;
}

.navigation-list.js-navigation__drop li a  {
  font-weight: 700;
  font-size: 18px;
}
.navigation-list.js-navigation__drop li a {
  display: inline-block;
  color: #323232;
  font-size: 18px;
}
.navigation-list.js-navigation__drop li .sub-menu a {
  font-size: 16px;
}

.footer-top__center .sub-menu li {
  width: 100%;
}

.footer-top__center .sub-menu li, .footer-top__center .menu-item-has-children>a{
  padding: 0 0 20px;
}


.page-numbers li{
  display: inline-block;
  letter-spacing: normal;
  font-size: 15px;
  padding: 0 5px;
  vertical-align: top;
  position: relative;
}


.page-numbers.current{
  display: inline-block;
  border: 1px solid #363636;
  height: 52px;
  min-width: 52px;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  color: #363636;
  padding: 10px 10px;
  font-size: 15px;
  color: #363636;
}
.next.page-numbers, .prev.page-numbers{
  min-width: 140px;
}


.page-numbers li a {
  display: inline-block;
  border: 1px solid #b5b5b5;
  height: 52px;
  min-width: 52px;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  font-weight: 900;
  color: #363636;
  padding: 0 10px;
  font-size: 15px;
}

.page-numbers li:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}


.next.page-numbers span:after {
  content: "";
  display: inline-block;
  height: auto;
  width: auto;
  border: 5px solid transparent;
  border-left: 7px solid #ec2e1f;
  margin: 0 0 0 4px;
}

.page-numbers li a:hover {
  border-color: #ec2e1f;
  color: #ec2e1f;
}

.page-numbers li a:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}


.prev.page-numbers span:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  border: 5px solid transparent;
  border-right: 7px solid #ec2e1f;
  margin: 0 4px 0 0;
}

.btn-link {
  color: #418dd4;
  font-size: 12px;
}
.articles-list__item .btn__icon {
  float: left;
}

.articles-list__item .btn__text {
  max-width: 381px;
  overflow: hidden;
  float: left;
  display: block;
}


#submit{
  font-family: "MuseoSansCyrl", Arial, Verdana, sans-serif;
  font-size: 15px;
  color: #fff;
  padding: 19px 50px;
  background: #ec2e1f;
  text-transform: uppercase;
  font-weight: 900;
  min-width: 212px;
  border: none;
}

#comment {
  font-size: 18px;
  padding: 17px 17px;
  font-weight: 300;
  height: 130px;
  -webkit-box-shadow: none;
  box-shadow: none;
  width: 100%;
}

#respond {
  width: calc(100% - 120px);
  float: left;
  padding: 17px 0 0 0;
}
.comment-form-comment label{
  display:none;
}
.comment-content.comment, .comment.even, article.comment, .comment.byuser{
  padding-bottom: 0px;
}

.comment-list>li{
  border-bottom: 1px solid #f0f0f0;
  padding: 18px 0 35px 200px;
}

li.comment {
  list-style: none;
}
.comment .children {
  padding: 39px 0 0px 124px;
  margin-top: 20px;
  display: block;
  overflow: hidden;
}

.children .comment.alt {
  padding: 17px 0px 17px 0px!important;

}

.comment.even,.comment.odd {
  padding: 17px 0px 17px 100px;
  display: block;
  overflow: hidden;
  border-bottom: 1px solid #f0f0f0;
}

#respond{
  width: 817px;
  float: left;
  padding: 17px 0 0 0;
}

.comment-form-comment textarea, #author, #email {
  font-family: "MuseoSansCyrl", Arial, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.2;
  font-weight: 500;
  color: #7e7e7e;
  text-align: left;
  padding: 14px 20px;
  width: 100%;
  display: block;
  -webkit-transition: all .3s ease-in-out 0s;
  transition: all .3s ease-in-out 0s;
  height: 55px;
  background: #fafafa;
  border: 1px solid #f0f0f0;
  -webkit-appearance: none;
}

p.comment-form-author {

  float: left;
  margin: 20px 23px 20px 0px;
}

p.comment-form-email {
  float: right;
  margin: 20px 0px 20px 23px;
}
p.comment-form-email, p.comment-form-author {
  width: 47%;
}
p.form-submit {
  float: right;
}

.comment-button {
  margin-top: 23px;
}
.comment-notes{
  display: none;
}
.hidden{
  display:none!important;
}

.case-row {
  display: inline-block;
  width: 49.79%;
  padding: 0 15px;
  margin: 15px 0;
  vertical-align: top;

}
.case-row:nth-child(3n+1) {
  display: inline-block;
  width: 100%;
  padding: 0 15px;
}
.comment:last-child {
  border-bottom: none!important;
}
.cases-page__bottom-block .case-row {
  width: 100%;
}
.uptlk_wdgt_71CgE .uptl_toolbar.uptl_toolbar_share ul.horizontal li {
  margin-right: 17px !important;
  vertical-align: top !important;
}

.navigation-list.js-navigation__drop li a:hover {
  color: #ec2e1f;
}
blockquote p{
  padding: 0!important;
  margin: 0!important;
}
body .social  .uptl_toolbar.uptl_toolbar_share ul.horizontal li{
  margin-right: 18px !important;
  vertical-align: top !important;
}

body .social .uptl_toolbar.uptl_toolbar_share ul.horizontal li .sn-icon {
  width: 45px !important;
  height: 44px !important;
  line-height: 44px !important;
  font-size: 0px !important;
  border-radius: 44px!important;

}

.comment-item__image {
  width: 120px;
  float: left;
  margin-top: 17px;
}

.form-submit #submit:hover {
  background: #de2a1d;
  -webkit-box-shadow: 0 0 20px rgba(222, 42, 29, 0.5);
  box-shadow: 0 0 20px rgba(222, 42, 29, 0.5);
  -webkit-transition: -webkit-box-shadow 0.5s;
  transition: -webkit-box-shadow 0.5s;
  transition: box-shadow 0.5s;
  transition: box-shadow 0.5s, -webkit-box-shadow 0.5s;
}


.form-submit #submit:hover:after {
  opacity: 1;
  -webkit-transition: opacity 0.5s, -webkit-box-shadow;
  transition: opacity 0.5s, -webkit-box-shadow;
  transition: box-shadow, opacity 0.5s;
  transition: box-shadow, opacity 0.5s, -webkit-box-shadow;
}
.form-submit #submit:after {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  height: calc(100% + 2px);
  border: 1px solid #ec2e1f;
  width: calc(100% + 2px);
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

a.logo__link.no_curssor {
  cursor: default;
}

.header.sticky .navigation-list.js-navigation__drop li>sa {
  display: inline-block;
  color: #323232;
  font-size: 18px;
}


.footer-top .navigation-list.js-navigation__drop li a {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
}

.footer-nav {
  font-size: 0;
  letter-spacing: -5px;
  margin: 0 -26px;
  display: block;
}
.footer-top .navigation-list.js-navigation__drop li .sub-menu a {
  font-size: 16px;
  font-weight: 500;
}

.footer-top .navigation-list {
  font-size: 0;
  letter-spacing: -5px;
  margin: 0px 0px;
  display: block;
}

.footer-top__center .menu-item.menu-item-46 {
  width: 22%;
  padding: 0 0 0 34px;
}
.worth-item__content-information p{
  padding-bottom: 20px;
}
.worth-item__content-information p:last-child{
  padding-bottom: 0px;
}

.case-row:nth-child(3n+1) {
  display: inline-block;
  width: 100%;
  padding: 0 0px;
}
.case-row:nth-child(3n+2) {
  padding: 0 0px;
}
.case-row:nth-child(3n+3) {
  padding: 0 0 0 30px;
}

/*.utl-icon-fb a {*/
  /*background: url('../img/fb.png')!important;*/
  /*background-color: transparent!important;*/
/*}*/
/*.utl-icon-tw a {*/
  /*background: url('../img/tw.png')!important;*/
  /*background-color: transparent!important;*/
/*}*/
/*.utl-icon-vk a {*/
  /*background: url('../img/vk.png')!important;*/
  /*background-color: transparent!important;*/
/*}*/

.utl-icon-fb a {
  background-color: #3b5998!important;
}
.utl-icon-tw a {
  background-color: #00aced!important;
}
.utl-icon-vk a {
  background-color: #45668e!important;
}

body .social .uptl_toolbar.uptl_toolbar_share ul.horizontal li .sn-icon {
  width: 45px !important;
  height: 44px !important;
  line-height: 41px !important;
  font-size: 38px!important;
  border-radius: 44px!important;
}


body .social .uptl_toolbar.uptl_toolbar_share ul.horizontal li.utl-icon-fb a {
  width: 45px !important;
  height: 44px !important;
  line-height: 35px !important;
  font-size: 33px!important;
  border-radius: 44px!important;
}
 .uptl_toolbar>ul>li>a:hover {
  -webkit-box-shadow: 0 0 20px rgba(59, 89, 152, 0.7);
  box-shadow: 0 0 20px rgba(59, 89, 152, 0.7);
}

.navigation-list.js-navigation__drop li.menu-item-52>a:hover {
  color: #323232;
}
.navigation-list.js-navigation__drop li.menu-item-53>a:hover {
  color: #323232;
}
.header__center .sub-menu  li:last-child {
  border-bottom: none;
}
.static-content img{
  max-width: 100%;
  margin: 0px;
}
i {
  font-style: italic;
}

.comment-list>li:last-child {
  border-bottom: 0px solid #f0f0f0;
}
span.ajax-loader {
  display: none!important;
}

img.alignright {
  text-align: right;
  float: right;
  margin-left: 20px;
}

img.alignleft {
  float: left;
  margin-right: 20px;
}
span.page-numbers.dots {
  padding-top: 0px;
  display: block;
}