@charset "UTF-8";
/**
 * BEM Original: https://ru.bem.info/method/definitions/
 * BEM Guide: http://stackoverflow.com/a/22566593/149288
 * 
 * .block__element
 * .block__element--modifier
 * .block--modifier__element
 * .some-block__some-element--modifier
 * .some-block:hover .some-block__element
 *
 * - put each block into separate file
 *  
 *
 */
/*
	HTML5 Reset :: style.css
	----------------------------------------------------------
	We have learned much from/been inspired by/taken code where offered from:
	Eric Meyer					:: http://meyerweb.com
	HTML5 Doctor				:: http://html5doctor.com
	and the HTML5 Boilerplate	:: http://html5boilerplate.com
-------------------------------------------------------------------------------*/
/* Let's default this puppy out
-------------------------------------------------------------------------------*/
html, body, body div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, figure, footer, header, menu, nav, section, time, mark, audio, video, details, summary {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-weight: normal;
  vertical-align: baseline;
  background: transparent; }

article, aside, figure, footer, header, nav, section, details, summary {
  display: block; }

/* Handle box-sizing while better addressing child elements:
   http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
html {
  box-sizing: border-box; }

*,
*:before,
*:after {
  box-sizing: inherit; }

/* consider resetting the default cursor: https://gist.github.com/murtaugh/5247154 */
/* Responsive images and other embedded objects */
/* if you don't have full control over `img` tags (if you have to overcome attributes), consider adding height: auto */
img,
object,
embed {
  max-width: 100%; }

/*
   Note: keeping IMG here will cause problems if you're using foreground images as sprites.
	In fact, it *will* cause problems with Google Maps' controls at small size.
	If this is the case for you, try uncommenting the following:
#map img {
		max-width: none;
}
*/
/* force a vertical scrollbar to prevent a jumpy page */
html {
  overflow-y: scroll; }

/* we use a lot of ULs that aren't bulleted.
	you'll have to restore the bullets within content,
	which is fine because they're probably customized anyway */
ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none; }

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent; }

del {
  text-decoration: line-through; }

abbr[title], dfn[title] {
  border-bottom: 1px dotted #000;
  cursor: help; }

/* tables still need cellspacing="0" in the markup */
table {
  border-collapse: collapse;
  border-spacing: 0; }

th {
  font-weight: bold;
  vertical-align: bottom; }

td {
  font-weight: normal;
  vertical-align: top; }

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

pre {
  white-space: pre;
  /* CSS2 */
  white-space: pre-wrap;
  /* CSS 2.1 */
  white-space: pre-line;
  /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word;
  /* IE */ }

input[type="radio"] {
  vertical-align: text-bottom; }

input[type="checkbox"] {
  vertical-align: bottom; }

.ie7 input[type="checkbox"] {
  vertical-align: baseline; }

.ie6 input {
  vertical-align: text-bottom; }

select, input, textarea {
  font: 99% sans-serif; }

table {
  font-size: inherit;
  font: 100%; }

small {
  font-size: 85%; }

strong {
  font-weight: bold; }

td, td img {
  vertical-align: top; }

/* Make sure sup and sub don't mess with your line-heights http://gist.github.com/413930 */
sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* standardize any monospaced elements */
pre, code, kbd, samp {
  font-family: monospace, sans-serif; }

/* hand cursor on clickable elements */
.clickable,
label,
input[type=button],
input[type=submit],
input[type=file],
button {
  cursor: pointer; }

/* Webkit browsers add a 2px margin outside the chrome of form elements */
button, input, select, textarea {
  margin: 0; }

/* make buttons play nice in IE */
button,
input[type=button] {
  width: auto;
  overflow: visible; }

/* scale images in IE7 more attractively */
.ie7 img {
  -ms-interpolation-mode: bicubic; }

/* prevent BG image flicker upon hover
   (commented out as usage is rare, and the filter syntax messes with some pre-processors)
.ie6 html {filter: expression(document.execCommand("BackgroundImageCache", false, true));}
*/
/* let's clear some floats */
.clearfix:before, .clearfix:after {
  content: "\0020";
  display: block;
  height: 0;
  overflow: hidden; }

.clearfix:after {
  clear: both; }

.clearfix {
  zoom: 1; }

