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, subscribe, header, hgroup,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video, input, textarea, button {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  box-sizing: border-box;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  outline: none;
  border-radius: 0;
}

html::-moz-selection, body::-moz-selection, div::-moz-selection, span::-moz-selection, applet::-moz-selection, object::-moz-selection, iframe::-moz-selection,
h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, h4::-moz-selection, h5::-moz-selection, h6::-moz-selection, p::-moz-selection, blockquote::-moz-selection, pre::-moz-selection,
a::-moz-selection, abbr::-moz-selection, acronym::-moz-selection, address::-moz-selection, big::-moz-selection, cite::-moz-selection, code::-moz-selection,
del::-moz-selection, dfn::-moz-selection, em::-moz-selection, img::-moz-selection, ins::-moz-selection, kbd::-moz-selection, q::-moz-selection, s::-moz-selection, samp::-moz-selection,
small::-moz-selection, strike::-moz-selection, strong::-moz-selection, sub::-moz-selection, sup::-moz-selection, tt::-moz-selection, var::-moz-selection,
b::-moz-selection, u::-moz-selection, i::-moz-selection, center::-moz-selection,
dl::-moz-selection, dt::-moz-selection, dd::-moz-selection, ol::-moz-selection, ul::-moz-selection, li::-moz-selection,
fieldset::-moz-selection, form::-moz-selection, label::-moz-selection, legend::-moz-selection,
table::-moz-selection, caption::-moz-selection, tbody::-moz-selection, tfoot::-moz-selection, thead::-moz-selection, tr::-moz-selection, th::-moz-selection, td::-moz-selection,
article::-moz-selection, aside::-moz-selection, canvas::-moz-selection, details::-moz-selection, embed::-moz-selection,
figure::-moz-selection, figcaption::-moz-selection, subscribe::-moz-selection, header::-moz-selection, hgroup::-moz-selection,
main::-moz-selection, menu::-moz-selection, nav::-moz-selection, output::-moz-selection, ruby::-moz-selection, section::-moz-selection, summary::-moz-selection,
time::-moz-selection, mark::-moz-selection, audio::-moz-selection, video::-moz-selection, input::-moz-selection, textarea::-moz-selection, button::-moz-selection {
  background: #fa50b5;
}

html::selection, body::selection, div::selection, span::selection, applet::selection, object::selection, iframe::selection,
h1::selection, h2::selection, h3::selection, h4::selection, h5::selection, h6::selection, p::selection, blockquote::selection, pre::selection,
a::selection, abbr::selection, acronym::selection, address::selection, big::selection, cite::selection, code::selection,
del::selection, dfn::selection, em::selection, img::selection, ins::selection, kbd::selection, q::selection, s::selection, samp::selection,
small::selection, strike::selection, strong::selection, sub::selection, sup::selection, tt::selection, var::selection,
b::selection, u::selection, i::selection, center::selection,
dl::selection, dt::selection, dd::selection, ol::selection, ul::selection, li::selection,
fieldset::selection, form::selection, label::selection, legend::selection,
table::selection, caption::selection, tbody::selection, tfoot::selection, thead::selection, tr::selection, th::selection, td::selection,
article::selection, aside::selection, canvas::selection, details::selection, embed::selection,
figure::selection, figcaption::selection, subscribe::selection, header::selection, hgroup::selection,
main::selection, menu::selection, nav::selection, output::selection, ruby::selection, section::selection, summary::selection,
time::selection, mark::selection, audio::selection, video::selection, input::selection, textarea::selection, button::selection {
  background: #fa50b5;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a:hover, a:active {
  outline: none;
}

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

.rangeslider,
.rangeslider__fill {
  display: block;
  box-shadow: inset 0px 1px 3px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
}

.rangeslider {
  background: #000;
  position: relative;
}

.rangeslider--horizontal {
  height: 3px;
  width: 100%;
}

.rangeslider--vertical {
  width: 20px;
  min-height: 150px;
  max-height: 100%;
}

.rangeslider--disabled {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  opacity: 0.4;
}

.rangeslider__fill {
  background: #fff;
  position: absolute;
}

.rangeslider--horizontal .rangeslider__fill {
  top: 0;
  height: 100%;
}

.rangeslider--vertical .rangeslider__fill {
  bottom: 0;
  width: 100%;
}

.rangeslider__handle {
  cursor: pointer;
  display: inline-block;
  width: 13px;
  height: 13px;
  position: absolute;
  background: #fff;
  border-radius: 50%;
}

.rangeslider--horizontal .rangeslider__handle {
  top: -6px;
  touch-action: pan-y;
  -ms-touch-action: pan-y;
}

.rangeslider--vertical .rangeslider__handle {
  left: -10px;
  touch-action: pan-x;
  -ms-touch-action: pan-x;
}

input[type="range"]:focus + .rangeslider .rangeslider__handle {
  box-shadow: 0 0 8px rgba(255, 0, 255, 0.9);
}

.range-output {
  display: none;
}

/*
@include respond-to(hd) {}
@include respond-to(d) {}
@include respond-to(t) {}
@include respond-to(m) {}
*/
@font-face {
  font-family: 'Gotham Pro Medium';
  src: url("../fonts/GothamPro-Medium.eot");
  src: url("../fonts/GothamPro-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Medium.woff") format("woff"), url("../fonts/GothamPro-Medium.ttf") format("truetype");
}

@font-face {
  font-family: 'Gotham Pro Black';
  src: url("../fonts/GothamPro-Black.eot");
  src: url("../fonts/GothamPro-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Black.woff") format("woff"), url("../fonts/GothamPro-Black.ttf") format("truetype");
}

@font-face {
  font-family: 'Gotham Pro';
  src: url("../fonts/GothamPro.eot");
  src: url("../fonts/GothamPro.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro.woff") format("woff"), url("../fonts/GothamPro.ttf") format("truetype");
}

@font-face {
  font-family: 'Gotham Pro Bold';
  src: url("../fonts/GothamPro-Bold.eot");
  src: url("../fonts/GothamPro-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Bold.woff") format("woff"), url("../fonts/GothamPro-Bold.ttf") format("truetype");
}

@font-face {
  font-family: 'Gotham Pro Italic';
  src: url("../fonts/GothamPro-Italic.eot");
  src: url("../fonts/GothamPro-Italic.eot?#iefix") format("embedded-opentype"), url("../fonts/GothamPro-Italic.woff") format("woff"), url("../fonts/GothamPro-Italic.ttf") format("truetype");
}

.prev, .top-slider .bx-prev, .journal .slick-prev, .journal_popup .slick-prev, .photogallery-js .bx-prev, .next, .top-slider .bx-next, .journal .slick-next, .journal_popup .slick-next, .photogallery-js .bx-next {
  width: 42px;
  height: 42px;
  border: 1px solid #fff;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media only screen and (min-width: 1280px) {
  .prev:hover, .top-slider .bx-prev:hover, .journal .slick-prev:hover, .journal_popup .slick-prev:hover, .photogallery-js .bx-prev:hover, .next:hover, .top-slider .bx-next:hover, .journal .slick-next:hover, .journal_popup .slick-next:hover, .photogallery-js .bx-next:hover {
    opacity: 1;
  }
}

.prev:before, .top-slider .bx-prev:before, .journal .slick-prev:before, .journal_popup .slick-prev:before, .photogallery-js .bx-prev:before, .prev:after, .top-slider .bx-prev:after, .journal .slick-prev:after, .journal_popup .slick-prev:after, .photogallery-js .bx-prev:after, .next:before, .top-slider .bx-next:before, .journal .slick-next:before, .journal_popup .slick-next:before, .photogallery-js .bx-next:before, .next:after, .top-slider .bx-next:after, .journal .slick-next:after, .journal_popup .slick-next:after, .photogallery-js .bx-next:after {
  position: absolute;
  display: block;
  content: '';
  bottom: 9px;
  background: #ffffff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.prev:before, .top-slider .bx-prev:before, .journal .slick-prev:before, .journal_popup .slick-prev:before, .photogallery-js .bx-prev:before, .next:before, .top-slider .bx-next:before, .journal .slick-next:before, .journal_popup .slick-next:before, .photogallery-js .bx-next:before {
  width: 1px;
  height: 20px;
}

.prev:after, .top-slider .bx-prev:after, .journal .slick-prev:after, .journal_popup .slick-prev:after, .photogallery-js .bx-prev:after, .next:after, .top-slider .bx-next:after, .journal .slick-next:after, .journal_popup .slick-next:after, .photogallery-js .bx-next:after {
  width: 20px;
  height: 1px;
}

