@import url('https://fonts.googleapis.com/css?family=Rubik:300,400,500,700,900&subset=cyrillic');
/*
 * responsive.custom.css is for custom media queries that are not set via the
 * theme settings, such as cascading media queries.
 *
 * By default all the other responsive stylesheets used in Adaptivetheme use a
 * "stacking method", however cascading media queries use a waterfall method so
 * you can leverage the cascade and inheritance for all browsers that support
 * media queries, regardless of screen size.
 *
 * @SEE http://zomigi.com/blog/essential-considerations-for-crafting-quality-media-queries/#mq-overlap-stack
 *
 * NOTE: this file loads by default, to disable got to your theme settings and
 * look under the "CSS" settings tab.
 */
/*
 * Really small screens and up
 */
/* @media only screen and (min-width: 220px) {} */
/*
 * Smalltouch sizes and up
 */
/* @media only screen and (min-width: 320px) {} */
/*
 * Smalltouch sizes and down
 */
@media only screen and (max-width: 480px) {
  /*
   * Float Region Blocks - custom media query CSS example:
   *
   * Float regions blocks is an Extension you can enable in the appearance
   * settings for your theme. This feature allows you to automatically float
   * blocks in regions, you can switch it on and off depending on your
   * requirements. For design purposes you many want to remove the floats for
   * devices where the entire theme is just one column - for example small
   * mobile phones. The following CSS is inside the custom media query:
   *
   *   @media only screen and (max-width: 480px){}
   *
   * This will target devices with a maximum width of 480px - most small phones.
   * In these smaller screen sizes we can remove the float and widths so all
   * blocks stack instead of displaying horizonally. The selector used is an
   * "attribute selector" which will match on any float block class. Use your
   * inspector or Firebug to get the classes from the page output if you need
   * more granular control over block alignment and stacking.
   */
  /* line 57, ../sass/responsive.custom.scss */
  .region[class*="float-blocks"] .block {
    float: none;
    width: 100%;
  }
}
/*
 * Tablet sizes and up
 */
/* @media only screen and (min-width: 768px) {} */
/*
 * Desktops/laptops and up
 */
/* @media only screen and (min-width: 1025px) {} */

/*# sourceMappingURL=responsive.custom.css.map */
a[href^="tel"] {
  color: #fff;
}
.contacts-text.phone a[href^="tel"]{
  color: #000;
}
a, a:hover, a:focus, a:active{
  text-decoration: none;
  outline: none;
}
.container{
  max-width: none;
}

