@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-Bold.woff") format("woff"), url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-ExtraBold.woff") format("woff"), url("../fonts/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-Regular.woff") format("woff"), url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-SemiBold.woff") format("woff"), url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Inter";
  font-display: swap;
  src: url("../fonts/Inter-Medium.woff") format("woff"), url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
}

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

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

:focus,
:active {
  outline: none;
}

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

aside,
nav,
footer,
header,
section {
  display: block;
}

html,
body {
  height: 100%;
  min-width: 320px;
}

body {
  line-height: 1;
  font-family: "Inter";
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
  font-family: "Inter";
}

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;
}

img {
  vertical-align: top;
}

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

body {
  color: #313131;
  font-size: 16px;
}

body::after {
  content: "";
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(17, 56, 55, 0.55);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

body._popup-open {
  overflow: hidden;
}

body._lock {
  overflow: hidden;
}

body._lock::after {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.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;
}

._container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0px 20px;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0px 0px;
}

.btn._fw {
  width: 100%;
}

.select {
  position: relative;
  z-index: 1;
}

.select__item {
  position: relative;
}

.select__title {
  color: #313131;
  border: 1px solid #DCDCDC;
  background-color: #fff;
  cursor: pointer;
  border-radius: 8px;
  max-width: 100%;
}

.select__value {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  height: 50px;
  padding: 0px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  font-weight: 500;
  line-height: 2;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.select__value._placeholder {
  color: #8B8B8B;
}

.select__value span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.select__value:before {
  content: "";
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
  background: url("../img/icons/select.svg") center/100% no-repeat;
}

.select__input {
  width: 100%;
  background-color: transparent;
  height: 100%;
}

.select__options {
  color: #313131;
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  border-radius: 8px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #DCDCDC;
  font-size: 14px;
  padding: 5px 0px 5px 0px;
  overflow-y: auto;
  max-height: 350px;
  z-index: 2;
}

.select__option {
  cursor: pointer;
  padding: 10px 20px;
  margin: 0px 0px 0px 0px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.select._active {
  z-index: 2;
}

.select._active .select__value:before {
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}

.select._active .select__options {
  display: block;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.input {
  border-radius: 8px;
  border: 1px solid #DCDCDC;
  background: #FFF;
  padding: 10px 20px;
  color: #8B8B8B;
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  font-size: 14px;
  font-weight: 500;
  min-height: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.input._focus {
  color: #313131;
}

.input:focus {
  border-color: #313131;
}

.input._error {
  border-color: red !important;
}

textarea.input {
  resize: none;
  padding: 16px 20px;
  overflow-y: auto;
  height: 100px;
}

.checkbox {
  position: relative;
}

.checkbox__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.checkbox__input:checked + .checkbox__text:before {
  background: url("../img/icons/check.svg") center/22px no-repeat, #113837;
}

.checkbox__text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  font-size: 16px;
  color: #313131;
  font-weight: 400;
  cursor: pointer;
}

.checkbox__text:before {
  content: "";
  -ms-flex-item-align: start;
      align-self: flex-start;
  margin: 0px 15px 0px 0px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  border: 1px solid #113837;
  background: transparent;
}

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

.checkbox._error .checkbox__text:before {
  border: 1px solid #ee1212;
}

.options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}

.options__item {
  position: relative;
  cursor: pointer;
}

.options__input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 0;
  visibility: hidden;
}

.options__input:checked + .options__text {
  background: #113837;
  color: #fff;
  border-color: #113837;
}

.options__text {
  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: 50px;
  background: #fff;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  padding: 10px 20px;
  min-height: 50px;
  min-width: 50px;
}

.rating-block {
  display: table;
  font-size: 0;
}

.rating {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.rating.edit .star {
  cursor: pointer;
}

.rating .star {
  width: 17px;
  height: 14px;
  display: inline-block;
  position: relative;
  z-index: 3;
}

.rating__line {
  position: absolute;
  width: 85px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating.svg") 0 0 no-repeat;
  z-index: 1;
  background-size: 85px 100%;
}

.rating__activeline {
  position: absolute;
  width: 0px;
  height: 14px;
  top: 0;
  left: 0;
  background: url("../img/icons/bg_rating_active.svg") 0 0 no-repeat;
  z-index: 2;
  background-size: 85px 100%;
}

.rating__value {
  display: inline-block;
  color: #1b3139;
  font-size: 14px;
  line-height: 13px;
  vertical-align: middle;
}

.quantity {
  width: 88px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgba(166, 166, 166, 0.45);
}

.quantity__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  position: relative;
  cursor: pointer;
}

.quantity__button::before,
.quantity__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  margin: 0px 0px 0px -4.5px;
  background-color: #a6a6a6;
  width: 9px;
  height: 1px;
}

.quantity__button_plus::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
}