.prev, .top-slider .bx-prev, .journal .slick-prev, .journal_popup .slick-prev, .photogallery-js .bx-prev {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.prev:before, .top-slider .bx-prev:before, .journal .slick-prev:before, .journal_popup .slick-prev:before, .photogallery-js .bx-prev:before {
  left: 9px;
  width: 1px;
  height: 20px;
}

.prev:after, .top-slider .bx-prev:after, .journal .slick-prev:after, .journal_popup .slick-prev:after, .photogallery-js .bx-prev:after {
  left: 9px;
  width: 20px;
  height: 1px;
}

.next, .top-slider .bx-next, .journal .slick-next, .journal_popup .slick-next, .photogallery-js .bx-next {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.next:before, .top-slider .bx-next:before, .journal .slick-next:before, .journal_popup .slick-next:before, .photogallery-js .bx-next:before {
  right: 9px;
  width: 1px;
  height: 20px;
}

.next:after, .top-slider .bx-next:after, .journal .slick-next:after, .journal_popup .slick-next:after, .photogallery-js .bx-next:after {
  right: 9px;
  width: 20px;
  height: 1px;
}

.loader-page {
  padding-bottom: 100px;
}

.loader-page:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .loader-page {
    padding-bottom: 35px;
  }
}

.news-more, .search-more {
  float: left;
  height: 54px;
  line-height: 54px;
  border: 1px solid #000;
  text-align: center;
  width: 226px;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: .075em;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.news-more:hover, .search-more:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .news-more, .search-more {
    margin: auto;
    float: none;
  }
}

.pagination, .pagination-m {
  float: right;
  font-size: 0px;
}

@media only screen and (max-width: 750px) {
  .pagination, .pagination-m {
    display: none;
  }
}

.pagination li, .pagination-m li {
  width: 53px;
  height: 53px;
  line-height: 54px;
  text-align: center;
  font-family: "Gotham Pro Black";
  margin-left: 1px;
  display: inline-block;
}

.pagination li a, .pagination li span, .pagination-m li a, .pagination-m li span {
  display: block;
  font-size: 12px;
  color: #000;
  letter-spacing: .075em;
  width: 100%;
  height: 100%;
}

.pagination .page, .pagination-m .page {
  border: 1px solid transparent;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.pagination .page:hover, .pagination-m .page:hover {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.pagination .page.active, .pagination-m .page.active {
  border: 1px solid black;
}

.pagination .page.no-hover, .pagination-m .page.no-hover {
  border: 1px solid transparent;
}

.pagination-m {
  display: none;
  margin-top: 15px;
  padding: 0 5px;
  width: 100%;
  overflow: visible;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .pagination-m {
    display: block;
  }
}

.pagination-m li {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

.pagination-m li a, .pagination-m li span {
  font-size: 9px;
}

.pagination-m .prev, .pagination-m .top-slider .bx-prev, .top-slider .pagination-m .bx-prev, .pagination-m .journal .slick-prev, .journal .pagination-m .slick-prev, .pagination-m .journal_popup .slick-prev, .journal_popup .pagination-m .slick-prev, .pagination-m .photogallery-js .bx-prev, .photogallery-js .pagination-m .bx-prev, .pagination-m .next, .pagination-m .top-slider .bx-next, .top-slider .pagination-m .bx-next, .pagination-m .journal .slick-next, .journal .pagination-m .slick-next, .pagination-m .journal_popup .slick-next, .journal_popup .pagination-m .slick-next, .pagination-m .photogallery-js .bx-next, .photogallery-js .pagination-m .bx-next {
  border-color: #cecece;
  opacity: 1;
}

.pagination-m .prev:before, .pagination-m .top-slider .bx-prev:before, .top-slider .pagination-m .bx-prev:before, .pagination-m .journal .slick-prev:before, .journal .pagination-m .slick-prev:before, .pagination-m .journal_popup .slick-prev:before, .journal_popup .pagination-m .slick-prev:before, .pagination-m .photogallery-js .bx-prev:before, .photogallery-js .pagination-m .bx-prev:before, .pagination-m .prev:after, .pagination-m .top-slider .bx-prev:after, .top-slider .pagination-m .bx-prev:after, .pagination-m .journal .slick-prev:after, .journal .pagination-m .slick-prev:after, .pagination-m .journal_popup .slick-prev:after, .journal_popup .pagination-m .slick-prev:after, .pagination-m .photogallery-js .bx-prev:after, .photogallery-js .pagination-m .bx-prev:after, .pagination-m .next:before, .pagination-m .top-slider .bx-next:before, .top-slider .pagination-m .bx-next:before, .pagination-m .journal .slick-next:before, .journal .pagination-m .slick-next:before, .pagination-m .journal_popup .slick-next:before, .journal_popup .pagination-m .slick-next:before, .pagination-m .photogallery-js .bx-next:before, .photogallery-js .pagination-m .bx-next:before, .pagination-m .next:after, .pagination-m .top-slider .bx-next:after, .top-slider .pagination-m .bx-next:after, .pagination-m .journal .slick-next:after, .journal .pagination-m .slick-next:after, .pagination-m .journal_popup .slick-next:after, .journal_popup .pagination-m .slick-next:after, .pagination-m .photogallery-js .bx-next:after, .photogallery-js .pagination-m .bx-next:after {
  background: #696969;
}

.pagination-m .prev, .pagination-m .top-slider .bx-prev, .top-slider .pagination-m .bx-prev, .pagination-m .journal .slick-prev, .journal .pagination-m .slick-prev, .pagination-m .journal_popup .slick-prev, .journal_popup .pagination-m .slick-prev, .pagination-m .photogallery-js .bx-prev, .photogallery-js .pagination-m .bx-prev {
  float: left;
}

.pagination-m .prev.hide, .pagination-m .top-slider .hide.bx-prev, .top-slider .pagination-m .hide.bx-prev, .pagination-m .journal .hide.slick-prev, .journal .pagination-m .hide.slick-prev, .pagination-m .journal_popup .hide.slick-prev, .journal_popup .pagination-m .hide.slick-prev, .pagination-m .photogallery-js .hide.bx-prev, .photogallery-js .pagination-m .hide.bx-prev {
  opacity: 0;
}

.pagination-m .next, .pagination-m .top-slider .bx-next, .top-slider .pagination-m .bx-next, .pagination-m .journal .slick-next, .journal .pagination-m .slick-next, .pagination-m .journal_popup .slick-next, .journal_popup .pagination-m .slick-next, .pagination-m .photogallery-js .bx-next, .photogallery-js .pagination-m .bx-next {
  float: right;
}

.pagination-m .next.hide, .pagination-m .top-slider .hide.bx-next, .top-slider .pagination-m .hide.bx-next, .pagination-m .journal .hide.slick-next, .journal .pagination-m .hide.slick-next, .pagination-m .journal_popup .hide.slick-next, .journal_popup .pagination-m .hide.slick-next, .pagination-m .photogallery-js .hide.bx-next, .photogallery-js .pagination-m .hide.bx-next {
  opacity: 0;
}

html, body {
  height: 100%;
  font-family: "Gotham Pro";
  min-width: 1240px;
}

@media only screen and (max-width: 750px) {
  html, body {
    min-width: 0;
  }
}

.wrapper, .contact_form {
  width: 1200px;
  margin: auto;
  z-index: 3;
  position: relative;
}

@media only screen and (max-width: 1200px) {
  .wrapper, .contact_form {
    width: calc(100% - 20px);
  }
}

@media only screen and (max-width: 750px) {
  .wrapper, .contact_form {
    width: calc(100% - 20px);
  }
  .wrapper.m-w100, .m-w100.contact_form {
    width: 100%;
    position: static;
  }
}

.news {
  position: relative;
  margin: 0px -13px 0;
  margin-bottom: 96px;
  padding-top: 18px;
}

.news:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .news {
    padding-top: 0;
    margin: 0;
  }
}

.news_tab {
  font-size: 0;
}

.news_content {
  position: relative;
  padding: 20px 25px;
}

@media only screen and (max-width: 750px) {
  .news_content {
    padding: 15px 7px;
  }
}

.news_item {
  position: relative;
  border: 1px solid #f7f7f7;
  float: left;
  margin: 13px;
  overflow: hidden;
  -webkit-transition: box-shadow .3s, opacity 1s, -webkit-transform .5s;
  transition: box-shadow .3s, opacity 1s, -webkit-transform .5s;
  transition: box-shadow .3s, transform .5s, opacity 1s;
  transition: box-shadow .3s, transform .5s, opacity 1s, -webkit-transform .5s;
  background: #fff;
}

@media only screen and (max-width: 750px) {
  .news_item {
    margin: 10px 0;
    background: transparent;
  }
}

.news_item:hover, .news_item.hover {
  background: #fff;
  border-color: #f7f7f7;
  box-shadow: 0px 2px 21px 0px rgba(0, 0, 0, 0.23);
}

.news_item.animate {
  -webkit-transition: all 0s;
  transition: all 0s;
  opacity: 0;
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.news_item.big {
  width: 586px;
  height: 685px;
}

@media only screen and (max-width: 750px) {
  .news_item.big {
    width: 100%;
    height: 450px;
  }
  .news_item.big .news_title {
    font-size: 12px;
    line-height: 15px;
  }
  .news_item.big .news_category, .news_item.big .news_subcategory {
    min-width: 110px;
  }
}

.news_item.big .news_img, .news_item.big .img_hover, .news_item.big .img_hover_show {
  height: 570px;
}

@media only screen and (max-width: 750px) {
  .news_item.big .news_img, .news_item.big .img_hover, .news_item.big .img_hover_show {
    height: 345px;
  }
}

.news_item.medium {
  width: 382px;
  height: 484px;
}

@media only screen and (max-width: 750px) {
  .news_item.medium {
    width: 100%;
    height: 450px;
  }
  .news_item.medium .news_title {
    font-size: 12px;
    line-height: 15px;
  }
  .news_item.medium .news_category, .news_item.medium .news_subcategory {
    min-width: 110px;
  }
}

.news_item.medium .news_img, .news_item.medium .img_hover, .news_item.medium .img_hover_show {
  height: 368px;
}

@media only screen and (max-width: 750px) {
  .news_item.medium .news_img, .news_item.medium .img_hover, .news_item.medium .img_hover_show {
    height: 345px;
  }
}

.news_item.small {
  width: 280px;
  height: 329px;
}

@media only screen and (max-width: 750px) {
  .news_item.small {
    width: calc(50% - 5px);
    height: 240px;
  }
  .news_item.small:nth-child(even) {
    float: right;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .news_item.small {
    height: 300px;
  }
}

.news_item.small .news_img, .news_item.small .img_hover, .news_item.small .img_hover_show {
  height: 215px;
}

@media only screen and (max-width: 750px) {
  .news_item.small .news_img, .news_item.small .img_hover, .news_item.small .img_hover_show {
    height: 134px;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .news_item.small .news_img, .news_item.small .img_hover, .news_item.small .img_hover_show {
    height: 194px;
  }
}

.news_item.ads {
  width: 280px;
  height: 330px;
  background: #f8f8f8;
}

.news_item.ads .news_img, .news_item.ads .img_hover, .news_item.ads .img_hover_show {
  height: auto;
}

@media only screen and (max-width: 750px) {
  .news_item.ads {
    width: calc(50% - 4px);
    height: 240px;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .news_item.ads {
    height: 300px;
  }
}

.news_title {
  display: block;
  font-size: 12px;
  font-family: "Gotham Pro Bold";
  letter-spacing: .01em;
  color: #000;
  margin-bottom: 10px;
  height: 24px;
}

@media only screen and (max-width: 750px) {
  .news_title {
    font-size: 10px;
    margin-bottom: 5px;
    height: 34px;
  }
}

.news_img, .img_hover, .img_hover_show {
  display: block;
  background-size: cover;
  background-position: center;
  width: calc(100% + 2px);
  margin-left: -1px;
  margin-top: -1px;
}

.news_time {
  font-size: 10px;
  color: #a3a3a3;
  font-family: "Gotham Pro Bold";
  margin-bottom: 10px;
  display: block;
}

@media only screen and (max-width: 750px) {
  .news_time {
    margin-bottom: 5px;
  }
}

.news_type {
  display: block;
  width: 36px;
  height: 36px;
  position: absolute;
  background: #fff;
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.14);
  top: 0;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 100%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.news_type:after {
  content: '';
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.news_type:before {
  content: '';
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: #fff;
  -webkit-transition: all .2s;
  transition: all .2s;
  opacity: 0;
}

.news_type.video-ico:after {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -892px;
  width: 17px;
  height: 19px;
  background-repeat: no-repeat;
  margin-left: 3px;
}

.news_type.news-ico:after {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -996px;
  width: 14px;
  height: 10px;
  background-repeat: no-repeat;
}

.news_type:hover:before {
  width: 46px;
  height: 46px;
  opacity: .5;
  box-shadow: 0px 1px 9px 0px rgba(0, 0, 0, 0.14);
}

.news_category {
  display: inline-block;
  vertical-align: top;
  font-size: 10px;
  font-family: "Gotham Pro Bold";
  color: #fff;
  min-width: 80px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  padding: 0 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media only screen and (max-width: 750px) {
  .news_category {
    height: 30px;
    line-height: 30px;
    min-width: 55px;
  }
}

.news_category.style-3 {
  background: #8177a9;
}

.news_category.style-2 {
  background: #f39ca2;
}

.news_category.style-1 {
  background: #70c9c5;
}

.news_category.style-4 {
  background: #83d0f5;
}

.news_category.style-7 {
  background: #f3997b;
}

.news_category.style-6 {
  background: #8ec89a;
}

.news_category.style-5 {
  background: #eb6e6e;
}

.news_category:hover {
  opacity: 0.5;
}

.news_subcategory {
  display: inline-block;
  vertical-align: top;
  font-size: 10px;
  font-family: "Gotham Pro Bold";
  border: 1px solid;
  min-width: 80px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  padding: 0 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-left: 6px;
}

@media only screen and (max-width: 750px) {
  .news_subcategory {
    height: 30px;
    line-height: 30px;
    min-width: 60px;
  }
}

.news_subcategory.style-1 {
  border-color: #25b4b1;
  color: #25b4b1;
}

.news_subcategory.style-2 {
  border-color: #eb6e6e;
  color: #eb6e6e;
}

.news_subcategory.style-3 {
  border-color: #83d0f5;
  color: #83d0f5;
}

.news_subcategory.style-4 {
  border-color: #8ec89a;
  color: #8ec89a;
}

.news_subcategory.style-5 {
  border-color: #f071a4;
  color: #f071a4;
}

.news_subcategory.style-6 {
  border-color: #f3997b;
  color: #f3997b;
}

.news_subcategory.style-7 {
  border-color: #8177a9;
  color: #8177a9;
}

.news_subcategory.style-8 {
  border-color: #000000;
  color: #000000;
}

.news_subcategory:hover {
  opacity: 0.5;
}

.default_top .wrapper, .default_top .contact_form {
  position: static;
}

.default_top.style-3 {
  background: #8177a9;
}

.default_top.style-3:before {
  background-image: url("../img/plugins/category/1.jpg");
}

@media only screen and (max-width: 750px) {
  .default_top.style-3:before {
    background-image: url("../img/plugins/category/1-mob.jpg");
  }
}

.default_top.style-2 {
  background: #f39ca2;
}

.default_top.style-2:before {
  background-image: url("../img/plugins/category/2.jpg");
}

@media only screen and (max-width: 750px) {
  .default_top.style-2:before {
    background-image: url("../img/plugins/category/2-mob.jpg");
  }
}

.default_top.style-1 {
  background: #70c9c5;
}

.default_top.style-1:before {
  background-image: url("../img/plugins/category/3.jpg");
}

@media only screen and (max-width: 750px) {
  .default_top.style-1:before {
    background-image: url("../img/plugins/category/3-mob.jpg");
  }
}

.default_top.style-4 {
  background: #83d0f5;
}

.default_top.style-4:before {
  background-image: url("../img/plugins/category/4.jpg");
}

@media only screen and (max-width: 750px) {
  .default_top.style-4:before {
    background-image: url("../img/plugins/category/4-mob.jpg");
  }
}

.default_top.style-7 {
  background: #f3997b;
}

.default_top.style-7:before {
  background-image: url("../img/plugins/category/5.jpg");
}

@media only screen and (max-width: 750px) {
  .default_top.style-7:before {
    background-image: url("../img/plugins/category/5-mob.jpg");
  }
}

.default_top.style-6 {
  background: #8ec89a;
}

.default_top.style-6:before {
  background-image: url("../img/plugins/category/6.jpg");
}

@media only screen and (max-width: 750px) {
  .default_top.style-6:before {
    background-image: url("../img/plugins/category/6-mob.jpg");
  }
}

.default_top.style-5 {
  background: #eb6e6e;
}

.default_top.style-5:before {
  background-image: url("../img/plugins/category/7.jpg");
}

@media only screen and (max-width: 750px) {
  .default_top.style-5:before {
    background-image: url("../img/plugins/category/7-mob.jpg");
  }
}

.default_top.type-1 .default_top_title {
  border-color: #25b4b1;
  color: #25b4b1;
}

.default_top.type-2 .default_top_title {
  border-color: #eb6e6e;
  color: #eb6e6e;
}

.default_top.type-3 .default_top_title {
  border-color: #83d0f5;
  color: #83d0f5;
}

.default_top.type-4 .default_top_title {
  border-color: #8ec89a;
  color: #8ec89a;
}

.default_top.type-5 .default_top_title {
  border-color: #f071a4;
  color: #f071a4;
}

.default_top.type-6 .default_top_title {
  border-color: #f3997b;
  color: #f3997b;
}

.default_top.type-7 .default_top_title {
  border-color: #8177a9;
  color: #8177a9;
}

.default_top.type-8 .default_top_title {
  border-color: #000000;
  color: #000000;
}

.top-slider {
  width: 100%;
  height: 643px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .top-slider {
    height: 100%;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .top-slider {
    min-height: 480px;
  }
}

.top-slider .bx-wrapper {
  height: 100%;
  position: relative;
}

.top-slider .bx-viewport {
  height: 100% !important;
}

.top-slider .bx-prev {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  font-size: 0;
  z-index: 60;
  margin-left: -690px;
  margin-top: 25px;
  opacity: 1;
}

.top-slider .bx-prev:hover {
  background: #000;
  border-color: #000;
}

.top-slider .bx-next {
  position: absolute;
  top: 50%;
  right: 50%;
  display: block;
  font-size: 0;
  z-index: 60;
  margin-right: -690px;
  margin-top: 25px;
  opacity: 1;
}

.top-slider .bx-next:hover {
  background: #000;
  border-color: #000;
}

.top-slider .disabled {
  pointer-events: none;
  opacity: 0.36;
}

.top-slider .bx-pager {
  display: none;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  z-index: 99;
  bottom: 17px;
  width: 100%;
  text-align: center;
}

.top-slider .bx-pager .bx-pager-item {
  display: inline-block;
  margin: 0 11px;
}

.top-slider .bx-pager .bx-pager-link {
  display: block;
  width: 19px;
  height: 19px;
  font-size: 0;
  border: 1px solid #fff;
  opacity: .75;
  border-radius: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.top-slider .bx-pager .bx-pager-link.active, .top-slider .bx-pager .bx-pager-link:hover {
  background: #fff;
}

@media only screen and (max-width: 1380px) {
  .top-slider .bx-next, .top-slider .bx-prev {
    display: none;
  }
  .top-slider .bx-pager {
    display: block;
  }
}

.bxslider-js {
  height: 100%;
}

.bxslider-js .wrapper, .bxslider-js .contact_form {
  position: relative;
  z-index: 2;
  height: 100%;
}

.bxslider-js .wrapper:before, .bxslider-js .contact_form:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/png-sprite/96dpi/sprite.png);
  background-position: 0px 0px;
  width: 1076px;
  height: 628px;
  background-size: 1076px, 1304px;
  background-repeat: no-repeat;
  display: block;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

@media screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-device-pixel-ratio: 2) {
  .bxslider-js .wrapper:before, .bxslider-js .contact_form:before {
    background-image: url(../img/png-sprite/192dpi/sprite.png);
  }
}

@media only screen and (max-width: 750px) {
  .bxslider-js .wrapper:before, .bxslider-js .contact_form:before {
    display: none;
  }
}

.bxslider_list {
  height: 100%;
  position: relative;
  background: #000;
}

.bxslider_desc, .bxslider_mob {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.bxslider_desc, .bxslider_mob {
  display: block;
  opacity: .8;
}

@media only screen and (max-width: 750px) {
  .bxslider_desc, .bxslider_mob {
    display: none;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .bxslider_desc, .bxslider_mob {
    display: block;
  }
}

.bxslider_desc:before, .bxslider_mob:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../img/plugins/slider/top.png") top center no-repeat;
  background-size: 100% auto;
}

.bxslider_desc:after, .bxslider_mob:after {
  position: absolute;
  content: '';
  background-image: url(../img/png-sprite/96dpi/sprite.png);
  background-position: 0px -632px;
  width: 755px;
  height: 672px;
  background-size: 1076px, 1304px;
  background-repeat: no-repeat;
  display: block;
  right: 0;
  top: 0;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-device-pixel-ratio: 2) {
  .bxslider_desc:after, .bxslider_mob:after {
    background-image: url(../img/png-sprite/192dpi/sprite.png);
  }
}

@media only screen and (max-width: 750px) {
  .bxslider_desc:after, .bxslider_mob:after {
    display: none;
  }
}

.bxslider_mob {
  display: none;
}

@media only screen and (max-width: 750px) {
  .bxslider_mob {
    display: block;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .bxslider_mob {
    display: none;
  }
}

.bxslider_content {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  color: #fff;
  font-size: 72px;
  font-family: "Gotham Pro Black";
  text-transform: uppercase;
  margin-top: 55px;
}

@media only screen and (max-width: 750px) {
  .bxslider_content {
    font-size: 45px;
    margin-top: 0;
  }
}

.bxslider_content span {
  display: block;
  line-height: 60px;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .bxslider_content span {
    line-height: 45px;
  }
}

.bxslider_content.has-line:before {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: #fff;
  top: 50%;
  left: 0;
  position: absolute;
}

.bxslider_content.has-line .bxslider_top {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
  .bxslider_content.has-line .bxslider_top {
    white-space: normal;
    min-width: 300px;
  }
}

.bxslider_content.has-line .bxslider_bottom {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap;
  margin-top: 20px;
}

@media only screen and (max-width: 750px) {
  .bxslider_content.has-line .bxslider_bottom {
    white-space: normal;
    min-width: 300px;
  }
}

.bxslider_content.right {
  right: 0;
  left: auto;
  text-align: right;
}

.bxslider_content.right:before {
  left: auto;
  right: 0;
}

.bxslider_content.right .bxslider_top {
  left: auto;
  right: 0;
}

.bxslider_content.right .bxslider_bottom {
  left: auto;
  right: 0;
}

.bxslider_content .small {
  font-size: 36px;
  line-height: 46px;
}

@media only screen and (max-width: 750px) {
  .bxslider_content .small {
    font-size: 25px;
    line-height: 25px;
  }
}

.bxslider_content .btn {
  display: inline-block;
  height: 54px;
  line-height: 54px;
  border: 1px solid #fff;
  text-align: center;
  width: 226px;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: .075em;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .bxslider_content .btn {
    margin-top: 20px;
  }
}

.bxslider_content .btn:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

.default_top {
  height: 240px;
  width: 100%;
  background: #fff;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.default_top:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background: url("../img/plugins/type.jpg") center no-repeat;
  background-size: cover;
}

.default_top:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/png-sprite/96dpi/sprite.png);
  background-position: 0px 0px;
  width: 1076px;
  height: 628px;
  background-size: 1076px, 1304px;
  background-repeat: no-repeat;
  display: block;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

@media screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-device-pixel-ratio: 2) {
  .default_top:after {
    background-image: url(../img/png-sprite/192dpi/sprite.png);
  }
}

@media only screen and (max-width: 750px) {
  .default_top:after {
    display: none;
  }
}

.default_top .wrapper:after, .default_top .contact_form:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../img/plugins/slider/top.png") top center no-repeat;
  background-size: 100% auto;
}

.default_top_title {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  min-width: 400px;
  color: #fff;
  letter-spacing: .4em;
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Gotham Pro Black";
  z-index: 7;
  padding: 0 60px;
  margin-top: 40px;
  text-align: center;
  border: 8px solid #fff;
  height: 70px;
  line-height: 57px;
}

@media only screen and (max-width: 750px) {
  .default_top_title {
    border: 8px solid #fff;
    font-size: 24px;
    margin-top: 0;
    color: #fff;
    line-height: 40px;
    height: 56px;
    padding: 0 25px;
    min-width: 250px;
  }
}

.content.type .news_item.small {
  height: 374px;
}

@media only screen and (max-width: 750px) {
  .content.type .news_item.small {
    height: 240px;
  }
}

.content.type .news_item.small .news_img, .content.type .news_item.small .img_hover, .content.type .news_item.small .img_hover_show {
  height: 260px;
}

@media only screen and (max-width: 750px) {
  .content.type .news_item.small .news_img, .content.type .news_item.small .img_hover, .content.type .news_item.small .img_hover_show {
    height: 134px;
  }
}

.img_show {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@-webkit-keyframes showandhide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@keyframes showandhide {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

.img_hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 1;
  pointer-events: none;
}

@media only screen and (max-width: 750px) {
  .img_hover svg {
    height: 100%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
}

.img_hover_show {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.news_item:hover .img_hover_show {
  -webkit-animation: 0;
          animation: 0;
  opacity: 1;
  -webkit-transition: opacity .5s .5s;
  transition: opacity .5s .5s;
}

.news_item:hover .img_show {
  -webkit-animation: 0;
          animation: 0;
  opacity: 1;
  -webkit-transition: opacity .5s .5s;
  transition: opacity .5s .5s;
}

.ico-anim-scroll {
  position: absolute;
  left: 50%;
}

@media only screen and (max-width: 750px) {
  .ico-anim-scroll {
    display: none;
  }
}

.ico-anim_1 {
  top: 3358px;
  margin-left: -650px;
}

.ico-anim_2 {
  top: 3760px;
  margin-left: 220px;
}

.ico-anim_3 {
  top: 4740px;
  margin-left: -660px;
}

.ico-anim_4 {
  top: 3182px;
  margin-left: 140px;
}

.ico-anim_5 {
  top: 4250px;
  margin-left: -310px;
}

.ico-anim_6 {
  top: 4830px;
  margin-left: 40px;
}

.ico-anim_7 {
  top: 4010px;
  margin-left: 0;
}

.ico-anim_8 {
  top: 3320px;
  margin-left: 340px;
}

.ico-anim_9 {
  top: 2290px;
  margin-left: -420px;
}

.ico-anim_10 {
  top: 4560px;
  margin-left: 280px;
}

.ico-anim_11 {
  top: 2830px;
  margin-left: -620px;
}

.ico-anim_12 {
  top: 5615px;
  margin-left: -492px;
  position: absolute;
  left: 50%;
  -webkit-animation: 2s big infinite;
          animation: 2s big infinite;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.ico-anim_13 {
  pointer-events: none;
  top: 8213px;
  margin-left: -242px;
  position: absolute;
  left: 50%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

@media only screen and (max-width: 750px) {
  .ico-anim_13 {
    display: none;
  }
}

.ico-anim_13 img {
  display: block;
  margin: 7px;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.ico-anim_13 img.active {
  opacity: 1;
}

.ico-anim_13 img:nth-child(even) {
  margin-left: 15px;
  margin-bottom: 20px;
}

.ico-anim_14 {
  pointer-events: none;
  top: 8823px;
  margin-left: -72px;
  position: absolute;
  left: 50%;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
}

@media only screen and (max-width: 750px) {
  .ico-anim_14 {
    display: none;
  }
}

.ico-anim_14 img {
  display: block;
  margin: 7px;
  opacity: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.ico-anim_14 img.active {
  opacity: 1;
}

.ico-anim_14 img:nth-child(even) {
  margin-left: 15px;
  margin-bottom: 20px;
}

@-webkit-keyframes big {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes big {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  40% {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.rule {
  padding-top: 100px;
  margin-bottom: 200px;
}

@media only screen and (max-width: 750px) {
  .rule {
    padding-top: 50px;
    margin-bottom: 50px;
  }
}

.rule_title {
  text-transform: uppercase;
  font-family: "Gotham Pro Black";
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 60px;
}

@media only screen and (max-width: 750px) {
  .rule_title {
    font-size: 18px;
  }
}

.rule article {
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 40px;
}

@media only screen and (max-width: 750px) {
  .rule article {
    line-height: 18px;
  }
}

.contacts {
  text-align: center;
}

.contacts .contact_main {
  background: none;
}

.article article .baner {
  display: block;
  width: 728px;
  margin: auto;
}

.article article .image_title img {
  width: auto !important;
  height: auto !important;
  max-height: 600px !important;
  display: block;
  margin: auto;
}

@media only screen and (min-width: 1200px) {
  .article article .image_title img {
    max-width: 100% !important;
  }
}

.ads-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999999;
}

.ads-popup img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

.ads-popup_content {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  z-index: 3;
  max-height: 80%;
  max-width: 80%;
}

.ads-popup .mask {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
}

.ads-popup .close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: #000;
  opacity: 0.71;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  -webkit-transform: translate(100%, -100%);
          transform: translate(100%, -100%);
}

.ads-popup .close:before {
  content: '';
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -1010px;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
}

.ads-popup .close:hover {
  opacity: 1;
}

@media only screen and (max-width: 750px) {
  .ads-popup {
    background: transparent;
  }
  .ads-popup .ads-popup_content {
    width: 100%;
    height: 100%;
    max-height: 100%;
    max-width: 100%;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .ads-popup .ads-popup_content img {
    position: absolute;
    -webkit-transform: translate(0);
            transform: translate(0);
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
  .ads-popup .close {
    right: 10px;
    top: 10px;
    -webkit-transform: translate(0%, 0%);
            transform: translate(0%, 0%);
  }
}

.ads-popup.full .ads-popup_content {
  width: 100%;
  height: 100%;
  max-height: 100%;
  max-width: 100%;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #fff;
}

.ads-popup.full .close {
  right: 10px;
  top: 10px;
  -webkit-transform: translate(0%, 0%);
          transform: translate(0%, 0%);
}

.search_pagin {
  padding-top: 70px;
  margin-bottom: -18px;
}

.search_pagin:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .search_pagin {
    text-align: center;
    padding-top: 50px;
    margin-bottom: 0;
  }
}

.search_category {
  display: inline-block;
  vertical-align: middle;
  height: 80px;
}

.search_category:before, .search_category:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 1px;
}

.search_category:before {
  margin-left: -1px;
}

.search_category:after {
  margin-right: -1px;
}

.search_category ul {
  display: inline-block;
  vertical-align: middle;
}

.search_category ul li {
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  color: #9f9f9f;
  position: relative;
  line-height: 30px;
  margin-right: 20px;
}

.search_category ul li:hover {
  color: #000;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.search_category ul li:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0px;
  height: 2px;
  background: #ed4b56;
  display: block;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.search_category ul li.active {
  color: #000;
}

.search_category ul li.active:after {
  width: 20px;
}

@media only screen and (max-width: 750px) {
  .search_category {
    display: block;
    height: auto;
  }
}

.search_sort {
  display: inline-block;
  vertical-align: middle;
  float: right;
  height: 80px;
  text-transform: uppercase;
  font-family: "Gotham Pro Black";
  letter-spacing: 0.05em;
  font-size: 12px;
  cursor: pointer;
}

.search_sort:before, .search_sort:after {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  width: 1px;
}

.search_sort:before {
  margin-left: -1px;
}

.search_sort:after {
  margin-right: -1px;
}

@media only screen and (max-width: 750px) {
  .search_sort {
    display: block;
    float: none;
  }
}

.search_sort:after {
  content: '';
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -380px;
  width: 51px;
  height: 51px;
  background-repeat: no-repeat;
  border: 1px #000 solid;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}

.search_sort.active:after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.news-search h1 {
  margin: 20px 18px;
}

.news-search .news_item:nth-child(n+9) {
  display: none;
}

.content {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.brendir {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  top: -20px;
  left: 0;
}

.brendir img {
  display: block;
  margin: auto;
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 0;
}

.brendir.fixed {
  position: absolute;
  top: 0;
  z-index: 2;
}

.brendir.fixed.no-top {
  position: fixed;
  top: 0 !important;
}

.gallery {
  float: left;
  width: 100%;
  margin-bottom: 25px;
  background-color: #f9f9f9;
  padding: 0 10px 10px 0;
}

.gallery .gallery-item {
  width: 25%;
  padding: 7px 0 0 7px;
  display: inline-block;
}

#content.full .gallery .gallery-item {
  width: 16.65%;
}

.gallery .gallery-item img {
  float: left;
  max-width: 100%;
}

.gallery .gallery-item .wp-caption-text {
  display: none;
}

.page-404 {
  background: url("../img/general/404.jpg") left center no-repeat;
  background-size: cover;
  width: 100%;
  min-height: 100%;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .page-404 {
    background: url("../img/general/404-mob.jpg") center no-repeat;
    background-size: cover;
    text-align: center;
  }
}

.page-404 .center {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

@media only screen and (max-width: 750px) {
  .page-404 .center {
    width: 100%;
  }
}

.page-404_right {
  float: right;
  width: 350px;
}

@media only screen and (max-width: 750px) {
  .page-404_right {
    width: 100%;
    float: none;
  }
  .page-404_right .page-404_title {
    display: none;
  }
}

.page-404_left {
  margin-left: 20%;
  float: left;
}

@media only screen and (max-width: 750px) {
  .page-404_left {
    margin-left: 0;
    float: none;
  }
}

.page-404_title {
  font-size: 18px;
  font-family: "Gotham Pro Bold";
  margin-bottom: 40px;
}

@media only screen and (max-width: 750px) {
  .page-404_title {
    margin-bottom: 140px;
    font-size: 14px;
    margin-top: 50px;
  }
}

.page-404 p {
  font-family: "Gotham Pro";
  font-size: 13px;
  line-height: 19px;
  margin-bottom: 19px;
}

@media only screen and (max-width: 750px) {
  .page-404 p {
    display: none;
  }
}

.page-404 a {
  color: #fff;
  text-decoration: underline;
}

.page-404 .btn {
  display: inline-block;
  height: 54px;
  line-height: 54px;
  border: 1px solid #fff;
  text-align: center;
  width: 226px;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: .075em;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #fff;
  text-decoration: none;
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .page-404 .btn {
    margin-top: 20px;
    width: 90%;
  }
}

.page-404 .btn:hover {
  background: #fff;
  border: 1px solid #fff;
  color: #000;
}

article .gallery-item p.alt {
  display: none;
}

article .gallery .gallery-item {
  vertical-align: middle;
}

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #FFF;
  top: 0;
  left: 0;
  z-index: 99999999;
}

.loader_text {
  opacity: 0;
}

.loader_text:first-child {
  opacity: 1;
}

.loader_text svg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 227px;
}

@media only screen and (max-width: 750px) {
  .loader_text svg {
    width: 170px;
  }
}

.loader.autoHide {
  -webkit-transition: all 0.5s 3s;
  transition: all 0.5s 3s;
  opacity: 0;
  visibility: hidden;
}

.letter {
  display: inline-block;
  position: relative;
  float: left;
  -webkit-transform: translateZ(25px);
  transform: translateZ(25px);
  -webkit-transform-origin: 50% 50% 25px;
  transform-origin: 50% 50% 25px;
}

.letter.out {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.32s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.letter.behind {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
}

.letter.in {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  -webkit-transition: -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.38s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.tests_top:before {
  background-image: url("../img/content/tests/top.jpg");
}

@media only screen and (max-width: 750px) {
  .tests_top:before {
    background-image: url("../img/content/tests/top-mob.jpg");
  }
}

.tests_top_title {
  background-image: url("../img/content/tests/top.png");
}

@media only screen and (max-width: 750px) {
  .tests_top_title {
    background-image: url("../img/content/tests/top-mob.png");
  }
}

.tests .rule_title {
  margin-top: 20px;
  line-height: 1;
  margin-bottom: 20px;
}

.test_btn {
  margin-top: 30px !important;
}

.article article .test_question iframe {
  width: 50% !important;
  height: 300px;
}

@media only screen and (max-width: 750px) {
  .article article .test_question iframe {
    width: 100% !important;
    display: block;
  }
}

.test {
  margin-bottom: 100px;
}

.test_question {
  display: none;
}

.test_question_title {
  font-size: 16px;
  letter-spacing: .01em;
  font-family: "Gotham Pro Bold";
  text-transform: uppercase;
  line-height: 26px;
  max-width: 800px;
}

.test_question:first-child {
  display: block;
}

.test_question .test_res_img {
  display: block;
}

.test_variants {
  margin-top: 30px;
}

.test_variants:after {
  content: "";
  display: table;
  clear: both;
}

.test_variant {
  padding: 0 70px;
  font-size: 16px;
  line-height: 60px;
  border: 1px #fff solid;
  float: left;
  clear: left;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  .test_variant {
    padding: 0 30px;
    width: 100%;
  }
}

.test_variant:hover {
  border: 1px #efefef solid;
  box-shadow: 0 0 5px #efefef;
}

.test_variant.active {
  border: 1px #efefef solid;
  box-shadow: 0 0 5px #efefef;
  font-family: "Gotham Pro Bold";
  color: #ed1594;
}

.test_res {
  display: none;
}

.test_res:after {
  content: "";
  display: table;
  clear: both;
}

.test_res_wrap {
  float: left;
  max-width: 50%;
}

@media only screen and (max-width: 750px) {
  .test_res_wrap {
    float: none;
    max-width: 100%;
  }
}

.test_res_title {
  font-size: 16px;
  letter-spacing: .01em;
  font-family: "Gotham Pro Bold";
  text-transform: uppercase;
  line-height: 26px;
}

.test_res_text {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.025em;
  margin-top: 30px;
  margin-bottom: 25px;
}

.test_res_share {
  font-size: 16px;
  font-family: "Gotham Pro Black";
  line-height: 26px;
  letter-spacing: 0.025em;
}

@media only screen and (max-width: 750px) {
  .test_res_share {
    text-align: center;
  }
}

.test_res .article_social {
  padding-top: 5px;
  line-height: 20px;
  display: block;
}

@media only screen and (max-width: 750px) {
  .test_res .article_social {
    text-align: center;
  }
}

.test_res_img {
  width: 50%;
  float: right;
}

.test_res_img.mob {
  display: none;
}

@media only screen and (max-width: 750px) {
  .test_res_img {
    display: none;
    float: none;
    max-width: 100%;
    width: 100%;
  }
  .test_res_img.mob {
    display: block;
  }
}

.test_status {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.3);
}

.test_line {
  width: 490px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  background: #e6e6e6;
  height: 2px;
  margin-right: 20px;
}

@media only screen and (max-width: 750px) {
  .test_line {
    width: 180px;
  }
}

.test_line span {
  width: 0%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  border-top: 1px solid #c1e15e;
  border-bottom: 1px solid #7ece77;
}

.width100per {
  max-width: 100%;
  width: 100%;
  display: block !important;
}

.newVarStyle {
  line-height: 24px;
  padding-top: 22px;
  padding-bottom: 22px;
}

.newVarStyle.active, .newVarStyle:hover {
  box-shadow: 0 0 7px #efefef;
}

.content .wrapper, .content .contact_form, .journal .wrapper, .journal .contact_form, .recommended .wrapper, .recommended .contact_form {
  background: #fff;
}

.brandir-new {
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background: url("../img/general/branding2.jpg") top center no-repeat #000;
  cursor: pointer;
}

/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  box-sizing: border-box;
}

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #CCC;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #CCC;
}

.mfp-preloader a:hover {
  color: #FFF;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  box-shadow: none;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #FFF;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #FFF;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #CCC;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #FFF;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #FFF;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: '';
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #BDBDBD;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #F3F3F3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}

.contact {
  text-align: center;
}

.contact_title {
  text-align: center;
  color: #000;
  font-family: "Gotham Pro Black";
  font-size: 36px;
  line-height: 40px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 45px;
}

@media only screen and (max-width: 750px) {
  .contact_title {
    font-size: 15px;
    line-height: 17px;
    width: 270px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.contact_top, .tests_top, .archive_top, .jobs_top, .subs_top {
  height: 240px;
  width: 100%;
  background: #000;
  position: relative;
  overflow: hidden;
  padding-top: 90px;
}

.contact_top:before, .tests_top:before, .archive_top:before, .jobs_top:before, .subs_top:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.75;
  background: url("../img/plugins/ads.jpg") center no-repeat;
  background-size: cover;
}

.contact_top:after, .tests_top:after, .archive_top:after, .jobs_top:after, .subs_top:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/png-sprite/96dpi/sprite.png);
  background-position: 0px 0px;
  width: 1076px;
  height: 628px;
  background-size: 1076px, 1304px;
  background-repeat: no-repeat;
  display: block;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

@media screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-device-pixel-ratio: 2) {
  .contact_top:after, .tests_top:after, .archive_top:after, .jobs_top:after, .subs_top:after {
    background-image: url(../img/png-sprite/192dpi/sprite.png);
  }
}

@media only screen and (max-width: 750px) {
  .contact_top:after, .tests_top:after, .archive_top:after, .jobs_top:after, .subs_top:after {
    display: none;
  }
}

.contact_top .wrapper:after, .tests_top .wrapper:after, .archive_top .wrapper:after, .jobs_top .wrapper:after, .subs_top .wrapper:after, .contact_top .contact_form:after, .tests_top .contact_form:after, .archive_top .contact_form:after, .jobs_top .contact_form:after, .subs_top .contact_form:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../img/plugins/slider/top.png") top center no-repeat;
  background-size: 100% auto;
}

.contact_top_title, .tests_top_title, .archive_top_title, .jobs_top_title, .subs_top_title {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  color: #d4d4d4;
  letter-spacing: .4em;
  font-size: 36px;
  text-transform: uppercase;
  font-family: "Gotham Pro Black";
  z-index: 7;
  background: url("../img/plugins/ads_top.png") center no-repeat;
  padding: 24px 70px 20px;
  margin-top: 40px;
  text-align: center;
  min-width: 414px;
}

@media only screen and (max-width: 750px) {
  .contact_top_title, .tests_top_title, .archive_top_title, .jobs_top_title, .subs_top_title {
    font-size: 20px;
    background: url("../img/plugins/ads_topmob.png") center no-repeat;
    background-size: 268px 45px;
    width: 100%;
    margin-top: 0;
    color: #fff;
    min-width: 0;
  }
}

.contact_item {
  display: inline-block;
  text-align: center;
  line-height: 18px;
  margin-bottom: 50px;
  width: 250px;
}

@media only screen and (max-width: 750px) {
  .contact_item {
    width: 100%;
    display: block;
    line-height: 13px;
    margin-bottom: 20px;
  }
}

.contact_photo {
  position: relative;
  width: 96px;
  height: 96px;
  overflow: hidden;
  border-radius: 100%;
  margin: auto;
  margin-bottom: 15px;
}

@media only screen and (max-width: 750px) {
  .contact_photo {
    width: 60px;
    height: 60px;
  }
}

.contact_photo img {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 100%;
  display: block;
}

.contact_name {
  font-family: "Gotham Pro Black";
  font-size: 12px;
  letter-spacing: .075em;
  text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
  .contact_name {
    font-size: 10px;
  }
}

.contact_post {
  font-size: 12px;
  letter-spacing: .075em;
}

@media only screen and (max-width: 750px) {
  .contact_post {
    font-size: 10px;
  }
}

.contact_post:after {
  content: '';
  display: block;
  width: 45px;
  height: 1px;
  margin: 9px auto;
  background: #e6e6e6;
}

@media only screen and (max-width: 750px) {
  .contact_post:after {
    width: 20px;
    margin: 6px auto;
  }
}

.contact_tell {
  display: block;
  font-size: 12px;
  letter-spacing: .075em;
  color: #000;
}

@media only screen and (max-width: 750px) {
  .contact_tell {
    font-size: 10px;
  }
}

.contact_tell:hover {
  text-decoration: underline;
}

.contact_mail {
  display: block;
  font-size: 12px;
  letter-spacing: .075em;
  color: #000;
}

@media only screen and (max-width: 750px) {
  .contact_mail {
    font-size: 10px;
  }
}

.contact_mail:hover {
  text-decoration: underline;
}

.contact_last .contact_item {
  width: 310px;
}

@media only screen and (max-width: 750px) {
  .contact_last .contact_item {
    width: 100%;
  }
}

.contact_form {
  border: 1px solid #fde1e8;
  position: relative;
  margin-bottom: 70px;
}

.contact_form.done .contact_done {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 750px) {
  .contact_form.done {
    width: 100%;
  }
}

.contact .form-group {
  position: relative;
  margin-bottom: 30px;
}

.contact .control-label {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  text-transform: uppercase;
  font-size: 12px;
  font-family: "Gotham Pro Bold";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  text-align: center;
  width: 100%;
  left: 0;
}

.contact .control-label.hide {
  top: 100%;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  font-size: 10px;
}

@media only screen and (max-width: 750px) {
  .contact .control-label.hide {
    font-size: 9px;
  }
}

@media only screen and (max-width: 750px) {
  .contact .control-label {
    width: 100%;
    font-size: 10px;
  }
}

.contact .form-control {
  border-bottom: 1px solid #e0e0e0;
  width: 530px;
  text-align: center;
  height: 40px;
  font-size: 12px;
  font-family: "Gotham Pro Bold";
}

@media only screen and (max-width: 750px) {
  .contact .form-control {
    width: 220px;
    font-size: 10px;
  }
}

.contact .help-block {
  font-size: 12px;
  display: none;
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  background: #ef5d67;
  border-radius: 8px;
  width: 530px;
  line-height: 30px;
  height: 30px;
  color: #fff;
  letter-spacing: .025em;
  z-index: 2;
}

@media only screen and (max-width: 750px) {
  .contact .help-block {
    width: 220px;
    font-size: 10px;
  }
}

.contact .help-block:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: -8px;
  left: 50%;
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
  background: #ef5d67;
}

.contact .has-error .form-control {
  color: #ed4b56;
}

.contact .has-error .help-block {
  display: block;
}

.contact .submit {
  display: block;
  height: 54px;
  line-height: 54px;
  border: 1px solid #000;
  text-align: center;
  width: 226px;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: .075em;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #000;
  margin: auto;
  background: #fff;
}

@media only screen and (max-width: 750px) {
  .contact .submit {
    font-size: 10px;
    height: 45px;
    line-height: 45px;
  }
}

.contact .submit:hover {
  background: #000;
  color: #fff;
}

.contact_done {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-linear-gradient(35deg, #71ffad 0%, #ff75ac 0%, #51b394 0%, #c1e15e 100%);
  background-image: linear-gradient(55deg, #71ffad 0%, #ff75ac 0%, #51b394 0%, #c1e15e 100%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.contact_done_ok {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -204px;
  width: 56px;
  height: 56px;
  background-repeat: no-repeat;
  z-index: 10;
}

@media only screen and (max-width: 750px) {
  .contact_done_ok {
    margin-top: -30px;
  }
}

.contact_done_message {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
          transform: translate(-50%, 10px);
  white-space: nowrap;
  font-family: "Gotham Pro Bold";
  font-size: 12px;
  color: #fff;
  letter-spacing: .075em;
  text-transform: uppercase;
  line-height: 30px;
  margin-top: 10px;
}

.contact_done_message span {
  display: block;
  font-size: 30px;
}

.contact_main {
  background: #fbfbfb;
  letter-spacing: 0.05em;
  padding-bottom: 35px;
}

.contact_main .wrapper, .contact_main .contact_form {
  padding-top: 1px;
  position: relative;
}

.contact_main .contact_title {
  font-size: 30px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
  .contact_main .contact_title {
    font-size: 15px;
    line-height: 17px;
  }
}

.contact_main_text {
  font-size: 12px;
  margin-top: 5px;
}

@media only screen and (max-width: 750px) {
  .contact_main_text {
    font-size: 10px;
  }
}

.contact_main_text span {
  font-family: "Gotham Pro Black";
}

.contact_main_text a {
  color: #000;
}

.contact_title_map, .contact_title_tell {
  font-size: 12px;
  color: #f2476f;
  font-family: "Gotham Pro Black";
  text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
  .contact_title_map, .contact_title_tell {
    font-size: 10px;
  }
}

.contact_title_map:before, .contact_title_tell:before {
  display: block;
  content: '';
  margin: auto;
  margin-bottom: 5px;
}

@media only screen and (max-width: 750px) {
  .contact_title_map:before, .contact_title_tell:before {
    margin-top: 0;
  }
}

.contact_title_map:before {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -435px;
  width: 22px;
  height: 32px;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 750px) {
  .contact_title_map:before {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.contact_title_tell {
  margin-top: 25px;
}

@media only screen and (max-width: 750px) {
  .contact_title_tell {
    margin-top: 10px;
  }
}

.contact_title_tell:before {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -866px;
  width: 22px;
  height: 22px;
  background-repeat: no-repeat;
}

.contact_download {
  font-size: 12px;
  color: rgba(255, 255, 255, 0);
  font-family: "Gotham Pro Bold";
  position: absolute;
  right: 0;
  display: block;
  text-align: center;
  margin-top: -27px;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 1;
}

@media only screen and (max-width: 750px) {
  .contact_download {
    font-size: 0;
  }
}

.contact_download:hover {
  color: #f2476f;
}

.contact_download_btn {
  display: block;
  margin: auto;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -322px;
  width: 54px;
  height: 54px;
  background-repeat: no-repeat;
  background-color: #f2476f;
  border-radius: 100%;
  margin-bottom: 15px;
  position: relative;
  box-shadow: 0px 7px 16px 0px rgba(110, 0, 52, 0.36);
}

@media only screen and (max-width: 750px) {
  .contact_download_btn {
    margin-bottom: 0;
  }
}

.contact_download_btn:before {
  content: '';
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  background-color: #f2476f;
  z-index: -1;
  border-radius: 100%;
  opacity: .64;
  -webkit-transition: all .3s;
  transition: all .3s;
  -webkit-animation: 2s 1s download infinite;
          animation: 2s 1s download infinite;
}

.contact_download_btn:hover {
  color: #f2476f;
}

.contact_download_btn:hover:before {
  -webkit-animation: 0;
          animation: 0;
  width: 130%;
  height: 130%;
}

.contact_download.fix {
  display: none;
  z-index: 2;
}

@media only screen and (max-width: 750px) {
  .contact_download.nofix {
    -webkit-transition: all .5s .5s;
    transition: all .5s .5s;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  .contact_download.nofix.hide {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  .contact_download.fix {
    display: block;
    -webkit-transition: all .5s .5s;
    transition: all .5s .5s;
    visibility: visible;
    -webkit-transform: scale(1);
            transform: scale(1);
    position: fixed;
    bottom: 10px;
    right: 10px;
  }
  .contact_download.fix.hide {
    -webkit-transition: all .5s;
    transition: all .5s;
    visibility: hidden;
    -webkit-transform: scale(0);
            transform: scale(0);
  }
}

.contact_map {
  height: 443px;
}

@media only screen and (max-width: 750px) {
  .contact_map {
    height: 360px;
  }
}

.contact_map #map {
  height: 100%;
  width: 100%;
}

.contact_map .wrapper, .contact_map .contact_form {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  top: 0;
  z-index: 2;
  height: 100%;
  pointer-events: none;
}

.contact_map .wrapper:before, .contact_map .contact_form:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/png-sprite/96dpi/sprite.png);
  background-position: 0px 0px;
  width: 1076px;
  height: 628px;
  background-size: 1076px, 1304px;
  background-repeat: no-repeat;
  display: block;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
}

@media screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-device-pixel-ratio: 2) {
  .contact_map .wrapper:before, .contact_map .contact_form:before {
    background-image: url(../img/png-sprite/192dpi/sprite.png);
  }
}

@media only screen and (max-width: 750px) {
  .contact_map .wrapper:before, .contact_map .contact_form:before {
    display: none;
  }
}

@-webkit-keyframes download {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  20% {
    width: 130%;
    height: 130%;
    opacity: 1;
  }
  20% {
    width: 130%;
    height: 130%;
    opacity: 0;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

@keyframes download {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  20% {
    width: 130%;
    height: 130%;
    opacity: 1;
  }
  20% {
    width: 130%;
    height: 130%;
    opacity: 0;
  }
  100% {
    width: 100%;
    height: 100%;
    opacity: 0;
  }
}

.archive_top:before {
  background-image: url("../img/content/archive/top.jpg");
}

@media only screen and (max-width: 750px) {
  .archive_top:before {
    background-image: url("../img/content/archive/top-mob.jpg");
  }
}

.archive_top_title {
  background-image: url("../img/content/archive/top.png");
}

@media only screen and (max-width: 750px) {
  .archive_top_title {
    background-image: url("../img/content/archive/top-mob.png");
  }
}

.archive {
  width: 895px;
  font-size: 12px;
  margin-bottom: 80px;
}

@media only screen and (max-width: 750px) {
  .archive {
    width: 100%;
  }
}

.archive_tab {
  padding-top: 30px;
}

@media only screen and (max-width: 750px) {
  .archive_tab {
    text-align: center;
  }
}

.archive_tab_link {
  color: #9f9f9f;
  font-family: "Gotham Pro Bold";
  margin-right: 30px;
  margin-bottom: 25px;
  display: inline-block;
  -webkit-transition: all .5s;
  transition: all .5s;
  position: relative;
  letter-spacing: .025em;
}

@media only screen and (max-width: 750px) {
  .archive_tab_link {
    margin: 0 10px;
    margin-bottom: 25px;
  }
}

.archive_tab_link:after {
  content: '';
  height: 2px;
  width: 0px;
  position: absolute;
  bottom: -10px;
  background: #ed4b56;
  left: 0;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.archive_tab_link.active, .archive_tab_link:hover {
  color: #000000;
}

.archive_tab_link.active:after, .archive_tab_link:hover:after {
  width: 20px;
}

.archive_tab_item {
  display: none;
}

.archive_tab_item.active {
  display: block;
}

.archive_tab_col {
  margin-bottom: 20px;
  width: 100%;
}

@media only screen and (max-width: 750px) {
  .archive_tab_col {
    overflow-x: scroll;
  }
}

@media only screen and (max-width: 750px) {
  .archive_tab_scroll {
    width: 480px;
  }
}

.archive_tab_jor {
  display: inline-block;
  text-align: center;
  font-family: "Gotham Pro Bold";
  line-height: 40px;
  letter-spacing: .05em;
  margin-right: 20px;
  color: #000;
}

.archive_tab_jor:last-child {
  margin-right: 0;
}

@media only screen and (max-width: 750px) {
  .archive_tab_jor {
    margin: 0;
    margin-left: 10px;
  }
  .archive_tab_jor:last-child {
    margin-right: 10px;
  }
}

.archive_tab_jor img {
  display: block;
  width: 282px;
}

@media only screen and (max-width: 750px) {
  .archive_tab_jor img {
    width: 141px;
  }
}

.elements {
  min-width: 400px;
  min-height: 400px;
  position: relative;
  border: 1px #ccc solid;
  padding: 10px;
  display: inline-block;
}

.elements.black {
  background: #000;
}

.elements .e {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.footer {
  width: 100%;
  background: url("../img/general/footer/footer.png") no-repeat;
  background-position: calc(50% + 526px) 0%;
  background-color: #050505;
  position: relative;
  z-index: 4;
}

@media only screen and (max-width: 750px) {
  .footer {
    text-align: center;
    padding-top: 10px;
  }
}

.footer_menu {
  display: block;
  color: #a4a4a4;
}

@media only screen and (max-width: 750px) {
  .footer_menu {
    display: block;
  }
}

.footer_logo {
  display: inline-block;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -178px;
  width: 70px;
  height: 22px;
  background-repeat: no-repeat;
  vertical-align: middle;
  margin-right: 27px;
}

@media only screen and (max-width: 750px) {
  .footer_logo {
    display: block;
  }
}

.footer_ul {
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .footer_ul {
    display: block;
    text-align: left;
  }
}

.footer_list {
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .footer_list:first-child .footer_link {
    margin-left: 0;
  }
  .footer_list:last-child .footer_link {
    margin-right: 0;
  }
}

.footer_link {
  display: block;
  color: #a4a4a4;
  font-size: 12px;
  line-height: 20px;
  margin: 20px 18px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.footer_link:hover {
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .footer_link {
    margin: 20px 10px;
  }
}

.footer_slider {
  overflow: hidden;
}

.footer_slider_title {
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Gotham Pro Black";
  letter-spacing: .025em;
  color: #fff;
  margin-top: 37px;
  margin-bottom: 23px;
}

@media only screen and (max-width: 750px) {
  .footer_slider_title {
    display: none;
  }
}

.footer_slider_list {
  width: 331px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  padding: 2px 0;
  display: block;
  float: left;
  margin-right: 74px;
}

@media only screen and (max-width: 750px) {
  .footer_slider_list {
    width: 350px;
    margin-right: 10px;
    -webkit-transform: translateX(-70px);
            transform: translateX(-70px);
  }
}

.footer_slider_link {
  display: block;
  opacity: 0.5;
  font-size: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media only screen and (min-width: 1280px) {
  .footer_slider_link:hover {
    opacity: 1;
  }
}

.footer_slider_img {
  display: inline-block;
  vertical-align: top;
  width: 150px;
  height: 98px;
  background-size: cover;
  background-position: center;
}

@media only screen and (max-width: 750px) {
  .footer_slider_img {
    width: 138px;
    height: 90px;
  }
}

.footer_slider_text {
  text-align: left;
  vertical-align: top;
  display: inline-block;
  font-size: 12px;
  letter-spacing: .025em;
  color: #fff;
  width: 154px;
  margin-left: 15px;
  line-height: 1.2;
}

@media only screen and (max-width: 750px) {
  .footer_slider_text {
    width: 175px;
  }
}

.footer_slider_text__title {
  font-family: "Gotham Pro Bold";
}

.footer .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.footer .slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.copyright {
  margin-top: 130px;
  border-top: 1px solid #171717;
  color: #696969;
  font-size: 12px;
  overflow: hidden;
  line-height: 60px;
  letter-spacing: .075em;
}

@media only screen and (max-width: 750px) {
  .copyright {
    font-size: 9px;
    text-align: center;
    line-height: 2;
    border: 0;
    padding-bottom: 10px;
    margin-top: 40px;
  }
}

.copyright .facility {
  float: right;
}

@media only screen and (max-width: 750px) {
  .copyright .facility {
    float: none;
    margin: auto;
    font-size: 10px;
  }
}

.copyright a {
  display: inline-block;
  vertical-align: middle;
  background-image: url(../img/png-sprite/96dpi/sprite.png);
  background-position: -933px -632px;
  width: 124px;
  height: 39px;
  background-size: 1076px, 1304px;
  background-repeat: no-repeat;
  opacity: .25;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-device-pixel-ratio: 2) {
  .copyright a {
    background-image: url(../img/png-sprite/192dpi/sprite.png);
  }
}

.copyright a:hover {
  opacity: 1;
}

@media only screen and (max-width: 750px) {
  .copyright .wrapper, .copyright .contact_form {
    width: 100%;
  }
}

.subscribe {
  height: 0;
  width: 100%;
  position: relative;
  z-index: 5;
}

@media only screen and (max-width: 750px) {
  .subscribe {
    display: none;
  }
}

.subscribe_scroll {
  min-height: 74px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.15);
  background: #fff;
  z-index: 2;
  text-align: center;
}

.subscribe_scroll .wrapper, .subscribe_scroll .contact_form {
  position: relative;
  padding: 10px 0px;
}

.subscribe_scroll.fix {
  position: fixed;
}

.subscribe_scroll.fix .has-error {
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-bottom: 30px;
}

.subscribe_scroll.fix .close {
  display: block;
}

.subscribe_scroll.no-scroll {
  position: absolute;
}

.subscribe_scroll.no-scroll .close {
  display: none;
}

.subscribe_text {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  float: left;
  line-height: 74px;
}

.subscribe_done {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  color: #000000;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  float: left;
  line-height: 74px;
  width: 100%;
  text-align: center;
  display: none;
}

.subscribe_form {
  display: inline-block;
  vertical-align: middle;
  font-size: 0;
}

.subscribe_form .form-group {
  display: inline-block;
  vertical-align: middle;
  position: relative;
}

.subscribe_form .form-control {
  border: none;
  border-bottom: 1px solid #cccccc;
  text-align: center;
  font-size: 12px;
  height: 42px;
  width: 344px;
}

.subscribe_form .form-control:focus {
  border-bottom: 1px solid #000000;
}

.subscribe_form .submit {
  display: block;
  width: 53px;
  height: 53px;
  font-size: 0;
  border: 1px solid #000;
  background-color: #fff;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  margin-left: 9px;
}

.subscribe_form .submit svg {
  width: 15px;
  height: 14px;
  fill: #000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.subscribe_form .submit:hover {
  background: #000;
}

.subscribe_form .submit:hover svg {
  fill: #fff;
}

.subscribe_form .help-block {
  font-size: 12px;
  display: none;
  position: absolute;
  left: 50%;
  bottom: -5px;
  -webkit-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
  background: #ef5d67;
  border-radius: 8px;
  width: 100%;
  line-height: 30px;
  height: 30px;
  color: #fff;
  letter-spacing: .025em;
}

.subscribe_form .help-block:before {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  top: -8px;
  left: 50%;
  -webkit-transform: rotate(-45deg) translateX(-50%);
          transform: rotate(-45deg) translateX(-50%);
  background: #ef5d67;
}

.subscribe_form .has-error .form-control {
  color: #ed4b56;
}

.subscribe_form .has-error .help-block {
  display: block;
}

.subscribe .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: #000;
  opacity: 0.71;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: none;
}

.subscribe .close:before {
  content: '';
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -1010px;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
}

.subscribe .close:hover {
  opacity: 1;
}

.header {
  height: 70px;
  border-bottom: 1px solid rgba(232, 237, 231, 0.07);
  position: fixed;
  z-index: 999;
  width: 100%;
  -webkit-transition: all .5s;
  transition: all .5s;
  padding: 14px 0;
  box-sizing: content-box;
}

@media only screen and (max-width: 750px) {
  .header {
    padding: 0;
    height: 48px;
  }
  .header .wrapper, .header .contact_form {
    position: static;
  }
}

.header.fix, .header.fixed {
  padding: 0;
  border-bottom: 0;
  background: #100d16;
}

.header.fixed {
  background: rgba(0, 0, 0, 0.8);
}

.header.fixed.fix {
  background: #100d16;
}

@media only screen and (max-width: 750px) {
  .header.fixed {
    background: #100d16;
  }
}

@media only screen and (min-width: 1200px) {
  .header.hide {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}

.header .logo {
  width: 100px;
  display: block;
  font-size: 0;
  float: left;
}

@media only screen and (max-width: 750px) {
  .header .logo {
    width: 70px;
  }
}

.header .logo:after {
  content: '';
  vertical-align: middle;
  height: 70px;
  display: inline-block;
  width: 1px;
}

@media only screen and (max-width: 750px) {
  .header .logo:after {
    height: 48px;
  }
}

.header .logo_svg {
  vertical-align: middle;
  width: 97px;
  display: inline-block;
  height: 30px;
}

@media only screen and (max-width: 750px) {
  .header .logo_svg {
    width: 66px;
  }
}

.header_right {
  float: right;
}

@media only screen and (max-width: 750px) {
  .header_right {
    visibility: hidden;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background: url("../img/plugins/header.jpg") center no-repeat;
    background-size: cover;
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: 250px;
  }
  .header_right.active {
    visibility: visible;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  .header_right:before {
    content: '';
    width: 100%;
    height: 48px;
    position: absolute;
    left: 0;
    top: 0;
    border-bottom: 1px solid rgba(232, 237, 231, 0.07);
  }
}

.header_menu {
  font-size: 0;
  display: inline-block;
  margin-right: 20px;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .header_menu {
    margin-top: 30px;
    overflow: auto;
    max-height: calc(100% - 170px);
    width: 100%;
  }
}

.header_menu_li {
  display: inline-block;
  margin-left: 20px;
}

.header_menu_li:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 750px) {
  .header_menu_li {
    display: block;
    margin-bottom: 40px;
  }
  .header_menu_li:first-child {
    margin-left: 20px;
  }
}

.header_menu_li a {
  text-transform: uppercase;
  color: #fff;
  display: block;
  font-size: 12px;
  letter-spacing: 0.025em;
  font-family: "Gotham Pro Black";
  position: relative;
}

@media only screen and (max-width: 750px) {
  .header_menu_li a {
    font-size: 15px;
  }
}

.header_menu_li a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #fff;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media only screen and (min-width: 1280px) {
  .header_menu_li a:hover:after {
    width: 20px;
  }
}

.header_social {
  font-size: 0;
  display: inline-block;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .header_social {
    position: absolute;
    left: 0;
    bottom: 10px;
    width: 100%;
  }
}

.header_social a {
  display: inline-block;
  margin-left: 20px;
  opacity: 0.5;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media only screen and (max-width: 750px) {
  .header_social a {
    margin-right: 10px;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

.header_social a:hover {
  opacity: 1;
}

.header_social_yt {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -739px;
  width: 23px;
  height: 17px;
  background-repeat: no-repeat;
}

.header_social_in {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -915px;
  width: 17px;
  height: 17px;
  background-repeat: no-repeat;
}

.header_social_fb {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -957px;
  width: 9px;
  height: 17px;
  background-repeat: no-repeat;
}

.header_social_p {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -936px;
  width: 14px;
  height: 17px;
  background-repeat: no-repeat;
}

.header_social_g {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -662px;
  width: 27px;
  height: 17px;
  background-repeat: no-repeat;
}

.header_search-btn {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -104px;
  width: 22px;
  height: 70px;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 37px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media only screen and (max-width: 750px) {
  .header_search-btn {
    display: none;
  }
}

@media only screen and (min-width: 1280px) {
  .header_search-btn:hover {
    opacity: .5;
  }
}

.header_search {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 5;
  top: 0;
  left: 0;
  display: none;
}

.header_search-mob {
  display: none;
}

@media only screen and (max-width: 750px) {
  .header_search-mob {
    display: block;
    position: relative;
    margin-top: 60px;
  }
  .header_search-mob .header_search_input {
    background: url("../img/minified-svg/search-mob.svg") no-repeat right;
    background-color: #26211e;
    background-size: 25px;
    border: 1px solid rgba(255, 255, 255, 0.17);
    height: 33px;
    border-radius: 33px;
    text-align: left;
    padding-left: 20px;
  }
  .header_search-mob .header_search_close {
    display: none;
  }
}

.header_search .wrapper, .header_search .contact_form {
  height: 100%;
  position: relative;
}

.header_search_input {
  display: block;
  height: 100%;
  width: 100%;
  font-size: 12px;
  font-family: "Gotham Pro Black";
  text-transform: uppercase;
  padding-left: 120px;
  background: none;
  color: #fff;
}

.header_search_close {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 27px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media only screen and (min-width: 1280px) {
  .header_search_close:hover {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
}

@media only screen and (max-width: 750px) {
  .header_search_close {
    right: 50px;
  }
}

.header_search_close i {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  cursor: pointer;
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.header_search_close i:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.header_search-result {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0px 2px 21px 0px rgba(0, 0, 0, 0.65);
  background-color: rgba(255, 255, 255, 0.92);
  padding-top: 13px;
  display: none;
}

.header_search-result .wrapper, .header_search-result .contact_form {
  position: static;
}

.header_search-result .header_search-link {
  display: block;
  height: 54px;
  line-height: 54px;
  border: 1px solid #000;
  text-align: center;
  width: 226px;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: .075em;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #000;
  margin: 28px auto;
}

.header_search-result .header_search-link:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .header_search-result .header_search-link {
    border: 1px solid #fff;
    color: #fff;
  }
  .header_search-result .header_search-link:hover {
    background: #fff;
    border: 1px solid #fff;
    color: #000;
  }
}

@media only screen and (max-width: 750px) {
  .header_search-result {
    background: none;
    width: 250px;
    left: auto;
    right: 0;
    margin-top: 90px;
    box-shadow: none;
    max-height: calc(100% - 130px);
    overflow: auto;
    position: fixed;
    top: 0;
  }
  .header_search-result .wrapper, .header_search-result .contact_form {
    width: 100%;
  }
  .header_search-result .news_item.small {
    display: block;
    float: none;
    width: 100%;
    height: auto;
    border: none;
    margin: 0;
  }
  .header_search-result .news_item.small:hover, .header_search-result .news_item.small.hover {
    background: rgba(0, 0, 0, 0.24);
  }
  .header_search-result .news_content {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin: 0 10px;
  }
  .header_search-result .news_img, .header_search-result .img_hover, .header_search-result .img_hover_show, .header_search-result .news_type, .header_search-result .news_tab {
    display: none;
  }
  .header_search-result .news_title {
    font-size: 10px;
    font-family: "Gotham Pro Bold";
    color: #fff;
    line-height: 15px;
  }
  .header_search-result .news_time {
    font-size: 9px;
    font-family: "Gotham Pro Bold";
  }
}

.header_search-in {
  margin: 0 -13px;
}

.header_search-in:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .header_search-in {
    margin: 0;
  }
  .header_search-in h1 {
    color: #fff;
    text-align: center;
    font-size: 12px;
    font-family: "Gotham Pro Bold";
    text-transform: uppercase;
  }
}

.header .menu_mob {
  display: none;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  .header .menu_mob {
    display: block;
    background-image: url("../img/svg-sprite/sprite.svg");
    background-position: -4px -527px;
    width: 29px;
    height: 17px;
    background-repeat: no-repeat;
    position: absolute;
    right: 14px;
    top: 16px;
  }
}

.header .menu_mob.hide {
  display: none;
}

.header .mask-mob {
  display: none;
}

@media only screen and (max-width: 750px) {
  .header .mask-mob {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
    z-index: -1;
  }
  .header .mask-mob.active {
    display: block;
  }
}

.header .close-header_right {
  display: none;
}

@media only screen and (max-width: 750px) {
  .header .close-header_right {
    position: absolute;
    left: 15px;
    top: 15px;
    display: block;
    right: 27px;
    cursor: pointer;
    width: 18px;
    height: 18px;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
}

@media only screen and (max-width: 750px) and (min-width: 1280px) {
  .header .close-header_right:hover {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

@media only screen and (max-width: 750px) {
  .header .close-header_right i {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    cursor: pointer;
    display: block;
    width: 24px;
    height: 3px;
    background: #c9c9c8;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .header .close-header_right i:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.jobs .wrapper, .jobs .contact_form {
  position: relative;
}

.jobs .contact_download_btn {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -264px;
  width: 54px;
  height: 54px;
  background-repeat: no-repeat;
}

.jobs_top:before {
  background-image: url("../img/plugins/jobs.jpg");
}

@media only screen and (max-width: 750px) {
  .jobs_top:before {
    background-image: url("../img/plugins/jobs-mob.jpg");
  }
}

.jobs_top_title {
  background-image: url("../img/plugins/jobs_top.png");
}

@media only screen and (max-width: 750px) {
  .jobs_top_title {
    background-image: url("../img/plugins/jobs-mob.png");
  }
}

.masonry {
  padding-top: 30px;
}

.masonry_item {
  width: 360px;
  margin-bottom: 60px;
}

@media only screen and (max-width: 750px) {
  .masonry_item {
    width: 100%;
    margin-bottom: 10px;
    border-bottom: 1px solid #ededed;
  }
}

.masonry_item.hide .masonry_title:after {
  width: 0px;
}

.masonry_time {
  font-family: "Gotham Pro Bold";
  opacity: 0.5;
  font-size: 10px;
  letter-spacing: .01em;
  margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
  .masonry_time {
    font-size: 9px;
    margin-bottom: 0;
  }
}

.masonry_title {
  font-family: "Gotham Pro Black";
  font-size: 12px;
  letter-spacing: .075em;
  text-transform: uppercase;
  margin-bottom: 15px;
  line-height: 20px;
}

@media only screen and (max-width: 750px) {
  .masonry_title {
    font-size: 10px;
    margin-bottom: 0;
    line-height: 16px;
  }
}

.masonry_title:after {
  content: '';
  width: 80px;
  height: 1px;
  background: #f2476f;
  margin-top: 10px;
  display: block;
}

@media only screen and (max-width: 750px) {
  .masonry_title:after {
    width: 30px;
    margin-top: 5px;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
}

.masonry_content {
  line-height: 24px;
  font-size: 12px;
  letter-spacing: .05em;
}

@media only screen and (max-width: 750px) {
  .masonry_content {
    display: none;
    font-size: 10px;
    letter-spacing: .075em;
    line-height: 15px;
    margin-bottom: 5px;
    padding-top: 5px;
  }
}

.journal .wrapper, .journal .contact_form {
  padding-bottom: 200px;
}

@media only screen and (max-width: 750px) {
  .journal .wrapper, .journal .contact_form {
    padding-bottom: 10px;
  }
}

.journal_title, .recommended_title {
  font-size: 30px;
  text-transform: uppercase;
  font-family: "Gotham Pro Black";
}

@media only screen and (max-width: 750px) {
  .journal_title, .recommended_title {
    font-size: 11px;
  }
}

.journal_title:after, .recommended_title:after {
  content: '';
  display: block;
  height: 1px;
  width: 80px;
  background: #000;
  margin-top: 27px;
}

@media only screen and (max-width: 750px) {
  .journal_title:after, .recommended_title:after {
    display: none;
  }
}

.journal_btn, .test_btn {
  display: block;
  height: 54px;
  line-height: 54px;
  border: 1px solid #000;
  text-align: center;
  width: 226px;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: .075em;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #000;
}

.journal_btn:hover, .test_btn:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .journal_btn, .test_btn {
    margin: auto;
    font-size: 9px;
  }
}

.journal_list {
  width: 282px;
  height: 360px;
}

@media only screen and (max-width: 750px) {
  .journal_list {
    width: 140px;
    height: 180px;
  }
}

.journal_img {
  width: 100%;
  height: 100%;
  display: block;
  cursor: pointer;
  -webkit-transition: all .5s;
  transition: all .5s;
}

@media only screen and (min-width: 1280px) {
  .journal_img:hover {
    opacity: 0.5;
  }
}

.journal_slider {
  position: relative;
  margin-bottom: 35px;
  margin-top: 34px;
}

.journal_slider:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .journal_slider {
    margin-top: 15px;
    margin-bottom: 15px;
  }
}

.journal .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.journal .slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  margin: 0 -12px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .journal .slick-list {
    margin: 0;
    margin-left: -135px;
    overflow: visible;
  }
}

.journal .slick-slide {
  display: block;
  float: left;
  padding: 0 12px;
}

@media only screen and (max-width: 750px) {
  .journal .slick-slide {
    padding: 0 5px;
  }
}

.journal .slick-prev {
  display: block;
  font-size: 0;
  background: #fff;
  border: 1px solid #000;
  position: absolute;
  left: -90px;
  top: 50%;
  margin-top: -25px;
  z-index: 2;
}

.journal .slick-prev:after, .journal .slick-prev:before {
  background: #000;
}

@media only screen and (max-width: 1380px) {
  .journal .slick-prev {
    left: -20px;
  }
}

.journal .slick-prev:hover {
  background: #000;
}

.journal .slick-prev:hover:after, .journal .slick-prev:hover:before {
  background: #fff;
}

.journal .slick-next {
  display: block;
  font-size: 0;
  background: #fff;
  border: 1px solid #000;
  position: absolute;
  right: -90px;
  top: 50%;
  margin-top: -25px;
  z-index: 2;
}

.journal .slick-next:after, .journal .slick-next:before {
  background: #000;
}

@media only screen and (max-width: 1380px) {
  .journal .slick-next {
    right: -20px;
  }
}

.journal .slick-next:hover {
  background: #000;
}

.journal .slick-next:hover:after, .journal .slick-next:hover:before {
  background: #fff;
}

.journal .slick-disabled {
  pointer-events: none;
  opacity: 0.36 !important;
}

@media only screen and (max-width: 750px) {
  .journal .wrapper, .journal .contact_form {
    width: 100%;
    text-align: center;
    overflow: hidden;
  }
}

.journal_popup {
  height: 0;
  width: 100%;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .journal_popup .journal_li {
    border: none !important;
    -webkit-transition: all 1s;
    transition: all 1s;
  }
  .journal_popup .journal_li .journal_li_img {
    -webkit-transition: -webkit-transform .5s .5s;
    transition: -webkit-transform .5s .5s;
    transition: transform .5s .5s;
    transition: transform .5s .5s, -webkit-transform .5s .5s;
  }
  .journal_popup .journal_li:last-child {
    float: left;
    margin: 0 16px;
  }
  .journal_popup .journal_li.active .journal_li_img, .journal_popup .journal_li.slick-current .journal_li_img {
    -webkit-transition: -webkit-transform .5s .5s;
    transition: -webkit-transform .5s .5s;
    transition: transform .5s .5s;
    transition: transform .5s .5s, -webkit-transform .5s .5s;
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
    border: 4px solid #fff;
    opacity: 1;
  }
}

@media only screen and (max-width: 750px) and (max-width: 750px) {
  .journal_popup .mobile .close {
    position: absolute;
    right: 15px;
    top: 11px;
    display: block;
    cursor: pointer;
    width: 18px;
    height: 18px;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
    background: none;
  }
  .journal_popup .mobile .close:before {
    display: none;
  }
  .journal_popup .mobile .close i {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    cursor: pointer;
    display: block;
    width: 24px;
    height: 3px;
    background: #c9c9c8;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .journal_popup .mobile .close i:nth-child(1) {
    -webkit-transform: translate(-50%, -50%) rotate(-45deg);
            transform: translate(-50%, -50%) rotate(-45deg);
  }
}

.journal_popup_slider {
  position: relative;
  margin-bottom: 35px;
}

.journal_popup_slider:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .journal_popup_slider {
    margin-top: 35px;
    margin-bottom: 15px;
    width: 100%;
    height: calc(100% - 276px);
    overflow-y: auto;
    overflow-x: hidden;
  }
}

.journal_popup .slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.journal_popup .slick-list {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  margin: 0 -12px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .journal_popup .slick-list {
    margin: 0;
    overflow: visible;
  }
}

.journal_popup .slick-slide {
  display: block;
  float: left;
  padding: 0 12px;
}

@media only screen and (max-width: 750px) {
  .journal_popup .slick-slide {
    padding: 0 5px;
  }
}

.journal_popup .slick-prev {
  display: block;
  font-size: 0;
  background: none;
  border: 1px solid #fff;
  position: absolute;
  left: -90px;
  top: 50%;
  margin-top: -25px;
  z-index: 9999;
}

.journal_popup .slick-prev:after, .journal_popup .slick-prev:before {
  background: #fff;
}

@media only screen and (max-width: 1380px) {
  .journal_popup .slick-prev {
    left: -20px;
  }
}

.journal_popup .slick-prev:hover {
  background: #fff;
}

.journal_popup .slick-prev:hover:after, .journal_popup .slick-prev:hover:before {
  background: #000;
}

.journal_popup .slick-next {
  display: block;
  font-size: 0;
  background: none;
  border: 1px solid #fff;
  position: absolute;
  right: -90px;
  top: 50%;
  margin-top: -25px;
  z-index: 9999;
}

.journal_popup .slick-next:after, .journal_popup .slick-next:before {
  background: #fff;
}

@media only screen and (max-width: 1380px) {
  .journal_popup .slick-next {
    right: -20px;
  }
}

.journal_popup .slick-next:hover {
  background: #fff;
}

.journal_popup .slick-next:hover:after, .journal_popup .slick-next:hover:before {
  background: #000;
}

.journal_popup .slick-disabled {
  pointer-events: none;
  opacity: 0.36 !important;
}

.journal_popup_img {
  border: 11px #fff solid;
  width: 283px;
  height: 361px;
  float: left;
  display: block;
  box-sizing: content-box;
  margin-right: 28px;
}

@media only screen and (min-width: 1200px) {
  .journal_popup_img {
    margin-right: 0;
  }
}

.journal_popup_item {
  position: relative;
  color: #fff;
}

.journal_popup_title {
  clear: both;
  width: 305px;
  text-align: center;
  font-size: 18px;
  margin-top: 8px;
  line-height: 56px;
}

@media only screen and (max-width: 750px) {
  .journal_popup_title {
    display: none;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .journal_popup_title {
    display: block;
  }
}

.journal_popup_ul {
  text-align: left;
}

@media only screen and (min-width: 1200px) {
  .journal_popup_ul {
    max-height: 380px;
    overflow: auto;
    position: relative;
    padding-left: 30px;
  }
}

@media only screen and (max-width: 1200px) {
  .journal_popup_ul {
    margin-left: 330px;
  }
}

@media only screen and (max-width: 750px) {
  .journal_popup_ul {
    margin-left: 0px;
  }
}

.journal_popup_list {
  font-size: 12px;
  margin-top: 18px;
  line-height: 16px;
  overflow: hidden;
}

.journal_popup_list a {
  color: #fff;
  text-decoration: underline;
}

@media only screen and (max-width: 750px) {
  .journal_popup_list {
    line-height: 15px;
  }
  .journal_popup_list:after {
    content: "";
    display: table;
    clear: both;
  }
}

.journal_popup_list:nth-child(0):before {
  content: "0";
}

.journal_popup_list:nth-child(1):before {
  content: "1";
}

.journal_popup_list:nth-child(2):before {
  content: "2";
}

.journal_popup_list:nth-child(3):before {
  content: "3";
}

.journal_popup_list:nth-child(4):before {
  content: "4";
}

.journal_popup_list:nth-child(5):before {
  content: "5";
}

.journal_popup_list:nth-child(6):before {
  content: "6";
}

.journal_popup_list:nth-child(7):before {
  content: "7";
}

.journal_popup_list:nth-child(8):before {
  content: "8";
}

.journal_popup_list:nth-child(9):before {
  content: "9";
}

.journal_popup_list:nth-child(10):before {
  content: "10";
}

.journal_popup_list:nth-child(11):before {
  content: "11";
}

.journal_popup_list:nth-child(12):before {
  content: "12";
}

.journal_popup_list:nth-child(13):before {
  content: "13";
}

.journal_popup_list:nth-child(14):before {
  content: "14";
}

.journal_popup_list:before {
  border-radius: 100%;
  background: rgba(242, 71, 111, 0.25);
  display: block;
  float: left;
  width: 34px;
  height: 34px;
  text-align: center;
  line-height: 34px;
  margin-right: 10px;
}

@media only screen and (max-width: 750px) {
  .journal_popup_list:before {
    display: block;
    float: left;
  }
}

.journal_popup_list span {
  display: block;
}

@media only screen and (max-width: 750px) {
  .journal_popup_list span {
    display: block;
    padding-left: 45px;
  }
}

.journal_scroll {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  background: rgba(18, 16, 22, 0.98);
  z-index: 100;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity .5s, visibility 0s 1s, -webkit-transform .5s;
  transition: opacity .5s, visibility 0s 1s, -webkit-transform .5s;
  transition: opacity .5s, transform .5s, visibility 0s 1s;
  transition: opacity .5s, transform .5s, visibility 0s 1s, -webkit-transform .5s;
  padding-bottom: 20px;
  z-index: 999;
}

@media only screen and (max-width: 750px) {
  .journal_scroll {
    background: url("../img/plugins/slider.jpg");
    background-size: cover;
    height: 100%;
    position: fixed !important;
    padding-bottom: 0;
  }
}

.journal_scroll .wrapper, .journal_scroll .contact_form {
  position: relative;
  padding: 10px 0px;
}

@media only screen and (max-width: 750px) {
  .journal_scroll .wrapper, .journal_scroll .contact_form {
    height: 100%;
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .journal_scroll .wrapper.desctop, .journal_scroll .desctop.contact_form {
    display: block;
  }
}

@media only screen and (max-width: 750px) {
  .journal_scroll .wrapper.desctop, .journal_scroll .desctop.contact_form {
    display: none;
  }
}

@media only screen and (min-width: 1200px) {
  .journal_scroll .wrapper.mobile, .journal_scroll .mobile.contact_form {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  .journal_scroll .wrapper.mobile, .journal_scroll .mobile.contact_form {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  .journal_scroll .wrapper.mobile, .journal_scroll .mobile.contact_form {
    display: block;
  }
}

.journal_scroll.fix {
  position: fixed;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.journal_scroll.show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  -webkit-transition: opacity .5s, visibility 0s 0s, -webkit-transform .5s;
  transition: opacity .5s, visibility 0s 0s, -webkit-transform .5s;
  transition: opacity .5s, transform .5s, visibility 0s 0s;
  transition: opacity .5s, transform .5s, visibility 0s 0s, -webkit-transform .5s;
}

.journal_scroll .close {
  position: absolute;
  right: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: #000;
  opacity: 0.71;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.journal_scroll .close:before {
  content: '';
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -1010px;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
}

@media only screen and (min-width: 1280px) {
  .journal_scroll .close:hover {
    opacity: 1;
  }
}

@media only screen and (max-width: 1380px) {
  .journal_scroll .close {
    /*fix ???*/
  }
}

.journal__white {
  border: 1px #fff solid;
  color: #fff;
  float: left;
}

.journal__white:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (min-width: 1280px) {
  .journal__white:hover {
    background: #fff;
    color: #000;
  }
}

.journal_archive {
  display: block;
  float: right;
  color: #fff;
  text-decoration: underline;
  height: 54px;
  line-height: 54px;
  font-size: 12px;
  font-family: "Gotham Pro Black";
  letter-spacing: 0.075em;
}

@media only screen and (max-width: 750px) {
  .journal_archive {
    width: 49%;
    text-align: center;
    display: inline-block;
    float: none;
    line-height: normal;
    font-size: 11px;
    margin: 20px 0;
    height: auto;
    text-decoration: none;
  }
}

.journal_ul {
  clear: both;
  margin: 0 -16px;
  text-align: left;
  font-size: 0;
  margin-top: 13px;
  margin-bottom: 20px;
}

.journal_ul:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 1380px) {
  .journal_ul {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  .journal_ul {
    display: block;
    margin-top: 60px;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .journal_ul {
    display: none;
  }
}

.journal_li {
  margin: 0 9px;
  display: inline-block;
  border: 1px solid rgba(236, 236, 236, 0.15);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  position: relative;
}

.journal_li_img {
  border: 7px solid #fff;
  width: 89px;
  height: 114px;
  display: block;
  box-sizing: content-box;
  opacity: .15;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.journal_li__title {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  display: block;
  font-size: 12px;
  color: #fff;
  text-align: center;
  opacity: 0.5;
}

.journal_li:last-child {
  float: right;
  margin-left: 9px;
}

.journal_li.active, .journal_li:hover {
  border: 1px solid #ececec;
}

.journal_li.active .journal_li_img, .journal_li:hover .journal_li_img {
  opacity: 1;
}

.journal_li.active .journal_li__title, .journal_li:hover .journal_li__title {
  display: none;
}

@media only screen and (max-width: 750px) {
  .journal_li.active .journal_li__title, .journal_li.slick-current .journal_li__title {
    display: block;
    top: -50px;
    width: 100%;
    opacity: 1;
    text-transform: uppercase;
  }
}

.journal_mask {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  z-index: 99;
}

.journal_mask.show {
  display: block;
}

.journal_bottom-mob {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #120d18;
}

@media only screen and (max-width: 750px) {
  .journal_popup_img {
    display: none;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .journal_popup_slider {
    height: calc(100% - 53px);
    margin-top: 0;
  }
  .journal_popup_img {
    display: block;
    width: 130px;
    height: 180px;
  }
  .journal_popup_list {
    overflow: hidden;
  }
  .journal_popup_title {
    width: 155px;
  }
  .journal_popup_ul {
    margin-left: 180px;
  }
}

.line_scroll {
  position: fixed;
  top: 0;
  height: 4px;
  width: 100%;
  z-index: 1000;
}

.line_scroll span {
  width: 10%;
  height: 100%;
  background: #ec008c;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.article .image_title {
  margin-bottom: 50px;
}

.article .news_type {
  z-index: 10;
}

.article_top {
  border-bottom: 1px solid #e8e8e8;
}

.article_top_title {
  font-size: 30px;
  color: #000;
  line-height: 36px;
  font-family: "Gotham Pro Black";
  padding-top: 100px;
  width: 60%;
}

.article_top_title time {
  font-family: "Gotham Pro";
  font-size: 12px;
  display: block;
  line-height: 10px;
}

@media only screen and (max-width: 750px) {
  .article_top_title {
    width: 100%;
    font-size: 20px;
    line-height: 25px;
  }
}

.article_top .wrapper, .article_top .contact_form {
  padding-bottom: 15px;
}

.article_top.image {
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .article_top.image {
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .article_top.image {
    height: 300px;
  }
}

.article_top.image .black-gradient {
  max-width: 1400px;
  background-size: cover;
  background-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 750px) {
  .article_top.image .black-gradient {
    display: none;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .article_top.image .black-gradient {
    display: block;
  }
}

.article_top.image .black-gradient.mobile {
  display: none;
}

@media only screen and (max-width: 750px) {
  .article_top.image .black-gradient.mobile {
    display: block;
  }
}

@media only screen and (max-width: 750px) and (orientation: landscape) {
  .article_top.image .black-gradient.mobile {
    display: none;
  }
}

.article_top.image .black-gradient:before {
  content: '';
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  background: -webkit-linear-gradient(left, black 70%, transparent 100%);
  background: linear-gradient(to right, black 70%, transparent 100%);
  right: 100%;
  margin-right: -30%;
}

@media only screen and (max-width: 750px) {
  .article_top.image .black-gradient:before {
    display: none;
  }
}

.article_top.image .black-gradient:after {
  content: '';
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 1;
  position: absolute;
  background: -webkit-linear-gradient(right, black 70%, transparent 100%);
  background: linear-gradient(to left, black 70%, transparent 100%);
  left: 100%;
  margin-left: -30%;
}

@media only screen and (max-width: 750px) {
  .article_top.image .black-gradient:after {
    display: none;
  }
}

.article_top.image .black-gradient.none {
  max-width: none;
}

.article_top.image .black-gradient.none:after, .article_top.image .black-gradient.none:before {
  display: none;
}

.article_top.image:after {
  content: '';
  background: #000;
  opacity: .25;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
}

.article_top.image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url("../img/plugins/slider/top.png") top center no-repeat;
  background-size: 100% auto;
}

.article_top.image .wrapper, .article_top.image .contact_form {
  position: relative;
  z-index: 2;
}

@media only screen and (max-width: 750px) {
  .article_top.image .wrapper, .article_top.image .contact_form {
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    z-index: 4;
  }
}

.article_top.image .wrapper:after, .article_top.image .contact_form:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/png-sprite/96dpi/sprite.png);
  background-position: 0px 0px;
  width: 1076px;
  height: 628px;
  background-size: 1076px, 1304px;
  background-repeat: no-repeat;
  display: block;
  -webkit-transform: translateX(-30%);
          transform: translateX(-30%);
  z-index: -1;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-device-pixel-ratio: 2) {
  .article_top.image .wrapper:after, .article_top.image .contact_form:after {
    background-image: url(../img/png-sprite/192dpi/sprite.png);
  }
}

@media only screen and (max-width: 750px) {
  .article_top.image .wrapper:after, .article_top.image .contact_form:after {
    display: none;
  }
}

.article_top.image .article_top_title {
  color: #fff;
  padding-top: 300px;
}

@media only screen and (max-width: 750px) {
  .article_top.image .article_top_title {
    padding-top: 0;
  }
}

.article_top.none:after {
  display: none;
}

.article article {
  width: 895px;
  font-size: 16px;
  white-space: normal !important;
  line-height: 26px;
  padding-right: 95px;
  padding-left: 25px;
}

.article article p {
  margin-bottom: 16px;
  white-space: normal !important;
}

.article article i, .article article em {
  font-family: "Gotham Pro Italic";
}

.article article .wp-caption {
  width: auto !important;
}

.article article iframe {
  width: 100% !important;
}

@media only screen and (max-width: 750px) {
  .article article iframe.instagram-media {
    width: 300px !important;
  }
}

@media only screen and (max-width: 750px) {
  .article article {
    width: 100%;
    font-size: 14px;
    line-height: 20px;
    padding-top: 15px;
    padding-right: 0;
    padding-left: 0;
  }
}

.article article ul li {
  list-style: disc inside;
}

.article article ol li {
  list-style: decimal inside;
}

.article article img:not(.attachment-thumbnail) {
  max-width: 100% !important;
  height: auto !important;
  margin: 12px 0;
}

@media only screen and (max-width: 750px) {
  .article article img:not(.attachment-thumbnail) {
    width: calc(100% + 20px) !important;
    max-width: calc(100% + 20px) !important;
    border: none;
    margin: 12px -10px !important;
  }
}

.article article .img_left {
  clear: both;
  color: #676767;
  margin: 12px -25px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 5px 0 20px -5px #ccc;
  padding: 25px;
}

.article article .img_left:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .article article .img_left {
    padding: 15px;
    margin: 12px -10px;
  }
}

.article article .img_left .alt {
  display: none;
}

.article article .img_left img {
  float: left;
  width: 380px !important;
  margin: 0;
  margin-bottom: 1px;
  margin-right: 24px;
}

.article article .img_left img.top {
  width: auto !important;
  margin-top: -25px;
}

@media only screen and (max-width: 750px) {
  .article article .img_left img.top {
    margin-top: -15px;
  }
}

.article article .img_left img.top-l {
  width: auto !important;
}

@media only screen and (max-width: 750px) {
  .article article .img_left img.top-l {
    max-width: 100% !important;
  }
}

.article article .img_left img.lupa {
  width: 100% !important;
}

@media only screen and (max-width: 750px) {
  .article article .img_left img {
    width: 100% !important;
    margin: 10px 10px 10px 0;
  }
}

.article article .img_left.s50 {
  width: 430px;
  display: inline-block;
  padding: 25px 30px;
}

@media only screen and (max-width: 750px) {
  .article article .img_left.s50 {
    padding: 15px;
    width: 100% !important;
  }
}

.article article .img_left.s50:nth-child(odd) {
  float: right;
  margin-right: 0;
}

@media only screen and (max-width: 750px) {
  .article article .img_left.s50:nth-child(odd) {
    float: none;
  }
}

.article article .img_left.s50 img {
  margin: auto;
  float: none;
  display: block;
  margin-bottom: 20px;
}

.article article .img_right {
  clear: both;
  color: #676767;
  margin: 12px  -25px;
  margin-top: 30px;
  margin-bottom: 30px;
  box-shadow: 5px 0 20px -5px #ccc;
  padding: 25px;
}

.article article .img_right:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .article article .img_right {
    margin: 12px -10px;
    padding: 15px;
  }
}

.article article .img_right .alt {
  display: none;
}

.article article .img_right img {
  float: right;
  width: 380px !important;
  margin: 0;
  margin-bottom: 1px;
  margin-left: 24px;
}

.article article .img_right img.top {
  width: auto !important;
  margin-top: -25px;
}

@media only screen and (max-width: 750px) {
  .article article .img_right img.top {
    margin-top: -10px;
  }
}

.article article .img_right img.top-l {
  width: auto !important;
}

@media only screen and (max-width: 750px) {
  .article article .img_right img {
    width: 100% !important;
    margin: 0;
  }
}

.article article h2, .article article h3, .article article h4 {
  font-size: 18px;
  font-family: "Gotham Pro Black";
  text-transform: uppercase;
  margin-top: 50px;
  margin-bottom: 6px;
}

@media only screen and (max-width: 750px) {
  .article article h2, .article article h3, .article article h4 {
    font-size: 15px;
  }
}

.article article strong, .article article b {
  font-family: "Gotham Pro Bold";
}

.article article table {
  width: 100%;
  border-radius: 6px;
  box-shadow: 0px 0px 6px 1px rgba(7, 7, 7, 0.07);
  margin: 24px 0;
}

.article article table thead {
  font-family: "Gotham Pro Black";
  border-bottom: 1px solid #ededed;
}

.article article table td {
  padding: 0 25px;
  height: 50px;
  vertical-align: middle;
}

@media only screen and (max-width: 750px) {
  .article article table td {
    padding: 0 5px;
  }
}

.article article blockquote:not(.instagram-media) {
  font-family: "Gotham Pro Italic";
  position: relative;
  padding: 30px 40px;
  color: #a4a4a4;
  margin-top: 30px;
  margin-bottom: 30px;
}

@media only screen and (max-width: 750px) {
  .article article blockquote:not(.instagram-media) {
    padding: 30px 0px;
  }
}

.article article blockquote:not(.instagram-media):before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -471px;
  width: 31px;
  height: 24px;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 750px) {
  .article article blockquote:not(.instagram-media):before {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.article article blockquote:not(.instagram-media):after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -499px;
  width: 31px;
  height: 24px;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 750px) {
  .article article blockquote:not(.instagram-media):after {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
}

.article article .source {
  line-height: 18px;
  font-family: "Gotham Pro";
  position: relative;
  margin-left: 40px;
}

.article article .source:after {
  content: "";
  display: table;
  clear: both;
}

.article article .source span {
  font-family: "Gotham Pro Black";
  display: block;
  text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
  .article article .source {
    margin-left: 0;
    line-height: 14px;
    margin-bottom: 20px;
  }
}

.article article .source.link {
  margin-top: -20px;
  color: #000;
}

.article article .source.link a {
  color: #000;
  font-family: "Gotham Pro";
  text-decoration: underline;
}

.article article .source.link a:hover {
  text-decoration: none;
}

.article article .source.autor {
  margin-left: 0;
  display: inline-block;
  white-space: nowrap;
  color: #000;
  padding-top: 21px;
  margin-top: 30px;
  margin-bottom: 60px;
}

.article article .blockquote_image {
  width: 64px;
  height: 64px;
  position: relative;
  overflow: hidden;
  border: 9px solid #fff;
  box-shadow: 0 0 1px 1px #d8d8d8;
  display: block;
  float: left;
  font-size: 0;
  border-radius: 100%;
  box-sizing: content-box;
  margin-top: -20px;
  margin-right: 9px;
}

@media only screen and (max-width: 750px) {
  .article article .blockquote_image {
    width: 28px;
    height: 28px;
    margin-top: -4px;
    border: 3px solid #fff;
  }
}

.article article .blockquote_image .alt {
  display: none;
}

.article article .blockquote_image img {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  min-width: 66px;
  min-height: 66px;
  margin: 0;
  display: block;
  width: 66px;
}

@media only screen and (max-width: 750px) {
  .article article .blockquote_image img {
    min-width: 30px;
    min-height: 30px;
    width: 30px !important;
    height: auto !important;
    max-height: 1000% !important;
    margin: 0 !important;
  }
}

.article article .blockquote_image img.vertical {
  width: auto !important;
  height: 66px !important;
  max-width: 1000% !important;
}

@media only screen and (max-width: 750px) {
  .article article .blockquote_image img.vertical {
    height: 30px !important;
  }
}

.article article .alt {
  font-family: "Gotham Pro Italic";
  color: #676767;
  margin-top: -10px;
  margin-bottom: 24px;
  font-size: 13px;
  line-height: 19px;
}

.article article a {
  font-family: "Gotham Pro Black";
  color: #000;
  text-decoration: underline;
}

.article article a:hover {
  text-decoration: none;
}

.article .wrapper, .article .contact_form {
  position: relative;
}

.article_social {
  font-size: 0;
  padding-top: 23px;
}

@media only screen and (max-width: 750px) {
  .article_social {
    display: none;
  }
}

.article_fb {
  text-align: center;
  display: inline-block;
  font-size: 10px;
  font-family: "Gotham Pro Bold";
  margin-right: 35px;
  cursor: pointer;
}

.article_fb:before {
  content: '';
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -612px;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  display: block;
}

.article_gl {
  text-align: center;
  display: inline-block;
  font-size: 10px;
  font-family: "Gotham Pro Bold";
  margin-right: 35px;
  cursor: pointer;
}

.article_gl:before {
  content: '';
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -580px;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  display: block;
}

.article_tw {
  text-align: center;
  display: inline-block;
  font-size: 10px;
  font-family: "Gotham Pro Bold";
  cursor: pointer;
}

.article_tw:before {
  content: '';
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -548px;
  width: 28px;
  height: 28px;
  background-repeat: no-repeat;
  display: block;
}

.article .anchor {
  background: #eeedee;
  color: #000;
  display: inline-block;
  font-size: 10px;
  font-family: "Gotham Pro Black";
  padding: 0 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: uppercase;
  text-decoration: none;
  line-height: 29px;
}

.article .anchor:before {
  content: '';
  display: inline-block;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -1025px;
  width: 8px;
  height: 9px;
  background-repeat: no-repeat;
  margin-right: 2px;
}

.photo_title {
  font-size: 18px;
  font-family: "Gotham Pro Black";
  text-transform: uppercase;
  letter-spacing: .05em;
}

.sidebar {
  position: absolute;
  top: 0;
  width: 280px;
}

.sidebar:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .sidebar {
    width: 100%;
    position: static !important;
  }
}

.sidebar.fix {
  position: fixed;
  bottom: 0;
  top: auto;
}

.sidebar.fix.bottom {
  position: absolute;
}

.sidebar_wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
}

@media only screen and (max-width: 750px) {
  .sidebar_wrap {
    position: static !important;
    height: auto;
    width: 100%;
  }
}

.sidebar_title {
  font-size: 18px;
  font-family: "Gotham Pro Black";
  margin-bottom: 20px;
  padding-top: 30px;
  text-transform: uppercase;
}

@media only screen and (max-width: 750px) {
  .sidebar_title {
    display: none;
  }
}

.sidebar .news_item, .sidebar .fb_group {
  margin: 0;
  margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
  .sidebar .news_item, .sidebar .fb_group {
    display: none;
  }
}

.sidebar .news_item.ads, .sidebar .fb_group.ads {
  display: block;
  width: 100%;
  height: auto;
}

.recommended {
  padding-top: 30px;
}

.photogallery-js {
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all .5s .5s;
  transition: all .5s .5s;
  top: 0;
  left: 0;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0px 0px 18px 0px rgba(7, 7, 7, 0.21);
}

.photogallery-js.active {
  visibility: visible;
  opacity: 1;
}

.photogallery-js .bx-viewport, .photogallery-js .bx-wrapper {
  width: 100% !important;
  height: 100% !important;
}

@media only screen and (max-width: 750px) {
  .photogallery-js {
    background: #000;
  }
}

.photogallery-js .bx-prev {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  font-size: 0;
  z-index: 60;
  margin-left: -690px;
  opacity: 1;
}

@media only screen and (max-width: 1380px) {
  .photogallery-js .bx-prev {
    margin-left: -590px;
  }
}

.photogallery-js .bx-prev:hover {
  background: #000;
  border-color: #000;
}

.photogallery-js .bx-next {
  position: absolute;
  top: 50%;
  right: 50%;
  display: block;
  font-size: 0;
  z-index: 60;
  margin-right: -690px;
  opacity: 1;
}

@media only screen and (max-width: 1380px) {
  .photogallery-js .bx-next {
    margin-right: -590px;
  }
}

.photogallery-js .bx-next:hover {
  background: #000;
  border-color: #000;
}

.photogallery-js_mask {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}

.photogallery-js_close {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 27px;
  top: 27px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 99999;
}

@media only screen and (min-width: 1280px) {
  .photogallery-js_close:hover {
    -webkit-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
  }
}

.photogallery-js_close i {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  cursor: pointer;
  display: block;
  width: 24px;
  height: 3px;
  background: #fff;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.photogallery-js_close i:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.photogallery-js_paginator {
  display: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 27px;
  top: 27px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  -webkit-transition: all .5s;
  transition: all .5s;
  z-index: 99999;
  color: #fff;
  font-family: "Gotham Pro Bold";
  line-height: 18px;
  font-size: 12px;
  white-space: nowrap;
}

@media only screen and (max-width: 750px) {
  .photogallery-js_paginator {
    display: block;
  }
}

.photo_image-js {
  width: 100%;
  height: 100%;
}

.photo_image-js li {
  width: 100% !important;
  height: 100% !important;
}

.photo_image-js .photo_wrap {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  max-height: 100%;
}

@media only screen and (max-width: 750px) {
  .photo_image-js .photo_wrap {
    width: 100%;
    height: 100%;
  }
}

@media only screen and (min-width: 1280px) {
  .photo_image-js .photo_wrap:hover p {
    opacity: 0;
  }
}

.photo_image-js img {
  display: block;
  margin: auto;
  max-width: 1200px;
  max-height: 800px;
  position: relative;
}

@media only screen and (max-width: 1380px) {
  .photo_image-js img {
    max-height: 600px;
  }
}

@media only screen and (max-width: 750px) {
  .photo_image-js img {
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
}

.photo_image-js p {
  position: absolute;
  width: 100%;
  background: #fff;
  bottom: 0;
  display: block;
  font-size: 13px;
  color: #676767;
  font-family: "Gotham Pro Italic";
  letter-spacing: .0em;
  padding: 20px 30px;
  opacity: 0.9;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 19px;
}

@media only screen and (max-width: 750px) {
  .photo_image-js p {
    bottom: 0;
    width: 100%;
    -webkit-transition: none;
    transition: none;
  }
}

.photo_image {
  font-size: 0;
  margin: 0 -6px;
  margin-right: -14px;
  padding-top: 30px;
}

@media only screen and (max-width: 750px) {
  .photo_image {
    margin: 0;
    padding-top: 10px;
  }
}

.photo_image li {
  list-style: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  width: 145px;
  height: 108px;
  margin: 0 6px;
  box-shadow: 0px 7px 16px 0px transparent;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}

@media only screen and (max-width: 750px) {
  .photo_image li {
    margin: 0;
    margin-bottom: 10px;
    width: calc(50% - 10px);
  }
  .photo_image li:nth-child(even) {
    float: right;
  }
}

.photo_image li.show {
  display: inline-block !important;
}

@media only screen and (min-width: 1280px) {
  .photo_image li:hover {
    -webkit-transition: all 0.5s 0.2s;
    transition: all 0.5s 0.2s;
    box-shadow: 0px 7px 16px 0px rgba(0, 0, 0, 0.25);
    -webkit-transform: scale(1.3);
            transform: scale(1.3);
    z-index: 2;
  }
}

.photo_image li img {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  width: 120% !important;
}

.photo_image li img.vertical {
  width: auto !important;
  height: 120% !important;
}

.photo_image_btn {
  display: block;
  height: 54px;
  line-height: 54px;
  border: 1px solid #000;
  text-align: center;
  width: 226px;
  font-family: "Gotham Pro Black";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
  letter-spacing: .075em;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #000;
}

.photo_image_btn:hover {
  background: #000;
  border: 1px solid #000;
  color: #fff;
}

@media only screen and (max-width: 750px) {
  .photo_image_btn {
    margin: auto;
  }
}

.video_top {
  position: absolute;
  height: 100%;
  z-index: 4;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media only screen and (max-width: 750px) {
  .video_top {
    width: 100%;
  }
}

.video_top .video-placeholder {
  height: 100% !important;
  width: 2600px;
}

@media only screen and (max-width: 750px) {
  .video_top .video-placeholder {
    height: 100%;
    width: 100%;
    position: absolute;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
  }
}

.video_start {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  white-space: nowrap;
  color: #fff;
  font-size: 12px;
  font-family: "Gotham Pro Bold";
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  z-index: 1;
}

.video_start:hover {
  opacity: .5;
}

.video_start:before {
  content: '';
  display: block;
  margin: auto;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -4px;
  width: 96px;
  height: 96px;
  background-repeat: no-repeat;
  margin-bottom: 15px;
}

@media only screen and (max-width: 750px) {
  .video_start {
    -webkit-transform: translate(-50%, -150%);
            transform: translate(-50%, -150%);
    top: 100%;
  }
}

.video-controll {
  display: none;
  position: relative;
  z-index: 2;
  height: 100%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.video-controll:-webkit-full-screen .video-placeholder, .video-controll:-webkit-full-screen .video-placeholder, .video-controll:moz-full-screen .video-placeholder {
  height: 100% !important;
  width: 100% !important;
}

.video-controll:fullscreen .video-placeholder, .video-controll:-webkit-full-screen .video-placeholder, .video-controll:moz-full-screen .video-placeholder {
  height: 100% !important;
  width: 100% !important;
}

@media only screen and (max-width: 750px) {
  .video-controll {
    position: relative;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    top: auto;
    left: auto;
    position: static;
  }
}

.progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #000;
}

.progress-bar span {
  width: 50%;
  height: 100%;
  background: #ed2d55;
  display: block;
  -webkit-transition: all .5s;
  transition: all .5s;
}

.close_video {
  position: absolute;
  right: 50%;
  margin-right: -560px;
  top: 10px;
  width: 28px;
  height: 28px;
  border-radius: 100%;
  background: #000;
  opacity: 0.71;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
  z-index: 2;
}

.close_video:before {
  content: '';
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -1010px;
  width: 11px;
  height: 11px;
  background-repeat: no-repeat;
}

.close_video:hover {
  opacity: 1;
}

@media only screen and (max-width: 750px) {
  .close_video {
    margin-right: 0;
    right: 0;
    top: 50px;
  }
}

.control-video {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 90%;
  height: 90%;
}

@media only screen and (max-width: 750px) {
  .control-video {
    display: none !important;
  }
}

.control_wrap {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  background: url(../img/plugins/video_control.png) no-repeat center;
  background-size: 365px;
  width: 365px;
  height: 82px;
  border-radius: 30px;
}

.control_wrap:hover {
  display: block !important;
  opacity: 1 !important;
}

.control_mute {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -812px;
  width: 17px;
  height: 23px;
  background-repeat: no-repeat;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}

.control_mute.active {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -839px;
  width: 16px;
  height: 23px;
  background-repeat: no-repeat;
}

.control_play {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -711px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  cursor: pointer;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}

.control_play.active {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -683px;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  cursor: pointer;
}

.control_pause {
  cursor: pointer;
}

.control_fullscreen {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -760px;
  width: 23px;
  height: 22px;
  background-repeat: no-repeat;
  cursor: pointer;
  display: block;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 20px;
}

.control_fullscreen.active {
  background-image: url("../img/svg-sprite/sprite.svg");
  background-position: -4px -786px;
  width: 23px;
  height: 22px;
  background-repeat: no-repeat;
}

.control_volume_wrap {
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  left: 20px;
}

.control_volume {
  width: 93px;
  display: inline-block;
  vertical-align: middle;
}

.control_volume.active .rangeslider__fill {
  width: 0 !important;
}

.control_volume.active .rangeslider__handle {
  left: 0 !important;
}

.window_lupa {
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  position: absolute;
  width: 280px;
  height: 280px;
  background: #fff;
  pointer-events: none;
  overflow: hidden;
  border-radius: 100%;
}

.window_lupa img {
  position: absolute;
}

@media only screen and (max-width: 750px) {
  .window_lupa {
    display: none;
  }
}

.recommended .news {
  margin-bottom: 70px;
}

@media only screen and (max-width: 750px) {
  .recommended .news {
    margin-bottom: 30px;
  }
}

.subs {
  margin-top: 50px;
  margin-bottom: 80px;
}

.subs:after {
  content: "";
  display: table;
  clear: both;
}

@media only screen and (max-width: 750px) {
  .subs {
    text-align: center;
    margin-bottom: 0;
  }
}

.subs_top:before {
  background-image: url("../img/content/subs/top.jpg");
}

@media only screen and (max-width: 750px) {
  .subs_top:before {
    background-image: url("../img/content/subs/top-mob.jpg");
  }
}

.subs_top_title {
  background-image: url("../img/content/subs/top.png");
}

@media only screen and (max-width: 750px) {
  .subs_top_title {
    background-image: url("../img/content/subs/top-mob.png");
  }
}

.subs_journal {
  position: relative;
  display: inline-block;
}

@media only screen and (max-width: 750px) {
  .subs_journal {
    margin-top: -120px;
  }
}

.subs_img {
  height: 485px;
}

@media only screen and (max-width: 750px) {
  .subs_img {
    height: 245px;
    border: solid #dadcd9 5px;
  }
}

.subs_baner {
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transform: translate(calc(50% - 20px), calc(-50% + 20px));
          transform: translate(calc(50% - 20px), calc(-50% + 20px));
  color: #fff;
  background-image: url(../img/png-sprite/96dpi/sprite.png);
  background-position: -759px -632px;
  width: 170px;
  height: 165px;
  background-size: 1076px, 1304px;
  background-repeat: no-repeat;
  text-align: center;
  font-size: 26px;
  letter-spacing: .1em;
  font-family: "Gotham Pro Black";
  text-transform: uppercase;
  padding-top: 70px;
}

@media screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx), only screen and (min-device-pixel-ratio: 2) {
  .subs_baner {
    background-image: url(../img/png-sprite/192dpi/sprite.png);
  }
}

@media only screen and (max-width: 750px) {
  .subs_baner {
    -webkit-transform: scale(0.5) translate(90%, -90%);
            transform: scale(0.5) translate(90%, -90%);
  }
}

.subs_baner i {
  display: block;
  font-size: 8px;
}

.subs_baner i span {
  font-size: 12px;
  display: block;
  margin-right: 0px;
}

.subs_baner span {
  font-size: 8px;
  margin-right: -20px;
}

.subs .form-group {
  display: inline-block;
  width: 100%;
}

@media only screen and (min-width: 1200px) {
  .subs .form-group {
    text-align: left;
  }
}

.subs .form-group.index {
  width: 250px;
  float: right;
}

@media only screen and (max-width: 750px) {
  .subs .form-group.index {
    width: 100%;
  }
}

.subs .form-group.address {
  width: 435px;
  float: left;
}

@media only screen and (max-width: 750px) {
  .subs .form-group.address {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .subs .form-group .submit {
    margin: 0;
  }
}

.subs .help-block {
  width: 270px;
}

@media only screen and (min-width: 1200px) {
  .subs .help-block {
    text-align: center;
  }
}

@media only screen and (max-width: 750px) {
  .subs .help-block {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .subs .form-control {
    text-align: left;
  }
}

.subs .contact_form {
  float: right;
  width: 705px;
}

@media only screen and (min-width: 1200px) {
  .subs .contact_form {
    border: none;
  }
}

@media only screen and (max-width: 750px) {
  .subs .contact_form {
    width: 100%;
    padding: 20px 30px 0px;
    margin-top: 10px;
  }
}

.subs .form-control {
  width: 100%;
}

.subs .contact_title {
  margin-top: 0;
}

@media only screen and (min-width: 1200px) {
  .subs .contact_title {
    text-align: left;
  }
}

@media only screen and (max-width: 750px) {
  .subs .contact_title {
    width: 100%;
  }
}

@media only screen and (min-width: 1200px) {
  .subs .control-label {
    text-align: left;
  }
}

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