@font-face {
  font-family: 'Publico Text';
  src: url('../fonts/subset-PublicoText-Roman.woff2') format('woff2'),
      url('../fonts/subset-PublicoText-Roman.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Publico Text';
  src: url('../fonts/subset-PublicoText-Bold.woff2') format('woff2'),
      url('../fonts/subset-PublicoText-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Averta Std';
  src: url('../fonts/subset-AvertaStd-Light.woff2') format('woff2'),
      url('../fonts/subset-AvertaStd-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Averta Std';
  src: url('../fonts/subset-AvertaStd-Regular.woff2') format('woff2'),
      url('../fonts/subset-AvertaStd-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Averta Std';
  src: url('../fonts/subset-AvertaStd-Black.woff2') format('woff2'),
      url('../fonts/subset-AvertaStd-Black.woff') format('woff');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Averta Std';
  src: url('../fonts/subset-AvertaStd-Bold.woff2') format('woff2'),
      url('../fonts/subset-AvertaStd-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
}

* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  -webkit-user-drag: none;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

a {
  text-decoration: none;
  color: inherit;
  outline: none;
}

blockquote {
  padding-left: 50px;
  margin: 45px 0;
  font-weight: bold;
  border-left: 4px solid #d4d4d4;
}

ul {
  list-style: none;
  margin-bottom: 20px;
}

li {
  position: relative;
  padding-left: 17px;
  margin-bottom: 2px;
  font-size: 24px;
}

li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  height: 8px;
  background: #252525;
  border-radius: 100%;
}

.page {
  font-family: 'Publico Text', Arial, sans-serif;
  font-size: 20px;
  line-height: 1.4;
  color: #262626;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.container {
  max-width: 1200px;
  padding: 0 15px;
  width: 100%;
  margin: 0 auto;
}

/* header */

.header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #000;
}

.header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 12px 0;
  margin-right: auto;
}

.header__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__item:not(:first-child) {
  border-left: 1px solid #000;
}

.header__item_type_mobile-menu {
  display: none;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 30px;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  margin-left: 15px;
}

.mobile-menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  height: 100%;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NTkgNDU5Ij48cGF0aCBkPSJNMCwzODIuNWg0NTl2LTUxSDBWMzgyLjV6IE0wLDI1NWg0NTl2LTUxSDBWMjU1eiBNMCw3Ni41djUxaDQ1OXYtNTFIMHoiIGZpbGw9IiMwMGFlNGQiLz48L3N2Zz4=) no-repeat center;
}

.header__item_type_logo {
  padding: 6px 25px 6px 18px;
  border: 0 !important;
}

.logo:focus,
.logo:hover {
  opacity: .7;
} 

.logo__image {
  display: block;
}

.header .logo__image {
  width: 132px;
}

.header__item_type_nav {
  padding: 2px 23px 0;
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav__item:not(:last-child) {
  margin-right: 26px;
}

.nav__link {
  position: relative;
  display: block;
  font-family: 'Averta Std', Arial, sans-serif;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.nav__link:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  margin: 0 auto;
  background: #000;
  -webkit-transition: width .3s;
  -o-transition: width .3s;
  transition: width .3s;
}

.nav__link:focus:after,
.nav__link:hover:after {
  width: 100%; 
}

.header__button {
  padding: 0 12px;
  font-family: 'Averta Std', Arial, sans-serif;
  font-size: 19px;
}

.header__button:focus,
.header__button:hover {
  opacity: .5;
}

.header__button_type_search {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 71px;
      -ms-flex: 0 0 71px;
          flex: 0 0 71px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAXCAQAAACyw+fcAAAABGdBTUEAALGPC/xhBQAAACBjSFJNAAB6JgAAgIQAAPoAAACA6AAAdTAAAOpgAAA6mAAAF3CculE8AAAAAmJLR0QA/4ePzL8AAAAHdElNRQfiCRIUAy/7i4h6AAABqElEQVQ4y5XTu2uTURgH4CfRSm0wGmpAES2KgwqKgtgiXZxEQWwHBeni4lCcHYqICIpDwan6B+igONhB6SLFC6JUoRioBS/QKiheIqaX2ErTHAdrTMn3aXy/7fzeh3POy3f4VQmt+rxQVPLBbcetUkel9XgrVH1F/Xb+i61wWUkw6Z4+vW4YEwQ5bX9jCafMCYYcthI02OaKGcFD6+LhbmOCIVsXrTY6ryToiYeXBBMO1aw3GxQMWxMHc4JB6YikW9mUfdEsaSNyJiOy5wqabIqDyzEdmU2Zk9QUBwvISkRkWY3mfYuDo9gTOYJ2aQWjcfCOkh2O1iRbHMM7Kc3RtMVTwXudi47b4pYgmJF33wHJKNohL/jsol0y0jbo8lgQzC/8uV+ctTrquCd8EgQfPfPIa7OCef0LPAhKBrRG0f3uKlbayt44LaNLoerFjOuW+k3+3Ctjr3brLfPVsAdeYalOZ2yv9Pxw0wUvo+67REPNdK+ardo350hNT0ylnDReRSf0Wlsfpc1AZcZB2fV6IVnn5Cv0e/2QpIOeKAuCkf+BsNk100Z0/AQhqKWELmMlUQAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxOC0wOS0xOFQyMDowMzo0NyswMDowMKJ4/8QAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTgtMDktMThUMjA6MDM6NDcrMDA6MDDTJUd4AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAABJRU5ErkJggg==) no-repeat center;
}