.quantity__input {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.quantity__input input {
  height: 100%;
  color: #a6a6a6;
  font-size: 12px;
  width: 100%;
  text-align: center;
}

img,
svg {
  vertical-align: middle;
  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;
}

._btn {
  min-height: 50px;
  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;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  background: #113837;
  border-radius: 100px;
  padding: 10px 20px;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

._btn._fw {
  width: 100%;
  max-width: 100%;
}

._btn._stroke {
  background: none;
  color: #113837;
  border: 1px solid #113837;
}

._btn._yellow {
  background: #D9B673;
  color: #113837;
}

._btn._yellow._stroke {
  background: none;
  color: #D9B673;
  border: 1px solid #D9B673;
}

._title {
  color: #313131;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

ol.counter {
  list-style-type: none;
  counter-reset: item;
}

ol.counter li {
  position: relative;
  padding: 0px 0px 0px 45px;
}

ol.counter li:before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  color: #818181;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  border: 1px solid #4274bb;
}

.ellipsis {
  display: block;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.es {
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
}

.table {
  display: table;
  font-size: 0;
  width: 100%;
}

.trow {
  display: table-row;
}

.cell {
  display: table-cell;
}

.cell.full {
  width: 100%;
}

._ibg {
  position: relative;
}

._ibg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

body.ie ._ibg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

body.ie ._ibg img {
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
}

.video {
  position: relative;
  overflow: hidden;
  height: 0;
  padding-bottom: 56.25%;
}

.video video,
.video iframe,
.video object,
.video embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.videobg video,
.videobg iframe,
.videobg object,
.videobg embed {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  background-size: cover;
}

.moretext {
  overflow: hidden;
}

.moretext__more {
  cursor: pointer;
}

.moretext__more span {
  font-style: normal;
}

.moretext__more span:first-child {
  display: block;
}

.moretext__more span:last-child {
  display: none;
}

.moretext__more.active span {
  font-style: normal;
}

.moretext__more.active span:first-child {
  display: none;
}

.moretext__more.active span:last-child {
  display: block;
}

#map {
  background: url("../img/icons/loading.gif") center/50px no-repeat;
}

._swiper,
._swiper-s {
  overflow: hidden;
}

._swiper .swiper-wrapper,
._swiper-s .swiper-wrapper {
  width: 100%;
  height: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

._swiper.swiper-container-vertical .swiper-wrapper,
._swiper-s.swiper-container-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

._swiper.swiper-container-autoheight .swiper-wrapper,
._swiper-s.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.swiper-container-initialized .swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.swiper-container-android .swiper-slide,
.swiper-container-android .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-button-lock {
  display: none !important;
}

.slick-slider {
  position: relative;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-slider .slick-list {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.slick-slider .slick-track {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.slick-slider .slick-slide {
  position: relative;
}

.tab__item {
  display: none;
}

.tab__item.active {
  display: block;
}

._tabs-block {
  display: none;
}

._tabs-block._active {
  display: block;
}

.mirror {
  -webkit-transform: scale(-1, 1);
      -ms-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.nicescroll-rails {
  z-index: 1000 !important;
}

.baloon {
  opacity: 1;
  right: -7px !important;
  bottom: 80px !important;
}

.baloon button {
  display: none !important;
}

.baloon:after {
  display: none !important;
}

.baloon-style {
  display: none;
}

.baloon-content.gm-style-iw {
  opacity: 1;
  border-radius: 0px !important;
  max-width: 300px !important;
  padding: 0 !important;
  left: 0 !important;
  width: 100% !important;
  overflow: visible !important;
}

.baloon-content.gm-style-iw > .gm-style-iw-d {
  overflow: hidden !important;
  max-width: none !important;
}

.baloon-content.gm-style-iw:after {
  display: none !important;
}

.baloon-close {
  top: 18px !important;
}

.gm-style-iw.gm-style-iw-c {
  width: 100% !important;
  max-width: 295px !important;
}

.cluster {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  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;
  background: #fff;
  border: 3px solid #D9B673;
}

.gm-style {
  font-family: "Inter";
}

.gm-style-iw-chr {
  position: absolute;
  top: 0;
  right: 0;
}

.gm-style-iw-chr button {
  position: absolute !important;
  top: 16px;
  right: 10px;
  width: 20px !important;
  height: 20px !important;
}

.gm-style-iw-chr button span {
  margin: 0px !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
}

.gm-style-iw-chr .gm-style-iw-ch {
  display: none;
}

._custom-scroll {
  position: fixed;
  right: 0;
  top: 0;
  width: 3px;
  height: 100%;
  z-index: 1000;
}

._custom-scroll__line {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px 0 0 3px;
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
}

._like path {
  fill: #DCDCDC;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

._like path._fill {
  display: none;
}

._like._liked path {
  fill: #D9B673;
}

._like._liked path._fill {
  display: block;
}

._liked ._like path {
  fill: #D9B673;
}

._liked ._like path._fill {
  display: block;
}

.paggination {
  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;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
}

.paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8px;
          flex: 0 0 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #113837;
  cursor: pointer;
  border: 2px solid #113837;
}

.paggination .swiper-pagination-bullet-active {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
  background: #fff;
}

.qs-datepicker-container {
  font-size: 1rem;
  font-family: sans-serif;
  color: #313131;
  position: absolute;
  width: 15.625em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 9001;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  overflow: hidden;
  background: #ffff;
  -webkit-box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
          box-shadow: 0 1.25em 1.25em -0.9375em rgba(0, 0, 0, 0.3);
  padding: 5px;
  border: 1px solid #DCDCDC;
  border-radius: 4px;
  margin-top: 5px;
}

.qs-datepicker-container * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.qs-datepicker-container.qs-centered {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.qs-datepicker-container.qs-hidden {
  display: none;
}

.qs-datepicker .qs-overlay {
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 0.5em;
  z-index: 1;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.qs-datepicker .qs-overlay.qs-hidden {
  opacity: 0;
  z-index: -1;
}

.qs-datepicker .qs-overlay .qs-overlay-year {
  background: rgba(0, 0, 0, 0);
  border: none;
  border-bottom: 1px solid #fff;
  border-radius: 0;
  color: #fff;
  font-size: 0.875em;
  padding: 0.25em 0;
  width: 80%;
  text-align: center;
  margin: 0 auto;
  display: block;
}

.qs-datepicker .qs-overlay .qs-overlay-year::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qs-datepicker .qs-overlay .qs-close {
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
}

.qs-datepicker .qs-overlay .qs-submit {
  border: 1px solid #fff;
  border-radius: 0.26392em;
  padding: 0.5em;
  margin: 0 auto auto;
  cursor: pointer;
  background: rgba(128, 128, 128, 0.4);
}

.qs-datepicker .qs-overlay .qs-submit.qs-disabled {
  color: grey;
  border-color: grey;
  cursor: not-allowed;
}

.qs-datepicker .qs-overlay .qs-overlay-month-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.qs-datepicker .qs-overlay .qs-overlay-month {
  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;
  width: 33.33333%;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s;
  -o-transition: opacity 0.15s;
  transition: opacity 0.15s;
}

.qs-datepicker .qs-overlay .qs-overlay-month.active,
.qs-datepicker .qs-overlay .qs-overlay-month:hover {
  opacity: 1;
}

.qs-datepicker .qs-controls {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  background: #fff;
  color: #313131;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-controls.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-datepicker .qs-arrow {
  height: 1.5625em;
  width: 1.5625em;
  position: relative;
  cursor: pointer;
  border-radius: 0.26392em;
  -webkit-transition: background 0.15s;
  -o-transition: background 0.15s;
  transition: background 0.15s;
}

.qs-datepicker .qs-arrow:hover {
  background: rgba(0, 0, 0, 0.1);
}

.qs-datepicker .qs-arrow:hover.qs-left:after {
  border-right-color: #000;
}

.qs-datepicker .qs-arrow:hover.qs-right:after {
  border-left-color: #000;
}

.qs-datepicker .qs-arrow:after {
  content: "";
  border: 0.39062em solid rgba(0, 0, 0, 0);
  position: absolute;
  top: 50%;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
}

.qs-datepicker .qs-arrow.qs-left:after {
  border-right-color: grey;
  right: 50%;
  -webkit-transform: translate(25%, -50%);
  -ms-transform: translate(25%, -50%);
  transform: translate(25%, -50%);
}

.qs-datepicker .qs-arrow.qs-right:after {
  border-left-color: grey;
  left: 50%;
  -webkit-transform: translate(-25%, -50%);
  -ms-transform: translate(-25%, -50%);
  transform: translate(-25%, -50%);
}

.qs-datepicker .qs-month-year {
  font-weight: 700;
  -webkit-transition: border 0.2s;
  -o-transition: border 0.2s;
  transition: border 0.2s;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  cursor: pointer;
}

.qs-datepicker .qs-month-year:hover {
  border-bottom: 1px solid grey;
}

.qs-datepicker .qs-month-year:active:focus,
.qs-datepicker .qs-month-year:focus {
  outline: none;
}

.qs-datepicker .qs-month {
  padding-right: 0.5ex;
}

.qs-datepicker .qs-year {
  padding-left: 0.5ex;
}

.qs-datepicker .qs-squares {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #313131;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0.3125em;
  -webkit-filter: blur(0);
  filter: blur(0);
  -webkit-transition: -webkit-filter 0.3s;
  transition: -webkit-filter 0.3s;
  -o-transition: filter 0.3s;
  transition: filter 0.3s;
  transition: filter 0.3s, -webkit-filter 0.3s;
}

.qs-datepicker .qs-squares.qs-blur {
  -webkit-filter: blur(5px);
  filter: blur(5px);
}

.qs-datepicker .qs-square {
  width: 14.28571%;
  height: 1.5625em;
  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;
  cursor: pointer;
  -webkit-transition: background 0.1s;
  -o-transition: background 0.1s;
  transition: background 0.1s;
  border-radius: 0.26392em;
}

.qs-datepicker .qs-square.qs-current {
  font-weight: 700;
}

.qs-datepicker .qs-square.qs-current span {
  text-decoration: underline;
}

.qs-datepicker .qs-square.qs-active {
  background: #fff;
  color: #000;
}

.qs-datepicker .qs-square.qs-range-date-start:not(.qs-range-date-6) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle {
  background: #d4ebf2;
}

.qs-datepicker .qs-square.qs-range-date-middle:not(.qs-range-date-0):not(.qs-range-date-6) {
  border-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-0 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.qs-datepicker .qs-square.qs-range-date-end:not(.qs-range-date-0),
.qs-datepicker .qs-square.qs-range-date-middle.qs-range-date-6 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.qs-datepicker .qs-square.qs-disabled span {
  opacity: 0.2;
}

.qs-datepicker .qs-square.qs-empty {
  cursor: default;
}

.qs-datepicker .qs-square.qs-disabled {
  cursor: not-allowed;
}

.qs-datepicker .qs-square.qs-day {
  cursor: default;
  font-weight: 700;
  color: grey;
}

.qs-datepicker .qs-square:not(.qs-empty):not(.qs-disabled):not(.qs-day):not(.qs-active):hover {
  background: #113837;
  color: #fff;
}

.qs-datepicker .qs-event {
  position: relative;
}

.qs-datepicker .qs-event:after {
  content: "";
  position: absolute;
  width: 0.46875em;
  height: 0.46875em;
  border-radius: 50%;
  background: #07f;
  bottom: 0;
  right: 0;
}

.qs-datepicker .qs-event.qs-disabled:after,
.qs-datepicker .qs-event.qs-empty:after {
  background: #cce4ff;
}

.pagging {
  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;
}

.pagging__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.pagging__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;
  text-align: center;
  font-size: 18px;
  color: #313131;
  font-weight: 500;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid #DCDCDC;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.pagging__item._more {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  border: none;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.pagging__item._active {
  background: #D9B673;
  color: #fff;
  border-color: #D9B673;
  font-weight: 700;
}

.popup {
  -webkit-overflow-scrolling: touch;
  z-index: 100;
  padding: 30px 20px;
  position: fixed;
  top: 0px;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: visibility 0.8s ease 0s;
  -o-transition: visibility 0.8s ease 0s;
  transition: visibility 0.8s ease 0s;
  visibility: hidden;
}

.popup::before {
  content: "";
  background-color: rgba(17, 56, 55, 0.55);
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-transition: opacity 0.8s ease 0s;
  -o-transition: opacity 0.8s ease 0s;
  transition: opacity 0.8s ease 0s;
}

.popup.show {
  visibility: visible;
  overflow: auto;
}

.popup.show::before {
  opacity: 1;
}

.popup.show .popup__body {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup._active {
  overflow: auto;
  visibility: visible;
}

.popup._active::before {
  opacity: 1;
}

.popup._active .popup__body {
  -webkit-transition: all 0.3s ease 0.2s;
  -o-transition: all 0.3s ease 0.2s;
  transition: all 0.3s ease 0.2s;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.popup__content {
  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;
  min-height: 100%;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 100%;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  align-items: center;
}

.popup__body {
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #fff;
  padding: 0px;
  width: 100%;
  max-width: 810px;
  border-radius: 16px;
}

.popup__close {
  width: 26px;
  height: 26px;
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  z-index: 30;
  background: url("../img/icons/close.svg") center/cover no-repeat;
}

.sell-with-us__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  min-height: 360px;
}

.sell-with-us__form {
  padding: 30px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

._no-webp .sell-with-us__image {
  background: url(../img/sell-with-us-bg.jpg) center/cover no-repeat; }

.sell-with-us__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 376px;
          flex: 0 0 376px;
  position: relative;
  border-radius: 0px 16px 16px 0px;
}

.sell-with-us__girl {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 260px;
}

.sell-with-us__girl img {
  width: 100%;
  max-width: 100%;
}

.form-sell-with-us__title {
  color: #313131;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
}

.form-sell-with-us__body {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.form-sell-with-us__button {
  width: 100%;
  max-width: 100%;
}

.application-send .popup__body {
  max-width: 430px;
}

.application-send__wrapper {
  padding: 40px;
  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;
  row-gap: 15px;
}

.application-send__icon {
  width: 60px;
  height: 60px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  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;
  background: #D9B673;
  border-radius: 50%;
}

.application-send__icon img,
.application-send__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.application-send__body {
  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;
  text-align: center;
  row-gap: 15px;
}

.application-send__title {
  color: #313131;
  font-size: 24px;
  font-weight: 700;
}

.application-send__text {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.application-send__text a {
  font-weight: 700;
  color: #113837;
}

.application-send__button {
  min-width: 90px;
  color: #D9B673;
}

.resume-popup .popup__body {
  max-width: 480px;
  padding: 30px;
}

.resume-popup__title {
  color: #313131;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.resume-popup__form {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
  row-gap: 20px;
}

.resume-popup__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 12px * 1) / 2);
          flex: 0 0 calc((100% - 12px * 1) / 2);
}

.resume-popup__column._full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.resume-popup__label {
  color: #313131;
  font-size: 16px;
  font-weight: 700;
}

.resume-popup__checklist {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.trade-offer .popup__body {
  max-width: 480px;
  padding: 30px;
}

.trade-offer__title {
  color: #313131;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.trade-offer__form {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.header {
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid var(--line, #DCDCDC);
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  z-index: 3;
}

.header__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  max-width: 100%;
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 193px;
          flex: 0 0 193px;
}

.header__logo img,
.header__logo svg {
  width: 100%;
  max-width: 100%;
}

.header__fav {
  position: relative;
  width: 24px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
}

.header__fav img,
.header__fav svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.header__fav span {
  color: #113837;
  font-size: 14px;
  font-weight: 700;
  padding: 1px 5px;
  background: #D9B673;
  border-radius: 30px;
  position: absolute;
  top: -9px;
  right: 0;
  -webkit-transform: translateX(50%);
      -ms-transform: translateX(50%);
          transform: translateX(50%);
}

.header__button {
  font-size: 14px;
  font-weight: 600;
}

.menu__button {
  font-size: 14px;
  font-weight: 600;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.phone-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.phone-menu__value {
  font-size: 16px;
  font-weight: 600;
  color: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.phone-menu__messagers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.phone-menu__messager {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.phone-menu__messager img,
.phone-menu__messager svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
}

.menu-list__link {
  font-size: 16px;
  color: #313131;
  font-weight: 400;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
li.menu-list__item.active .menu-list__link {
  color: #D9B673;
}

.language-header {
  position: relative;
}

.language-header__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  font-size: 16px;
  color: #313131;
  cursor: pointer;
}

.language-header__head span{
  text-transform: capitalize;
}

.language-header__head._active .language-header__arrow {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}

.header__language a.active.language-header__item {
  display: none;
}
.language-header__item {
  text-transform: capitalize;
}

.language-header__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  height: 10px;
  width: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.language-header__arrow img,
.language-header__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  width: 10px;
  height: 10px;
}

.language-header__list {
  position: absolute;
  top: calc(100% + 3px);
  left: -3px;
  right: -3px;
  background: #fff;
  border-radius: 4px;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 3px 0px;
  display: none;
}

.language-header__item {
  display: block;
  padding: 3px 5px;
  font-size: 16px;
  color: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.icon-menu {
  display: none;
}

.mini-catalog {
  padding: 40px 0px 20px;
}

.mini-catalog__slider {
  margin: -20px;
  padding: 20px;
}

.mini-catalog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
  border-radius: 16px;
  background: #113837;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  overflow: hidden;
  text-align: center;
}

.mini-catalog__item:not(:last-child) {
  margin-right: 30px;
}

.mini-catalog__image {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  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;
  width: 100%;
  aspect-ratio: 300/259;
  position: relative;
}

.mini-catalog__image._floor img {
  -o-object-position: 50%;
     object-position: 50%;
  padding: 0px 7%;
  width: 132%;
}

.mini-catalog__image._home img {
  padding: 0px 3%;
}

.mini-catalog__image picture {
  width: 100%;
  max-width: 100%;
}

.mini-catalog__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
     object-fit: contain;
}

.mini-catalog__name {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mini-catalog__actions {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #DADADA;
}

.mini-catalog__action {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2);
          flex: 0 0 calc(100% / 2);
  height: 50px;
  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;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.mini-catalog__action:not(:last-child) {
  border-right: 1px solid #DADADA;
}

.search {
  padding: 20px 0px;
}

.search__wrapper {
  background: #D9B673;
  border-radius: 16px;
  padding: 50px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.search__title {
  color: #313131;
  font-size: 24px;
  font-weight: 700;
}

.search__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.search__body {
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  -ms-grid-columns: 150px 170px auto 1fr 170px 50px;
  grid-template-columns: 150px 170px auto 1fr 170px 50px;
}

.search__column .select__title {
  border-radius: 50px;
  border: none;
}

.search__column .select__value {
  color: #313131 !important;
  font-size: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.search__column .select__value::before {
  display: none;
}

.search__column .select__options {
  border-radius: 16px;
}

.search__button {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50px;
          flex: 0 0 50px;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  padding: 10px;
}

.search__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.search__footer .search__button {
  margin-left: auto;
}

.search__all-filter {
  color: #113837;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.search__all-filter img,
.search__all-filter svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.price-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50px;
  background: #FFF;
  height: 50px;
}

.price-search__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  padding: 10px 20px;
}

.price-search__column._edit .price-search__info {
  display: none;
}

.price-search__column._edit .price-search__edit {
  display: block;
}

.price-search__column:not(:last-child) {
  border-right: 1px solid #DCDCDC;
}

.price-search__info {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  width: 100%;
  cursor: text;
}

.price-search__info b {
  font-weight: 600;
}

.price-search__edit {
  display: none;
  width: 100%;
  max-width: 100%;
}

.price-search__input {
  width: 100%;
  max-width: 100%;
  min-width: 0px;
  font-size: 16px;
  font-weight: 600;
  color: #313131;
}

.offer,
.offer-complex {
  padding: 50px 0px;
}

.offer__body,
.offer-complex__body {
  margin-top: 30px;
  position: relative;
}

.offer__item,
.offer-complex__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 3) / 4);
          flex: 0 0 calc((100% - 40px * 3) / 4);
}

.offer__item:not(:last-child),
.offer-complex__item:not(:last-child) {
  margin-right: 40px;
}

.offer__paggination,
.offer-complex__paggination {
  margin-top: 20px;
}

.offer__arrow,
.offer-complex__arrow {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  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: 1px solid #DCDCDC;
  background: #FFF;
  top: 50%;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.offer__arrow svg path,
.offer-complex__arrow svg path {
  fill: #113837;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.offer__arrow.offer-arrow-prev,
.offer__arrow.offer-complex-arrow-prev,
.offer-complex__arrow.offer-arrow-prev,
.offer-complex__arrow.offer-complex-arrow-prev {
  left: -20px;
  -webkit-transform: translate(-100%, -50%);
      -ms-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
}

.offer__arrow.offer-arrow-next,
.offer__arrow.offer-complex-arrow-next,
.offer-complex__arrow.offer-arrow-next,
.offer-complex__arrow.offer-complex-arrow-next {
  right: -20px;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}

.head-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.head-section__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.head-section__title {
  color: #313131;
  font-size: 24px;
  font-weight: 700;
}

.head-section__text {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 517px;
  font-size: 16px;
  color: #313131;
  font-weight: 400;
  line-height: 1.2;
}

.head-section__other {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.head-section__more {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.head-section__more._md3 {
  display: none;
}

.head-section__more._mmd3 {
  display: none;
}

.nav-head-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.nav-head-section__item {
  background: #fff;
  border-radius: 100px;
  border: 1px solid #DCDCDC;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  padding: 12px 24px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.nav-head-section__item._active {
  background: #113837;
  border-color: #113837;
  color: #fff;
}

.item-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.item-offer._liked ._like svg path {
  fill: #D9B673;
}

.item-offer._liked ._like svg path._fill {
  display: block;
}

.item-offer__head {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.item-offer__gallery {
  width: 100%;
  max-width: 100%;
}

.item-offer__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  aspect-ratio: 292/195;
  position: relative;
}

.item-offer__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-offer__paggination {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  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;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  opacity: 0;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}

.item-offer__paggination .swiper-pagination-bullet {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 4px;
  border-radius: 10px;
  background: #fff;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-offer__paggination .swiper-pagination-bullet-active {
  opacity: 1;
}

.item-offer__reserved {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 100%;
  background: #D9B673;
  font-size: 14px;
  font-weight: 600;
  color: #113837;
  text-align: center;
  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;
  height: 32px;
  z-index: 1;
}

.item-offer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-offer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.item-offer__price {
  color: #113837;
  font-size: 20px;
  font-weight: 800;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-offer__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.item-offer__like img,
.item-offer__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.item-offer__address {
  color: #313131;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.charateristic-item-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  row-gap: 5px;
  flex-wrap: wrap;
}

.charateristic-item-offer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.charateristic-item-offer__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  height: 18px;
  width: 18px;
}

.charateristic-item-offer__icon img,
.charateristic-item-offer__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.charateristic-item-offer__value {
  color: #313131;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.specialist-item-offer {
  padding: 6px 15px;
  border-radius: 8px;
  background: #F9F9F9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.specialist-item-offer__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.specialist-item-offer__name {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #313131;
  font-size: 14px;
  font-weight: 400;
}

.specialist-item-offer__phone {
  color: #113837;
  font-size: 14px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.specialist-item-offer__position {
  color: #858585;
  font-size: 14px;
  font-weight: 400;
}

.offer-complex__slider {
  margin: -20px;
  padding: 20px;
}

.offer-complex__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
}

.offer-complex__item:not(:last-child) {
  margin-right: 30px;
}

.complex-offer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 25px;
}

.complex-offer__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -ms-grid;
  display: grid;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  row-gap: 5px;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
}

.complex-offer__name {
  color: #313131;
  font-size: 18px;
  font-weight: 600;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.complex-offer__price {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 7px 12px;
  background: #D9B673;
  border-radius: 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;
}

.complex-offer__address {
  color: #858585;
  font-size: 14px;
  font-weight: 400;
}

.complex-offer__offers {
  color: #113837;
  font-size: 14px;
  font-weight: 400;
}

.complex-offer__image {
  width: 100%;
  max-width: 100%;
  position: relative;
  aspect-ratio: 41/28;
  border-radius: 16px;
  overflow: hidden;
}

.complex-offer__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.map {
  padding: 50px 0px;
}

.map__wrapper #map {
  width: 100%;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
}

.marker {
  background: #fff;
  border-radius: 16px;
  padding: 15px 5px 5px;
}

.marker__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 12px;
     -moz-column-gap: 12px;
          column-gap: 12px;
}

.marker__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  aspect-ratio: 10/7.5;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  display: block;
}

.marker__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.marker__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.marker__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  padding-right: 12px;
}

.marker__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 16px;
  font-weight: 800;
  color: #113837;
}

.marker__like {
  cursor: pointer;
}

.marker__address {
  color: #313131;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
  display: inline-block;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.marker__charateristic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  color: #313131;
  font-size: 14px;
  font-weight: 500;
  margin-top: 15px;
}

.marker__charateristic li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.marker__charateristic img,
.marker__charateristic svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 14px;
          flex: 0 0 14px;
  width: 14px;
  height: 14px;
}

.partners {
  padding: 50px 0px;
}

.partners__body {
  margin-top: 30px;
}

.partners__slider {
  margin: -20px;
  padding: 20px;
}

.partners__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 5) / 6);
          flex: 0 0 calc((100% - 30px * 5) / 6);
  aspect-ratio: 19/12;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
  border: 1px solid #DCDCDC;
}

.partners__item img {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.partners__item:not(:last-child) {
  margin-right: 30px;
}

.partners__paggination {
  margin-top: 20px;
}

.our-team {
  padding: 50px 0px;
}

.our-team__body {
  margin-top: 30px;
}

.our-team__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

.our-team__item:not(:last-child) {
  margin-right: 30px;
}

.our-team__paggination {
  margin-top: 20px;
}

.agent {
  position: relative;
  aspect-ratio: 300/372;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  border-radius: 16px;
  overflow: hidden;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.agent__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.agent__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(82.9%, rgba(9, 44, 30, 0)), to(#052A1B));
  background: -o-linear-gradient(top, rgba(9, 44, 30, 0) 82.9%, #052A1B 100%);
  background: linear-gradient(180deg, rgba(9, 44, 30, 0) 82.9%, #052A1B 100%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.agent__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.agent__info {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 5px;
}

.agent__name {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.agent__work {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.news {
  padding: 50px 0px;
}

.news__content {
  margin-top: 30px;
}

.news__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

.news__item:not(:last-child) {
  margin-right: 30px;
}

.item-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.item-news__image {
  display: block;
  aspect-ratio: 30/22;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
}

.item-news__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-news__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.item-news__name {
  font-size: 16px;
  color: #313131;
  font-weight: 600;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-news__date {
  color: #858585;
  font-size: 14px;
  font-weight: 400;
}

.callback {
  padding: 50px 0px;
}

.callback__wrapper {
  background: #113837;
  border-radius: 16px;
  padding: 80px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.callback__house {
  width: 230px;
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%) rotate(-4.047deg);
      -ms-transform: translateY(-50%) rotate(-4.047deg);
          transform: translateY(-50%) rotate(-4.047deg);
}

.callback__house img {
  width: 100%;
  max-width: 100%;
}

.callback__key {
  width: 205px;
  position: absolute;
  top: 50%;
  right: 45px;
  -webkit-transform: translateY(-50%) rotate(16.569deg);
      -ms-transform: translateY(-50%) rotate(16.569deg);
          transform: translateY(-50%) rotate(16.569deg);
}

.callback__key img {
  width: 100%;
  max-width: 100%;
}

.callback__body {
  width: 100%;
  max-width: 625px;
  color: #fff;
  text-align: center;
  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;
  row-gap: 24px;
}

.callback__title {
  font-size: 24px;
  font-weight: 700;
  max-width: 512px;
  line-height: 1.2;
}

.callback__text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

.callback__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.callback__action {
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  padding: 10px 30px;
  min-height: 50px;
}

.callback__action img,
.callback__action svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.footer__main {
  border-top: 1px solid #DCDCDC;
  padding: 50px 0px;
}

.footer__bottom {
  border-top: 1px solid #DCDCDC;
  padding: 20px 0px;
}

.main-footer__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.main-footer__name {
  color: #313131;
  font-size: 16px;
  font-weight: 600;
}

.main-footer__body {
  margin-top: 20px;
}

.main-footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.main-footer__link {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-footer__social {
  margin-top: 20px;
}

.social-main-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.social-main-footer__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.social-main-footer__item img,
.social-main-footer__item svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.social-main-footer__item svg path {
  fill: #113837;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.bottom-footer__container {
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.bottom-footer__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 193px;
          flex: 0 0 193px;
}

.bottom-footer__logo img,
.bottom-footer__logo svg {
  width: 100%;
  max-width: 100%;
}

.bottom-footer__copy {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
}

.bottom-footer__dev {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.bottom-footer__dev img,
.bottom-footer__dev svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.bottom-footer__dev svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.catalog {
  padding: 60px 0px;
}

.catalog__title {
  color: #313131;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
}

.catalog__wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.catalog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.catalog__sort {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 300px;
          flex: 0 0 300px;
}

.catalog__sort .select__title {
  border-radius: 100px;
  border: 1px solid #DCDCDC;
}

.catalog__sort .select__value {
  font-size: 16px;
  padding: 5px 15px;
}

.catalog__sort .select__value::before {
  content: "";
  background: url(../img/icons/select-v2.svg) center/cover no-repeat;
}

.catalog__count {
  font-size: 16px;
  font-weight: 400;
  color: #313131;
}

.catalog__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 38px;
     -moz-column-gap: 38px;
          column-gap: 38px;
  row-gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 20px;
}

.catalog__list-complex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}

.catalog__list-complex + .catalog__pagging {
  margin-top: 0;
}

.catalog__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 42px * 3) / 4);
          flex: 0 0 calc((100% - 42px * 3) / 4);
}

.catalog__item-complex {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.catalog__pagging {
  margin-top: 40px;
}

._location .checkbox_cont_title::before {
  content: "";
  background: url(/app/img/icons/select-v2.svg) center / cover no-repeat;
  font-size: 12px;
  margin-right: 4px;
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 17px;
  transition: transform 0.3s ease;
  color: #706f6f;
  height: 16px;
  width: 16px;
  flex: 0 0 16px;
}
._location .active  .checkbox_cont_title::before {
  transform: rotate(180deg);
}

._sector .checkbox_cont_title::before {
  content: "";
  background: url(/app/img/icons/select-v2.svg) center / cover no-repeat;
  font-size: 12px;
  margin-right: 4px;
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 17px;
  transition: transform 0.3s ease;
  color: #706f6f;
  height: 16px;
  width: 16px;
  flex: 0 0 16px;
}
._sector .active  .checkbox_cont_title::before {
  transform: rotate(180deg);
}

._features .checkbox_cont_title::before {
  content: "";
  background: url(/app/img/icons/select-v2.svg) center / cover no-repeat;
  font-size: 12px;
  margin-right: 4px;
  display: inline-block;
  position: absolute;
  right: 7px;
  top: 17px;
  transition: transform 0.3s ease;
  color: #706f6f;
  height: 16px;
  width: 16px;
  flex: 0 0 16px;
}
._features .active  .checkbox_cont_title::before {
  transform: rotate(180deg);
}

.filter-catalog__top {
  padding: 20px;
}

.filter-catalog__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.filter-catalog__column {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 230px;
          flex: 1 1 230px;
  min-width: 230px;
}

.filter-catalog__column._sel {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 260px;
          flex: 1 0 260px;
}

.filter-catalog__column._rooms {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

.filter-catalog__column._price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 340px;
          flex: 1 1 340px;
}

.filter-catalog__column._area {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 270px;
          flex: 1 1 270px;
}

.filter-catalog__select._dot .select__value::after {
  content: "";
  width: 10px;
  height: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
          flex: 0 0 10px;
  border-radius: 50%;
  background: #D9B673;
}

.filter-catalog__select._dot .select__value span {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.filter-catalog__select .select__title {
  border-radius: 100px;
}

.filter-catalog__select .select__value {
  font-size: 16px;
}

.filter-catalog__select .select__value::before {
  content: "";
  background: url(../img/icons/select-v2.svg) center/cover no-repeat;
}

.filter-catalog__select .select__options {
  border-radius: 16px;
}

.filter-catalog__options .options__text {
  border: 1px solid #DCDCDC;
}

.filter-catalog__price {
  border: 1px solid #DCDCDC;
}

.filter-catalog__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 20px;
}

.filter-catalog__mods {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 10px;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.filter-catalog__mod {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  padding: 10px 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  border-radius: 100px;
  border: 1px solid #FFF;
  background: #EDEDED;
}

.filter-catalog__mod-delete {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16px;
          flex: 0 0 16px;
  height: 16px;
  width: 16px;
}

.filter-catalog__mod-delete svg path {
  fill: #313131;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.filter-catalog__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.filter-catalog__reset {
  color: #113837;
  font-size: 16px;
  font-weight: 400;
  background: none;
}

.top-filter-catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.top-filter-catalog__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.top-filter-catalog__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.top-filter-catalog__icon img,
.top-filter-catalog__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.top-filter-catalog__title {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.top-filter-catalog__close {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  height: 26px;
  width: 26px;
}

.top-filter-catalog__close img,
.top-filter-catalog__close svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 26px;
          flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.card {
  padding: 30px 0px 80px;
}

.card__wrapper {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.card__main {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 440px);
          flex: 0 0 calc(100% - 440px);
}

.card__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 410px;
          flex: 0 0 410px;
}

.back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.back__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 38px;
          flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  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;
  background: #FFF;
  border: 1px solid #DCDCDC;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.back__icon img,
.back__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.back__text {
  color: #8C8C8C;
  font-size: 16px;
  font-weight: 400;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.main-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.main-card__section {
  padding: 30px;
  border-radius: 16px;
  background: #F4F6FB;
}

.main-card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}

.main-card__title {
  color: #313131;
  font-size: 24px;
  font-weight: 700;
}

.main-card__text {
  color: #113837;
  font-size: 14px;
  font-weight: 400;
}

.main-card__content {
  margin-top: 30px;
}

.main-card__video {
  border-radius: 16px;
  overflow: hidden;
}

.main-card__description {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.main-card__description h5 {
  font-weight: 700;
}

.main-card__description ul:not(._unlist) {
  padding-left: 20px;
}

.main-card__description ul:not(._unlist) li {
  list-style: disc;
}

.main-card__description ul._unlist {
  padding-left: 5px;
}

.main-card__description > *:not(:last-child) {
  margin-bottom: 10px;
}

.main-card__map {
  height: 410px;
  overflow: hidden;
  border-radius: 16px;
}

.main-card__map iframe {
  width: 100%;
  height: 100%;
}

.credit-main-card__logo {
  margin-left: 30px;
  width: 114px;
}

.credit-main-card__logo img,
.credit-main-card__logo svg {
  width: 100%;
  max-width: 100%;
}

.credit-main-card__iframe {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
}

.gallery-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.gallery-card__main {
  border-radius: 16px;
  width: 100%;
  overflow: hidden;
}

.main-gallery-card {
  position: relative;
}

.main-gallery-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 850/590;
  position: relative;
  display: block;
}

.main-gallery-card__item:not(:last-child) {
  margin-right: 10px;
}

.main-gallery-card__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-gallery-card__arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  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;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  cursor: pointer;
}

.main-gallery-card__arrow.main-gallery-card-arrow-prev {
  left: 20px;
}

.main-gallery-card__arrow.main-gallery-card-arrow-next {
  right: 20px;
}

.main-gallery-card__arrow img,
.main-gallery-card__arrow svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.thumbs-gallery-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 10px * 5) / 6);
          flex: 0 0 calc((100% - 10px * 5) / 6);
  aspect-ratio: 133/100;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.thumbs-gallery-card__item.swiper-slide-thumb-active::after {
  border-color: #113837;
}

.thumbs-gallery-card__item::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 8px;
  border: 3px solid transparent;
}

.thumbs-gallery-card__item img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbs-gallery-card__item:not(:last-child) {
  margin-right: 10px;
}

.info-main-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 15px;
}

.info-main-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  color: #313131;
  font-size: 16px;
  font-weight: 500;
}

.info-main-card__item span:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
}

.info-main-card__item span:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.benefits-main-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
}

.benefits-main-card__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.benefits-main-card__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.benefits-main-card__icon img,
.benefits-main-card__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.benefits-main-card__value {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #313131;
}

.apartament-main-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.apartament-main-card__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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.apartament-main-card__options .options__text {
  border: 1px solid #DCDCDC;
  padding: 10px 14px;
}

.apartament-main-card__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.apartament-main-card__pagging {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.apartament {
  border-radius: 16px;
  background: #FFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

.apartament__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 293px;
          flex: 0 0 293px;
  aspect-ratio: 293/195;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.apartament__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.apartament__body {
  padding: 15px 20px;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.apartament__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.apartament__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #113837;
  font-size: 20px;
  font-weight: 800;
}

.apartament__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.apartament__like img,
.apartament__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.apartament__address {
  color: #313131;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.apartament__characteristic {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.apartament__characteristic li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #313131;
}

.apartament__characteristic li img,
.apartament__characteristic li svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.sidebar-card__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.sidebar-card__section {
  padding: 30px;
  border-radius: 16px;
  background: #F4F6FB;
}

.sidebar-card__section._green {
  background: #113837;
}

.info-sidebar-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.info-sidebar-card__status {
  color: #113837;
  font-size: 14px;
  font-weight: 600;
  padding: 5px 12px;
  background: #D9B673;
  border-radius: 4px;
  display: inline-block;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.info-sidebar-card__address {
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

.info-sidebar-card__other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.info-sidebar-card__price {
  color: #D9B673!important;
  font-size: 24px;
  font-weight: 800;
}

.info-sidebar-card__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
  cursor: pointer;
}

.info-sidebar-card__like svg path {
  fill: #D9B673;
}

.info-sidebar-card__like img,
.info-sidebar-card__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.characteristic-info-sidebar-card {
  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;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.characteristic-info-sidebar-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.characteristic-info-sidebar-card__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  height: 20px;
  width: 20px;
}

.characteristic-info-sidebar-card__icon img,
.characteristic-info-sidebar-card__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20px;
          flex: 0 0 20px;
  width: 20px;
  height: 20px;
}

.characteristic-info-sidebar-card__value {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
}

.agent-sidebar-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.agent-sidebar-card__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100px;
          flex: 0 0 100px;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.agent-sidebar-card__image img {
  width: 100%;
  /*height: 100%;*/
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.agent-sidebar-card__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.agent-sidebar-card__name {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
}

.agent-sidebar-card__work {
  color: #8B8B8B;
  font-size: 14px;
  font-weight: 500;
  margin-top: 5px;
}

.agent-sidebar-card__contacts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  margin-top: 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 5px;
}

.agent-sidebar-card__phone {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
}

.agent-sidebar-card__socials {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.agent-sidebar-card__social {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.agent-sidebar-card__social img,
.agent-sidebar-card__social svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.application-sidebar-card__title {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
}

.application-sidebar-card__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
  margin-top: 20px;
}

.application-sidebar-card__btn {
  color: #D9B673;
}

.contacts {
  padding: 60px 0px 50px;
}

.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  margin-top: 30px;
}

.contacts__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
}

.contacts__list {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.contacts__feedback {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 510px;
          flex: 0 0 510px;
}

.contacts__map {
  width: 100%;
  max-width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.contacts__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.list-contacts {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.list-contacts__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 1) / 2);
          flex: 0 0 calc((100% - 30px * 1) / 2);
  background: #F4F6FB;
  padding: 30px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.list-contacts__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
}

.list-contacts__icon img,
.list-contacts__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.list-contacts__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 8px;
}

.list-contacts__name {
  color: #313131;
  font-size: 18px;
  font-weight: 400;
}

.list-contacts__value {
  color: #313131;
  font-size: 20px;
  font-weight: 600;
}

.list-contacts__value a {
  color: inherit;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.list-contacts__timework {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 13px;
  font-size: 20px;
  font-weight: 400;
  color: #313131;
}

.list-contacts__timework li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.list-contacts__timework li span:first-child {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75px;
          flex: 0 0 75px;
}

.list-contacts__timework li span:last-child {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-weight: 600;
}

.feedback-contacts {
  background: #113837;
  padding: 30px;
  border-radius: 16px;
}

.feedback-contacts__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}

.feedback-contacts__form {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.about {
  padding: 60px 0px 50px;
}

.about__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 50px;
}

.about__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.about__row:nth-child(even) .about__info {
  background: #D9B673;
  color: #313131;
}

.about__info {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
  padding: 40px;
  border-radius: 16px;
  background: #113837;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.about__info > *:not(:last-child) {
  margin-bottom: 15px;
}

.about__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
}