.flexslider .slides{
  padding: 0;
}
.block-inner{
  margin: 0;
}
.block{
  margin: 0;
}
menu{
  padding: 0;
}
p{
  margin: 0;
}
body{
  overflow: hidden;
  font-family: "Rubik";
  font-weight: 300;
}
/* Меню */
/* Меню мобильное */
#page-wrapper{
  overflow: hidden;
}
/*Вся страница, сдвигаем ее для отображения скрытого меню классом visible*/
#page{
  margin: auto;
  position: relative;
  left: 0;
}
/*Часть страницы, без скрытого меню. В ней задается высота окна и скрывается оставшаяся область при добавлении класса hidden_ohidden*/
#page_in{
  height: 100%;
}
/*Внутренняя часть page_in. При открытии меню задается расстояние от верхней точки окна, которое передается через скрытый инпут*/
#page_inner{
  height: 100%;
  position: relative;
  top: auto;
}
/*Класс региона со скрытым меню*/
.region_mob{
  position: fixed;
  top: 0;
  height: 100%;
  width: 100%;
  display: none;
  background: rgba(0,0,0,0.91);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  z-index: 100;
  -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.logged-in .region_mob{
  top: 65px;
}
.fullactive{
	display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.close-menu {
    height: 40px;
    width: 40px;
    margin: 45px 50px 0 auto;
    position: absolute;
    right: 0;
    z-index: 111;
}
.close-menu-btn{
	content: " ";
	position: absolute;
	top: 0;
	height: 100%;
    width: 100%;
    background: url(../images/closem.svg) no-repeat 0 0;
    background-size: 40px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    cursor: pointer;
}
.close-menu:hover .close-menu-btn{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
	transform: rotate(180deg);
}
.region-region-mob {
    height: 100%;
    width: 100%;
}
#page_in{
  position: relative;
  z-index: 10;
}
/*Внутренняя часть скрытого меню*/
.region_mob > .region-inner{
  height: 100%;
  width: 100%;
  overflow-y: auto;
}
/* Класс для фиксации мобильного меню при пролистывании страницы */
.mob-fixed{
  width: 100%;
  position: fixed !important;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 112;
  -webkit-box-shadow: -4px 4px 36px -3px rgba(0,0,0,0.75);
  -moz-box-shadow: -4px 4px 36px -3px rgba(0,0,0,0.75);
  box-shadow: -4px 4px 36px -3px rgba(0,0,0,0.75);
}
#block-panels-mini-hidden-menu-panel .region-two-50-bottom {
  float: none !important;
  width: 96%;
  padding: 0 2%;
  max-width: 650px;
  margin: 0 auto;
  position: fixed;
  overflow: auto;
  height: 100%;
  right: 0;
  left: 0;
  top: 0;
  z-index: 5;
}
.hidden-menu-side{
  float: left;
  width: 100%;
}
.hidden-menu-side .block-content ul{
  list-style: none;
  text-decoration: none;
  margin: 0;
  padding-top: 150px;
  height: 100%;
}
.logged-in .hidden-menu-side .block-content ul{
  padding-top: 180px;
}
.toolbar-drawer .hidden-menu-side .block-content ul{
  padding-top: 210px;
}
.hidden-menu-side li{
  text-decoration: none;
  list-style: none !important;
  line-height: 1.2;
  margin: 0;
}
.hidden-menu-side .block-content li a{
  font-size: 28px;
  color: #fff;
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 0;
  font-weight: 600;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.hidden-menu-side .block-content li a:hover{
  color: #b60011;
}
@media screen and (max-width: 850px){
  .region_mob .block-region-top .region-three-33-third > .region-inner{
    display: none !important;
  }
  .hidden-menu-side .block-content li a {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px){
  .close-menu {
    margin: 30px 5% 0 auto;
  }
  #block-panels-mini-hidden-menu-panel .region-two-50-bottom {
    width: 90%;
    padding: 0 5%;
  }
  .hidden-menu-side .block-content li a {
    font-size: 22px;
  }
  .hidden-menu-side .block-content ul{
    padding-top: 110px;
  }
}
/*@media screen and (max-width: 500px){
  .hidden-menu-side{
    width: 100%;
    float: none;
  }
}*/
.mob-fixed {
    width: 100%;
    position: fixed !important;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 80;
    background: rgba(0,0,0,0.7) !important;
}
/* Шапка */
#page-top{
  position: relative;
  top: 0;
  width: 100%;
  z-index: 25;
}
#page-top .region-top, .fixed-menu .region-top{
  background: rgba(0,0,0,1);
  width: 100%;
  z-index: 25;
  font-family: "Rubik";
}
.front #page-top{
  position: fixed;
  top: 0;
}
.front #page-top .region-top{
  background: rgba(0,0,0,0.7);
}
.front.logged-in #page-top{
  padding-top: 65px;
}
.block-region-top{
  width: 98%;
  padding: 10px 1%;
  max-width: 650px;
  margin: 0 auto;
  text-align: center;
}
#mini-panel-hidden_menu_panel .region-two-50-top{
  background: #000;
  position: relative;
  z-index: 10;
}
.block-region-top .region-three-33-first, .block-region-top .region-three-33-second, .block-region-top .region-three-33-third{
  float: none !important;
  display: inline-block !important;
  vertical-align: middle;
  width: 33.333% !important;
  position: relative;
}
.block-region-top .region-three-33-second {
  width: 31.999% !important;
}
.mobile-menu-button .block-content {
  background: url(../images/menu.svg) no-repeat 0 0;
  background-size: 40px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.mobile-menu-button .block-content:hover{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  transform: scale(1.1);
}
.logo-head img {
    display: block;
    margin: 0 auto;
    padding: 14.02px 0;
}
.logo-head .block-content {
    background: #ffffff;
    border-radius: 100px;
    width: 112px;
    margin: 0 auto;
}
.head-phone .block-content{
  color: #fff;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
}
.head-phone-btn .block-content, .head-phone-btn .block-content a{
  color: #fff;
  font-size: 16px;
  text-decoration: underline;
  font-weight: 400;
  line-height: 1.2;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.head-phone-btn .block-content a:hover{
  color: #b60011;
}
@media screen and (max-width: 650px){
  .head-phone-btn .block-content, .head-phone-btn .block-content a{
    font-size: 15px;
  }
}
/* Баннер */
.region-banner{
  width: 100%;
  font-family: "Rubik";
}
.flexslider{
  margin: 0;
  border: none;
}
.banner-main-view .view-content{
  overflow: hidden;
}
.banner-main-view .flex-direction-nav a:before{
  display: none;
}
.banner-main-view .flexslider:hover .flex-direction-nav .flex-prev, .banner-main-view .flexslider:hover .flex-direction-nav .flex-next{
  background: url("../images/arrow.png") no-repeat;
  width: 50px;
  height: 64px;
  outline: none;
}
.banner-main-view .flexslider:hover .flex-direction-nav .flex-prev{
  background-position: 0 3px;
  left: 20%;
}
.banner-main-view .flexslider:hover .flex-direction-nav .flex-next {
  background-position: -97px 3px;
  right: 20%;
}
.banner-main-view .flex-direction-nav a{
  top: 46%;
}
.banner-main-view .flex-control-nav.flex-control-paging{
  display: none;
}
.gk-name-box {
    position: absolute;
    width: 100%;
    max-width: 555px;
    top: 20%;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: #fff;
}
.gk-name-full{
  background: #bf0011;
  width: 100%;
  padding: 20px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.gk-name-backside {
    display: block;
    content: " ";
    position: absolute;
    top: 0;
    width: 100%;
    right: -46%;
    height: 100%;
    background: #bf0012;
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    -moz-transform: skew(-20deg);
    -o-transform: skew(-20deg);
    -ms-transform: skew(-20deg);
    box-shadow: 10px -7px 40px #000;
    -moz-box-shadow: 10px -7px 40px #000;
    -webkit-box-shadow: 10px -7px 40px #000;
}
.gk-name a{
  padding: 20px 0;
  margin: 0 auto;
}
.gk-name, .gk-name a {
    text-transform: uppercase;
    color: #fff;
    font-size: 29px;
    line-height: 1.2;
    position: relative;
    z-index: 111;
}
.gk-name span{
  margin-left: 10px;
  font-weight: 600;
}
.gk-name h1{
  font-size: 29px;
  line-height: 1.2;
  margin: 0;
}
.gk-opis {
    width: 90%;
    padding: 20px 5% 22px;
    text-align: center;
}
.gk-opis, .gk-opis a{
  text-transform: uppercase;
  font-size: 36px;
  line-height: 1.1;
  color: #b60011;
}
.house-bottom-box{
  position: absolute;
  bottom: 5%;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  right: 0;
  left: 0;
}
.preim-view-block{
  background: #222531;
}
.preim-view-block .advantage-text{
  text-align: center;
}
.advantage-img img{
  width: auto !important;
  margin: 0 auto;
}
.preim-view-block .view-content {
    text-align: center;
    width: 96%;
    padding: 20px 2% 20px;
}
.preim-view-block .views-row {
    display: inline-block;
    width: 32.333%;
    vertical-align: top;
    border-right: 3px solid #464a56;
    padding: 0 0 15px;
}
.preim-view-block .views-row:last-child{
  margin-right: 0;
  border: none !important;
}
.advantage-text {
    line-height: 1.2;
    text-transform: uppercase;
    color: #fff;
    padding-top: 25px;
    height: 40px;
    font-size: 16px;
}
.choose-block {
    background: #fff;
    text-align: center;
    padding: 20px 0;
    position: relative;
}
.choose-block:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 15%;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 30px solid #b60011;
}
.choose-flat{
  display: inline-block;
  vertical-align: middle;
  width: 35.333%;
}
.choose-flat.choose-button {
    width: 26.666%;
}
.choose-flat.house-deadline{
  max-width: 225px;
  margin: 0 auto;
  text-align: left;
  margin-left: 10px;
}
.deadline-label {
    text-transform: uppercase;
    color: #59555b;
    line-height: 1.2;
    font-size: 24px;
    font-weight: 400;
}
.deadline-label:before {
    content: " ";
    vertical-align: bottom;
    display: inline-block;
    width: 35px;
    height: 35px;
    background: url(../images/calendar.svg) no-repeat 50% 50%;
    background-size: 35px;
    margin-right: 10px;
}
.house-date{
  line-height: 1.2;
  font-size: 15px;
  color: #b60011;
  text-transform: uppercase;
  padding-top: 7px;
  font-weight: 400;
}
.flat-info{
  text-align: left;
}
.flat-price{
  font-size: 26px;
  color: #b60011;
  font-weight: 600;
  line-height: 1.2;
}
.flat-amount{
  font-weight: 400;
  color: #59555b;
  padding-top: 7px;
  line-height: 1.2;
  font-size: 14px;
}
.flat-btn {
    background: #b60011;
    border: 3px solid #a3000f;
    border-radius: 100%;
    width: 125px;
    height: 125px;
    margin: 0 auto;
    line-height: 1.2;
    display: table;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.flat-btn:hover{
	 background: #87000c;
}
.flat-btn a {
    display: table-cell;
    vertical-align: middle;
    font-size: 18px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    z-index: 11;
}
.flat-btn:before, .flat-btn:after{
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  width: 65px;
  height: 22px;
  margin: 0 auto;
}
.flat-btn:before{
  top: 12px;
  background: url(../images/down.png) no-repeat 50% 50%;
  background-size: 60px;
}
.flat-btn:after{
  bottom: 12px;
  background: url(../images/up.png) no-repeat 50% 50%;
  background-size: 60px;
}
.rotator-img-wrap-mobile{
  display: none;
}
@media screen and (max-width: 1820px){
  .banner-main-view .slides li{
    height: 884px;
    overflow: hidden;
  }
  .banner-main-view .slides li .rotator-img-wrap {
    height: 100%;
    width: 1929px;
    position: absolute;
    left: 50%;
  }
  .banner-main-view .slides li .rotator-img-full {
      height: 100%;
      width: 1929px;
      position: relative;
      right: 50%;
  }
}
@media screen and (max-width: 1300px){
  .banner-main-view .slides li{
    height: 700px;
  }
  .banner-main-view .slides li .rotator-img-wrap {
    width: 1530px;
  }
  .banner-main-view .slides li .rotator-img-full {
      width: 1530px;
  }
  .gk-name-box{
    top: 25%;
  }
  .gk-name, .gk-name a, .gk-name h1{
    font-size: 26px;
  }
  .gk-name a{
    padding: 10px 0;
  }
  .gk-name-full{
    padding: 10px 0;
  }
  .gk-opis {
    width: 96%;
    padding: 10px 2% 10px;
    max-width: 335px;
    margin: 0 auto;
  }
  .gk-opis, .gk-opis a {
    font-size: 30px;
  }
  .preim-view-block .view-content {
    padding: 10px 2% 10px;
  }
  .advantage-text {
    padding-top: 10px;
    font-size: 15px;
  }
  .preim-view-block .views-row{
    padding: 0 0 5px;
  }
  .choose-block {
    padding: 10px 0;
  }
  .choose-block:before {
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #b60011;
  }
  .deadline-label {
    font-size: 22px;
  }
  .deadline-label:before {
    width: 30px;
    height: 30px;
    background-size: 30px;
  }
  .flat-btn a {
    font-size: 16px;
  }
  .flat-btn:before {
    top: 8px;
    background-size: 40px;
  }
  .flat-btn:after {
    bottom: 8px;
    background-size: 40px;
  }
  .flat-btn:before, .flat-btn:after {
    width: 40px;
    height: 20px;
  }
  .flat-btn {
    width: 100px;
    height: 100px;
  }
  .banner-main-view .flexslider:hover .flex-direction-nav .flex-next{
    right: 10px;
  }
  .banner-main-view .flexslider:hover .flex-direction-nav .flex-prev{
    left: 10px;
  }
}
@media screen and (max-width: 1000px){
  .rotator-img-wrap-mobile{
    display: block;
  }
  .rotator-img-wrap{
    display: none;
  }
  .rotator-img-wrap-mobile .rotator-img-mobile {
    height: 100%;
    width: 1000px;
    position: relative;
    right: 50%;
  }
  .rotator-img-wrap-mobile {
    height: 100%;
    width: 1000px;
    position: absolute;
    left: 50%;
  }
}
@media screen and (max-width: 850px){
  .gk-name, .gk-name a, .gk-name h1{
    font-size: 24px;
  }
  .gk-opis, .gk-opis a {
    font-size: 26px;
  }
  .deadline-label {
    font-size: 20px;
  }
  .logo-head img {
    padding: 8.02px 0;
  }
  .logo-head .block-content {
    width: 100px;
  }
  .head-phone-btn .block-content, .head-phone-btn .block-content a {
    text-align: left;
  }
  .head-phone .block-content {
    font-size: 22px;
    text-align: left;
  }
  .mobile-menu-button .block-content {
    margin: 0 auto;
  }
  .house-bottom-box {
    bottom: 3%;
  }
  .banner-main-view .flex-direction-nav{
    display: none;
  }
}
@media screen and (max-width: 670px){
  .flat-price {
    font-size: 20px;
  }
  .gk-name-box {
    max-width: none;
  }
  .gk-name, .gk-name a, .gk-name h1 {
    font-size: 22px;
  }
  .gk-opis, .gk-opis a {
    font-size: 24px;
  }
  .advantage-text {
    padding-top: 5px;
    font-size: 14px;
  }
  .preim-view-block .view-content {
    padding: 5px 2% 5px;
  }
  .deadline-label {
    font-size: 16px;
  }
  .house-date {
    font-size: 13px;
  }
  .choose-flat {
    margin-right: -4px !important;
  }
  .deadline-label:before {
    width: 20px;
    height: 20px;
    background-size: 20px;
  }
}
@media screen and (max-width: 600px){
  .block-region-top .region-three-33-first {
    width: 12.333% !important;
  }
  .block-region-top .region-three-33-second {
    width: 26.333% !important;
  }
  .block-region-top .region-three-33-third {
    width: 57.666% !important;
  }
  .block-region-top .region-three-33-third .region-inner{
    max-width: 220px;
    margin: 0 auto;
  }
  .logo-head img {
    width: 60px;
  }
  .logo-head .block-content {
    width: 78px;
  }
  .preim-view-block .views-row {
    display: table;
    width: 100%;
    border: none;
    border-bottom: 2px solid #464a56;
    padding: 2px 0;
    font-size: 0;
  }
  .advantage-img, .advantage-text{
    display: inline-block;
    vertical-align: middle;
  }
  .advantage-img{
    width: 10%;
    padding-left: 5%;
  }
  .advantage-text {
    width: 85%;
    height: auto;
    padding: 0;
    font-size: 15px;
    text-align: left;
  }
  .gk-name-box {
    top: 17%;
  }
  .house-bottom-box {
    bottom: 0;
  }
  .banner-main-view .slides li{
    padding-bottom: 130px;
    height: auto
  }
  .preim-view-block .view-content{
    width: 100%;
    padding: 5px 0;
  }
  .choose-block:before {
    content: none;
  }
  .choose-flat {
    display: block;
    width: 100% !important;
    margin: 0 auto;
  }
  .choose-flat.house-deadline {
    margin: 10px auto !important;
    text-align: center;
  }
  .choose-flat.flat-info{
    text-align: center;
    padding-top: 10px;
  }
  .rotator-img-wrap-mobile {
    width: 850px !important;
  }
  .rotator-img-wrap-mobile .rotator-img-mobile {
      width: 850px !important;
  }
}
/*@media screen and (max-width: 500px){
  .rotator-img-wrap-mobile {
    width: 833px;
  }
  .rotator-img-wrap-mobile .rotator-img-mobile {
      width: 833px;
  }
}*/
@media screen and (max-width: 400px){
  .gk-name, .gk-name a, .gk-name h1 {
     font-size: 20px;
  }
  .gk-opis{
    max-width: 220px;
  }
  .gk-opis, .gk-opis a {
    font-size: 20px;
  }
  .head-phone-btn .block-content, .head-phone-btn .block-content a {
    display: none;
  }
  .head-phone .block-content {
    font-size: 18px;
    text-align: right;
  }
}
/* Объекты */
.house-view{
  position: relative;
  margin-top: 5px;
  font-family: "Rubik";
}
.house-view .view-header h1{
  position: absolute;
  left: -99999px;
}
.house-view > .view-content > .views-row{
  margin-bottom: 7px;
  height: 880px;
  overflow: hidden;
  position: relative;
}
.house-view{
  background: #222531;
}
.house-view > .view-content{
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}
.house-view > .view-content > .views-row:last-child{
  margin: 0;
}
.house-view .view-empty{
    color: #fff;
    width: 96%;
    max-width: 1400px;
    margin: 0 auto;
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    padding: 30px 2%;
    line-height: 1.2;
}
.object-side {
  position: relative;
  display: inline-block;
  vertical-align: top;
  overflow: hidden;
  height: 100%;
  overflow: hidden;
}
.object-side.left-side {
    width: 54.333%;
    margin-right: -5px;
    background: #222531;
}
.object-img {
    position: absolute;
    top: 0;
    height: 100%;
    right: 50%;
    width: 1200px;
}
.object-img-field{
  position: relative;
  top: 0;
  left: 50%;
  width: 1200px;
  height: 100%;
  background: rgba(0,0,0,1);
}
.object-img img{
  width: 100%;
  display: block;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
.object-side.right-side {
    width: 45.666%;
    background: #222531;
    -webkit-box-shadow: 5px 0 30px #000;
    -moz-box-shadow: 5px 0 30px #000;
    box-shadow: 5px 0 30px #000;
    z-index: 4;
    position: relative;
}
.right-side.inner {
      width: 84%;
    padding: 8% 8% 1%;
    height: 92%;
}
.label-last-box{
  position: absolute;
  top: 0;
  height: 100%;
  width: 54.333%;
  left: 0;
}
.label-last-flat {
    position: absolute;
    top: -60px;
    right: -51px;
    background: #b60011;
    border-radius: 100%;
    border: 6px solid #fff;
    padding: 109px 57px 70px 50px;
    width: 156px;
    text-align: left;
    font-weight: 400;
    font-size: 24px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.2;
    z-index: 3;
}
.object-name-box{
  position: absolute;
  width: 98%;
  padding: 0 2%;
  max-width: 650px;
  top: 30%;
  right: 0;
  left: 0;
  margin: 0 auto;
}
.object-type-name{
  text-transform: uppercase;
  font-size: 24px;
  color: #fff;
  font-weight: 400;
  font-family: "Rubik";
  line-height: 1.2;
}
.object-name{
  text-transform: uppercase;
  font-size: 75px;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}
.object-name .first{
  color: #d1153f;
  position: relative;
}
.object-name .first:after{
  content: " ";
  position: absolute;
  display: block;
  bottom: 0;
  width: 250px;
  height: 7px;
  background: #d1153f;
}
.main-group{
 /* max-width: 325px;*/
 max-width: none;
  padding-left: 50px;
  border-left: 5px solid #fff;
  color: #fff;
  margin-bottom: 50px;
}
.main-group > div{
  margin-bottom: 20px;
}
.flat-on-sale, .flat-mid-price{
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.flat-quantity, .spec-price{
  font-weight: 600;
  font-size: 26px;
  line-height: 1.2;
}
.flat-key {
    width: auto;
    background: #ebf4f1;
    border-radius: 5px;
    padding: 10px;
    display: inline-block;
    vertical-align: middle;
}
.prodan-mobile{
  display: none;
}
.flat-key:before{
  width: 35px;
  height: 35px;
  background: url(../images/key.png) no-repeat 50% 50%;
  background-size: 35px;
  content: " ";
  display: inline-block;
  vertical-align: middle;
}
.key-full-text{
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.text-key {
  color: #222531;
  line-height: 1.2;
  font-weight: 300;
  font-size: 14px;
}
.year-key {
  color: #b60011;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}
.flat-info-text {
    margin-top: 62px;
    margin-bottom: 0 !important;
}
.flat-info-text .item-list ul{
  padding: 0;
  margin: 0;
}
.flat-info-text .item-list ul li {
    list-style: none;
    display: inline-block;
    vertical-align: top;
    width: 50%;
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 5px;
}
.flat-info-text .item-list ul li:before {
    content: " ";
    display: inline-block;
    width: 10px;
    height: 10px;
    background: url(../images/dot-list.png) no-repeat 50% 50%;
    background-size: 10px;
    margin-right: 5px;
    vertical-align: middle
}
.object-preim-icon, .object-preim-text{
  display: inline-block;
  vertical-align: middle;
}
.object-preim .views-row{
  margin-bottom: 15px;
}
.object-preim-icon{
  width: 35px;
}
.object-preim-icon img{
  display: block;
}
.object-preim-text{
  text-transform: uppercase;
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  margin-left: 5px;
  max-width: 392px;
}
.object-more-info{
    background: #b60011;
    border-radius: 5px;
    margin-top: 70px;
    position: absolute;
    bottom: 5%;
    -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.object-more-info, .object-more-info a{
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  text-align: center;
  display: block;
  max-width: 250px;
  text-transform: uppercase;
}
.object-more-info a{
  padding: 10px 15px;
}
.object-more-info:hover{
	background: #87000c;
}
.prodan {
  line-height: 1.2;
  color: #b60011;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 50px;
  margin-top: 30px;
  background: rgba(255,255,255,0.6);
  width: 100%;
  display: block;
  text-align: center;
  padding: 10px 0;
  z-index: 100;
  position: relative;
  top: 50%;
}
.monohrom img{
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
}
@media screen and (max-width: 1200px){
  .label-last-flat {
    top: -100px;
    border: 4px solid #fff;
    padding: 112px 56px 46px 50px;
    width: 140px;
    font-size: 22px;
  }
  .main-group {
    padding-left: 0;
    /*max-width: 600px;*/
    margin: 0 auto;
    border: none;
    text-align: center;
  }
  .flat-info-text {
    margin-top: 20px;
    display: block;
    margin-left: -4px;
    vertical-align: top;
    padding: 0 0 0 2%;
    width: 100%;
    float: left;
    clear: both;
  }
  .object-more-info {
    margin-top: 40px;
  }
  .house-view > .view-content > .views-row {
    height: auto;
  }
  .object-side.left-side{
    width: 100%;
    display: block;
    margin: 0 auto;
    position: relative;
    height: 400px;
  }
  .label-last-box{
    width: 100%;
  }
  .object-side.right-side{
    position: relative;
    top: 50%;
    display: block;
    width: 100%;
    margin: 0 auto;
    height: auto;
    padding-bottom: 70px;
    height: 42%;
  }
  .object-preim{
    display: none;
  }
  .object-type-name{
    font-size: 22px;
  }
  .object-name {
    font-size: 65px;
  }
  .object-name-box{
    top: 20%;
  }
  .right-side.inner {
    width: 96%;
    padding: 25px 2%;
  }
  .object-more-info {
    margin: 25px auto 0;
    right: 0;
    left: 0;
  }
  .flat-on-sale, .flat-mid-price {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
  }
  .flat-on-sale{
    width: 50%;
  }
  .flat-mid-price{
    width: 33.333%;
  }
  .flat-key{
    margin: 0 auto 0;
  }
  .flat-info-text .item-list ul {
    /*max-width: 350px;*/
    margin: 0 auto;
    text-align: left;
  }
  .flat-info-text .item-list ul li {
    font-size: 18px;
    /*max-width: 173px;*/
    text-align: left;
  }
  .object-name .first:after {
    width: 225px;
  }
  .prodan{
    display: none;
  }
  .prodan-mobile{
    display: block;
  }
  .prodan-mobile .prodan{
    display: block;
    font-size: 32px;
  }
}
@media screen and (max-width: 800px){
  .object-name {
    font-size: 50px;
  }
  .object-type-name {
    font-size: 20px;
  }
  .object-name .first:after {
    width: 172px;
  }
  .object-name-box {
    top: 10%;
  }
  .object-side.left-side{
    height: 300px;
  }
  .object-side.right-side {
    top: 40%;
    bottom: 0;
    height: 50%;
  }
  .object-img-field, .object-img{
    width: 865px;
  }
  .flat-on-sale, .flat-mid-price{
    display: block;
    width: 100%;
  }
  .flat-quantity, .spec-price {
    font-size: 24px;
  }
  .flat-key {
    margin: 10px auto 10px !important;
  }
  .label-last-flat {
    top: -77px;
    border: 2px solid #fff;
    padding: 86px 52px 46px 28px;
    width: 115px;
    font-size: 18px;
    font-weight: 500;
  }
}
@media screen and (max-width: 600px){
  .object-name {
    font-size: 40px;
  }
  .object-type-name {
    font-size: 18px;
  }
  .label-last-flat {
    top: -80px;
    padding: 86px 40px 28px 37px;
    width: 110px;
    font-size: 16px;
    right: -30px;
  }
  .object-name-box {
    top: 40%;
  }
  .object-name .first:after {
    width: 140px;
    height: 4px;
  }
  .flat-info-text .item-list ul li{
    font-size: 14px;
  }
  .year-key {
    font-size: 16px;
  }
  .prodan-mobile .prodan {
    font-size: 24px;
    margin: 5px 0 0;
  }
  .object-side.left-side{
    height: 250px;
  }
}
@media screen and (max-width: 400px){
  .object-name {
    font-size: 32px;
  }
  .object-type-name {
    font-size: 16px;
  }
  .object-name .first:after {
    width: 110px;
    height: 3px;
  }
  .main-group > div {
    margin-bottom: 10px;
  }
  .flat-info-text .item-list ul li{
    width: 100%;
  }
  .right-side.inner {
    padding: 2% 2%;
  }
  .object-more-info{
    bottom: 2%;
  }
  .flat-on-sale, .flat-mid-price{
    font-size: 18px;
  }
}
/* Оставить заявку на ипотеку */
.region-ipoteka{
	border-top: 15px solid #b60011;
	position: relative;
  width: 100%;
}
.block-ipoteka-block{
  width: 96%;
  margin: 0 auto;
  max-width: 1060px;
  padding: 60px 2% 30px;
  position: relative;
}
.block-ipoteka-block .region-two-66-33-first, .block-ipoteka-block .region-two-66-33-second{
  display: inline-block;
  vertical-align: middle;
  float: none;
}
.block-ipoteka-block .region-two-66-33-first{
  margin-right: -4px;
  width: 71.666%;
}
.block-ipoteka-block .region-two-66-33-second{
  width: 28.333%;
}
.block-ipoteka-block:before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 16px solid transparent;
    border-right: 16px solid transparent;
    border-top: 30px solid #222531;
}
.ipoteca-head .block-content{
	font-size: 64px;
	text-transform: uppercase;
	font-weight: 600;
	line-height: 1.1;
  padding-bottom: 15px;
}
.ipoteca-text .block-content {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.2;
    color: #59555b;
    max-width: 740px;
}
.apply-btn .block-content p {
    background: #b60011;
    border: 3px solid #a3000f;
    border-radius: 100%;
    width: 195px;
    height: 195px;
    margin: 0 auto;
    line-height: 1.2;
    display: table;
    text-align: center;
    position: relative;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.apply-btn .block-content p:hover {
    background: #87000c;
}
.apply-btn .block-content a {
    display: table-cell;
    vertical-align: middle;
    font-size: 28px;
    text-transform: uppercase;
    font-weight: 400;
    position: relative;
    z-index: 11;
    color: #fff;
}
.apply-btn .block-content p:before, .apply-btn .block-content p:after{
  content: " ";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  width: 100px;
  height: 35px;
  margin: 0 auto;
}
.apply-btn .block-content p:before{
  top: 25px;
  background: url(../images/down.png) no-repeat 50% 50%;
  background-size: 100px;
}
.apply-btn .block-content p:after{
  bottom: 25px;
  background: url(../images/up.png) no-repeat 50% 50%;
  background-size: 100px;
}
@media screen and (max-width: 1100px){
  .ipoteca-head .block-content {
    font-size: 52px;
    padding-bottom: 10px;
  }
  .ipoteca-text .block-content {
    font-size: 18px;
    max-width: 520px;
  }
  .apply-btn .block-content p{
    width: 160px;
    height: 160px;
  }
  .apply-btn .block-content a {
    font-size: 22px;
  }
  .apply-btn .block-content p:before {
    top: 15px;
    background-size: 70px;
  }
  .apply-btn .block-content p:after{
    bottom: 15px;
    background-size: 70px;
  }
  .apply-btn .block-content p:before, .apply-btn .block-content p:after {
    width: 70px;
    height: 25px;
  }
}
@media screen and (max-width: 850px){
  .ipoteca-head .block-content {
    font-size: 44px;
  }
}
@media screen and (max-width: 700px){
  .ipoteca-head .block-content {
      font-size: 36px;
  }
  .ipoteca-text .block-content {
    font-size: 16px;
  }
  .apply-btn .block-content p{
    width: 130px;
    height: 130px;
  }
  .apply-btn .block-content a {
    font-size: 20px;
  }
  .apply-btn .block-content p:before {
    top: 10px;
    background-size: 50px;
  }
  .apply-btn .block-content p:after{
    bottom: 10px;
    background-size: 50px;
  }
  .apply-btn .block-content p:before, .apply-btn .block-content p:after {
    width: 70px;
    height: 25px;
  }
}
@media screen and (max-width: 600px){
  .block-ipoteka-block .region-two-66-33-first{
    width: 100%;
    margin: 0 auto 20px;
  }
  .block-ipoteka-block .region-two-66-33-second{
    width: 100%;
  }
  .ipoteca-head .block-content {
    font-size: 38px;
    text-align: center;
  }
  .block-ipoteka-block {
    padding: 40px 0 20px;
  }
  .ipoteca-text .block-content{
    max-width: none;
  }
}
@media screen and (max-width: 450px){
  .ipoteca-head .block-content {
    font-size: 30px;
  }
  .apply-btn .block-content p{
    width: 100px;
    height: 100px;
  }
  .apply-btn .block-content a {
    font-size: 16px;
  }
  .apply-btn .block-content p:before {
    top: 8px;
    background-size: 40px;
  }
  .apply-btn .block-content p:after{
    bottom: 8px;
    background-size: 40px;
  }
  .apply-btn .block-content p:before, .apply-btn .block-content p:after {
    width: 40px;
    height: 20px;
  }
  .ipoteca-text .block-content {
    font-size: 14px;
  }
}
/* Банки ипотека */
.ipoteca-carousel {
  width: 96%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2% 40px;
  position: relative;
}
.ipoteca-carousel .jcarousel-skin-default .jcarousel-item{
  height: 100px;
  width: 260px;
  border: none;
}
.ipoteca-carousel .jcarousel-list{
  margin: 0 auto !important;
  display: inline-block;
}
.ipoteca-carousel .jcarousel-skin-default .jcarousel-next, .ipoteca-carousel .jcarousel-skin-default .jcarousel-prev {
    width: 40px;
    height: 45px;
    background-image: transparent;
}
.ipoteca-carousel .jcarousel-skin-default .jcarousel-container-horizontal {
    height: 100%;
    padding: 20px 50px;
}
.ipoteca-carousel .jcarousel-skin-default .jcarousel-prev-horizontal {
    top: 35%;
    left: 0;
    background: url(../images/left-gallery.svg) no-repeat -5px 0;
    background-size: 45px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
      filter: alpha(opacity=50);
      -moz-opacity: 0.50;
      -khtml-opacity: 0.50;
      opacity: 0.5;
      -webkit-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
}
.ipoteca-carousel .jcarousel-skin-default .jcarousel-next-horizontal {
    top: 35%;
    right: 0;
    background: url(../images/right-gallery.svg) no-repeat 0 0;
    background-size: 45px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
      filter: alpha(opacity=50);
      -moz-opacity: 0.50;
      -khtml-opacity: 0.50;
      opacity: 0.5;
      -webkit-transition: all .3s ease-in-out;
      -moz-transition: all .3s ease-in-out;
      transition: all .3s ease-in-out;
}
.ipoteca-carousel .jcarousel-skin-default .jcarousel-prev-horizontal:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
}
.ipoteca-carousel .jcarousel-skin-default .jcarousel-next-horizontal:hover {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      filter: alpha(opacity=100);
      -moz-opacity: 1;
      -khtml-opacity: 1;
      opacity: 1;
}

@media screen and (max-width: 400px){
  .ipoteca-carousel .jcarousel-skin-default .jcarousel-container-horizontal {
    padding: 20px 20px;
  }
  .ipoteca-carousel .jcarousel-skin-default .jcarousel-prev-horizontal,
  .ipoteca-carousel .jcarousel-skin-default .jcarousel-next-horizontal {
      top: 40%;
      background-size: 30px;
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
      filter: alpha(opacity=50);
      -moz-opacity: 0.50;
      -khtml-opacity: 0.50;
      opacity: 0.5;
  }
  .ipoteca-carousel .jcarousel-skin-default .jcarousel-next, .ipoteca-carousel .jcarousel-skin-default .jcarousel-prev {
    width: 25px;
    height: 30px;
  }
}
/* Преимущества */
#page-preimuchestva{
  position: relative;
  overflow: hidden;
  background: url(../images/parallax.jpg) no-repeat 50% 50%;
  background-size: cover;
  /*background-attachment: fixed;*/
}
.region-preimuchestva{
  /*background: rgba(0,0,0,0.4);*/
  position: relative;
  z-index: 10;
}
.region-preimuchestva > .region-inner{
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 140px 2% 120px;
}
.block-preimuch .region-two-50-first > .region-inner{
  width: 94%;
  padding: 0 6% 0 0;
}
.block-preimuch .region-two-50-second > .region-inner{
  width: 94%;
  padding: 0 0 0 6%;
}
.parallax-title .block-content{
  font-weight: 900;
  color: #fff;
  font-size: 47px;
  line-height: 1.2;
  text-transform: uppercase;
}
.parallax-subtitle .block-content {
    font-weight: 400;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    text-transform: uppercase;
}
.parallax-text .block-content {
    font-weight: 300;
    color: #fff;
    font-size: 16px;
    line-height: 1.2;
    padding-top: 50px;
}
.parallax-more-btn .block-content{
    background: #b60011;
    margin-top: 30px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.parallax-more-btn .block-content:hover{
	background: #87000c;
}
.parallax-more-btn .block-content, .parallax-more-btn .block-content a{
  font-size: 16px;
  line-height: 1.2;
  font-weight: 400;
  color: #fff;
  text-align: center;
  display: block;
  max-width: 250px;
  text-transform: uppercase;
}
.parallax-more-btn .block-content a{
  padding: 10px 5px 8px;
}
.parallax-preim .view-content{
  text-align: center;
  display: inline-block;
}
.parallax-preim .views-row {
    float: left;
    display: inline-block;
    vertical-align: top;
    width: 27%;
    margin-right: 3%;
    text-align: left;
    background: #222531;
    position: relative;
    padding: 50px 4% 20px;
    padding-left: 16%;
    height: 100px;
    -moz-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.parallax-preim .views-row:hover{
  background: #303752;
}
.parallax-preim .views-row:hover:before{
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  transform: scale(1.2);
}
.parallax-preim .views-row:first-child, .parallax-preim .views-row:nth-child(2){
  margin-bottom: 10%;
}
.parallax-preim .views-row:nth-child(2n){
  margin-right: 0;
}
.parallax-preim .views-row:before{
  background: url(../images/tick.png) no-repeat 0 0;
  content: " ";
  display: inline-block;
  width: 150px;
  height: 120px;
  background-size: 150px;
  position: absolute;
  top: -40px;
  left: 15px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
  width: 100%;
  display: block;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.parallax-preim .views-row.active-tick:before{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
.preim-title{
  font-weight: 600;
  color: #fff;
  font-size: 22px;
  line-height: 1.2;
  text-transform: uppercase;
}
.preim-title:after{
  content: " ";
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  margin: 5px 0 10px;
}
.preim-text{
  font-weight: 300;
  color: #fff;
  font-size: 16px;
  line-height: 1.2;
}
@media screen and (max-width: 1460px){
  .parallax-preim .views-row:before {
      width: 110px;
      height: 90px;
      background-size: 110px;
      top: -30px;
      left: 10px;
  }
  .parallax-preim .views-row {
    width: 33%;
    padding: 50px 3% 20px;
    padding-left: 12%;
  }
  .parallax-title .block-content {
    font-size: 42px;
  }
  .parallax-subtitle .block-content {
    font-size: 28px;
  }
}
@media screen and (max-width: 1260px){
  .parallax-title .block-content {
    font-size: 35px;
  }
  .parallax-subtitle .block-content {
    font-size: 24px;
  }
  .parallax-text .block-content {
    font-size: 15px;
    padding-top: 20px;
  }
  .preim-title {
    font-size: 20px;
  }
  .preim-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 1100px){
  .parallax-subtitle .block-content {
    font-size: 22px;
  }
  .parallax-title .block-content {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px){
  .parallax-preim .views-row:before {
    width: 85px;
    height: 70px;
    background-size: 85px;
    top: -20px;
    left: 10px;
  }
  .parallax-preim .views-row {
    width: 33%;
    padding: 35px 3% 20px;
    padding-left: 12%;
    height: 90px;
  }
  .parallax-preim .views-row:first-child, .parallax-preim .views-row:nth-child(2){
    margin-bottom: 6%;
  }
  .preim-title {
    font-size: 18px;
  }
  .preim-text {
    font-size: 14px;
  }
  .block-preimuch .region-two-50-first {
    width: 100%;
    display: block;
    float: none;
    padding-bottom: 40px;
  }
  .block-preimuch .region-two-50-second{
    width: 100%;
    display: block;
    float: none;
  }
  .block-preimuch .region-two-50-first > .region-inner{
    width: 100%;
    padding: 0;
  }
  .block-preimuch .region-two-50-second > .region-inner{
    width: 100%;
    padding: 0;
  }
  .region-preimuchestva > .region-inner{
    padding: 60px 2% 60px;
  }
  .parallax-text .block-content {
    font-size: 14px;
  }
  .parallax-more-btn .block-content, .parallax-more-btn .block-content a{
    max-width: none;
  }
}
@media screen and (max-width: 500px){
  .parallax-preim .views-row {
    width: 77%;
    padding: 30px 3% 20px;
    padding-left: 20%;
    height: 70px;
    margin: 0 auto 9%!important;
  }
  .region-preimuchestva > .region-inner {
    padding-bottom: 30px;
  }
  .parallax-title .block-content {
    font-size: 26px;
    font-weight: 700;
  }
  .parallax-subtitle .block-content {
    font-size: 16px;
  }
}
/* Новости */
.region-news{
  background: #222531;
}
.news-view .view-header{
  width: 96%;
  max-width: 1100px;
  padding: 30px 2% 50px;
  margin: 0 auto;
}
.news-view .view-header:before{
  height: 75px;
  width: 75px;
  content: " ";
  display: block;
  border-right: 5px solid #b60011;
  border-bottom: 5px solid #b60011;
}
.news-view .view-content{
  background: #e1e1e1;
  display: inline-block;
  vertical-align: top;
}
.news-view .views-row {
  float: left;
  width: 33.13%;
  margin-right: 0.299%;
  background: #fff;
  overflow: hidden;
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.news-head{
  display: inline-block;
  vertical-align: bottom;
}
.news-head.title{
    font-size: 60px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding-left: 90px;
    padding-top: 15px;
}
.news-head.more {
  line-height: 1.2;
  padding: 10px 0 10px 5%;
}
.news-head.more a {
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    text-align: center;
    display: block;
    text-transform: uppercase;
    padding: 8px 10px 6px;
    background: #b60011;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.news-head.more a:hover{
	background: #87000c;
}
.news-view .views-row:nth-child(3n){
  margin-right: 0;
}
.news-image-wrap{
  position: relative;
  overflow: hidden;
}
.news-image-link{
  position: absolute;
  z-index: 10;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.news-image,
.object-recommend-img,
.product-category-img{
	overflow: hidden;
  background: #000;
  position: relative;
}
.news-image:before,
.object-recommend-img:before,
.product-category-img:before{
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.2) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.1) 50%, rgba(255,255,255,.2) 100%);
    -webkit-transform: rotate(16deg) scale(1.4);
    transform: rotate(16deg) scale(1.4);
}
.news-image:after,
.object-recommend-img:after,
.product-category-img:after{
    position: absolute;
    top: 0;
    right: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    -webkit-transform: rotate(16deg) scale(1.4);
    transform: rotate(16deg) scale(1.4);
}
.news-image img,
.object-recommend-img img,
.product-category-img img{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.60;
  -khtml-opacity: 0.60;
  opacity: 0.6;
  width: 100%;
  display: block;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
}
.action-card-img img,
.other-action-img img{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  -moz-opacity: 0.90;
  -khtml-opacity: 0.90;
  opacity: 0.9;
  width: 100%;
  display: block;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
}
.news-view .views-row:hover .news-image img,
.objects-recommend .views-row:hover .object-recommend-img img,
.product-category-view .views-row:hover .product-category-img img{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.80;
  -khtml-opacity: 0.80;
  opacity: 0.8;
	-webkit-transform: translateZ(0) scale(1.1);
  -moz-transform: translateZ(0) scale(1.1);
  transform: translateZ(0) scale(1.1);
}
.actions-page-view .views-row:hover .action-card-img img,
.other-actions li:hover .other-action-img img{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
  filter: alpha(opacity=60);
  -moz-opacity: 0.60;
  -khtml-opacity: 0.60;
  opacity: 0.6;
  -webkit-transform: translateZ(0) scale(1.1);
  -moz-transform: translateZ(0) scale(1.1);
  transform: translateZ(0) scale(1.1);
}
.news-view .views-row:hover .news-image:before,
.objects-recommend .views-row:hover .object-recommend-img:before,
.product-category-view .views-row:hover .product-category-img:before {
    -webkit-animation: shineL .4s linear;
    animation: shineL .4s linear;
}
.news-view .views-row:hover .news-image:after,
.objects-recommend .views-row:hover .object-recommend-img:after,
.product-category-view .views-row:hover .product-category-img:after {
    -webkit-animation: shineR .4s linear;
    animation: shineR .4s linear;
}
@-webkit-keyframes shineL {
  100% {
    left: 100%;
  }
}
@keyframes shineL {
  100% {
    left: 100%;
  }
}
@-webkit-keyframes shineR {
  100% {
    right: 100%;
  }
}
@keyframes shineR {
  100% {
    right: 100%;
  }
}
.news-title-box{
  display: table;
}
.date-box{
  display: table-cell;
  vertical-align: top;
  width: 100px;
  max-width: 100px;
  min-width: 100px;
}
.news-title{
  display: table-cell;
  width: 100%;
  vertical-align: top;
  line-height: 1.1;
}
.news-title a {
  text-transform: uppercase;
  font-size: 26px;
  color: #b60011;
  font-weight: 700;
}
.date-day{
  font-size: 62px;
  line-height: 0.9;
  color: #222531;
  font-weight: 700;
}
.date-month{
  font-size: 32px;
  line-height: 0.9;
  color: #222531;
  font-weight: 700;
}
.news-text-inner {
    width: 94%;
    padding: 20px 3%;
    position: relative;
    height: 300px;
}
.news-text {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 300;
  color: #222531;
  padding-top: 20px;
}
.news-more-btn{
    line-height: 1.2;
    position: absolute;
    bottom: 20px;
}
.news-more-btn a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    text-align: center;
    display: block;
    max-width: 100px;
    text-transform: uppercase;
    padding: 8px 10px 6px;
    background: #b60011;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.news-more-btn a:hover {
	background: #87000c;
}
@media screen and (max-width: 1680px){
  .news-title a {
    font-size: 22px;
  }
}
@media screen and (max-width: 1680px){
  .news-title a {
    font-size: 22px;
  }
}
@media screen and (max-width: 1470px){
  .news-title a {
    font-size: 20px;
  }

}
@media screen and (max-width: 1260px){
  .news-title a {
    font-size: 18px;
    font-weight: 500;
  }
  .date-box {
    width: 65px;
    max-width: 65px;
    min-width: 65px;
  }
  .date-day {
    font-size: 50px;
  }
  .date-month {
    font-size: 26px;
  }
  .news-text {
    font-size: 14px;
    padding-top: 10px;
  }
  .news-text-inner {
    height: 260px;
  }
  .news-view .view-header:before {
    height: 60px;
    width: 60px;
    border-right: 5px solid #b60011;
    border-bottom: 5px solid #b60011;
  }
  .news-head.title {
    font-size: 50px;
    padding-left: 70px;
  }
  .news-head.more a {
    font-size: 14px;
  }
  .news-head.more {
    padding-bottom: 5px;
  }
  .news-view .view-header {
    padding: 20px 2% 40px;
  }
}
@media screen and (max-width: 1060px){
  .date-day {
    font-size: 35px;
  }
  .date-month {
    font-size: 20px;
  }
  .date-box {
    width: 50px;
    max-width: 50px;
    min-width: 50px;
  }
  .news-title a {
    font-size: 16px;
  }
}
@media screen and (max-width: 880px){
  .news-view .views-row {
    width: 100%;
    margin: 0 0 1%;
  }
  .news-view .views-row:last-child{
    margin-bottom: 0;
  }
  .news-text-inner {
    height: 220px;
  }
  .news-head.title {
    font-size: 44px;
    padding-left: 60px;
    padding-top: 5px;
  }
  .news-view .view-header:before {
    height: 46px;
    width: 46px;
    border-right: 4px solid #b60011;
    border-bottom: 4px solid #b60011;
  }
}
@media screen and (max-width: 700px){
  .news-head {
    display: block;
    width: 100%;
    padding: 0;
  }
  .news-head.title{
    padding: 10px 0 20px;
    text-align: center;
    font-size: 40px;
  }
  .news-head.more{
    padding: 0;
  }
  .news-head.more a{
    max-width: 175px;
    margin: 0 auto;
  }
  .news-view .view-header {
    padding: 10px 2% 30px;
  }
}
/* Контакты */
.office-title{
  background: #222531;
}
.office-title .block-inner{
  width: 96%;
  max-width: 1100px;
  padding: 30px 2% 50px;
  margin: 0 auto;
}
.office-title .block-inner:before{
  height: 75px;
  width: 75px;
  content: " ";
  display: block;
  border-right: 5px solid #b60011;
  border-bottom: 5px solid #b60011;
}
.office-title .block-content{
    font-size: 60px;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    font-weight: 600;
    padding-left: 90px;
    padding-top: 15px;
}
.block-office-prodag{
  position: relative;
}
.map-contacts.desktop{
  height: 600px;
}
.block-office-prodag .region-two-50-first {
    width: 96%;
    padding: 0 2%;
    max-width: 1300px;
    margin: 0 auto;
    position: absolute;
    top: 260px;
    z-index: 3;
    right: 0;
    left: 0;
    height: 0;
}
.block-office-prodag .region-two-50-second{
  display: none;
}
.block-office-prodag .region-two-50-first .region-inner {
    width: 94%;
    max-width: 410px;
    background: #222531;
    padding: 65px 3% 65px;
}
.block-office-prodag .contacts .block-content{
  color: #fff;
  line-height: 1.2;
  padding-left: 60px;
}
.contacts.phone-title .block-content{
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
}
.contacts.phone .block-content{
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 15px;
}
.contacts.address-title .block-content, .contacts.work-title .block-content, .contacts.email-title .block-content{
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 400;
}
.contacts.address-line .block-content, .contacts.work-line .block-content, .contacts.email-line .block-content a{
  font-size: 22px;
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
}
.contacts.phone-title {
    background: url(../images/phone.svg) no-repeat 0 0;
    background-size: 50px;
    padding: 15px 0 5px;
}
.contacts.address-title {
    background-image: url(../images/place.svg);
    background-repeat: no-repeat;
    background-position: 10px 50%;
    background-size: 30px;
    padding: 15px 0 10px;
}
.contacts.work-title {
    background-image: url(../images/clock.svg);
    background-repeat: no-repeat;
    background-position: 10px 50%;
    background-size: 30px;
    padding: 15px 0 10px;
}
.contacts.email-title {
    background-image: url(../images/mail.svg);
    background-repeat: no-repeat;
    background-position: 10px 50%;
    background-size: 30px;
    padding: 15px 0 10px;
}
@media screen and (max-width: 1260px){
  .office-title .block-inner:before{
    height: 60px;
    width: 60px;
    border-right: 5px solid #b60011;
    border-bottom: 5px solid #b60011;
  }
  .office-title .block-content {
    font-size: 50px;
    padding-left: 70px;
  }
  .office-title .block-inner {
    padding: 20px 2% 40px;
  }
  .block-office-prodag .region-two-50-first{
    top: 215px;
  }
}
@media screen and (max-width: 880px){
  .office-title .block-content {
    font-size: 44px;
    padding-left: 60px;
    padding-top: 5px;
  }
  .office-title .block-inner:before{
    height: 46px;
    width: 46px;
    border-right: 4px solid #b60011;
    border-bottom: 4px solid #b60011;
  }
  .block-office-prodag .region-two-50-first{
    position: relative;
    width: 60%;
    padding: 0;
    top: 0;
    height: auto;
  }
  .block-office-prodag .region-two-50-first .region-inner {
    padding: 46px 3% 45px;
  }
  .block-office-prodag .region-two-50-second{
    display: block;
    width: 40%;
  }
  .map-contacts.desktop{
    display: none;
  }
  .map-contacts .block-content > ymaps{
    height: 430px !important;
  }
  .office-title{
    margin-bottom: 10px;
  }
  .contacts.phone-title .block-content, .contacts.phone .block-content{
    font-size: 26px;
  }
  .contacts.address-title .block-content, .contacts.work-title .block-content, .contacts.email-title .block-content,
  .contacts.address-line .block-content, .contacts.work-line .block-content, .contacts.email-line .block-content a {
    font-size: 16px;
  }
  .map-contacts .block-content .ymaps-2-1-55-float-button.ymaps-2-1-55-_hidden-icon, .map-contacts .block-content .ymaps-2-1-55-copyright, .map-contacts .block-content .ymaps-2-1-55-controls__toolbar_left, .map-contacts .block-content .ymaps-2-1-55-traffic{
    display: none !important;
  }
  .block-office-prodag .region-two-50-first .region-inner{
    max-width: none;
  }
}
@media screen and (max-width: 620px){
  .contacts.phone-title .block-content, .contacts.phone .block-content{
    font-size: 16px;
  }
  .contacts.address-title .block-content, .contacts.work-title .block-content, .contacts.email-title .block-content,
  .contacts.address-line .block-content, .contacts.work-line .block-content, .contacts.email-line .block-content a {
    font-size: 14px;
    line-height: 1.1;
  }
  .contacts.phone-title{
    background-size: 30px;
    padding: 15px 0 0;
  }
  .block-office-prodag .contacts .block-content {
    padding-left: 40px;
  }
  .contacts.address-title, .contacts.work-title, .contacts.email-title {
    background-position: 5px 50%;
    background-size: 20px;
    padding: 15px 0 10px;
  }
  .block-office-prodag .region-two-50-first .region-inner {
    padding: 20px 3% 20px;
  }
  .map-contacts .block-content > ymaps {
    height: 273px !important;
  }
  .block-office-prodag .region-two-50-first{
    width: 100%;
  }
  .block-office-prodag .region-two-50-second{
    width: 100%;
  }
  .block-office-prodag .region-two-50-first .region-inner {
    max-width: 240px;
    margin: 0 auto;
  }
  .block-office-prodag .region-two-50-first {
    background: #222531;
  }
  .map-contacts{
    width: 90%;
    padding: 5% 5%;
    background: #222531;
  }
}
@media screen and (max-width: 500px){
  .office-title .block-content {
    padding: 10px 0 20px;
    text-align: center;
    font-size: 40px;
  }
  .office-title .block-inner{
    padding: 10px 2% 30px;
  }
}
/* Подвал */
.region-footer{
  width: 96%;
  padding: 50px 2%;
  max-width: 1400px;
  margin: 0 auto;
}
.region-footer .panel-flexible .panel-separator {
    margin: 0;
}
.footer-logo-wrap{
  width: 90px;
}
.company-name .block-content{
  text-transform: uppercase;
  font-size: 30px;
  line-height: 1.2;
  color: #333333;
  font-weight: 600;
}
.company-subtitle .block-content{
  font-size: 16px;
  line-height: 1.2;
  color: #333333;
  font-weight: 300;
  padding-top: 15px;
}
.company-subtitle .block-content a{
  color: #333333;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.company-subtitle .block-content a:hover{
  color: #b60011;
}
.company-menu-main .block-title, .objects-menu .block-title{
  line-height: 1.2;
  font-size: 20px;
  font-weight: 600;
  color: #b60011;
  text-transform: uppercase;
  padding-bottom: 10px;
  text-align: left;
}
.company-menu-main ul.menu, .objects-menu ul.menu{
  padding: 0;
  margin: 0;
  list-style: none;
}
.company-menu-main ul.menu li, .objects-menu ul.menu li{
  list-style: none;
  line-height: 1.2;
  padding-bottom: 5px;
}
.company-menu-main ul.menu li a, .objects-menu ul.menu li a{
  list-style: none;
  color: #333333;
  display: block;
  font-size: 16px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.company-menu-main ul.menu li a:hover, .objects-menu ul.menu li a:hover{
	color: #b60011;
}
.footer-company-social{
  float: right;
}
.footer-company-wrap, .footer-company-menu, .footer-company-objects, .footer-company-social{
  padding-top: 20px !important;
}
.social-footer .block-content img{
  width: 50px;
  display: block;
  margin: 0 0 10px auto;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.social-footer .block-content img:hover{
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
	filter: alpha(opacity=70);
	-moz-opacity: 0.7;
	-khtml-opacity: 0.7;
	opacity: 0.7;
}
.conf-info .block-content{
  font-size: 14px;
  line-height: 1.2;
  color: #333333;
  max-width: 880px;
  padding-top: 10px;
}
.mobile-part-footer, .social-footer.mobile{
  display: none;
}
@media screen and (max-width: 1200px){
  .company-name .block-content {
    font-size: 26px;
  }
  .company-menu-main .block-title, .objects-menu .block-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 1000px){
  .company-name .block-content {
    font-size: 22px;
  }
  .company-menu-main .block-title, .objects-menu .block-title {
    font-size: 16px;
  }
  .company-subtitle .block-content, .company-menu-main ul.menu li a, .objects-menu ul.menu li a{
    font-size: 14px;
  }
}
@media screen and (max-width: 800px){
  .company-name .block-content {
    font-size: 22px;
  }
  .company-menu-main .block-title, .objects-menu .block-title {
    font-size: 16px;
  }
  .company-subtitle .block-content, .company-menu-main ul.menu li a, .objects-menu ul.menu li a{
    font-size: 14px;
  }
  .mobile-part-footer, .social-footer.mobile{
    display: block;
  }
  .desktop-footer-area{
    display: none;
  }
  .mobile-part-footer{
    text-align: center;
  }
  .mobile-logo-footer{
    width: 70px;
    float: none;
    display: inline-block;
    margin-right: -4px;
  }
  .mobile-footer{
    display: inline-block;
    width: 80%;
    padding-top: 30px;
    float: none;
  }
  .footer-mobile-menu{
    padding-top: 30px !important;
  }
  .social-footer.mobile .block-content{
    text-align: center;
  }
  .social-footer .block-content img{
    display: inline-block;
    margin: 5px;
  }
  .conf-info .block-content{
    font-size: 12px;
  }
  .region-footer{
    padding: 30px 2%;
  }
}
@media screen and (max-width: 500px){
  .company-name .block-content {
    font-size: 18px;
  }
  .mobile-logo-footer, .mobile-footer{
    display: block;
    margin: 0 auto 10px;
  }
  .mobile-footer{
    width: 100%;
  }
}
/* webform */
.node-webform h1 {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    padding-top: 10px;
    line-height: 1;
}
.node-webform h1 a {
    pointer-events: none;
    color: #000;
}
.node-webform .webform-client-form {
    width: 100%;
    max-width: 475px;
    margin: 0 auto;
}
.node-webform form .form-item {
    width: 100%;
    max-width: 475px;
    line-height: 1.2;
}
.node-webform form .form-item label {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Rubik";
}
.node-webform form .form-item input {
    width: 96%;
    max-width: 454px;
    font-family: "Rubik";
    -webkit-appearance: none;
}
input.form-text, textarea.form-textarea {
    border: 1px solid #ebebeb;
    border-radius: 5px;
    padding: 14px 2% 14px;
    font-size: 20px;
    color: #2e3b4e;
    box-shadow: none;
    font-family: "Rubik";
}
input.form-text:focus, textarea.form-textarea:focus {
    outline: none;
    border: 1px solid #ccc;
}
.node-webform form .form-item.form-type-checkbox input {
    width: 20px;
}
.webform-client-form .form-item.form-type-checkbox input {
    width: 20px;
}
.webform-client-form .form-actions, .form-actions {
    text-align: right;
}
input.webform-submit, .form-actions input {
    line-height: 1.2;
    background: #b60011;
    padding: 14px 15px 12px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 19px;
    border: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 5px;
    transition: background 0.4s;
    -webkit-appearance: none;
}
input.webform-submit:hover, .form-actions input:hover {
    background: #87000c;
}
.node-webform form .form-item a {
    color: #b60011;
    font-family: "Rubik";
}
@media screen and (max-width: 600px){
  .node-webform form .form-item label{
    font-size: 12px;
  }
  .node-webform h1{
    font-size: 22px;
    padding-top: 15px;
  }
}
@media screen and (max-width: 520px){
  .node-webform form .form-item input{
    width: 95%;
  }
}
/* Внутренние страницы */
.content-header{
  width: 96%;
  max-width: 1400px;
  padding: 20px 2%;
  margin: 0 auto;
}
.node-type-object .content-header{
  padding: 0;
}
#breadcrumb{
  width: 96%;
  max-width: 1400px;
  padding: 10px 2%;
  margin: 0 auto;
}
#breadcrumb li a{
  color: #b60011;
}
.not-front #columns{
  width: 96%;
  max-width: 1400px;
  padding: 20px 2%;
  margin: 0 auto;
}
#main-content{
  margin: 0;
}
#page-title{
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 1100px){
  #page-title{
    font-size: 36px;
  }
}
@media screen and (max-width: 800px){
  #page-title{
    font-size: 30px;
  }
  #breadcrumb li {
    font-size: 14px;
  }
}
@media screen and (max-width: 500px){
  #page-title{
    font-size: 24px;
  }
}
/* Новости страница */
.news-view.news-page .view-content{
  background: #e9e9e9;
  width: 100%;
  display: table;
  font-size: 0;
  text-align: center;
}
.news-view.news-page .views-row{
  margin-bottom: 0.3%;
  display: inline-block;
  vertical-align: top;
  float: none;
  text-align: left;
}
.news-view.news-page .views-row:last-child{
  margin-right: 0;
}
.another-news{
  background: #222531;
}
.not-front.page-news #columns, .node-type-news #columns{
  width: 100%;
  max-width: none;
  padding: 0;
}
.node-type-news #block-system-main{
  width: 96%;
  max-width: 1400px;
  padding: 20px 2%;
  margin: 0 auto;
}
.news-inner-info {
  width: 96%;
  padding: 20px 2%;
  max-width: 1200px;
  margin: 0 auto;
}
.news-full-img {
    float: left;
    margin: 0 20px 10px 0;
    width: 40%;
}
.news-full-img img{
  display: block;
  width: 100%;
}
.news-text-full{
  font-size: 18px;
  line-height: 1.3;
}
.news-text-full ul{
  margin: 0;
  padding: 0;
  display: table;
}
.news-text-full li{
  margin-left: 20px;
}
@media screen and (max-width: 700px){
  .news-full-img {
    width: 100%;
    float: none;
  }
  .news-text-full {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px){
  .news-text-full {
    font-size: 14px;
  }
}
/* Ипотека */
.ipoteca-page-view{
  padding: 20px 0;
  margin: 0 auto;
}
.ipoteca-page-view .view-content{
  display: inline-block;
  vertical-align: top;
}
.ipoteca-page-view .views-row {
    position: relative;
    float: left;
    width: 28%;
    margin-right: 2%;
    margin-bottom: 2%;
    /*min-height: 260px;*/
    padding: 2% 2%;
    -webkit-box-shadow: 0 0 1px #ccc;
    -moz-box-shadow: 0 0 1px  #ccc;
    box-shadow: 0 0 1px #ccc;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.ipoteca-page-view .views-row:hover{
    -webkit-box-shadow: 0 0 3px #ccc;
    -moz-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
}
.ipoteca-page-view .views-row:last-child{
  margin-right: 0;
}
.ipoteca-page-view .views-row:nth-child(3n){
  margin-right: 0;
}
.ipoteca-text-box {
    float: left;
    width: 50%;
    margin-bottom: 5%;
}
.ipoteca-text-box:last-child{
  margin-bottom: 0;
}
.ipoteca-text-label{
  font-size: 16px;
  line-height: 1.2;
  color: #929090;
  position: relative;
  z-index: 12;
  display: inline-block;
}
.ipoteca-text {
  font-size: 26px;
  line-height: 1.2;
  color: #000;
  font-weight: 400;
  padding-top: 10px;
}
.ipoteca-more-btn a {
    width: 40px;
    height: 40px;
    background: url(../images/right-arrow.svg) no-repeat 50% 50%;
    background-size: 40px;
    display: block;
    border-radius: 100%;
    -webkit-box-shadow: 0 0 1px #ccc;
    -moz-box-shadow: 0 0 1px #ccc;
    box-shadow: 0 0 1px #ccc;
    padding: 10px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    -moz-opacity: 0.7;
    -khtml-opacity: 0.7;
    opacity: 0.7;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    position: relative;
    z-index: 12;
    margin: 0 auto;
}
.ipoteca-more-btn a:hover {
    -webkit-box-shadow: 0px 0px 30px -10px #ccc;
    -moz-box-shadow: 0px 0px 30px -10px #ccc;
    box-shadow: 0px 0px 30px -10px #ccc;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
    -moz-opacity: 1;
    -khtml-opacity: 1;
    opacity: 1;
}
.ipoteca-big-link a{
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 10;
}
.bank-title-invisible{
  font-size: 0;
}
.node-webform .messages.error{
  display: none;
}
.ajax-progress{
  display: none;
}
.node-webform .links, .webform-contact .links, .block-webform .links{
  display: none;
}
.webform-confirmation{
    font-size: 28px;
    line-height: 1.3;
    padding-top: 90px;
    text-align: center;
}
.page-node-22 .field-collection-container{
  border: none;
}
.page-node-22 .field-name-field-page-text{
  font-size: 16px;
  line-height: 1.2;
}
#cboxLoadedContent{
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1150px){
  .ipoteca-page-view .views-row {
      float: left;
      width: 45%;
  }
  .ipoteca-page-view .views-row:nth-child(3n){
    margin-right: 2%;
  }
  .ipoteca-page-view .views-row:nth-child(2n){
    margin-right: 0;
  }
}
@media screen and (max-width: 700px){
  .ipoteca-img {
    width: 180px;
    margin: 0 auto;
  }
  .ipoteca-text-label {
    font-size: 14px;
    text-align: center;
  }
  .ipoteca-text {
    font-size: 20px;
    text-align: center;
  }
  .ipoteca-text-box {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 450px){
  .ipoteca-page-view .view-content{
    display: block;
  }
 .ipoteca-page-view .views-row {
    float: none;
    width: 96%;
    margin: 0 auto 3% !important;
    display: block;
  }
}
/* Акции */
.actions-page-view .view-content{
  display: inline-block;
  vertical-align: top;
}
.actions-page-view .views-row {
    position: relative;
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0;
    -webkit-box-shadow: 0 0 1px #ccc;
    -moz-box-shadow: 0 0 1px  #ccc;
    box-shadow: 0 0 1px #ccc;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.actions-page-view .views-row:hover{
    -webkit-box-shadow: 0 0 3px #ccc;
    -moz-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
}
.actions-page-view .views-row:last-child{
  margin-right: 0;
}
.actions-page-view .views-row:nth-child(3n){
  margin-right: 0;
}
.action-card-title{
  font-size: 20px;
  font-weight: 600;
  width: 96%;
  padding: 20px 2%;
  line-height: 1.2;
  height: 50px;
  overflow: hidden;
}
.action-card-title a{
  color: #b60011;
}
.action-card-title a:hover{
  color: #87000c;
}
.action-card-img, .other-action-img{
  position: relative;
  overflow: hidden;
  background: #000;
}
.action-card-img img{
  display: block;
  margin: 0 auto;
  width: 100%;
}
.action-img-full {
    float: left;
    margin: 0 20px 10px 0;
}
.action-img-full img{
  display: block;
  width: 100%;
}
.action-text-full{
  font-size: 18px;
  line-height: 1.3;
  padding-bottom: 20px;
}
@media screen and (max-width: 1200px){
  .action-img-full {
    width: 50%;
  }
}
@media screen and (max-width: 1150px){
  .actions-page-view .views-row {
      float: left;
      width: 49%;
  }
  .actions-page-view .views-row:nth-child(3n){
    margin-right: 2%;
  }
  .actions-page-view .views-row:nth-child(2n){
    margin-right: 0;
  }
  .action-card-title{
    font-size: 18px;
    /*height: 85px;*/
  }
}
@media screen and (max-width: 700px){
  .action-card-title{
    font-size: 16px;
    /*height: 90px;*/
  }
  .action-img-full {
    width: 100%;
    float: none;
  }
  .action-text-full {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px){
  .action-card-title{
    height: 80px;
  }
}
@media screen and (max-width: 500px){
  .actions-page-view .view-content{
    display: block;
  }
  .action-card-title{
    height: auto;
  }
 .actions-page-view .views-row {
    float: none;
    width: 96%;
    margin: 0 auto 3% !important;
    display: block;
  }
  .action-text-full {
    font-size: 14px;
  }
}
.file a{
  color: #b60011;
  font-size: 16px;
}
/* Другие акции */
.other-actions .jcarousel-skin-default .jcarousel-item{
  height: 460px;
  width: 350px;
  border: none;
  position: relative;
  border: 1px solid #ccc;
  margin: 0 30px;
}
.other-actions .jcarousel-list{
  margin: 0 auto !important;
  display: table;
  text-align: center;
}
.other-actions .jcarousel-skin-default .jcarousel-next, .other-actions .jcarousel-skin-default .jcarousel-prev {
    width: 40px;
    height: 45px;
    background-image: transparent;
}
.other-actions .jcarousel-skin-default .jcarousel-container-horizontal {
    height: auto;
    padding: 20px 50px;
}
.other-actions .jcarousel-skin-default .jcarousel-prev-horizontal {
    top: 35%;
    left: 0;
    background: url(../images/left-gallery.svg) no-repeat -5px 0;
    background-size: 45px;
    opacity: 0.5;
}
.other-actions .jcarousel-skin-default .jcarousel-next-horizontal {
    top: 35%;
    right: 0;
    background: url(../images/right-gallery.svg) no-repeat 0 0;
    background-size: 45px;
    opacity: 0.5;
}
.other-actions .jcarousel-skin-default .jcarousel-prev-horizontal:hover {
    opacity: 1;
}
.other-actions .jcarousel-skin-default .jcarousel-next-horizontal:hover {
    opacity: 1;
}
.other-actions .view-header h2{
  padding: 20px 0 0;
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
  font-weight: 600;
  margin: 0;
}
.other-action-title{
  line-height: 1.2;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  width: 96%;
  padding: 10px 2%;
}
.other-action-title a{
  color: #b60011;
}
.other-actions .jcarousel-skin-default .jcarousel-item:hover .other-action-title{
  opacity: 1;
}
.other-action-img{
  display: block;
  position: relative;
  overflow: hidden;
}
.other-action-img img{
  display: block;
  width: 100%;
  margin: 0 auto;
}
.action-more {
    line-height: 1.2;
    position: absolute;
    bottom: 10px;
    display: inline-block;
    left: 10px;
}
.action-more a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    text-align: center;
    display: inline-block;
    max-width: 100px;
    text-transform: uppercase;
    padding: 8px 10px 6px;
    background: #b60011;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.action-more a:hover {
    background: #87000c;
}
.object-sale-wrap h2{
  text-transform: uppercase;
  text-align: center;
  font-size: 40px;
  line-height: 1.2;
  padding-bottom: 20px;
}
@media screen and (max-width: 900px){
  .object-sale-wrap h2 {
      font-size: 34px;
  }
}
@media screen and (max-width: 550px){
  .other-actions .jcarousel-skin-default .jcarousel-item{
    margin: 0;
  }
  .other-actions .jcarousel-skin-default .jcarousel-container-horizontal {
    padding: 20px 40px;
  }
  .object-sale-wrap h2 {
      font-size: 28px;
  }
}
@media screen and (max-width: 450px){
  .other-actions .jcarousel-skin-default .jcarousel-item {
    height: 430px;
    width: 280px;
  }
}
@media screen and (max-width: 400px){
  .other-actions .jcarousel-skin-default .jcarousel-container-horizontal {
    padding: 20px 0 70px;
  }
  .other-actions .jcarousel-skin-default .jcarousel-prev-horizontal,
  .other-actions .jcarousel-skin-default .jcarousel-next-horizontal {
    top: 89%;
  }
}
/* Объекты категории */
.object-type-page .view-content{
  display: table;
  width: 100%;
  font-size: 0;
  text-align: center;
}
.object-type-page .views-row {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0;
    -webkit-box-shadow: 0 0 1px #ccc;
    -moz-box-shadow: 0 0 1px  #ccc;
    box-shadow: 0 0 1px #ccc;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.object-type-page .views-row:hover{
    -webkit-box-shadow: 0 0 3px #ccc;
    -moz-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
}
.object-type-page .views-row:last-child{
  margin-right: 0;
}
.object-type-page .views-row:nth-child(3n){
  margin-right: 0;
}
.object-type-img{
	position: relative;
	overflow: hidden;
}
.object-type-img img{
	width: 100%;
	display: block;
	margin: 0 auto;
}
.object-type-text-box{
	position: absolute;
	top: 0;
	height: 100%;
	width: 100%;
}
.object-type-title{
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.object-type-title a{
  display: table-cell;
  vertical-align: middle;
  font-size: 34px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 15;
  padding: 0 2%;
}
.object-type-title:before{
	content: " ";
	display: block;
	background: rgba(0,0,0,0.6);
	position: absolute;
	width: 100%;
	height: 46%;
	top: 27%;
	z-index: 10;
	transition: all .4s ease-in-out;
}
.object-type-page .views-row:hover .object-type-title:before{
    transform: scale(3.2) rotate(45deg);
}
@media screen and (max-width: 1150px){
  .object-type-page .views-row {
      width: 49%;
  }
  .object-type-page .views-row:nth-child(3n){
    margin-right: 2%;
  }
  .object-type-page .views-row:nth-child(2n){
    margin-right: 0;
  }
  .object-type-title a{
  	font-size: 30px;
  }
}
@media screen and (max-width: 700px){
  .object-type-title a{
    font-size: 24px;
  }
}
@media screen and (max-width: 500px){
 .object-type-page .views-row {
    width: 96%;
    margin: 0 auto 3% !important;
    display: block;
  }
  .object-type-title a{
  	font-size: 26px;
  }
}
/* Объекты подкатегории */
.objects-menu-view.new-house .view-content{
  display: inline-block;
  vertical-align: top;
}
.objects-menu-view.new-house .views-row {
    position: relative;
    overflow: hidden;
    float: left;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0;
    -webkit-box-shadow: 0 0 1px #ccc;
    -moz-box-shadow: 0 0 1px  #ccc;
    box-shadow: 0 0 1px #ccc;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.objects-menu-view.new-house .views-row:hover{
    -webkit-box-shadow: 0 0 3px #ccc;
    -moz-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
}
.objects-menu-view.new-house .views-row:last-child{
  margin-right: 0;
}
.objects-menu-view.new-house .views-row:nth-child(3n){
  margin-right: 0;
}

.page-taxonomy #columns{
  width: 100%;
  max-width: none;
  padding: 0;
}
.actions-more{
    line-height: 1.2;
}
.actions-more a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    text-align: center;
    display: block;
    max-width: 100px;
    text-transform: uppercase;
    padding: 8px 10px 6px;
    background: #b60011;
    margin: 0 auto 30px;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.actions-more a:hover {
    background: #87000c;
}
.about-project-title .block-content, .about-project-title .block-content h2{
  text-transform: uppercase;
  font-size: 36px;
  text-align: center;
  line-height: 1.2;
  padding: 20px 0;
  font-weight: 600;
}
.object-main-text{
  padding-right: 2%;
  width: 98%;
  position: relative;
}
#learn-more{
  position: absolute;
  top: -300px;
}
.object-text-full{
  font-size: 16px;
  line-height: 1.3;
}
.object-haract, .site-object-label {
    font-size: 20px;
    line-height: 1.2;
    color: #929090;
    position: relative;
    z-index: 12;
    padding: 10px 0 10px 40px;
    background-position: 0 30%;
    background-repeat: no-repeat;
    background-size: 30px;
}
.object-haract span {
    font-size: 26px;
    line-height: 1.2;
    color: #000;
    font-weight: 400;
    padding-top: 10px;
}
.object-haract.address{
  background-image: url(../images/address.svg);
}
.object-haract.square{
  background-image: url(../images/gksq.svg);
}
.object-haract.flat-sq{
  background-image: url(../images/flat-sq.svg);
}
.object-haract.flat-sell{
  background-image: url(../images/key.svg);
}
.object-haract.srok{
  background-image: url(../images/calendar-object.svg);
}
.site-object-label{
  background-image: url(../images/site.svg);
}
.site-object-label .site{
  display: inline;
  font-size: 26px;
  line-height: 1.2;
}
.site-object-label .site a{
  color: #b60011;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.site-object-label .site a:hover{
    color: #87000c;
}
.object-video{
  margin-top: 20px;
}
.object-video .player > iframe{
  width: 100% !important;
}
#content .panel-display, #content .panel-flexible{
  margin: 0;
}
.node-type-object #columns {
    width: 100%;
    max-width: none;
    padding: 0;
}
#block-panels-mini-object-page{
  width: 96%;
  max-width: 1400px;
  padding: 0 2% 20px;
  margin: 0 auto;
}
.preim-view-block.object-preim{
	text-align: center;
}
.preim-view-block.object-preim .view-content{
	    width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  display: inline-block;
  vertical-align: top;
  padding: 20px 2%;
}
.preim-view-block.object-preim .views-row {
  width: 16.419%;
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
  margin-right: -4px;
}
@media screen and (max-width: 1200px){
  .object-haract, .site-object-label {
    font-size: 18px;
  }
  .object-haract span {
    font-size: 22px;
  }
  .preim-view-block.object-preim{
  	display: block;
  }
}
@media screen and (max-width: 950px){
	.preim-view-block.object-preim .views-row {
		width: 33.333%;
    	margin-bottom: 10px;
    	border: none;
	}
	.preim-view-block.object-preim .view-content{
		padding: 20px 2% 10px;
	}
}
@media screen and (max-width: 900px){
  #block-panels-mini-object-page .region-two-66-33-first, #block-panels-mini-object-page .region-two-66-33-second{
    width: 100%;
    float: none;
    margin: 0 auto 20px;
    display: block;
  }
  .object-main-text{
    padding: 0;
    width: 100%;
  }
  .object-haract-full{
    float: left;
    width: 48%;
    padding-left: 2%;
  }
  .object-video{
    float: left;
    width: 50%;
    margin: 0;
  }
  .object-haract, .site-object-label {
    font-size: 16px;
  }
  .object-haract span {
    font-size: 20px;
  }
  .site-object-label .site{
    font-size: 20px;
  }
}
@media screen and (max-width: 700px){
 .object-haract-full{
    float: none;
    width: 100%;
    padding-left: 0;
    padding-top: 20px;
  }
  .object-video{
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 600px){
	.preim-view-block.object-preim .views-row {
		width: 50%;
	}
}
@media screen and (max-width: 450px){
  .object-haract, .site-object-label {
    font-size: 14px;
  }
  .object-haract span {
    font-size: 16px;
  }
  .site-object-label .site{
    font-size: 16px;
  }
  .object-text-full {
    font-size: 14px;
  }
  /*.preim-view-block.object-preim .views-row {
		width: 100%;
    margin: 0 auto 10px;
	}
  .preim-view-block.object-preim .views-row:last-child{
    margin: 0 auto;
  }*/
}
/* Расположение объекта */
.object-block-title{
	text-transform: uppercase;
    font-size: 36px;
    text-align: center;
    line-height: 1.2;
    padding: 20px 0;
    font-weight: 600;
    margin: 0;
}
.object-map{
  border-top: 15px solid #b60011;
}
@media screen and (max-width: 900px){
  .object-map-field > ymaps, .object-map-field > p > ymaps, .object-map-field > p > iframe{
    width: 90% !important;
    padding: 0 5% 20px;
    height: 300px !important;
  }
  .object-block-title{
    font-size: 32px;
  }
}
@media screen and (max-width: 500px){
  .object-map-field > ymaps, .object-map-field > p > ymaps, .object-map-field > p > iframe{
    width: 82% !important;
    padding: 0 9% 20px;
  }
  .object-block-title{
    font-size: 26px;
  }
}
/* Рекомендуемые объекты */
.objects-recommend .view-content {
  text-align: center;
  display: table;
  width: 100%;
  padding-top: 0.299%;
  font-size: 0px;
}
.objects-recommend .views-row {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    width: 32.719%;
    background: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0 0 1px #ccc;
    -moz-box-shadow: 0 0 1px #ccc;
    box-shadow: 0 0 1px #ccc;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    margin: 0 0.299%;
    margin-bottom: 0.5%;
    position: relative;
}
/*.objects-recommend .views-row:nth-child(3n){
  margin-right: 0;
}
.objects-recommend .views-row:last-child{
  margin-right: 0;
}*/
.objects-recommend .object-block-title{
    padding: 30px 0;
}
.object-recommend-title{
  line-height: 1.2;
  padding: 10px 5px;
  height: 52px;
}
.object-recommend-title a {
    text-transform: uppercase;
    font-size: 26px;
    color: #b60011;
    font-weight: 700;
}
.objects-recommend .views-row:hover{
  -webkit-box-shadow: 0 0 3px #ccc;
  -moz-box-shadow: 0 0 3px #ccc;
  box-shadow: 0 0 3px #ccc;
}
.objects-recommend .views-row:hover .object-recommend-title a{
  color: #87000c;
}
.object-recom-more {
    line-height: 1.2;
}
.object-recom-more a:hover {
    background: #87000c;
}
.object-recom-more a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    text-align: center;
    display: block;
    max-width: 100px;
    text-transform: uppercase;
    padding: 8px 10px 6px;
    background: #b60011;
    margin: 10px 10px 10px auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
.object-other.label-wrap{
  position: absolute;
  top: 0;
  font-size: 15px;
}
@media screen and (max-width: 1200px){
  .object-recommend-title a{
    font-size: 24px;
  }
  .objects-recommend .views-row{
    width: 49.399%;
  }
  /*.objects-recommend .views-row:nth-child(3n){
    margin-right: 0.299%;
  }
  .objects-recommend .views-row:nth-child(2n){
    margin-right: 0;
  }*/
}
@media screen and (max-width: 880px){
  .objects-recommend .view-content{
    padding-top: 2%;
  }
  .objects-recommend .views-row {
    width: 98%;
    margin: 0 auto 2%;
  }
  .object-recommend-title a{
    font-size: 22px;
  }
  .object-recommend-title{
    height: auto;
  }
}
/* Документы объекта */
.object-documents{
  width: 96%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 2%;
}
.object-documents .views-row{
  width: 25%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 2%;
  text-align: left;
}
.object-documents .view-content{
  text-align: center;
  padding: 20px 0;
  font-size: 0;
  display: table;
  width: 100%;
}
.object-documents .file{
  line-height: 1.2;
}
.object-documents .file img{
  width: 40px;
  padding-right: 10px;
}
.object-doc-file .file a{
  display: inline-block;
  vertical-align: middle;
}
.object-doc-file .file {
  line-height: 1.2;
}
.object-doc-file .file a{
  font-size: 20px;
  max-width: 200px;
}
.object-doc-file .file a img{
  -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    margin-right: 10px;
}
.object-doc-file .file a:hover{
  color: #87000c;
}
.object-doc-file .file:hover a img{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.70;
  -khtml-opacity: 0.70;
  opacity: 0.7;
}
@media screen and (max-width: 1060px){
  .object-documents .views-row{
    width: 33.333%;
  }
  .object-doc-file .file a{
    font-size: 18px;
  }
}
@media screen and (max-width: 800px){
  .object-documents .views-row{
    width: 50%;
  }
  .object-doc-file .file a{
    font-size: 16px;
  }
}
@media screen and (max-width: 550px){
  .object-documents .views-row{
    width: 100%;
  }
}
/* Собственное производство */
.product-category-view .view-content {
  text-align: center;
  display: table;
  height: auto;
  width: 99.6%;
  font-size: 0;
  padding: 0.299% 0.299% 0;
}
.product-category-view .views-row {
    text-align: left;
    display: inline-block;
    vertical-align: top;
    width: 33.13%;
    background: #fff;
    overflow: hidden;
    position: relative;
    -webkit-box-shadow: 0 0 1px #ccc;
    -moz-box-shadow: 0 0 1px #ccc;
    box-shadow: 0 0 1px #ccc;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    margin-right: 0.299%;
    margin-bottom: 0.5%;
    padding-bottom: 50px;
}
.product-category-view .views-row:nth-child(3n){
  margin-right: 0;
}
.product-category-view .views-row:last-child{
  margin-right: 0;
}
.product-category-img-wrap{
  position: relative;
  overflow: hidden;
}
.product-img-link{
  position: absolute;
  top: 0;
  height: 100%;
  width: 100%;
  right: 0;
  left: 0;
  z-index: 10;
}
.product-category-img{
  overflow: hidden;
  background: #000;
  position: relative;
}
.product-category-title{
  line-height: 1.2;
  padding: 10px 5px;
  height: 62px;
}
.product-category-title a {
    text-transform: uppercase;
    font-size: 26px;
    color: #b60011;
    font-weight: 700;
}
.product-category-view .views-row:hover{
    -webkit-box-shadow: 0 0 3px #ccc;
    -moz-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
}
.product-category-view .views-row:hover .product-category-title a{
  color: #87000c;
}
.product-category-more {
    line-height: 1.2;
    position: absolute;
    bottom: 0;
    width: 100%;
}
.product-category-more a:hover {
    background: #87000c;
}
.product-category-more a {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #fff;
    text-align: center;
    display: block;
    max-width: 100px;
    text-transform: uppercase;
    padding: 8px 10px 6px;
    background: #b60011;
    margin: 10px 10px 10px auto;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}
#block-block-27 p{
  font-size: 18px;
  line-height: 1.2;
  padding: 0 0 20px;
}
@media screen and (max-width: 1200px){
  .product-category-title a{
    font-size: 24px;
  }
  .product-category-view .views-row{
    width: 49.843%;
  }
  .product-category-view .views-row:nth-child(3n){
    margin-right: 0.299%;
  }
  .product-category-view .views-row:nth-child(2n){
    margin-right: 0;
  }
}
@media screen and (max-width: 880px){
  .product-category-view .view-content{
    padding: 1% 1% 0;
    width: 98%;
  }
  .product-category-view .views-row {
    width: 100%;
    margin: 0 auto 1%;
  }
  .product-category-title a{
    font-size: 22px;
  }
  #block-block-27 p{
    font-size: 16px;
  }
  .product-category-title{
    height: auto;
  }
}
/* Категория продукта страница */
.product-catalog-page .views-row{
  position: relative;
}
.product-cat-box{
  position: absolute;
  width: 96%;
  padding: 20px 2%;
  max-width: 1400px;
  margin: 0 auto;
  top: 20%;
  right: 0;
  left: 0;
}
.product-cat-title h1{
  margin: 0;
  line-height: 1.2;
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  color: #fff;
}
.product-cat-more{
  line-height: 1.2;
  padding: 50px 0 0;
}
.product-cat-more a {
  display: inline-block;
  font-size: 24px;
  color: #fff;
  text-transform: uppercase;
  background: #b60011;
  padding: 10px 15px;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.product-cat-more a:hover{
  background: #87000c;
}
.product-catalog-page .rotator-img-full{
  background: #000;
}
.product-catalog-page .rotator-img-wrap-mobile{
  display: none;
}
.product-catalog-page .rotator-img-full img, .product-catalog-page .rotator-img-mobile img{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.80;
  -khtml-opacity: 0.80;
  opacity: 0.8;
  display: block;
  margin: 0 auto;
}
.cat-product-opis{
  width: 96%;
  padding: 20px 2%;
  margin: 0 auto;
  max-width: 1400px;
  font-size: 18px;
  line-height: 1.2;
}
@media screen and (max-width: 1400px){
  .product-catalog-page .views-row{
    height: 364px;
    overflow: hidden;
  }
  .views-rotator-wrap-img {
    height: 100%;
    width: 1400px;
    position: absolute;
    left: 50%;
  }
  .views-rotator-wrap-img .rotator-img-full {
      height: 100%;
      width: 1400px;
      position: relative;
      right: 50%;
  }
}
@media screen and (max-width: 1000px){
  .product-catalog-page .rotator-img-full{
    display: none;
  }
  .product-catalog-page .rotator-img-wrap-mobile{
    display: block;
  }
  .rotator-img-mobile{
    background: #000;
  }
  .product-cat-title h1{
    font-size: 38px;
  }
  .product-cat-box{
    top: 25%;
  }
  .product-cat-more {
    padding: 40px 0 0;
  }
  .product-cat-more a {
    font-size: 20px;
  }
  .product-catalog-page .views-row{
    height: 360px;
    overflow: hidden;
  }
  .rotator-img-wrap-mobile {
    height: 100%;
    width: 1000px;
    position: relative;
    left: 50%;
  }
  .rotator-img-wrap-mobile .rotator-img-mobile {
      height: 100%;
      width: 1000px;
      position: relative;
      right: 50%;
  }
}
@media screen and (max-width: 500px){
  .product-cat-title h1{
    font-size: 28px;
  }
  .product-catalog-page .views-row{
    height: 300px;
  }
  .rotator-img-wrap-mobile {
    width: 833px;
  }
  .rotator-img-wrap-mobile .rotator-img-mobile {
      width: 833px;
  }
  .product-cat-more a {
    font-size: 18px;
  }
}
@media screen and (max-width: 400px){
  .product-cat-title h1{
    font-size: 26px;
  }
  .product-cat-more a {
    font-size: 16px;
  }
}
/* Каталог продукции */
.catalog-products-view .view-content{
  display: table;
  text-align: center;
  font-size: 0;
  width: 100%;
}
.catalog-products-view .views-row {
    position: relative;
    overflow: hidden;
    display: inline-block;
    vertical-align: top;
    width: 32%;
    margin-right: 2%;
    margin-bottom: 2%;
    padding: 0;
    -webkit-box-shadow: 0 0 1px #ccc;
    -moz-box-shadow: 0 0 1px  #ccc;
    box-shadow: 0 0 1px #ccc;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.catalog-products-view .views-row:hover{
    -webkit-box-shadow: 0 0 3px #ccc;
    -moz-box-shadow: 0 0 3px #ccc;
    box-shadow: 0 0 3px #ccc;
}
.catalog-products-view .views-row:last-child{
  margin-right: 0;
}
.catalog-products-view .views-row:nth-child(3n){
  margin-right: 0;
}
.catalog-products-view .view-footer{
  text-align: center;
}
.catalog-products-view .view-footer .views-row.add{
  margin: 0 auto;
  float: none;
  height: 100px !important;
}
.product-link-wrap{
  display: table;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  text-align: center;
  line-height: 1.2;
  background: #222531;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.product-link-wrap a{
  font-size: 26px;
  font-weight: 600;
  color: #fff;
  display: table-cell;
  vertical-align: middle;
  -webkit-transition: all .4s ease-in-out;
  -moz-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}
.views-row.add:hover .product-link-wrap a{
  color: #b60011;
}
.views-row.add:hover .product-link-wrap{
  background: rgba(34, 37, 49, 0.8);
}
@media screen and (max-width: 500px){
  .views-row.add{
    margin: 0 auto;
    float: none;
    height: 100px !important;
  }
}
.object-type-img{
  position: relative;
  overflow: hidden;
}
.catalog-products-img img{
  width: 100%;
  display: block;
  margin: 0 auto;
}
.catalog-products-textbox {
    position: absolute;
    bottom: 0;
    height: 190px;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.catalog-products-title{
  width: 100%;
  height: 100%;
  display: table;
  text-align: center;
  line-height: 1.2;
  position: relative;
}
.catalog-products-title a{
  display: table-cell;
  vertical-align: middle;
  font-size: 34px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 600;
  position: relative;
  z-index: 15;
}
.catalog-products-title:before {
    content: " ";
    display: block;
    background: rgba(0,0,0,0.6);
    position: absolute;
    width: 100%;
    margin: 0 auto;
    right: 0;
    left: 0;
    height: 100%;
    top: 0;
    z-index: 10;
    transition: all .4s ease-in-out;
}
.catalog-products-view .views-row:hover .catalog-products-textbox{
    height: 100%;
}
@media screen and (max-width: 1150px){
  .catalog-products-view .views-row {
      float: left;
      width: 49%;
  }
  .catalog-products-view .views-row:nth-child(3n){
    margin-right: 2%;
  }
  .catalog-products-view .views-row:nth-child(2n){
    margin-right: 0;
  }
  .catalog-products-title a{
    font-size: 30px;
  }
}
@media screen and (max-width: 700px){
  .catalog-products-title a{
    font-size: 24px;
  }
}
@media screen and (max-width: 500px){
  .catalog-products-view .view-content{
    display: block;
  }
 .catalog-products-view .views-row {
    float: none;
    width: 96%;
    margin: 0 auto 3% !important;
    display: block;
  }
  .catalog-products-title a{
    font-size: 26px;
  }
}
/* Страница продукта */
.product-image-full {
    float: left;
    margin: 0 20px 10px 0;
    width: 40%;
}
.product-image-full img{
  display: block;
  width: 100%;
}
.product-opisanie{
  font-size: 18px;
  line-height: 1.3;
}
.product-inner-info .views-row{
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.product-inner-info .object-block-title.seo-title{
  clear: both;
}
.node-type-sobstv-proizv #columns{
  max-width: 1200px;
}
@media screen and (max-width: 700px){
  .product-image-full{
    width: 100%;
    float: none;
  }
  .product-opisanie {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px){
  .product-opisanie {
    font-size: 14px;
  }
}
/* Документы */
.file a{
  display: inline-block;
  vertical-align: middle;
  max-width: 200px;
}
.page-node-23 .field-collection-view, .page-node-23 .field-collection-container{
  border: none;
}
.page-node-23 .field-name-field-doc-object{
  font-size: 36px;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
}
.page-node-23 .field-name-field-doc-files {
    text-align: center;
    padding: 20px 0 10px;
}
.page-node-23 .field-name-field-doc-files .field-item{
  display: inline-block;
  width: 33%;
  margin-right: -4px;
  text-align: left;
  padding: 0 0 10px;
}
@media screen and (max-width: 1200px){
  .page-node-23 .field-name-field-doc-object{
    font-size: 30px;
  }
}
@media screen and (max-width: 1000px){
  .page-node-23 .field-name-field-doc-files .field-item{
    width: 50%;
  }
  .page-node-23 .field-name-field-doc-files {
    text-align: left;
  }
}
@media screen and (max-width: 600px){
  .page-node-23 .field-name-field-doc-files .field-item{
    width: 100%;
  }
  .page-node-23 .field-name-field-doc-object{
    font-size: 24px;
  }
}
/* Формы */
.page-user form{
    width: 100%;
    max-width: 475px;
    margin: 0 auto;
}
.page-user form .form-item {
    width: 100%;
    max-width: 475px;
}
.page-user form .form-item input {
    width: 96%;
    max-width: 454px;
    font-family: "Rubik";
}
/* О компании */
#page_nav{
  position: fixed;
  top: 25%;
  right: 10px;
  z-index: 10;
  display: none;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
}
#page_nav.active-nav{
  display: block;
}
#page_nav ul {
    list-style: none;
    padding: 0 20px 0 0;
    margin: 0;
}
#page_nav ul li a{
  list-style: none;
  line-height: 1.2;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
  cursor: pointer;
  text-align: right;
  float: right;
  clear: both;
}
#page_nav ul li a .nav_text{
    position: relative;
    display: inline-block;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
    -moz-opacity: 0;
    -khtml-opacity: 0;
    opacity: 0;
    padding: 8px 10px;
    background: #b60011;
    margin-right: 30px;
    border-radius: 5px;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