.header__button_type_member {
  font-weight: bold;
  color: #fff;
  padding: 0 15px;
  background: #00ae4d;
  -webkit-transition: background .3s;
  -o-transition: background .3s;
  transition: background .3s;
}

.header__button_type_member:focus,
.header__button_type_member:hover {
  opacity: 1;
  background: #2fc15e;
}

/* main */

.main {
  padding: 20px 0;
}

.breadcrumbs {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 20px;
  font-family: 'Averta Std', Arial, sans-serif;
  font-weight: 300;
  font-size: 14px;
  color: #818181;
  margin-bottom: 40px;
}

.breadcrumbs__item:not(:last-child):after {
  content: ' / ';
  margin: 0 4px 0 2px;
}

.breadcrumbs__link:focus,
.breadcrumbs__link:hover {
  color: #000;
}

.article h1,
.article h2,
.article h3,
.article h4 {
  font-family: 'Averta Std', Arial, sans-serif;
  margin-bottom: 20px;
  line-height: 1.194;
}

.article__title {
  font-weight: 900;
  font-size: 52px;
  color: #111;
}

.article__meta {
  font-family: 'Averta Std', Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 18px;
  color: #000;
  margin-bottom: 40px;
}

.article__meta-item {
  margin-bottom: 0;
}

.share {
  display: inline-block;
  margin-bottom: 35px;
}

.image-link {
  display: inline-block;
  border: 0 !important;
}

.content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.content__wrapper {
  margin-right: 40px;
}

.content__article {
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.content__article * {
  line-height: 1.5;
}

p {
  margin-bottom: 20px;
}

.content__article .image-link {
  margin-bottom: 15px;
}

.content__article h2 {
  font-weight: 900;
  font-size: 52px;
  color: #111;
}

.content__article h3 {
  font-size: 36px;
  color: #252525;
}

.content__article h4 {
  font-weight: 300;
  font-size: 36px;
  color: #252525;
}

.content__article a {
  font-weight: bold;
  color: #039;
  border-bottom: 1px dashed #039;
}

.left {
  float: left;
  margin-top: 40px;
  margin-right: 30px;
}

.center {
  text-align: center;
}

.mb-40 {
  margin-bottom: 40px;
}

.story {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 30px;
}

.story__photo {
  width: 144px;
  margin: 40px 40px 0 0;
}

.story__title {
  line-height: 1 !important;
}

iframe {
  margin-bottom: 20px;
}

.steps {
  margin-bottom: 30px;
}

.steps__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 35px 0;
  border-top: 1px solid #000;
}

.steps__item:last-child {
  border-bottom: 1px solid #000;
}

.steps__inner {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 136px;
      -ms-flex: 0 0 136px;
          flex: 0 0 136px;
  margin-right: 35px;
}