.about__img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding-bottom: 67.2%;
  min-height: 100%;
}

.about__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-section {
  padding: 60px 0px 50px;
}

.news-section__content {
  margin-top: 30px;
}

.news-section__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.news-section__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
}

.news-section__pagging {
  margin-top: 30px;
}

.news-page {
  padding: 30px 0px 35px;
}

.news-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  margin-top: 30px;
}

.news-page__main {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.news-page__sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 330px;
          flex: 0 0 330px;
}

.main-news-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 10px;
}

.main-news-page__date {
  color: #AAA;
  font-size: 16px;
  font-weight: 400;
}

.main-news-page__body {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.main-news-page__body h4 {
  font-size: 20px;
  font-weight: 700;
}

.main-news-page__body ._text-b {
  color: #313131;
  font-size: 20px;
  font-weight: 500;
}

.main-news-page__body ul {
  padding-left: 20px;
}

.main-news-page__body ul li {
  list-style: disc;
}

.main-news-page__body ul li:not(:last-child) {
  margin-bottom: 15px;
}

.main-news-page__body ul._nolist {
  padding-left: 0;
}

.main-news-page__body ul._nolist li {
  list-style: none;
}

.main-news-page__image {
  width: 100%;
  max-width: 100%;
  border-radius: 16px;
  overflow: hidden;
}

.main-news-page__image img {
  width: 100%;
  max-width: 100%;
}

.sidebar-news-page__title {
  color: #313131;
  font-size: 20px;
  font-weight: 700;
}

.sidebar-news-page__content {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.sidebar-news-page__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}

.sidebar-news-page__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 156px;
          flex: 0 0 156px;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 156/126;
  position: relative;
  display: block;
}

