:root {
  /* dark theme*/
  --dark-text: #fff;
  --dark-theme: #002b45;
  --dark-border: rgba(255, 255, 255, 0.1);
  --dark-text-filter: #fff;
  --dark-text-card-news: #333;
  --dark-filter: 0;
  --dark-filter-reverse: 1;
  --dark-bg-select: #002b45;
  --dark-bg-card: #fff;
  --dark-bg-card-date: #f7f7f7;
  --dark-bg-main-header: rgba(5, 2, 2, 0.14);
  --dark-border-menu: rgba(255, 255, 255, 0.07);
  --dark-border-card: #f7f7f7;
  --dark-border-card-news: #f7f7f7;
  --dark-border-faq: #fff;
  --dark-bg-about: #00304e;
  --dark-border-about: #00304e;
  --dark-bg-more: #003e64;
  --dark-bg-tag: #003e64;
  --dark-feat-1: url(../img/icon-feat-1.svg);
  --dark-feat-2: url(../img/icon-feat-2.svg);
  --dark-feat-3: url(../img/icon-feat-3.svg);
  --dark-feat-4: url(../img/icon-feat-4.svg);

  /* light theme*/
  --light-text: #333333;
  --light-theme: #fff;
  --light-border: #a99478;
  --light-text-filter: #b9b9b9;
  --light-text-card-news: #fff;
  --light-filter: 0.87;
  --light-filter-reverse: 0;
  --light-bg-select: #f7f7f7;
  --light-bg-card: #f7f7f7;
  --light-bg-card-date: #002b45;
  --light-bg-main-header: #f7f7f7;
  --light-border-menu: rgba(0, 0, 0, 0.07);
  --light-border-card: rgba(0, 0, 0, 0.05);
  --light-border-card-news: transparent;
  --light-border-faq: rgba(51, 51, 51, 0.15);
  --light-bg-about: #fff;
  --light-border-about: rgba(51, 51, 51, 0.15);
  --light-bg-more: #a99478;
  --light-bg-tag: #a99478;
  --light-feat-1: url(../img/icon-feat-1-light.svg);
  --light-feat-2: url(../img/icon-feat-2-light.svg);
  --light-feat-3: url(../img/icon-feat-3-light.svg);
  --light-feat-4: url(../img/icon-feat-4-light.svg);
}

/* Switched mode */

.light {
  --text-color: var(--light-text);
  --theme-color: var(--light-theme);
  --border-color: var(--light-border);
  --text-filter-color: var(--light-text-filter);
  --text-card-news-color: var(--light-text-card-news);
  --filter-k: var(--light-filter);
  --filter-k-reverse: var(--light-filter-reverse);
  --bg-select-color: var(--light-bg-select);
  --bg-card-color: var(--light-bg-card);
  --bg-card-date-color: var(--light-bg-card-date);
  --bg-main-header-color: var(--light-bg-main-header);
  --border-menu-color: var(--light-border-menu);
  --border-card-color: var(--light-border-card);
  --border-card-news-color: var(--light-border-card-news);
  --border-faq: var(--light-border-faq);
  --bg-about: var(--light-bg-about);
  --border-about: var(--light-border-about);
  --bg-more: var(--light-bg-more);
  --bg-tag: var(--light-bg-tag);
  --feat-1: var(--light-feat-1);
  --feat-2: var(--light-feat-2);
  --feat-3: var(--light-feat-3);
  --feat-4: var(--light-feat-4);
}
.dark {
  --text-color: var(--dark-text);
  --theme-color: var(--dark-theme);
  --border-color: var(--dark-border);
  --text-filter-color: var(--dark-text-filter);
  --text-card-news-color: var(--dark-text-card-news);
  --filter-k: var(--dark-filter);
  --filter-k-reverse: var(--dark-filter-reverse);
  --bg-select-color: var(--dark-bg-select);
  --bg-card-color: var(--dark-bg-card);
  --bg-card-date-color: var(--dark-bg-card-date);
  --bg-main-header-color: var(--dark-bg-main-header);
  --border-menu-color: var(--dark-border-menu);
  --border-card-color: var(--dark-border-card);
  --border-card-news-color: var(--dark-border-card-news);
  --border-faq: var(--dark-border-faq);
  --bg-about: var(--dark-bg-about);
  --border-about: var(--dark-border-about);
  --bg-more: var(--dark-bg-more);
  --bg-tag: var(--dark-bg-tag);
  --feat-1: var(--dark-feat-1);
  --feat-2: var(--dark-feat-2);
  --feat-3: var(--dark-feat-3);
  --feat-4: var(--dark-feat-4);
}

* {
  padding: 0;
  margin: 0;
  border: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:focus,
:active {
  outline: none;
}

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

footer,
aside {
  display: block;
  background-color: var(--theme-color);
}

nav {
  background-color: var(--theme-color);
}

header {
  display: block;
  background-color: var(--bg-select-color);
}

html,
body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: inherit;
}

