/* common */
  .nav-trigger-wrapper {
    text-decoration: none;
    z-index: 10;
    position: absolute;
    right: 15px;
    top: 15px;
  }

  .nav-trigger {
    position: relative;
    margin-top: 11px;
    margin-bottom: 11px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .nav-trigger, .nav-trigger::before, .nav-trigger::after {
    display: block;
    width: 40px;
    height: 4px;
    background-color: #ba9d64;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .nav-trigger::before, .nav-trigger::after {
    position: absolute;
    content: "";
  }

  .nav-trigger::before {
    top: -11px;
  }

  .nav-trigger::after {
    top: 11px;
  }

  .nav-trigger.js-active {
    background-color: transparent;
  }

  .nav-trigger.js-active::before {
    -webkit-transform: translateY(11px) rotate(45deg);
    transform: translateY(11px) rotate(45deg);
  }

  .nav-trigger.js-active::after {
    -webkit-transform: translateY(-11px) rotate(-45deg);
    transform: translateY(-11px) rotate(-45deg);
  }

  .mobileMenu {
    background-color: white;
    color: black;
    width: 250px;
    max-height: 100%;
    overflow: auto;
    padding: 10px 10px 10px 20px;
    position: fixed;
    right: 0;
    top: 0;
    min-height: 100%;
    overflow: auto;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    text-align: left;
    z-index: 11;
  }

  .mobileMenu__phone{
    border-bottom: 1px solid #ba9d64;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .mobileMenu ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mobileMenu.active {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }

  .mobileMenu a {
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    display: block;
    padding: 6px 10px;
    font-size: 15px;
    font-weight: 400;
  }

  .mobileMenu a.mobile-nav-item-big {
    font-size: 18px;
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-weight: 300;
  }

  .mobileMenu a:first-child {
    margin-top: 0;
  }

  /* start socials */
  .socials {
    text-align: center;
  }

  .social-icon {
    display: inline-block;
    vertical-align: middle;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid #d6d6d6;
    position: relative;
    margin: 10px 4px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .social-icon svg {
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: absolute;
    width: 30px;
    height: 20px;
  }

  .social-icon svg path {
    fill: #7e7e7e;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .social-icon:hover {
    background-color: #ba9d64;
    border-color: #ba9d64;
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }

  .social-icon:hover svg path {
    fill: white;
  }
  /* end socials */

  /* link-more */
  .link-more {
    display: block;
    text-decoration: none;
    background-color: #eeeeee;
    padding: 30px 0;
    text-align: center;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  .link-more span {
    position: relative;
    font-size: 15px;
    display: block;
    margin-top: 20px;
  }

  .link-more .circle {
    width: 80px;
    height: 80px;
    border: 1px solid #c5c5c5;
    border-radius: 50%;
    opacity: .4;
    margin: 0 auto 6px;
    position: relative;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .link-more .circle svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .link-more .circle svg path {
    fill: #c5c5c5;
  }

  .link-more:hover {
    background-color: #987641;
    color: #fff;
  }

  .link-more:hover .circle {
    border-color: white;
    opacity: 1;
    -webkit-transform: scale(1.1) rotate(360deg) !important;
            transform: scale(1.1) rotate(360deg) !important;
  }

  .link-more:hover svg {
    fill: white;
  }

  .link-more:hover svg path {
    fill: white;
  }
  /*--- link-more ---*/

  /* start popup-styles */
  .popup {
    max-width: 910px;
    position: relative;
    margin: 10px auto 0;
    background-color: transparent;
    color: #bda177;
    border: 1px solid #ba9d64;
    padding: 26px 0 20px;
  }
  .popup__policy{
    font-size: 12px;
  }
  .popup .btn {
    background-color: transparent;
    border-color: #ba9d64;
    color: #ba9d64;
    cursor: pointer;
  }
  .popup-success .popup-header {
    padding-bottom: 0;
  }
  .popup-success .popup-content {
    text-align: center;
    margin: 0 auto;
    padding: 20px 0 46px;
  }
  .popup-success .popup-content h4 {
    font-size: 19px;
    font-weight: 400;
    margin-bottom: 4px;
    margin-top: 0;
  }
  .popup-success .popup-content p {
    font-size: 17px;
    line-height: 1.2;
    font-weight: 300;
    opacity: .9;
    margin: 0;
  }
  .popup-close {
    position: absolute;
    top: 19px;
    right: 22px;
    z-index: 4;
    width: 30px;
    height: 30px;
    border: 1px solid;
    background-color: transparent;
    padding: 0;
    border: 1px solid #bda177;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 50%;
    text-align: center;
    opacity: 0.6;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }
  .popup-close:focus {
    outline: none;
  }
  .popup-close .cross {
    position: relative;
    margin-top: 3px;
    margin-bottom: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0 auto;
  }
  .popup-close .cross, .popup-close .cross::before, .popup-close .cross::after {
    display: block;
    width: 18px;
    height: 1px;
    background-color: #ba9d64;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }
  .popup-close .cross::before, .popup-close .cross::after {
    position: absolute;
    content: "";
  }
  .popup-close .cross::before {
    top: -3px;
  }
  .popup-close .cross::after {
    top: 3px;
  }
  .popup-close .cross {
    background-color: transparent;
  }
  .popup-close .cross::before {
    -webkit-transform: translateY(3px) rotate(45deg);
    transform: translateY(3px) rotate(45deg);
  }
  .popup-close .cross::after {
    -webkit-transform: translateY(-3px) rotate(-45deg);
    transform: translateY(-3px) rotate(-45deg);
  }
  .popup-close:hover {
    opacity: 1;
  }
  .popup:focus {
    outline: none;
  }
  .popup:hover {
    opacity: 1;
  }
  .popup-header {
    color: #ba9d64;
    text-align: center;
    padding: 30px 10px 0;
  }
  .popup-header h3 {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 0;
    margin-top: 0;
    text-transform: uppercase;
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-weight: 300;
    letter-spacing: 3px;
  }
  .popup-header p {
    font-size: 15px;
    font-weight: 300;
    max-width: 550px;
    opacity: .8;
    margin: 4px auto;
    color: white;
  }
  .popup-header p span {
    font-weight: 400;
    margin-left: 4px;
  }
  .popup-content {
    padding-top: 20px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .popup-form {
    max-width: 820px;
    margin: 0 auto;
  }
  .popup-form .row {
    margin-left: -5px;
    margin-right: -5px;
  }
  .popup-form .row > div {
    padding-left: 5px;
    padding-right: 5px;
  }
  .popup-form-bottom {
    margin-top: 50px;
    text-align: center;
    position: relative;
  }
  .popup-form-bottom .button {
    display: block;
    margin: 0 auto;
  }
  .popup-form-caption {
    display: block;
    margin-bottom: 20px;
    font-size: 16px;
    display: inline-block;
    position: absolute;
    top: 4px;
    left: 0;
    width: 175px;
    text-align: left;
    font-weight: 300;
    line-height: 1.3;
  }
  /* end popup-styles */

  /* start input-block */
  .input-block {
    width: 100%;
    border: 1px solid rgba(186, 157, 100, 0.6);
    box-sizing: border-box;
    border-radius: 5px;
    position: relative;
    font-size: 15px;
    margin: 5px 0;
    display: table;
  }

  .input-block.selected {
    border: 1px solid #ba9d64;
  }

  .input-block span {
    position: relative;
    display: table-cell;
    vertical-align: top;
    width: 1%;
    white-space: nowrap;
    box-sizing: content-box;
    left: 20px;
    top: 0;
    color: white;
    height: 52px;
    line-height: 53px;
    font-size: 18px;
    padding-right: 20px;
    z-index: 1;
    font-weight: 300;
  }

  .input-block span .required {
    font-size: 16px;
    font-style: normal;
    color: #b70d13;
    margin-left: 4px;
    display: none;
  }

  .input-block span:after {
    content: '';
    position: absolute;
    right: 0;
    top: 11px;
    height: 30px;
    width: 1px;
    background-color: rgba(186, 157, 100, 0.7);
  }

  .input-block input, .input-block textarea {
    height: 52px;
    border: none;
    display: table-cell;
    vertical-align: top;
    width: 100%;
    box-sizing: border-box;
    font-size: 15px;
    padding-right: 16px;
    padding-left: 30px;
    border-radius: 20px;
    background-color: transparent;
    color: #ba9d64;
  }

  .input-block input:focus, .input-block textarea:focus {
    outline: none;
  }

  .input-block textarea {
    resize: none;
    vertical-align: top;
    height: 108px;
    padding-top: 17px;
  }
  /* end input-block */

  .container {
    width: 100%;
  }

  .out {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    position: relative;
    overflow: hidden;
  }

  /* .out.js-active {
    -webkit-transform: translateX(-240px);
            transform: translateX(-240px);
  }

  .out.js-overlay {
    position: relative;
  }

  .out.js-overlay:before {
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
  } */
  .out.js-active

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

  /* header */
  .header {
    text-align: center;
    position: relative;
    z-index: 30;
    width: 100%;
    margin: 0 auto;
}
  .headerFixed{
    opacity: 0;
    height: 0;
    position: fixed;
    background-color: #fff;
    width: 100%;
    top: 0;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
    -ms-transition: .3s;
    -o-transition: .3s;
    z-index: 31;
  }
  .headerFixed-active{
    opacity: 1;
    height: 60px;
  }
  .headerFixed__wrap{
    max-width: 1405px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0 auto;
  }
  .mobileMenu.active ~ .out .header, .mobileMenu.active ~ .headerFixed{
    right: 250px;
  }

  .header__topline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 60px;
    border-bottom: 1px solid #e8e8e8;
    text-align: center;
  }

  /* mobile for width < 880px */
  .header__logo-empty, .header__logo-small{
    display: none;
    margin-left: 40px;
    text-align: left;
  }
  .header__address{
    display: none;
    font-size: 13px;
    color: #939393;
  }
  .header__title{
    display: none;
    font-size: 18px;
    color: #939393;
  }
  .header__callback{
    height: 40px;
    line-height: 40px;
    position: absolute;
    width: 40px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #c6ac8a;
    right: 70px;
    top: 9px;
  }
  .callback{
    outline: none;
  }
  .callback__icon {
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .callback__caption{
    display: none;
    margin-left: 9px;
    vertical-align: middle;
  }

  .header__phone{
    display: none;
    padding-right: 40px;
    text-align: right;
  }
  .phone {
    color: #939393;
    font-size: 13px;
  }
  .phone__schedule{
    display: block;
    font-size: 10px;
  }
  .phone__number {
    text-decoration: none;
    font-size: 15px;
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-weight: 300;
  }

  .header__logo {
    display: inline-block;
    max-width: 110px;
    width: 100%;
  }
  .header__logo-mobile{
    position: absolute;
    max-width: 90px;
    top: 12px;
    left: 55px;
  }
  /*--- mobile for width < 880px ---*/


  .header__topNav{
    padding-top: 40px;
  }
  .header__link {
    display: none;
    padding: 20px;
    padding-bottom: 0;
  }

  .link{
    text-decoration: none;
    text-transform: uppercase;
    font-size: 19px;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }
  .link:hover {
    color: #ba9d64;
  }
  .link__wrapper {
    position: relative;
    display: inline-block;
    padding-bottom: 20px;
    text-decoration: none;
  }
  .link__wrapper:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    background-color: #c6ac8a;
    width: 1px;
    opacity: 0;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }
  .link:hover .link__wrapper:before {
    -webkit-animation: lineAnim 1s both;
            animation: lineAnim 1s both;
  }

  @-webkit-keyframes lineAnim {
    0% {
      opacity: 0;
      width: 1px;
    }
    50% {
      opacity: 1;
      width: 100%;
    }
    100% {
      opacity: 0;
      width: 100%;
    }
  }

  @keyframes lineAnim {
    0% {
      opacity: 0;
      width: 1px;
    }
    50% {
      opacity: 1;
      width: 100%;
    }
    100% {
      opacity: 0;
      width: 100%;
    }
  }

  .header__nav{
    display: none;
  }
  .mainNav-subNav{
    position: absolute;
    top: -500px;
    left: 0;
    width: 100%;
    height: 0;
    opacity: 0;
    transition: opacity 1s;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    font-weight: normal;
    text-transform: none;
  }
  .mainNav__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .mainNav__list ul{
      padding: 0;
  }

  .mainNav__item{
    display: inline-block;
  }
  .mainNav__link{
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    color: #666565;
    text-decoration: none;
    font-size: 16px;
    padding-bottom: 0;
    display: inline-block;
    position: relative;
    padding: 10px 5px 20px;
  }
  .mainNav__link:before {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 50%;
    background-color: #c6ac8a;
    width: 1px;
    opacity: 0;
    height: 1px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }
  .mainNav__link:hover {
    opacity: 1;
    color: #ba9d64;
  }

  .mainNav__link-large{
    color: #1a1a1a;
    text-transform: uppercase;
    font-weight: bold;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
  .mainNav__link-large:first-child {
    text-align: left;
    padding-left: 30px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 50%;
  }
  .mainNav__link-large:last-child {
    text-align: right;
    padding-right: 30px;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
    width: 50%;
  }
  .mainNav__link-large .mainNav__link-active{
    color: #ba9d64;
  }
  .mainNav__link-active {
    font-weight: bold;
  }

  .mainNav__link:hover:not(.mainNav__link-active):before {
    -webkit-animation: lineAnim 1s both;
            animation: lineAnim 1s both;
  }

  .breadcrumb{
    text-align: left;
  }
  .breadcrumb__content {
    display: inline-block;
    background-color: #fff;
    color: #000;
    border-radius: 10px;
    padding: 0 10px;
    font-size: 16px;
  }
  .breadcrumb__item{
    color: #6a6967;
    -webkit-text-decoration-color: #6a6967;
    text-decoration-color: #6a6967;
  }
  .breadcrumb__item:after{
    content: " — ";
  }
  .breadcrumb__item:last-child:after{
    content: "";
  }

  .title{
    margin: 20px 0 10px;
    text-align: center;
    font-size: 20px;
    font-family: 'Avenir Next', 'Calibri Custom', Calibri, sans-serif;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 1px;
    color: #917F6B;
  }
  .title-sub{ font-size: 18px; }
/*--- common ---*/


/* promo */
  .promo {
    background: url(../images/promo/main_bg.jpg) no-repeat center/cover;
    position: relative;
    text-align: center;
    padding: 40px 0 0;
    overflow: hidden;
  }
  .promo-catalog{
    padding: 50px 0 40px;
  }
  .promo:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 7, 18, 0.7);
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .promo__title {
    display: block;
    position: relative;
    margin: 0;
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-size: 37px;
    font-weight: 600;
    line-height: 1.1;
    color: #918167;
    z-index: 3;
    -webkit-transition: all 0.2s 0s;
    transition: all 0.2s 0s;
  }

  .promo__preview{
    position: relative;
    max-width: 770px;
    margin: 20px auto;
    padding: 25px 20px;
    background: rgba(255,255,255,.7);
    font-style: italic;
    z-index: 3;
    -webkit-transition: all 0.2s 0s;
    transition: all 0.2s 0s;
  }

  .promo__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    z-index: 3;
    position: relative;
    -webkit-transition: all 0.2s 0s;
    transition: all 0.2s 0s;
  }

  .promo__item {
    display: inline-block;
    width: 100%;
  }

  .promo__block {
    text-decoration: none;
    padding: 20px 0;
    max-width: 290px;
    margin: 0 auto;
    position: relative;
    display: block;
  }

  .promo__caption {
    font-size: 17px;
    color: white;
    text-transform: uppercase;
    margin-top: 6px;
    margin-bottom: 0;
    position: relative;
    display: inline-block;
    font-family: 'Futura PT', Calibri, sans-serif;
    font-weight: 300;
  }

  .promo__desc {
    margin-top: 0;
    font-size: 16px;
    color: #918167;
  }

  .promo__subDesc {
    display: none;
    font-size: 16px;
    line-height: 1.44;
    color: #bbb;
    opacity: 0;
    margin-bottom: 0;
    -webkit-transition: all 0.6s 0s;
            transition: all 0.6s 0s;
  }

  .promo__block:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 275px;
    margin-left: -150px;
    margin-top: -138px;
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
    pointer-events: none;
    -webkit-transition: all 0.6s 0s;
    transition: all 0.6s 0s;
    background-color: rgba(0,0,0,.5);
  }

  .promo-backgrounds {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .promo-background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -webkit-transition: all 1s;
    transition: all 1s;
    opacity: 0;
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  .promo-background.visible {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
  .promo__breadcrumb {
    position: relative;
    z-index: 3;
    top: -50px;
  }
/*--- promo ---*/

/* build */
  .build-detail{
    margin-top: 50px;
  }
  .build__empty{
    margin: 0;
    color: #6a6967;
    background: #eeeeee;
    width: 100%;
    padding: 50px 0 20px;
    text-align: center;
  }
  .build__title{
    margin: 80px 0 30px;
    text-align: center;
    font-size: 30px;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
  }
  .build__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .build__item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    text-decoration: none;
  }
  .build__item:nth-child(2n){
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .build__picture{
    width: 50%;
    padding-bottom: 42vw;
    height: 0;
  }
  .build__desc{
    width: 50%;
  }
  .build__aria{ display: none; }
  .build__name{ display: none; }

  .info{
    padding: 0 5px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .info__type{
    margin: 0;
    color: #888663;
    font-family: 'Futura PT';
    font-size: 10px;
    text-align: center;
  }
  .info__name{
    margin: 0;
    color: #888663;
    font-size: 18px;
    padding: 6px 0 5px;
    text-align: center;
  }
  .info__nameInner{
    padding-bottom: 5px;
    border-bottom: 1px solid #e8e8e8;
  }
  .info__price{
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
  .info__price-caption, .info__price-value{
    display: block;
  }
  .info__size{
    margin: 0;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
  }
  .info__more{
    margin: 0;
    color: #e8e8e8;
    font-family: 'Futura PT';
    font-size: 10px;
    text-align: center;
  }
/*--- build ---*/

/* about us */
  .aboutUs__title{
    margin: 40px 0 20px;
    font-size: 30px;
    text-align: center;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
  }
  .aboutUs__list{
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 10px;
    background: url(../images/about-bg.png) no-repeat center / cover;
    font-size: 14px;
    color: white;
    text-align: center;
  }
  .aboutUs__list:before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .8);
  }
  .aboutUs__item{
    z-index: 3;
  }
  .aboutUs__item+.aboutUs__item{
    margin-top: 20px;
  }
  .aboutUs__desc{
    max-width: 300px;
    margin: 0 auto;
  }
  .aboutUs__caption{
    font-weight: bold;
    line-height: 30px;
  }
/*--- about us ---*/

/* choose us */
  .chooseUs {
    margin: 40px 0 20px;
  }
  .chooseUs-catalog{
    margin-top: 25px;
  }
  .chooseUs__title{
    margin: 40px 0 40px;
    font-size: 30px;
    text-align: center;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
  }
  .chooseUs__caption{
    margin: 0 0 25px;
    font-size: 24px;
    text-align: center;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1px;
  }
  .chooseUs__text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .chooseUs__textBlock{
    width: 100%;
    max-width: 800px;
    margin-bottom: 20px;
    padding: 0 10px;
    text-align: justify;
    font-size: 14px;
  }
  .chooseUs__textAccent {
    color: #ba9d64;
    /* font-weight: bold; */
    font-style: italic;
    max-width: 440px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 20px 10px;
  }
  .chooseUs ul {
    list-style-type: none;padding: 0;margin: 10px 0;
  }
  .chooseUs ul li::before {
    content: "\2014";
    color: #ba9d64;
    padding: 0 10px 0 15px;
  }
/*--- choose us ---*/


/* dates */
  .dates__separator {
    content: '';
    width: 90px;
    height: 1px;
    background-color: #bda177;
    display: inline-block;
    vertical-align: middle;
    margin-left: -4px;
    margin-right: -4px;
  }

  .dates__block {
    padding-top: 22px;
    width: 94px;
    height: 94px;
    border: 2px solid #bda177;
    border-radius: 50%;
    overflow: hidden;
    color: white;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
  }
  .dates__block-offer {
    padding-top: 10px;
  }

  .dates__from {
    color: #bda177;
    position: relative;
    font-size: 15px;
    line-height: 1;
    margin-bottom: 2px;
  }

  .dates__from:before, .dates__from:after {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 34px;
    height: 1px;
    background-color: #bda177;
    opacity: .4;
  }

  .dates__from:after {
    left: auto;
    right: 0;
  }

  .dates__digit {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 2px;
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-weight: 300;
  }

  .dates__month {
    font-size: 15px;
    line-height: 1;
  }
/*--- dates ---*/

/* btn */
  .btn {
    background-color: transparent;
    text-decoration: none;
    display: inline-block;
    min-width: 214px;
    text-align: center;
    border: 1px solid #d8d8d8;
    height: 47px;
    line-height: 44px;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    padding: 0 20px;
    cursor: pointer;
    outline: none;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }
  .btn-spacing {
    letter-spacing: 4px;
    text-transform: uppercase;
  }

  .btn-long {
    min-width: 280px;
    height: 52px;
    line-height: 50px;
  }
  .btn span {
    vertical-align: middle;
  }
  .btn span {
    position: relative;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }
  .btn:hover {
    border-color: #ba9d64;
  }
  .btn:hover span {
    color: white;
  }
  .btn:hover:before {
    -webkit-transform: none;
            transform: none;
  }
  .btn:before {
    content: '';
    height: 100%;
    top: 0;
    left: 0;
    background-color: #ba9d64;
    position: absolute;
    width: 100%;
    -webkit-transform: translateY(-102%);
            transform: translateY(-102%);
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }
/*--- btn ---*/



/* news-offers */
  .newsMain{
    display: grid;
    display: -ms-grid;
    grid-template-columns: 100%;
        -ms-grid-columns: 100%;
    margin: 40px 0;
  }
  .newsMain__block:nth-child(4n+1){
    grid-row: auto;
    -ms-grid-row: 1;
  }
  .newsMain__block:nth-child(4n+2){
    grid-row: auto;
    -ms-grid-row: 2;
  }
  .newsMain__block:nth-child(4n+3){
    grid-row: auto;
    -ms-grid-row: 3;
  }
  .newsMain__block:nth-child(4n){
    grid-row: auto;
    -ms-grid-row: 4;
  }

  .bNews {
    display: block;
    text-decoration: none;
    text-align: center;
    position: relative;
    color: white;
    background-color: white;
    padding: 80px 20px;
    overflow: hidden;
  }
  .bNews:before {
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: 1;
    -webkit-transition: all 0.8s 0s;
    transition: all 0.8s 0s;
  }
  .bNews:hover:before {
    -webkit-transform: translateY(-101%);
            transform: translateY(-101%);
  }
  .bNews-noBg:before {
    display: none;
  }
  .bNews-oGold:before {
    background-color: #ba9d64;
    opacity: .2;
  }


  .bNews__background {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 1s 0s;
    transition: all 1s 0s;
  }
  .bNews:hover .bNews__background {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }

  .bNews__btn {
    position: absolute;
    display: block;
    opacity: 0;
    z-index: 20;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 200px;
    line-height: 46px;
    background-color: rgba(255, 255, 255, 0.6);
    border-color: #ffd178;
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-weight: 300;
    color: #383838;
    text-transform: uppercase;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition: all 0.8s 0s;
    transition: all 0.8s 0s;
  }
  .bNews:hover .bNews__btn{
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    -webkit-transition: all 0.8s 0s;
            transition: all 0.8s 0s;
  }

  .bNews__content{
    margin-top: 20px;
  }
  .bNews__dates, .bNews__content {
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }
  .bNews:hover .bNews__content, .bNews:hover .bNews__dates {
    opacity: 0;
    -webkit-transition: all 0.2s 0s;
            transition: all 0.2s 0s;
  }

  .bNews__text{
    font-size: 15px;
    color: #1e1e1e;
  }
  .bNews__category{
    margin-top: 3px;
    color: white;
  }
  .bNews__category-offer{
    display: block;
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 10px;
    color: #bda177;
    text-transform: uppercase;
  }
  .bNews__text-offer{
    font-size: 19px;
    color: white;
  }
  .bNews-cBlack .bNews__category,
  .bNews-cGold .bNews__category{
    color: #b4b4b4;
  }
  .bNews-cGold .bNews__text,
  .bNews-cGold .dates__block{
    color: #a38354;
  }
  .bNews-noBg .dates__block, 
  .bNews-oGold .dates__block{
    border-color: #a38354;
  }
  .bNews-cBlack .dates__block{
    color: #1e1e1e;
  }
/* news-offers */



/* filterCatalog */
  .filterCatalog{
    padding: 0 10px 20px;
    background: #eeeeee;
  }
  .filterCatalog__list{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .paramsFilter{
    margin: 15px 0 0;
  }
  .paramsFilter__caption{
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-size: 14px;
    color: black;
    text-decoration: underline;
    cursor: pointer;
  }
  .paramsFilter__caption-active{
    text-decoration: none;
    font-weight: bold;
  }
  .paramsFilter__list{
    display: none;
    margin-left: 30px;
  }
  .paramsFilter__list-open{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    /* -ms-flex-pack: distribute; */
    /* justify-content: space-around; */
  }
  .paramsFilter__item{
    width: 135px;
    padding:0 5px 5px;
    color: #6a6967;
  }
  .paramsFilter__item-active{
    color: black;
    font-family: 'Avenir Next', Calibri, sans-serif;
    font-weight: bold;
    text-decoration: none;
  }
  .paramsFilter__item-hidden{
    display: none;
  }
/*--- filterCatalog ---*/


/* buildDetail */
  .buildDetail__btn{
    display: inline-block;
    background: none;
    margin: 10px auto 0;
    font-family: 'Calibri Custom', Calibri, sans-serif;
    padding: 0 20px;
    cursor: pointer;
    outline: none;
    max-width: 370px;
    width: 100%;
  }
  .buildDetail__callback{
    max-width: 900px;
    margin: 30px auto 60px;
    padding: 0 10px;
    text-align: center;
  }
/*--- buildDetail ---*/

/* equipment */
  .equipments{
    margin: 30px 10px 0;
  }
  .equipments__title{
    margin-bottom: 30px;
  }
  .equipments__item{
    border: black solid 1px;
  }
  .equipments__item+.equipments__item{
    border-top: none;
  }
  .equipments__info {
    margin: 0;
    text-align: center;
    font-size: 12px;
    padding-top: 5px;
  }
  .equipments__btnWrap{
    margin-top: 30px;
    text-align: center;
  }
/*--- equipment ---*/

/* #region */
  .set__header{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    font-weight: bold;
    border-bottom: black solid 1px;
  }
  .set__header-noBorder{
    border: none;
  }
  .set__name{
    width: 100%;
    line-height: 21px;
    padding: 8px 0 8px 10px;
  }
  .set__options{
    border-left: black solid 1px;
  }
  .set__content{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .set__img{
    display: none;
  }
  .set__list{
    box-sizing: border-box;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .set__row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* padding-left: 10px; */
  }
  .set__row:last-child{
    flex-grow: 1;
  }
  .set__row+.set__row{
    border-top: black solid 1px;
  }
  .set__desc{
    width: calc(100% - 105px);
    padding: 8px 5px;
    border-right: black solid 1px;
  }
/* #endregion */

/* options */
  .options{
    text-align: center;
  }
  .options__top{
    height: 40px;
    line-height: 40px;
    min-width: 105px;
    border-bottom: black solid 1px;
  }
  .options__bottom{
    height: 105px;
    line-height: 35px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
  }
  .options__type{
    width: 105px;
  }
  .options__type+.options__type{
    border-top: black 1px solid;
  }
/*--- options ---*/

/* includes */
  .includes{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .includes__type{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
  }
  .includes__type:first-child{
    width: 35px;
  }
  .includes__type:last-child{
    width: 34px;
  }
  .includes__type+.includes__type {
    border-left: black solid 1px;
  }
  .includes__type.active::before{
    content: "+";
  }
/*--- includes ---*/

/* gallery */
  .gallery__main{
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50px 1fr 50px;
    grid-template-columns: 50px 1fr 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .gallery__main-small{
    height: 42vw;
  }
  .gallery__pic{
    /* width: 100%; */
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    max-height: 900px;
    max-width: 100%;
  }
  .gallery__arrow{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: rgba(204, 204, 204, .5);
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 10;
  }
  .gallery__arrow-left{
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row-align: center;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .gallery__arrow-left:before{
    content: "";
    display: block;
    margin-right: -5px;
    width: 15px;
    height: 15px;
    border-bottom: 3px solid #b59a64;
    border-left: 3px solid #b59a64;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  .gallery__arrow-right{
    -ms-grid-column-align: center;
    justify-self: center;
    -ms-grid-row-align: center;
    -ms-grid-column: 3;
    -ms-grid-column-span: 1;
    grid-column: 3/4;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
  .gallery__arrow-right:before{
    content: "";
    display: block;
    margin-left: -5px;
    width: 15px;
    height: 15px;
    border-top: 3px solid #b59a64;
    border-right: 3px solid #b59a64;
    -webkit-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
  }
  .gallery__previews{
    display: none;
  }
  .preview__img{ cursor: pointer; }
  .gallery__notification{
    text-align: center;
    margin: 10px 0;
  }
/*--- gallery ---*/

/* description */
  .description{
    padding: 20px 0 10px;
  }
  .description-half{
    min-width: 300px;
  }
  .description-sub{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .description__row{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 3px 10px;
  }
  .description__row-cost{
    margin: 10px 0;
    padding: 10px 10px 15px;
    border-top: 1px solid #C38D48;
    border-bottom: 3px solid #C38D48;
    font-size: 18px;
    color: #C38D48;
  }
  .description__row-separator{
    margin-bottom: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid black;
  }
  .description__col:nth-child(2) {
    text-align: center;
  }
  .description__price{
    color: #C38D48;
  }
/*--- description ---*/

/* adaptation */
  .adaptation{
    max-width: 1200px;
    margin: 30px 10px 0;
    padding: 10px 0;
    /* background-color: #b59a64; */
  }
  .adaptation__text{
    margin: 0;
    font-size: 18px;
    text-align: center;
    color: #b59a64;
  }
/*--- adaptation ---*/

/* individualPromo */
  .individualPromo{
    margin: 30px 10px 0;
  }
  .individualPromo__desc{
    text-align: center;
  }
  .individualPromo__item+.individualPromo__item{
    margin-top: 20px;
  }
  .individualPromo__img{
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    height: 70px;
  }
  .individualPromo__img::after{
    content: "";
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 1px;
    background-color: #ba9d64;
  }
  .individualPromo__img p{
    margin: 10px 0;
  }
  .individualPromo__text{
    text-align: center;
  }
  .individualPromo__btn{
    margin-top: 20px;
    text-align: center;
  }
/*--- individualPromo ---*/

/* whereWork */
  .whereWork{
    margin: 50px 10px 0;
  }
  .whereWork__name{
    padding: 15px 50px;
    background: #ba9d64;
    -webkit-transform: skew(-30deg);
    -moz-transform: skew(-30deg);
    -o-transform: skew(-30deg);
    transform: skew(-30deg);
    width: 220px;
    margin: 0 auto;
  }
  .whereWork__name p{
    -webkit-transform: skew(30deg);
    -moz-transform: skew(30deg);
    -o-transform: skew(30deg);
    transform: skew(30deg);
    text-align: center;
    margin: 0;
    font-size: 20px;
  }
  .whereWork__desc{
    margin: 10px auto 0;
    max-width: 220px;
    text-align: center;
  }
  .whereWork__map{
    margin-top: 20px;
  }
  .whereWork__btmText{
    text-align: center;
  }
/*--- whereWork ---*/

/* review */
  .reviews{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
  }
  .review.review-noimg{
    display: block;
  }
  .review-video{
    margin: 20px 0 20px;
  }
  .review__content{
    padding: 0 10px;
    margin-top: 10px;
  }
  .review__info{
    margin-top: 20px;
    line-height: 2;
  }
  .review__info-color{
    color: #C38D48;
  }
  .review__text{
    text-align: justify;
  }
  .review__image{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 10px;
  }
  .review__imageItem {
    /* width: 9vw; */
    width: 28vw;
    /* height: 5.6vw; */
    height: 17.5vw;
    background-position: center;
    background-size: cover;
  }
  .review__imageItem-2{
    /* width: 14vw; */
    width: 42vw;
    /* height: 8.75vw; */
    height: 26.25vw;
  }
  .review__imageItem + .review__imageItem {
    /* margin-left: 1vw; */
    margin-left: 4vw;
  }
  .review__video{
    margin-top: 20px;
    width: 100vw;
    height: 56.25vw;
  }
/*--- review ---*/

/* download */
  .download{
    margin: 0 10px 20px;
  }
  .download__text{
    text-align: justify;
  }
  .download__required{
    margin-top: 10px;
    color: #939393;
    font-size: 14px;
  }
  .download .input-block span{
    color: black;
  }
/*--- download ---*/


/* tabs */
  .tabs{
    margin: 30px 10px 0;
  }
  .tabs__nav{
    position: relative;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: #ba9d64 solid 1px;
  }
  .tabs__select{
    padding: 10px 0;
    margin-right: 15px;
    font-size: 18px;
    text-decoration: none;
  }
  .tabs__select.active{
    border-bottom: #ba9d64 solid 5px;
    color: #ba9d64;
  }
  .tabs__item{
    display: none;
  }
  .tabs__item.active{
    display: block;
  }
/*--- tabs ---*/

/* buildLayout */
  .buildLayout__item{
    text-align: center;
    margin-bottom: 30px;
  }
  .buildLayout__desc{
    display: inline-block;
    margin-top: 10px;
    text-align: left;
  }
  .buildLayout__desc::before{
    content: "";
    width: 30%;
    height: 3px;
    background-color: #ba9d64;
    display: block;
  }
  .buildLayout__floor{
    font-size: 12px;
  }
  .buildLayout__area{
    color: #ba9d64;
    font-size: 20px;
  }
/*--- buildLayout ---*/

/* buildCallback */
  .buildCallback{
    margin: 10px 0 0px;
  }
  .buildCallback__desc{
    position: relative;
    color: #ba9d64;
    z-index: 3;
  }
  .buildCallback__form{
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px;
  }
  .buildCallback__input{
    z-index: 3;
    max-width: 350px;
  }
  .buildCallback__policy{
    position: relative;
    font-size: 12px;
    color: #ba9d64;
    z-index: 3;
  }
  .buildCallback_btn{
    z-index: 3;
    border: #ba9d64 solid 1px;
    color: #ba9d64;
  }
/*--- buildCallback ---*/

/* handleBuild */
  .handleBuild{
    text-align: center;
  }
/*--- handleBuild ---*/

/* #region */
  /* start contacts */
    .contacts{
      /* max-width: 1200px;
      width: 100%; */
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-direction: column;
      -moz-flex-direction: column;
      -ms-flex-direction: column;
      -o-flex-direction: column;
      flex-direction: column;
      margin: 30px 10px;
    }
    .contacts__subtitle{
      margin: 20px 0 20px;
      text-align: center;
      font-size: 16px;
      font-family: 'Avenir Next', 'Calibri Custom', Calibri, sans-serif;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 1px;
      color: #917F6B;
    }
    .contacts__link{
      color: #ba9d64;
      text-decoration: none;
    }
    .contacts__link:hover{
      text-decoration: underline;
    }
    .contacts__grafik{
      margin-bottom: 10px;
    }
    .contacts__pics{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .contacts__pic{
      margin-bottom: 10px;
      width: 48%;
      height: 48%;
    }
    /* start writeUs */
    .writeUs{
      margin-top: 40px;
    }
    .writeUs__title{
      margin: 40px 0 0;
      text-align: center;
      font-size: 20px;
      font-family: 'Avenir Next', 'Calibri Custom', Calibri, sans-serif;
      font-weight: bold;
      line-height: 1;
      letter-spacing: 1px;
      color: #917F6B;
    }
    .writeUs__personalText{
      margin-bottom: 10px;
      font-size: 12px;
    }
    .writeUs__required{
      margin-bottom: 10px;
      font-size: 12px;
    }
    .writeUs .input-block span{
      color: #383838;
    }
    .writeUs__btn{
      text-align: center;
    }
    /* end writeUs */
  /* end contacts */
/* #endregion */

/* #region */
  /* tableCompany */
    .tableCompany {
      border: 1px solid #eceeef;
      margin: 20px 0 10px;
    }

    .tableCompany__row:nth-child(2n+1) {
      background-color: rgba(0, 0, 0, 0.05);
    }

    .tableCompany__row {
      padding: 10px 5px;
      border-bottom: 1px solid #eceeef;
    }

    .tableCompany__row:last-child {
      border-bottom: none;
    }
  /*--- tableCompany  ---*/ 
/* #endregion */

/* #region */
  /* photogallery */
  .photogallery__list{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .photogallery__empty{
    margin: 0;
    color: #6a6967;
    background: #eeeeee;
    width: 100%;
    padding: 50px 0 20px;
    text-align: center;
  }
  .photogallery__item{
    width: 100%;
    text-decoration: none;
  }
  .photogallery__list-other .photogallery__item{
    width: 80%;
    margin: 10px auto;
  }
  .photogallery__picture{
    width: 100%;
    padding-bottom: 100vw;
    height: 0;
    position: relative;
  }
  .photogallery__list-other .photogallery__picture{
    padding-bottom: 80vw;
  }
  .photogallery__name{
    display: block;
    position: absolute;
    padding: 0 12px;
    background: white;
    font-size: 12px;
    line-height: 20px;
    border-radius: 10px;
    bottom: 16px;
    left: 16px;
  }
  .photogallery__cntPhoto{
    display: block;
    position: absolute;
    padding: 0px 12px;
    background: white;
    font-size: 0;
    line-height: 20px;
    border-radius: 10px;
    top: 16px;
    right: 16px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
  .photogallery__cntPhoto .inline-icon__icon{
    width: 12px;
    height: 12px;
    margin-left: 5px;
    vertical-align: middle;
  }
  .photogallery__cntPhoto .inline-icon__text{
    font-size: 12px;
  }
  /* end photogallery */
/* #endregion */

/* #region */
  /* videoBlock */
    .videoBlock{
      margin: 40px 0 30px;
    }
    .videoBlock__content{
      max-width: 1280px;
      width: 100vw;
      height: 56.25vw;
      max-height: 720px;
      margin: 0 auto;
    }
  /* videoBlock */
/* #endregion */

/* start footer */
  .footer {
    text-align: center;
    padding: 30px 0;
    background: #f9f9f9;
  }
  .footer__logo{
    max-width: 120px;
    margin-bottom: 50px;
    display: inline-block;
  }
  .footer__nav {
    position: relative;
    font-size: 16px;
    margin: 0 auto 20px;
    max-width: 770px;
    padding-top: 14px;
  }
  .footer__nav:before {
    content: '';
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 10px;
    opacity: 0;
    height: 1px;
    background-color: #e5e5e5;
    position: absolute;
    -webkit-transition: all .6s 1s;
    transition: all .6s 1s;
  }
  .footer__nav.aos-animate:before {
    width: 85%;
    opacity: 1;
  }
/* end footer */

/* start made-by */
  .made-by {
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    margin-top: 14px;
    color: #352929;
    -webkit-transition: all 0.3s 0s;
    transition: all 0.3s 0s;
    transition: all 0.3s 0s;
  }

  .made-by.aos-animate {
    opacity: .6 !important;
  }

  .made-by:hover {
    opacity: 1 !important;
  }
/* end made-by */

/* #region */
  .message{
    font-size: 12px;
    text-align: center;
  }
  .message-error{
    color: red;
  }
/* #endregion */

.-uppercase{ text-transform: uppercase; }
.-desktop{ display: none; }
.-hidden.-hidden.-hidden { opacity: 0; }

@media only screen and (min-width: 480px) {
  .promo__title{ font-size: 24px; }
  .info__type{ font-size: 12px; }
  .info__name{ font-size: 20px; }
  .info__price{ font-size: 14px; font-weight: normal; }
  .info__size{ font-size: 14px; font-weight: normal; }
  .info__more{ font-size: 12px; }

  .title{ font-size: 22px; }
  .title-sub{ font-size: 20px; }

  /* description */
    .description{ padding: 20px 40px 10px; }
    .description__row-cost{ font-size: 22px; }
  /*--- description ---*/

  /* #region */
    /* photogallery */
    .photogallery__list-other{
      justify-content: space-around;
    }
    .photogallery__item{
      width: 50%;
    }
    .photogallery__picture{
      padding-bottom: 50vw;
    }
    .photogallery__list-other .photogallery__item{
      width: 40%;
    }
    .photogallery__list-other .photogallery__picture{
      padding-bottom: 30vw;
    }
    /* end photogallery */
  /* #endregion */
}

@media only screen and (min-width: 640px) {
  .info__name{ font-size: 26px; }
  .info__price{ font-size: 20px; }
  .info__size{ font-size: 20px; }
  .info__more{ padding-top: 20px; font-size: 16px; }

  .title{ font-size: 26px; }
  .title-sub{ font-size: 24px; }

  /* filterCatalog */
    .filterCatalog__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
    }
    .filterCatalog__item{
      width: 50%;
      max-width: 440px;
    }
  /*--- filterCatalog ---*/

  /* gallery */
    .gallery__main{
      display: -ms-grid;
      display: grid;
      -ms-grid-columns: 100px 1fr 100px;
      grid-template-columns: 100px 1fr 100px;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
    }
    .gallery__previews{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
    }
    .preview__img{
      position: relative;
      width: 12.5%;
      height: 100%;
    }
    .preview__img-active::before{
      content: "";
      box-sizing: border-box;
      width: 100%;
      height: 100%;
      position: absolute;
      left: 0;
      top: 0;
      border: 3px solid #b59a64;
      border-left-width: 5px;
      border-right-width: 5px;
    }
    .preview__img img{ display: block; }
    .gallery__arrow{
      width: 50px;
      height: 50px;
    }
    .gallery__arrow-left:before{
      content: "";
      margin-right: -8px;
      width: 25px;
      height: 25px;
    }
    .gallery__arrow-right:before{
      content: "";
      margin-left: -8px;
      width: 25px;
      height: 25px;
    }
  /*--- gallery ---*/

  /* description */
    .description{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      padding: 20px 0 10px;
    }
    .description__col{
      width: 50%;
    }
    .description__col:nth-child(2){
      -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
      order: 1;

      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-around;
      padding: 0 10px;
    }
    .description__row-cost{ font-size: 18px; }
  /*--- description ---*/

  /* buildLayout */
    .buildLayout{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      flex-wrap: wrap;
    }
    .buildLayout__item{
      box-sizing: border-box;
      padding: 0 10px;
      width: 50%;
      text-align: center;
      margin-bottom: 30px;
    }
    /* .buildLayout__img {
      min-height: 45vw;
    } */
  /*--- buildLayout ---*/

  /* individualPromo */
    .individualPromo{
      max-width: 1200px;
      margin: 50px auto 50px;
    }
    .individualPromo__list{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: space-around;
      margin-bottom: 20px;
    }
    .individualPromo__item{
      width: 300px;
      padding: 0 10px;
    }
    .individualPromo__item+.individualPromo__item{
      margin: 0;
    }
  /*--- individualPromo ---*/

  /* whereWork */
    .whereWork{
      max-width: 1200px;
      margin: 50px auto 0;
    }
    .whereWork__info{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      justify-content: space-around;
    }
    .whereWork__map{
      padding: 0 10px;
    }
    .whereWork__btmText{
      max-width: 600px;
      margin: 0 auto;
    }
  /*--- whereWork ---*/

  /* download */
    .download{
      margin: 0 30px 20px;
    }
  /*--- download ---*/

  /* contacts */
    .contacts__grafik{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
    }
    .contacts__grafikDay{
      max-width: 200px;
      width: 100%;
    }
  /*--- contacts ---*/

  /* tableCompany */
    .tableCompany__row {
      padding: 0;
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
    }
    .tableCompany__col:first-child{
      border-left: none;
      flex-basis: 210px;
      flex-grow: 0;
    }
    .tableCompany__col {
      border-left: 1px solid #eceeef;
      padding: 10px 5px;
      box-sizing: border-box;
      width: 0;
      flex-grow: 1;
    }
  /*--- tableCompany ---*/
}

@media only screen and (min-width: 880px) {
  /* #region */
    /* common */
    html {
      min-height: 100%;
      position: relative;
    }
    body {
      font-size: 17px;
    }
    .nav-trigger-wrapper {
      display: none;
    }
    .mobileMenu {
      display: none;
    }

    .popup-success .popup-content h4 {
      font-size: 26px;
    }
    .popup-success .popup-content p {
      font-size: 21px;
    }
    .popup-header h3 {
      font-size: 39px;
    }
    .popup-header p {
      font-size: 19px;
    }
    .popup-content {
      padding: 36px 10px 58px;
    }
    .btn-long {
      min-width: 300px;
    }

    .header{
      max-width: 910px;
    }
    .header__middle {
      margin: 0 auto;
      padding-bottom: 10px;
      max-width: 910px;
    }
    .header__logo{
      position: static;
    }
    .header__logo-small, .header__logo-empty{
      display: inline-block;
    }
    .header__logo-inner{
      margin: 0 125px;
    }
    .header__address{
      display: block;
    }
    .header__title{
      display: block;
    }

    .header__callback {
      position: relative;
      top: 0;
      left: 0;
      right: auto;
      border: none;
      border-radius: 0;
      overflow: visible;
      text-decoration: none;
      text-align: right;
      color: #626262;
      width: auto;
      font-size: 13px;
      -webkit-transition: all 0.3s 0s;
      transition: all 0.3s 0s;
    }
    .callback__wrapper:before {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      width: 1px;
      background-color: #c6ac8a;
      opacity: 0;
      height: 1px;
      -webkit-transition: all 0.3s 0s;
      transition: all 0.3s 0s;
      -webkit-transform: translateX(-50%);
              transform: translateX(-50%);
    }
    .callback__wrapper:hover {
      color: #ba9d64;
    }
    .callback__wrapper:hover:before {
      -webkit-animation: 1s lineAnim;
              animation: 1s lineAnim;
    }
    .callback__icon{
      position: static;
      vertical-align: middle;
    }
    .callback__caption{
      display: inline-block;
    }

    .header__phone {
      display: inline-block;
      color: #939393;
      font-size: 13px;
    }

    .header__link{
      display: inline-block;
    }

    .header__nav{
      display: block;
    }

    .promo { padding-top: 70px; padding-bottom: 70px; }
    .promo__title { font-size: 36px; }
    .promo__list{
      margin-top: 100px;
      margin-bottom: 30px;
    }
    .promo__item{ width: auto; }
    .promo__caption {
      font-size: 32px;
      letter-spacing: 4px;
      margin:8px 0 12px;
    }
    .promo__desc{ font-size: 20px; }
    .promo__subDesc { display: block; }
    .promo__block:hover:before {
      opacity: .8;
      -webkit-transform: none;
              transform: none;
      -webkit-transition: all 0.6s 0s;
      transition: all 0.6s 0s;
    }
    .promo__block:hover .promo__subDesc {
      opacity: 0.8;
      -webkit-transition: all 0.6s 0s;
              transition: all 0.6s 0s;
    }

    .breadcrumb {
      max-width: 910px;
      margin: 0 auto;
      padding: 0 10px;
    }

    .build__item{
      display: block;
      position: relative;
      width: 25%;
    }
    .build__picture{
      position: relative;
      width: 100%;
      padding-bottom: 84%;
    }
    .build__aria{
      display: block;
      position: absolute;
      padding: 0px 12px;
      background: white;
      font-size: 12px;
      line-height: 20px;
      border-radius: 10px;
      top: 16px;
      right: 16px;
    }
    .build__name{
      display: block;
      position: absolute;
      padding: 0 12px;
      background: white;
      font-size: 12px;
      line-height: 20px;
      border-radius: 10px;
      bottom: 16px;
      left: 16px;
    }

    .build__desc{
      opacity: 0;
      width: 100%;
      position: absolute;
      left: 0;
      top: 0;
      background: white;
      height: 100%;
      -webkit-transition: all 0.7s 0s;
              transition: all 0.7s 0s;
    }
    .info__name{ font-size: 20px; }
    .info__price{ font-size: 14px; }
    .info__price-caption, .info__price-value{
      display: inline;
    }
    .info__size{ font-size: 14px; }
    .info__more{ font-size: 12px; }

    .build__item:hover .build__desc{
      opacity: 1;
      -webkit-transition: all 0.7s 0s;
              transition: all 0.7s 0s;
    }

    .aboutUs__item+.aboutUs__item{
      margin: 0;
    }
    .aboutUs__list{
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-pack: distribute;
      justify-content: space-around;
    }

    .chooseUs__textBlock{
      width: 50%;
      padding: 0 15px;
      font-size: 16px;
    }
    .chooseUs__textAccent{
      max-width: 600px;
      width: 50%;
      padding: 30px 15px;
      font-size: 16px;
    }

    .newsMain{
      grid-template-columns: repeat(2, 20%) repeat(2, 30%);
          -ms-grid-columns: (20%)[2] (30%)[2];
      margin: 80px 0;
    }
    .newsMain__block{ height: 400px }
    .newsMain__block:nth-child(4n+1){
      grid-column: 1 / 3;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
      grid-row: 1 / 3;
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      height: 800px;
    }
    .newsMain__block:nth-child(4n+2){
      grid-column: 3 / 5;
      -ms-grid-column: 3;
      -ms-grid-column-span: 2;
      grid-row: 1;
      -ms-grid-row: 1;
    }
    .newsMain__block:nth-child(4n+3){
      grid-column: 3;
      -ms-grid-column: 3;
      grid-row: 2;
      -ms-grid-row: 2;
    }
    .newsMain__block:nth-child(4n){
      grid-column: 4;
      -ms-grid-column: 4;
      grid-row: 2;
      -ms-grid-row: 2;
    }

    .bNews__contentOffer{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
      flex-direction: row-reverse;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 100%;
    }
    .dates-offer{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    .bNews__content{ margin: 0; -webkit-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; }
    .dates__separator{
      height: 80px;
      width: 1px;
      margin: 0 auto;
    }
    /*--- common ---*/
  /* #endregion */

  /* filterCatalog */
    .filterCatalog__list{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      -ms-flex-direction: row;
      flex-direction: row;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1400px;
      margin: 0 auto;
    }
    .filterCatalog__item{
      width: 100%;
      max-width: 180px;
    }
    .paramsFilter__caption{
      font-size: 16px;
      font-weight: bold;
      text-decoration: none;
      cursor: default;
    }
    .paramsFilter__list{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      margin-left: 10px;
    }
    .paramsFilter__item{
      width: 170px;
      padding: 0 0 5px;
    }
  /*--- filterCatalog ---*/

  /* gallery */
    .gallery-small{
      display: none;
    }
  /*--- gallery ---*/

  /* description */
    .description__row-cost{ font-size: 22px; }
  /*--- description ---*/

  /* set */
    .set__desc{
      width: calc(100% - 120px);
    }
  /*--- set ---*/

  /* options */
    .options__top{
      min-width: 120px;
    }
    .options__bottom{
      height: 120px;
      line-height: 40px;
    }
    .options__type{
      width: 120px;
    }
  /*--- options ---*/

  /* includes */
    .includes__type {
      width: 41px;
    }
    .includes__type:first-child {
      width: 40px;
    }
    .includes__type:last-child {
      width: 39px;
    }
  /*--- includes ---*/

  /* buildCallback */
    .buildCallback__form{
      flex-direction: row;
      justify-content: space-around;
      max-width: 1000px;
      margin: 0 auto;
    }
    .buildCallback__input{
      max-width: 300px;
    }
  /*--- buildCallback ---*/

  /* review */
    .review.review-noimg{
      width: 50%;
    }
    .review-noimg .review__content{
      display: flex;
      justify-content: space-between;
    }
    .review-noimg .review__content .review__column{
      padding: 0 20px;
      /* width: 47%; */
    }
  /*--- review ---*/

  /* download */
    .download__content{
      display: flex;
      justify-content: space-between;
    }
    .download__col{
      width: 48%;
    }
  /*--- download ---*/

  /* contacts */
    .contacts__pics{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      -webkit-flex-wrap: wrap;
      -moz-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      -o-flex-wrap: wrap;
      flex-wrap: wrap;
      justify-content: space-between;
    }
    .contacts__pic{
      margin-bottom: 10px;
      width: 24%;
      height: 24%;
    }
    /* writeUs */
      .writeUs__personalText{
        font-size: 13px;
      }
      .writeUs__required{
        font-size: 13px;
      }
    /*--- writeUs ---*/
  /*--- contacts ---*/

  /* tableCompany */
    .tableCompany__col:first-child{
        flex-basis: 250px;
    }
  /*--- tableCompany ---*/

  /* #region */
    /* photogallery */
    .photogallery__item{
      width: 25%;
    }
    .photogallery__picture{
      padding-bottom: 84%;
    }
    /* end photogallery */
  /* #endregion */

  .-desktop{ display: block; }
  .review__info table.-desktop{display: table;} 
  .-mobile{ display: none; }
}

@media only screen and (min-width: 1024px){
  /* filterCatalog */
    .filterCatalog{
      padding: 0 0 20px;
    }
    .filterCatalog__list{
      padding: 0 20px 0;
    }
  /*--- filterCatalog ---*/
  /* buildDetail */
    .buildDetail{
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
    }
    .buildDetail__gallery{
      width: 58.3333%;
    }
    .buildDetail__description{
      width: 41.6667%;
    }
  /*--- buildDetail ---*/

  /* equipments */
    .equipments{
      max-width: 1200px;
      margin: 30px auto 0;
    }
    .equipments__info {
      text-align: right;
      font-size: 14px;
      padding-top: 10px;
    }
    .equipments__btnWrap{
      text-align: right;
    }
  /* equipments */

  /* options */
    .options__bottom{
      transform: rotateZ(0deg);
      -webkit-transform: rotateZ(0deg);
      -moz-transform: rotateZ(0deg);
      -ms-transform: rotateZ(0deg);
      -o-transform: rotateZ(0deg);
      display: -webkit-flex;
      display: -moz-flex;
      display: -ms-flex;
      display: -o-flex;
      display: flex;
      height: auto;
    }
    .options__type{
      width: 100px;
    }
    .options__type+.options__type{
      border-top: none;
      border-left: black 1px solid;
    }
  /*--- options ---*/

  /* set */
    .set__img{
      display: block;
      max-width: 20%;
      width: 100%;
      align-self: center;
    }
    .set__list{
      border-left: black solid 1px;
    }
    .set__desc{
      width: calc(100% - 300px);
    }
  /*--- set ---*/

  /* includes */
    .includes__type{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100px;
    }
    .includes__type:first-child{ width: 100px; }
    .includes__type:last-child{ width: 100px; }
    .includes__type+.includes__type {
      border-left: black solid 1px;
    }
  /*--- includes ---*/

  /* description */
    .description{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -ms-flex-wrap: nowrap;
      flex-wrap: nowrap
    }
    .description-half{
      width: 50%;
    }
    .description__col{
      width: 100%;
    }
    .description__col:nth-child(2){
      -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
      order: 0;
      padding: 0 30px 0 0;
    }
    .description__col .buildDetail__btn{
      margin: 10px 0 0 auto;
    }
  /*--- description ---*/

  /* tabs */
    .tabs__select{
      font-size: 22px;
    }
  /*--- tabs ---*/

  /* buildLayout */
    .buildLayout__floor{
      font-size: 16px;
    }
    .buildLayout__area{
      color: #ba9d64;
      font-size: 24px;
    }
  /*--- buildLayout ---*/

  /* adaptation */
    .adaptation__text{
      font-size: 22px;
    }
  /*--- adaptation ---*/

  /* whereWork */
    .whereWork__info{
      max-width: 1000px;
      margin: 0 auto;
    }
  /*--- whereWork ---*/

  /* review */
    .review{
      display: -ms-grid;
      display: grid;
      //-ms-grid-columns: 7fr 5fr;
      //grid-template-columns: 7fr 5fr;
    }
    .review-video{
      -ms-grid-columns: 6fr 6fr;
      grid-template-columns: 6fr 6fr;
    }
    .review__content{
      grid-column: auto;
      -ms-grid-column: 2;-ms-grid-column-span: 1;
    }
    .review__video {
//        width: 44.333vw;
//        height: 24.81vw;
        width: 50vw;
        height: 28.15vw;
        align-self: center;
        margin: 0;
    }
    .review__imageItem {
      width: 9vw;
      height: 5.6vw;
      background-position: center;
      background-size: cover;
    }
    .review__imageItem-2{
      width: 14vw;
      height: 8.75vw;
    }
    .review__imageItem + .review__imageItem {
      margin-left: 1vw;
    }
  /*--- review ---*/

  /* download */
    .download{
      margin: 0 50px 20px;
    }
    .download__col{
      width: 46%;
    }
  /*--- download ---*/

  /* contacts */
    .contacts{
      -webkit-flex-direction: row;
      -moz-flex-direction: row;
      -ms-flex-direction: row;
      -o-flex-direction: row;
      flex-direction: row;
      justify-content: space-between;
    }
    .contacts__content{
      width: 60%;
    }
    .contacts__form{
      width: 38%;
    }
    /* writeUs */
      .writeUs__title{
        margin: 0 0 20px;
      }
      .writeUs__personalText{
        font-size: 14px;
      }
      .writeUs__required{
        font-size: 14px;
      }
    /*--- writeUs ---*/
  /* contacts */

  /* #region */
    /* photogallery */
    .photogallery__list-other .photogallery__item{
      width: 40%;
    }
    .photogallery__list-other .photogallery__picture{
      padding-bottom: 84%;
    }
    /* end photogallery */
  /* #endregion */
}

@media only screen and (min-width: 1170px){
  /* common */
    .header {
      max-width: 1200px;
    }
    .header__logo-inner{
      position: relative;
      left: auto;
      top: auto;
    }
    .header__logo-inner:before, .header__logo-inner:after {
      content: '';
      position: absolute;
      bottom: 13px;
      left: -125px;
      width: 85px;
      height: 1px;
      background-color: #c6ac8a;
    }
    .header__logo-inner:after{
      left: auto;
      right: -125px;
    }
    .mainNav__link{
      padding: 10px 8px 20px;
    }
    .mainNav__link-more{
      transition: margin-bottom 1s;
      -webkit-transition: margin-bottom 1s;
      -moz-transition: margin-bottom 1s;
      -ms-transition: margin-bottom 1s;
      -o-transition: margin-bottom 1s;
    }
    .mainNav__link-more:hover .mainNav-subNav{
      height: auto;
      opacity: 1;
      top: auto;
    }
    .mainNav__link-more:hover{
      margin-bottom: 52px;
    }

    .breadcrumb{
      max-width: 1200px;
    }

    .promo__block.js-hover-ready:before {
      content: '';
      width: 430px;
      margin-left: -215px;
    }
    .promo__item{
      padding: 0 50px 0;
      margin-bottom: 50px;
    }

    .info__name{ font-size: 26px; }
    .info__price{ font-size: 20px; }
    .info__size{ font-size: 20px; }
    .info__more{ font-size: 14px; }

    .aboutUs__list{
      font-size: 16px;
    }

    .newsMain{
      grid-template-columns: repeat(4, 25%);
          -ms-grid-columns: (25%)[4];
    }
    .bNews__wrapContent{
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      height: 100%;
    }
    .bNews__content {
      text-align: left;
      margin-left: 20px;
    }
    .bNews__content-offer { text-align: center; }

    .buildDetail__description{
      padding: 20px 20px 10px;
    }
  /*--- common ---*/

  /* description */
    .description__col:nth-child(2){
      padding: 0;
    }
  /*--- description ---*/

  /* adaptation */
    .adaptation{
      max-width: 1200px;
      margin: 30px auto 0;
    }
  /*--- adaptation ---*/

  /* contacts */
    .contacts{
      max-width: 1200px;
      width: 100%;
      margin: 30px auto;
      padding: 0 10px;
    }
  /*--- contacts ---*/
}

@media only screen and (min-width: 1375px){
  /* common */
    .header{
      max-width: 1405px;
    }

    .header__middle {
      max-width: 1405px;
    }

    .breadcrumb{
      max-width: 1405px;
    }

    .info__name{ font-size: 30px; }
    .info__price{ font-size: 24px; }
    .info__size{ font-size: 24px; }
    .info__more{ font-size: 16px; }

    .bNews__category-offer{
      display: inline-block;
      padding-right: 40px;
      margin-right: 40px;
      position: relative;
    }
    .bNews__category-offer:after {
      content: '';
      position: absolute;
      top: 50%;
      right: 0;
      width: 1px;
      height: 170px;
      background-color: #ba9d64;
      opacity: .14;
      margin-top: -85px;
    }
    .bNews__text{ font-size: 19px; }
  /*--- common ---*/

  /* description */
    .buildDetail__description{
      padding: 20px 50px 10px;
    }
  /*--- description ---*/

  /* review */
    .review{ font-size: 18px; line-height: 2; }
    .review .review__content{
      padding: 0 50px;
    }
    .review__video{
     // margin: 0 50px;
    }
    .review-noimg .review__text .review__column {
      padding: 0 50px;
    }
  /*--- review ---*/
}

@media only screen and (min-width: 1390px){
  .mainNav__link{
    padding: 10px 20px 20px;
  }
  .mainNav__link-footer{
    padding: 10px 10px 20px;
  }
  .mainNav__link-large:first-child{
    padding-left: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: auto;
  }
  .mainNav__link-large:last-child{
    padding-right: 20px;
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
    width: auto;
  }
}

@media only screen and (min-width: 1530px){
  .aboutUs__list{
    padding: 70px 0;
  }
  .aboutUs__item{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .aboutUs__desc{
    margin-left: 15px;
  }

  /* description */
    .description__col .buildDetail__btn{
      margin: 30px 0 0 auto;
    }
  /*--- description ---*/

}

@media only screen and (min-width: 1700px){
  /* buildDetail */
    .buildDetail__gallery{
      width: 65%;
    }
    .buildDetail__description{
      width: 35%;
    }
  /*--- buildDetail ---*/
}

@media only screen and (min-width: 1920px){
  /* buildDetail */
    .buildDetail__gallery{
      width: 69%;
    }
    .buildDetail__description{
      width: 31%;
    }
  /*--- buildDetail ---*/
}

@media only screen and (max-width: 767px) {
  .popup .btn {
    width: 100%;
    min-width: 0;
  }
  .popup h4 {
    font-size: 18px;
  }
  .popup p {
    font-size: 15px;
  }
  .popup p span {
    display: block;
  }
  .popup {
    width: 95%;
  }
  .popup-close {
    top: 14px;
    right: 14px;
  }
  .popup-form-caption {
    position: static;
    text-align: center;
  }
  .input-block {
    border: none;
    margin: 16px 0;
  }
  .input-block.selected {
    border: none;
  }
  .input-block span {
    position: static;
    display: block;
    margin-bottom: 8px;
    height: auto;
    line-height: 1;
    width: 100%;
  }
  .input-block span:after {
    display: none;
  }
  .input-block {
    border: none;
  }
  .input-block input, .input-block textarea {
    border: 1px solid #ba9d64;
    border-radius: 5px;
    padding-left: 16px;
    font-size: 14px;
    display: block;
  }
  .input-block textarea {
    padding-top: 8px;
  }
}

.header__logo.header__logo-small{
    margin-top: 4px;
}

.indi-promo-img{
    text-align: center;
    margin-top: 30px;
}

.review__info table{
    width: 100%;
}

.review__text{
    margin-top: 20px;
}

.review.review-video{
    background-color: black;
    color: white;
    width: 100%;
}