.sidebar-news-page__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.sidebar-news-page__body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 15px;
}

.sidebar-news-page__main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.sidebar-news-page__price {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  color: #113837;
  font-size: 18px;
  font-weight: 800;
}

.sidebar-news-page__like {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.sidebar-news-page__like img,
.sidebar-news-page__like svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.sidebar-news-page__address {
  color: #313131;
  font-size: 16px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.agents {
  padding: 60px 0px 50px;
}

.agents__content {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.agents__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
          flex: 0 0 calc((100% - 40px * 2) / 3);
}

.agent-page {
  padding: 60px 0px 30px;
}

.agent-page__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

.agent-page__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 240px;
          flex: 0 0 240px;
  aspect-ratio: 1/1;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.agent-page__image::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(82.9%, rgba(9, 44, 30, 0)), to(#052A1B));
  background: -o-linear-gradient(top, rgba(9, 44, 30, 0) 82.9%, #052A1B 100%);
  background: linear-gradient(180deg, rgba(9, 44, 30, 0) 82.9%, #052A1B 100%);
}

.agent-page__image img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.agent-page__info {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.agent-page__work {
  color: #8B8B8B;
  font-size: 16px;
  font-weight: 500;
  margin-top: -15px;
}

.agent-page__contacts {
  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;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 5px;
}

.agent-page__phone {
  color: #313131;
  font-size: 22px;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.agent-page__messagers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}

.agent-page__messager {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
  width: 24px;
}

.agent-page__messager img,
.agent-page__messager svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.agent-page__back {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #8B8B8B;
  font-size: 16px;
  font-weight: 400;
  margin-top: 30px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.agent-page__back svg path {
  fill: #8B8B8B;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.vacancy {
  padding: 60px 0px 50px;
}

.vacancy__banner {
  margin-top: 30px;
}

.vacancy__list {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
}

.banner-vacancy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
}

.banner-vacancy__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
  padding: 40px;
  border-radius: 16px;
  background: #113837;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.banner-vacancy__body > *:not(:last-child) {
  margin-bottom: 15px;
}

.banner-vacancy__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 50px * 1) / 2);
          flex: 0 0 calc((100% - 50px * 1) / 2);
}

.banner-vacancy__img {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding-bottom: 64%;
  min-height: 100%;
}

.banner-vacancy__img img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
}