/*18px = 1.286rem
20px = 1.429rem
22px = 1.571rem
24px = 1.714rem
26px = 1.857rem*/
.topbar {
  background: #f2f2f2;
  border-top: 4px solid #e54e53;
  border-bottom: 1px solid #e7e7e7; }
  .topbar__inner {
    line-height: 43px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
    .topbar__inner:after {
      content: "";
      display: table;
      clear: both; }
  @media (max-width: 839px) {
    .topbar__region {
      display: none; } }
  .topbar__region {
    float: right;
    margin-left: 40px;
    position: relative; }
    .topbar__region > a {
      text-transform: uppercase;
      /*> .fa {
                color: #aaa;
                padding-right: 5px;
            }*/ }
    .topbar__region a {
      text-decoration: none !important; }
  .topbar__region-list {
    top: 43px;
    position: absolute;
    visibility: hidden;
    transition: width 0.5s, height 0.5s, opacity 200ms, background 200ms;
    opacity: 0;
    box-shadow: 0px 0px 4px 0 rgba(0, 0, 0, 0.2);
    background: #f5f5f5;
    z-index: 101;
    right: 0; }
  .topbar__region:hover > .topbar__region-list {
    visibility: visible;
    opacity: 1; }
  .topbar__region-item {
    white-space: nowrap; }
    .topbar__region-item:first-child > a {
      border: none; }
    .topbar__region-item > a {
      display: block;
      padding: 0 25px;
      line-height: 43px;
      border-top: solid 1px #d9d9d9; }
      .topbar__region-item > a:hover {
        background: #fff; }
  .topbar__social {
    float: right; }
  .topbar__social-item {
    display: inline-block;
    line-height: 20px; }
  .topbar__social-link {
    display: inline-block;
    font-size: 0.8571rem;
    text-align: center;
    width: 20px;
    height: 20px;
    line-height: 20px;
    color: #fff;
    margin-right: 2px;
    background: #19232d;
    text-decoration: none !important; }
    .topbar__social-link.fa-twitter {
      background: #2aa9e0; }
    .topbar__social-link.fa-facebook {
      background: #204385; }
    .topbar__social-link.fa-pinterest {
      background: #ca2128; }
    .topbar__social-link.fa-linkedin {
      background: #02669a; }
    .topbar__social-link.fa-tumblr {
      background: #44546b; }
    .topbar__social-link > span {
      border: 0;
      clip: rect(0 0 0 0);
      height: 1px;
      margin: -1px;
      overflow: hidden;
      padding: 0;
      position: absolute;
      width: 1px; }

.trending {
  display: inline; }
  @media (max-width: 839px) {
    .trending {
      display: none; } }
  .trending__title {
    color: #e54e53;
    text-transform: uppercase;
    margin-right: 40px; }
  .trending__list {
    display: inline; }
  .trending__list-item {
    opacity: 0;
    white-space: nowrap;
    transition: opacity 500ms ease-in;
    position: absolute;
    top: -1000px; }
  .trending__list-item--visible {
    display: inline;
    opacity: 1;
    position: static;
    top: auto; }
  .trending__link {
    color: #656565; }

.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  padding-top: 18px;
  padding-bottom: 10px; }
  .header:after {
    content: "";
    display: table;
    clear: both; }
  .header__logo {
    display: inline-block;
    width: 345px;
    height: 63px; }
  .header__ws1 {
    float: right; }
  .header__subscribe {
    float: right; }

.menu {
  /*
        __item
        __item-with-submenu
        __item-root
        __item-root-with-submenu
        __item-child
        __item-child-with-submenu
        __submenu
        __submenu-root
        __submenu-child

    */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative; }
  .menu__inner {
    background-color: #f2f2f2;
    border-bottom: solid 2px #eee;
    line-height: 2;
    position: relative;
    z-index: 100; }
    .menu__inner:after {
      content: "";
      display: table;
      clear: both; }
  .menu__a.-highlight {
    color: #e54e53; }
  @media (max-width: 839px) {
    .menu__li {
      background-repeat: no-repeat; }
      .menu__li.-expanded {
        background-color: #fff; }
    .menu__a {
      display: block;
      text-decoration: none !important;
      padding: 0 25px;
      line-height: 43px;
      border-top: solid 1px #d9d9d9; }
      .menu__a:hover {
        background: #fff; }
      .menu__a.-root {
        font-weight: bold;
        text-transform: uppercase; }
      .menu__a.-has-kids:after {
        float: right;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        font-size: 15px;
        content: "\f105";
        text-shadow: 0px 0px 1px #efefef;
        margin-left: 10px; }
      .menu__a.-level2 {
        padding-left: 50px; }
    .menu__ul.-child {
      display: none;
      background: #fff; }
    .menu__li.-expanded > .menu__ul.-child {
      display: block; }
    .menu__search > * {
      vertical-align: middle; }
    .menu__search-box {
      height: 43px;
      padding: 0 25px;
      background: transparent;
      border: none;
      outline: none;
      display: block;
      width: 100%; }
    .menu__search-focused {
      background: #f5f5f5; }
    .menu__search > button {
      display: none; } }
  @media (min-width: 840px) {
    .menu__inner--sticky {
      position: fixed;
      top: 0;
      background: rgba(239, 239, 239, 0.9);
      width: 100%;
      max-width: 1170px; }
    .menu__li.-root {
      float: left; }
    .menu__li.-root:hover {
      background: #fff; }
    .menu__li.-child {
      min-width: 220px;
      font-size: 0.9286rem; }
    .menu__li.-child.-regular {
      position: relative;
      border-top: 1px solid #e0e0e0; }
      .menu__li.-child.-regular:first-child {
        border-top: none; }
    .menu__li.-child.-cat.-level1 {
      border-left: solid 1px #d9d9d9;
      padding: 0 0 5px 0; }
      .menu__li.-child.-cat.-level1:first-child {
        border-left: none; }
    .menu__a {
      display: block;
      /*&.-child.-cat.-level2:hover {
                padding-left: 30px;
                transition: padding-left 0.2s;
            }*/ }
      .menu__a.-root, .menu__a.-regular {
        text-decoration: none !important; }
      .menu__a.-root {
        padding: 0px 25px;
        line-height: 43px;
        text-transform: uppercase;
        border-bottom: 2px solid transparent;
        margin-bottom: -2px; }
      .menu__a.-root.-has-kids:after {
        display: inline-block;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        font-size: 1.071rem;
        line-height: 0.9;
        content: "\f107";
        text-shadow: 0px 0px 1px #efefef;
        margin-left: 10px; }
      .menu__a.-child.-regular.-has-kids:after {
        float: right;
        font-family: FontAwesome;
        font-style: normal;
        font-weight: normal;
        font-size: 1.071rem;
        line-height: 1.6;
        content: "\f105";
        text-shadow: 0px 0px 1px #efefef;
        margin-left: 10px; }
      .menu__a.-child.-regular {
        padding: 6px 25px;
        white-space: nowrap; }
      .menu__a.-root.-current, .menu__a.-root:hover {
        border-bottom-color: #e54e53; }
      .menu__a.-child.-cat {
        padding: 3px 25px; }
      .menu__a.-cat.-level1 {
        font-weight: bold;
        background: #f9f9f9;
        padding: 8px 25px;
        color: #555;
        /*box-shadow: 0px 4px 2px 0 rgba(0, 0, 0, 0.2);*/ }
    .menu__ul.-child.-regular {
      padding: 5px 0; }
    .menu__ul.-child.-regular, .menu__ul.-cat.-level1 {
      top: 45px;
      position: absolute;
      visibility: hidden;
      transition: width 0.5s, height 0.5s, opacity 200ms, background 200ms;
      opacity: 0;
      box-shadow: 0px 0px 4px 0 rgba(0, 0, 0, 0.2);
      background: #fff; }
      .menu__ul.-child.-regular.-level2.-regular, .menu__ul.-cat.-level1.-level2.-regular {
        left: 100%;
        top: 0; }
    .menu__ul.-cat.-level1 {
      display: flex; }
      .menu__ul.-cat.-level1:after {
        content: "";
        display: table;
        clear: both; }
    .menu__li.-cat.-level1 {
      display: inline-block;
      vertical-align: top; }
    .menu__li.-has-kids:hover > .menu__ul.-child {
      visibility: visible;
      opacity: 1; }
    .menu__search {
      margin-top: 7px;
      margin-right: 8px;
      float: right; }
      .menu__search > * {
        vertical-align: middle; }
    .menu__search-box {
      height: 30px;
      background: transparent;
      border: none;
      outline: none;
      padding: 0 7px;
      width: 80px;
      transition: width 0.5s, height 0.5s, opacity 200ms, background 200ms; }
    .menu__search:hover, .menu__search--focused {
      background: #E9E9E9; }
    .menu__search:hover .menu__search-box, .menu__search-box:focus {
      width: 150px; }
    .menu__search > button {
      background: none;
      border: none;
      line-height: 30px;
      font-size: 1.429rem;
      color: #aaa; } }

.media-icon {
  display: inline-block;
  z-index: 10;
  font-family: FontAwesome;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 4rem;
  height: 4rem;
  line-height: 4rem;
  font-size: 1.6rem;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  background: #000; }
  .media-icon.-video:before {
    content: "\f04b"; }

.main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  margin-top: 40px; }
  .main:after {
    content: "";
    display: table;
    clear: both; }
  @media screen and (min-width: 720px) {
    .main__content {
      width: 70%;
      float: left;
      border-right: solid 1px #d9d9d9;
      padding-right: 25px; }
    .main__sidebar {
      padding-left: 25px;
      width: 30%;
      float: left; } }

.sidebar {
  font-size: 0.9286rem; }
  .sidebar .webserver1 {
    margin-bottom: 35px; }
  .sidebar__block {
    margin: 35px 0; }
    .sidebar__block--first {
      margin-top: 0; }
    .sidebar__block > h3 {
      /*background: #f2f2f2;
            text-transform: uppercase;
            padding: 0 14px;
            line-height: 34px;
            
            font-weight: 600;*/
      font-size: 0.9286rem;
      text-transform: uppercase;
      font-weight: 600;
      line-height: 2.2em;
      /*background: #f9f9f9;*/
      background: #f2f2f2;
      border-bottom: solid 1px #d9d9d9;
      /*border: solid 1px $line-color;*/
      display: block;
      border-width: 1px 0;
      padding: 0 14px;
      position: relative;
      /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
      margin-bottom: 15px; }
  .sidebar__content-line {
    padding: 7px 0;
    border-bottom: 1px solid #d9d9d9; }
  .sidebar__social {
    display: flex;
    justify-content: space-between; }
  .sidebar__social-link {
    display: inline-block;
    font-size: 40px;
    text-align: center;
    width: 90px;
    height: 80px;
    line-height: 80px;
    color: #fff;
    margin-right: 2px;
    background: #19232d;
    text-decoration: none !important;
    opacity: 0.7;
    transition: opacity 300ms; }
    .sidebar__social-link:hover {
      opacity: 1; }
    .sidebar__social-link.fa-twitter {
      background: #2aa9e0; }
    .sidebar__social-link.fa-facebook {
      background: #204385; }
    .sidebar__social-link.fa-linkedin {
      background: #02669a; }

.footer {
  margin-top: 60px; }
  .footer__top {
    background-color: #f2f2f2;
    padding: 40px 0; }
  .footer__bot {
    background-color: #e3e3e3;
    color: #2c3a49;
    padding: 14px 0;
    font-size: 0.9286rem; }
    .footer__bot a {
      text-decoration: underline; }
  .footer__copyright {
    float: right; }
  .footer__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
    .footer__wrap:after {
      content: "";
      display: table;
      clear: both; }
  .footer__news > h3, .footer__about > h3, .footer__expos > h3 {
    text-transform: uppercase;
    border-bottom: solid 1px #d9d9d9;
    color: #19232d;
    margin-bottom: 28px;
    line-height: 35px;
    font-weight: bold; }
  @media screen and (min-width: 720px) {
    .footer__news, .footer__about, .footer__expos {
      float: left;
      padding-left: 25px; }
      .footer__news:first-child, .footer__about:first-child, .footer__expos:first-child {
        padding-left: 0; }
    .footer__expos {
      width: 30%; }
    .footer__news {
      width: 30%; }
    .footer__about {
      width: 40%; } }
  .footer__about > h2 {
    color: #888;
    margin-bottom: 20px;
    font-size: 1.714rem;
    font-weight: 200; }
  .footer__about > p {
    margin: 20px 0; }
  .footer__about > a {
    color: #e54e53; }
  .footer__line {
    border-bottom: solid 1px #d9d9d9;
    padding: 7px 0;
    font-size: 0.9286rem; }

.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  background: #fbfbfb;
  padding: 14px 25px;
  font-size: 12px;
  color: #8d97a1;
  line-height: 1; }
  .breadcrumbs__title {
    color: #e54e53;
    text-transform: uppercase;
    margin-right: 21px; }
  .breadcrumbs__delim {
    padding: 0 10px;
    font-size: 16px;
    color: #8d97a1;
    line-height: 0.7; }
  .breadcrumbs__link {
    color: #656565; }

.pager:after {
  content: "";
  display: table;
  clear: both; }

.pager__el {
  display: block;
  float: left;
  color: #676767;
  padding: 0 10px;
  margin-right: 5px;
  background: #ebebeb;
  line-height: 25px;
  font-size: 13px;
  position: relative;
  text-decoration: none !important;
  transition: width 0.5s, height 0.5s, opacity 200ms, background 200ms; }
  .pager__el > span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }

.pager__el--nav:hover, .pager__el--cur {
  color: #fff;
  background: #e54e53; }

.formatted p {
  margin: 28px 0; }

.formatted a {
  color: #e54e53; }

.article-big__link {
  display: block;
  position: relative;
  /*> img {
            opacity: 0.7;
            transition: opacity 300ms;
        }

        &:hover > img {
            opacity: 1;
        }*/ }

.article-big__link:hover {
  text-decoration: none; }

.article-big__link:hover .article-big__titles > h3, .article-big__link:hover .article-big__titles > h4 {
  text-decoration: underline; }

.article-big__titles:before {
  content: " ";
  display: block;
  float: left;
  position: absolute;
  left: 0;
  height: 44px;
  border-left: 3px solid #e54e53; }

.article-big__titles {
  min-height: 44px;
  margin-top: 4px;
  padding-left: 14px;
  font-family: "Segoe UI", "Open Sans", Arial, serif;
  line-height: 1.571rem; }
  .article-big__titles > h3 {
    font-size: 1.143rem; }
  .article-big__titles > h4 {
    font-size: 0.9286rem;
    color: #888;
    margin-top: 2px;
    line-height: 1.286rem; }

.article-big__text {
  font-size: 0.9286rem;
  margin: 14px 0; }

.article-mid {
  display: block;
  position: relative;
  margin-bottom: 15px; }
  .article-mid:hover {
    text-decoration: none; }
  .article-mid:hover .article-mid__titles > h3, .article-mid:hover .article-mid__titles > h4 {
    text-decoration: underline; }
  .article-mid__titles:before {
    content: " ";
    display: block;
    float: left;
    position: absolute;
    left: 0;
    height: 42px;
    border-left: 3px solid #e54e53; }
  .article-mid__titles {
    margin-top: 4px;
    padding-left: 14px;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    line-height: 1.571rem; }
    .article-mid__titles > h3 {
      font-size: 1rem; }
    .article-mid__titles > h4 {
      font-size: 0.8571rem;
      line-height: 1.143rem;
      color: #888; }

.article-small:after {
  content: "";
  display: table;
  clear: both; }

.article-small__img {
  width: 60px;
  float: left;
  display: block; }

.article-small__link:hover {
  text-decoration: none; }

.article-small__link:hover .article-small__titles > h3, .article-small__link:hover .article-small__titles > h4 {
  text-decoration: underline; }

.article-small__titles {
  margin-left: 75px;
  border-bottom: solid 1px #d9d9d9;
  min-height: 76px;
  /*&:before {
            content: '';
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background: linear-gradient(transparent 60px, white);
            pointer-events: none;
        }*/ }
  .article-small__titles > h5 {
    text-transform: uppercase;
    color: #a6a6a6;
    font-size: 0.7857rem;
    margin-bottom: 5px; }
  .article-small__titles > h3 {
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    word-wrap: break-word; }
  .article-small__titles > h4 {
    color: #888;
    font-size: 0.8571rem;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    margin: 0 0 11px;
    overflow: hidden;
    word-wrap: break-word;
    white-space: nowrap;
    text-overflow: ellipsis; }

.articles-two:after {
  content: "";
  display: table;
  clear: both; }

@media screen and (min-width: 640px) {
  .articles-two__col {
    width: 50%;
    float: left;
    padding-left: 20px; }
    .articles-two__col:first-child {
      padding-left: 0;
      padding-right: 20px; } }

.articles-two__col-title {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
  margin-bottom: 28px; }

.articles-two__top {
  border-bottom: solid 1px #d9d9d9;
  margin-bottom: 21px;
  position: relative; }

.articles-two__top-title {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  position: absolute;
  top: 0;
  left: 10px; }
  .articles-two__top-title a {
    color: white; }
  .articles-two__top-title:hover {
    background-color: #cb353a; }

.articles-two__small {
  margin-bottom: 21px; }

.articles-two__small:last-child {
  margin-bottom: 0; }

.articles-three:after {
  content: "";
  display: table;
  clear: both; }

.articles-three__col {
  width: 30.533333333%;
  float: left;
  margin: 0 2.1%; }
  .articles-three__col:first-child {
    margin-left: 0; }
  .articles-three__col:last-child {
    margin-right: 0; }
  @media (max-width: 600px) {
    .articles-three__col {
      margin: 0 !important;
      width: 100%; } }

.articles-three__col-title {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
  margin-bottom: 28px; }

.articles-three__col-item {
  padding: 10px 0; }
  .articles-three__col-item > .fa {
    float: left;
    color: #e54e53;
    line-height: 1.8; }
  .articles-three__col-item-link {
    display: block;
    position: relative; }
  .articles-three__col-item-link:hover {
    text-decoration: none; }
  .articles-three__col-item-link:hover .articles-three__col-item-titles > h3, .articles-three__col-item-link:hover .articles-three__col-item-titles > h4 {
    text-decoration: underline; }
  .articles-three__col-item-titles {
    margin-top: 4px;
    padding-left: 14px;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    line-height: 1.4em; }
    .articles-three__col-item-titles > h3 {
      font-size: 1rem; }
    .articles-three__col-item-titles > h4 {
      font-size: 0.8571rem;
      line-height: 1.4em;
      color: #888; }

.articles-focus__head {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
  margin-bottom: 28px; }
  .articles-focus__head:after {
    content: "";
    display: table;
    clear: both; }

.articles-focus__head-sets {
  float: right; }
  .articles-focus__head-sets > li {
    float: left;
    margin-left: 14px;
    position: relative; }

.articles-focus__head-set-link {
  color: #949697;
  font-size: 0.8571rem; }
  .articles-focus__head-set-link--active {
    color: #e54e53; }
    .articles-focus__head-set-link--active:after, .articles-focus__head-set-link--active:before {
      bottom: -1px;
      border: solid transparent;
      content: " ";
      height: 0;
      width: 0;
      position: absolute; }
    .articles-focus__head-set-link--active:after {
      border-color: rgba(255, 255, 255, 0);
      border-bottom-color: #fff;
      border-width: 4px;
      left: 50%;
      margin-left: -4px; }
    .articles-focus__head-set-link--active:before {
      border-color: rgba(229, 78, 83, 0);
      border-bottom-color: #d9d9d9;
      border-width: 5px;
      left: 50%;
      margin-left: -5px; }

.articles-focus__articles:after {
  content: "";
  display: table;
  clear: both; }

@media screen and (min-width: 640px) {
  .articles-focus__first {
    float: left;
    width: 50%;
    padding-right: 20px; }
  .articles-focus__rest {
    float: left;
    width: 50%;
    padding-left: 20px; } }

.articles-focus__small {
  margin-bottom: 21px; }

.articles-focus__small:last-child {
  margin-bottom: 0; }

.articles-list__article {
  position: relative;
  margin: 28px 0;
  border-bottom: 1px solid #d9d9d9; }
  .articles-list__article:after {
    content: "";
    display: table;
    clear: both; }
  .articles-list__article:last-child {
    border-bottom: none; }

.articles-list__img-link {
  position: relative;
  max-width: 295px;
  overflow: hidden;
  margin-bottom: 28px; }
  .articles-list__img-link > img {
    width: 351px;
    height: 190px;
    max-width: none; }

.articles-list__article-cat {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 7px;
  z-index: 1; }
  .articles-list__article-cat a {
    color: white; }
  .articles-list__article-cat:hover {
    background-color: #cb353a; }

.articles-list__article-content {
  border-bottom: 0;
  line-height: 1.5;
  margin-top: -5px; }

.articles-list__article-issue {
  float: right;
  color: #a6a6a6;
  text-transform: uppercase;
  font-size: 0.7857rem; }

.articles-list__article-title {
  font-size: 1rem;
  font-family: "Segoe UI", "Open Sans", Arial, serif;
  line-height: 1.6;
  margin-top: 8px;
  display: block; }

.articles-list__article-author {
  font-size: 0.7857rem;
  text-transform: uppercase;
  color: #a6a6a6; }

.articles-list__article-text {
  margin: 24px 0;
  font-size: 0.9286rem; }

.articles-list__article-readmore {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  margin-bottom: 28px; }
  .articles-list__article-readmore a {
    color: white; }
  .articles-list__article-readmore:hover {
    background-color: #cb353a; }

@media (min-width: 860px) {
  .articles-list__article-content {
    margin-left: 325px; }
  .articles-list__img-link {
    float: left; } }

.article__more-container {
  margin: 20px 0 60px !important; }
  .article__more-container:after {
    content: "";
    display: table;
    clear: both; }

.article__more {
  /*float:right ;*/
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  padding: 5px 20px;
  font-size: 15px;
  /*text-align: center;*/ }
  .article__more a {
    color: white; }
  .article__more:hover {
    background-color: #cb353a; }

.article__header {
  margin-bottom: 21px; }
  .article__header:after {
    content: "";
    display: table;
    clear: both; }

.article__title {
  font-size: 30px;
  font-family: "Segoe UI", "Open Sans", Arial, serif;
  font-weight: 200;
  border-left: 3px solid #e54e53;
  padding-left: 18px;
  line-height: 1.1em; }

.article__title-sub {
  font-size: 1rem;
  line-height: 1.3em;
  margin-top: 8px;
  display: block;
  color: #888; }

.article__cats {
  float: right; }

.article__meta {
  color: #a6a6a6;
  font-size: 0.7857rem;
  text-transform: uppercase;
  padding: 10px 0;
  border: 1px solid #d9d9d9;
  border-left: 0;
  border-right: 0;
  margin-bottom: 21px;
  overflow: hidden; }

.article__section-head {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/ }

.article__content {
  font-size: 1.071rem;
  line-height: 1.8em; }
  .article__content h1, .article__content h2, .article__content h3, .article__content h4, .article__content h5, .article__content h6 {
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    font-size: 1.714rem;
    margin-bottom: 15px; }
  .article__content div, .article__content p {
    margin-bottom: 25px; }

.article__ad {
  margin: 30px 0;
  text-align: center; }
  .article__ad:empty {
    display: none; }

.article__tags {
  margin: 28px 0;
  padding-top: 28px;
  border-top: 1px solid #d9d9d9; }
  .article__tags tr:last-child > td {
    padding-top: 10px; }

.article__tags-title {
  padding-right: 10px;
  text-transform: uppercase;
  color: #888; }

.article__share {
  margin: 28px 0;
  padding-top: 28px;
  border-top: 1px solid #d9d9d9; }
  .article__share:after {
    content: "";
    display: table;
    clear: both; }

.article__share-title {
  color: #888;
  text-transform: uppercase; }

.article__share-links {
  float: right; }

.article__share-link {
  width: 60px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #fff;
  font-size: 20px;
  margin-right: 2px;
  background: #19232d;
  text-decoration: none !important; }
  .article__share-link.fa-twitter {
    background: #2aa9e0; }
  .article__share-link.fa-facebook {
    background: #204385; }
  .article__share-link.fa-pinterest {
    background: #ca2128; }
  .article__share-link.fa-linkedin {
    background: #02669a; }
  .article__share-link.fa-tumblr {
    background: #44546b; }
  .article__share-link > span {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px; }

.article__related {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  margin-right: -3.5%; }

.article__related-item {
  margin-right: 3.5%; }

@media (min-width: 400px) {
  .article__related-item {
    width: 46.5%; } }

@media (min-width: 600px) {
  .article__related-item {
    width: 29.83333%; } }

.issue__title {
  font-weight: bold; }

.issue__subtitle {
  text-transform: none;
  font-size: 1.143rem;
  font-weight: normal; }

.issue__featured {
  margin-bottom: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.issue__featured-img {
  /*vertical-align: middle;
        display: block;*/ }

.issue__subscribe {
  display: flex;
  flex-grow: 10;
  justify-content: center;
  /*align-self: center;*/ }

.issue__subscribe-link {
  display: inline-block; }

.issue__subscribe-img {
  display: block; }

.issues__list {
  -webkit-column-count: 3;
  /* Chrome, Safari, Opera */
  -moz-column-count: 3;
  /* Firefox */
  column-count: 3; }

.issues__list-year {
  -webkit-column-break-inside: avoid;
  /* Chrome, Safari */
  page-break-inside: avoid;
  /* Theoretically FF 20+ */
  break-inside: avoid-column;
  /* IE 11 */
  display: table;
  /* Actually FF 20+ */
  margin-top: 20px; }
  .issues__list-year > h3 {
    font-size: 1.429rem;
    font-family: "Segoe UI", "Open Sans", Arial, serif; }

.issues__issue {
  margin-bottom: 10px; }

.subscribe__paper {
  background: whitesmoke;
  padding: 20px;
  margin-bottom: 80px; }

.subscribe__paper-button {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  padding: 10px; }
  .subscribe__paper-button a {
    color: white; }
  .subscribe__paper-button:hover {
    background-color: #cb353a; }

.subscribe__paper-link {
  color: #e54e53; }

.subscribe__news-input {
  background: #f9f9f9;
  border: 1px solid #d9d9d9;
  padding: 7px 14px;
  outline: 0;
  font-size: 13px;
  color: #a6a6a6;
  max-width: 100%;
  width: 315px; }
  .subscribe__news-input:focus {
    border-color: #bbb;
    color: #606569; }

.subscribe__news-submit {
  border: 1px solid #d9d9d9;
  outline: 0;
  background: #19232d;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  padding: 7px 21px; }
  .subscribe__news-submit:focus {
    border-color: #bbb; }

.comments__section-head {
  font-size: 0.9286rem;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 2.2em;
  /*background: #f9f9f9;*/
  background: #f2f2f2;
  border-bottom: solid 1px #d9d9d9;
  /*border: solid 1px $line-color;*/
  display: block;
  border-width: 1px 0;
  padding: 0 14px;
  position: relative;
  /*&:after, &:before {
        bottom: -1px;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
    }

    &:after {
        border-color: rgba(255, 255, 255, 0);
        border-bottom-color: #fff;
        border-width: 4px;
        left: 20px;
        margin-left: -4px;
    }

    &:before {
        border-color: rgba(229, 78, 83, 0);
        border-bottom-color: #d9d9d9;
        border-width: 5px;
        left: 20px;
        margin-left: -5px;
    }*/
  margin: 28px 0; }

.comments__form > p {
  margin: 28px 0; }

.comments__form-input {
  background: #f9f9f9;
  border: 1px solid #d9d9d9;
  padding: 7px 14px;
  outline: 0;
  font-size: 13px;
  color: #a6a6a6;
  max-width: 100%; }
  .comments__form-input:focus {
    border-color: #bbb;
    color: #606569; }

.comments__form-input-comment {
  background: #f9f9f9;
  border: 1px solid #d9d9d9;
  padding: 7px 14px;
  outline: 0;
  font-size: 13px;
  color: #a6a6a6;
  max-width: 100%;
  padding: 7px 14px;
  width: 100%;
  font-family: inherit; }
  .comments__form-input-comment:focus {
    border-color: #bbb;
    color: #606569; }

.comments__form-submit {
  border: 1px solid #d9d9d9;
  outline: 0;
  background: #19232d;
  text-transform: uppercase;
  font-size: 14px;
  color: #fff;
  padding: 7px 21px;
  float: right; }
  .comments__form-submit:focus {
    border-color: #bbb; }

.comments__comment {
  margin-top: 28px;
  border-bottom: solid 1px #d9d9d9;
  padding-bottom: 42px;
  color: #606569;
  font-size: 0.9286rem; }

.comments__comment-avatar {
  float: left; }

.comments__comment-meta {
  margin-left: 75px; }

.comments__comment-author {
  text-transform: uppercase; }

.comments__comment-time {
  text-transform: uppercase; }

.comments__comment-content {
  margin-left: 75px;
  white-space: pre-line;
  margin-top: 14px; }

.contact__left {
  display: inline-block;
  margin-right: 40px; }

.contact__left-img {
  display: inline-block;
  vertical-align: top;
  margin-right: 20px; }

.contact__left-text {
  display: inline-block; }
  .contact__left-text b {
    font-weight: bold;
    color: #777; }

.contact__emails {
  display: inline-block;
  vertical-align: top;
  color: #777; }

.content-title, .issue__title {
  font-size: 1.429rem;
  text-transform: uppercase;
  border-left: 3px solid #e54e53;
  padding-left: 14px;
  line-height: 2;
  margin-bottom: 28px; }

.content-subtitle, .formatted h2 {
  font-size: 1.429rem;
  line-height: 2;
  margin: 20px 0;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.region-panel {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  background: #CEECDC;
  padding: 20px;
  margin: 20px auto; }
  .region-panel__close {
    float: right;
    font-size: 0.9286rem; }
    .region-panel__close > a {
      background: none; }
  .region-panel h1 {
    font-size: 1.571rem; }

.slider {
  margin: 28px 0 49px 0;
  padding: 28px 0;
  background: #f2f2f2;
  border: 1px solid #e7e7e7;
  border-right: 0;
  border-left: 0; }
  .slider__wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; }
    .slider__wrap:after {
      content: "";
      display: table;
      clear: both; }
  .slider__main {
    width: 70%;
    float: left;
    padding-right: 25px; }
  .slider__inner {
    position: relative; }
  .slider__slides:after {
    content: "";
    display: table;
    clear: both; }
  .slider__slide {
    width: 100%;
    float: left;
    margin-right: -100%;
    position: relative;
    overflow: hidden; }
    .slider__slide img {
      -webkit-transition: all 0.6s;
      -moz-transition: all 0.6s;
      -o-transition: all 0.6s;
      transition: all 0.6s; }
    .slider__slide:hover img {
      -webkit-transform: translate3d(0, 0, 0);
      -webkit-perspective: 0;
      -webkit-backface-visibility: hidden;
      -webkit-transform: scale(1.1);
      transform: scale(1.1);
      -moz-transform: scale(1.1) rotate(0.1deg);
      opacity: 0.9; }
  .slider__slide-link {
    display: block; }
  .slider__slide-img {
    display: block; }
  .slider__slide-cat {
    display: inline-block;
    padding: 2px 7px;
    background-color: #e54e53;
    color: #fff;
    font-size: 0.8571rem;
    text-transform: uppercase;
    transition: background-color 200ms;
    position: absolute;
    top: 0;
    margin-left: 17px;
    z-index: 1;
    padding: 5px 10px; }
    .slider__slide-cat a {
      color: white; }
    .slider__slide-cat:hover {
      background-color: #cb353a; }
  .slider__slide-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 14px 20px 17px 20px;
    background: #19232d;
    background: rgba(25, 35, 45, 0.7);
    background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJo…iIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
    background: -moz-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25, 35, 45, 0)), color-stop(100%, #19232d));
    background: -webkit-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    background: -o-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    background: -ms-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    background: linear-gradient(to bottom, rgba(25, 35, 45, 0) 0%, #19232d 100%);
    text-shadow: 0px 1px 1px #000; }
  .slider__slide-issue {
    color: #d3dbdf;
    display: block;
    text-transform: uppercase;
    font-size: 0.7857rem;
    font-family: "Segoe UI", "Open Sans", Arial, serif;
    pointer-events: none; }
  .slider__slide-title {
    display: block;
    color: #fff;
    font-size: 1.286rem;
    /*line-height: 2;*/
    font-family: "Segoe UI", "Open Sans", Arial, serif; }
  .slider__slide-subtitle {
    display: block;
    color: #fff;
    line-height: 2;
    font-family: "Segoe UI", "Open Sans", Arial, serif; }
  .slider__nav {
    opacity: 0; }
  .slider:hover .slider__nav {
    opacity: 1; }
  .slider__nav-link {
    opacity: 0.5;
    z-index: 10;
    width: 35px;
    height: 35px;
    margin: -30px 0 0;
    display: block;
    background: #fff;
    position: absolute;
    top: 50%;
    cursor: pointer;
    font-size: 0;
    text-decoration: none !important;
    /*opacity: 0;*/ }
    .slider__nav-link:after {
      content: "\f104";
      display: block;
      font-family: FontAwesome;
      font-style: normal;
      font-weight: normal;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 35px;
      font-size: 30px;
      text-align: center;
      color: #19232d; }
    .slider__nav-link:hover {
      opacity: 1; }
  .slider__nav-link--prev {
    left: 19px; }
  .slider__nav-link--next {
    right: 19px; }
  .slider__nav-link--next:after {
    content: "\f105"; }
  .slider__pages {
    position: absolute;
    max-width: 100%;
    width: 100%;
    bottom: 0;
    padding-top: 10px;
    z-index: 99;
    left: 0;
    padding: 10px 0 0 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    overflow: hidden; }
  .slider__pages-page {
    float: left;
    height: 4px;
    width: 19.658119658%;
    background: #72879c;
    margin-left: 0.284900285%;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box; }
    .slider__pages-page:hover {
      opacity: 0.6; }
  .slider__pages:hover .slider__pages-page {
    height: 8px; }
  .slider__pages-page--active {
    background: #e54e53; }

.slider__blocks {
  width: 30%;
  float: left; }

.slider__block-main {
  position: relative;
  margin-bottom: 4%;
  overflow: hidden; }
  .slider__block-main img {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
  .slider__block-main:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transform: scale(1.1) rotate(0.1deg);
    opacity: 0.9; }

.slider__block-main-cat {
  display: inline-block;
  padding: 2px 7px;
  background-color: #e54e53;
  color: #fff;
  font-size: 0.8571rem;
  text-transform: uppercase;
  transition: background-color 200ms;
  position: absolute;
  top: 0;
  left: 0;
  margin-left: 17px;
  z-index: 1;
  padding: 5px 10px; }
  .slider__block-main-cat a {
    color: white; }
  .slider__block-main-cat:hover {
    background-color: #cb353a; }

.slider__block-main-link {
  display: block; }

.slider__block-main-img {
  display: block; }

.slider__block-main-caption {
  position: absolute;
  bottom: 0;
  padding: 14px;
  width: 100%;
  background: #19232d;
  background: rgba(25, 35, 45, 0.7);
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJo…iIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -moz-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25, 35, 45, 0)), color-stop(100%, #19232d));
  background: -webkit-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -o-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -ms-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: linear-gradient(to bottom, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  text-shadow: 0px 1px 1px #000; }

.slider__block-main-title {
  color: #fff;
  line-height: 1.6em;
  display: block;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.slider__block-main-subtitle {
  color: #fff;
  font-size: 0.7857rem;
  display: block;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.slider__block-small {
  float: left;
  width: 48%;
  position: relative;
  overflow: hidden; }
  .slider__block-small:last-child {
    margin-left: 4%; }
  .slider__block-small img {
    -webkit-transition: all 0.6s;
    -moz-transition: all 0.6s;
    -o-transition: all 0.6s;
    transition: all 0.6s; }
  .slider__block-small:hover img {
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-perspective: 0;
    -webkit-backface-visibility: hidden;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -moz-transform: scale(1.1) rotate(0.1deg);
    opacity: 0.9; }

.slider__block-small-link {
  display: block; }

.slider__block-small-img {
  display: block; }

.slider__block-small-caption {
  position: absolute;
  bottom: 0;
  padding: 14px;
  width: 100%;
  background: #19232d;
  background: rgba(25, 35, 45, 0.7);
  background: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJo…iIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+");
  background: -moz-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(25, 35, 45, 0)), color-stop(100%, #19232d));
  background: -webkit-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -o-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: -ms-linear-gradient(top, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  background: linear-gradient(to bottom, rgba(25, 35, 45, 0) 0%, #19232d 100%);
  text-shadow: 0px 1px 1px #000; }

.slider__block-qa-title {
  color: #fff;
  font-size: 28px;
  line-height: 1.6em;
  display: block;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.slider__block-issue-title {
  color: #fff;
  font-size: 1.286rem;
  line-height: 1.6em;
  display: block;
  font-family: "Segoe UI", "Open Sans", Arial, serif; }

.slider__block-issue-subtitle {
  color: #fff;
  line-height: 1.6em;
  display: block; }

html, input {
  font: 15px/1.5 "Segoe UI", "Open Sans", Arial, serif; }

a {
  color: #19232d;
  text-decoration: none; }
  a:hover {
    text-decoration: underline; }

img {
  height: auto; }
