/*head*/
.head {
  box-shadow: 0 0 8px 0 rgb(61 61 61 / 19%);
  background-color: #fff;
}
.head_top {
  padding: 14px 0;
  border-bottom: 1px solid #e8e8e8;
}
.head_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.head_top .head_wrap {
  padding-right: 28%;
}
.head_menu-btn {
  display: none;
}
.head_middle,
.head_left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.head_logo {
  display: block;
  height: 45px;
  margin-right: 16px;
}
.head_logo img {
  max-height: 100%;
}
.head_city {
  display: flex;
  align-items: center;
  height: 24px;
  border-radius: 12px;
  background-color: #f2f2f2;
  font-size: 12px;
  padding: 0 12px 0 6px;
  color: #666;
}
.head_city:hover {
  background-color: #d9d9d9;
}
.head_city svg {
  fill: #666;
  margin-right: 5px;
}

.head_city span {
  font-size: 14px;
  line-height: 16px;
}

.head_order {
  display: flex;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(
    225deg,
    var(--color-dark),
    var(--color-main),
    var(--color-light)
  );
  cursor: pointer;
  border: 3px solid #fff;
  outline: 1px solid;
  outline-color: var(--color-main);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.8;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
}

.head_order svg {
  width: 13px;
  fill: #fff;
  margin-right: 5px;
}

.head_order:hover,
.head_order:active,
.head_order:focus {
  box-shadow: inset 0 0 20px #f2f4f6;
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  color: #fff;
  opacity: 1;
  background: linear-gradient(
    225deg,
    var(--color-dark),
    var(--color-main),
    var(--color-light)
  );
}

.head_tel {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
}
.head_tel svg {
  fill: var(--color-main);
  margin-right: 6px;
}
.head_middle > *:not(:last-child) {
  margin-right: 16px;
}
.head_bottom {
  position: relative;
}
.head_outline {
  display: none;
}

/*.head-nav{padding-left: 24px;}*/
.head-nav > ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.head-nav > ul > li {
  margin-right: 32px;
}
.head-nav > ul > li > a {
  display: block;
  border-top: 2px solid transparent;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  font-size: 16px;
  font-weight: 500;
  line-height: 48px;
  color: #777;
}
.head-nav > ul > li > a:hover,
.head-nav > ul > li > a.active {
  border-bottom-color: var(--color-main);
}
.head_bottom-header,
.head_soc {
  display: none;
}
.head_right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 72px;
  right: 0;
  z-index: 3;
}
.head_right .head_tel {
  display: none;
}
.head_right > * {
  margin-left: 16px;
}
.head_fav {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: #000;
  font-weight: 500;
}
.head_fav svg {
  fill: #ff003f;
  margin-right: 6px;
}

.head_enter {
  display: flex;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(
    225deg,
    var(--color-dark),
    var(--color-main),
    var(--color-light)
  );
  cursor: pointer;
  border: 3px solid #fff;
  outline: 1px solid;
  outline-color: var(--color-main);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.8;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
}

.head_enter svg {
  width: 13px;
  fill: #fff;
  margin-right: 5px;
}

.head_enter:hover,
.head_enter:active,
.head_enter:focus {
  box-shadow: inset 0 0 20px #f2f4f6;
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  color: #fff;
  opacity: 1;
  background: linear-gradient(
    225deg,
    var(--color-dark),
    var(--color-main),
    var(--color-light)
  );
}

.head_add {
  display: flex;
  text-decoration: none;
  position: relative;
  font-size: 14px;
  line-height: 16px;
  padding: 8px 16px;
  color: #fff;
  background: linear-gradient(
    225deg,
    var(--color-dark),
    var(--color-main),
    var(--color-light)
  );
  cursor: pointer;
  border: 3px solid #fff;
  outline: 1px solid;
  outline-color: var(--color-main);
  outline-offset: 0px;
  text-shadow: none;
  transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.8;
  border-radius: 25px;
  align-items: center;
  justify-content: center;
}

.head_add svg {
  width: 13px;
  fill: #fff;
  margin-right: 5px;
}

.head_add:hover,
.head_add:active,
.head_add:focus {
  box-shadow: inset 0 0 20px #f2f4f6;
  outline-color: rgba(255, 255, 255, 0);
  outline-offset: 15px;
  color: #fff;
  opacity: 1;
  background: linear-gradient(
    225deg,
    var(--color-dark),
    var(--color-main),
    var(--color-light)
  );
}