.item-vacancy {
  padding: 20px 30px;
  border-radius: 16px;
  background: #F4F6FB;
}

.item-vacancy__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  cursor: pointer;
}

.item-vacancy__head._active .item-vacancy__icon span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
      -ms-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.item-vacancy__name {
  color: #313131;
  font-size: 20px;
  font-weight: 700;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.item-vacancy__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  height: 32px;
  width: 32px;
  position: relative;
}

.item-vacancy__icon span {
  width: 18px;
  height: 2px;
  background: #D9B673;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-vacancy__icon span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
      -ms-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.item-vacancy__body {
  margin-top: 20px;
  display: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.item-vacancy__body ul {
  padding-left: 20px;
}

.item-vacancy__body ul li {
  list-style: disc;
}

.item-vacancy__body ul li:not(:last-child) {
  margin-bottom: 5px;
}

.item-vacancy__body h5 {
  font-size: 16px;
  font-weight: 700;
}

.item-vacancy__body > *:not(:last-child) {
  margin-bottom: 20px;
}

.item-vacancy__body a {
  color: #113837;
  font-weight: 700;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.item-vacancy__body ._btn {
  min-width: 280px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.favorite {
  padding: 60px 0px 50px;
}

.favorite__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}

.favorite__title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.favorite__delete {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  color: #858585;
  font-weight: 400;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.favorite__delete img,
.favorite__delete svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  width: 24px;
  height: 24px;
}

.favorite__delete svg path {
  fill: #858585;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}

.favorite__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
  margin-top: 30px;
}

.favorite__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 3) / 4);
          flex: 0 0 calc((100% - 40px * 3) / 4);
}