.steps__title {
  font-size: 34px !important;
  text-transform: uppercase;
}

.steps__description {
  margin-bottom: 0;
}

.product {
  padding-top: 60px;
  background: url(../img/product.png) no-repeat center top;
}

.product__attention {
  font-size: 22px;
  color: #ef3829;
}

.product__update {
  font-family: 'Averta Std', Arial, sans-serif;
  font-size: 18px;
  color: #7c9860;
  padding: 8px 10px;
  margin-bottom: 18px;
  border: 1px solid #bddc9f;
  border-radius: 7px;
  background: #dceccc;
}

.product__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}

.product .product__btn {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 45%;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  font-family: 'Averta Std', Arial, sans-serif;
  font-size: 45px;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
  padding: 9px 10px;
  margin-bottom: 20px;
  border: 0;
  border-radius: 7px;
  background: #00ae4d;
  -webkit-transition: background .3s;
  -o-transition: background .3s;
  transition: background .3s;
}

.product__btn:focus,
.product__btn:hover {
  background: #2fc15e;
}

.product__btn:nth-child(2n+1) {
  margin-right: 20px;
}

/* sidebar */

.sidebar {
  padding-top: 30px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 302px;
      -ms-flex: 0 0 302px;
          flex: 0 0 302px;
}

.sidebar__link {
  display: block;
  margin-bottom: 20px;
}

/* comments */

.comments {
  padding: 0 20px;
  margin-top: 60px;
  border-top: 1px solid #eee;
}

.comments__heading {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 10px;
}

.comments__heading-item {
  font-family: 'Averta Std', Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #3b5998;
}

.comments__item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 0 10px;
}

.comments > .comments__item {
  border-bottom: 1px solid #E2E2E2;
}

.comments__item .comments__item {
  padding-bottom: 0;
  margin-top: 10px;
  border-top: 1px solid #E2E2E2;
}

.comments__author-photo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60px;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  margin-right: 10px;
}

.comments__author-photo img {
  width: 100%;
}

.comments__author-name {
  display: block;
  font-family: 'Averta Std', Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.192;
  color: #3b5998;
  margin-bottom: 5px;
}

.comments__author-message {
  font-family: 'Averta Std', Arial, sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.3;
  color: #1a1a1a;
}

.comments__author-message a {
  font-weight: bold;
  color: #039;
  border-bottom: 1px dashed #039;
}

.comments__panel {
  line-height: 10px;
}

.comments__panel-item {
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #435d96;
  margin-bottom: 5px;
}

.comments__panel-item:not(:last-child):after {
  content: ' - ';
}

.comments__panel-item_type_date {
  color: #808080;
  border-bottom: 1px dotted #808080;
}

.comments__panel-item_type_like:before {
  content: '';
  display: inline-block;
  width: 13px;
  height: 12px;
  margin-right: 5px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAAAMCAMAAACOacfrAAAAPFBMVEUAAABsh7dtiLeIncN0jrvDzeDP1+aMoMWvvdaIncSJnsSistB1j7xhf7NLbqiInsRLb6lKbqhLbqn////2lQI7AAAAAXRSTlMAQObYZgAAAE5JREFUeNpNyUkOgDAQA0GzE7axPf//KwIphL6VGjWdaB3515VqWCPdxEyTC0bbVL5d8L47s0oRqjI0lO8RLsH2HJvIbX7U47AETGGqww2y3QbKMCbVXgAAAABJRU5ErkJggg==) no-repeat center;
  vertical-align: bottom;
}

.comments__panel-item_type_like:after {
  margin-left: 5px;
}

.post-comment {
  padding-top: 20px;
  text-align: center;
}

.post-comment__title {
  display: block;
  font-family: Arial, sans-serif;
  font-weight: bold;
  font-size: 14px;
  color: #3b599a;
  margin-bottom: 5px;
}

.post-comment__textarea {
  height: auto;
  display: block;
  max-width: 400px;
  width: 100%;
  padding: 6px 12px;
  margin: 0 auto 15px;
  font-size: 14px;
  line-height: 1.4;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07);
          box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.07);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  resize: none;
}