.head_address,
.head_email {
  display: none;
}
.head-nav-drop {
  display: none;
}
.head-nav > ul > li > a.open + .head-nav-drop {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: calc(100vh - 107px);
  z-index: 200;
}
.head-nav-drop_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
.head-nav-drop_main {
  position: relative;
  overflow-y: auto;
  width: 1420px;
  max-width: calc(100% - 10px);
  max-height: calc(100% - 10px);
  margin: 5px auto;
  background-image: url(data:image/png;base64,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);
  background-color: #fff;
  border-radius: 6px;
  z-index: 10;
  padding: 32px;
}
.head-nav-drop_close {
  position: absolute;
  z-index: 4;
  top: 13px;
  right: 13px;
  width: 16px;
  height: 16px;
  background: #fff;
}
.head-nav-drop_close::before,
.head-nav-drop_close::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background-color: #a8abac;
  position: absolute;
  top: 50%;
  left: 50%;
}
.head-nav-drop_close:hover::before,
.head-nav-drop_close:hover::after {
  background-color: var(--color-main);
}
.head-nav-drop_close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.head-nav-drop_close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.head-nav-drop_close svg {
  display: none;
  fill: #a8abac;
}
.head-nav-drop_title {
  margin-bottom: 32px;
  font-size: 24px;
  font-weight: 500;
  color: #191412;
}
.head-nav-drop_title span {
  color: var(--color-main);
}
.head-nav-drop_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  align-items: stretch;
}

.head ul li {
  list-style: none;
}
.head-nav-drop_item {
  display: block;
  height: 100%;
  border-radius: 10px;
  border: 2px solid #d5d6d6;
  padding: 18px;
  font-size: 14px;
  background: #f2f4f6;
}
.head-nav-drop_item img {
  width: 100%;
  margin-bottom: 10px;
  border-radius: 10px;
  border: 2px solid transparent;
  outline: 2px solid;
  outline-color: #d5d6d6;
  transition: outline-color 0.3s ease;
  transition: border-color 0.3s ease;
  max-height: 200px;
  padding: 6px;
  background: #fff;
}
.head-nav-drop_blog b,
.head-nav-drop_item b {
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
  color: #191412;
  font-size: 16px;
  text-transform: uppercase;
}
.head-nav-drop_item span {
  display: block;
  color: #959699;
}
a.head-nav-drop_item:hover {
  border-color: #333;
}