#page_nav ul li a .nav_text:before {
    content: " ";
    position: absolute;
    right: -6px;
    top: 32%;
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid #b60011;
}
#page_nav ul li a .round{
  position: absolute;
  content: " ";
  width: 10px;
  height: 10px;
  background: rgba(0,0,0,0.3);
  border-radius: 100%;
  right: 0;
  top: 35%;
  cursor: pointer;
   -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
#page_nav ul li a:hover .nav_text{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
#page_nav ul li a:hover .round{
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
    background: rgba(0,0,0,0.7);
}
#page_nav ul li a.activeitem .nav_text{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  filter: alpha(opacity=100);
  -moz-opacity: 1;
  -khtml-opacity: 1;
  opacity: 1;
}
#page_nav ul li a.activeitem .round{
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
    background: rgba(0,0,0,0.7);
}
.collect_title {
    line-height: 1.2;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 600;
    padding-left: 40px;
    position: relative;
}
.collect_title:before {
    content: " ";
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(0,0,0,0.3);
    border-radius: 100%;
    margin-right: 10px;
    left: 10px;
    top: 40%;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}
.collect_title.change:before {
    -webkit-transform: scale(2);
    -moz-transform: scale(2);
    transform: scale(2);
    background: rgba(0,0,0,0.7);
}
.field-collection-view .content .yakor{
  position: relative;
  top: -260px;
}
.page-node-15 .field-collection-view, .page-node-15 .field-collection-container{
  border: none;
}
.page-node-15 .field-collection-view{
  padding: 0;
  margin: 0;
}
.page-node-15 .field-collection-container{
  margin-bottom: 0;
}
.page-node-15 .field-collection-container .field-items .field-item{
  margin-bottom: 0;
}
.page-node-15 .node {
    margin-bottom: 0;
}
.field-collection-container .field-items .field-items .field-item, .doc-info{
  font-size: 16px;
  line-height: 1.2;
  padding-bottom: 10px;
}
.field-collection-container .field-items .field-items .field-item{
    margin-top: 20px;
  margin-bottom: 10px;
}
.field-collection-container .field-items .field-items .field-item a, .doc-info a{
  color: #b60011;
}
.field-collection-container .field-items .field-items .field-item a:hover, .doc-info a:hover{
  color: #87000c;
}
@media screen and (max-width: 1200px){
  .collect_title{
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 800px){
  #page_nav{
    top: 30%;
  }
  .collect_title{
    font-size: 24px;
  }
}
@media screen and (max-width: 500px){
  .collect_title{
    font-size: 22px;
  }
  .field-collection-container .field-items .field-items .field-item, .doc-info {
    font-size: 14px;
  }
}
/* Контакты */
.contacts-title{
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 30px;
  padding: 15px 0 10px;
}
.contacts-title .block-content{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  padding-left: 45px;
}
.contacts-map{
  background-repeat: no-repeat;
  background-position: 0 15px;
  background-size: 30px;
  padding: 15px 0 10px;
  background-image: url(../images/compass.svg);
}
.contacts-map .block-title{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  padding-left: 45px;
  padding-bottom: 20px;
}
.contacts-text .block-content{
  font-size: 24px;
  line-height: 1.2;
  padding: 20px 0;
}
.contacts-text .block-content a{
  color: #000;
}
.contacts-title.address {
    background-image: url(../images/address.svg);
}
.contacts-title.email {
    background-image: url(../images/mail-red.svg);
}
.contacts-title.phone {
    background-image: url(../images/phone-red.svg);
}
.contacts-description .block-title{
  text-transform: uppercase;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.2;
  padding: 20px 0;
}
.contacts-description table, .contacts-description tbody{
  border: none;
  margin: 0;
}
.contacts-description tbody tr{
  border: none;
  border-bottom: 1px solid #ccc;
}
.contacts-description td, .contacts-description th {
    border-bottom: 0;
    margin: 0;
    padding: 15px 10px;
    font-size: 18px;
    line-height: 1.2;
}
.contacts-description td:first-child, .contacts-description th:first-child {
  font-weight: 500;
}
.field-collection-container{
  border: none;
}
@media screen and (max-width: 1000px){
  .block-contact-page .region-two-33-66-first{
    width: 50%;
  }
  .block-contact-page .region-two-33-66-second{
    width: 50%;
  }
}
@media screen and (max-width: 700px){
  .contacts-title .block-content,
  .contacts-map .block-title,
  .contacts-description .block-title {
    font-size: 26px;
  }
  .contacts-text .block-content {
    font-size: 20px;
    padding: 10px 0;
  }
  .contacts-description td, .contacts-description th{
    font-size: 16px;
  }
}
@media screen and (max-width: 600px){
  .block-contact-page .region-two-33-66-first,
  .block-contact-page .region-two-33-66-second{
    width: 100%;
    float: none;
  }
  .contacts-map .block-content > ymaps{
    width: 90% !important;
    padding: 0 5% !important;
    height: 300px !important;
  }
}
@media screen and (max-width: 500px){
  .contacts-title .block-content,
  .contacts-map .block-title,
  .contacts-description .block-title {
    font-size: 24px;
  }
  .contacts-text .block-content {
    font-size: 18px;
    padding: 10px 0;
  }
  .contacts-description td, .contacts-description th{
    font-size: 14px;
  }
}
#cboxClose {
  background: url(../images/closebtn.svg) no-repeat 0 0;
  background-size: 20px;
  width: 20px;
  height: 20px;
  -webkit-transition: all .3s ease-in-out;
  -moz-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  top: 0;
}
#cboxClose:focus{
  outline: none;
}
#cboxClose:hover {
  background: url(../images/closebtn.svg) no-repeat 0 0;
  background-size: 20px;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  filter: alpha(opacity=80);
  -moz-opacity: 0.8;
  -khtml-opacity: 0.8;
  opacity: 0.8;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.ymaps-2-1-55-controls__toolbar_left, .ymaps-2-1-55-controls__toolbar_right{
  display: none !important;
}
/* Баннер по закрытию страницы */
#overlay{
  background: rgba(0,0,0,0.8);
  width: 100%;
  height: 100%;
  z-index: 100;
   position: fixed;
   top: 0;
}
#overlay .popup{
  display: table;
  z-index: 120;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
}
.popup-inner{
  position: relative;
    display: table-cell;
    vertical-align: middle;
    height: 100%;
    max-height: 800px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    max-width: 0;
}
.popup-region{
  width: 94%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 999;
}
button.close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 25px;
    height: 25px;
    background: url(../images/closebtn.svg) no-repeat 0 0;
    background-size: 25px;
    border: none;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    outline: none;
}
button.close:hover{
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.spec-title {
  color: #fff;
  font-size: 30px;
  line-height: 1.2;
  text-transform: uppercase;
  font-weight: 600;
}
.spec-view .views-row{
  position: relative;
  overflow: hidden;
}
.spec-img{
  width: 100%;
}
.spec-img.mobile{
  display: none;
}
.spec-img img{
  width: 100%;
  margin: 0 auto;
  display: block;
}
.region-noclose #block-webform-client-block-36 {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255, 0.5) 25%, rgba(255,255,255,1) 100%);
}
.region-noclose #block-webform-client-block-36 .block-title{
  display: none;
}
.region-noclose #webform-ajax-wrapper-36 > form > div > .form-item, .region-noclose #webform-ajax-wrapper-36 > form > div > .form-actions{
  float: left;
  width: 48%;
  margin: 1%;
}
.region-noclose #webform-ajax-wrapper-36  > form > div > .form-item input{
  width: 95%;
}
.region-noclose #webform-ajax-wrapper-36 > form > div > .form-actions input{
  width: 100%;
}
.region-noclose #webform-ajax-wrapper-36 .form-item.form-type-checkbox input{
  width: 10px;
  float: left;
  font-size: 0;
  outline: none;
  margin-right: 1%;
}
.region-noclose #webform-ajax-wrapper-36 > form > div > .form-item label {
    color: #000;
    font-size: 12px;
    line-height: 1;
    font-weight: 500;
    float: left;
    width: 93%;
    text-align: left;
}
.region-noclose #webform-ajax-wrapper-36 > form > div > .form-item label a{
  color: #b60011;
}
.region-noclose #webform-ajax-wrapper-36 > form {
  max-width: 600px;
  margin: 0 auto;
}
.region-noclose #webform-ajax-wrapper-36 > form > div{
  display: inline-block;
  vertical-align: top;
  width: 100%;
}
.region-noclose #webform-ajax-wrapper-36 .webform-confirmation {
    font-size: 28px;
    line-height: 1.3;
    padding: 20px 0;
    text-align: center;
    position: absolute;
    top: -220px;
    width: 99.8%;
    background: rgba(255, 255, 255, 0.8);
    left: 0;
    right: 0;
    color: #b60011;
}
@media screen and (max-width: 800px){
  .region-noclose #webform-ajax-wrapper-36  > form > div > .form-item input{
    padding: 10px 2% 10px;
    font-size: 16px;
    line-height: 1.2;
  }
  .region-noclose #webform-ajax-wrapper-36 > form > div > .form-actions input{
    padding: 10px 15px 10px;
    font-size: 14px;
  }
  .region-noclose #webform-ajax-wrapper-36 > form > div > .form-item label {
    font-size: 10px;
  }
  .spec-img{
    display: none;
  }
  .spec-img.mobile{
    display: block;
  }
  .region-noclose #webform-ajax-wrapper-36 .form-item.form-type-checkbox input {
    min-width: 20px;
  }
  .region-noclose #webform-ajax-wrapper-36 > form > div > .form-item label {
    width: 86%;
  }
  .spec-title {
    font-size: 26px;
  }
}
@media screen and (max-width: 500px){
  .region-noclose #webform-ajax-wrapper-36 > form > div > .form-item label {
    font-size: 8px;
  }
}
.region-noclose #block-webform-client-block-36 .messages{
  display: none !important;
}
.region-noclose #block-webform-client-block-36 .links{
  display: none !important;
}
@media screen and (max-width: 450px){
  .region-noclose #webform-ajax-wrapper-36 .webform-confirmation{
    top: -140px;
    font-size: 20px;
  }
}
/* Пагинатор */
.pager{
  padding: 5px 0 !important;
}
.pager li {
    background: #b60011;
    color: #ffffff !important;
    margin: 0 2px !important;
    padding: 8px 0px 6px !important;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.pager li:hover {
  background: #87000c;
}
.pager li a {
    color: #fff;
    font-size: 16px;
    padding: 5px 11px 8px;
}
.pager li.pager-current {
    background: #222531;
    color: #ffffff;
    font-weight: 400 !important;
    padding: 6px 12px 6px !important;
    line-height: 1.2;
    font-size: 16px;
}
.cboxPhoto{
  border-radius: 45px;
}
/* История компании */
.history-year-wrap{
 background-image: -o-linear-gradient(transparent, transparent);
 background-image: -moz-linear-gradient(transparent, transparent);
  display: inline;
  color: transparent;
  background-size: cover;
  font-size: 310px;
  font-weight: 600;
  -webkit-background-clip: text;
  -moz-background-clip: text;
  color: #b60011;
  -webkit-text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  line-height: 1;
}
.history-info-wrap{
  width: 90%;
  padding: 20px 0 20px 10%;
}
.history-back{
  display: none;
}
.history-title{
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  text-transform: uppercase;
  padding-bottom: 20px;
}
.history-text-box{
  line-height: 1.4;
  font-size: 20px;
}
.history-company-view .view-content{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.history-company-view .flex-control-nav{
  display: none;
}
.history-company-view .flexslider .flex-direction-nav a, .history-company-view .flexslider .flex-direction-nav a{
  display: block !important;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}
.history-company-view .flex-direction-nav a{
  top: 20px;
}
.history-company-view .flex-direction-nav .flex-prev, .history-company-view .flexslider:hover .flex-direction-nav .flex-prev{
  right: 170px;
  left: auto;
}
.history-company-view .flex-direction-nav .flex-next, .history-company-view .flexslider:hover .flex-direction-nav .flex-next{
  right: 100px;
}
.history-company-view .flex-direction-nav a:before{
  content: none;
}
.history-company-view .flex-direction-nav .flex-prev{
  background: url(../images/history-back.svg) no-repeat 50% 50%;
  background-size: 50px;
  width: 50px;
  height: 50px;
}
.history-company-view .flex-direction-nav .flex-next{
  background: url(../images/history-next.svg) no-repeat 50% 50%;
  background-size: 50px;
  width: 50px;
  height: 50px;
}
#main_date{
  position: relative;
  top: -200px;
}
.history-company-view.mobile{
    display: none;
}
@media screen and (max-width: 1440px){
  .history-year-wrap{
    font-size: 240px;
  }
}
@media screen and (max-width: 1100px){
  .history-year-wrap{
    font-size: 200px;
  }
  .history-info-wrap {
    width: 100%;
    padding-left: 0;
  }
}
@media screen and (max-width: 800px){
  .history-year-wrap{
    font-size: 120px;
  }
  .history-title{
    font-size: 26px;
  }
  .history-text-box {
    font-size: 18px;
  }
  .history-company-view .flexslider .flex-direction-nav a, .history-company-view .flexslider .flex-direction-nav a{
    display: none !important;
  }
  .history-company-view .flex-control-nav {
    display: block;
    position: relative;
    bottom: 0;
    text-align: left;
  }
  .history-company-view .flex-control-paging li a{
    background: #b60011;
  }
  .history-company-view .flex-control-paging li a.flex-active{
    background: #87000c;
  }
  .history-company-view{
    display: none;
  }
  .history-company-view.mobile{
    display: block;
  }
  .history-company-view.mobile .views-row{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 500px){
  .history-year-wrap {
    font-size: 100px;
  }
  .history-title {
    font-size: 24px;
  }
  .history-text-box {
    font-size: 16px;
  }
}
/* Документы файлы */
.docs-nav-full-view .file img{
  width: 35px;
}
.docs-all-view .file{
  margin-bottom: 15px;
  display: block;
}
.docs-all-view .file a {
    width: auto;
    max-width: none;
    background: linear-gradient(180deg, transparent 89%, #b60011 90%);
    background-size: 0 100%;
    background-repeat: no-repeat;
    font-size: 20px;
    display: inline;
    -webkit-transition: background-size 0.3s ease-in-out;
    -moz-transition: background-size 0.3s ease-in-out;
    transition: background-size 0.3s ease-in-out;
}
.docs-all-view .file a:last-child:hover{
  background-size: 100% 100%;
}
.docs-all-view{
  width: 96%;
  padding-left: 4%;
}
/* Файлы */
span.std-icon{
  display: none;
}
.std-icon:before{
  content: "123";
  display: block;
  background-size: 35px;
  width: 35px;
  height: 40px;
}
img.file-icon[type="application/pdf"] + img.file-icon:before{
  background: url(../images/files/application-pdf.png) no-repeat;
}
/* Форма забронировать квартиру */
#block-webform-client-block-64{
  text-align: center;
  width: 96%;
  padding: 30px 2% 10px;
  background: #b60011;
}
#block-webform-client-block-64 .block-title{
  text-transform: uppercase;
  font-size: 36px;
  text-align: center;
  line-height: 1.2;
  padding: 20px 0;
  font-weight: 600;
  margin: 0;
  color: #fff
}
.webform-client-form-64{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}
.webform-client-form-64 .form-item, .webform-client-form-64 .form-actions{
  width: 100%;
  max-width: 800px;
}
.webform-client-form-64 > div {
  display: table;
  font-size: 0;
  text-align: left;
}
.webform-client-form-64 > div > .form-item, .webform-client-form-64 > div > .form-actions{
  display: inline-block;
  width: 48%;
  margin: 0 1% 1%;
  vertical-align: middle;
}
.webform-client-form-64 input.form-checkbox, .webform-client-form-64 input.form-radio{
  vertical-align: top;
}
.webform-client-form-64 input.webform-submit,.webform-client-form-64 .form-actions input{
  width: 100%;
  display: block;
  background: #222531;
}
.webform-client-form-64 input.webform-submit:hover,.webform-client-form-64 .form-actions input:hover{
  background: #303752;
}
.webform-client-form-64 input.form-text, .webform-client-form-64 textarea.form-textarea{
  width: 95.5%;
}
.block-webform form .form-item label {
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2;
    font-family: "Rubik";
    text-align: left;
}
.block-webform form .form-item a {
    color: #b60011;
    font-family: "Rubik";
}
.webform-client-form-64 .form-item label{
  color: #fff;
}
form.webform-client-form-64 .form-item a{
  color: #000 ;
}
.webform-client-form-64 .form-item a:hover{
  color: #ccc;
}
.block-webform .messages.error{
  display: none;
}
.block-webform .webform-confirmation{
  padding: 20px 0 30px;
  font-size: 32px;
}
#block-webform-client-block-64 .webform-confirmation{
  color: #fff;
}
@media screen and (max-width: 900px){
  #block-webform-client-block-64 .block-title{
    font-size: 32px;
  }
  .block-webform form .form-item label{
    font-size: 12px;
  }
}
@media screen and (max-width: 600px){
  .webform-client-form-64 > div > .form-item, .webform-client-form-64 > div > .form-actions{
    width: 100%;
    margin: 1% auto;
  }
  .webform-client-form-64 .form-item.form-type-checkbox{
    padding: 10px 0;
  }
}
@media screen and (max-width: 500px){
  #block-webform-client-block-64 .block-title{
    font-size: 26px;
  }
  .block-webform .webform-confirmation{
    padding: 10px 0 20px;
    font-size: 26px;
  }
}
/* Объекты фотогаллерея */
.object-photo-gallery{
  width: 96%;
  padding: 30px 2% 20px;
  max-width: 1400px;
  margin: 0 auto;
}
.object-photo-gallery .view-content{
  display: table;
  font-size: 0;
  text-align: center;
  width: 100%;
}
.object-photo-gallery .views-row {
  display: inline-block;
  width: 24.2%;
  vertical-align: top;
  margin-right: 1%;
  margin-bottom: 1%;
}
.object-photo-gallery .views-row:last-child{
  margin-right: 0;
}
.object-photo-gallery .views-row:nth-child(4n){
  margin-right: 0;
}
.object-gallery-img{
  background: #000;
  overflow: hidden;
}
.object-gallery-img img{
  display: block;
  margin: 0 auto;
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.object-photo-gallery .views-row:hover .object-gallery-img img{
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
  -webkit-transform: scale(1.1) translateZ(0);
  -moz-transform: scale(1.1) translateZ(0);
  transform: scale(1.1) translateZ(0);
}
@media screen and (max-width: 900px){
  .object-photo-gallery .views-row {
    width: 31.999%;
    margin-bottom: 2%;
    margin-right: 2%;
  }
  .object-photo-gallery .views-row:nth-child(4n){
    margin-right: 2%;
  }
  .object-photo-gallery .views-row:nth-child(3n){
    margin-right: 0;
  }
}
@media screen and (max-width: 600px){
  .object-photo-gallery .views-row {
    width: 49%;
  }
  .object-photo-gallery .views-row:nth-child(3n){
    margin-right: 2%;
  }
  .object-photo-gallery .views-row:nth-child(2n){
    margin-right: 0;
  }
  .object-photo-gallery{
    padding: 10px 2% 0;
  }
}
.node-type-object h1{
  padding: 20px 0 30px;
}
.object-haract-side .bron a{
    line-height: 1.2;
    background: #b60011;
    padding: 14px 2% 12px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 19px;
    border: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 5px;
    display: block;
    width: 96%;
    transition: background 0.4s;
}
.object-haract-side .bron a:hover{
    background: #87000c;
}
.yakor{
  position: absolute;
  top: -200px;
}
.object-haract-side .bron.end {
    line-height: 1.2;
    color: #b60011;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 36px;
    text-align: left;
}
.object-other.label-wrap {
    position: absolute;
    top: -25px;
    right: -25px;
    font-size: 15px;
    display: block;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: #b60011;
    line-height: 1.2;
    border: 5px solid #fff;
}
.object-other.label{
  display: table;
  width: 100%;
  height: 100%;
}
.object-other .label-box{
  display: table-cell;
  vertical-align: middle;
  padding-left: 15px;
  color: #fff;
  padding-right: 20px;
  text-transform: uppercase;
}
#block-block-51{
  position: relative;
}
#work {
    text-align: center;
    margin-bottom: 10px;
}
#work img {
    max-width: 170px;
}
.logo-gk{
  float: left;
  text-align: left;
  padding: 0 10px;
}
.logo-gk-text{
  float: left;
  margin: 0 10px 10px 0;
}
.object-text-full ol{
  margin: 0;
  padding: 0;
  display: table;
}
.object-text-full ol li{
  margin-left: 20px;
}
@media screen and (max-width: 1200px){
  .logo-gk{
    width: 120px;
  }
}
@media screen and (max-width: 800px){
  .logo-gk-text{
    float: none;
    text-align: center;
    margin: 0 auto 10px;
  }
}
@media screen and (max-width: 500px){
  .logo-gk{
    float: none;
    text-align: center;
    margin: 10px auto;
    padding: 0;
    width: 165px;
  }
}
.genplan-download{
  text-align: center;
}
.genplan-preview img{
  display: block;
  width: 100%;
}
a.plan-load {
    line-height: 1.2;
    background: #b60011;
    padding: 14px 2% 12px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 19px;
    border: 0;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 5px;
    display: inline-block;
    transition: background 0.4s;
    margin: 20px auto;
}
a.plan-load:hover {
    background: #87000c;
}
.doc-view-wrap .yakor{
  position: relative;
}
.vspl_title{
  font-size: 32px;
  line-height: 1;
  text-transform: uppercase;
  color: #000;
  font-weight: 600;
  text-align: center;
}
.map_nav h2 {
  text-transform: uppercase;
  font-size: 36px;
  text-align: center;
  line-height: 1.2;
  padding: 20px 0;
  font-weight: 600;
  margin: 0;
}
.map_type {
  display: inline-block;
  text-align: center;
  width: 100%;
}
.state_free, .state_bron, .state_sales {
  display: inline-block;
  vertical-align: middle;
  text-transform: uppercase;
  font-size: 20px;
  margin-right: 35px;
}
.state_sales {
  margin-right: 0;
}
.state_free::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 19px;
  vertical-align: middle;
  height: 19px;
  background: #43A047;
  position: relative;
  top: -1px;
}
.state_bron::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 19px;
  vertical-align: middle;
  height: 19px;
  background: #FDD835;
  position: relative;
  top: -1px;  
}
.state_sales::before {
  content: "";
  display: inline-block;
  margin-right: 5px;
  width: 19px;
  vertical-align: middle;
  height: 19px;
  background: #e53935;
  position: relative;
  top: -1px;  
}
.uch_info {
  position: absolute;
  background: rgba(255,255,255,1);
  width: 450px;
  left: 0;
  right: 0;
  margin: 0 auto;
  padding: 20px;
}
.map {
  position: relative;
}
.uch_title {
  text-transform: uppercase;
  text-align: center;
  font-size: 22px;
  font-weight: 600;
}
.uch_state {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 18px;
  text-align: center;
}
.uch_state span {
  font-weight: 600;
  color: #43A047;
}
.uch_sqear {
  text-align: center;
  padding: 8px 0;
}
.uch_sqear span {
  color: #ffffff;
  text-transform: uppercase;
  font-size: 16px;
  padding: 3px;
  background: #222531;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;  
}
.uch_sqear div {
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 3px;
}
.uch_price {
  text-align: center;
}
.uch_price_title {
  display: inline-block;
  width: 100%;
  text-transform: uppercase;
  font-weight: 300;
  padding-bottom: 3px;  
}
.uch_price_amount {
  display: inline-block;
  background: #b60011;
  color: #ffffff;
  padding: 3px 6px;
  font-size: 21px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.uch_more {
  margin-top: 20px;
}
.uch_webform .webform-client-form {
  width: 400px;
  margin: 0 auto;
}
.uch_webform .form-item input {
  width: 380px;
  -webkit-appearance: none;
}
.uch_webform .form-item-submitted-soglasie-na-obrabotku-pdn-soglasie input {
  display: inline-block;
  vertical-align: top;
  width: 12px;
  margin-right: 5px;
}
.uch_webform .form-item-submitted-soglasie-na-obrabotku-pdn-soglasie label {
  text-align: left !important;
}
.uch_webform .form-item-submitted-soglasie-na-obrabotku-pdn-soglasie label,
.uch_webform .form-item-submitted-soglasie-na-obrabotku-pdn-soglasie label a {
  vertical-align: top;
  text-align: left !important;
  text-transform: none;
  font-weight: 300;
  line-height: 1;
  width: 370px;
  display: auto;
  font-size: 14px;
}
.uch_webform .form-item-submitted-soglasie-na-obrabotku-pdn-soglasie label a {
  color: #b60011;
  display: inline;
}
.uch_webform .form-item-submitted-soglasie-na-obrabotku-pdn-soglasie label a:hover {
  color: #333333;
}
.uch_webform .messages.error {
  display: none;
}
.uch_webform .webform-confirmation {
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.1;
  width: 300px;
  margin: 0 auto;
  padding-top: 35px;
}
.uch_webform .links {
  display: none;
}
.uch_close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: url("../images/close.png") no-repeat;
  background-size: 24px;
  width: 24px;
  height: 24px;
}
.ml_mobile_map {
  display: none;
}
@media screen and (max-width: 780px){
  .ml_mobile_map {
    display: block;
  }
  .map {
    display: none;
  }
  .map_nav {
    display: none;
  }
  .ml_mobile_map h2 {
    text-align: center;
    text-transform: uppercase;
    font-size: 32px;
  }
}
@media screen and (max-width: 500px){
  .ml_mobile_map h2 {
    font-size: 26px;    
  }
}
.map.map_inner {
  display: block;
  width: 100%;
}
.map_inner h1 {
  text-align: center;
  margin-bottom: 20px;
}
.map_inner #breadcrumb {
  text-align: center;
}
.head_whatsapp {
      width: 173px;
    left: 63px;
    top: -9px;
    position: absolute;
}