.trade-banner {
  background: #F4F6FB;
  padding: 0px !important;
  margin-bottom: 35px;
}

.trade-banner__wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  min-height: 424px;
}

.trade-banner__body {
  position: relative;
  z-index: 1;
}

.trade-banner__title {
  color: #313131;
  font-size: 32px;
  font-weight: 700;
  max-width: 520px;
  line-height: 1.2;
}

.trade-banner__title span {
  color: #D9B673;
}

.trade-banner__text {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 595px;
  margin-top: 15px;
}

.trade-banner__button {
  width: 250px;
  margin-top: 30px;
}

.trade-banner__image {
  position: absolute;
  bottom: 0;
  right: -30px;
  width: 960px;
}

.trade-banner__image img {
  width: 100%;
  max-width: 100%;
}

.trade-benefits {
  padding: 35px 0px;
}

.trade-benefits__title {
  text-align: center;
}

.trade-benefits__content {
  margin-top: 30px;
  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;
  text-align: center;
  row-gap: 30px;
}

.trade-benefits__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}

.trade-benefits__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 40px * 2) / 3);
          flex: 0 0 calc((100% - 40px * 2) / 3);
  border-radius: 16px;
  background: #F4F6FB;
  padding: 30px;
  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;
  text-align: center;
  row-gap: 12px;
}

.trade-benefits__icon {
  width: 64px;
  height: 64px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 64px;
          flex: 0 0 64px;
  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;
  background: #D9B673;
  border-radius: 50%;
  margin-bottom: 12px;
}

.trade-benefits__icon img,
.trade-benefits__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 32px;
          flex: 0 0 32px;
  width: 32px;
  height: 32px;
}

.trade-benefits__name {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.trade-benefits__text {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.trade-benefits__subtext {
  color: #313131;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.trade-benefits__button {
  min-width: 250px;
}

.trade-benefits-second {
  padding: 35px 0px;
}

.trade-benefits-second__title {
  text-align: center;
}

.trade-benefits-second__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  margin-top: 30px;
}

.trade-benefits-second__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 2) / 3);
          flex: 0 0 calc((100% - 30px * 2) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.trade-benefits-second__icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  height: 42px;
  width: 42px;
}

.trade-benefits-second__icon img,
.trade-benefits-second__icon svg {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 42px;
          flex: 0 0 42px;
  width: 42px;
  height: 42px;
}

.trade-benefits-second__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.trade-benefits-second__name {
  color: #313131;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.trade-benefits-second__text {
  color: #797979;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.consultation {
  padding: 35px 0px;
  margin-top: 70px;
}

.consultation__wrapper {
  background: #113837;
  border-radius: 16px;
  position: relative;
  padding: 40px;
}

.consultation__content {
  width: 405px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 30px;
  margin-left: 160px;
  position: relative;
  z-index: 1;
}

.consultation__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 12px;
}

.consultation__title {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}

.consultation__text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
}

.consultation__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.consultation__image {
  position: absolute;
  width: 283px;
  right: 180px;
  bottom: 0;
}

.consultation__image img {
  width: 100%;
  max-width: 100%;
}

.ipoteca {
  padding: 60px 0px 30px;
}