a.head-nav-drop_item:hover img {
  outline-color: #333;
}
.head-nav-drop_more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #d5d6d6;
  padding: 30px 24px 24px;
  text-align: center;
}
.head-nav-drop_more b {
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 24px;
  color: #191412;
}
.head-nav-drop_mortgage a,
.head-nav-drop_more a {
  display: block;
  width: 100%;
  line-height: 32px;
  text-align: center;
  color: #fff;
  background-color: #161b20;
  border-radius: 6px;
  font-size: 15px;
  font-weight: bold;
}
.head-nav-drop_mortgage a:hover,
.head-nav-drop_more a:hover {
  background-color: #000;
}
.head-nav-drop_services-wrap,
.head-nav-drop_new-buildings-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 18px;
  grid-row-gap: 18px;
  align-items: stretch;
}
.head-nav-drop_new-buildings-wrap li:nth-child(2),
.head-nav-drop_new-buildings-wrap li:nth-child(3) {
  grid-row: span 2;
}
.head-nav-drop_blog {
  height: 100%;
  border-radius: 6px;
  border: 1px solid #d5d6d6;
  padding: 24px;
}
.head-nav-drop_blog img {
  width: 100%;
  margin-bottom: 24px;
}
.head-nav-drop_blog li {
  margin-top: 12px;
  font-size: 14px;
}
.head-nav-drop_blog li a {
  color: #959699;
}
.head-nav-drop_blog li a:hover {
  color: #191412;
}
.head-nav-drop_mortgage {
  height: 100%;
  border-radius: 6px;
  border: 1px solid #d5d6d6;
  padding: 24px;
  position: relative;
}
.head-nav-drop_mortgage img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 70%;
}
.head-nav-drop_mortgage b {
  display: block;
  margin-bottom: 12px;
  font-weight: 500;
  color: #191412;
}
.head-nav-drop_mortgage span {
  display: block;
  color: #959699;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 16px;
  max-width: 240px;
}
.head-nav-drop_mortgage a {
  position: relative;
  z-index: 3;
  display: inline-block;
  padding: 0 16px;
  line-height: 40px;
  width: auto;
}
.head-nav-drop_service {
  display: block;
  height: 100%;
  border-radius: 6px;
  border: 1px solid #d5d6d6;
  padding: 16px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.head-nav-drop_service img {
  flex-shrink: 0;
  margin-right: 12px;
  max-width: 80px;
  border-radius: 50%;
}
.head-nav-drop_service b {
  font-weight: 500;
  color: #191412;
  flex-grow: 1;
}
a.head-nav-drop_service:hover {
  border-color: #e82e45;
}
.head-nav-drop_service span {
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 24px;
  line-height: 24px;
  border-radius: 12px;
  padding: 0 12px;
  font-size: 12px;
  background-color: #ccf0e3;
  color: #00654c;
  font-weight: 500;
}
.head-nav-drop_services-wrap li:first-child {
  grid-column: span 2;
}
.head-nav-drop_group {
  flex-grow: 1;
}
.head-nav-drop_group ul {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.head-nav-drop_group ul li:not(:last-child) {
  margin-right: 16px;
}
.head-nav-drop_group ul li a {
  color: #959699;
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
  white-space: nowrap;
}
.head-nav-drop_group ul li a:hover {
  text-decoration: none;
  color: #e82e45;
}

@media only screen and (max-width: 900px) {
  .head_top {
    padding: 6px 0;
  }
  .head_wrap {
    display: block;
  }
  .head_top .head_wrap {
    padding-right: 0;
    position: relative;
  }
  .head_top .head_wrap::before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    /*left: -10px;
    right: -10px;
    height: 42px;
    background-color: #F1F3F4;*/
  }
  .head_middle {
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 18px 0 6px;
  }
  .head_logo {
    height: 40px;
  }
  .head_middle .head_tel {
    position: absolute;
    right: 0;
    top: -24px;
    margin: 0;
    font-weight: 500;
  }
  .head_menu-btn {
    display: flex;
    align-items: center;
  }
  .head_menu-btn-title {
    font-size: 14px;
    margin-right: 24px;
  }
  .head_menu-btn-burger {
    display: block;
    width: 24px;
    height: 24px;
    position: relative;
  }
  .head_menu-btn-burger span {
    background-color: #000;
    display: block;
    width: 24px;
    height: 2px;
    position: absolute;
    left: 0;
  }
  .head_menu-btn-burger span:nth-child(1) {
    top: 4px;
  }
  .head_menu-btn-burger span:nth-child(2) {
    top: 11px;
  }
  .head_menu-btn-burger span:nth-child(3) {
    bottom: 4px;
  }

  .head_bottom {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 900;
    width: 350px;
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    background-color: #fff;
    transform: translateX(-110%);
    transition: transform 0.25s;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-direction: column;
    overflow-y: auto;
  }
  .head_bottom.show {
    transform: translateX(0);
  }
  .head_outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    z-index: 2;
    background-color: rgba(0, 0, 0, 0.6);
  }
  .head_bottom.show + .head_outline {
    display: block;
  }
  .head_bottom-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #f1f3f4;
    min-height: 60px;
  }
  .head_bottom-title {
    padding-left: 14px;
    font-size: 16px;
    font-weight: bold;
    color: #000;
  }
  .head_bottom-close {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    color: #fff;
    background: linear-gradient(
      225deg,
      var(--color-dark),
      var(--color-main),
      var(--color-light)
    );
    align-items: center;
    justify-content: center;
    margin-right: 5px;
    cursor: pointer;
    text-shadow: none;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid #fff;
    outline: 2px solid;
    outline-color: #e5e5e5;
    outline-offset: 0px;
    overflow: hidden;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgb(61 61 61 / 30%);
    text-decoration: none;
  }
  .head_bottom-close::before,
  .head_bottom-close::after {
    content: '';
    display: block;
    width: 26px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -1px 0 0 -13px;
  }
  .head_bottom-close::before {
    transform: rotate(-45deg);
  }
  .head_bottom-close::after {
    transform: rotate(45deg);
  }
  .head_bottom .container {
    padding: 0 14px;
    flex-grow: 1;
    height: 100%;
    width: 100%;
  }
  .head_bottom .head_wrap {
    position: static;
    height: 100%;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
  }

  .head-nav {
    padding-left: 0;
    /*height: 50%;*/
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .head-nav > ul {
    display: block;
  }
  .head-nav > ul > li {
    margin-right: 0;
  }
  .head-nav > ul > li > a {
    display: flex;
    border-top: none;
    border-bottom: 1px solid #ededed;
    font-size: 15px;
    font-weight: 400;
    color: #626563;
    align-items: center;
  }
  .head-nav > ul > li > a.active {
    border-bottom-color: #ededed;
  }
  .head-nav > ul > li > a::after {
    content: '';
    display: inline-block;
    background: url(../../img/static/header/angle-down.svg) center center
      no-repeat;
    width: 9px;
    height: 12px;
    transform: rotate(-90deg);
    margin-left: 10px;
  }

  .head_soc {
    display: flex;
    flex-direction: column;
    margin: 0;
  }
  .head_soc-title {
    color: #333;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px;
  }
  .head_soc ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .head_soc ul li:not(:last-child) {
    margin-right: 8px;
  }
  .head_soc ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    background-color: #f2f4f6;
  }

  .head_right {
    flex-wrap: wrap;
    position: static;
    padding: 20px;
    border: 1px solid #e5e5e5;
    margin-top: 10px;
    justify-content: flex-start;
    flex-direction: column;
    gap: 10px;
  }
  .head_right .head_tel {
    display: flex;
    margin: 0 0 14px;
    width: 100%;
  }
  .head_fav {
    font-size: 16px;
    margin-left: 0;
  }
  .head_enter:hover {
    background-color: #cc0032;
  }
  .head_enter svg {
    display: block;
  }
  .head_add {
    margin: 0;
  }
  .head_add:hover {
    background-color: #0083cc;
  }
  .head_add svg {
    fill: #fff;
    margin-right: 6px;
  }
  .head_address,
  .head_email {
    display: block;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    margin: 10px 0;
    align-items: flex-start;
    background: #fff;
    flex-direction: column;
    width: 100%;
  }

  .head_address p,
  .head_email p {
    margin-bottom: 6px;
    font-weight: 600;
  }
  .head_email a,
  .head_address span {
    color: #626563;
    font-weight: 400;
  }

  .head_right button {
    margin: 6px;
  }

  .head-nav-drop {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 350px;
    height: 100%;
    background-color: transparent;
    transform: translateX(-110%);
    transition: transform 0.25s;
  }
  .head-nav > ul > li > a.open + .head-nav-drop {
    top: 0;
    left: 0;
    width: 350px;
    transform: translateX(0);
    height: 100%;
  }
  .head-nav-drop_overlay {
    display: none;
  }
  .head-nav-drop_main {
    position: relative;
    height: 100%;
    overflow: hidden;
    width: 100%;
    max-width: unset;
    max-height: unset;
    margin: 0;
    border-radius: 0;
    padding: 0;
    background-color: transparent;
  }
  .head-nav-drop_header {
    padding-left: 80px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 60px;
  }
  .head-nav-drop_close {
    position: relative;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: linear-gradient(
      225deg,
      var(--color-dark),
      var(--color-main),
      var(--color-light)
    );
    cursor: pointer;
    text-shadow: none;
    transition: all 1.5s cubic-bezier(0.19, 1, 0.22, 1);
    border: 2px solid #fff;
    outline: 2px solid;
    outline-color: #e5e5e5;
    outline-offset: 0px;
    overflow: hidden;
    z-index: 999;
    border-radius: 8px;
    box-shadow: 0 0 8px 0 rgb(61 61 61 / 30%);
    text-decoration: none;
  }

  .head-nav-drop_close:hover,
  .head-nav-drop_close:active,
  .head-nav-drop_close:focus {
    box-shadow: inset 0 0 20px #f2f4f6;
    outline-color: rgba(255, 255, 255, 0);
    outline-offset: 15px;
    color: #fff;
    opacity: 1;
    background: linear-gradient(
      225deg,
      var(--color-dark),
      var(--color-main),
      var(--color-light)
    );
  }

  .head-nav-drop_close::before,
  .head-nav-drop_close::after {
    display: none;
  }
  .head-nav-drop_close svg {
    display: block;
    fill: #fff;
  }
  .head-nav-drop_title {
    margin-bottom: 0;
    font-size: 14px;
    color: #191412;
    padding-left: 12px;
  }
  .head-nav-drop_title span {
    display: none;
  }
  .head-nav-drop_services-wrap,
  .head-nav-drop_wrap,
  .head-nav-drop_new-buildings-wrap {
    display: block;
    height: calc(100% - 42px);
    overflow-y: auto;
    padding: 24px 12px;
    background-color: #fff;
  }
  .head-nav-drop_services-wrap > *:not(:last-child),
  .head-nav-drop_wrap > *:not(:last-child),
  .head-nav-drop_new-buildings-wrap > *:not(:last-child) {
    margin-bottom: 10px;
  }

  .head-nav-drop_service {
    display: block;
    padding: 24px;
  }
  .head-nav-drop_service img {
    width: 49px;
    margin: 0 0 16px;
  }
  .head-nav-drop_service b {
    display: block;
  }
  .head-nav-drop_service span {
    margin: 12px 0 0;
    display: inline-block;
  }
  .head-nav-drop_group ul {
    display: block;
  }
  .head-nav-drop_group ul li:not(:last-child) {
    margin: 0 0 8px;
  }
}
@media only screen and (max-width: 899px) {
  .head_city span {
    display: none;
  }
  .head_city svg {
    margin-right: 0;
  }
  .head_city {
    padding: 0 6px;
  }
}


/*
.head::before {
    display: block;
    content: '';
    position: absolute;
    background-color: white;
    width: 100%;
    height: 100%;
    opacity: .8;
    z-index: 0;
    max-height: 126px;
}

.head {
  background-image: url(https://krd.verend.ru/theme/images/ny-bg.jpg);
    background-repeat-x: repeat;
    background-repeat-y: no-repeat;
    background-size: contain;
    background-position: bottom;
}

*/