.post-comment__button {
  font-family: Arial, sans-serif;
  font-size: 14px;
  line-height: 1.4;
  padding: 8px 12px;
  border-radius: 4px;
  color: #333;
  border: 1px solid #ccc;
}

.post-comment__button:focus,
.post-comment__button:hover {
  background: #f3f3f3;
}

.footer {
  padding: 70px 0;
  margin-top: 100px;
  font-family: 'Averta Std', Arial, sans-serif;
  font-size: 14px;
  text-align: center;
  color: #fff;
  background: #000;
}

.footer .logo {
  display: inline-block;
  margin-bottom: 45px;
}

.footer .logo__image {
  width: 150px;
}

.footer__attention {
  font-size: 16px;
}

.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

.footer__nav-item:not(:last-child):after {
  content: '|';
  display: inline-block;
  font-weight: bold;
  margin-left: 15px;
  margin-right: 20px;
  vertical-align: text-bottom;
}

.footer__nav-link {
  font-size: 16px;
  text-transform: uppercase;
}

@media screen and (max-width: 1120px) {
  .header__button_type_donate {
    display: none;
  }
}

@media screen and (max-width: 1030px) {
  .header__button_type_donate {
    display: none;
  }
  .nav__link {
    font-size: 17px;
  }
}

@media screen and (max-width: 992px) {
  .nav__item:not(:last-child) {
    margin-right: 20px;
  }
  .header__button {
    font-size: 17px;
  }
  .header__button_type_search {
    -webkit-background-size: 26px 26px;
            background-size: 26px;
  }
  .header__button_type_member {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .header__inner {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .header__item_type_nav {
    display: none;
  }
  .header__button_type_signin {
    display: none;
  }
  .header__item_type_mobile-menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header__item_type_logo {
    margin: 0 auto;
  }
  .sidebar {
    display: none;
  }
  .breadcrumbs {
    margin-bottom: 10px;
  }
  .article__title {
    font-size: 30px;
  }
  .content__wrapper {
    margin-right: 0;
  }
  blockquote {
    padding-left: 20px;
  }
  .content__article h2 {
    font-size: 34px;
  }
  .content__article h4 {
    font-size: 26px;
  }
  .steps__description {
    font-size: 14px;
  }
  .product .product__btn {
    font-size: 35px;
  }
}

@media screen and (max-width: 500px) {
  .page {
    font-size: 16px;
  }
  iframe {
    height: 300px;
  }
  .content__article h3 {
    font-size: 26px;
  }
  .content__article h2 {
    font-size: 28px;
  }
  .content__article h4 {
    font-size: 20px;
  }
  .story {
    display: block;
  }
  .story__photo {
    margin: 0;
    width: auto;
  }
  li {
    font-size: 18px;
  }
  li:before {
    top: 11px;
    width: 6px;
    height: 6px;
  }
  .steps__item {
    display: block;
    text-align: center;
  }
  .steps__inner {
    margin-right: 0;
    margin-bottom: 20px;
  }
  .steps img {
    width: 100%;
  }
  .product .product__btn {
    font-size: 26px;
  }
  .comments {
    padding: 0;
    margin-top: 30px;
  }
}

@media screen and (max-width: 400px) {
  .comments__author-photo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 40px;
        -ms-flex: 0 0 40px;
            flex: 0 0 40px;
  }
  .footer__nav {
    display: block;
  }
  .footer__nav-item {
    margin-bottom: 10px;
  }
  .footer__nav-item:after {
    display: none !important;
  }
}

@media screen and (max-width: 370px) {
  .page {
    font-size: 14px;
  }
  .container {
    padding: 0 10px;
  }
  .article__title {
    font-size: 22px;
  }
  .article__meta {
    margin-bottom: 20px;
  }
  blockquote {
    margin: 25px 0;
  }
  .product__attention {
    font-size: 18px;
  }
  .product__update {
    font-size: 16px;
  }
  .product__inner {
    display: block;
  }
  .product .product__btn {
    display: block;
    margin-right: 0;
  }
  .comments__panel-item {
    font-size: 9px;
  }
  .footer {
    font-size: 12px;
    padding: 40px 0;
    margin-top: 25px;
  }
  .footer__attention {
    font-size: 14px;
  }
}