.ipoteca__content {
  margin-top: 30px;
}

.ipoteca__rows {
  margin-top: 30px;
}

.ipoteca__row {
  padding: 70px 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.ipoteca__row:last-child {
  padding-bottom: 0;
}

.ipoteca__row:not(:last-child) {
  border-bottom: 1px solid #DCDCDC;
}

.ipoteca__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2);
          flex: 0 0 calc(100% / 2);
}

.ipoteca__name {
  color: #313131;
  font-size: 24px;
  font-weight: 700;
  max-width: 455px;
  line-height: 1.2;
}

.ipoteca__description {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.ipoteca__description > *:not(:last-child) {
  margin-bottom: 20px;
}

.ipoteca__description ul {
  padding-left: 20px;
}

.ipoteca__description ul li {
  list-style: disc;
}

.ipoteca__description h4 {
  color: #313131;
  font-size: 20px;
  font-weight: 700;
}

.banner-ipoteca {
  border-radius: 16px;
  background: #F4F6FB;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 60px 100px;
  overflow: hidden;
}

.banner-ipoteca__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2);
          flex: 0 0 calc(100% / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}

.banner-ipoteca__img {
  width: 409px;
  position: absolute;
  bottom: -60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.banner-ipoteca__img img {
  width: 100%;
  max-width: 100%;
}

.banner-ipoteca__body {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% / 2);
          flex: 0 0 calc(100% / 2);
}

.banner-ipoteca__title {
  color: #313131;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.banner-ipoteca__form {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

.banner-ipoteca__form .checkbox .checkbox__text {
  font-size: 14px;
}

.banner-ipoteca__column {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 20px * 1) / 2);
          flex: 0 0 calc((100% - 20px * 1) / 2);
}

.banner-ipoteca__column._full {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.banner-ipoteca__input {
  border-color: #fff;
  width: 100%;
  max-width: 100%;
}

.banner-ipoteca__button {
  min-width: 270px;
}

.calculate-ipoteca__logo {
  margin-left: 30px;
  width: 114px;
}

.calculate-ipoteca__logo img,
.calculate-ipoteca__logo svg {
  width: 100%;
  max-width: 100%;
}

.calculate-ipoteca__iframe {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
}

.partners-page {
  padding: 60px 0px 30px;
}

.partners-page__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 20px;
}

.partners-page__title {
  color: #313131;
  font-size: 32px;
  font-weight: 700;
}

.partners-page__text {
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.partners-page__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
  margin-top: 60px;
}

.partners-page__item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% - 30px * 3) / 4);
          flex: 0 0 calc((100% - 30px * 3) / 4);
  border: 1px solid #DCDCDC;
  border-radius: 16px;
  overflow: hidden;
}

.partners-page__item img {
  width: 100%;
  max-width: 100%;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding-top: 80px;
}

.page section:last-child {
  padding-bottom: 80px;
}

.complex-video {
  margin: 20px 0px;
}