.field-input {
  position: absolute;
  left: -9999px;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

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

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

ul:not([class]) {
  margin-bottom: 20px;
}

ul:not([class]) li {
  list-style: square inside;
}

img {
  max-width: 100%;
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Light"),
    local("OpenSans-Light"),
    url("../fonts/opensanslight.woff2") format("woff2"),
    url("../fonts/opensanslight.woff") format("woff"),
    url("../fonts/opensanslight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Light Italic"),
    local("OpenSansLight-Italic"),
    url("../fonts/opensanslightitalic.woff2") format("woff2"),
    url("../fonts/opensanslightitalic.woff") format("woff"),
    url("../fonts/opensanslightitalic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans"),
    local("OpenSans"),
    url("../fonts/opensans.woff2") format("woff2"),
    url("../fonts/opensans.woff") format("woff"),
    url("../fonts/opensans.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Italic"),
    local("OpenSans-Italic"),
    url("../fonts/opensansitalic.woff2") format("woff2"),
    url("../fonts/opensansitalic.woff") format("woff"),
    url("../fonts/opensansitalic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Semibold"),
    local("OpenSans-Semibold"),
    url("../fonts/opensanssemibold.woff2") format("woff2"),
    url("../fonts/opensanssemibold.woff") format("woff"),
    url("../fonts/opensanssemibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Semibold Italic"),
    local("OpenSans-SemiboldItalic"),
    url("../fonts/opensanssemibolditalic.woff2") format("woff2"),
    url("../fonts/opensanssemibolditalic.woff") format("woff"),
    url("../fonts/opensanssemibolditalic.ttf") format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Bold"),
    local("OpenSans-Bold"),
    url("../fonts/opensansbold.woff2") format("woff2"),
    url("../fonts/opensansbold.woff") format("woff"),
    url("../fonts/opensansbold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Bold Italic"),
    local("OpenSans-BoldItalic"),
    url("../fonts/opensansbolditalic.woff2") format("woff2"),
    url("../fonts/opensansbolditalic.woff") format("woff"),
    url("../fonts/opensansbolditalic.ttf") format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Extrabold"),
    local("OpenSans-Extrabold"),
    url("../fonts/opensansextrabold.woff2") format("woff2"),
    url("../fonts/opensansextrabold.woff") format("woff"),
    url("../fonts/opensansextrabold.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src:
    local("Open Sans Extrabold Italic"),
    local("OpenSans-ExtraboldItalic"),
    url("../fonts/opensansextrabolditalic.woff2") format("woff2"),
    url("../fonts/opensansextrabolditalic.woff") format("woff"),
    url("../fonts/opensansextrabolditalic.ttf") format("truetype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

body {
  font-family: "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
  background: var(--theme-color);
  position: relative;
}

body.lock {
  overflow: hidden;
}

html.lock {
  overflow: hidden;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.container {
  max-width: 1395px;
  margin: 0 auto;
  padding: 0 15px;
}

.marquiz__button,
.main-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  padding: 15px 15px 16px 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #fff;
  background: #a99478;
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}

.main-btn.--white {
  background: #ffffff;
  -webkit-box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 25px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
}

.marquiz__button {
  font-weight: 600 !important;
  font-size: 14px !important;
}

@media (max-width: 768px) {
  .main-btn {
    padding: 10px 15px 11px 15px;
    font-size: 12px;
  }
}

.breadcrumbs {
  position: relative;
  padding: 20px 0 9px 0;
  z-index: 1;
}

.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.breadcrumbs__item {
  position: relative;
  margin-right: 22px;
}

.breadcrumbs__item::before {
  content: "";
  position: absolute;
  top: 12px;
  right: -12px;
  width: 2px;
  height: 2px;
  background: var(--text-color);
}

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

.breadcrumbs__item:last-child::before {
  content: none;
}

.breadcrumbs__item a {
  font-size: 14px;
  line-height: 19px;
  color: #a99478;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.breadcrumbs__item a:hover {
  border-color: #a99478;
}

.breadcrumbs__item span {
  font-size: 14px;
  line-height: 19px;
  color: var(--text-color);
  border-bottom: 1px solid transparent;
}

.breadcrumbs-main {
  background: #19232f;
}

.breadcrumbs-main .breadcrumbs {
  padding-bottom: 80px;
}

@media (max-width: 1170px) {
  .breadcrumbs {
    padding: 9px 0 9px 0;
  }

  .breadcrumbs-main .breadcrumbs {
    padding-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .breadcrumbs__item a {
    font-size: 12px;
  }

  .breadcrumbs__item span {
    font-size: 12px;
  }
}

.title-h1,
h1 {
  font-size: 42px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--text-color);
}

.title-h2,
h2 {
  font-size: 38px;
  line-height: 130%;
  text-transform: uppercase;
  color: var(--text-color);
}

.title-h2 span,
h2 span {
  color: #a99478;
}

.title-h2.--black,
h2.--black {
  color: #a99478;
}

.title-h2.--black span,
h2.--black span {
  color: #222222;
}

.title-h3,
h3 {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--text-color);
}

@media (max-width: 1395px) {
  .title-h1,
  h1 {
    font-size: calc(22px + 20 * ((100vw - 320px) / 960));
  }

  .title-h2,
  h2 {
    font-size: calc(18px + 20 * ((100vw - 320px) / 960));
  }

  .title-h3,
  h3 {
    font-size: calc(16px + 6 * ((100vw - 320px) / 960));
    line-height: 26px;
  }
}

.pagination {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pagination__all {
  font-size: 14px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.5);
}

.pagination__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 25px;
}

.pagination__item {
  margin-right: 10px;
}

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

.pagination__item a,
.pagination__item span {
  position: relative;
  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;
  padding: 10px 20px;
  min-width: 50px;
  min-height: 50px;
  max-height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-size: 14px;
  line-height: 17px;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination__item.current a {
  background: #a99478;
  border-color: #a99478;
  color: #fff;
}

.pagination__item.--prev a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 11px;
  background: url("../img/icon-arrow-pagination.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination__item.--prev a:hover {
  background: #a99478;
  border-color: #a99478;
  filter: invert(0);
}

.pagination__item.--number a:hover {
  background: #a99478;
  border-color: #a99478;
  color: #fff;
}

.pagination__item.--dots span {
  min-width: 80px;
}

.pagination__item.--next a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  width: 7px;
  height: 11px;
  background: url("../img/icon-arrow-pagination.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.pagination__item.--next a:hover {
  background: #a99478;
  border-color: #a99478;
  filter: invert(0);
}

@media (max-width: 768px) {
  .pagination {
    padding: 20px 0;
  }

  .pagination__item.--dots {
    display: none;
  }

  .pagination__item a,
  .pagination__item span {
    padding: 5px;
    min-width: 30px;
    min-height: 30px;
    max-height: 30px;
    font-size: 12px;
  }

  .pagination__all {
    font-size: 12px;
  }
}

@media (max-width: 500px) {
  .pagination {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .pagination__list {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.slider-arrow-prev {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-arrow-prev::after {
  content: none;
}

.slider-arrow-prev::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 7px;
  height: 11px;
  background: url("../img/icon-arrow-pagination.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-arrow-prev:hover {
  background: #a99478;
}

.slider-arrow-next {
  position: relative;
  top: initial;
  left: initial;
  right: initial;
  bottom: initial;
  width: 50px;
  height: 50px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  margin: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-arrow-next::after {
  content: none;
}

.slider-arrow-next::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  -ms-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
  width: 7px;
  height: 11px;
  background: url("../img/icon-arrow-pagination.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.slider-arrow-next:hover {
  background: #a99478;
}

.slider-arrow-next:hover::before {
  filter: invert(0);
}

@media (max-width: 768px) {
  .slider-arrow-prev {
    width: 30px;
    height: 30px;
  }

  .slider-arrow-next {
    width: 30px;
    height: 30px;
  }
}

ul.list-dots li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 37px;
}

ul.list-dots li > span {
  position: absolute;
  top: 0;
  left: 0;
  width: 22px;
  height: 22px;
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 100%;
}

ul.list-dots li > span.default {
  border-radius: 50%;
  background-position: 100% 30%;
  background-color: #a99478;
  background-image: url("../img/icon-arrow-list-dots.svg");
  background-size: auto;
}

/*
ul.list-dots li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 22px;
	height: 22px;
	border-radius: 50%;
	background: url("../img/icon-arrow-list-dots.svg") no-repeat 100% 30%, #a99478;
}
*/
.popup-general {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 15px 50px;
  z-index: 1000;
  overflow: auto;
  max-width: 1150px;
}

.popup-general__body {
  position: relative;
  margin: 0 auto;
  background: #ffffff;
}

.popup-general__wrap iframe {
  width: 100%;
  height: 100%;
  min-height: auto;
}

.popup-general__row {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
}

.popup-general__column:last-child {
  padding: 45px 50px;
  -ms-flex-item-align: center;
  align-self: center;
}

.popup-general__image {
  width: 100%;
  height: 100%;
}

.popup-general__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-height: 650px;
}

.popup-general__title {
  margin-bottom: 30px;
  color: #000;
}

.popup-general__close {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: -30px;
  width: 20px;
  height: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.popup-general__close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 2px;
}

.popup-general__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 100%;
  height: 1px;
  background: #fff;
  border-radius: 2px;
}

.popup-general__close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.popup-general.modal {
  display: none;
}

.from-popup__list {
  margin-bottom: 30px;
}

.from-popup__list p {
  font-size: 14px;
  line-height: 22px;
  color: rgba(51, 51, 51, 0.75);
  margin-bottom: 20px;
}

.from-popup__wrap-input:not(:last-child) {
  margin-bottom: 15px;
}

.from-popup__button {
  margin-bottom: 15px;
}

.from-popup__subtext {
  font-size: 14px;
  line-height: 22px;
  color: rgba(51, 51, 51, 0.75);
}

.from-popup__subtext a {
  color: #a99478;
  text-decoration: underline;
}

.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 99;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (max-width: 900px) {
  .popup-general__column:last-child {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .popup-general {
    padding: 15px;
  }

  .popup-general__row {
    grid-template-columns: 1fr;
  }

  .popup-general__title {
    padding-right: 30px;
    margin-bottom: 20px;
  }

  .popup-general__column:first-child {
    display: none;
  }

  .popup-general__column:last-child {
    padding: 20px;
  }

  .popup-general__close {
    right: 10px;
    top: 10px;
  }

  .popup-general__close::before {
    background: #000;
  }

  .popup-general__close::after {
    background: #000;
  }

  .from-popup__list {
    margin-bottom: 20px;
  }
}

.header__row {
  display: grid;
  grid-template-areas: "logo top" "middle middle" "bottom bottom";
  /* grid-template-columns: 314px 1fr;
	grid-column-gap: 45px; */
}

.header__logo {
  grid-area: logo;
  padding: 10px 20px 20px 0;
  filter: invert(var(--filter-k));
}

.header__top {
  grid-area: top;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 0;
  position: relative;
}

.header__nav {
  margin-right: 10px;
}

.header__button {
  margin-right: 10px;
  max-width: 246px;
}

.header__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__fav {
  position: relative;
  margin-right: 15px;
}

.header__fav:hover svg {
  fill: var(--text-color);
}

.header__fav:hover svg path {
  stroke: var(--text-color);
}

.main-header .header__fav:hover svg {
  fill: #fff;
}

.main-header .header__fav:hover svg path {
  stroke: #fff;
}

.header__fav-value {
  position: absolute;
  right: -8px;
  top: -5px;
  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;
  border-radius: 50%;
  min-width: 23px;
  min-height: 23px;
  max-width: 23px;
  max-height: 23px;
  font-weight: 700;
  font-size: 12px;
  line-height: 16px;
  text-transform: uppercase;
  color: #ffffff;
  background: #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__fav-icon svg {
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__fav-icon svg path {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header__burger {
  display: none;
  z-index: 3;
}

.header__middle {
  grid-area: middle;
  position: relative;
}

.header__middle::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: -100vw;
  right: -100vw;
  /* background: var(--theme-color); */
  z-index: 0;
}

.header__work {
  color: var(--text-color);
}

.header__bottom {
  grid-area: bottom;
  position: relative;
}

.header__bottom::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: -100vw;
  right: -100vw;
  /* background: var(--theme-color); */
  z-index: 0;
}

.header .nav-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .nav-top__nav-item {
  margin-right: 40px;
}

.header .nav-top__nav-item:last-child {
  margin-right: 0;
}

.header .nav-top__nav-item a {
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-color);
}

.theme-switcher {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 26px;
}

.theme-switcher__item {
  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;
  min-width: 28px;
  min-height: 50px;
  max-width: 28px;
  max-height: 50px;
  border-radius: 50%;
  border: 2px solid transparent;
  font-size: 14px;
  line-height: 19px;
  text-transform: uppercase;
  color: #999999;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.theme-switcher__item:first-child {
  margin-right: 10px;
}

.theme-switcher__item.current {
  min-width: 50px;
  max-width: 50px;
  color: #333333;
  border-color: #a99478;
}

.theme-switcher__item:hover {
  color: #333333;
}

#menu .header__button {
  display: block;
  max-width: 100%;
  background: var(--bg-select-color);
  margin-right: 0;
  font-size: 16px;
}

#menu .header__button span {
  color: var(--text-color) !important;
}

.mm-panel {
  background: var(--bg-select-color);
}

.mm-btn_next:after {
  border-color: var(--text-color);
}

.mm-navbar {
  border-bottom: 1px solid var(--text-color);
}

.mm-navbar_sticky .mm-navbar__title {
  padding: 10px;
  background: var(--bg-select-color);
  color: var(--text-color) !important;
}

.mm-navbar_sticky .mm-navbar__title img {
  filter: invert(var(--filter-k));
}

.mm-listitem__text {
  color: var(--text-color) !important;
}

.mm-listitem:after {
  left: 0 !important;
  border-color: var(--border-menu-color) !important;
}

.mm-navbar__btn:not(.mm-hidden) + .mm-navbar__title {
  padding-left: 10px !important;
}

.mm-navbar__btn {
  background: var(--bg-select-color);
  border-color: var(--border-menu-color) !important;
}

.mm-listitem__btn {
  border-color: var(--border-menu-color) !important;
}

.mm-btn_prev:before {
  border-color: var(--text-color) !important;
}

.ham {
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
  transition:
    transform 400ms,
    -webkit-transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.hamRotate180.active {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.line {
  fill: none;
  -webkit-transition:
    stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  -o-transition:
    stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  transition:
    stroke-dasharray 400ms,
    stroke-dashoffset 400ms;
  stroke: var(--text-color);
  stroke-width: 3.5;
  stroke-linecap: round;
}

.ham8 .top {
  stroke-dasharray: 40 160;
}

.ham8 .middle {
  stroke-dasharray: 40 142;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition: -webkit-transform 400ms;
  transition: -webkit-transform 400ms;
  -o-transition: transform 400ms;
  transition: transform 400ms;
  transition:
    transform 400ms,
    -webkit-transform 400ms;
}

.ham8 .bottom {
  stroke-dasharray: 40 85;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-transition:
    stroke-dashoffset 400ms,
    -webkit-transform 400ms;
  transition:
    stroke-dashoffset 400ms,
    -webkit-transform 400ms;
  -o-transition:
    transform 400ms,
    stroke-dashoffset 400ms;
  transition:
    transform 400ms,
    stroke-dashoffset 400ms;
  transition:
    transform 400ms,
    stroke-dashoffset 400ms,
    -webkit-transform 400ms;
}

.ham8.active .top {
  stroke-dashoffset: -64px;
}

.ham8.active .middle {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.ham8.active .bottom {
  stroke-dashoffset: -64px;
}

.status-work {
  position: relative;
  padding-left: 25px;
  font-size: 12px;
  line-height: 130%;
  z-index: 2;
}

.status-work::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #68ff03;
  -webkit-filter: blur(1px);
  filter: blur(1px);
}

@media (max-width: 1395px) {
  .header__row {
    grid-template-columns: 220px 1fr;
    grid-column-gap: 30px;
  }

  .header__button {
    max-width: 230px;
  }

  /* .header__fav {
		margin-right: 35px;
	} */

  .header .nav-top__nav-item {
    margin-right: 20px;
  }
}

@media (max-width: 1170px) {
  /* .header__row {
		grid-template-areas: "logo top" ;
	} */

  .header__logo {
    min-height: initial;
  }

  .header__burger {
    display: block;
  }

  .header .nav-top {
    display: none;
  }

  .header__middle {
    display: none;
  }

  .header__group {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .header__group-button {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    margin-left: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: flex-end;
  }

  .header__work {
    color: var(--text-color);
    padding-left: 25px;
  }

  .header__button {
    margin-right: 5px;
    padding: 5px;
    max-width: 150px;
    font-size: 10px;
  }
}

@media (max-width: 900px) {
  .header__row {
    grid-column-gap: 15px;
  }
}

@media (max-width: 768px) {
  .header__row {
    grid-template-columns: 100px 1fr;
    grid-template-areas: "logo top" "bottom bottom";
  }

  .header__top {
    padding: 0;
  }

  .header__logo {
    margin-left: -15px;
    padding: 5px 10px;
  }

  .header__fav-icon svg {
    height: 25px;
  }

  .header__fav {
    margin-right: 20px;
  }

  .theme-switcher__item {
    font-size: 12px;
    min-height: 30px;
    max-height: 30px;
  }

  .theme-switcher__item.current {
    min-width: 30px;
    max-width: 30px;
  }
}

@media (max-width: 650px) {
  .header__work {
    padding-left: 12px;
    font-size: 0;
  }
}

@media (max-width: 500px) {
  .header__row {
    grid-column-gap: 5px;
  }

  .header__button {
    display: none;
  }

  .header__group-button {
    -webkit-box-flex: initial;
    -ms-flex-positive: initial;
    flex-grow: initial;
  }
}

.header .main-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  justify-content: space-between;
}

.header .main-nav__item {
  padding: 23px 0 25px 0;
  margin-right: 13px;
}

.header .main-nav__item:last-child {
  margin-right: 0;
}

.header .main-nav__item > .main-nav__submenu.show-menu {
  top: 100%;
  left: 0;
}

.header .main-nav .hover-item:nth-child(5) > .main-nav__submenu.show-menu {
  top: 100%;
  left: 0;
  overflow: auto;
  height: 350px;
}
.header .main-nav .hover-item:nth-child(6) > .main-nav__submenu.show-menu {
  top: 100%;
  left: 0;
  overflow: auto;
  height: 350px;
}

.header .main-nav__link {
  font-weight: 700;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-color);
}

.header .main-nav__submenu {
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
  border-radius: 0px 0px 4px 4px;
}

.header .main-nav__sublink {
  display: block;
  padding: 15px 25px;
  font-size: 18px;
  line-height: 130%;
  color: #333333;
  opacity: 0.5;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header .main-nav__sublink:hover {
  opacity: 1;
}

.header .main-nav__sublink.current {
  opacity: 1;
}

.header .main-nav .show-menu {
  position: absolute;
  top: 0;
  left: 100%;
  min-width: 327px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

.header .main-nav .hover-item {
  position: relative;
}

.header .main-nav .hover-item:hover > .show-menu {
  opacity: 1;
  visibility: visible;
}

.main-banner__image {
  display: none;
}

.main-banner__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media (max-width: 1170px) {
  .main-banner__image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .main-banner__image {
    height: 200px;
  }
}

@media (max-width: 500px) {
  .main-banner__image {
    height: 150px;
  }
}

.catalog__group-title {
  padding: 50px 0 40px 0;
  background: var(--theme-color);
}

.catalog__product {
  padding: 30px 0 50px 0;
  background: var(--theme-color);
}

.catalog__row {
  display: grid;
  grid-template-columns: calc(75.9% - 15px) calc(24.1% - 15px);
  grid-gap: 30px;
}

.catalog__list {
  margin-bottom: 20px;
}

.catalog__item {
  margin-bottom: 30px;
}

.catalog__item:last-child {
  margin-bottom: 0;
}

.catalog__advantages {
  margin-bottom: 30px;
}

@media (max-width: 1170px) {
  .catalog__group-title {
    padding: 20px 0;
  }
}

.filter-catalog__control {
  background: var(--theme-color);
}

.filter-catalog__control-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 29px 0 12px 0;
}

.filter-catalog__button {
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 130%;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 16px 28px;
  border-radius: 6px;
  background: #f7f7f7;
  color: #333333;
}

.filter-catalog__button:first-child {
  color: #a99478;
}

.filter-catalog__button:last-child {
  margin-right: 0;
}

.filter-catalog__button.active {
  color: #a99478;
}

.filter-catalog__button:hover {
  color: #a99478;
}

/* .filter-catalog__content-wrap {
	padding-right: 34px;
} */

@media (max-width: 1395px) {
  .filter-catalog__button {
    font-size: calc(14px + 6 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1170px) {
  .filter-catalog__control-wrap {
    padding: 20px 0 0px 0;
  }
}

@media (max-width: 768px) {
  .filter-catalog__button {
    margin-right: 25px;
  }
}

.filter-form {
  padding: 30px 0 61px 0;
}

.main-page .filter-form {
  padding: 0;
}

.filter-form__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 28px;
}

.filter-form__bottom {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 44px;
  grid-row-gap: 28px;
  padding-top: 40px;
  padding-bottom: 34px;
  border-bottom: 2px solid var(--border-card-color);
  border-top: 2px solid var(--border-card-color);
}

.main-page .filter-form__bottom {
  border-top: none;
}

.filter-form__bottom .filter-form__wrap-input.--five {
  grid-column: 1 / 5;
}

.filter-form__radio {
  margin-right: 25px;
}

.filter-form__radio:last-child {
  margin-right: 0;
}

.filter-form__button {
  margin-bottom: 17px;
}

.filter-form__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.filter-form__all {
  margin-right: 15px;
  position: relative;
  padding-right: 20px;
  font-size: 16px;
  line-height: 22px;
  color: #a99478;
  background: none;
}

.filter-form__all::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  height: 6px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  background: url("../img/icon-arrow-all-filter.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.filter-form__all.active::before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}

.filter-form__clear {
  font-size: 16px;
  line-height: 22px;
  color: #a99478;
  background: none;
}

.filter-form__wrap-input.js-filter-toggle {
  display: none;
}

.from-radio {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.from-radio input {
  display: none;
}

.from-radio input:checked + .from-radio__checkmark::before {
  opacity: 1;
  border-color: #a99478;
}

.from-radio__checkmark {
  margin-right: 10px;
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
}

.from-radio__checkmark::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.from-radio__text {
  font-size: 16px;
  line-height: 22px;
  color: #333333;
}

.main-page .wrap-input__name {
  /*color: var(--text-filter-color);*/
  color: #b9b9b9;
}

.main-page .from-checkbox__text {
  color: #b9b9b9;
}

.main-page .from-checkbox__checkmark {
  border: 1px solid #b9b9b9;
}

.wrap-input__name {
  margin-bottom: 11px;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

.wrap-input__name > .nice-select {
  background: #fff;
  display: inline-block;
  height: 22px;
  line-height: 22px;
  padding-left: 10px;
  top: 5px;
}

.wrap-input__name > .nice-select .current {
  height: 22px;
  line-height: 22px;
}

.wrap-input__range {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.wrap-input__range.ui-widget.ui-widget-content {
  height: 2px;
  border-radius: 2px;
  border: none;
  background: rgba(0, 0, 0, 0.15);
}

.wrap-input__range.ui-slider .ui-slider-range {
  height: 2px;
  border-radius: 2px;
  border: none;
  background: #a99478;
}

.wrap-input__range.ui-slider .ui-slider-handle {
  top: -8px;
  width: 17px;
  height: 17px;
  border: 2px solid #a99478;
  background: #fff;
  border-radius: 50%;
}

.wrap-input__range.ui-slider .ui-slider-handle .tooltip {
  position: absolute;
  top: -35px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  min-width: 26px;
  height: 24px;
  padding: 6px;
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
  text-align: center;
  background: #a99478;
  border-radius: 4px;
}

.wrap-input__range.ui-slider .ui-slider-handle .tooltip::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: 96%;
  border: 11px solid transparent;
  border-top: 6px solid #a99478;
}

.wrap-input__range-input {
  display: none;
}

.wrap-input input,
.wrap-input textarea {
  width: 100%;
  padding: 14px 10px;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
  background: #f7f7f7;
  border-radius: 4px;
  border: 1px solid #f7f7f7;
}

.wrap-input input:focus,
.wrap-input textarea:focus {
  border-color: #a99478;
  background: #fff;
}

.wrap-input input.wrap-input__price {
  font-size: 14px;
  padding: 14px 5px;
}

.wrap-input__price + .wrap-input__price {
  text-align: right;
}

.wrap-input textarea {
  resize: none;
  min-height: 100px;
}

.wrap-input.--white input,
.wrap-input.--white textarea {
  -webkit-box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 2px 50px rgba(0, 0, 0, 0.07);
  background: #ffffff;
  border-radius: 6px;
  color: rgba(51, 51, 51, 0.75);
}

.wrap-input.--range .wrap-input__name {
  margin-bottom: 54px;
}

.wrap-input.--two .wrap-input__group {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wrap-input.--two .wrap-input__group input {
  width: calc(50% - 5.5px);
}

.wrap-input.--two .wrap-input__group input:first-child {
  margin-right: 11px;
}

.wrap-input.--five .wrap-input__name {
  margin-bottom: 25px;
}

.wrap-input.--five .wrap-input__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.wrap-input.--five .wrap-input__group .wrap-input__checkbox {
  margin-right: 30px;
}

.wrap-input.--five .wrap-input__group .wrap-input__checkbox:last-child {
  margin-right: 0;
}

.from-checkbox {
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.from-checkbox input {
  display: none;
}

.from-checkbox input:checked + .from-checkbox__checkmark::before {
  opacity: 1;
  border-color: #a99478;
}

.from-checkbox__checkmark {
  position: relative;
  margin-right: 10px;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px;
  max-height: 16px;
  border: 1px solid var(--border-menu-color);
  border-radius: 2px;
}

.from-checkbox__checkmark::before {
  opacity: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 8px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url("../img/icon-arrow-checkbox.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.from-checkbox__text {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

@media (max-width: 1395px) {
  .wrap-input__name {
    font-size: calc(12px + 4 * ((100vw - 320px) / 960));
  }

  .filter-catalog__content-wrap {
    padding: 0 20px;
  }

  .filter-form__bottom {
    grid-template-columns: repeat(4, 1fr);
  }

  .filter-form__bottom .filter-form__wrap-input.--five {
    grid-column: 1 / 4;
  }
}

@media (max-width: 1170px) {
  .filter-form {
    padding: 20px 0;
  }

  .filter-form__bottom {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 30px;
  }

  .filter-form__bottom .filter-form__wrap-input.--five {
    grid-column: 1 / 3;
  }

  .wrap-input.--five .wrap-input__group .wrap-input__checkbox {
    margin-right: 12px;
  }

  .wrap-input.--five .wrap-input__group .from-checkbox__text {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .filter-form__bottom {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 22px;
  }

  .filter-form__bottom .filter-form__wrap-input.--five {
    grid-column: 1 / 2;
  }

  .filter-form__clear {
    font-size: 14px;
  }

  .filter-form__all {
    font-size: 14px;
  }

  .nice-select {
    line-height: 40px;
    height: 40px;
    font-size: 12px;
  }

  .wrap-input input,
  .wrap-input textarea {
    padding: 9px 10px;
    font-size: 12px;
  }

  .wrap-input.--five .wrap-input__name {
    margin-bottom: 10px;
  }

  .wrap-input.--five .wrap-input__group .from-checkbox__text {
    font-size: 12px;
  }

  .wrap-input__range.ui-slider .ui-slider-handle .tooltip {
    top: -28px;
    height: 19px;
    padding: 2px;
    font-size: 10px;
  }

  .from-checkbox__text {
    font-size: 14px;
  }
}

@media (max-width: 600px) {
  .filter-form__bottom {
    grid-template-columns: repeat(1, 1fr);
  }

  .filter-form__bottom .filter-form__wrap-input.--five {
    grid-column: 1 / 2;
  }
}

.sort-catalog {
  margin-bottom: 15px;
}

.sort-catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.sort-catalog__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 25px;
  margin-bottom: 15px;
}

.sort-catalog__item:last-child {
  margin-right: 0;
}

.sort-catalog__text {
  margin-right: 12px;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

.sort-catalog__select .nice-select {
  min-width: 230px;
  background: var(--theme-color);
  color: var(--text-color);
  border: 1px solid var(--border-card-color);
}

.sort-catalog__select .nice-select::after {
  -webkit-filter: invert(var(--filter-k-reverse)) brightness(100);
  filter: invert(var(--filter-k-reverse)) brightness(100);
}

.card-product {
  background: var(--theme-color);
  border: 1px solid var(--border-card-color);
  border-radius: 6px;
}

.card-product__row {
  display: grid;
  grid-gap: 35px;
  grid-template-columns: calc(41.7% - 35px) 58.3%;
}

.card-product__column {
  position: relative;
}

.card-product__slider {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.card-product__slide-wrap {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.card-product__slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-product__pagination {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 6px;
}

.card-product__pagination .swiper-pagination-bullet {
  cursor: pointer;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-radius: 0;
  height: 4px !important;
  margin: 0 8px 0 0 !important;
  background: #a99478;
}

.card-product__pagination .swiper-pagination-bullet:last-child {
  margin-right: 0 !important;
}

.card-product__image {
  width: 100%;
  height: 277px;
}

.card-product__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-product__image img.active {
  opacity: 1;
}

.card-product__pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-product__pagination-bullet {
  cursor: pointer;
  margin-right: 8px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 4px;
  background: #fff;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-product__pagination-bullet:last-child {
  margin-right: 0;
}

.card-product__pagination-bullet.active {
  background: #a99478;
}

.card-product__wrap {
  padding: 20px 0;
}

.card-product__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  color: #fff;
}

.card-product__group-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 15px;
}

.card-product__title {
  margin-right: 15px;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: var(--text-color);
}

.card-product__title span {
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-product__price {
  padding: 6px 20px 8px 32px;
  margin-bottom: 8px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #333;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 10px 50%);
  background: var(--bg-card-color);
}

.card-product__square {
  padding-right: 20px;
  font-size: 14px;
  line-height: 19px;
  color: #ffffff;
  opacity: 0.5;
  text-align: right;
}

.card-product__group-middle {
  padding-right: 20px;
}

.card-product__lsit-option {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 5px;
  z-index: 2;
}

.card-product__option {
  margin-right: 25px;
  margin-bottom: 15px;
}

.card-product__option:last-child {
  margin-right: 0;
}

.card-product__description {
  margin-bottom: 20px;
  line-height: 24px;
}

.card-product__description a {
  position: relative;
  border-bottom: 1px solid #a99478;
  color: #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 2;
}

.card-product__description a:hover {
  border-bottom: transparent;
}

.card-product__group-bottom {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
  z-index: 2;
}

.card-product__button {
  margin-right: 25px;
  max-width: 210px;
}

.card-product__group-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-product__icon {
  margin-right: 22px;
}

.card-product__icon:last-child {
  margin-right: 0;
}

.card-product__fav {
  position: relative;
}

.card-product__print {
  position: relative;
}

.card-product__map {
  position: relative;
}

.card-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.card-option__icon {
  margin-right: 12px;
  filter: invert(var(--filter-k));
}

.card-option__text {
  font-size: 14px;
  line-height: 19px;
  color: var(--text-color);
}

.fav {
  cursor: pointer;
}

.fav svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fav svg path {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fav:hover svg {
  fill: #a99478;
}

.fav:hover svg path {
  stroke: #a99478;
}

.fav.added svg {
  fill: #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.fav.added svg path {
  stroke: #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.print {
  cursor: pointer;
}

.print svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.print svg path {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.print:hover svg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.print:hover svg path {
  fill: #a99478;
}

.id-card {
  cursor: pointer;
  position: relative;
}

.id-card__hint {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 140%;
  left: 50%;
  /*min-width: 100px;*/
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  padding: 5px 10px;
  border-radius: 4px;
  background: #19232f;
  color: #a99478;
  font-size: 14px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  z-index: 10;
}

.id-card__hint::before {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  top: -16px;
  border: 11px solid transparent;
  border-bottom: 6px solid #19232f;
}

.id-card svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.id-card svg path {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.id-card:hover .id-card__hint {
  opacity: 1;
  visibility: visible;
}

.id-card:hover svg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.id-card:hover svg path {
  fill: #a99478;
}

.lock-map svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lock-map svg path {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.lock-map:hover svg {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.lock-map:hover svg path {
  fill: #a99478;
}

.advantages {
  padding: 30px 35px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}

.advantages__item {
  margin-bottom: 22px;
}

.advantages__item:last-child {
  margin-bottom: 0;
}

.advantages__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 12px;
}

.advantages__name {
  font-weight: 600;
  font-size: 18px;
  line-height: 25px;
  color: #333333;
}

.advantages__icon {
  margin-right: 23px;
}

.advantages__icon img {
  min-width: 48px;
  min-height: 48px;
  max-width: 48px;
  max-height: 48px;
  -o-object-fit: contain;
  object-fit: contain;
}

.advantages__text {
  font-size: 16px;
  line-height: 24px;
  color: #333333;
}

.consultation__wrap {
  margin-bottom: 25px;
  padding: 30px 30px 35px 30px;
  background: #a99478;
  border-radius: 4px;
  text-align: center;
}

.consultation__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-align: center;
}

.consultation__group-person {
  margin-bottom: 25px;
}

.consultation__image {
  margin: 0 auto 20px auto;
  position: relative;
  width: 148px;
  height: 164px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}

.consultation__image img {
  position: relative;
  width: 148px;
  height: 164px;
}

.consultation__image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 144px;
  height: 140px;
  background: #ececec;
  border-radius: 50%;
}

.consultation__name {
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
}

.consultation__sign {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #ffffff;
  opacity: 0.5;
}

.consultation__lsit-link {
  margin-bottom: 33px;
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.consultation__link {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
  text-align: center;
}

.consultation__link:last-child {
  margin-bottom: 0;
}

.consultation__link.--tel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 16px;
  height: 24px;
  background: url("../img/icon-consultation-tel.svg") no-repeat;
}

.consultation__link.--email::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 22px;
  height: 20px;
  background: url("../img/icon-consultation-email.svg") no-repeat;
}

.consultation__link.--whatsapp::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 20px;
  height: 20px;
  background: url("../img/icon-consultation-what-green-2.svg") no-repeat;
}

.consultation__button {
  max-width: 200px;
  color: #ffffff;
}

.consultation__description p {
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color);
  opacity: 0.5;
}

.consultation__description p strong {
  font-weight: 700;
}

@media (max-width: 1395px) {
  .card-product__title {
    font-size: calc(16px + 6 * ((100vw - 320px) / 960));
  }

  .card-product__price {
    font-size: calc(16px + 6 * ((100vw - 320px) / 960));
  }

  .card-product__description {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  .sort-catalog__text {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  .advantages {
    padding: 15px;
  }

  .consultation__wrap {
    padding: 15px;
  }

  .advantages__name {
    font-size: calc(16px + 2 * ((100vw - 320px) / 960));
  }

  .advantages__text {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  .consultation__title {
    font-size: calc(18px + 4 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1170px) {
  .catalog__row {
    grid-template-columns: 100%;
  }

  .consultation__group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .consultation__group-person {
    margin-right: 40px;
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .catalog__row {
    grid-gap: 15px;
  }

  .card-product__slide img {
    max-height: 300px;
  }

  .card-product__row {
    grid-template-columns: 100%;
    grid-gap: 10px;
  }

  .card-product__wrap {
    padding: 10px;
  }

  .card-product__group-middle {
    padding-right: 0;
  }

  .card-product__group-bottom {
    padding-right: 0;
  }

  .advantages__item {
    margin-bottom: 10px;
  }
}

@media (max-width: 500px) {
  .card-product__group-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .card-product__title {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .card-product__price {
    -webkit-clip-path: polygon(
      calc(100% - 10px) 0,
      100% 50%,
      calc(100% - 10px) 100%,
      0 100%,
      0 0
    );
    clip-path: polygon(
      calc(100% - 10px) 0,
      100% 50%,
      calc(100% - 10px) 100%,
      0 100%,
      0 0
    );
    padding: 4px 20px 4px 10px;
  }

  .card-product__square {
    text-align: left;
    padding-right: 0;
  }

  .card-product__group-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .card-product__button {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .sort-catalog__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .sort-catalog__text {
    margin-bottom: 10px;
  }

  .consultation__group {
    display: block;
  }

  .consultation__group-person {
    margin-right: 0px;
    margin-bottom: 25px;
  }
}

.collections {
  padding: 52px 0 18px 0;
  background: var(--theme-color);
}

.collections__title {
  margin-bottom: 46px;
}

.card-collections__name {
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

.card-collections__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -10px 18px -10px;
}

.card-collections__item {
  margin: 0 10px 20px 10px;
  display: block;
  padding: 16px 30px 15px 30px;
  font-size: 14px;
  line-height: 19px;
  color: var(--text-color);
  border: 1px solid rgba(169, 148, 120, 0.15);
  border-radius: 4px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-collections__item:hover {
  background: #a99478;
  color: #fff;
}

@media (max-width: 1170px) {
  .collections {
    padding: 20px 0 10px 0;
  }
}

@media (max-width: 768px) {
  .collections__title {
    margin-bottom: 20px;
  }

  .card-collections__item {
    padding: 8px 15px 8px 15px;
    font-size: 12px;
  }

  .card-collections__name {
    margin-bottom: 15px;
  }

  .card-collections__list {
    margin: 0 -10px 10px -10px;
  }
}

.common-slider {
  background: var(--theme-color);
}

.common-slider__wrap {
  padding: 64px 0 20px 0;
}

.common-slider__slide {
  width: initial;
  height: initial;
}

.common-slider__group-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 947px;
  margin-bottom: 37px;
}

.common-slider__title {
  margin-right: 115px;
}

.common-slider__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.common-slider__prev {
  margin-right: 10px;
}

.common-slider__slider {
  margin: 0 -15px;
  padding: 0 15px 15px 15px;
}

.card-slider {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card-slider__image {
  margin-bottom: 15px;
}

.card-slider__image img {
  /* width: 100%; */
  height: 160px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-slider__title {
  flex-grow: 1;
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 14px;
  line-height: 19px;
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-slider__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card-slider__price {
  margin-right: 10px;
  color: #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-slider::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  z-index: -1;
  background: transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-slider:hover .card-slider__title {
  color: #a99478;
}

.card-slider:hover .card-slider__price {
  color: #a99478;
}

.card-slider:hover::before {
  background: #fff;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.07);
  border-radius: 4px;
}

@media (max-width: 1395px) {
  .common-slider__slider {
    margin: 0 -12px;
    padding: 0 12px 15px 12px;
  }

  .card-slider::before {
    left: -12px;
    right: -12px;
  }
}

@media (max-width: 1170px) {
  .common-slider__wrap {
    padding: 20px 0;
  }
}

@media (max-width: 768px) {
  .common-slider__title {
    margin-right: 20px;
  }
}

.block-text {
  background: var(--theme-color);
}

.block-text__wrap {
  padding: 40px 0 35px 0;
}

.block-text__wrap::after {
  content: " ";
  clear: both;
  display: table;
}

.block-text__image {
  float: left;
  margin-right: 55px;
  margin-bottom: 15px;
}

.block-text h1 {
  margin-bottom: 30px;
}

.block-text h2 {
  margin-bottom: 25px;
}

.block-text h3 {
  margin-bottom: 15px;
}

.block-text p {
  font-size: 18px;
  line-height: 150%;
  color: var(--text-color);
  margin-bottom: 27px;
}

.block-text ul {
  margin-bottom: 50px;
}

.block-text ul li {
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 18px;
}

.block-text ul li:last-child {
  margin-bottom: 0;
}

.block-text ol {
  margin-bottom: 50px;
}

.block-text ol li {
  list-style-position: inside;
  font-size: 18px;
  line-height: 150%;
  color: #ffffff;
  margin-bottom: 18px;
}

.block-text ol li:last-child {
  margin-bottom: 0;
}

@media (max-width: 1395px) {
  .block-text p {
    font-size: calc(14px + 4 * ((100vw - 320px) / 960));
  }

  .block-text ul li {
    font-size: calc(14px + 4 * ((100vw - 320px) / 960));
  }

  .block-text h1 {
    margin-bottom: 20px;
  }

  .block-text h2 {
    margin-bottom: 15px;
  }

  .block-text h3 {
    margin-bottom: 10px;
  }

  .block-text ol li {
    font-size: calc(14px + 4 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1170px) {
  .block-text__wrap {
    padding: 20px 0;
  }

  .block-text__image {
    width: 50%;
    margin-right: 15px;
    max-height: 500px;
    -o-object-fit: contain;
    object-fit: contain;
  }
}

@media (max-width: 768px) {
  .block-text ul {
    margin-bottom: 20px;
  }

  .block-text ol {
    margin-bottom: 20px;
  }

  .block-text p {
    margin-bottom: 15px;
  }
}

@media (max-width: 500px) {
  .block-text__image {
    width: 100%;
  }
}

.news {
  background: var(--theme-color);
}

.news__wrap {
  padding: 30px 0 50px 0;
}

.news__group-title {
  display: grid;
  grid-template-columns: 0.316fr 1fr;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 31px;
}

.news__all {
  justify-self: start;
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  color: #a99478;
}

.news__row {
  display: grid;
  grid-template-columns: 0.316fr 1fr;
  grid-gap: 30px;
}

.news__lsit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 30px;
  height: 100%;
}

.card-editorial {
  padding: 25px 30px 30px 30px;
  background: #ffffff;
  border-radius: 6px;
}

.card-editorial__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-editorial__icon {
  margin-right: 26px;
}

.card-editorial__name {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #222222;
}

.card-editorial__item {
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 22px;
  color: #333333;
}

.card-editorial__item span {
  color: #a99478;
}

.card-editorial__item:last-child {
  margin-bottom: 0;
}

.card-news {
  display: grid;
  grid-template-columns: auto 1fr;
  background: var(--theme-color);
  border: 1px solid var(--border-card-color);
  border-radius: 6px;
  overflow: hidden;
}

.card-news__image img {
  width: 214px;
  height: 100%;
  min-height: 154px;
  -o-object-fit: cover;
  object-fit: cover;
}

.card-news__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: var(--text-color);
  padding: 25px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.card-news:hover .card-news__name {
  color: #a99478;
}

@media (max-width: 1395px) {
  .card-editorial__name {
    font-size: calc(18px + 4 * ((100vw - 320px) / 960));
  }

  .card-news__image img {
    width: 150px;
  }
}

@media (max-width: 1170px) {
  .news__wrap {
    padding: 20px 0;
  }

  .news__row {
    grid-template-columns: 1fr;
  }

  .news__column:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .news__column:last-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (max-width: 768px) {
  .news__row {
    grid-gap: 20px;
  }

  .news__lsit {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }
}

@media (max-width: 500px) {
  .card-news {
    grid-template-columns: 1fr;
  }

  .card-news__image img {
    width: 100%;
    max-height: 250px;
  }

  .card-news__name {
    padding: 15px;
  }

  .card-editorial {
    padding: 15px;
  }

  .card-editorial__group {
    margin-bottom: 15px;
    padding-bottom: 15px;
  }
}

.order {
  background: url("../img/image-order-bg-v2.webp") no-repeat center/cover;
  background-color: #fff;
}

.order__wrap {
  position: relative;
  padding: 55px 70px;
  max-width: 863px;
  border-radius: 6px;
  background: rgba(232, 232, 232, 0.01);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
  margin: 0 0 0 -70px;
}

/*
.order__wrap::before {
	content: "";
	position: absolute;
	right: 5%;
	bottom: 0;
	width: 422px;
	height: 547px;
	background: url("../img/image-order-bg-2.webp") no-repeat center/contain;
	z-index: 1;
}
*/

.order__bg-sign-one {
  position: absolute;
  right: 27%;
  top: 5%;
  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;
  padding: 40px 20px 20px 20px;
  width: 200px;
  height: 190px;
  text-align: center;
  border-radius: 50%;
  background: #a99478;
  z-index: 0;
  color: #fff;
}

.order__bg-sign-one::before {
  content: "";
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 30px;
  height: 22px;
  background: url("../img/icon-order-sign-bg-1.svg") no-repeat;
}

.order__bg-sign-tow {
  position: absolute;
  top: 72%;
  right: 16%;
  width: 237px;
  padding: 16px 35px;
  z-index: 2;
}

.order__bg-sign-tow-name {
  position: relative;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #a99478;
}

.order__bg-sign-tow-post {
  position: relative;
  font-size: 14px;
  line-height: 20px;
  color: #333333;
  opacity: 0.5;
}

.order__bg-sign-tow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transform: skewX(-10deg);
  -ms-transform: skewX(-10deg);
  transform: skewX(-10deg);
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.order__title {
  position: relative;
  z-index: 5;
  margin-bottom: 18px;
}

.order__subtitle {
  position: relative;
  z-index: 5;
  margin-bottom: 30px;
  max-width: 563px;
  font-size: 18px;
  line-height: 26px;
  color: #333333;
}

.order__form {
  max-width: 723px;
}

.from-order {
  position: relative;
  z-index: 5;
}

.from-order__lsit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px;
  margin-bottom: 25px;
}

.from-order__item.--col-3 {
  grid-column: span 3;
}

.from-order__group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.from-order__submit {
  max-width: 286px;
  margin-right: 25px;
}

.from-order__policy {
  font-size: 14px;
  line-height: 22px;
  color: rgba(51, 51, 51, 0.75);
}

.from-order__policy a {
  color: #a99478;
  border-bottom: 1px solid #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.from-order__policy a:hover {
  border-color: transparent;
}

@media (max-width: 1395px) {
  .order__wrap::before {
    right: 0;
  }

  .order__subtitle {
    font-size: calc(14px + 4 * ((100vw - 320px) / 960));
  }

  .from-order__policy {
    font-size: calc(11px + 3 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1170px) {
  .order__wrap {
    padding: 20px 70px;
  }

  /*
	.order__wrap::before {
		width: 333px;
		height: 430px;
	}

	.order__bg-sign-tow {
		display: none;
	}

	.order__bg-sign-one {
		display: none;
	}
	*/
}

@media (max-width: 900px) {
  /*
	.order__wrap::before {
		content: none;
	}
	*/
}

@media (max-width: 768px) {
  .order__wrap {
    margin: 0;
    padding: 20px 10px;
  }

  .order__subtitle {
    margin-bottom: 15px;
  }

  .from-order__group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .from-order__submit {
    margin-right: 0;
    margin-top: 15px;
  }

  .from-order__lsit {
    grid-template-columns: repeat(1, 1fr);
    margin-bottom: 15px;
  }

  .from-order__item.--col-3 {
    grid-column: span 1;
  }
}

.product-card {
  background: var(--bg-select-color);
}

.product-card__wrap {
  padding: 50px 0;
}

.product-card__title {
  max-width: 920px;
  margin-bottom: 30px;
}

.product-card__group-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 40px;
}

.product-card__date {
  margin-right: 30px;
  position: relative;
  padding-left: 39px;
}

.product-card__date::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 18px;
  height: 20px;
  background: url("../img/icon-date.svg") no-repeat;
}

.product-card__date-text {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
  opacity: 0.5;
}

.product-card__views {
  margin-right: 30px;
  position: relative;
  padding-left: 37px;
}

.product-card__views::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 22px;
  height: 16px;
  background: url("../img/icon-views.svg") no-repeat;
}

.product-card__views-text {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
  opacity: 0.5;
}

.product-card__icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.product-card__row {
  display: grid;
  grid-template-columns: calc(75.4% - 21.5px) calc(24.6% - 21.5px);
  grid-gap: 43px;
}

.product-card__row-product {
  display: grid;
  grid-template-columns: calc(73.3% - 22.5px) calc(26.7% - 22.5px);
  grid-gap: 45px;
  margin-bottom: 65px;
}

.product-card__slider-big-wrap {
  margin-bottom: 20px;
}

.product-card__slider-big-image {
  display: block;
}

.product-card__slider-big-image img {
  width: 100%;
  height: 519px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.product-card__slider-small-wrapper {
  position: relative;
  padding: 0 92px;
}

.product-card__slider-neighborhood-wrapper {
  position: relative;
  padding: 0 92px;
  max-width: 716px;
}

.product-card__slider-small {
  position: initial;
  margin: 0 -15px;
  padding: 15px;
}

.product-card__slider-small-slide {
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
  border-radius: 4px;
}

.product-card__slider-small-slide.swiper-slide-thumb-active {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.product-card__slider-small-image {
  text-align: center;
}

.product-card__slider-small-image img {
  max-width: 150px;
  width: 100%;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 4px;
}

.product-card__slider-small-prev {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.product-card__slider-small-next {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
}

.product-card__group-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 25px;
}

.product-card__price-currency {
  margin-right: 22px;
}

.product-card__price-current {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #a99478;
}

.product-card__price-old {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  color: rgba(255, 255, 255, 0.5);
}

.product-card__price-square {
  display: block;
  font-size: 12px;
  line-height: 16px;
  color: var(--text-color);
  opacity: 0.5;
}

.product-card__group-metro {
  padding: 26px 0 27px 0;
  margin-bottom: 26px;
  /*border-top: 1px solid var(--border-menu-color);*/
  border-bottom: 1px solid var(--border-menu-color);
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

.product-card__group-metro a {
  border-bottom: 1px solid #a99478;
  color: #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-card__group-metro a:hover {
  border-color: transparent;
}

.product-card__group-property {
  margin-bottom: 27px;
}

.product-card__property-item {
  margin-bottom: 15px;
}

.product-card__property-item:last-child {
  margin-bottom: 0;
}

.product-card__fav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 28px;
}

.product-card__fav svg {
  margin-right: 10px;
}

.product-card__button {
  max-width: 400px;
}

.product-card__social {
  max-width: 400px;
}

.product-card__advantages {
  margin-bottom: 30px;
}

.product-card__extensions-list {
  margin-bottom: 42px;
}

.product-card__button-wrap {
  margin-bottom: 25px;
}

.product-currency {
  position: relative;
}

.product-currency__current {
  cursor: pointer;
  position: relative;
  padding-right: 20px;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  color: #a99478;
}

.product-currency__current::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 12px;
  height: 8px;
  background: url("../img/icon-arrow-product-currency.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-currency__current.open::before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}

.product-currency__list {
  position: absolute;
  top: 130%;
  left: 0;
  border: 1px solid #a99478;
  border-radius: 4px;
  background-color: #ffffff;
  z-index: 2;
  display: none;
}

.product-currency__item {
  cursor: pointer;
  padding: 10px;
  font-weight: 600;
  font-size: 16px;
  line-height: 120%;
  color: #a99478;
  border-bottom: 1px solid #a99478;
}

.product-currency__item:last-child {
  border: none;
}

.product-currency__item:hover {
  color: #fff;
  background: #a99478;
}

.product-currency__item.current {
  color: #fff;
  background: #a99478;
}

.product-property {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-property__name {
  position: relative;
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
  opacity: 0.5;
}

.product-property__value {
  font-size: 16px;
  line-height: 22px;
  color: var(--text-color);
}

.product-property__dote {
  margin: 0 10px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border-bottom: 1px dotted var(--text-color);
  opacity: 0.5;
}

.social-product__text {
  font-size: 14px;
  line-height: 19px;
  color: var(--text-color);
  opacity: 0.5;
  margin-bottom: 15px;
}

.social-product
  .ya-share2__container_size_l
  .ya-share2__badge
  .ya-share2__icon {
  width: 40px;
  height: 40px;
}

.social-product
  .ya-share2__container_shape_round.ya-share2__container_size_l
  .ya-share2__badge
  .ya-share2__icon:not(.ya-share2__icon_messenger-contact):not(
    .ya-share2__icon_more
  ):not(.ya-share2__icon_copy) {
  background-size: 30px 30px;
}

.social-product .ya-share2__list.ya-share2__list_direction_horizontal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.product-extensions {
  padding-bottom: 27px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 28px;
}

.product-extensions:last-child {
  margin-bottom: 0;
  border-bottom: none;
}

.product-extensions__group-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 28px;
}

.product-extensions__icon {
  margin-right: 15px;
}

.product-extensions__name {
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: none;
  color: var(--text-color);
}

.product-extensions__list ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(auto, -webkit-max-content));
  grid-template-columns: repeat(3, minmax(auto, max-content));
  grid-column-gap: 40px;
  grid-row-gap: 18px;
}

.product-extensions__views-all {
  cursor: pointer;
  position: relative;
  margin-top: 26px;
  padding-right: 21px;
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  color: #a99478;
}

.product-extensions__views-all::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  right: 0;
  width: 12px;
  height: 7px;
  background: url("../img/icon-extensions-views-all.svg") no-repeat;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-extensions__views-all.active::before {
  -webkit-transform: translate(0, -50%) rotate(180deg);
  -ms-transform: translate(0, -50%) rotate(180deg);
  transform: translate(0, -50%) rotate(180deg);
}

.product-comment__text {
  overflow: hidden;
}

.product-comment h1 {
  margin-bottom: 35px;
}

.product-comment h2 {
  margin-bottom: 30px;
  font-weight: 600;
  font-size: 22px;
  line-height: 30px;
  text-transform: none;
}

.product-comment h3 {
  margin-bottom: 28px;
}

.product-comment h4 {
  margin-bottom: 28px;
}

.product-comment h5 {
  margin-bottom: 20px;
}

.product-comment h6 {
  margin-bottom: 15px;
}

.product-comment p {
  font-size: 18px;
  line-height: 26px;
  color: var(--text-color);
  margin-bottom: 30px;
}

.product-comment p:last-child {
  margin-bottom: 0;
}

.product-comment .js-text-all-button {
  cursor: pointer;
  margin-top: 28px;
  display: inline-block;
  font-size: 16px;
  line-height: 22px;
  color: #a99478;
  border-bottom: 1px solid transparent;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.product-comment .js-text-all-button:hover {
  border-color: #a99478;
}

.map__wrap-title {
  background: var(--bg-select-color);
  padding-top: 15px;
  padding-bottom: 28px;
}

.map__wrap {
  height: 600px;
}

.map__wrap iframe {
  width: 100%;
  height: 100%;
}

@media (max-width: 1395px) {
  .product-card__row {
    grid-template-columns: calc(75.4% - 10px) calc(24.6% - 10px);
    grid-gap: 20px;
  }

  .product-card__row-product {
    grid-template-columns: calc(73.3% - 10px) calc(26.7% - 10px);
    grid-gap: 20px;
  }

  .product-card__views-text {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  .product-card__date-text {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  .product-extensions__name {
    font-size: calc(16px + 6 * ((100vw - 320px) / 960));
  }

  .product-extensions ul li {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  .product-comment p {
    font-size: calc(14px + 4 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1170px) {
  .product-card__wrap {
    padding: 20px 0;
  }

  .product-card__row {
    grid-template-columns: 100%;
  }

  .product-card__row-product {
    grid-template-columns: calc(60% - 10px) calc(40% - 10px);
  }

  .product-card__slider-neighborhood-wrapper,
  .product-card__slider-small-wrapper {
    padding: 0 75px;
  }

  .product-extensions__list ul {
    grid-column-gap: 20px;
  }

  .map__wrap-title {
    padding-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .product-card__row-product {
    grid-template-columns: 100%;
    margin-bottom: 30px;
  }

  .product-card__group-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .product-card__date {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .product-card__views {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .product-card__slider-big-image img {
    height: 350px;
  }

  .product-card__group-metro {
    padding: 16px 0;
  }

  .product-card__extensions-list {
    margin-bottom: 20px;
  }

  .product-card__slider-small-slide.swiper-slide-thumb-active {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  .product-card__button-wrap {
    text-align: center;
    margin-bottom: 15px;
  }

  .product-extensions {
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .product-extensions__list ul {
    grid-template-columns: repeat(2, minmax(auto, -webkit-max-content));
    grid-template-columns: repeat(2, minmax(auto, max-content));
  }

  .product-extensions__group-name {
    margin-bottom: 15px;
  }

  .product-comment h1 {
    margin-bottom: 20px;
  }

  .product-comment h2 {
    margin-bottom: 15px;
  }

  .product-comment h3 {
    margin-bottom: 15px;
  }

  .product-comment h4 {
    margin-bottom: 15px;
  }

  .product-comment h5 {
    margin-bottom: 15px;
  }

  .product-comment h6 {
    margin-bottom: 10px;
  }

  .product-comment p {
    margin-bottom: 10px;
  }

  .product-comment .js-text-all-button {
    margin-top: 15px;
  }

  .map__wrap {
    height: 350px;
  }
}

@media (max-width: 500px) {
  .product-extensions__list ul {
    grid-template-columns: repeat(1, minmax(auto, -webkit-max-content));
    grid-template-columns: repeat(1, minmax(auto, max-content));
  }
}

.news-page {
  background-color: var(--theme-color);
  padding-top: 48px;
}

.news-page .news-page__group-content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-page .news-page__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 30px;
  margin-bottom: 10px;
}

.news-page .news-page__list-item {
  display: block;
  background: var(--theme-color);
  border-radius: 4px;
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border-card-news-color);
}

.news-page .news-page__list-item:hover .news-page__item-title {
  color: #a99478;
}

.news-page .news-page__item-title {
  margin-left: 25px;
}

.news-page .news-page__item-wrap {
  padding: 30px 30px 30px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.news-page .news-page__text {
  padding-right: 33px;
  width: 69.3%;
}

.news-page .news-page__image-block {
  width: 31.7%;
}

.news-page .news-page__img {
  border-radius: 4px;
  height: 258px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.news-page .news-page__top-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-page .news-page__top-text {
  margin-bottom: 27px;
}

.news-page .news-page__top-text .news-page__item-title {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-page .news-page__date-wrap {
  background: var(--bg-card-date-color);
  border-radius: 4px;
  min-width: 84px;
  min-height: 84px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.news-page .news-page__date {
  font-weight: 600;
  font-size: 14px;
  line-height: 150%;
  text-align: center;
  color: var(--text-card-news-color);
}

.news-page .news-page__title {
  margin-bottom: 40px;
}

.news-page .news-page__item-title {
  text-transform: none;
  font-weight: 600;
  font-size: 22px;
  line-height: 130%;
  color: var(--text-color);
}

.news-page .news-page_bottom_text {
  font-size: 18px;
  line-height: 150%;
  color: var(--text-color);
}

.news-page .news-page__breadcrumbs .breadcrumbs {
  padding-bottom: 80px;
}

.news-page__navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-right: 76px;
}

.news-page__navigation .news-page__nav_link {
  width: 354px;
  max-width: 100%;
  max-height: 65px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.4;
  color: var(--text-color);
  opacity: 0.35;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-menu-color);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.news-page__navigation .news-page__nav_link.active {
  font-size: 22px;
  opacity: 1;
}

.news-page__navigation .news-page__nav_link:hover,
.news-page__navigation .news-page__nav_link:active {
  font-size: 22px;
  opacity: 1;
}

@media (max-width: 1395px) {
  .news-page__item-title {
    font-size: calc(16px + 6 * ((100vw - 320px) / 960));
  }

  .news-page_bottom_text {
    font-size: calc(14px + 4 * ((100vw - 320px) / 960));
  }

  .news-page__navigation .news-page__nav_link {
    font-size: calc(14px + 4 * ((100vw - 320px) / 960));
  }

  .news-page__navigation .news-page__nav_link.active {
    font-size: calc(16px + 6 * ((100vw - 320px) / 960));
  }

  .news-page__navigation .news-page__nav_link:hover,
  .news-page__navigation .news-page__nav_link:active {
    font-size: calc(16px + 6 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1200px) {
  .news-page__navigation .news-page__nav_link {
    width: 250px;
  }
}

@media (max-width: 1000px) {
  .news-page__navigation {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-right: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    background-color: var(--theme-color);
    border-radius: 4px;
    margin: 0 0 20px 0;
  }

  .news-page__navigation .news-page__nav_link {
    width: auto;
    margin-right: 25px;
    border-bottom: 0px;
    padding: 20px 10px;
  }
}

@media (max-width: 500px) {
  .news-page__navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .news-page__navigation:last-child {
    border-bottom: none;
  }

  .news-page__navigation .news-page__nav_link {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }

  .news-page__navigation .news-page__nav_link:last-child {
    border-bottom: none;
  }
}

@media (max-width: 1200px) {
  .news-page {
    padding-top: 20px;
  }

  .news-page .news-page__item-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .news-page .news-page__image-block {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    margin-bottom: 25px;
  }

  .news-page .news-page__img {
    max-height: 400px;
  }

  .news-page .news-page__text {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
    padding-right: 0;
  }
}

@media (max-width: 1000px) {
  .news-page .news-page__item-wrap {
    padding: 15px;
  }

  .news-page .news-page__title {
    margin-bottom: 20px;
  }

  .news-page .news-page__group-content .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .news-page .news-page__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .news-page .news-page__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .news-page .news-page__top-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 15px;
  }

  .news-page .news-page__date-wrap {
    margin-bottom: 15px;
  }

  .news-page .news-page__item-title {
    margin-left: 0;
  }

  .news-page .news-page__img {
    max-height: 250px;
  }
}

@media (max-width: 320px) {
  .news-page .news-page__img {
    max-height: 200px;
  }
}

.page-article {
  background-color: var(--theme-color);
  padding-top: 48px;
  padding-bottom: 20px;
}

.page-article p,
.page-article li {
  font-size: 18px;
  line-height: 1.5;
}

.page-article h2,
.page-article h3,
.page-article h4 {
  padding-bottom: 30px;
}

.page-article__content {
  width: 100%;
}

.page-article__group-content .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.page_article__img-block {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 70px;
  padding-bottom: 20px;
}

.page_article__img-block span {
  text-align: center;
  padding-top: 15px;
  font-size: 14px;
  line-height: 1.35;
}

.page_article__img-block img {
  border-radius: 4px;
  width: 390px;
  height: auto;
}

@media (max-width: 1200px) {
  .page_article__img-block {
    width: 100%;
    padding-left: 0;
  }

  .page_article__img-block img {
    width: 100%;
    max-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.page-article__left-block .page-article__link-back {
  display: block;
}

.page-article__left-block .page-article__link-back span {
  font-size: 16px;
  line-height: 1.375;
  color: #fff;
}

.page-article__left-block .page-article__link-back span:hover,
.page-article__left-block .page-article__link-back span:active {
  color: #a99478;
}

.page-article__left-block .page-article__link-back .link-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 17px;
  margin-bottom: 34px;
}

.page-article__left-block .page-article__link-back .link-block svg {
  margin-right: 20px;
}

@media (max-width: 1170px) {
  .page-article {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 1000px) {
  .page-article__left-block .page-article__link-back .link-block {
    margin-top: 0;
    margin-bottom: 20px;
  }
}

@media (max-width: 1000px) {
  .page-article__left-block .page-article__link-back .link-block {
    margin-bottom: 10px;
  }
}

.page-article p {
  margin-bottom: 30px;
}

.page-article div table {
  width: 100%;
}

.page-article li {
  margin-bottom: 25px;
}

blockquote {
  background: #263241;
  border-radius: 4px;
  padding: 35px 39px 25px 34px;
  margin: 10px 0 27px 0;
  position: relative;
}

blockquote span {
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  display: block;
  margin-bottom: 15px;
}

blockquote p {
  font-size: 16px;
  margin-bottom: 0;
}

blockquote::before {
  position: absolute;
  content: "";
  top: -7px;
  left: 34px;
  width: 31px;
  height: 21px;
  background: url(../img/quote-left.svg) no-repeat 100%;
}

blockquote::after {
  position: absolute;
  content: "";
  bottom: -15px;
  right: 35px;
  width: 31px;
  height: 21px;
  background: url(../img/quote-left.svg) no-repeat 100%;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.article-date {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
  margin-top: 21px;
}

.page-article__text {
  margin-top: 45px;
  margin-bottom: 0px;
}

.article-table {
  overflow-y: auto;
}

.article-table table {
  border-spacing: 0 10px;
  margin-bottom: 40px;
}

.article-table td {
  padding: 14px 10px 14px 10px;
  min-width: 150px;
}

.article-table td:first-child {
  padding-left: 30px;
}

.article-table thead {
  background-color: transparent;
  border-spacing: 0 10px;
}

.article-table thead td {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  padding-bottom: 4px;
  padding-top: 0;
}

.article-table tbody tr {
  background: #263241;
  border-radius: 4px;
}

.article-table tbody tr td:first-child {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.article-table tbody tr td:last-child {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

@media (max-width: 1395px) {
  .article-date {
    font-size: calc(12px + 2 * ((100vw - 320px) / 960));
  }

  thead td {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 700px) {
  .page-article {
    padding-top: 20px;
    padding-bottom: 30px;
  }

  .article-date {
    margin-bottom: 10px;
    margin-top: 5px;
  }

  .page-article__text {
    margin-top: 20px;
    margin-bottom: 0px;
  }
}

@media (max-width: 500px) {
  .page-article {
    padding-top: 10px;
    padding-bottom: 30px;
  }

  .article-date {
    margin-bottom: 10px;
  }

  .page-article__text {
    margin-top: 10px;
    margin-bottom: 0px;
  }
}

.page-article__social.social-product
  .ya-share2__list.ya-share2__list_direction_horizontal {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.page-article__social.social-product
  .ya-share2__list.ya-share2__list_direction_horizontal
  .ya-share2__item {
  margin: 2px 11px 0 0;
}

ol,
.list-numbers {
  counter-reset: myCounter;
  margin-left: 0;
  padding-left: 5px;
  list-style: none;
}

ol li,
.list-numbers li {
  padding-left: 35px;
  position: relative;
}

ol li::before,
.list-numbers li::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 22px;
  height: 22px;
  font-size: 14px;
  line-height: 22px;
  color: #fff;
  font-weight: 400;
  text-align: center;
  border-radius: 3px;
  -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;
  right: 0;
  margin: auto 0;
  background-color: #a99478;
  counter-increment: myCounter;
  content: counter(myCounter);
}

@media (max-width: 1395px) {
  .page-article p,
  .page-article li {
    font-size: calc(14px + 4 * ((100vw - 320px) / 960));
  }

  .page-article .page_article__img-block span {
    font-size: calc(12px + 2 * ((100vw - 320px) / 960));
  }

  .page-article .page-article__left-block span {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1000px) {
  .page-article .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .page-article .page_article__img-block {
    float: right;
    padding-left: 40px;
    padding-bottom: 10px;
    max-width: 390px;
    height: auto;
  }

  .page-article .page_article__img-block img {
    max-height: initial;
  }
}

@media (max-width: 700px) {
  .page-article .page_article__img-block {
    width: 100%;
    padding-left: 0;
    max-width: 100%;
    padding-left: 0;
  }

  .page-article .page_article__img-block img {
    width: 100%;
    max-height: 400px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

@media (max-width: 500px) {
  .page-article .page_article__img-block img {
    max-height: 300px;
  }
}

@media (max-width: 1395px) {
  blockquote span {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  blockquote p {
    font-size: calc(12px + 2 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 700px) {
  blockquote {
    padding: 20px 15px 15px 21px;
    margin: 10px 0 13px 0;
  }

  .article-table td:first-child {
    padding-left: 10px;
  }
}

.consulting-book {
  background: var(--theme-color);
}

.consulting-book__wrap {
  padding: 50px 0 40px 0;
}

.consulting-book__title {
  margin-bottom: 50px;
}

.consulting-book__row {
  display: grid;
  grid-template-columns: calc(66.6% - 25px) calc(33.4% - 25px);
  grid-gap: 50px;
}

.consulting-book__slider {
  margin: 0 -15px;
  padding: 15px 15px 15px 15px;
}

.consulting-book__slide-wrap {
  max-height: 300px;
}

.consulting-book__arrows {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.consulting-book__prev {
  margin-right: 15px;
}

.consulting-book.--book .item-book .item-book__image {
  -webkit-transform: perspective(600px) rotateY(0deg);
  transform: perspective(600px) rotateY(0deg);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s linear;
  transition: -webkit-transform 0.6s linear;
  -o-transition: transform 0.6s linear;
  transition: transform 0.6s linear;
  transition:
    transform 0.6s linear,
    -webkit-transform 0.6s linear;
}

.consulting-book.--book .item-book .item-book__back {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s linear;
  transition: -webkit-transform 0.6s linear;
  -o-transition: transform 0.6s linear;
  transition: transform 0.6s linear;
  transition:
    transform 0.6s linear,
    -webkit-transform 0.6s linear;
  -webkit-transform: perspective(600px) rotateY(180deg);
  transform: perspective(600px) rotateY(180deg);
}

.consulting-book.--book .item-book .item-book__back::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  background: #ffffff;
  -webkit-box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.14);
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.14);
  border-radius: 4px;
  z-index: -1;
}

.consulting-book.--book .item-book:hover > .item-book__image {
  -webkit-transform: perspective(600px) rotateY(-180deg);
  transform: perspective(600px) rotateY(-180deg);
}

.consulting-book.--book .item-book:hover > .item-book__back {
  -webkit-transform: perspective(600px) rotateY(0deg);
  transform: perspective(600px) rotateY(0deg);
}

.marquiz__inline-frame {
  height: 720px !important;
}

.card-consulting-book {
  padding: 30px 30px 30px 30px;
  background: #ffffff;
  border-radius: 4px;
}

.card-consulting-book__image {
  margin: 0 auto 30px auto;
  position: relative;
  max-width: 322px;
  width: 100%;
  height: 200px;
  text-align: center;
  border-radius: 36px;
  overflow: hidden;
}

.card-consulting-book__image img {
  position: relative;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: bottom;
  object-position: bottom;
}

.card-consulting-book__image::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background: #eeeeee;
  border-radius: 36px;
}

.card-consulting-book__title {
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-align: center;
  color: #a99478;
}

.card-consulting-book__title span {
  color: #222222;
}

.card-consulting-book__sign {
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  color: #333333;
  opacity: 0.5;
}

.form-consulting-book__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  margin-bottom: 20px;
}

.form-consulting-book__button-wrap {
  text-align: center;
  margin-bottom: 15px;
}

.form-consulting-book__button {
  max-width: 400px;
}

.form-consulting-book__policy {
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: rgba(51, 51, 51, 0.5);
}

.form-consulting-book__policy a {
  border-bottom: 1px solid #a99478;
  color: #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.form-consulting-book__policy a:hover {
  border-color: transparent;
}

.item-book {
  position: relative;
  display: block;
  height: 300px;
}

.item-book__image {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.item-book__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 4px;
}

.item-book__back {
  position: absolute;
  width: 100%;
  height: 100%;
}

.item-book__back-wrap {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #a99478;
  overflow: hidden;
  border-radius: 4px;
}

.item-book__back-icon {
  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: 90px;
  height: 90px;
  border-radius: 50%;
  background: #b5a084;
  margin-bottom: 15px;
}

.item-book__back-sign {
  display: block;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

@media (max-width: 1395px) {
  .consulting-book__row {
    grid-template-columns: calc(66.6% - 10px) calc(33.4% - 10px);
    grid-gap: 20px;
  }

  .consulting-book.--book .item-book .item-book__back::before {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }

  .card-consulting-book__title {
    font-size: calc(16px + 6 * ((100vw - 320px) / 960));
  }

  .card-consulting-book__sign {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  .form-consulting-book__policy a {
    font-size: calc(12px + 2 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1170px) {
  .consulting-book__wrap {
    padding: 20px 0;
  }

  .consulting-book__row {
    grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .consulting-book__row {
    grid-template-columns: 100%;
  }

  .consulting-book__title {
    margin-bottom: 30px;
  }

  .card-consulting-book {
    padding: 15px;
  }
}

@media (max-width: 500px) {
  .form-consulting-book__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .item-book {
    height: 200px;
  }
}

.down-magazine {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  background: #19232f;
}

.down-magazine__wrap {
  padding-bottom: 180px;
}

.down-magazine__logo {
  max-width: 730px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 42px 0 125px 0;
  margin: 0 auto 70px auto;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  background: #263241;
}

.down-magazine__botton-wrap {
  text-align: center;
}

.down-magazine__button {
  max-width: 291px;
  padding-left: 74px;
}

.down-magazine__button span {
  color: rgba(0, 0, 0, 0.25);
}

.down-magazine__button::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 25px;
  width: 34px;
  height: 34px;
  background: url("../img/icon-download.png") no-repeat;
}

@media (max-width: 1170px) {
  .down-magazine__wrap {
    padding-bottom: 20px;
  }

  .down-magazine__logo {
    padding: 20px 0 80px 0;
  }
}

@media (max-width: 768px) {
  .down-magazine__logo {
    margin: 0 auto 40px auto;
  }

  .down-magazine__logo img {
    height: 70px;
  }
}

@media (max-width: 500px) {
  .down-magazine__logo {
    padding: 20px 0 65px 0;
    margin: 0px auto 20px auto;
  }

  .down-magazine__logo img {
    height: 50px;
  }
}

.footer {
  background: #002b45;
}

.footer__top {
  padding: 35px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer__top .footer__row {
  display: grid;
  grid-template-columns: 0.637fr 1fr;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  grid-gap: 80px;
}

.footer__list {
  display: grid;
  grid-template-columns: 0.5fr 0.53fr 1fr;
  grid-gap: 45px;
  justify-items: start;
}

.footer__bottom {
  padding: 35px 0 40px 0;
}

.footer__bottom .footer__row {
  display: grid;
  grid-template-columns: 1fr 0.81fr;
  grid-gap: 100px;
}

.footer__bottom .footer__column:first-child {
  display: grid;
  grid-template-columns: 204px 1fr;
  grid-gap: 45px;
}

.footer__bottom .footer__column:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.footer__text p {
  font-size: 12px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}

.footer__text p:last-child {
  margin-bottom: 0;
}

.footer__text a {
  color: #a99478;
  border-bottom: 1px solid #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer__text a:hover {
  border-color: transparent;
}

.footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

.footer__write-us {
  margin-bottom: 15px;
  margin-right: 62px;
  display: block;
  font-size: 16px;
  line-height: 22px;
  color: #a99478;
}

.footer__develop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
}

.footer__develop span {
  margin-right: 20px;
  font-size: 12px;
  line-height: 22px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__develop img {
  min-width: 80px;
  min-height: 33px;
}

.footer .nav-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer .nav-top__nav-item {
  margin-right: 40px;
}

.footer .nav-top__nav-item:last-child {
  margin-right: 0;
}

.footer .nav-top__nav-item a {
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.link-footer__name {
  margin-bottom: 9px;
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.35);
}

.link-footer__phone {
  margin-bottom: 3px;
  display: block;
  font-weight: 700;
  font-size: 16px;
  line-height: 22px;
  color: #ffffff;
}

.link-footer__link {
  display: inline-block;
  font-size: 14px;
  line-height: 19px;
  color: #a99478;
}

.link-footer__map {
  display: block;
  color: #fff;
}

.link-footer.--phone .link-footer__group {
  position: relative;
  padding-left: 30px;
}

.link-footer.--phone .link-footer__group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 24px;
  background: url("../img/icon-footer-tel.svg") no-repeat;
}

.link-footer.--map .link-footer__group {
  position: relative;
  padding-left: 33px;
}

.link-footer.--map .link-footer__group::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 23px;
  background: url("../img/icon-footer-map.svg") no-repeat;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.social__item {
  margin-right: 20px;
  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;
  min-width: 40px;
  min-height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  border: 2px solid #a99478;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social__item svg {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.social__item svg path {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

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

.social__item:hover {
  background: #a99478;
}

.social__item:hover svg {
  fill: #000;
}

.social__item:hover svg path {
  fill: #000;
}

@media (max-width: 1395px) {
  .footer__top .footer__row {
    grid-gap: 20px;
  }

  .footer__list {
    grid-template-columns: 0.7fr 0.7fr 1fr;
    grid-gap: 15px;
  }

  .footer .nav-top__nav-item {
    margin-right: 15px;
  }

  .footer__bottom .footer__row {
    grid-gap: 20px;
  }

  .footer__write-us {
    margin-right: 30px;
  }

  .link-footer__phone {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }

  .link-footer__map {
    font-size: calc(14px + 2 * ((100vw - 320px) / 960));
  }
}

@media (max-width: 1170px) {
  .footer__top {
    padding: 20px 0;
  }

  .footer__top .footer__row {
    grid-template-columns: 1fr;
    grid-gap: 35px;
  }

  .footer__top .footer__row .footer__column:first-child {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }

  .footer__top .footer__row .footer__column:last-child {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }

  .footer__bottom {
    padding: 20px 0;
  }

  .footer__bottom .footer__row {
    grid-template-columns: 1fr;
    grid-gap: 35px;
  }

  .footer__bottom .footer__column:last-child {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .footer__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    margin-right: 25px;
  }

  .footer__text p {
    margin-bottom: 0;
  }

  .footer__text p:first-child {
    margin-right: 25px;
  }

  .footer__info {
    margin-bottom: 0;
  }
}

@media (max-width: 768px) {
  .footer__list {
    grid-template-columns: 1fr;
  }

  .footer__bottom .footer__row {
    grid-gap: 20px;
  }

  .footer__bottom .footer__column:first-child {
    grid-template-columns: 1fr;
    grid-gap: 20px;
  }

  .footer__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }

  .footer__logo {
    text-align: center;
  }

  .footer__write-us {
    text-align: center;
    margin-right: 0;
    margin-bottom: 10px;
  }

  .footer__group-write {
    margin-bottom: 20px;
  }

  .footer__text p {
    margin-bottom: 10px;
  }

  .footer__text {
    display: block;
  }

  .footer__text p:first-child {
    margin-right: 0;
  }

  .social__item {
    margin-right: 10px;
  }
}

@media (max-width: 600px) {
  .footer__bottom .footer__column:last-child {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .footer__text {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.animate-link {
  position: relative;
}

.animate-link::after {
  text-decoration: none;
  background: -webkit-linear-gradient(
    0deg,
    var(--text-color) 0%,
    var(--text-color) 100%
  );
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  right: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  -o-transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
  transition: width 0.3s cubic-bezier(0.47, 0, 0.745, 0.715);
}

.animate-link:hover::after {
  width: 100%;
  -webkit-transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  -o-transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  transition: width 0.3s cubic-bezier(0.29, 0.18, 0.26, 0.83);
  left: 0;
}
.main-header .animate-link::after,
.main-header .animate-link.--white::after,
.footer .animate-link.--white::after {
  background: -webkit-linear-gradient(0deg, #fff 0%, #fff);
}

.animate-link.--back::after {
  width: 100%;
}

.animate-link.--back:hover::after {
  width: 0%;
}

.animate-link.--gold::after {
  background: -webkit-linear-gradient(0deg, #a99478 0%, #a99478 100%);
}

.animate-link.--white::after {
  background: -webkit-linear-gradient(
    0deg,
    var(--text-color) 0%,
    var(--text-color) 100%
  );
}

.slideTo {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
  -ms-transform: translate(0, 100px);
  transform: translate(0, 100px);
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

.slideTo.animate {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeIn {
  opacity: 0;
  -webkit-transform: translate(-150px, 0);
  -ms-transform: translate(-150px, 0);
  transform: translate(-150px, 0);
  -webkit-transition: all 0.6s ease 0.1s;
  -o-transition: all 0.6s ease 0.1s;
  transition: all 0.6s ease 0.1s;
}

.fadeIn.animate {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.fadeOut {
  opacity: 0;
  -webkit-transform: translate(150px, 0);
  -ms-transform: translate(150px, 0);
  transform: translate(150px, 0);
  -webkit-transition: all 0.6s ease 0.1s;
  -o-transition: all 0.6s ease 0.1s;
  transition: all 0.6s ease 0.1s;
}

.fadeOut.animate {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}

.animButton {
  position: relative;
  overflow: hidden;
  color: #000000;
  background: #a99478;
}

.animButton::before {
  position: absolute;
  bottom: -50%;
  left: 0;
  z-index: 1;
  height: 100%;
  width: 101%;
  background-color: #263241;
  -webkit-transform: skewY(5.3deg) scaleY(0);
  -ms-transform: skewY(5.3deg) scaleY(0);
  transform: skewY(5.3deg) scaleY(0);
  -webkit-transform-origin: bottom center;
  -ms-transform-origin: bottom center;
  transform-origin: bottom center;
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  -o-transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  transition: transform 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  transition:
    transform 0.5s cubic-bezier(0.48, 0, 0.12, 1),
    -webkit-transform 0.5s cubic-bezier(0.48, 0, 0.12, 1);
  content: "";
}

.animButton::after {
  padding: 15px 15px 16px 15px;
  position: absolute;
  bottom: 0;
  top: 50%;
  left: 0;
  z-index: 2;
  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;
  text-align: center;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transform: translateY(225%);
  -ms-transform: translateY(225%);
  transform: translateY(225%);
  -webkit-transition:
    opacity 0.4s 0.2s,
    -webkit-transform 0.4s cubic-bezier(0.48, 0, 0.12, 1);
  transition:
    opacity 0.4s 0.2s,
    -webkit-transform 0.4s cubic-bezier(0.48, 0, 0.12, 1);
  -o-transition:
    opacity 0.4s 0.2s,
    transform 0.4s cubic-bezier(0.48, 0, 0.12, 1);
  transition:
    opacity 0.4s 0.2s,
    transform 0.4s cubic-bezier(0.48, 0, 0.12, 1);
  transition:
    opacity 0.4s 0.2s,
    transform 0.4s cubic-bezier(0.48, 0, 0.12, 1),
    -webkit-transform 0.4s cubic-bezier(0.48, 0, 0.12, 1);
  color: #fff;
  content: attr(data-content);
}

.animButton:hover::before {
  -webkit-transform: skewY(5.3deg) scaleY(2);
  -ms-transform: skewY(5.3deg) scaleY(2);
  transform: skewY(5.3deg) scaleY(2);
}

.animButton:hover:after {
  opacity: 1;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition-duration: 0.64s;
  -o-transition-duration: 0.64s;
  transition-duration: 0.64s;
}

.animButton.--dark::before {
  background: #fff;
}

.animButton.--dark::after {
  color: #263241;
}

@media (max-width: 768px) {
  .animButton::after {
    padding: 5px;
  }
}

@-webkit-keyframes fadeInScale {
  0% {
    opacity: 0;
    -webkit-transform: translate(-550px, 0) scale(0.7);
    transform: translate(-550px, 0) scale(0.7);
  }

  50% {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(0.7);
    transform: translate(0, 0) scale(0.7);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes fadeInScale {
  0% {
    opacity: 0;
    -webkit-transform: translate(-550px, 0) scale(0.7);
    transform: translate(-550px, 0) scale(0.7);
  }

  50% {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(0.7);
    transform: translate(0, 0) scale(0.7);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

.fadeInScale.animate {
  -webkit-animation-name: fadeInScale;
  animation-name: fadeInScale;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-timing-function: ease;
  animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes buttonSlie {
  0% {
    left: -95px;
  }

  100% {
    left: calc(100% + 95px);
  }
}

@keyframes buttonSlie {
  0% {
    left: -95px;
  }

  100% {
    left: calc(100% + 95px);
  }
}

.animButtonSlide {
  position: relative;
  overflow: hidden;
}

.animButtonSlide::before {
  content: "";
  position: absolute;
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(255, 255, 255, 0.1)),
    to(rgba(255, 255, 255, 0.4))
  );
  background: -o-linear-gradient(
    left,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1),
    rgba(255, 255, 255, 0.4)
  );
  width: 45px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -95px;
  -webkit-transform: skewX(-45deg);
  -ms-transform: skewX(-45deg);
  transform: skewX(-45deg);
}

.animButtonSlide:hover::before {
  -webkit-animation: buttonSlie 1s linear infinite;
  animation: buttonSlie 1s linear infinite;
}

.animButtonSlide.--white::before {
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(169, 148, 120, 0.1)),
    to(rgba(169, 148, 120, 0.4))
  );
  background: -o-linear-gradient(
    left,
    rgba(169, 148, 120, 0.1),
    rgba(169, 148, 120, 0.4)
  );
  background: linear-gradient(
    90deg,
    rgba(169, 148, 120, 0.1),
    rgba(169, 148, 120, 0.4)
  );
}

.mCSB_scrollTools .mCSB_dragger {
  height: 30px !important;
}

.contact-link-mobile {
  position: relative;
  padding-left: 30px;
  color: var(--text-color) !important;
}

/*.contact-link-mobile::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 16px;
  height: 24px;
  background: url(/local/templates/flatmarket/css/../img/icon-footer-tel.svg)
    no-repeat;
}*/

.contact-link-map {
  position: relative;
  display: block;
  padding-left: 30px;
}

/*.contact-link-map::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  width: 20px;
  height: 23px;
  background: url(/local/templates/flatmarket/css/../img/icon-footer-map.svg)
    no-repeat;
}*/

/* add new styles */

@media (max-width: 500px) {
  .theme-switcher {
    margin-right: 5px;
  }
  .header__fav {
    margin-right: 15px;
  }
}

@media (max-width: 768px) {
  .theme-switcher__item img {
    padding: 5px;
  }
}
@media (max-width: 378px) {
  .header-whatsapp {
    margin: 0 !important;
  }
}

.main-header {
  /* background: rgba(5, 2, 2, 0.14); */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
}

.main-header .nav-top__nav-item a,
.main-header .main-nav__link,
.main-header .header__work {
  color: #fff;
}

.main-header .header__logo,
.main-header .theme-switcher__item img {
  filter: invert(0);
}

.main-header .header__fav-icon svg path,
.main-header .line {
  stroke: #fff;
}

.main-nav,
.main-header .header__middle::before {
  background: transparent;
}

.header__fav-icon svg path {
  stroke: var(--text-color);
}

.theme-switcher__item img,
.pagination__item.--next a::before,
.pagination__item.--prev a::before,
.slider-arrow-next::before,
.slider-arrow-prev::before,
.product-extensions__icon {
  filter: invert(var(--filter-k));
}
.pagination__item.--next a:hover::before,
.pagination__item.--prev a:hover::before {
  filter: invert(0);
}

.consultation__group .main-btn.animButtonSlide {
  color: #333333;
}
.footer__work.status-work {
  color: #fff;
}
.filter-form__wrap-input:last-child {
  margin-top: -11px;
}

.main-header.scrolled {
  background: var(--bg-select-color);
}

.scrolled .header__logo,
.scrolled .theme-switcher__item img {
  filter: invert(var(--filter-k));
}

.scrolled .header__fav-icon svg path,
.scrolled .line {
  stroke: var(--text-color);
}

.scrolled.main-header .nav-top__nav-item a,
.scrolled.main-header .main-nav__link,
.scrolled.main-header .header__work {
  color: var(--text-color);
}

.scrolled.main-header .animate-link::after,
.scrolled.main-header .animate-link.--white::after {
  background: -webkit-linear-gradient(
    0deg,
    var(--text-color) 0%,
    var(--text-color)
  );
}

.scrolled.header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 10;
}

.scrolled .header__work.status-work {
  color: var(--text-color);
}

.wrapper {
  overflow: clip;
}

/* heading-video */

.header-intro {
  position: absolute;
  height: 678px;
  width: 100%;
}

.header-intro video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header.main-header {
  z-index: 10;
}

.header-intro__heading {
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 150%;
  text-align: center;
  display: block;
  position: relative;
  z-index: 1;
  padding-top: 200px;
  padding-bottom: 110px;
}
@media (max-width: 1170px) {
  .header-intro__heading {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .header-intro__heading {
    font-size: 28px;
  }
}
.main-page .filter-catalog__content > .container {
  /*
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	*/
  background: #fff;
  position: relative;
  padding: 0 26px 0;
  margin-bottom: 80px;
}
@media (max-width: 500px) {
  .header-intro__heading {
    font-size: 20px;
    padding: 46px 0 20px;
  }
  .header-intro {
    height: 738px;
  }
  .main-page .filter-catalog__content > .container {
    background: none;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 0;
    margin: 0 30px;
    padding: 0;
    border-radius: 6px;
  }
  .main-page .wrap-input__name {
    color: #fff;
  }
  .main-page .filter-form__all,
  .main-page .filter-form__clear {
    color: var(--text-filter-color);
  }
  .main-page .filter-form__bottom {
    padding-top: 15px;
    padding-bottom: 25px;
    border-bottom: none;
  }
  .main-page .filter-catalog__content-wrap {
    padding: 0 30px;
  }
  .main-page .catalog__product {
    padding: 50px 0;
  }
  .catalog__product {
    padding: 0;
  }
}

@media (max-width: 375px) {
  .header-intro {
    height: 768px;
  }
}
@media (max-width: 323px) {
  .header-intro {
    height: 788px;
  }
}

.block-visible {
  display: none;
}

.bg-apartments::before,
.bg-apartments {
  background: var(--bg-select-color);
}

.main-page .catalog__filter.filter-catalog {
  position: relative;
  z-index: 9;
}

.main-header .header__top::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: -100vw;
  right: -100vw;
  background: rgba(5, 2, 2, 0.14);
  z-index: 0;
}

.main-header .scrolled.header__top::before {
  background: none;
}
.header-whatsapp {
  z-index: 11;
}

.main__heading {
  font-size: 38px;
  font-weight: 400;
  line-height: 130%;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .main__heading {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .main__heading {
    font-size: 18px;
  }
}

.faq-block {
  max-width: 1400px;
  margin: 0 auto 80px;
}

.faq-block__items {
  margin: 31px 0 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-block__item {
  border-radius: 6px;
  border: 1px solid var(--border-faq);
  background: var(--theme-color);
  padding: 18px 24px;
  position: relative;
}

/*
.faq-block__item:nth-child(n+6) {
	display: none;
}

.faq-block__items-full .faq-block__item:nth-child(n+6) {
	display: block
}
*/

.faq-block__item-active::after {
  transform: rotate(90deg);
}

.faq-block__heading {
  gap: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 38px;
  line-height: 130%;
  color: var(--text-color);
}

.faq-block__heading h3{
  font-size: 38px;
  line-height: 130%;
}

.faq-block__heading::after {
  background: url(../img/icon-faq-more.svg) no-repeat center;
  width: 16px;
  height: 16px;
  display: block;
  content: "";
  transition: all 0.35s ease-in-out;
}

.faq-block__item-active .faq-block__heading h3 {
  color: #a99478;
  font-size: 38px;
  line-height: 130%;
}

.faq-block__item-active .faq-block__heading::after {
  transform: rotate(90deg);
  transition: all 0.35s ease-in-out;
}

.faq-block__content {
  font-size: 18px;
  line-height: 150%;
  opacity: 0.85;
  overflow: hidden;
  transition: height 0.35s ease-in-out;
  height: 0px;
}

.faq-block__item-active .faq-block__content {
  margin-top: 10px;
  height: auto;
}

.faq-block__showmore {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  background: #a99478;
  padding: 10px 70px;
  width: 250px;
  margin: 45px auto 0;
  display: block;
  color: #fff;
}

@media (max-width: 1450px) {
  .faq-block {
    padding: 0 15px;
  }
}

@media (max-width: 767px) {
  .faq-block h2 {
    font-size: 18px;
  }
  .faq-block {
    margin: 0 auto 40px;
  }
  .faq-block__items {
    margin-top: 20px;
  }
  .faq-block__heading {
    font-size: 16px;
  }
  .faq-block__content {
    font-size: 14px;
  }
}

.order .container {
  padding-bottom: 25px;
}

@media (max-width: 767px) {
  .order .container {
    padding-bottom: 15px;
  }
}

.carousel__btn {
  background: url(../img/icon-arrow.svg) no-repeat center;
  background-color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  position: absolute;
  display: block;
  z-index: 5;
  transition: background 0.3s ease;
}

.carousel__btn:hover {
  background: url(../img/icon-arrow-hover.svg) no-repeat center;
  background-color: #a99478;
  transition: background 0.3s ease;
}

.carousel__btn-prev {
  left: 0;
  top: 50%;
  margin-top: -20px;
  margin-left: -20px;
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}

.carousel__btn-next {
  right: 0;
  top: 50%;
  margin-top: -20px;
  margin-right: -20px;
}

.features__wrapper {
  border-radius: 10px;
  background: #f6f6f5;
  margin: 0 auto 80px;
  max-width: 1760px;
  width: 100%;
  padding: 70px 0 80px;
}

.features__heading {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  color: #222;
  margin-bottom: 40px;
}

.features__conatiner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  overflow: hidden;
}

.features__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  opacity: 0;
}

.features__pagination .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  border: 1px solid #a99478;
  opacity: 0.25;
  border-radius: 100%;
  background: #fff;
  margin: 0;
}

.features__pagination .swiper-pagination-bullet-active {
  width: 13px;
  height: 13px;
  opacity: 1;
  background: #a99478;
}

.features__icon {
  background: no-repeat center;
  width: 150px;
  height: 150px;
}

.features__item-1 .features__icon {
  background-image: var(--feat-1);
}

.features__item-2 .features__icon {
  background-image: var(--feat-2);
}

.features__item-3 .features__icon {
  background-image: var(--feat-3);
}

.features__item-4 .features__icon {
  background-image: var(--feat-4);
}

.features__item {
  display: flex;
  flex-direction: column;
}

.features__title {
  color: #222;
  font-size: 22px;
  font-weight: 600;
  margin-top: 40px;
}

.features__content {
  color: #333;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.5;
  margin-top: 15px;
}

@media (max-width: 1776px) {
  .features__wrapper {
    border-radius: 0;
  }
}

@media (max-width: 1169px) {
  .features__pagination {
    opacity: 1;
  }
}

@media (max-width: 1450px) {
  .features__wrapper {
    padding: 70px 15px 80px;
  }
}

@media (max-width: 900px) {
  .features__wrapper {
    padding: 30px 15px;
  }
  .features__heading {
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .features__wrapper {
    margin: 0 auto 40px;
  }
}

.popular {
  margin: 0 auto 80px;
  max-width: 100%;
  width: 1400px;
}

.popular__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.popular__item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}

.popular__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.popular__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.popular__item:hover img {
  transform: scale(1.05, 1.05);
  transition: all 0.3s ease;
}

.popular__name {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 5;
}

.popular__counter {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 5;
}

.popular__item:nth-child(4n + 3) .popular__counter,
.popular__item:nth-child(4n) .popular__counter,
.popular__item:nth-child(4n + 3) .popular__name,
.popular__item:nth-child(4n) .popular__name {
  left: 30px;
  right: auto;
}

@media (max-width: 1450px) {
  .popular {
    padding: 0 15px;
  }
}

@media (max-width: 722px) {
  .popular {
    width: 100%;
    margin: 0 auto 40px;
  }
  .popular__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .popular__name {
    font-size: 18px;
    top: 20px;
    right: 15px;
  }
  .popular__counter {
    bottom: 20px;
    right: 15px;
    z-index: 5;
  }
  .popular__item:nth-child(4n + 3) .popular__counter,
  .popular__item:nth-child(4n) .popular__counter,
  .popular__item:nth-child(4n + 3) .popular__name,
  .popular__item:nth-child(4n) .popular__name {
    left: 15px;
    right: auto;
  }
}

@media (max-width: 587px) {
  .popular__item img {
    height: 260px;
    object-fit: cover;
  }
}

.montly {
  margin: 0 auto 80px;
  max-width: 100%;
  width: 1400px;
}

.montly img {
  border-radius: 5px;
  width: 100%;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.montly__item:hover img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.montly__wrapper {
  position: relative;
}

.montly__heading {
  margin: 0 auto 40px;
}

.montly__container {
  position: relative;
}

.montly__overlay {
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: block;
}

.montly__features {
  position: absolute;
  left: 15px;
  top: 15px;
  display: flex;
  gap: 5px;
  z-index: 20;
}

.montly__controls {
  position: absolute;
  right: 15px;
  top: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  z-index: 30;
}

.montly__control {
  border-radius: 100%;
  background: #002b45;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

.montly__control:hover,
.montly__control.added {
  background: #a99478;
  transition: all 0.3s ease;
}

.montly__hint {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 101%;
  padding: 5px 10px;
  border-radius: 4px;
  background: #002b45;
  color: #fff;
  font-size: 14px;
  transition: all 0.3s ease;
  z-index: 30;
}

.montly__control:hover .montly__hint {
  opacity: 1;
  visibility: visible;
}

.montly__feature {
  padding: 10px;
  display: flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background: #003e64;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.montly__feature::before {
  background: url(../img/icon-montly-size.svg) no-repeat center;
  width: 21px;
  height: 21px;
  display: block;
  content: "";
}

.montly__feature-bedrooms::before {
  background: url(../img/icon-montly-bedrooms.svg) no-repeat center;
  width: 21px;
  height: 21px;
  display: block;
  content: "";
}

.montly__title {
  color: var(--text-color);
  font-size: 22px;
  font-weight: 600;
  line-height: normal;
  margin: 15px 0 12px;
  display: block;
  transition: all 0.3s ease;
}

.montly__item:hover .montly__title {
  color: #a99478;
  transition: all 0.3s ease;
}

.montly__price {
  color: var(--text-color);
  font-size: 14px;
  font-weight: 400;
}

.montly__price > span {
  opacity: 0.25;
}

@media (max-width: 1450px) {
  .montly {
    padding: 0 15px;
  }
  .montly__wrapper .carousel__btn-prev {
    margin-left: 0;
  }
  .montly__wrapper .carousel__btn-next {
    margin-right: 0;
  }
}

@media (max-width: 1140px) {
  .montly__features {
    left: 10px;
    top: 10px;
  }
  .montly__controls {
    right: 10px;
    top: 10px;
  }
  .montly__title {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  /*
	.montly__wrapper .carousel__btn-prev {
		display: none;
	}
	*/
  .montly__control:nth-child(2) {
    display: none;
  }
  .montly__heading {
    margin: 0 auto 20px;
  }
  .montly {
    width: 100%;
    margin: 0 auto 40px;
  }
}

.topcat {
  margin: 0 auto 80px;
  max-width: 100%;
  width: 1400px;
}

.topcat__holder {
  position: relative;
}

.topcat__nav {
  display: grid;
  grid-template-columns: repeat(3, auto);
  margin-bottom: 40px;
  gap: 40px;
  justify-content: center;
}

.topcat__nav a {
  font-size: 30px;
  font-weight: 600;
  color: var(--text-color);
  opacity: 0.25;
  display: block;
  text-align: center;
  transition: opacity 0.3s ease;
}

.topcat__nav a:hover,
.topcat__nav a.active {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.topcat__item a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
}

.topcat__item a img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.topcat__item a:hover img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.topcat__title {
  color: var(--text-color);
  font-size: 14px;
  line-height: 130%;
  text-align: center;
}

.topcat__item.swiper-slide {
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.topcat__item.swiper-slide-visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.topcat__showmore {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  background: #a99478;
  padding: 10px 70px;
  max-width: 218px;
  margin: 40px auto 0;
  display: block;
  color: #fff;
}

.topcat__holder .carousel__btn-next,
.topcat__holder .carousel__btn-prev {
  top: 50px;
}

@media (max-width: 1450px) {
  .topcat {
    width: 100%;
    padding: 0 15px;
  }
  .topcat__holder .carousel__btn-prev {
    top: 50%;
    margin-left: 0;
  }
  .topcat__holder .carousel__btn-next {
    top: 50%;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .topcat__nav a {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .topcat {
    width: 100%;
    margin: 0 auto 40px;
  }
  .topcat__showmore {
    margin: 20px auto 0;
  }
}

@media (max-width: 699px) {
  .topcat__nav {
    margin-bottom: 20px;
    gap: 15px;
  }
  .topcat__nav a {
    font-size: 14px;
  }
}

@media (max-width: 500px) {
  .topcat {
    margin: 80px auto 40px;
  }
}

@media (max-width: 340px) {
  .topcat__nav a {
    font-size: 12px;
  }
}

.midcat {
  margin: 0 auto 80px;
  max-width: 100%;
  width: 1400px;
}

.midcat__wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.midcat__item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  flex-shrink: 1;
}

.midcat__item img {
  display: block;
  width: 100%;
  transition: all 0.3s ease;
}

.midcat__item:hover img {
  transform: scale(1.05, 1.05);
  transition: all 0.3s ease;
}

.midcat__item::after {
  width: 20px;
  height: 20px;
  background: url(../img/icon-follow.svg) no-repeat center;
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
}

.midcat__title {
  position: absolute;
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  bottom: 20px;
  left: 25px;
}

@media (max-width: 1450px) {
  .midcat {
    width: 100%;
    padding: 0 15px;
  }
  .midcat__item {
    width: calc((100% / 3) - 30px);
  }
}

@media (max-width: 1100px) {
  .midcat__wrapper {
    gap: 20px;
  }
  .midcat__item {
    width: calc((100% / 2) - 10px);
  }
}

@media (max-width: 767px) {
  .midcat {
    margin: 0 auto 40px;
  }
  .midcat__title {
    font-size: 18px;
    bottom: 15px;
    left: 15px;
  }
}

@media (max-width: 599px) {
  .midcat__item {
    width: 100%;
  }
}

/*
.lowcat {
	margin: 0 auto 80px;
	max-width: 100%;
    width: 1400px;
}

.lowcat__wrapper {
	display: grid;
	justify-items: stretch;
	grid-template-columns: repeat(2,1fr);
	gap: 40px;
}

.lowcat__item {
	position: relative;
	overflow: hidden;
	border-radius: 5px;
}

.lowcat__item:nth-child(1) {
	grid-column: span 2;
}


.lowcat__item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all .3s ease;
}

.lowcat__item:hover img {
	transform: scale(1.05,1.05);
	transition: all .3s ease;
}

.lowcat__info {
	position: absolute;
	top: 30px;
	bottom: 30px;
	right: 0px;
	width: 228px;
	border-left: 1px solid #fff;
	padding-left: 20px;
	padding-right: 30px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.lowcat__title {
	color: #FFF;
	font-size: 22px;
	font-weight: 600;
	line-height: 130%;
}

.lowcat__item:nth-child(1) .lowcat__title {
	font-size: 30px;
}

.lowcat__item:nth-child(1) .lowcat__info {
	width: 439px;
	padding-right: 150px;
}

.lowcat__content {
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 24px
}

@media (max-width: 1450px) {
	.lowcat   {
		width: 100%;
		padding: 0 15px;
	}
}

@media (max-width: 1100px) {
	.lowcat__item:nth-child(1) {
		height: 200px;
	}
}

@media (max-width: 928px) {
	.lowcat__title {
		font-size: 18px;

	}

	.lowcat__content {
		font-size: 14px;
		line-height: 140%;
	}
}

@media (max-width: 767px) {
	.lowcat {
		margin: 0 auto 40px;
		width: 100%;
	}
	.lowcat__wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.lowcat__item {
		height: 200px;
	}
	.lowcat__item:nth-child(1) {
		grid-column: span 1;
	}
	.lowcat__item:nth-child(1) .lowcat__title {
		font-size: 18px;
	}
	.lowcat__item:nth-child(1) .lowcat__info {
		width: 228px;
		padding-right: 30px;
	}
}

@media (max-width: 500px) {
	.lowcat__item:nth-child(1) .lowcat__info,
	.lowcat__info {
		top: 20px;
		bottom: 20px;
		width: 60%;
		padding-left: 15px;
		padding-right: 10px;
	}
}
*/
.customcat,
.lowcat {
  margin: 0 auto 80px;
  max-width: 100%;
  width: 1400px;
}

.customcat__wrapper,
.lowcat__wrapper {
  display: grid;
  justify-items: stretch;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.customcat__item,
.lowcat__item {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  display: block;
}

.customcat__item {
  height: 320px;
}

.lowcat__item:nth-child(1) {
  grid-column: span 2;
}

.customcat__item img,
.lowcat__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}

.customcat__item:hover img,
.lowcat__item:hover img {
  transform: scale(1.05, 1.05);
  transition: all 0.3s ease;
}

.customcat__info,
.lowcat__info {
  position: absolute;
  top: 30px;
  bottom: 30px;
  right: 0px;
  width: 228px;
  border-left: 1px solid #fff;
  padding-left: 20px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.customcat__title,
.lowcat__title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
}

.lowcat__item:nth-child(1) .lowcat__title {
  font-size: 30px;
}

.lowcat__item:nth-child(1) .lowcat__info {
  width: 439px;
  padding-right: 150px;
}

.customcat__item:nth-child(n + 17) {
  display: none;
}

.customcat.active .customcat__item:nth-child(n + 17) {
  display: block;
}

.customcat__content,
.lowcat__content {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

@media (max-width: 1450px) {
  .customcat,
  .lowcat {
    width: 100%;
    padding: 0 15px;
  }
}

@media (max-width: 1100px) {
  .lowcat__item:nth-child(1) {
    height: 200px;
  }
  .customcat__item,
  .lowcat__item {
    height: 200px;
  }
}

@media (max-width: 928px) {
  .customcat__title,
  .lowcat__title {
    font-size: 18px;
  }
  .customcat__content,
  .lowcat__content {
    font-size: 14px;
    line-height: 140%;
  }
}

@media (max-width: 767px) {
  .customcat,
  .lowcat {
    margin: 0 auto 40px;
    width: 100%;
  }
  .customcat__wrapper,
  .lowcat__wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .customcat__item,
  .lowcat__item {
    height: 200px;
  }
  .lowcat__item:nth-child(1) {
    grid-column: span 1;
  }
  .lowcat__item:nth-child(1) .lowcat__title {
    font-size: 18px;
  }
  .lowcat__item:nth-child(1) .lowcat__info {
    width: 228px;
    padding-right: 30px;
  }
}

@media (max-width: 500px) {
  .lowcat__item:nth-child(1) .lowcat__info,
  .customcat__info,
  .lowcat__info {
    top: 20px;
    bottom: 20px;
    width: 60%;
    padding-left: 15px;
    padding-right: 10px;
  }
}

.videos {
  margin: 0 auto 80px;
  max-width: 100%;
  width: 1400px;
}

.videos__heading {
  margin: 0 auto 15px;
}

.videos__content {
  margin: 0 auto 40px 0;
  line-height: 24px;
  max-width: 674px;
  opacity: 0.75;
}

.videos__wrapper {
  position: relative;
}

.videos__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 5px;
  overflow: hidden;
}

.videos__container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  background: center/cover no-repeat;
}

.videos__container iframe {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.videos__button {
  position: absolute;
  left: 50%;
  top: 50%;
  margin: -40px 0 0 -40px;
  z-index: 4;
  width: 80px;
  height: 80px;
  border-radius: 80px;
  background: #003759;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  cursor: pointer;
}

.videos__item-loaded img,
.videos__item-loaded .videos__button {
  display: none;
}

.videos__item img {
  opacity: 0.8;
  transition: opacity 0.3s ease;
  width: 100%;
  top: -41px;
  position: relative;
}

.videos__item:hover img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.videos__item:hover .videos__button {
  background: #a99478;
  transition: background 0.3s ease;
}

.videos__item.swiper-slide {
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.videos__item.swiper-slide-visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}

@media (max-width: 1450px) {
  .videos {
    padding: 0 15px;
  }
  .videos__wrapper .carousel__btn-prev {
    margin-left: 0;
  }
  .videos__wrapper .carousel__btn-next {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  /*
	.videos__wrapper .carousel__btn-prev {
		display: none;
	}
	*/
  .videos {
    width: 100%;
    margin: 0 auto 40px;
  }
  .videos__button {
    position: absolute;
    width: 65px;
    height: 65px;
    margin: -32px 0 0 -32px;
  }
}

.districts {
  margin: 0 auto 80px;
  max-width: 100%;
  width: 1400px;
}

.districts__heading {
  margin: 0 auto 40px;
}

.districts__wrapper {
  position: relative;
}

.districts__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border-radius: 5px;
  overflow: hidden;
}

.districts__item img {
  width: 100%;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.districts__item:hover img {
  opacity: 1;
  transform: scale(1.05, 1.05);
  transition: all 0.3s ease;
}

.districts__item.swiper-slide {
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.districts__item.swiper-slide-visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.districts__item a::after {
  width: 20px;
  height: 20px;
  background: url(../img/icon-follow.svg) no-repeat center;
  content: "";
  position: absolute;
  right: 16px;
  top: 16px;
}

.districts__title {
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  line-height: 130%;
  position: absolute;
  z-index: 5;
  bottom: 20px;
  left: 25px;
}

.districts__showmore {
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 6px;
  background: #a99478;
  padding: 10px 70px;
  max-width: 332px;
  margin: 45px auto 0;
  display: block;
  color: #fff;
}

@media (max-width: 1450px) {
  .districts {
    padding: 0 15px;
  }
  .districts__wrapper .carousel__btn-prev {
    margin-left: 0;
  }
  .districts__wrapper .carousel__btn-next {
    margin-right: 0;
  }
}

@media (max-width: 767px) {
  /*
	.districts__wrapper .carousel__btn-prev {
		display: none;
	}
	*/
  .districts {
    width: 100%;
    margin: 0 auto 40px;
  }
  .districts__title {
    font-size: 18px;
    font-weight: 600;
    bottom: 15px;
    left: 15px;
  }
}

.blog {
  margin: 0 auto 80px;
  max-width: 100%;
  width: 1400px;
}

.blog__wrapper {
  position: relative;
}

.blog__wrapper .carousel__btn-prev {
  top: 35%;
}

.blog__wrapper .carousel__btn-next {
  top: 35%;
}

.blog__heading {
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 55px;
}

.blog__sections {
  flex-grow: 1;
  display: flex;
  gap: 30px;
  align-items: center;
}

.blog__sections a {
  font-size: 16px;
  font-weight: 600;
  opacity: 0.25;
  color: var(--text-color);
  transition: opacity 0.3s ease;
}

.blog__sections a:hover,
.blog__sections a:first-of-type {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.blog__item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 15px;
}

.blog__item img {
  width: 100%;
  border-radius: 5px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.blog__item:hover img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.blog__item.swiper-slide {
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.blog__item.swiper-slide-visible {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.blog__tags {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.blog__tag {
  background: var(--bg-tag);
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 5px;
}

.blog__date {
  font-size: 14px;
  opacity: 0.5;
  color: var(--theme-text);
}

.blog__all {
  display: flex;
}

.blog__showmore {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
}

.blog__showmore::after {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: url(../img/icon-more.svg) center no-repeat;
  background-color: var(--bg-more);
  display: block;
  content: "";
}

.blog__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  color: var(--theme-text);
  transition: color 0.3s ease;
}

.blog__item:hover .blog__title {
  color: #a99478;
}

@media (max-width: 1450px) {
  .blog {
    padding: 0 15px;
  }
  .blog__wrapper .carousel__btn-prev {
    top: 50%;
    margin-left: 0;
  }
  .blog__wrapper .carousel__btn-next {
    top: 50%;
    margin-right: 0;
  }
}

@media (max-width: 900px) {
  .blog__title {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  /*
	.blog__wrapper .carousel__btn-prev {
		display: none;
	}
	*/
  .blog {
    margin: 0 auto 40px;
  }
  .blog__heading {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0;
  }
  .blog__heading .main__heading {
    order: 0;
    width: 50%;
  }
  .blog__all {
    order: 1;
    width: 50%;
    justify-content: flex-end;
  }
  .blog__sections {
    order: 2;
    width: 100%;
    margin-top: 16px;
  }
  .blog__heading {
    margin: 0 auto 20px;
  }
}

@media (max-width: 380px) {
  .blog__sections {
    gap: 0;
    justify-content: space-between;
  }
  .blog__sections a {
    font-size: 14px;
  }
}

.about-block {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}

.about-block__wrapper {
  padding: 80px 15px;
  border-radius: 10px;
  width: 100%;
  margin: 0 auto;
}

.about-block__wrapper h2 {
  font-size: 38px;
  line-height: 130%;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.about-block__wrapper-top {
  max-width: 1760px;
  background: var(--bg-about);
  border: 1px solid var(--border-about);
}

.about-block__wrapper-bottom {
  max-width: 1400px;
}

.about-grid {
  display: grid;
  grid-template-columns: auto 400px;
  gap: 80px;
  width: 100%;
  max-width: 1395px;
  margin: 0 auto;
}

.about-grid__image {
  background: url(../img/image-about.webp) top center/cover;
  border-radius: 10px;
  min-height: 600px;
  position: relative;
}

.about-grid__image img {
  border-radius: 10px;
  display: none;
}

.about-grid__image::after {
  position: absolute;
  content: "";
  top: 0px;
  bottom: 0px;
  right: -39px;
  width: 1px;
  opacity: 0.05;
  background: #fff;
}

@media (max-width: 1050px) {
  .about-grid {
    grid-template-columns: auto 300px;
    gap: 40px;
  }
  .about-grid__image::after {
    right: -19px;
  }
}

.about-grid__items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  justify-content: space-between;
}

.about-grid__items-mobile {
  display: none;
}

.about-grid__item-active {
  flex-grow: 1;
}

.about__heading {
  color: var(--text-color);
  font-size: 30px;
  font-weight: 600;
  line-height: 120%;
  display: block;
  transition: all 0.3s ease;
}

.about__heading:hover {
  color: #a99478;
  transition: all 0.3s ease;
}

.about__content {
  color: var(--text-color);
  line-height: 24px;
  font-size: 16px;
  opacity: 0.75;
  overflow: hidden;
  transition: height 0.35s ease-in-out;
}

.about__content a {
  color: #a99478;
}

.about-grid__items-mobile .about__content a,
.about-grid__item .about__content a {
  color: var(--text-color);
  display: block;
  text-decoration: underline;
}

.about__content ul {
  margin: 20px 0 10px;
}

.about__content ul li {
  color: var(--text-color);
  margin: 0 0 10px 20px;
  list-style: disc;
}

.about__content p {
  margin-top: 20px;
}

.about__showmore {
  color: var(--text-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
}

.about__showmore::after {
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background: url(../img/icon-more.svg) center no-repeat;
  background-color: var(--bg-more);
  display: block;
  content: "";
  transition: all 0.3s ease;
}

.blog__showmore:hover::after,
.about__showmore:hover::after {
  background-color: #a99478;
  transition: all 0.3s ease;
}

@media (max-width: 767px) {
  .about-block {
    margin: 0 auto 15px;
  }
  .about-block__wrapper {
    padding: 15px;
  }
  .about-block__wrapper-top {
    border: none;
  }
  .about-block__wrapper h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 50px 0 0;
  }
  .about-grid {
    grid-template-columns: auto;
    gap: 20px;
  }
  .about-grid__image::after {
    display: none;
  }
  .about-grid__image {
    background: none;
    min-height: auto;
  }
  .about-grid__image img {
    display: block;
    width: 100%;
  }
  .about-grid__items {
    gap: 10px;
  }
  .about-grid__items-mobile {
    display: block;
    position: relative;
  }
  .about-grid__items-mobile::before {
    position: absolute;
    content: "";
    left: 0;
    right: 0;
    top: 0px;
    height: 1px;
    opacity: 0.05;
    background: #fff;
  }
  .about-grid__item .about__content {
    display: none;
  }
  .about__heading {
    font-size: 18px;
    opacity: 0.25;
  }
  .about-grid__item-active .about__heading {
    opacity: 1;
  }
  .about-grid__items-mobile .about__content {
    display: none;
  }
  .about-grid__items-mobile .about__content-active {
    display: block;
  }
  .about__showmore {
    margin-top: 20px;
  }
}

.measures__container {
  display: flex;
  width: 100%;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 15px;
}

.measures__wrapper {
  display: flex;
  border-radius: 5px;
  overflow: hidden;
}

.measures__title {
  color: #b3a188;
  font-size: 16px;
  font-weight: 400;
}

.measures__title-inner {
  color: var(--text-color);
}

@media (max-width: 500px) {
  .measures__title {
    font-size: 12px;
    color: #fff;
  }
  .measures__container {
    margin-bottom: 10px;
  }
}

.js-measures {
  background: #71604a;
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  padding: 3px 22px;
  display: block;
  cursor: pointer;
}

.js-measures.current {
  font-weight: 600;
  background: #a99478;
  color: #fff;
}

.popup-video-wrapper {
  width: 100%;
  display: block;
}

.popup-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: center/cover no-repeat;
}

.popup-video iframe {
  left: 0;
  top: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}

.header-whatsapp {
  display: flex;
  gap: 10px;
}

.header-whatsapp a img {
  max-width: initial !important;
  height: 50px;
}

@media (max-width: 768px) {
  .header-whatsapp a img {
    height: 30px;
  }
}

@media (max-width: 360px) {
  .header-whatsapp {
    display: none;
  }
}

@media (min-width: 360px) and (max-width: 400px) {
  .header-whatsapp .tele-link {
    display: none;
  }
}

.uae-contact-block {
  border-radius: 12px;
  margin: 38px 0;
  padding: 32px 28px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.11rem;
  box-shadow: 0 6px 20px rgba(35, 102, 181, 0.1);
}
.uae-contact-block h2 {
  color: #004a8a;
  border: none;
  margin-top: 0;
  font-weight: 800;
  font-size: 1.37rem;
  letter-spacing: 0.01em;
}
.uae-contact-block h3 {
  color: #004a8a;
  font-weight: 700;
  margin-top: 20px;
  font-size: 1.22rem;
}
.uae-contact-block h4 {
  color: #786229;
  font-weight: 700;
  margin-top: 15px;
  font-size: 1.12rem;
}
.uae-contact-block h5 {
  color: #786229;
  font-weight: 600;
  margin-top: 12px;
  font-size: 1.03rem;
}
.uae-contact-block .contact-label {
  font-weight: 600;
  letter-spacing: 0.03em;
  padding-top: 12px;
  color: #293147;
}
.uae-contact-block .contact-link-mobile {
  display: inline-block;
  color: #004a8a;
  font-weight: 700;
  font-size: 1.18rem;
  text-decoration: none;
  padding: 0;
  margin-top: 8px;
  margin-bottom: 12px;
  transition: color 0.2s;
  background: transparent !important;
  border-radius: 0 !important;
  vertical-align: middle;
}
.uae-contact-block .contact-link-mobile:hover {
  color: #003360;
  text-decoration: underline;
}
.uae-contact-block .contact-link-map {
  font-weight: 700;
  color: #786229;
  font-size: 1.09rem;
  background: rgba(191, 166, 90, 0.13);
  border-radius: 6px;
  padding: 6px 10px;
  display: inline-block;
  margin-top: 8px;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
  vertical-align: middle;
}
.uae-contact-block .license-info {
  margin-top: 21px;
  background: #fff9e1;
  color: #786229;
  border-left: 5px solid #ffc107;
  border-radius: 8px;
  padding: 10px 22px;
  margin-bottom: 8px;
  font-size: 1.04rem;
}
.uae-contact-block .company-title {
  color: #786229;
  font-weight: 800;
  font-size: 1.07rem;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
/* Отступы для иконок */
.uae-contact-block .phone-icon,
.uae-contact-block .location-icon {
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  font-size: 1.3rem;
  padding-left: 6px;
}
.uae-contact-block iframe {
  border-radius: 12px;
  margin-top: 15px;
  border: none;
  width: 100%;
  min-height: 420px;
  max-height: 600px;
  background: #f4f8fb;
}
@media (max-width: 600px) {
  .uae-contact-block {
    padding: 14px 5px 20px 5px;
  }
  .uae-contact-block h2 {
    font-size: 1.09rem;
  }
  .uae-contact-block h3 {
    font-size: 1.01rem;
  }
  .uae-contact-block h4 {
    font-size: 0.95rem;
  }
  .uae-contact-block h5 {
    font-size: 0.9rem;
  }
  .uae-contact-block .contact-link-mobile {
    font-size: 1rem;
  }
  .uae-contact-block iframe {
    min-height: 220px;
  }
}

.uae-property-article {
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: #f4f8fb;
  border-radius: 15px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: #293147;
  line-height: 1.7;
}
.uae-property-article h2 {
  color: #007acc;
  border-bottom: 3px solid #007acc;
  padding-bottom: 8px;
  margin-top: 35px;
  margin-bottom: 19px;
  font-weight: 700;
  font-size: 1.7rem;
}
.uae-property-article h3 {
  color: #284a81;
  margin-top: 23px;
  font-weight: 700;
  font-size: 1.24rem;
}
.uae-property-article h4 {
  color: #3a4c66;
  margin-top: 18px;
  font-weight: 600;
  font-size: 1.09rem;
}
.uae-property-article h5 {
  color: #425874;
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.03rem;
}
.uae-property-article .article-meta {
  background: #e7f3ff;
  border-left: 4px solid #007acc;
  border-radius: 9px;
  margin: 25px 0 22px 0;
  padding: 18px 22px;
  font-size: 1.08rem;
}
.uae-property-article .author-info strong,
.uae-property-article .date-info strong {
  color: #007acc;
}
.uae-property-article ul,
.uae-property-article ol {
  padding-left: 21px;
}
.uae-property-article li {
  margin: 7px 0;
}
.uae-property-article .checklist,
.uae-property-article .advice-block {
  background: #fff9e1;
  border-left: 5px solid #ffc107;
  padding: 15px 22px;
  border-radius: 7px;
  margin: 27px 0 22px 0;
  color: #786229;
}
.uae-property-article strong {
  color: #007acc;
}
.uae-property-article a {
  color: #095ec7;
  border-bottom: 1px dotted #128bcc;
  text-decoration: none;
  transition: all 0.2s;
}
.uae-property-article a:hover {
  background: #e7f3ff;
  border-bottom: 1px solid #007acc;
}
@media (max-width: 650px) {
  .uae-property-article {
    padding: 8px;
  }
  .uae-property-article h2 {
    font-size: 1.19rem;
  }
  .uae-property-article h3 {
    font-size: 1.01rem;
  }
}