.head_whatsapp .block-content a {
    width: 100px;
    height: 50px;
    z-index: 800;
    position: relative;
    padding-left: 70px;
    text-indent: -9999999px;
    display: inline-block;
    line-height: 1;
}
.head_whatsapp .block-content a::before {
    content: "";
    width: 50px;
    height: 50px;
    background: url(../images/WhatsApp_Logo_2.png) no-repeat;
    background-position: center;
    background-size: 80px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50px 50px 50px 50px;
    -moz-border-radius: 50px 50px 50px 50px;
    -webkit-border-radius: 50px 50px 50px 50px;
    z-index: 2;
}
.head_whatsapp .block-content a::after {
    content: "Написать в WhatsApp";
    position: absolute;
    top: 5px;
    font-size: 15px;
    height: auto;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-right: 20px;
    color: rgb(255, 255, 255);
    left: 30px;
    z-index: 1;
    padding-left: 30px;
    text-indent: 0px;
    animation-name: mymove;
    animation-duration: 4s;
    animation-iteration-count: 3;
    background: rgb(30, 143, 72);
    border-radius: 0px 20px 20px 0px;
}
#block-block-58 {
  display: none;
}
@media screen and (max-width: 900px){
  .head_whatsapp {
    display: none;
  }
  #block-block-58 {
    display: block;
    position: fixed;
    bottom: 29px;
    left: 10px;
    z-index: 700;
  }
  #block-block-58 .block-content a {
      width: 100px;
      height: 50px;
      z-index: 800;
      position: relative;
      padding-left: 70px;
      text-indent: -9999999px;
      display: inline-block;
      line-height: 1;
  }
  #block-block-58 .block-content a::before {
      content: "";
      width: 50px;
      height: 50px;
      background: url(../images/WhatsApp_Logo_2.png) no-repeat;
      background-position: center;
      background-size: 80px;
      position: absolute;
      top: 0;
      left: 0;
      border-radius: 50px 50px 50px 50px;
      -moz-border-radius: 50px 50px 50px 50px;
      -webkit-border-radius: 50px 50px 50px 50px;
      z-index: 2;
  }
  #block-block-58 .block-content a::after {
      content: "Написать в WhatsApp";
      position: absolute;
      top: 5px;
      font-size: 15px;
      height: auto;
      padding-top: 5px;
      padding-bottom: 5px;
      padding-right: 20px;
      color: rgb(255, 255, 255);
      left: 30px;
      z-index: 1;
      padding-left: 30px;
      text-indent: 0px;
      /* box-shadow: rgba(105, 105, 105, 0.46) 0px 0px 10px 0px; */
      animation-name: mymove;
      animation-duration: 4s;
      animation-iteration-count: 3;
      background: rgb(30, 143, 72);
      border-radius: 0px 20px 20px 0px;
  }
}
@media screen and (max-width: 545px){
    #block-block-58 {
        bottom: 24px;
        
    }
}