.complex-map {
  margin: 20px 0px;
}
.atricles_text img {
  max-width: 100%;
}
.atricles_text p {
  margin-bottom: 20px;
}
.atricles_text h2 {
  color: #313131;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}
.atricles_text h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.filter-catalog select {
  display: none;
}
@media (any-hover: hover) {
  .select__option:hover {
    background: #eeeeee;
  }

  ._btn._stroke:hover {
    color: #fff;
    background: #113837;
  }

  ._btn:hover {
    background: #0f302f;
  }

  ._btn._yellow._stroke:hover {
    color: #113837;
    background: #D9B673;
  }

  ._btn._yellow:hover {
    color: #113837;
    background: #c79b48;
  }

  .pagging__item:not(._active, ._more):hover {
    border-color: #113837;
  }

  .application-send__text a:hover {
    text-decoration: underline;
  }

  .phone-menu__value:hover {
    color: #D9B673;
  }

  .menu-list__link:hover {
    color: #D9B673;
  }

  .language-header__item:hover {
    color: #D9B673;
  }

  .mini-catalog__name:hover {
    color: #D9B673;
  }

  .mini-catalog__action:hover {
    color: #D9B673;
  }

  .offer__arrow:hover,
  .offer-complex__arrow:hover {
    background: #113837;
    border-color: #113837;
  }

  .offer__arrow:hover svg path,
  .offer-complex__arrow:hover svg path {
    fill: #fff;
  }

  .head-section__more:hover {
    color: #D9B673;
  }

  .nav-head-section__item:not(._active):hover {
    border-color: #113837;
    color: #113837;
  }

  .item-offer__head:hover .item-offer__paggination {
    opacity: 1;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
  }

  .item-offer__paggination .swiper-pagination-bullet:not(.swiper-pagination-bullet-active):hover {
    opacity: 0.8;
  }

  .item-offer__address:hover {
    color: #D9B673;
  }

  .specialist-item-offer__phone:hover {
    color: #0f302f;
  }

  .complex-offer__name:hover {
    color: #D9B673;
  }

  .complex-offer__image:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .marker__address:hover {
    color: #113837;
  }

  .agent:hover .agent__image img {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }

  .item-news__image:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .item-news__name:hover {
    color: #D9B673;
  }

  .main-footer__link:hover {
    color: #D9B673;
  }

  .social-main-footer__item:hover svg path {
    fill: #D9B673;
  }

  .bottom-footer__dev:hover {
    color: #D9B673;
  }

  .bottom-footer__dev:hover svg path {
    fill: #D9B673;
  }

  .filter-catalog__mod-delete:hover svg path {
    fill: red;
  }

  .back:hover .back__icon {
    border-color: #313131;
  }

  .back:hover .back__text {
    color: #313131;
  }

  .apartament__address:hover {
    color: #113837;
  }

  .list-contacts__value a:hover {
    color: #113837;
  }

  .sidebar-news-page__image:hover img {
    -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
            transform: scale(1.1);
  }

  .sidebar-news-page__address:hover {
    color: #D9B673;
  }

  .agent-page__phone:hover {
    color: #113837;
  }

  .agent-page__back:hover {
    color: #313131;
  }

  .agent-page__back:hover svg path {
    fill: #313131;
  }

  .item-vacancy__body a:hover {
    color: #0f302f;
  }

  .favorite__delete:hover {
    color: #313131;
  }

  .favorite__delete:hover svg path {
    fill: #313131;
  }
}

._webp .sell-with-us__image { background: url(../img/sell-with-us-bg.webp) center/cover no-repeat; }

.page_error_row {
  display: flex;
  flex-direction: row;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
}
._row_info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
._row_info h2 {
  font-size: 52px;
  font-weight: 700;
  line-height: 62.93px;
  text-align: left;
  color: #221E1F;
}
._row_info p {
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
  color: #797979;
}
._row_info a {
  padding: 16px 20px 16px 20px;
  border-radius: 25px;
  opacity: 1;
  background: #113837;
  color: #ffffff;
}

.grecaptcha-badge {
  display: none!important;
}

.sidebar-card__section._application.mobile_form {
  display: none;
}

.price-search__info span {
  color: #313131!important;
}

.ov_hidden {
  overflow: hidden;
}

.search__form .search__column._price {
  min-width: 330px;
}

.checkbox_cont_select {
  display: none;
}

.filter-catalog__column .checkbox_cont_title {
  border: 1px solid #DCDCDC;
  max-width: 270px;
}

.checkbox_cont_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  border-radius: 50px;
  background: #fff;
  color: #313131;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  padding: 10px 20px;
  min-height: 50px;
  min-width: 50px;
  cursor: pointer;
}
.checkbox_cont {
  position: relative;
}
.checkbox_cont_select {
  background: #ffffff;
  color: #313131;
  display: none;
  position: absolute;
  top: calc(100% + 5px);
  border-radius: 8px;
  min-width: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid #DCDCDC;
  font-size: 14px;
  padding: 5px 0px 5px 0px;
  overflow-y: auto;
  max-height: 350px;
  z-index: 2;
  flex-direction: column;
  gap: 10px;
}
.checkbox_cont.active .checkbox_cont_select {
  display: flex;
}
.checkbox_title {
  color: #313131;
  font-size: 16px;
  font-weight: 500;
  padding: 10px;
}
.checkbox_select {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.checkbox_select label {
  cursor: pointer;
  font-size: 16px;
  padding: 7px 15px;
}
.checkbox_select input {
  width: 14px;
  height: 14px;
}
.checkbox_select label:hover{
  background: #eeeeee;
}
.checkbox_cont_title {
  display: flex;
  overflow-y: hidden;
  overflow-x: hidden;
  line-height: 22px;
  padding: 3px 20px;
}

.filter-catalog__column._features {
  max-width: 234px;
}

.filter-catalog__column._features .checkbox_cont_title{
  height: 50px;
  display: block;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow-y: hidden;
  padding: 10px 10px;
  line-height: 30px;
}

span.item-offer__exclusive {
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: left;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 3px 12px 3px 12px;
  gap: 3px;
  border-radius: 4px;
  display: flex;
  background: #113837;
  color: #D9B673;
}

.search_top {
  cursor: pointer;
}

.search-header-fixed {
  position: fixed;
  z-index: 99;
  top: 0;
  width: 100%;
  left: 0;
  height: 100vh;
  display: none;
}
.search-header-fixed.active {
  display: block;
}
.search-bg {
  height: 100%;
  width: 100%;
  position: absolute;
  background: #00000033;
  z-index: 1;
}
.search-container {
  background: #ffffff;
  position: relative;
  z-index: 2;
  height: 79px;
}
.search-form {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0px;
}
button.search-button {
  padding: 12px 30px 12px 30px;
  border-radius: 4px;
  background: #113837;
  color: #fff;
  font-family: Inter;
  font-size: 16px;
  font-weight: 600;
  line-height: 19.36px;
  text-align: left;
}
input.search-top {
  width: 80%;
  font-family: Inter;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.36px;
  text-align: left;
  padding: 10px 5px;
}
.search-result {
  background: #fff;
  z-index: 2;
  position: relative;
  border-top: 1px solid #d5d5d5;
  padding-top: 15px;
}
.result-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 15px;
  max-height: 450px;
  overflow-y: auto;
}
.search-info {
  font-family: Inter;
  font-size: 16px;
  font-weight: 700;
  line-height: 19.36px;
  text-align: left;
}
.search-items {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 5px 0px;
  /*border-top: 1px solid #f4f4f4;*/
}
.search-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  padding: 5px 0px;
  border-top: 1px solid #f2f2f2;
}
.search-item-img img {
  max-width: 110px;
  border-radius: 8px;
  padding: 5px;
}
.search-item-info {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.search-item-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.search-item-title h3{
  font-family: Inter;
  font-size: 16px;
  font-weight: 500;
  line-height: 19.36px;
  text-align: left;
}
.search-item-title span.characteristic-info-sidebar-card__value {
  color: #000;
}
.search-item-price {
  font-family: Inter;
  font-size: 16px;
  font-weight: 800;
  line-height: 19.36px;
  text-align: left;
}
.result-container::-webkit-scrollbar {
  width: 6px;
}
.result-container::-webkit-scrollbar-corner {
  background-color: #8B8B8B;
}

.result-container::-webkit-scrollbar-thumb {
  background-color: #aeafae;
  border-radius: 20px;
}
.search-form svg {
  cursor: pointer;
}

/*New style*/
form.login_form {
  display: flex;
  opacity: 1;
  border-radius: 16px;
  border-width: 2px;
  padding: 40px;
  gap: 30px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 480px;
  margin: 60px auto;
  border: 2px solid #113837;
  min-height: 320px;
}
h1.login_title {
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 32px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #313131;
}
.login-lable {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  gap:20px;
}
.login-lable label{
  width: 100%;
}
.login-lable input{
  border-radius: 8px;
  border: 1px solid #DCDCDC;
  background: #FFF;
  padding: 10px 20px;
  color: #8B8B8B;
  display: block;
  font-size: 14px;
  font-weight: 500;
  min-height: 50px;
  -webkit-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  width: 100%;
}
button.login_submit {
  width: 100%;
  background: #113837;
  color: #ffffff;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  height: 51px;
  opacity: 1;
  border-radius: 100px;
  gap: 10px;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
}
a.login_submit {
  width: 100%;
  background: #113837;
  color: #ffffff;
  font-family: Inter;
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  height: 51px;
  opacity: 1;
  border-radius: 100px;
  gap: 10px;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
}
a.login_recovery {
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #8B8B8B;
}

.no_projects {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  gap:14px;
}
.no_projects p {
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
  color: #B5B5B5;
}
a.add-project {
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #D9B673;
  padding: 10px 32px;
  gap: 12px;
  border-radius: 100px;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
color: #113837;
  margin-top: 18px;
}

.item-offer__top_mobile {
  display: none;
}

.catalog__item.item-agent {
  width: 100%;
  flex: 0 0 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  background: #F3F3F3;
  padding: 20px;
  border-radius: 16px;
  gap: 20px;
}

.item-agent .item-offer__head {
  width: 160px;
}
.item-agent ul.item-offer__charateristic.charateristic-item-offer {
  width: 320px;
}
.item-offer__edit {
  display: flex;
  gap: 20px;

  flex-direction: column;
}
.top-edit-info {
  display: flex
;
  gap: 20px;
}
.send_info a.btn.green {
  color: #FFF;
  background-color: #30d9e8;
  border-color: #18666d;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  transition: box-shadow .28s cubic-bezier(.4,0,.2,1);
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  user-select: none;
  padding: 11px 19px 10px;
}
.properties_agent {
  position: relative;
}
.properties_agent a.add-project {
  position: absolute;
  right: 25px;
  top: -77px;
}

.project-form {
  max-width: 1200px;
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin: 30px 0px;
}
.project-form  form {
  width: 100%;
  background: #F3F3F3;
  padding: 40px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
}
.form-group.view_id {
  display: flex;
  gap: 20px;
  font-family: Inter;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  letter-spacing: 0%;
  text-align: center;
  line-height: 18px;
}
.form-group.view_id input{
  width: 18px;
  height: 18px;
}
.add-project-form input.form-control {
  background: #ffffff;
  color: #000000;
  justify-content: space-between;
  opacity: 1;
  border-radius: 8px;
  padding-top: 25px;
  padding-right: 20px;
  padding-bottom: 10px;
  padding-left: 20px;
  border-width: 1px;
  width: 100%;
  border: 1px solid #DCDCDC;
}
.add-project-form .form-row {
  display: flex
;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
  gap: 21px;
}
.add-project-form .select.select_form-control {
  width: 100%;
}
.add-project-form textarea.form-control {
  height: 100px;
  opacity: 1;
  gap: 10px;
  border-radius: 8px;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  border-width: 1px;
  width: 100%;
}
.add-project-form button.btn.btn-warning {
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #D9B673;
  padding: 14px 32px;
  gap: 12px;
  border-radius: 100px;
  font-family: Inter;
  font-weight: 600;
  font-style: Semi Bold;
  font-size: 14px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #113837;
  margin-top: 18px;
  width: 180px;
}
p.login_info {
  color: #8B8B8B;
  text-align: center;
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
p.login_error {
  color: red;
}

.form-row.city_id, .form-group.type_id {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 5px;
}
.select.select_form-control_room {
  width: 100%;
}
label.file-input {
  display: flex
;
  color: #000000;
  background: #ffffff;
  opacity: 1;
  border-radius: 8px;
  gap: 10px;
  border-width: 1px;
  border-style: dashed;
  border-color: #9f9f9f;
  padding-top: 16px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  flex-direction: column;
  align-items: center;
  align-content: center;
  cursor: pointer;
}
label.file-input  input.form-control {
  display: none;
}
label.file-input span {
  font-family: Inter;
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  text-align: center;
}
label.file-input  small {
  color: #AAAAAA;
}
.form-row label {
  position: relative;
}
.form-row label::before {
  content: attr(data-placeholder);
  position: absolute;
  top: 5px;
  left: 10px;
  font-size: 14px;
  color: #666;
}
.disabled .select.select_form-control {

  cursor: auto;
  pointer-events: none;
}
.disabled .select.select_form-control .select__title{
  background: #cecece;
}

h2.title_info_add {
  color: #313131;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}
.advantages_info {
  display: flex;
  gap: 45px;
}
.project-form .board__content__group__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 18px;
  cursor: pointer;
}
.project-form .features_info {
  display: flex
;
  flex-direction: column;
  gap: 15px;
}

.add-project-form input::placeholder {
  color: #ffffff; /* или любой другой цвет */
  opacity: 1;     /* по умолчанию браузеры могут делать placeholder полупрозрачным */
}

button.save_url {
  display: flex
;
  height: 51px;
  opacity: 1;
  gap: 10px;
  border-radius: 100px;
  padding-top: 17px;
  padding-right: 20px;
  padding-bottom: 16px;
  padding-left: 20px;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: #D9B673;
  font-family: Inter;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  color: #113837;
}
.main-card__description a{
  color: #D9B673;
}
.ql-toolbar.ql-snow {
  background: #ffffff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}
.ql-editor.ql-blank {
  background: #ffffff;
}
.advantages_info label {
  font-size: 16px;
}
span.delete_pr_info {
  background: #ffffff;
  padding: 5px;
  border-radius: 5px;
  display: block;
  width: max-content;
  color: red;
}
.form-row.complexes_id {
  gap: 5px;
}
.photo-item.ui-sortable-handle {
  position: relative;
}
button.delete-photo-btn {
  display: block;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 22px;
  color: red;
  background: #ff000000;
}

p.info-sidebar-card__price.old_price {
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 600;
  text-decoration: line-through;
}

span.item-offer__delete {
  background: red;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-weight: 600;
  line-height: 16.94px;
  text-align: left;
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  padding: 3px 12px 3px 12px;
  gap: 3px;
  border-radius: 4px;
  display: flex
;
}

.item-offer_price_discount {
  width: 100%;
  display: flex
;
  flex-direction: row;
  justify-content: flex-start;
  gap:5px;
  align-items: center;
}
.item-offer_price_discount .item-offer__price {
  flex: 0 0 auto;
}
p.item-offer__price_discount {
  text-decoration: line-through;
}

label.reserved {
  display: flex
;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
}
