@charset "UTF-8";
@font-face {
  font-family: "OpenSansHebrew";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/OpenSansHebrew-Light.woff") format("woff"), url("../fonts/OpenSansHebrew-Light.woff2") format("woff2");
}
@font-face {
  font-family: "OpenSansHebrew";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/OpenSansHebrew-Regular.woff") format("woff"), url("../fonts/OpenSansHebrew-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "OpenSansHebrew";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/OpenSansHebrew-Bold.woff") format("woff"), url("../fonts/OpenSansHebrew-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "OpenSans";
  font-weight: 600;
  font-style: normal;
  src: url("../fonts/OpenSans-Bold.woff") format("woff"), url("../fonts/OpenSans-Bold.woff2") format("woff2");
}
@font-face {
  font-family: "OpenSans";
  font-weight: 400;
  font-style: normal;
  src: url("../fonts/OpenSans-Regular.woff") format("woff"), url("../fonts/OpenSans-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "OpenSans";
  font-weight: 300;
  font-style: normal;
  src: url("../fonts/OpenSans-Light.woff") format("woff"), url("../fonts/OpenSans-Light.woff2") format("woff2");
}
:root {  
  --card-padding: 13px;
    --card-height: 334px;
    --card-skeleton: linear-gradient(lightgrey var(--card-height), transparent 0);
    --avatar-size: 152px;
    --avatar-position: var(--card-padding) var(--card-padding);
    --avatar-skeleton: radial-gradient(circle 114px, white 99%, transparent 0 );
    --title-height: 32px;
    --title-width: 364px;
    --title-position: var(--card-padding) 180px;
    --title-skeleton: linear-gradient(white var(--title-height), transparent 0);
    --desc-line-height: 16px;
    --desc-line-skeleton: linear-gradient(white var(--desc-line-height), transparent 0);
    --desc-line-1-width: 251px;
    --desc-line-1-position: var(--card-padding) 242px;
    --desc-line-2-width: 216px;
    --desc-line-2-position: var(--card-padding) 265px;
    --footer-height: 10px;
    --footer-position: 0 calc(var(--card-height) - var(--footer-height));
    --footer-skeleton: linear-gradient(white var(--footer-height), transparent 0);
    --blur-width: 200px;
    --blur-size: var(--blur-width) calc(var(--card-height) - var(--footer-height));
}


p { text-align: left;}
.card1 {
  width: 384px;
    height: 229px;
    margin: 1px;
}
.card1:empty::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  box-shadow: 0 10px 45px rgba(0, 0, 0, 0.1);
  background-image: linear-gradient(90deg, rgba(211, 211, 211, 0) 0, rgba(211, 211, 211, 0.8) 50%, rgba(211, 211, 211, 0) 100%), var(--title-skeleton), var(--desc-line-skeleton), var(--desc-line-skeleton), var(--avatar-skeleton), var(--footer-skeleton), var(--card-skeleton);
  background-size: var(--blur-size), var(--title-width) var(--title-height), var(--desc-line-1-width) var(--desc-line-height), var(--desc-line-2-width) var(--desc-line-height), var(--avatar-size) var(--avatar-size), 100% var(--footer-height), 100% 100%;
  background-position: -150% 0, var(--title-position), var(--desc-line-1-position), var(--desc-line-2-position), var(--avatar-position), var(--footer-position), 0 0;
  background-repeat: no-repeat;
  -webkit-animation: loading 1.5s infinite;
          animation: loading 1.5s infinite;
}

@-webkit-keyframes loading {
  to {
    background-position: 350% 0, var(--title-position), var(--desc-line-1-position), var(--desc-line-2-position), var(--avatar-position), var(--footer-position), 0 0;
  }
}

@keyframes loading {
  to {
    background-position: 350% 0, var(--title-position), var(--desc-line-1-position), var(--desc-line-2-position), var(--avatar-position), var(--footer-position), 0 0;
  }
}
body {
  font-family: "OpenSansHebrew";
  font-weight: 400;
  overflow-x: hidden;
  text-align: center;
}

html body {
  font-family: "OpenSans";
  font-weight: 400;
  overflow-x: clip;
}

*, *::after, *::before {
  box-sizing: border-box;
  outline: none !important;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: overlay;
  /* min-width: 320px;
  max-width: 100%; */
}

button, input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: none;
  border: none;
  outline: none;
}
.header__logo img{
  width: 102px;
  /* height: 100px; */
}
.container {
  max-width: 1900px;
  padding: 0px 15px;
  margin: 0 auto;
}

.site-container {
  height: 100%;
}

.site-container {
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.contact-absolute {
  position: absolute;
  display: flex;
  align-items: center;
  right: 40px;
  bottom: 40px;
  flex-direction: row-reverse;
}
.contact-absolute a:not(:first-child) {
  margin-right: 20px;
}

.main-screen {
  position: relative;
}

.page-container {
  flex: 1 0 auto;
}

.footer {
  flex: 0 0 auto;
}

.underline {
  position: relative;
}
.underline::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 55px;
  background: #E9C641;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.heart {
  display: inline-block;
  margin: 0px 20px;
  position: relative;
}
.heart::before {
  content: "";
  position: absolute;
  display: block;
  width: 62px;
  height: 54px;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/heart.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media (max-width: 768px) {
  .heart::before {
    width: 44px;
    height: 39px;
  }

  .register__block p {
    padding-bottom: 0 !important;
  }

  .register__block .input-underline {
    margin-bottom: 50px !important;
  }
  .register__block .input-underline:last-child {
    margin-bottom: 0 !important;
  }

  .agen .register input[type=submit] {
    width: 260px;
  }

  .agen .register .line {
    margin-left: 0;
  }

 
  
}
.through {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}
.through::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 100%;
  background: #000;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.through span, .through div, .through h1, .through h2, .through h3, .through h4, .through h5, .through h6 {
  position: relative;
  z-index: 2;
  background: #fff;
}

.input-underline {
  background: none;
  border-bottom: 1px solid #000;
  padding-bottom: 5px;
  font-size: 17px;
  margin: 0px 2px;
}
.input-underline::-moz-placeholder {
  color: #000;
}
.input-underline:-ms-input-placeholder {
  color: #000;
}
.input-underline::placeholder {
  color: #000;
}

.page-content {
  background-position: center;
  background-repeat: repeat-y;
  background-size: 100%;
  padding-bottom: 0;
  padding-top: 0px;
}

.choices__inner {
  background: none;
  border: none;
  border-bottom: 1px solid #6B6B6B;
}

.choices[data-type*=select-one]:after {
  border: none;
  width: 14px;
  height: 7px;
  background-image: url("../img/select-arrow.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 0 !important;
  transition: 0.2s linear;
}

.is-open:after {
  transform: rotate(180deg);
}

.choices[data-type*=select-one] .choices__inner {
  padding-right: 0;
}

.page-title {
  font-size: 64px;
  color: #FFFFFF;
  text-align: center;
  padding-bottom: 110px;
  padding-top: 290px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
.page-title span {
  z-index: 2;
  position: relative;
}
.page-title::after {
  display: block;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  top: 0;
  left: 0;
  z-index: 1;
}

.page-title--lines {
  padding-bottom: 50px;
}
.page-title--lines h2 {
  font-size: 77px;
  color: #9C9C9C;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  font-weight: normal;
}
.page-title--lines h2 span {
  display: block;
  background: #fff;
}
.page-title--lines h2 span:first-child {
  font-size: 130px;
    color: #C6A74C;
    margin-bottom: -37px;
    margin-right: 228px;
    position: relative;
}
.page-title--lines h2 span:first-child::before {
  background: #D6A516;
    content: "";
    position: absolute;
    height: 5px;
    width: 347%;
    left: 279px;
    top: 50%;
    transform: translateY(-50%);
}
.page-title--lines h2 span:last-child {
  margin-left: -93px;
  position: relative;
}
.page-title--lines h2 span:last-child::before {
  background: #D6A516;
    content: "";
    position: absolute;
    height: 5px;
    width: 100%;
    right: 614px;
    top: 50%;
    transform: translateY(-50%);
}

.yellow {
  color: #C6A74C !important;
}

.service {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  background: #fff;
  text-align: center;
  padding: 50px;
  margin-top: -30px;
  margin-bottom: 50px;
}
.service p {
  font-size: 18px;
  margin: 0 auto;
  line-height: 170.68%;
  color: #6B6B6B;
  max-width: 885px;
}

.mt50 {
  margin-top: 50px;
}

.custom-checkbox {
  cursor: pointer;
    display: flex;
    flex-direction: row-reverse !important;
    display: flex;
    justify-content: flex-end;
}
.custom-checkbox input[type=checkbox] {
  display: none;
}
.custom-checkbox input[type=checkbox]:checked + div {
  background-color: #000000;
}
.custom-checkbox input[type=checkbox]:checked + div img {
  display: block;
}
.custom-checkbox div {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  width: 23px;
  height: 23px;
  border: 1px solid black;
  /* margin-left: 15px; */
  cursor: pointer;
  margin-bottom: 20px;
}
.custom-checkbox div:hover {
  background-color: #000;
}
.custom-checkbox div:hover img {
  display: block;
}
.custom-checkbox div img {
  display: none;
}

.bold {
  font-weight: bold;
}

a, button {
  transition: opacity 0.2s linear;
  cursor: pointer;
  color: #000;
  /* margin-right: 20px; */
}
a:hover, button:hover {
  opacity: 0.7;
}

.meeting {
  display: flex;
  max-width: 1650px;
  margin: 0 auto;
  background: #fff;
  padding: 70px;
  padding-bottom: 0;
  margin-top: -30px;
}
.meeting .col {
  width: 50%;
}
.meeting .col .btn {
  margin-top: 60px;
  margin-bottom: 20px;
}
.meeting .col:first-child p {
  font-size: 22px;
  line-height: 122.68%;
  text-align: right;
}
.meeting .col:last-child {
  position: relative;
}
.meeting .col img {
  max-width: 740px;
  width: 100%;
  margin-bottom: -5px;
}
.meeting .col .name {
  position: absolute;
  bottom: 40px;
  max-width: 120px;
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #646464;
}

@media (min-width: 991px) {
  .desktop-hidden {
    display: none !important;
  }
}
.sub-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  direction: ltr;
}
.sub-nav .title {
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  color: #000000;
}
.sub-nav ul {
  display: flex;
  align-items: center;
  margin-left: -15px;
}
.sub-nav ul li {
  padding: 0px 15px;
}
.sub-nav ul li a {
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #151515;
}
.sub-nav ul li a.active {
  font-weight: bold;
  position: relative;
}
.sub-nav ul li a.active::after, .sub-nav ul li a.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-bottom: 10px solid #ACACAC;
}
.sub-nav ul li a.active::after {
  border-bottom: 10px solid #fff;
  bottom: -27px;
}

@media (max-width: 1200px) {
  .header__logo img {
    width: 76%;
    /* height: 100px; */
}
  .contact-absolute {
    flex-direction: column-reverse;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
  .contact-absolute a {
    margin-right: 0px !important;
  }
  .contact-absolute a svg {
    max-width: 20px;
  }
}


html[dir=ltr] .content-section,
html[dir=ltr] .header__contact ul a,
html[dir=ltr] .header__contact ul,
html[dir=ltr] .footer-nav a,
html[dir=ltr] .footer-nav,
html[dir=ltr] .footer__slider ,
html[dir=ltr] .footer .slide-footer ,
html[dir=ltr] .apartment .sidebar .agent__contact a,
html[dir=ltr] .agent__info-wrapper,
html[dir=ltr] .thumbs,
html[dir=ltr] .apartment-details,
html[dir=ltr] .apartment .container,
html[dir=ltr] .home-page .main-screen .categories,
html[dir=ltr] .fields,
html[dir=ltr] .home-page .main-screen .numbers ul,
html[dir=ltr] .meeting {
  /* flex-direction: row-reverse; */
}
html[dir=ltr] .content-section.mirror {
  /* flex-direction: row; */
}
html[dir=ltr] .footer-nav ul {
  display: flex;
    flex-direction: column;
    align-items: baseline;
}
html[dir=ltr] .footer-nav ul a {
  text-align: left;
}

html[dir=rtl] .content-section.mirror {
  /* flex-direction: row-reverse; */
}

.footer {
  background-image: url("../img/footer-bg.webp");
  background-size: cover;
  padding-bottom: 50px;
  position: relative;
}
.footer::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.footer-top {
  display: flex;
  justify-content: center;
  padding: 20px 0px;
  background: black;
  position: relative;
}
.footer-top::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #D5B75E;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.footer-back {
  display: flex;
  align-items: center;
  font-size: 24px;
  color: #fff;
  position: absolute;
  left: 10px;
  background-color: #000;
  z-index: 3;
  padding: 0px 15px;
}
.footer-back img {
  padding-top: 3px;
  margin-right: 12px;
}
.footer-title {
  font-size: 30px;
  color: #D5B75E;
  background-color: #000;
  position: relative;
  z-index: 3;
  padding: 0px 15px;
}
.footer__slider {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  z-index: 3;
  direction: ltr;
}
.footer__slider-wrapper {
  width: 100%;
    max-width: 363px;
    margin: 0 auto;
    max-height: 300px;
}
.footer .slide {
  flex-shrink: 0;
}
.footer .slide-img {
  width: 363px;
  height: 204px;
}
.footer .slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.footer .slide-footer {
  display: flex;
  background: #fff;
  justify-content: space-between;
  padding: 10px;
}
.footer .slide-footer .col > div {
  display: flex;

}
.footer .slide-footer .person {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  border: 3px solid #fff;
  margin-top: -50px;
  overflow: hidden;
}
.footer .slide-footer .person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.footer .slide-footer button {
  margin-top: -6px;
  cursor: pointer;
}
.footer .slide-footer .price {
  font-size: 25px;
  line-height: 34px;
  text-align: right;
  color: #000000;
}
.footer .slide-footer .info {
  font-size: 14.3658px;
  text-align: left;
}
.footer .slide-footer .info div {
  margin-bottom: 5px;
}
.footer .next-slide, .footer .prev-slide {
  position: absolute;
  z-index: 16;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: opacity 0.2s linear;
}
.footer .next-slide:hover, .footer .prev-slide:hover {
  opacity: 0.6;
}
.footer .next-slide {
  left: 30px;
}
.footer .slider-nav-wrap {
  position: relative;
  width: 100%;
}
.footer .slider-nav-wrap::after {
  z-index: 15;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  left: 0;
  background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  max-width: 290px;
  width: 100%;
  height: 100%;
}
.footer .slider-nav-wrap::before {
  z-index: 15;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  background: linear-gradient(270deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
  max-width: 290px;
  width: 100%;
  height: 100%;
}
.footer .prev-slide {
  right: 30px;
  transform: translateY(-50%) rotate(180deg);
}
.footer-nav {
  display: flex;
  position: relative;
  z-index: 10;
  padding: 30px 60px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-nav ul {
  max-width: 310px;
  margin-bottom: 30px;
  margin-left: 20px;
  margin-right: 20px;
  text-align: right;
}
.footer-nav a {
  color: #fff;
  display: flex;
  align-items: center;
}
.footer-nav .nav-header {
  font-size: 24px;
  color: #D5B75E;
  font-weight: bold;
}
.footer-nav li {
  margin-top: 20px;
}
.footer-nav li > a {
  font-size: 20px;
  font-weight: 300;
}
.footer-nav li > a img {
  margin-right: 20px;
}
.footer .social-line {
  position: relative;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}
.footer .social-line::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #D5B75E;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.footer .social-line a {
  display: block;
  margin: 0px 13px;
  border-radius: 100%;
  background: #000;
  position: relative;
  z-index: 10;
  width: 50px;
  height: 50px;
}
.footer .social-line a img {
  position: relative;
}
.footer .line {
  position: relative;
  z-index: 15;
  text-align: center;
  font-size: 16px;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.header {
  background-image: url("../img/header-bg.webp");
  background-size: cover;
}
.header--overlay {
  background-image: none;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 50;
  border-bottom: 3px solid #E9C641;
}
.header__container {
  height: 183px;
}
.header__inner {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
}
.header__menu {
  display: flex;
}
.header__menu li {
  margin-right: 30px;
}
.header__menu li a {
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.header__menu span {
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}
.header .icon {
  display: flex;
  align-items: center;
  height: 26px;
    width: 26px;
}
.header .icon img {
  margin-left: 5px;
}
.header .user-mobile {
  position: relative;
}
.header .dropdown-content {
  position: absolute;
  z-index: 99;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  background: #FFFFFF;
  border: 1px solid #d7d7d7 !important;
  display: flex;
  flex-direction: column !important;
  min-width: 100px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: -3px;
  padding-top: 5px;
  padding-bottom: 10px;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s linear;
  border-radius: 3px;
}
.header .dropdown-content::before {
  content: "";
  position: absolute;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  display: block;
  width: 20px;
  height: 20px;
  top: -20px;
  left: 57px;
  
}
.header .dropdown-content li a {
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #535353;
  width: 100%;
  padding: 2px 5px;
  font-weight: 400;
}
.header .dropdown-content li {
  transition: all 0.2s linear;
  width: 100%;
  text-align: left;
  padding: 5px 0px;
  padding-left: 10px;
}
.header .dropdown-content li:hover {
  background: #818181;
}
.header .dropdown-content li:hover a {
  color: #fff !important;
  opacity: 1;
}
.header .dropdown {
  cursor: pointer;
  position: relative;
}
.header .dropdown-content li {
  margin-right: 0;
}
.header .open {
  visibility: visible;
  opacity: 1;
}
.header__contact ul {
  display: flex;
    align-items: center;
    margin-bottom: 10px;
    flex-direction: row-reverse;
}
.header__contact ul li {
  padding: 0px 20px;
  position: relative;
}
.header__contact ul li:not(:first-child) {
  border-left: 1px solid #fff;
}
.header__contact ul a {
  display: flex;
  align-items: center;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  position: relative;
}
.header__contact ul a button {
  padding: 0;
  padding-right: 5px;
}
.header__contact ul a span {
  display: inline-block;
  margin-right: 10px;
}

.header__inner--mobile {
  display: none;
}

.main-header {
  background: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

@media (max-width: 1500px) {

  .header__logo img{
    width: 75%;
    /* height: 100px; */
  }
  
  .hamburger .closed {
    position:absolute ;
    right: 15px;
    top: 20px;
    right: 15px;
    display: none;
  }

  .hamburger.opened {
    position:absolute ;
    right: 15px;
    top: 20px;
  }
  .hamburger.opened .closed {
    display: block;
  }
  .hamburger.opened .opened {
    display: none;
  }

  .header__container {
    height: 115px;
  }

  .header__inner--mobile {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    align-items: flex-start;
    display: none;
  }
  .header__inner--mobile .logo {
    max-width: 76px;
    margin-left: 15px;
  }
  .header__inner--mobile .dropdown {
    position: relative;
  }
  .header__inner--mobile .dropdown .dropdown-content {
    top: 30px;
    right: -60px;
  }
  .header__inner--mobile .dropdown .dropdown-content::before {
    left: 65px;
  }
  .header__inner--mobile .col {
    display: flex;
    height: 25px;
    align-items: flex-start;
  }
  .header__inner--mobile .col .hamburger {
    margin-top: 1px;
    z-index: 3000;
    width: 50px;
    min-width: 50px;
  }
  .header__inner--mobile .col button {
    padding: 0;
    width: 25px;
    height: 25px;
    margin: 0px 7px;
  }
  .header__inner--mobile .col button img {
    width: 100%;
    height: 100%;
  }
  .header__inner--mobile .col a {
    width: 25px;
    height: 25px;
    margin: 0px 7px;
  }
  .header__inner--mobile .col a img {
    width: 100%;
    height: 100%;
  }
  .header__inner--mobile-menu {
    display: flex;
    flex-direction: column;
    width: 320px;
    position: fixed;
    background-color: #0D121A;
    height: 100vh;
    padding: 20px;
    padding-top: 70px;
    z-index: 98;
    right: -420px;
    top: 0;
    transition: right 0.2s linear;
    text-align: right;
  }
  .header__inner--mobile-menu li {
    font-weight: bold;
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 10px;
  }
  .header__inner--mobile-menu li a {
    color: #fff;
  }
  .header__inner--mobile-menu li span {
    color: #fff;
  }
  .header__inner--mobile .header__inner--mobile-menu.opened {
    right: 0;
  }
}
.connect-form {
  background-image: url("../img/contact-bg.webp");
  padding: 35px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.connect-form .descr {
  font-weight: normal;
  font-size: 20px;
  text-align: center;
  padding-top: 15px;
  padding-bottom: 60px;
}
.connect-form h2 span {
  display: block;
  font-size: 75px;
  margin-right: -80px;
  margin-left: auto;
}
.connect-form h2 span:first-child {
  position: relative;
}
.connect-form h2 span:first-child::before {
  background: #000;
  content: "";
  position: absolute;
  height: 3px;
  width: 243%;
  left: 273px;
  top: 50%;
  transform: translateY(-50%);
}
.connect-form h2 span:last-child {
  font-size: 48.9762px;
  color: #D6A516;
  margin-left: -80px;
  margin-right: auto;
  margin-top: -20px;
  position: relative;
}
.connect-form h2 span:last-child::before {
  background: #D6A516;
    content: "";
    position: absolute;
    height: 3px;
    width: 214%;
    right: 368px;
    top: 50%;
    transform: translateY(-50%);
}
.connect-form .inputs {
  display: flex;
}

@media (max-width: 768px) {
  .connect-form {
    padding: 15px 0px;
  }
  .page-title--lines h2 span:first-child {
    font-size: 71px;
    color: #C6A74C;
    margin-bottom: -60px;
    margin-right: -56px;
    position: relative;
  }

  .page-title--lines h2 {
    font-size: 50px;
    color: #9C9C9C;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin: 0 auto;
    font-weight: normal;
}
  .page-title--lines h2 span:last-child::before {
    background: #D6A516;
    content: "";
    position: absolute;
    height: 2px;
    width: 25%;
    right: 201px;
    top: 50%;
    transform: translateY(-50%);
  }

  .page-title--lines h2 span:last-child {
    margin-left: -85px;
    position: relative;
    margin-top: 42px;
}
}
.line {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  margin: 24px auto;
}
.line::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 60px;
  background: #000;
  display: block;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

input[type=submit] {
  display: block;
    font-weight: bold;
    font-size: 18px;
    padding: 11px 103px;
    border: 1px solid black;
    border-radius: 6px;
    margin: 0 auto;
    margin-top: 60px;
    cursor: pointer;
    width: auto;
    color: #000;
}
input[type=submit]:focus {
  border-width: 2px;
}

.btn {
  display: inline-block;
    padding: 6px 25px;
    font-size: 24px;
    color: #000000;
    border: 1px solid #000000;
    border-radius: 5px;
    position: relative;
}
.btn::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 60px;
  background: #000;
  display: block;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}

.content-section {
  max-width: 1683px;
  width: 100%;
  background: #fff;
  padding: 30px;
  margin: 0 auto;
  display: flex;
  margin-bottom: 50px;
}
.content-section .section-img {
  width: 720px;
  height: 100%;
}
.content-section .section-img img {
  width: 100%;
  height: auto;
}
.content-section .section-title--mobile {
  display: none;
}
.content-section .section-text {
  max-width: 50%;
  margin-right: 75px;
}
.content-section .section-text .section-title {
  font-size: 48px;
  text-align: left;
  color: #646464;
  padding-top: 30px;
  padding-left: 20px;
}
.content-section .section-text p {
  font-size: 24px;
  text-align: left;
  color: #6B6B6B;
  padding-top: 30px;
  padding-left: 20px;
}
.content-section--medium {
  max-width: 1434px;
  min-height: 500px;
  align-items: center;
}
.content-section--medium .section-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-right: 110px;
}
.content-section--medium .section-text .section-title {
  font-size: 36px;
}
.content-section--medium .section-text p {
  font-size: 18px;
  text-align: center;
  max-width: 604px;
  width: 100%;
}
.content-section--medium .section-img {
  max-width: 604px;
}
.content-section--medium .section-img img {
  max-width: 604px;
  width: 100%;
  height: 100%;
  width: auto;
  display: block;
  margin: 0 auto;
}
.content-section--medium .section-video {
  position: relative;
}
.content-section--medium .section-video::after {
  content: "";
  width: 67px;
  height: 67px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url("../img/play-btn.svg");
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content-section.mirror {
  flex-direction: row-reverse;
}

.content-section--medium.mirror .section-text {
  margin-right: 0;
  margin-left: 110px;
}

.b-form-wrapper {
  padding: 130px 0px;
  background-size: cover;
  background-position: center;
}
.b-form-wrapper .form {
  background: rgba(255, 255, 255, 0.8);
  max-width: 675px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.b-form-wrapper .form-header {
  border-bottom: 1px solid #BC9500;
  padding: 30px 0px;
  margin-bottom: 30px;
}
.b-form-wrapper .form-subtitle {
  font-size: 27.2212px;
  text-align: center;
  color: #646464;
}
.b-form-wrapper .form-title {
  font-size: 36.295px;
  text-align: center;
  color: #BC9500;
  font-weight: bold;
  padding-top: 10px;
}
.b-form-wrapper .form-text {
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  color: #646464;
}
.b-form-wrapper .form form {
  display: flex;
  flex-direction: column;
  padding: 0 40px;
}
.b-form-wrapper .form form .line {
  /* margin-left: 0; */
}
.b-form-wrapper .form form input[type=submit] {
  margin-top: 0;
  max-width: 314px;
  padding: 15px 52px;
}
.b-form-wrapper .form form label {
  display: flex;
  margin-top: 40px;
  text-align: left;
  flex-direction: column;
}
.b-form-wrapper .form form input {
  margin-right: 0;
}

@media (max-width: 768px) {
  .b-form-wrapper .form form .line {
    margin-top: 30px;
  }
}
.accordion-items {
  max-width: 1685px;
  margin: 0 auto;
  width: 100%;
}
.accordion-item {
  background-color: #505050;
  margin-bottom: 20px;
}
.accordion-header {
  font-size: 48px;
  color: #FFFFFF;
  padding: 20px 130px;
  position: relative;
  cursor: pointer;
}
.accordion-header::after {
  content: "";
  position: absolute;
  right: 0;
  width: 57px;
  height: 2px;
  background-color: #FFFFFF;
  top: 50%;
  transform: translateY(-50%);
}
.accordion-header::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 14px;
  background-image: url("../img/accordion-arrow.svg");
  left: 30px;
  background-size: cover;
  top: 44px;
}
.accordion-content {
  font-weight: normal;
  font-size: 24px;
  /* line-height: 90.18%; */
  text-align: right;
  color: #FFFFFF;
  display: none;
  padding-left: 40px;
  padding-bottom: 40px;
  padding-right: 130px;
  padding-top: 20px;
}

.is-open .accordion-content {
  display: block !important;
}

.is-open .accordion-header::before {
  transform: rotate(180deg);
}

.thumbs {
  display: flex;
  max-width: 1420px;
  margin: 0 auto;
  height: 685px;
  padding: 20px 10px;
  padding-bottom: 0;
  flex-direction: row-reverse;
}
.thumbs .slider-arrow {
  transition: opacity 0.2s linear;
}
.thumbs .slider-arrow:hover {
  opacity: 0.7;
}
.thumbs .swiper-button-disabled {
  cursor: default !important;
  display: none;
}
.thumbs .swiper-button-disabled img {
  opacity: 0.5;
}
.thumbs .swiper-button-disabled:hover {
  opacity: 1;
}
.thumbs .secondary__slider {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.thumbs .secondary__slider-wrapper {
  max-width: 265px;
  width: 100%;
  overflow: hidden;
  max-height: 685px;
  height: 100%;
  position: relative;
  z-index: 2;
}
.thumbs .secondary__slider-wrapper .slider-arrow {
  position: absolute;
  z-index: 5;
  cursor: pointer;
  height: 70px;
  width: 100%;
  padding: 15px 0px;
}
.thumbs .secondary__slider-wrapper .slider-arrow img {
  width: 26px;
  height: 16px;
  margin: 0 auto;
  display: block;
}
.thumbs .secondary__slider-wrapper .slider-next {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  background-image: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.thumbs .secondary__slider-wrapper .slider-prev {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}
.thumbs .secondary__slider .secondary__slider-slide {
  flex-shrink: 0;
  overflow: hidden;
  cursor: pointer;
}
.thumbs .secondary__slider .secondary__slider-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.thumbs .main__slider {
  width: 100%;
  height: 100%;
  display: flex;
}
.thumbs .main__slider-wrapper {
  width: 100%;
  max-width: 1125px;
  overflow: hidden;
  margin-left: 10px;
}
.thumbs .main__slider-wrapper .slider-arrow {
  display: none;
}
.thumbs .main__slider-slide {
  flex-shrink: 0;
}
.thumbs .main__slider-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.cards {
  overflow-y: auto;
  min-height: 73vh;
  max-height: 75vh;
  padding-bottom: 100px;
  -ms-overflow-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 11px;
  grid-row-gap: 11px;
  justify-content: center;
}
.cards-inner {
  position: relative;
  max-width: 1885px;
  margin: 0 auto;
}
.cards::-webkit-scrollbar {
  width: 0;
}
.cards .next-page, .cards .prev-page {
  position: absolute;
  z-index: 10;
}
.cards .next-page {
  bottom: 56px;
  left: 50%;
  z-index: 50;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.cards .prev-page {
  top: 57px;
  z-index: 50;
  left: 50%;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.cards .prev-page img {
  transform: rotate(180deg);
}
.cards-wrapper {
  background: #F8F8F8;
  padding: 15px 10px;
  display: flex;
  flex-direction: row-reverse;
}
.cards .card {
  max-width: 447px;
}
.cards .card-img {
  width: 100%;
  max-height: 250px;
}
.cards .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cards .card-footer {
  display: flex;
  background: #fff;
  justify-content: space-between;
  padding: 10px;
  position: relative;
  z-index: 10;
}
.cards .card-footer .col > div {
  display: flex;
  max-width: 170px;
}
.cards .card-footer .person {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  border: 3px solid #fff;
  margin-top: -50px;
  overflow: hidden;
  background: #fff;
}
.cards .card-footer .person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.cards .card-footer button {
  margin-top: -6px;
  cursor: pointer;
}
.cards .card-footer .price {
  font-size: 25px;
  line-height: 34px;
  text-align: right;
  color: #000000;
  direction: ltr;
}
.cards .card-footer .info {
  font-size: 12px;
  text-align: left;
}
.cards .card-footer .info div {
  margin-bottom: 5px;
  text-align: left;
}

.card-slider-wrapper:hover .next-slide, .card-slider-wrapper:hover .prev-slide {
  opacity: 1;
}
.card-slider-wrapper:hover::before, .card-slider-wrapper:hover::after {
  opacity: 1;
}

.card-slider-wrapper {
  width: 100%;
  max-height: 245px;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 5;
}
.card-slider-wrapper::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  transition: all 0.2s linear;
}
.card-slider-wrapper::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 50px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
  top: 0;
  left: 0;
  z-index: 5;
  opacity: 0;
  transition: all 0.2s linear;
}
.card-slider-wrapper .card-slider {
  width: 100%;
  height: 100%;
  display: flex;
}
.card-slider-wrapper .card-slider .card-slide {
  flex-shrink: 0;
  width: 100% !important;
}
.card-slider-wrapper .card-slider .card-slide img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
}
.card-slider-wrapper .next-slide, .card-slider-wrapper .prev-slide {
  position: absolute;
  opacity: 0;
  transition: all 0.2s linear;
}
.card-slider-wrapper .next-slide img, .card-slider-wrapper .prev-slide img {
  width: 22px;
}
.card-slider-wrapper .next-slide {
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: 10px;
  z-index: 20;
}
.card-slider-wrapper .prev-slide {
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  z-index: 20;
}
.card-slider-wrapper .swiper-pagination-bullet {
  border: 2px solid #fff;
  border-radius: 100%;
  width: 9px;
  height: 9px;
  background: none;
  opacity: 1 !important;
}
.card-slider-wrapper .swiper-pagination-bullet-active {
  background: #fff;
}

.map-active .map {
  width: 50%;
  margin-right: 30px;
  margin-left: -10px;
}

.map-active .cards-inner {
  width: 50%;
}
.map-active .cards-inner .cards {
  grid-template-columns: repeat(2, 1fr);
  overflow-y: auto;
}

.filter {
  background: #F8F8F8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1885px;
    margin: 0 auto;
    padding: 20px 0px;
    padding-top: 0;
    flex-direction: row-reverse;
}

.filter .choices__list {
  z-index: 90;
}
.filter .favorites-icon {
  position: relative;
}
.filter .favorites-count {
  font-size: 14px;
    line-height: 19px;
    color: #dda02e;
    position: absolute;
    left: 53%;
    top: 40%;
    transform: translate(-50%, -50%);
    font-weight: 600;
  
}
.filter .choices {
  margin-bottom: 0;
}
.filter .count {
  font-size: 24px;
  line-height: 33px;
  text-align: right;
  color: #000000;
}
.filter nav {
  display: flex;
  align-items: center;
}
.filter nav a {
  margin-left: 15px;
}
.filter nav a.active svg path {
  fill: #D1AB19;
}
.filter nav path {
  transition: fill 0.2s linear;
}
.filter nav svg:hover path {
  fill: #D1AB19;
}
.filter nav .choices__inner {
  width: 136px;
  background: #FFFFFF;
  border: 1px solid #ACACAC;
  box-sizing: border-box;
  border-radius: 3px;
  min-height: 30px;
  height: 30px;
  padding: 0;
}
.filter nav .choices[data-type*=select-one]:after {
  top: 43%;
}
.filter nav [dir=rtl] .choices__list--dropdown .choices__item--selectable {
  padding: 5px;
}

.pagination {
  background: #F8F8F8;
  padding-top: 25px;
  padding-bottom: 10px;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  direction: ltr;
}
.pagination li {
  padding: 0px 10px;
  border-right: 1px solid #C9C9C9;
  transition: all 0.2s linear;
  cursor: pointer;
}
.pagination li:hover {
  color: #D1AB19;
}
.pagination li.active {
  color: #D1AB19;
}
.pagination li.next {
  border-right: none;
  margin-top: 2px;
  margin-bottom: -5px;
}

.gm-style-iw {
  overflow: visible !important;
  padding: 0 !important;
  height: auto !important;
  max-height: auto !important;
  font-family: OpenSansHebrew;
  min-width: 268px !important;
}
.gm-style-iw .card {
  min-width: 435px;
  width: 435px;
}
.gm-style-iw .card-img {
  width: 100%;
  max-height: 250px;
}
.gm-style-iw .card-img img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
}
.gm-style-iw .card-footer {
  display: flex;
  background: #fff;
  justify-content: space-between;
  padding: 10px;
  position: relative;
  z-index: 10;
}
.gm-style-iw .card-footer .col > div {
  display: flex;
}
.gm-style-iw .card-footer .person {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  border: 3px solid #fff;
  margin-top: -50px;
  overflow: hidden;
  background: #fff;
}

.gm-style-iw .card-footer .persono {
  width: 85px;
  height: 85px;
  /* border-radius: 100%;
  border: 3px solid #fff; */
  margin-top: -50px;
  overflow: hidden;
  /* background: #fff; */
}


.gm-style-iw .card-footer .person img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.gm-style-iw .card-footer button {
  margin-top: -6px;
  cursor: pointer;
}
.gm-style-iw .card-footer .price {
  font-size: 22px;
  line-height: 34px;
  text-align: right;
  color: #000000;
  font-weight: 500;
}
.gm-style-iw .card-footer .info {
  font-size: 14.3658px;
  font-weight: 400;
  text-align: right;
}
.gm-style-iw .card-footer .info div {
  margin-bottom: 5px;
}
.gm-style-iw div {
  overflow: visible !important;
  height: auto !important;
  max-height: auto !important;
}

.gm-style-iw > div {
  min-width: 330px !important;
}

/* .markerLabel {
  box-shadow:inset 0px 1px 43px 0px #ffffff;
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#ffffff;
	border-radius:28px;
	display:inline-block;
	cursor:pointer;
	color:#666666;
	font-family:Arial;
	font-size:15px;
	font-weight:bold;
	padding:4px;
	text-decoration:none;
	text-shadow:0px 1px 0px #ffffff;
} */


.markerLabel {
	box-shadow: 4px 6px 9px 0px rgba(195, 195, 195, 1);
    /* background: linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%); */
    background-color: #d5b75e;
    border-radius: 28px;
    border: 1px solid #f58524;
    display: inline-block;
    cursor: pointer;
    color: #000000;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 1px 5px;
    text-decoration: none;
    text-shadow: 0px 2px 4px #ffffff;
    transition: all .2s ease-in-out;
}


.markerLabel2 {
	box-shadow: 4px 6px 9px 0px rgba(195, 195, 195, 1);
	background:linear-gradient(to bottom, #ffffff 5%, #f6f6f6 100%);
	background-color:#0c0b0b;
	border-radius:28px;
	border:1px solid #e9e7e7;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:inherit;
	font-size:14px;
  font-weight: 700;
	padding:5px 5px;
	text-decoration:none;
	text-shadow:0px 2px 4px #ffffff;
  transition: all .2s ease-in-out; 
}



.markerLabel:hover {
	background:linear-gradient(to bottom, #f8f2f2 5%, #cacaca 100%);
	background-color:#f0ebeb;
  -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -o-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    color:#bc9500;


}




@media (max-width: 991px) {
  .gm-style-iw-t {
    bottom: 120px !important;
  }

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

.gm-style img {
  max-width: 364px;
}
.apartment-search .row {
  display: flex;
  justify-content: space-between;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #878787;
  align-items: center;
  margin-top: 20px;
}
.apartment-search .row .link {
  font-weight: bold;
  padding: 5px 10px;
  border: 1px solid black;
  border-radius: 5px;
}
.apartment-search .content-title {
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #000000;
  margin-bottom: 20px;
}
.apartment-search .dropdown {
  margin: 0px 5px;
  position: relative;
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #000000;
  background: #F8F8F8;
  border: 1px solid #ACACAC;
  border-radius: 3px;
  display: flex;
  align-items: center;
  padding-right: 15px;
  padding-left: 40px;
  min-width: 180px;
  min-height: 40px;
  cursor: pointer;
}
.apartment-search .dropdown a {
  color: #000 !important;
}
.apartment-search .dropdown-content.open {
  visibility: visible !important;
  opacity: 1 !important;
}
.apartment-search .dropdown-content {
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 50px;
  right: 0;
  background: #fff;
  padding: 20px;
  border: 1px solid #ACACAC;
  box-sizing: border-box;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.25);
  border-radius: 3px;
  min-width: 320px;
  z-index : 100000;
}
.apartment-search .dropdown-content input {
  margin-right: 0;
  margin-bottom: 15px;
}
.apartment-search .dropdown-content .custom-checkbox {
  margin-bottom: 1px;
}
.apartment-search .dropdown .range {
  width: 400px;
}
.apartment-search .dropdown .range .irs--flat .irs-bar, .apartment-search .dropdown .range .irs--flat .irs-line {
  height: 3px;
  top: 30px;
}
.apartment-search .dropdown .range .irs--flat .irs-bar {
  background: #D1AB19;
}
.apartment-search .dropdown .range .irs--flat .irs-from, .apartment-search .dropdown .range .irs--flat .irs-single, .apartment-search .dropdown .range .irs--flat .irs-to, .apartment-search .dropdown .range .irs-min, .apartment-search .dropdown .range .irs-max {
  display: none;
}
.apartment-search .dropdown .range .irs--flat .irs-handle {
  width: 27px;
  height: 27px;
  background: #fff;
  border: 1px solid #D1AB19;
  border-radius: 100%;
  cursor: pointer;
  top: 17px;
}
.apartment-search .dropdown .range .irs--flat .irs-handle > i:first-child {
  background: #D1AB19;
  height: 50%;
  left: 9px;
  top: 6px;
  width: 1px;
}
.apartment-search .dropdown .range .irs--flat .irs-handle > i:last-child {
  position: absolute;
  height: 70%;
  width: 2px;
  background: #D1AB19;
  height: 50%;
  right: 9px;
  top: 6px;
  width: 1px;
}
.apartment-search .desktop-flex {
  display: flex;
}
.apartment-search .range .details {
  display: flex;
  padding: 5px 10px;
  border: 1px solid #9C9C9C;
  border-radius: 5px;
  width: 100%;
  margin-top: 40px;
  justify-content: space-between;
  margin-bottom: 25px;
  flex-direction: row-reverse;
}
.apartment-search .range .details .to, .apartment-search .range .details .from {
  width: 50%;
}
.apartment-search .range .details .to-title, .apartment-search .range .details .from-title {
  font-size: 14px;
  color: #9C9C9C;
}
.apartment-search .range .details .from {
  border-right: 1px solid #9C9C9C;
  padding-right: 20px;
}
.apartment-search .tabs {
  padding-top: 40px;
}
.apartment-search .tabs ul {
  justify-content: center;
  border: none;
}
.apartment-search .tabs .tab-link {
  margin: 0px 20px;
}
.apartment-search .tabs .tab-link a {
  background: none;
  border: none;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  padding: 5px 10px;
}
.apartment-search .tabs .tab-link a.active {
  border: 1px solid #D5B75E;
  color: #D5B75E;
}
.apartment-search .tabs .tab-link a.active::after, .apartment-search .tabs .tab-link a.active::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 10px solid #D5B75E;
}
.apartment-search .tabs .tab-link a.active::after {
  border-top: 10px solid #fff;
  bottom: -19px;
}
.apartment-search .tabs > div > div {
  border: none;
}
.apartment-search .choices {
  background: #F8F8F8;
  border: 1px solid #ACACAC;
  box-sizing: border-box;
  border-radius: 3px;
  min-width: 180px;
  margin: 0 5px;
}
.apartment-search .group {
  display: flex;
  margin-bottom: 15px;
}
.apartment-search .group:last-child {
  padding-right: 20px;
  border-right: 1px solid #ACACAC;
  margin-right: 20px;
}
.apartment-search .choices__list--single {
  padding-top: 0;
}
.apartment-search form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.apartment-search input {
  background: #F8F8F8;
  border: 1px solid #ACACAC;
  box-sizing: border-box;
  border-radius: 3px;
  outline: none;
  font-weight: bolder;
  height: 40px;
  min-width: 80px;
  margin: 0 5px;
}
.apartment-search input::-moz-placeholder {
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #858585;
}
.apartment-search input:-ms-input-placeholder {
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #858585;
}
.apartment-search input::placeholder {
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #858585;
}
.apartment-search .choices__inner {
  min-height: 38px;
  height: 38px;
  border-bottom: none;
}

.checkbox-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 200px;
}

.apartment-search .custom-checkbox div {
  background: #F8F8F8;
  border: 1px solid #ACACAC;
}
.apartment-search .custom-checkbox {
  margin-left: 15px;
}
.apartment-search .dropdown-content input {
  width: 100%;
}
.apartment-search .dropdown-content .line {
  margin-right: 0;
}
.apartment-search .dropdown-content .line::after {
  width: 30px;
  right: -15px;
}
.apartment-search .dropdown-content .line .link {
      display: block;
    text-align: center;
    width: 100px;
    color: black !important;
    /* padding-left: 27px; */
}
.apartment-search .dropdown-content a {
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #878787 !important;
  font-weight: bold;
}

@media (max-width: 991px) {
  .apartment-search .dropdown {
    flex: 1;
    font-size: 14px;
    padding: 0px 10px;
    min-width: 0;
    position: static;
  }
  .apartment-search .dropdown .dropdown-content {
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    right: auto;
  }

  .apartment-search .dropdown .range {
    width: 320px !important;
  }

  .apartment-search .group {
    position: relative;
  }
}
.register {
  background: url("../img/reg-bg.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
}
.register__block {
  background: rgba(255, 255, 255, 0.9);
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 15px 15px;
}
.register__block form input[type=submit] {
  margin-top: 0px;
}
.register__block form .form-row {
  display: flex;
  justify-content: center;
  padding-top: 40px;
}
.register__block h2 {
  font-weight: bold;
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  color: #BC9500;
}
.register__block p {
  font-weight: normal;
  font-size: 24px;
  line-height: 33px;
  text-align: center;
  color: #000000;
  padding: 30px 0px;
  padding-top: 10px;
}
.register__block .line a {
  display: block;
  font-weight: 700;
  font-size: 18px;
  padding: 10px 100px;
  border: 1px solid #000;
  border-radius: 6px;
  margin: 60px auto 0;
  cursor: pointer;
  color: #000;
  margin-top: 15px;
}

@media (max-width: 768px) {
  .register__block {
    padding-top: 20px;
  }
}
.home-page .main-screen {
  background: url("../img/home-bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 70px;
  padding-bottom: 50px;
  padding-top: 200px;
}
.home-page .main-screen h1 {
  font-weight: bold;
  font-size: 45.36px;
  line-height: 62px;
  color: #D5B75E;
  text-align: center;
}
.home-page .main-screen .categories {
  display: flex;
  justify-content: center;
  padding-top: 65px;
}
.home-page .main-screen .categories label {
  margin: 0px 35px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
}
.home-page .main-screen .categories label input {
  display: none;
}
.home-page .main-screen .categories label .radio {
  padding: 4px 10px;
}
.home-page .main-screen .categories label input:checked + .radio {
  color: black;
  border-radius: 2px;
  position: relative;
  padding-top: 5px;
  padding-bottom: 15px;
  background-color: #D5B75E;
  clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
}
.home-page .main-screen .categories label input:checked + .radio::after,
.home-page .main-screen .categories label input:checked + .radio::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
  border: 10px solid transparent;
  border-top: 10px solid #D5B75E;
}
.home-page .main-screen .categories label input:checked + .radio::after {
  border-top: 10px solid transparent;
  bottom: -19px;
}
.home-page .main-screen .fields {
  max-width: 810px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
  background: #D5B75E;
  border-radius: 4px;
  margin-top: 35px;
  display: flex;
  flex-direction: row;
}
.home-page .main-screen .fields input:not([type=submit]) {
  background: #FFFFFF;
  border: 1px solid #ACACAC;
  box-sizing: border-box;
  border-radius: 3px;
  height: 44px;
  padding: 10px;
  font-size: 16px;
  color: #858585;
  flex: 1;
}
.home-page .main-screen .fields .input-row {
  display: flex;
  flex: 1;
}
.home-page .main-screen .fields input[type=submit] {
  background: #000000;
  border-radius: 3px;
  font-weight: bold;
  font-size: 18px;
  line-height: 25px;
  color: #FFFFFF;
  margin: 0;
  height: 44px;
  padding: 5px 30px;
  /* margin-right: 10px; */
}
.home-page .main-screen .fields .choices {
  margin-bottom: 0;
  margin-left: 2px;
}
.home-page .main-screen .fields .choices__inner {
  width: 150px;
    background: #FFFFFF;
    border: 1px solid #ACACAC;
    box-sizing: border-box;
    border-radius: 3px;
    height: 40px;
    color: #858585;
    text-align: right;
    padding-right: 3px;
    font-size: 16px;
    margin-right: 2px;
    text-align: left;
}
.home-page .main-screen .fields .choices__inner .choices__placeholder {
  opacity: 1;
}
.home-page .main-screen .fields [dir=rtl] .choices__list--dropdown .choices__item--selectable {
  padding-left: 0;
}
.home-page .main-screen .numbers {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  padding-top: 160px;
}
.home-page .main-screen .numbers ul {
  display: flex;
    flex-direction: row-reverse;
}
.home-page .main-screen .numbers ul li {
  text-align: center;
  border-right: 1px solid #fff;
  padding: 0px 50px;
}
.home-page .main-screen .numbers ul li div {
  text-align: center;
}
.home-page .main-screen .numbers ul li:first-child {
  border-right: 0;
}
.home-page .main-screen .numbers .number-title {
  font-weight: normal;
  font-size: 24px;
  line-height: 33px;
  color: #FFFFFF;
}
.home-page .main-screen .numbers .number {
  font-weight: normal;
  font-size: 60px;
  line-height: 82px;
  color: #FFFFFF;
}
.home-page .meeting .col:first-child {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.home-page .meeting .col:first-child p {
  font-size: 18px;
  color: #6B6B6B;
}
.home-page .meeting .col:first-child .btn {
  max-width: 330px;
  margin-bottom: 35px;
  width: 100%;
}
.home-page .meeting-wrap h2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.home-page .meeting-wrap h2 span {
  display: block;
  font-size: 75px;
  margin-right: 90px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
.home-page .meeting-wrap h2 span:first-child {
  position: relative;
}
.home-page .meeting-wrap h2 span:first-child::before {
  background: #000;
    content: "";
    position: absolute;
    height: 3px;
    width: 234%;
    left: 367px;
    top: 50%;
    transform: translateY(-50%);
}
.home-page .meeting-wrap h2 span:last-child {
  font-size: 48.9762px;
  color: #D6A516;
  margin-left: 220px;
  position: relative;
}
.home-page .meeting-wrap h2 span:last-child::before {
  background: #D6A516;
    content: "";
    position: absolute;
    height: 3px;
    width: 197%;
    right: 423px;
    top: 50%;
    transform: translateY(-50%);
}
.home-page .favorites {
  background-image: url("../img/favorites-bg.webp");
  background-size: cover;
  background-position: center;
  padding-bottom: 70px;
}
.home-page .favorites .page-title--lines {
  position: relative;
}
.home-page .favorites .page-title--lines .all-btn {
  display: flex;
  align-items: center;
  top: 50px;
  position: absolute;
  left: 20px;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 33px;
  /* identical to box height */
  text-align: right;
  color: #FFFFFF;
}
.home-page .favorites .page-title--lines .all-btn img {
  margin-right: 15px;
  margin-top: 3px;
}
.home-page .favorites .page-title--lines h2 span:first-child {
  font-size: 75px;
  line-height: 195.88%;
  text-align: right;
  color: #FFFFFF;
  background: none;
  font-weight: bold;
  margin-right: 210px;
}
.home-page .favorites .page-title--lines h2 span:first-child::before {
  width: 269%;
    left: 359px;
}
.home-page .favorites .page-title--lines h2 span:last-child {
  font-size: 48px;
  line-height: 195.88%;
  text-align: right;
  color: #D5B75E;
  background: none;
  font-weight: bold;
  margin-right: 65px;
  margin-left: 0;
}
.home-page .favorites .page-title--lines h2 span:last-child::before {
  width: 137%;
    right: 514px;
}
.home-page .favorites__slider {
  width: 100%;
  height: 100%;
  display: flex;
}
.home-page .favorites__slider-wrapper {
  max-width: 1800px;
  width: 100%;
  margin: 0 auto;
  height: 590px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.home-page .favorites__slider-wrapper .prev-btn, .home-page .favorites__slider-wrapper .next-btn {
  position: absolute;
  top: 260px;
  z-index: 1000;
  background: none;
}
.home-page .favorites__slider-wrapper .next-btn {
  right: 10px;
}
.home-page .favorites__slider-wrapper .prev-btn {
  left: 10px;
}
.home-page .favorites__slider-wrapper .swiper-button-disabled {
  opacity: 0.7;
  cursor: default;
}
.home-page .favorites__slider-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(116, 116, 116, 0.3);
  overflow: hidden;
}
.home-page .favorites__slider-slide .apartment-img {
  width: 60%;
  height: 100%;
  max-height: 592px;
  overflow: hidden;
}
.home-page .favorites__slider-slide .apartment-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.home-page .favorites__slider-slide .agent__info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 40%;
  height: 100%;
  padding: 30px;
}
.home-page .favorites__slider-slide .agent__info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.home-page .favorites__slider-slide .agent__info-header .name {
  font-weight: bold;
  font-size: 41.6475px;
  line-height: 57px;
  text-align: left;
  color: #FFFFFF;
}
.home-page .favorites__slider-slide .agent__info-header .position {
  font-weight: normal;
  font-size: 41.6475px;
  line-height: 57px;
  text-align: left;
  color: #FFFFFF;
}
.home-page .favorites__slider-slide .agent__info-header .objects-count {
  font-weight: normal;
  font-size: 41.6475px;
  line-height: 57px;
  text-align: left;
  color: #FFFFFF;
}
.home-page .favorites__slider-slide .agent__info-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.home-page .favorites__slider-slide .agent__info-footer .price {
  font-weight: normal;
  font-size: 68.0777px;
  line-height: 93px;
  text-align: left;
  color: #FFFFFF;
}
.home-page .favorites__slider-slide .agent__info-footer .nav a {
  margin-right: 10px;
}
.home-page .favorites__slider-slide .agent__info-img {
  max-width: 208px;
  width: 100%;
  max-height: 208px;
  height: auto;
  border-radius: 100%;
  border: 3px solid #fff;
}
.home-page .favorites__slider-slide .agent__info-img img {
  width: 100%;
  height: 100%;
}

.team-page .main-screen {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 695px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 36% 12px;
  background-size: contain;
}
.team-page .main-screen-title {
  font-size: 36px;
  line-height: 49px;
  color: #000000;
  font-weight: normal;
  display: block;
  margin: 0 auto;
  padding-left: 700px;
  margin-bottom: 57px;
}
.team-page .main-screen-title span {
  display: block;
  font-weight: bold;
  font-size: 48px;
  line-height: 65px;
  color: #D1AB19;
  margin-bottom: 15px;
  position: relative;
}
.team-page .main-screen-title span::after {
  content: "";
  position: absolute;
  display: block;
  left: 3px;
  bottom: -8px;
  background-color: #D1AB19;
  height: 2px;
  width: 300%;
}
.team-page .team {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-bottom: 100px;
}
.team-page .team .management-title {
  text-align: center;
  font-size: 36px;
  padding-top: 44px;
}
.team-page .team .management-items {
  max-width: 1287px;
  padding: 0px 15px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 12%;
  padding-top: 40px;
}
.team-page .team .management-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}
.team-page .team .management-item img {
  max-width: 100%;
}
.team-page .team .management-item .management-name {
  font-weight: bold;
  font-size: 24px;
  padding-top: 22px;
}
.team-page .team .management-item .management-position {
  font-weight: normal;
  font-size: 18px;
}
.team-page .team .consultants-title {
  font-weight: bold;
  font-size: 64px;
  text-align: center;
  padding-top: 30px;
}
.team-page .team .consultants-items {
  max-width: 1287px;
  padding: 0px 15px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  padding-top: 40px;
}
.team-page .team .consultants-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FFFFFF;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}
.team-page .team .consultants-item img {
  max-width: 100%;
}
.team-page .team .consultants-item-footer {
  width: 100%;
    padding: 13px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}
.team-page .team .consultants-name {
  font-weight: bold;
  font-size: 34px;
  padding-top: 10px;
  padding-bottom: 5px;
}
.team-page .team .consultants-position, .team-page .team .consultants-city {
  font-size: 22px;
  padding-bottom: 5px;
}
.team-page .team .consultants-position {
  background-color: #fff;
  padding-right: 5px;
  padding-left: 5px;
}
.team-page .team .consultants-contact {
  display: flex;
  align-items: center;
}
.team-page .team .consultants-contact a {
  display: inline-block;
  margin-right: 15px;
}
.team-page .team .consultants-achievement {
  font-size: 18px;
}

.contact-page .contact__wrapper {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding-top: 30px;
  padding-left: 15px;
  padding-right: 15px;
}
.contact-page .contact-form {
  max-width: 735px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  max-height: 670px;
}
.contact-page .contact-form-title {
  max-width: -webkit-max-content;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0 auto;
  font-size: 48px;
  color: #C6A74C;
  font-weight: 400;
}
.contact-page .contact-form .through::after {
  background-color: #C6A74C;
}
.contact-page .contact-form form {
  padding: 0px 50px;
  display: flex;
  flex-direction: column;
  padding-top: 70px;
  padding-bottom: 60px;
}
.contact-page .contact-form form .line {
  margin-left: auto;
  margin-right: 30px;
  margin-top: 40px;
}
.contact-page .contact-form form input[type=submit] {
  margin-top: 0;
}
.contact-page .contact-form form label {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.contact-page .contact-form form .input-underline {
  margin-top: 15px;
    margin-left: 1px;
    /* padding-left: 26px; */
    margin-bottom: 40px;
}
.contact-page .contact-info {
  display: flex;
  flex-direction: column;
  padding: 25px;
  background: rgba(0, 0, 0, 0.8);
  max-width: 600px;
  width: 100%;
  margin-top: 100px;
  position: relative;
}
.contact-page .contact-info .logo {
  max-width: 260px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 50px;
}
.contact-page .contact-info a {
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.contact-page .contact-info a img {
  margin-left: 23px;
}
.contact-page .contact-info .social {
  display: flex;
  position: absolute;
  right: 10px;
  bottom: 22px;
}
.contact-page .contact-info .social a {
  margin-bottom: 0;
  margin-right: 13px;
}
.contact-page .contact-info .social a img {
  margin-left: 0; 
}

.career .page-title {
  padding: 70px 0px;
  font-size: 90px;
  line-height: 65px;
  text-align: center;
  color: #C6A74C;
}
.career .page-title::after {
  display: none;
}
.career .page-title span {
  position: relative;
}
.career .page-title span::after {
  content: "";
    position: absolute;
    height: 2px;
    width: 16%;
    right: -18%;
    background-color: #C6A74C;
    top: 50%;
    transform: translateY(-50%);
}
.career .page-title span::before {
  content: "";
    position: absolute;
    height: 2px;
    width: 16%;
    left: -18%;
    background-color: #C6A74C;
    top: 50%;
    transform: translateY(-50%);
}
.career .benefits-title {
  font-size: 72px;
  line-height: 90.18%;
  text-align: center;
  color: #C6A74C;
  max-width: 1685px;
  width: 100%;
  background: #fff;
  padding: 45px 0px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 70px;
}
.career .benefits-title span {
  position: relative;
}
.career .benefits-title span::after {
  content: "";
    position: absolute;
    height: 2px;
    width: 149%;
    right: -155%;
    background-color: #C6A74C;
    top: 50%;
    transform: translateY(-50%);
}
.career .benefits-title span::before {
  content: "";
    position: absolute;
    height: 2px;
    width: 148%;
    left: -155%;
    background-color: #C6A74C;
    top: 50%;
    transform: translateY(-50%);
}
.career .benefits__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1685px;
  margin: 0 auto;
  padding: 50px;
  background: #fff;
  margin-top: 50px;
  flex-direction: row-reverse;
}
.career .benefits__item-title {
  font-size: 72px;
  line-height: 90.18%;
  text-align: center;
  color: #9C9C9C;
  padding-right: 120px;
  position: relative;
}
.career .benefits__item-title::after {
  height: 2px;
  width: 150px;
  right: -50px;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #9C9C9C;
}
.career .benefits__item-text {
  max-width: 955px;
  font-weight: normal;
  font-size: 24px;
  line-height: 160%;
  text-align: right;
  color: #6B6B6B;
}
.career .benefits__item.mirror {
  flex-direction: inherit;;
}
.career .benefits__item.mirror .benefits__item-title {
  padding-left: 120px;
  padding-right: 0;
}
.career .benefits__item.mirror .benefits__item-title::after {
  left: -50px;
  right: auto;
}
.career .college-title {
  font-size: 72px;
  line-height: 90.18%;
  text-align: center;
  color: #C6A74C;
  max-width: 1685px;
  width: 100%;
  background: #505050;
  padding: 45px 0px;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 70px;
  margin-bottom: 50px;
}
.career .college-title span {
  position: relative;
}
.career .college-title span::after {
  content: "";
    position: absolute;
    height: 2px;
    width: 71%;
    right: -75%;
    background-color: #C6A74C;
    top: 50%;
    transform: translateY(-50%);
}
.career .college-title span::before {
  content: "";
    position: absolute;
    height: 2px;
    width: 71%;
    left: -75%;
    background-color: #C6A74C;
    top: 50%;
    transform: translateY(-50%);
}

.ac-page .text {
  max-width: 1685px;
  width: 100%;
  margin: 0 auto;
  padding: 25px 50px;
  text-align: center;
  background: #fff;
}
.ac-page .text .title {
  font-size: 48px;
  line-height: 65px;
  text-align: center;
  color: #646464;
  max-width: 1100px;
  margin: 0 auto;
  font-weight: bold;
  display: block;
}
.ac-page .text p {
  font-size: 24px;
  line-height: 170.68%;
  text-align: right;
  color: #6B6B6B;
  text-align: center;
  padding-top: 15px;
}
.ac-page .case {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ac-page .case-title {
  text-align: center;
  display: flex;
  flex-direction: column;
  padding: 30px 0px;
}
.ac-page .case-price {
  font-weight: bold;
  font-size: 64px;
  text-align: center;
  color: #646464;
}
.ac-page .case-text {
  font-weight: bold;
  font-size: 36.5023px;
  text-align: center;
  color: #646464;
}
.ac-page .case .imgs {
  display: flex;
  max-width: 1685px;
  width: 100%;
  margin: 0px -8px;
}
.ac-page .case .imgs li {
  padding: 0px 8px;
}
.ac-page .case .imgs img {
  max-width: 192px;
  width: 100%;
  max-height: 128px;
  height: auto;
}
.ac-page .steps {
  padding: 20px 0px;
  max-width: 1650px;
  width: 100%;
  margin: 0 auto;
}
.ac-page .steps-title {
  font-weight: bold;
  font-size: 48px;
  line-height: 65px;
  text-align: right;
  color: #646464;
}
.ac-page .steps-item {
  width: 100%;
  background: #fff;
  margin-top: 50px;
  display: flex;
  align-items: center;
  padding: 50px;
  justify-content: space-between;
}
.ac-page .steps-item-title {
  text-align: center;
  font-size: 48px;
  line-height: 65px;
  text-align: center;
  color: #646464;
  max-width: 410px;
}
.ac-page .steps-number {
  font-size: 96px;
  line-height: 131px;
  text-align: center;
  color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 190px;
  min-height: 190px;
  border-radius: 100%;
  border: 4px solid #E9C641;
}
.ac-page .steps-text {
  max-width: 795px;
  font-size: 24px;
  line-height: 170.68%;
  /* or 41px */
  text-align: right;
  color: #6B6B6B;
}
.ac-page .steps-item.mirror {
  flex-direction: row-reverse;
}
.ac-page .b-form-wrapper .form {
  max-width: 980px;
  background: rgba(255, 255, 255, 0.95);
}
.ac-page .b-form-wrapper .form-subtitle {
  padding-left: 57px;
  margin-bottom: 30px;
}
.ac-page .b-form-wrapper .form-title {
  display: flex;
  justify-content: space-between;
  font-weight: 300;
  font-size: 65px;
  line-height: 89px;
  text-align: center;
  color: #646464;
  padding: 0px 42px;
}
.ac-page .b-form-wrapper .form-title span {
  text-align: center;
  font-weight: bold;
  font-size: 32px;
  line-height: 45px;
  text-align: center;
  color: #BC9500;
}
.ac-page .b-form-wrapper .form form {
  max-width: 861px;
  margin: 0 auto;
}

.agen .categories {
  margin-bottom: 0 !important;
}
.agen .tabs {
  padding-top: 0;
}
.agen .apartment-search {
  margin-bottom: 30px;
}

.apartment .main-screen {
  position: relative;
}
.apartment .main-screen .social {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.apartment .main-screen .social a {
  display: block;
}
.apartment-details {
  max-width: 1420px;
  margin: 0 auto;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}
.apartment-details .price {
  font-size: 45px;
  line-height: 61px;
  text-align: right;
  color: #BC9500;
}
.apartment-type {
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  color: #000000;
  margin-bottom: 5px;
}
.apartment-city, .apartment-size {
  font-weight: normal;
  font-size: 18px;
  line-height: 25px;
  color: #000000;
}
.apartment__nav {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  max-width: 1420px;
  margin: 0 auto;
  padding: 13px 10px;
}
.apartment__nav-wrapper {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  /* margin-top: 20px; */
}
.apartment .container {
  max-width: 1420px;
  padding: 0px 10px;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}
.apartment .sidebar {
  width: 30%;
  max-width: 400px;
  min-width: 320px;
  margin-right: 30px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  padding: 20px;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
.apartment .sidebar .agent__img {
  display: block;
  border-radius: 100%;
  margin: 0 auto;
  width: 100%;
  max-width: 318px;
  height: auto;
}
.apartment .sidebar .agent__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.apartment .sidebar .agent__contact {
  display: flex;
  flex-direction: column;
  align-items: end;
  width: 170px;
}
.apartment .sidebar .agent__contact a {
  font-size: 18px;
  line-height: 25px;
  color: #000000;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: left;
  width: 100%;
  justify-content: space-between;
}
.apartment .sidebar .agent__contact a img {
  margin: 0px 5px;
}
.apartment .sidebar .agent__info {
  margin-top: -5px;
}
.apartment .sidebar .agent__info-wrapper {
  display: flex;
  justify-content: space-between;
  margin: 20px 0px;
}
.apartment .sidebar .agent__info .name {
  font-size: 24px;
  line-height: 33px;
  text-align: right;
  color: #000000;
  font-weight: bold;
  margin-bottom: 10px;
}
.apartment .sidebar .agent__info .position {
  font-size: 18px;
  line-height: 25px;
  text-align: right;
  color: #000000;
  margin-bottom: 10px;
}
.apartment .sidebar .agent__info .objects-count {
  font-size: 18px;
  line-height: 25px;
  text-align: right;
  -webkit-text-decoration-line: underline;
  text-decoration-line: underline;
  margin-bottom: 10px;
}
.apartment .sidebar .agent__info .objects-count:hover {
  text-decoration: none;
}
.apartment .sidebar .more__info-text {
  font-size: 18px;
  line-height: 25px;
  text-align: right;
  color: #000000;
}
.apartment .sidebar .more__info-form {
  display: flex;
  flex-direction: column;
  margin-top: 15px;
}
.apartment .sidebar .more__info-form input:not([type=submit]) {
  background: #F2F2F2;
  border: 1px solid #ACACAC;
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 16px;
  line-height: 22px;
  color: #000000;
  margin-bottom: 20px;
}
.apartment .sidebar .more__info-form input:not([type=submit])::-moz-placeholder {
  color: #000;
}
.apartment .sidebar .more__info-form input:not([type=submit]):-ms-input-placeholder {
  color: #000;
}
.apartment .sidebar .more__info-form input:not([type=submit])::placeholder {
  color: #000;
}
.apartment .sidebar .more__info-form input[type=submit], .apartment .sidebar .more__info-form .line {
  margin: 0;
}
.apartment .sidebar .more__info-form .line {
  max-width: 330px;
  width: 100%;
  margin-right: auto;
  margin-top: 20px;
}
.apartment .sidebar .more__info-form input[type=submit] {
  max-width: 330px;
  width: 100%;
}
.apartment .content {
  width: 80%;
  max-width: 970px;
}
.apartment .content .apartment-details {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
  padding: 10px 20px;
  width: 100%;
  background: #fff;
  display: flex;
  flex-direction: column;
}
.apartment .content .apartment-details .title {
  font-weight: bold;
  font-size: 18px;
  line-height: 37px;

}
.apartment .content .details {
  display: flex;
  width: 100%;
  padding-top: 13px;
  flex-wrap: wrap;
}
.apartment .content .details li {
  flex: 1;
}
.apartment .content .details li span {
  display: block;
    font-size: 15px;
    line-height: 25px;

    color: #000000;
    padding-left: 10px;
}
.apartment .content .details li .bold {
  font-weight: bold;
}
.apartment .content section {
  margin-top: 30px;
}
.apartment .content section .section-title {
  font-weight: bold;
  font-size: 18px;
  line-height: 37px;
  text-align: left;
  color: #000000;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}
.apartment .content section .cards {
  background: #fff;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-items: center;
  min-height: 0px;
  height: auto !important;
  padding-bottom: 20px;
  margin-bottom: 30px;
  grid-column-gap: 0;
}
.apartment .content section .cards .card-footer {
  background: #F6F6F6;
}
.apartment .content section .section-content {
  max-height: 606px;
  height: auto;
}
.apartment .content section .section-content iframe {
  width: 100%;
  max-height: 545px;
}
.apartment .content section .section-content .video {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
}
.apartment .content section .section-content .video img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.apartment .content section .section-content .video::after {
  content: "";
  width: 67px;
  height: 67px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-image: url("../img/play-btn.svg");
  transform: translate(-50%, -50%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.agen .main-screen {
  display: flex;
    align-items: center;
    justify-content: center;
    height: 669px;
    /* overflow: hidden; */
    background-repeat: no-repeat;
    background-position: 32% 1px;
    background-size: contain;
}
.agen .main-screen-title {
  position: relative;
}
.agen .main-screen-title .float-text {
  position: absolute;
  font-weight: normal;
  font-size: 17px;
  line-height: 23px;
  text-align: right;
  color: #000000;
  right: -149px;
  bottom: -106px;
}
.agen .main-screen-title span {
  font-size: 36px;
  line-height: 49px;
  color: #000000;
  font-weight: normal;
  display: block;
  margin: 0 auto;
  margin-left: 542px;
  margin-bottom: 57px;
  position: relative;
  z-index: 10;
  background: #fff;
}
.agen .main-screen-title::after {
  content: "";
  position: absolute;
  display: block;
  right: -150px;
  bottom: -20px;
  z-index: 5;
  width: 259px;
  height: 263px;
  border: 2px solid #000000;
  background: #fff;
}
.agen .main-screen-title::before {
  content: "";
  position: absolute;
  display: block;
  right: -200px;
  bottom: -58px;
  z-index: 4;
  width: 259px;
  height: 263px;
  border: 2px solid #D1AB19;
}
.agen .main-screen-title span.first-row {
  display: block;
  font-weight: bold;
  font-size: 48px;
  line-height: 65px;
  color: #D1AB19;
  margin-bottom: 0px;
  background: #fff;
}
.agen .register {
  margin-top: -30px;
}
.agen .register input[type=submit] {
  margin-top: 50px;
}
.agen .register .form-row {
  padding-top: 20px;
  text-align: center;
}
.agen .categories {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0px;
  margin-bottom: 30px;
}
.agen .categories .radio {
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #000000;
  margin: 0px 15px;
  cursor: pointer;
}
.agen .categories input[type=radio]:checked + .radio {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #D1AB19;
  border-bottom: 1px solid #D1AB19;
}

.new-project .content div.details {
  display: flex;
  justify-content: space-between;
  padding-top: 0;
}
.new-project .content div.details .col {
  width: 45%;
}
.new-project .content div.details .col .list-title {
  font-size: 18px;
  line-height: 203.68%;
  color: #000000;
  width: 100%;
  border-bottom: 1px solid #E9C641;
  margin-bottom: 15px;
}
.new-project .content div.details .col ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  max-height: 150px;
}
.new-project .content div.details .col ul li {
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 203.68%;
  text-align: right;
  color: #7B7B7B;
  position: relative;
  padding-right: 45px;
  min-width: 150px;
}
.new-project .content div.details .col ul li::before {
  content: "";
  width: 33px;
  height: 30px;
  background: url("../img/list-marker.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
}
.new-project .details p {
  max-width: 950px;
}
.new-project .card-footer {
  flex-direction: column;
}
.new-project .card-footer div {
  font-weight: bold;
    font-size: 17px;
    /* line-height: 30px; */

    color: #000000;
    /* margin-bottom: 5px; */
}
.new-project .card-footer p {
  font-size: 18px;
  line-height: 25px;
  text-align: right;
  color: #6B6B6B;
  font-weight: 400;
  margin-bottom: 15px;
}
.new-project .card-footer .price {
  display: flex;
  flex-direction: column;
  font-weight: 400;
}
.new-project .card-footer .price .subtitle {
  font-size: 18px;
  line-height: 25px;
  color: #000000;
}
.new-project .card-footer .col {
  display: flex;
  align-items: center;
  justify-content: space-between;

}
.new-project .form-row {
  padding-top: 10px !important;
}
.new-project .register__block form input[type=submit] {
  margin-top: 40px;
}

.tabs ul {
  margin-bottom: 30px;
}

.apartment-search .choices__inner {
  font-size: 16px;
}
.apartment-search .choices__list--dropdown {
  margin-top: 10px;
}
.apartment-search .dropdown {
  position: relative;
}
.apartment-search .dropdown::after {
  content: "";
  position: absolute;
  display: block;
  width: 14px;
  height: 7px;
  background-image: url(../img/select-arrow.svg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.2s linear;
  top: 16px;
  left: 10px;
}
.apartment-search .dropdown.open {
  border: 2px solid black;
}
.apartment-search .dropdown.open::after {
  transform: rotate(180deg);
}

.privet-zone .page-content {
  padding-top: 0;
}
.privet-zone .register .form-row {
  padding-top: 0px;
}
.privet-zone .register input[type=submit] {
  margin-top: 45px;
}

@media (max-width: 991px) {
  .apartment-search .choices__inner {
    font-size: 14px;
  }
}
.privet-zone .apartment-search {
  padding-top: 40px;
  border-top: 1px solid #ACACAC;
  background: #F8F8F8;
  padding-bottom: 60px;
}
.privet-zone .apartment-search .line a {
  font-weight: bold;
    padding: 6px 34px;
    border: 1px solid black;
    border-radius: 3px;
    color: #000;
}
.privet-zone .apartment-search input {
  background: #fff;
}
.privet-zone .apartment-search .choices {
  background: #fff;
}
.privet-zone .apartment-search .tabs .tab-link a {
  font-weight: 400;
}
.privet-zone .apartment-search .title {
  text-align: center;
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  color: #000000;
}
.privet-zone__form {
  padding-top: 70px;
  padding-bottom: 40px;
  border-top: 1px solid #ACACAC;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.privet-zone__form a {
  margin-top: 40px;
  text-decoration: underline;
  color: #000;
}
.privet-zone__form .form-row {
  display: flex;
  justify-content: center;
}
.privet-zone__form .form-row label {
  margin: 0px 25px;
}
.privet-zone__form .form-row label input {
  margin: 0;
  font-weight: normal;
  font-size: 17px;
  line-height: 195.88%;
  text-align: right;
  color: #000;
}
.privet-zone__form .form-row label input::-moz-placeholder {
  color: #656565;
}
.privet-zone__form .form-row label input:-ms-input-placeholder {
  color: #656565;
}
.privet-zone__form .form-row label input::placeholder {
  color: #656565;
}
.privet-zone__form .form-row label span {
  display: block;
  font-size: 14px;
  line-height: 195.88%;
  text-align: right;
  color: #010101;
}
.privet-zone .pdf-link {
  position: relative;
  padding-right: 30px;
  color: #000;
}
.privet-zone .pdf-link::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url("../img/pdf.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: absolute;
  display: block;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.privet-zone .messages {
  padding-top: 50px;
  border-top: 1px solid #ACACAC;
}
.privet-zone .accordion-items .accordion-item {
  background: #F8F8F8;
  color: #000;
}
.privet-zone .accordion-items .accordion-item.yellow {
  background: #FFF9EB;
}
.privet-zone .accordion-items .accordion-header {
  border-bottom: 1px solid #BCBCBC;
  border-top: 3px solid #5A5A5A;
  font-size: 18px !important;
  line-height: 25px;
  text-align: right;
  color: #000000 !important;
  padding: 15px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
.privet-zone .accordion-items .accordion-header .date {
  font-weight: 400;
}
.privet-zone .accordion-items .accordion-header .pdf-link {
  font-size: 14px;
  display: block;
  padding-right: 20px;
  font-weight: 400;
  text-decoration: underline;
}
.privet-zone .accordion-items .accordion-header::before {
  display: none;
}
.privet-zone .accordion-items .accordion-header::after {
  display: none;
}
.privet-zone .accordion-items .accordion-content {
  font-size: 16px !important;
  line-height: 25px;
  text-align: right;
  color: #000000 !important;
  padding: 15px;
}
.privet-zone .accordion-items .accordion-content span, .privet-zone .accordion-items .accordion-content p, .privet-zone .accordion-items .accordion-content a {
  display: block;
  margin-bottom: 20px;
  color: #000;
}
.privet-zone .accordion-items .accordion-content a {
  text-decoration: underline;
}
.privet-zone .page-title--lines {
  border-top: 1px solid #ACACAC;
}
.privet-zone .register-title {
  font-weight: bold;
  font-size: 24px;
  line-height: 33px;
  color: #000000;
  padding: 30px 20px;
  border-top: 1px solid #ACACAC;
  text-align: center;
}
.privet-zone .form-row {
  display: flex;
  justify-content: center;
}
.privet-zone .categories {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 30px;
  border-top: 1px solid #ACACAC;
}
.privet-zone .categories .radio {
  font-size: 16px;
  line-height: 22px;
  text-align: right;
  color: #000000;
  margin: 0px 15px;
  cursor: pointer;
}
.privet-zone .categories input[type=radio]:checked + .radio {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: #D1AB19;
  border-bottom: 1px solid #D1AB19;
}
.privet-zone .accordion-content .content-table {
  display: flex;
    margin: -6px;
    justify-content: space-between;
}
.privet-zone .accordion-content .content-table .col {
  display: flex;
  flex-direction: column;
  margin: 0px 15px;
  margin-bottom: 15px;
}
.privet-zone .accordion-content .content-table .col-title {
  font-weight: bold;
}
.privet-zone .accordion-content .content-table .col-content {
  display: flex;
}
.privet-zone .accordion-content .content-table .col-content > div:last-child {
  border-right: 1px solid #C4C4C4;
  margin-right: 10px;
  padding-right: 10px;
}
.privet-zone .accordion-content .content-table .col-content > div span {
  margin: 0;
  padding: 0;
}
.privet-zone .accordion-content .content-table .col-content > div span:first-child {
  font-weight: normal;
  font-size: 14px;
  line-height: 195.88%;
  text-align: right;
  color: #9C9C9C;
}

.privet-zone.agent .accordion-header {
  font-weight: 400;
  position: relative;
}
.privet-zone.agent .accordion-header .center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.privet-zone.agent .accordion-header .center b {
  margin-right: 30px;
}

.popups {
  display: flex;
  flex-direction: column;
  max-width: 320px;
  width: 100%;
  padding-right: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}
.popups a {
  margin-bottom: 10px;
  color: #000;
}

body.overflow-hidden {
  overflow: hidden !important;
}

.is-open {
  z-index: 500;
  visibility: visible !important;
  opacity: 1 !important;
}

.popup-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 70px;
  font-weight: bold;
  font-size: 14px;
  line-height: 19px;
  color: #5C8E3C;
}
.popup-success svg {
  max-width: 159.7px;
  max-height: 145.46px;
  width: 100%;
  height: 100%;
  margin: 0px 25px;
  margin-bottom: 20px;
}


.popup-code .arrow {
  position: absolute;
  right: 45px;
  top: 45px;
}
.popup-code .popup-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 10px;
}
.popup-code .popup-subtitle {
  font-size: 18px;
  color: #666666;
}
.popup-code p, .popup-code a {
  font-weight: normal;
  font-size: 14px;
  line-height: 19px;
  text-align: center;
  color: #666666;
}
.popup-code a {
  margin-top: 5px;
}
.popup-code form {
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
  padding-left: 24px;
  padding-right: 31px;
  padding-top: 60px;
  flex-direction: row-reverse;
}
.popup-code form input {
  font-weight: bold;
  font-size: 25px;
  margin: 0px 20px;
  line-height: 49px;
  text-align: center;
  color: #000000;
  max-width: 43px;
  width: 100%;
  border-bottom: 1px solid black;
  width: 55px;
}

.popup {
  max-width: 675px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 35%;
  z-index: 999;
  background: #fff;
}
.popup-overflow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 100;
}
.popup-wrapper {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 99108;
  top: 0;
  left: 0;
  overflow-y: auto;
  padding-left: 15px;
  padding-right: 15px;
  padding-bottom: 40px;
  padding-top: 40px;
  opacity: 0;
  visibility: hidden;
}

.popup-code {
  z-index: 2000;
    visibility: visible;
    opacity: 1;
}


.popup-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
.popup-subtitle {
  font-size: 18px;
  line-height: 25px;
  text-align: center;
  color: #666666;
}
.popup .form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
.popup .form-row input {
  margin: 0px 10px !important;
}
.popup .reg form {
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
}
.popup .reg form .form-row input {
  margin: 0 !important;
  margin-bottom: 45px !important;
}
.popup .reg form .form-row input:last-child {
  margin-right: 30px !important;
}
.popup .reg form input {
  width: 100%;
  margin: 0;
  margin-bottom: 45px !important;
}
.popup .or {
  width: 36px;
  height: 36px;
  background: #BC9500;
  border-radius: 100%;
  font-size: 18px;
  line-height: 25px;
  text-align: right;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.popup .tabs {
  width: 100%;
}
.popup .tabs ul {
  width: 100%;
}
.popup .tabs ul li {
  width: 50%;
  text-align: center;
}
.popup .tabs ul li a {
  font-weight: normal;
  font-size: 27px;
  line-height: 37px;
  text-align: center;
  color: #000000;
  margin-top: -3px;
}
.popup .tabs ul li .active {
  color: #BC9500;
}

@media (max-width: 768px) {
  .home-page .main-screen {
    padding-top: 140px;
  }

  .popup-title {
    font-size: 24px;
    margin-top: 20px;
  }

  .form-row {
    flex-direction: column;
  }
  .form-row input {
    width: 100%;
  }
  .form-row input:last-child {
    margin-right: 0 !important;
  }

  .popup .reg form .form-row input:last-child {
    margin-right: 0px !important;
  }

  .popup-login-form {
    padding: 0px 15px;
    margin-bottom: 25px;
  }

  .popup .tabs ul li a {
    font-size: 18px;
  }

  .popup .or {
    margin: 20px 0px;
    margin-bottom: 0;
  }

  .popup-code .arrow {
    top: 10px;
    right: 10px;
  }

  .arrow1 {
    top: 10px;
    right: 10px;
  }
  .popup-code form input {
    margin: 0px 5px;
  }

  .popup-code .popup-subtitle {
    padding: 0px 15px;
  }
}

@media (max-width: 2160px) {
  .arrow1{
    margin-top : 18px;
    float: right;
  }
}
@media (max-width: 1800px) {
  .apartment-search .group:last-child {
    padding-right: 0;
    margin-right: 0;
    border-right: none;
  }
  .arrow1{
    margin-top : 18px;
    float: right;
  }
}


@media (max-width: 1600px) {
  .apartment .main-screen .social {
    display: none;
  }

  


  .home-page .favorites__slider-slide .agent__info-header .objects-count, .home-page .favorites__slider-slide .agent__info-header .position {
    font-size: 32px;
  }

  .home-page .favorites__slider-slide .agent__info-img {
    max-width: 150px;
  }

  .home-page .favorites__slider-slide .agent__info-footer .price {
    font-size: 32px;
  }

  .agent__info-footer .nav a img {
    max-width: 35px;
  }
  .agent__info-footer .nav a:first-child img {
    max-width: 34px;
  }

  .career .page-title {
    font-size: 72px;
  }

  .career .benefits__item {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .career .benefits__item.mirror {
    align-items: flex-end;
  }

  .career .benefits__item-text {
    max-width: 100%;
    margin-top: 30px;
  }
}
@media (max-width: 1500px) {

  .header__menu li {
    margin-right: 20px;
}


  .ac-page .steps-item-title {
    max-width: 330px;
    margin: 0px 20px;
    line-height: 40px;
  }

  .ac-page .steps-number {
    min-width: 150px;
    min-height: 150px;
    font-size: 72px;
  }

  .ac-page .steps-item {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .ac-page .steps-text {
    margin-top: 20px;
    /* max-width: 100%;
    width: 100%; */
  }

  .ac-page .steps-item-title {
    font-size: 34px;
  }

  .ac-page .steps-text {
    font-size: 22px;
  }
}
@media (max-width: 1360px) {

  
  .header__inner--mobile {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    align-items: flex-start;
    display: none;
  }


  .contact-page .contact-form-title {
    font-size: 50px;
  }

  .contact-page .contact-form form {
    padding-top: 35px;
  }

  .home-page .meeting .col:first-child p {
    font-size: 16px;
  }
}
@media (max-width: 1200px) {

  .header__inner--mobile {
    display: flex;
    justify-content: space-between;
    padding: 20px 0px;
    align-items: flex-start;
  
  }

  .header__menu li {
    margin-right: 20px;
}


  .header__inner-desktop {
    display: none;
  }



  .team-page .main-screen-title {
    font-size: 28px;
    text-align: left;
  }
  .team-page .main-screen-title span {
    font-size: 28px;
  }

  .team-page .contact-absolute {
    top: 60%;
  }

  .privet-zone .accordion-content .content-table .col {
    width: 20%;
  }

  .agen .main-screen {
    background-size: 400px;
    height: 400px;
    background-position: 18% 15px;
  }

  .agen .main-screen-title span {
    margin-left: 150px;
  }

  .cards {
    height: auto;
    max-height: 100%;
    min-height: 100%;
  }

  .cards .next-page, .cards .prev-page {
    display: none;
  }

  .cards-wrapper .cards-inner {
    position: static;
  }

  .cards-wrapper {
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .cards-wrapper .cards-inner {
    width: 100%;
  }

  .map-active {
    position: relative;
  }
  .map-active .filter {
    position: absolute;
    width: 100%;
    top: 15px;
    left: 0;
    padding: 0px 10px;
  }

  .map-active .map {
    height: 400px !important;
    width: 100%;
    margin-right: 0;
    margin-top: 60px;
    margin-bottom: 30px;
  }

  .cards-inner .cards {
    grid-template-columns: repeat(3, 1fr) !important;
  }

  .apartment .content .details li {
    min-width: 100px;
    max-width: 100px;
    margin-bottom: 10px;
  }

  .apartment .content section .cards {
    padding: 0px 10px;
    padding-bottom: 25px;
  }
}
@media (min-width: 991px) {
  .agent__info--mobile {
    display: none;
  }
}
@media (max-width: 991px) {
  .cards-wrapper {
    padding: 10px;
  }

  .team-page .main-screen {
    height: 340px;
  }

  .team-page .main-screen-title {
    padding-left: 306px;
  }

  .b-form-wrapper .form form {
    padding-left: 0px;
    padding-right: 20px;
  }

  .b-form-wrapper .form form input {
    margin-left: 20px;
  }

  .b-form-wrapper .form form input[type=submit] {
    width: 307px;
  }

  .career .page-content, .sale-page .page-content, .about-page .page-content, .ac-page .page-content, .privet-zone.sale .page-content {
    padding: 15px;
  }


  .page-title::after {
    background: rgba(0, 0, 0, 0.5);
  }

  .accordion-header .center {
    display: none !important;
  }

  .accordion-content .center {
    font-size: 14px;
    padding: 5px 0px;
    text-align: center;
    border-top: 1px solid #acacac;
    border-bottom: 1px solid #acacac;
  }
  .accordion-content .center b {
    margin-right: 20px;
  }

  .privet-zone .accordion-content .content-table .col {
    width: 40%;
  }

  .privet-zone .apartment-search .title {
    margin-bottom: 30px;
  }



  .agen .categories {
    display: none;
  }

  .privet-zone .register-title {
    font-size: 18px;
  }

  .open-sub-nav {
    position: absolute;
    left: 15px;
    top: 17px;
  }
  .open-sub-nav::after {
    content: "";
    display: block;
    position: absolute;
    min-width: 25px;
    min-height: 25px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .sub-nav {
    align-items: flex-start;
    padding-top: 0;
    overflow: hidden;
    height: 50px;
    position: relative;
  }

  .sub-nav.active {
    height: auto;
  }
  .sub-nav.active .open-sub-nav {
    transform: rotate(180deg);
  }

  .privet-zone .categories {
    display: none;
  }

  .sub-nav .title {
    font-size: 18px;
    padding-left: 20px;
    border-left: 1px solid #C0C0C0;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .sub-nav ul {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 20px;
    padding-top: 15px;
  }
  .sub-nav ul li {
    padding: 0;
    text-align: right;
    margin-bottom: 10px;
  }
  .sub-nav ul li a::after, .sub-nav ul li a::before {
    display: none;
  }

  .cards {
    padding-bottom: 0;
  }

  .register .form-row {
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
  .register .form-row input {
    margin-bottom: 25px;
    margin-right: 0;
  }

  .contact-page .contact-info {
    margin-top: 0;
    max-width: 735px;
    width: 100%;
  }

  .contact__wrapper {
    flex-direction: column;
    align-items: center;
  }

  .thumbs .main__slider-wrapper {
    margin-left: 0;
  }

  .secondary__slider-wrapper {
    display: none !important;
  }

  .thumbs .main__slider-wrapper, .main__slider, .thumbs .main__slider-slide, .thumbs {
    height: auto !important;
  }
  .thumbs .main__slider-wrapper img, .main__slider img, .thumbs .main__slider-slide img, .thumbs img {
    height: auto;
  }

  .apartment .container {
    flex-direction: column;
  }

  .apartment .content, .apartment .sidebar {
    width: 100%;
    max-width: 991px;
    margin-right: 0;
  }

  .apartment .sidebar {
    margin-top: 30px;
  }

  .apartment-search {
    padding-top: 30px;
  }

  .apartment-search .tabs {
    padding-top: 30px;
  }

  .apartment-search .tabs ul {
    display: none;
  }

  .cards-inner .cards {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .apartment-search form {
    flex-direction: column;
  }

  .apartment-search .group {
    flex-direction: column;
    width: 100%;
  }
  .apartment-search .group:first-child {
    border-bottom: 1px solid #ACACAC;
    margin-bottom: 30px;
  }

  .apartment-search .desktop-flex {
    width: 100%;
    margin-bottom: 30px;
  }
  .apartment-search .desktop-flex .choices {
    flex: 1;
    min-width: 0px;
  }
  .apartment-search .desktop-flex input {
    flex: 1;
    min-width: 0px;
  }

  .home-page .favorites {
    padding: 0;
  }

  .agent__info--mobile {
    display: flex;
    z-index: 10;
    min-width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    margin-top: auto;
  }
  .agent__info--mobile .agent__info-img {
    width: 92px !important;
    height: 92px !important;
  }
  .agent__info--mobile .details {
    display: flex;
    flex-direction: column;
    color: #fff;
    font-size: 18px;
  }
  .agent__info--mobile .more-info {
    color: #fff;
    font-size: 16px;
    padding: 8px 20px;
    border: 1px solid #fff;
    border-radius: 3.5px;
  }
  .agent__info--mobile .line {
    margin-left: 0;
    margin-right: 15px;
    margin-bottom: 15px;
  }
  .agent__info--mobile .line::after {
    background: #fff;
    width: 30px;
    right: -20px !important;
  }

  .home-page .page-content {
    padding: 0;
  }

  .home-page .favorites .page-title--lines .all-btn {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    top: 30px;
    left: 10px;
    font-size: 18px;
  }

  .home-page .favorites .page-title--lines {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    width: 100%;
  }
  .home-page .favorites .page-title--lines h2 span {
    font-size: 48px !important;
  }
  .home-page .favorites .page-title--lines h2 span:first-child {
    margin-right: 0 !important;
  }
  .home-page .favorites .page-title--lines h2 span:first-child::before {
    background: #fff;
  }
  .home-page .favorites .page-title--lines h2 span:last-child {
    font-size: 38px !important;
    top: 15px;
    left: 30px;
    color: #F9D466 !important;
  }
  .home-page .favorites .page-title--lines h2 span:last-child::before {
    background: #F9D466;
  }

  .favorites__slider-slide {
    position: relative;
  }
  .favorites__slider-slide::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 125px;
    background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    bottom: 0;
    left: 0;
    z-index: 6;
  }
  .favorites__slider-slide::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 125px;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%);
    top: 0;
    left: 0;
    z-index: 6;
  }
  .favorites__slider-slide .apartment-img {
    position: absolute;
    width: 100% !important;
    max-width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 5;
  }

  .team-page .team .management-items, .team-page .team .consultants-items {
    grid-template-columns: repeat(2, 1fr);
  }

  .career .college-title {
    font-size: 52px;
  }

  .career .benefits__item-title {
    font-size: 42px;
  }

  .career .benefits__item-text {
    font-size: 20px;
  }

  .career .page-title {
    font-size: 54px;
  }

  .b-form-wrapper .form {
    max-width: 480px;
  }
  .b-form-wrapper .form .form-title {
    flex-direction: column;
    font-size: 42px;
  }
  .b-form-wrapper .form .form-title span {
    font-size: 24px;
  }

  .b-form-wrapper .form-subtitle {
    padding-left: 0 !important;
  }

  .ac-page .steps-item {
    margin-top: 20px;
  }

  .content-section--medium.mirror .section-text {
    margin: 0;
  }

  .content-section--medium .section-img img {
    width: 100%;
  }

  .page-title {
    padding-top: 130px;
    padding-bottom: 30px;
    font-size: 36px;
  }

  .content-section {
    flex-direction: column;
    padding: 15px;
  }

  .content-section.mirror {
    flex-direction: column !important;
  }

  .content-section .section-img {
    width: 100%;
    height: auto;
  }

  .content-section .section-title--mobile {
    display: block;
    text-align: center;
    font-size: 24px;
    line-height: 33px;
    text-align: center;
    color: #646464;
    padding-bottom: 20px;
  }

  .content-section .section-img {
    margin: 0 auto;
  }

  .section-title {
    display: none;
  }

  .content-section .section-text {
    max-width: 100%;
    margin-right: 0;
    font-size: 18px;
  }
  .content-section .section-text p {
    padding-top: 10px;
    font-weight: 400;
    font-size: 18px;
    line-height: 150.18%;
    text-align: right;
  }

  section .section-title {
    display: none;
  }

  .home-page .main-screen .categories {
    display: none;
  }
  .home-page .main-screen .fields {
    flex-wrap: wrap;
    justify-content: space-between;
    background: none;
  }
  .home-page .main-screen .fields .desktop-hidden {
    width: 50%;
  }
  .home-page .main-screen .fields .desktop-hidden .choices {
    width: 99%;
  }
  .home-page .main-screen .fields .choices {
    width: 49.5%;
    margin-left: 0;
    margin-right: 0px;
    
  }
  .home-page .main-screen .fields .choices .choices__inner {
    width: 100%;
    color: black;
    font-size: 18px;
  }
  .home-page .main-screen .fields .choices .choices__list--single {
    padding: 1px 6px 4px 4px;
  }
  .home-page .main-screen .fields input[type=submit] {
    width: 100%;
    background: #d5b75e;
    color: #000;
  }
  .home-page .main-screen .fields .input-row {
    justify-content: space-between;
    margin: 15px 0px;
  }
  .home-page .main-screen .fields .input-row input {
    flex: none;
    margin-left: 0;
    font-size: 18px;
    font-weight: lighter;
  }
  .home-page .main-screen .fields .input-row input:first-child {
    width: 30%;
  }
  .home-page .main-screen .fields .input-row input:last-child {
    width: 68%;
  }
  .home-page .main-screen .numbers {
    padding-top: 40px;
  }
  .home-page .main-screen .numbers ul {
    max-width: 740px;
    flex-wrap: wrap;
  }
  .home-page .main-screen .numbers ul li {
    border: none;
    width: 50%;
    margin-bottom: 30px;
  }
  .home-page .main-screen .numbers .number {
    font-size: 42px;
  }
  .home-page .main-screen .numbers .number-title {
    font-size: 20px;
  }
  .home-page .meeting-wrap {
    padding-top: 15px;
  }

  .home-page .meeting-wrap h2 span:first-child {
    font-size: 52px;
  }

  .home-page .meeting-wrap h2 span:last-child {
    font-size: 32px;
    margin-left: -315px;
  }

  .home-page .meeting-wrap h2 span:last-child::before {
    right: 174px;
  }

  .home-page .meeting-wrap h2 span:first-child::before {
    left: 325px;
  }

  .meeting {
    flex-direction: column;
  }
  .meeting .col {
    width: 100%;
  }
  .meeting .col img {
    margin-bottom: -10px;
  }
  .meeting .col .btn {
    margin: 0 auto;
    margin-top: 35px;
  }

  .main__slider-wrapper {
    position: relative;
  }

  .thumbs .main__slider-wrapper .slider-arrow {
    display: block;
    position: absolute;
    top: 50%;
  }

  .thumbs .main__slider-wrapper .slider-prev {
    top: 50%;
    left: 15px;
    transform: rotate(-90deg);
  }

  .thumbs .main__slider-wrapper .slider-next {
    top: 50%;
    right: 15px;
    transform: rotate(90deg);
  }

  .apartment .page-content {
    padding-top: 10px;
  }

  .apartment .content section {
    margin-top: 10px;
  }

  .apartment .content section iframe {
    height: 400px;
  }

  .new-project .apartment-details {
    flex-direction: column-reverse;
    align-items: flex-end;
  }

  .new-project .apartment-details .details {
    margin-top: -45px;
  }
  .new-project .apartment-details .details p {
    margin-top: 30px;
  }

  .privet-zone__form form {
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
  }
  .privet-zone__form form input {
    max-width: 100%;
    width: 100%;
  }

  .privet-zone__form .form-row {
    flex-direction: column;
  }
  .privet-zone__form .form-row label {
    margin-bottom: 20px;
  }

  .tabs > div > div {
    padding-left: 0;
    padding-right: 0;
  }

  .apartment-search {
    padding: 20px 10px;
    padding-bottom: 0;
  }

  .apartment-search .tabs {
    padding-top: 0;
    padding-bottom: 0 !important;
  }
  .apartment-search .tabs .tab-content {
    padding-bottom: 0;
  }

  .apartment-search .desktop-flex .choices {
    flex: 1;
    padding: 0 5px;
    min-width: 0;
    height: 40px;
  }
  .apartment-search .dropdown {
    padding: 0px 5px;
  }
}
.apartment-search .choices__list--dropdown {
  background: #fff;
  border-radius: 3px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
}
.apartment-search .choices__list--dropdown .choices__item {
  background: #fff;
  padding-left: 0 !important;
}
.apartment-search .choices__list--dropdown .choices__item:hover {
  background: black;
  color: #fff;
}

.choices__list--dropdown {
  z-index: 99;
}

.privet-zone .accordion-items {
  margin-bottom: 40px;
}

.choices__placeholder {
  opacity: 1;
}

@media (min-width: 768px) {
  .apartment-search.mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .apartment-search .dropdown-content {
    position: fixed;
  }

  .agen .apartment-search .group:first-child {
    margin-top: 20px;
  }

  .apartment-search.mobile {
    padding-top: 0;
    margin-top: -46px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .apartment-search.mobile .dropdown {
    font-size: 13px;
    padding: 0px 5px;
  }
  .apartment-search.mobile .choices__inner {
    font-size: 13px;
  }
  .apartment-search.mobile .choices[data-type*=select-one]:after {
    top: 39%;
  }

  .agen .choices__placeholder {
    opacity: 1;
  }

  .apartment-search.desktop {
    display: none;
  }

  .register {
    padding: 10px;
  }

  .agen .main-screen {
    height: 250px;
    background-position: -24px 6px !important;
  }

  .team-page .main-screen-title {
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 170px;
    padding-left: 180px;
  }
  .team-page .main-screen-title span {
    font-size: 18px;
    line-height: 25px;
  }

  .team-page .main-screen {
    height: 310px;
  }

  .connect-form {
    padding-bottom: 40px;
  }
  .connect-form input[type=submit] {
    margin-left: 0;
    width: 300px;
  }
  .connect-form .line {
    margin-left: 0;
  }

  .popup {
    top: 15px;
    left: auto;
    position: relative;
    transform: translateX(0);
    margin: 0 auto;
  }

  .privet-zone .apartment-search .title {
    font-size: 18px;
  }

  .accordion-items {
    padding: 0px 5px;
  }

  .messages {
    padding-top: 15px !important;
  }

  .privet-zone .accordion-items .accordion-item {
    margin-bottom: 0;
  }
  .privet-zone .accordion-items .accordion-item:not(:first-child) .accordion-header {
    border-top: none;
  }

  .privet-zone .accordion-items .accordion-header {
    font-size: 14px !important;
    padding: 15px;
  }

  .privet-zone .accordion-items .accordion-content {
    font-size: 14px !important;
  }
  .privet-zone .accordion-items .accordion-content a {
    font-size: 14px !important;
  }

  .new-project .apartment-details .details {
    margin-top: -30px;
  }

  .new-project .apartment-details .details p {
    margin-top: 10px;
  }

  .new-project .content div.details {
    flex-direction: column;
  }

  .new-project .content div.details .col {
    width: 100%;
  }

  .agen .main-screen {
    background-size: 275px !important;
    background-position: 50px 45px;
  }

  .agen .main-screen-title span {
    font-size: 12px;
    line-height: 20px !important;
    margin-left: 50px;
  }

  .agen .main-screen-title::after, .agen .main-screen-title::before {
    width: 82.31px;
    height: 83.58px;
  }

  .agen .main-screen-title::after {
    right: -45px;
    bottom: 33px;
    border-width: 1px;
  }

  .agen .main-screen-title::before {
    right: -69px;
    bottom: 15px;
    border-width: 1px;
  }

  .agen .main-screen-title .float-text {
    font-size: 11px;
    right: -68px;
    bottom: -63px;
  }

  .agen .main-screen-title span.first-row {
    font-size: 16px;
  }

  .contact-page .contact-form-title {
    font-size: 28px;
  }

  .contact-page .contact-form {
    padding: 20px;
  }

  .contact-page .contact-form form {
    padding: 0;
    padding-top: 20px;
  }

  .contact-page .contact-form form .input-underline {
    margin-left: 0;
  }

  .contact-page .contact-info {
    padding-bottom: 80px;
  }

  .contact-page .contact-info .logo {
    max-width: 180px;
  }

  .contact-page .contact-info .social a img {
    width: 46px;
    height: 46px;
  }

  .contact-page .contact-info a {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-page .contact-info .social {
    left: 50%;
    transform: translateX(-50%);
  }

  .apartment .content section iframe {
    height: 200px;
  }

  .apartment .content section .cards {
    display: grid;
    grid-template-columns: 1fr !important;
    max-height: 100%;
  }
  .apartment .content section .cards .card {
    max-width: 100%;
  }

  .apartment-type {
    font-size: 18px;
  }

  .apartment-details .price {
    font-size: 24px;
    line-height: 1.3;
  }

  .apartment .content .details li span, .apartment .content .apartment-details .title, .apartment-city, .apartment-size {
    font-size: 16px;
  }

  .filter .count {
    font-size: 15px;
  }

  .cards .next-page, .cards .prev-page {
    display: none;
  }

  .register__block .line a, .register__block .line input[type=submit] {
    font-size: 18px;
    padding: 10px 50px;
  }

  .register__block h2 {
    font-size: 24px;
  }
  .register__block p {
    font-size: 17px;
  }

  .footer-top {
    max-width: 293px;
    margin: 0 auto;
    justify-content: space-between;
  }
  .footer-top .footer-back {
    position: static;
    padding-left: 0;
  }
  .footer-top .footer-back img {
    width: 6px;
    margin-right: 5px;
  }
  .footer-top .footer-title {
    padding-right: 0;
  }

  .accordion-header {
    font-size: 24px;
    text-align: center;
    padding: 20px;
  }

  .accordion-content {
    padding: 20px;
    font-size: 16px;
    line-height: 25px;
    padding-top: 0;
  }

  .accordion-header::before {
    width: 14px;
    height: 9px;
    top: 35px;
  }

  .b-form-wrapper .form .form-title {
    font-size: 21px;
  }

  .career .college-title {
    font-size: 18px;
    padding: 25px 0px;
    margin-bottom: 20px;
  }

  .career .benefits__item-text {
    font-size: 16px;
  }

  .career .benefits__item {
    overflow: hidden;
    padding: 25px 15px;
  }

  .career .benefits__item-title {
    margin: 0 auto;
    font-size: 38px;
    padding: 0 !important;
  }
  .career .benefits__item-title::after {
    width: 500px;
    right: -525px;
  }

  .career .benefits__item.mirror .benefits__item-title::after {
    width: 500px;
    right: auto;
    left: -525px;
  }

  .career .benefits-title {
    font-size: 47px;
    margin-top: 35px;
  }

  .career .benefits__item {
    margin-top: 35px;
  }

  .career .meeting {
    margin-top: 10px;
  }
  .career .meeting .col .btn {
    display: block;
    max-width: 220px;
    font-size: 16px;
    text-align: center;
    margin: 15px auto;
  }
  .career .meeting .col img {
    margin-bottom: -5px;
  }

  .career .page-title {
    font-size: 20px;
    padding: 0;
  }

  .ac-page .steps-item-title {
    max-width: 200px;
    font-size: 20px;
    margin-right: 1px;
  }

  .ac-page .steps-number {
    min-width: 80px;
    min-height: 80px;
    max-width: 80px;
    max-height: 80px;
    font-size: 40px;
  }

  .b-form-wrapper {
    padding: 25px 10px;
  }

  .ac-page .steps-item.mirror {
    flex-direction: row !important;
  }

  .ac-page .steps-text {
    font-size: 16px;
  }

  .ac-page .steps-item {
    padding: 15px;
  }

  .ac-page .text {
    padding: 15px;
  }

  .ac-page .text .title {
    font-size: 24px;
    line-height: 33px;
  }

  .ac-page .text p {
    font-size: 16px;
  }

  .footer-title {
    font-size: 18px;
  }

  .ac-page .case-price {
    font-size: 54px;
  }

  .ac-page .case-text {
    font-size: 30px;
  }

  .ac-page .steps-title {
    font-size: 24px;
    line-height: 33px;
  }

  .ac-page .case-title {
    padding: 20px;
    background: #fff;
    margin-top: 15px;
  }

  .ac-page .case .imgs {
    margin-top: 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .ac-page .case .imgs img {
    width: 65px;
  }

  .footer-back {
    font-size: 16px;
  }

  .footer-top::after {
    display: none;
  }

  .footer-nav li > a {
    font-size: 13px;
  }

  .footer-nav .nav-header {
    font-size: 18px;
    text-align: left;
  }

  .footer-nav ul {
    width: 40%;
    max-width: 155px;
    margin-left: 0;
    margin-right: 25px;
  }

  .footer .social-line a img {
    width: 53px;
    height: 53px;
  }

  .footer .social-line a {
    margin: 0px 5px;
  }

  .footer-nav {
    padding: 30px 10px;
  }

  .footer__slider-wrapper {
    width: 293px;
    overflow: hidden;
  }

  .footer .slide-img {
    width: 293px;
    height: 164px;
  }

  .footer .next-slide img, .footer .prev-slide img {
    width: 13px;
  }

  .footer .slider-nav-wrap::after {
    display: none;
  }

  .footer .slider-nav-wrap::before {
    display: none;
  }

  .footer .prev-slide {
    right: 5px;
  }

  .footer .next-slide {
    left: 5px;
  }

  .connect-form .inputs {
    flex-direction: column;
    width: 320px;
  }

  .connect-form .inputs input {
    margin: 0;
    padding: 0;
    padding-bottom: 10px;
    margin-top: 35px;
    font-weight: 400;
    font-size: 17px;
  }

  .connect-form .descr {
    padding-bottom: 0;
    font-size: 20px;
    max-width: 320px;
  }

  .connect-form h2 span:last-child::before {
    background: #D6A516;
    content: "";
    position: absolute;
    height: 3px;
    width: 67%;
    right: 140px;
    top: 50%;
    transform: translateY(-50%);
  }

  .connect-form h2 span:first-child::before {
    left: 90px;
  }

  .connect-form h2 span:first-child {
    font-size: 30px;
    margin-right: -50px;
  }

  .connect-form h2 span:last-child {
    font-size: 19px;
    margin-top: 0;
  }

  .home-page .meeting-wrap h2 span:first-child {
    font-size: 30px;
  }

  .home-page .meeting-wrap h2 span:last-child {
    font-size: 19px;
    margin-left: -106px;
  }

  .home-page .meeting-wrap h2 span:last-child::before {
    right: 106px;
    background: #D6A516;
    content: "";
    position: absolute;
    height: 3px;
    width: 102%;
    right: 170px;
    top: 50%;
    transform: translateY(-50%);
    overflow: visible;
  }

  .home-page .meeting-wrap h2 span:first-child::before {
    left: 150px;
  }

  .home-page .meeting .col:first-child p {
    font-size: 14px;
  }

  .home-page .main-screen {
    padding-bottom: 0;
  }
  .home-page .main-screen h1 {
    font-size: 20px;
  }
  .home-page .main-screen .numbers {
    padding-top: 40px;
    padding-left: 10px;
  }
  .home-page .main-screen .numbers ul {
    max-width: 420px;
    flex-wrap: wrap;
  }
  .home-page .main-screen .numbers ul li {
    border: none;
    width: 50%;
    margin-bottom: 30px;
    padding: 0;
  }
  .home-page .main-screen .numbers .number {
    font-size: 48px;
  }
  .home-page .main-screen .numbers .number-title {
    font-size: 16px;
  }
  .home-page .input-row {
    margin: 35px 0px !important;
  }

  .meeting {
    flex-direction: column;
    padding: 0px 20px;
    margin-top: 15px;
  }
  .meeting .col:last-child {
    margin-right: -60px;
  }
  .meeting .col .name {
    top: 45px;
    right: 25px;
    bottom: auto;
    font-size: 12px;
    max-width: 80px;
    line-height: 1.5;
  }

  .team-page .team .management-title, .team-page .team .consultants-title {
    font-size: 18px;
  }

  .team-page .team .consultants-name {
    font-size: 29px;
  }

  .team-page .team .consultants-city, .team-page .team .consultants-position, .team-page .team .consultants-achievement {
    font-size: 18px;
  }

  .apartment .sidebar .agent__info .name {
    font-size: 20px;
  }

  .apartment .sidebar .agent__contact {
    width: 140px;
  }

  .apartment .sidebar .agent__info .position, .apartment .sidebar .agent__info .objects-count, .apartment .sidebar .agent__contact a {
    font-size: 15px;
  }
}
@media (max-width: 560px) {

  .arrow1{
    margin-top: 27px;
    float: right;
    margin-right: 5px;
  }
  .content-table {
    flex-direction: column;
  }
  .content-table .col {
    width: 100% !important;
  }

  .privet-zone .accordion-content .content-table .col-content > div:first-child {
    width: 120px;
  }

  .privet-zone .accordion-content .content-table .col-content > div:last-child {
    padding-right: 30px;
  }

  .cards-inner .cards {
    grid-template-columns: repeat(1, 1fr) !important;
    justify-items: center;
  }

  .home-page .favorites .page-title--lines .all-btn {
    font-size: 14px;
  }
  .home-page .favorites .page-title--lines .all-btn img {
    width: 6px;
    margin-right: 5px;
  }

  .agent__info--mobile {
    padding: 10px !important;
  }

  .agent__info--mobile .details {
    font-size: 14px;
  }

  .agent__info--mobile .more-info {
    font-size: 12px;
  }

  .home-page .favorites .page-title--lines .all-btn {
    top: 13px !important;
  }

  .home-page .favorites .page-title--lines h2 span:first-child {
    font-size: 30px !important;
  }

  .home-page .favorites .page-title--lines h2 span:last-child {
    font-size: 19px !important;
    top: 2px !important;
  }

  .page-title--lines h2 span:first-child::before {
    height: 2px;
    left: 265px !important;
  }

  .home-page .favorites .page-title--lines h2 span:last-child::before {
    height: 2px;
    /* right: 73px !important; */
    background: #D6A516;
    /* content: ""; */
    position: absolute;
    /* height: 5px; */
    width: 249%;
    right: 197px;
    top: 50%;
    transform: translateY(-50%);
  }

  .home-page .favorites__slider-wrapper .next-btn, .home-page .favorites__slider-wrapper .prev-btn {
    top: 180px;
  }
  .home-page .favorites__slider-wrapper .next-btn img, .home-page .favorites__slider-wrapper .prev-btn img {
    width: 23px;
  }

  .agent__info--mobile {
    align-items: flex-end;
    padding: 20px;
  }
  .agent__info--mobile .agent__info-img {
    width: 62px !important;
    height: 62px !important;
  }

  .home-page .favorites__slider-wrapper {
    height: 360px;
  }

  .team-page .team .management-item .management-name {
    font-size: 14px;
  }

  .team-page .team .management-item .management-position {
    font-size: 14px;
  }

  .team-page .team .consultants-items {
    grid-template-columns: 1fr;
  }

  .team-page .team .management-items {
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 15px;
  }
}
@media (max-width: 480px) {
  .popup .reg form
  {
  max-width: 290px;
    width: 100%;
    margin: 27px auto;
}

.arrow1{
  margin-top: 27px;
  float: right;
  margin-right: 5px;
}
  .agen .main-screen {
    background-position: -24px 45px;
  }

  .b-form-wrapper .form-subtitle {
    font-size: 18px;
    margin-bottom: 13px;
  }

  .b-form-wrapper .form .form-title span {
    font-size: 21px;
  }

  .b-form-wrapper .form .form-title {
    font-size: 36px;
    line-height: 48px;
  }

  .b-form-wrapper .form-text {
    font-size: 21px;
  }

  .career .b-form-wrapper .form .form-title {
    font-size: 21px;
  }
}

.header li.menu-item-has-children > a:after {
  content: "";
  position: relative;
  border: 10px solid transparent;
  border-bottom: 10px solid #fff;
  display: block;
  width: 20px;
  height: 20px;
  right: -6px;
  top: 10px;
  display: inline-block;
  transform: rotate(180deg);
  transition: 0.5s;
}

.header li.menu-item-has-children.open > a:after { 
  top: 0px;
  display: inline-block;
  transform: rotate(360deg);
}

.apartment-search .city-list, .apartment-search .shcuna-list, .neigb-list {
  overflow: auto;
  max-height: 260px;
  display: flex;
  flex-direction: column;
}

.simple-pagination ul {
	margin: 0 0 20px;
	padding: 0;
	list-style: none;
	text-align: center;
}

.simple-pagination li {
	display: inline-block;
	margin-right: 5px;
}

.simple-pagination li a,
.simple-pagination li span {
	color: #666;
	padding: 5px 10px;
	text-decoration: none;
	border: 1px solid #EEE;
	background-color: #FFF;
	box-shadow: 0px 0px 10px 0px #EEE;
}

.simple-pagination .current {
	color: #FFF;
	background-color: #FF7182;
	border-color: #FF7182;
}

.simple-pagination .prev.current,
.simple-pagination .next.current {
	background: #e04e60;
}

.like
{
  background: url('img/like.svg');
}

.likeit
{
  background: url('img/likeit.png');
}


.Sharing{
	position: relative;
	z-index: 1;
  margin-top: -11px;
}


.Sharing .circle-share{
	position: relative;
	width: 25px;
	height: 25px;
	background-color: #ffffff;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 2px #f9fcff;
	cursor: pointer;
	text-align: center;
  margin-top: 7px;
}
.Sharing .circle-share .fa-share-alt{
	line-height: 26px;
    color: #524f4f;
    font-size: 18px;
}
.Sharing ul{
	list-style-type: none;
	position: absolute;
	width: 70px;
	height: 70px;
	background-color: #fff;
	top: -13px;
	left: -23px;
	z-index: -1;
	border-radius: 50%;
	box-shadow: 0px 0px 0px 3px #1f2d3a,
				0px 0px 0px 5px #fff;
	transform: scale(.3) rotate(-180deg);
	transition: .5s ease-in;
}
.Sharing:hover ul{
	transform: scale(1) rotate(0deg);	
}
.Sharing ul:before,
.Sharing ul:after{
	content: '';
	position: absolute;
	height: 2px;
	width: 100%;
	background-color: #1f2d3a;
	top: 50%;
}
.Sharing ul:before{
	left: -1px;
	transform: rotate(45deg);
}
.Sharing ul:after{
	right: -1px;
	transform: rotate(-45deg);
}
.Sharing ul li a{
	text-decoration: none;
	font-size: 14px;
}
.Sharing ul li:first-of-type a{
	color: #3b5999;
}
.Sharing ul li:nth-of-type(2) a{
	color: #25D366;
}
.Sharing ul li:nth-of-type(3) a{
	color: #55acee;
}
.Sharing ul li:last-of-type a{
	color: #e4405f;
}

.Sharing ul li:first-of-type{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 1px;
}
.Sharing ul li:nth-of-type(2){
	position: absolute;
	left: 2px;
	transform: translateY(-50%);
	top: 50%;	
}
.Sharing ul li:nth-of-type(3){
	position: absolute;
	right: 2px;
	transform: translateY(-50%);
	top: 50%;	
}
.Sharing ul li:last-of-type{
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 2px;	
}



.res
{
  margin-top: 0;
  /* width: 180px; */
  padding: 10px 0;
  font-size: 16px;
  font-family: inherit;
  line-height: 1;
  font-weight: 800;
}


.tab {
  overflow: hidden;

}

/* Style the buttons inside the tab */
.tab button {

  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}


.watched{
  position: absolute;
    left: 90%;
    bottom: 17.23em;
  display: none;
}


.labelPlus{
  /* display: none; */
  position: absolute;
  right: 0px;
  font-size: 14px;
  font-weight: bold;
  text-align: right;
  width: 12px;
  line-height: 30px;
  margin-right: 18px;
  margin-top: 0px;
}


.btnreset
{
  cursor: pointer;
}


.gm-style-iw button.gm-ui-hover-effect:before {
  display: block;
    content: "";
    background: url(../img/cross.png) center center no-repeat;
    background-size: cover;
    width: 25px;
    height: 25px;
    left: 15px;
    position: absolute;
    top: 15px;
}

.gm-ui-hover-effect {
  opacity: 1;
}

.swiper-button-disabled{
  display:none;   
}

.icons {
  width: auto;
  display: inline-block;
  list-style-type: none;
  line-height: 2;
}
.icons li {
  float: left;
  -webkit-transition: all 0.14s ease-in-out;
  -moz-transition: all 0.14s ease-in-out;
  -o-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
  opacity: 0.5;
}
.icons li:hover {
  opacity: 1;
}
.icons a,
.icons li > a,
.icons li .like_button,
.icons li .reblog-icon {

  height: 35px;
  padding-top: 4px;
  font-size: 22px;
  text-align: center;
  color: #808080;
  cursor: pointer;
}
.icons li.link a {
  font-size: 20px;
}
.icons li .like_button {
  padding: 6px 0 0 0;
}
.icons li .reblog-icon {
  padding: 6px 0 0 7px;
}
.icons .sharer {
  position: relative;
}
.icons .sharer .social-export {
  padding-top: 5px;
}
.icons .sharer .sharer-wrap {
  position: absolute;
  text-align: center;
  bottom: 100%;
  width: 235px;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -moz-transform: translate(-50%, 0);
  -o-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.14s ease-in-out;
  -moz-transition: all 0.14s ease-in-out;
  -o-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
}
.icons .sharer:hover .sharer-wrap {
  visibility: visible;
  opacity: 1;
}
.icons .sharer:hover .sharer-wrap ul {
  -webkit-transform: translate(0, -8px);
  -moz-transform: translate(0, -8px);
  -o-transform: translate(0, -8px);
  -ms-transform: translate(0, -8px);
  transform: translate(0, -8px);
}
.icons .sharer ul {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 10px 24px;
  list-style: none;
  z-index: 10;
  background: #ffffff;
  border: 2px solid #ecf0f1;
  -webkit-transition: all 0.14s ease-in-out;
  -moz-transition: all 0.14s ease-in-out;
  -o-transition: all 0.14s ease-in-out;
  transition: all 0.14s ease-in-out;
  -webkit-border-radius: 50px;
-moz-border-radius: 50px;
border-radius: 50px;
}
.icons .sharer ul:after,
.icons .sharer ul:before {
  top: 100%;
  left: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
}
.icons .sharer ul:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-color: #ffffff;
  border-width: 8px;
  margin-left: -8px;
}
.icons .sharer ul:before {
  border-color: rgba(240, 244, 245, 0);
  border-top-color: #ecf0f1;
  border-width: 11px;
  margin-left: -11px;
}
.icons .sharer ul li a {
  width: 32px;
  height: 35px;
  padding-top: 9px;
}
.icons .sharer ul li a.social-tweets {
  padding-top: 10px;
  font-size: 25px;
  color: rgb(91, 163, 211);
  padding-right: 10px;

}
.icons .sharer ul li a.social-facebook {
  font-size: 25px;
  color: rgb(85, 86, 134);
  padding-right: 10px;
}
.icons .sharer ul li a.social-gplus {
  font-size: 25px;
  color: rgb(82, 175, 128);
  padding-right: 3px;
}
.icons .sharer ul li a.social-linkedin {
  padding-top: 9px;
  font-size: 25px;
  color: rgb(173, 173, 175);
  padding-right: 10px;
}
.icons.white li > a,
.icons.white li .like_button,
.icons.white li .reblog-icon {
  color: #ffffff;
}


.gm-style-iw, .gm-style-iw-c {
  height: 150px;
  width: 350px;
}


[dir=rtl] .choices__list--dropdown .choices__item {
  text-align: left;
}
.yes_new,.no_new {display:none;}
.no_new.vis {display:block;}
.yes_new.vis {display:block;display: contents;}


.swiper-slide-active, .next-btn{z-index:999}
.newShc
{
  background: #FFFFFF;
  /* border: 1px solid #ACACAC; */
  /* box-sizing: border-box; */
  border-radius: 3px;
  /* height: 44px; */
  padding: 10px;
  font-size: 16px;
  color: #858585;
  flex: 1;
  margin-left: 15px;

}

.line {
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}
.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 44px;
  user-select: none;
  -webkit-user-select: none;
  min-height: 44px;
  
}

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none;
  
}


.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #5897fb;
  color: white;
  text-align: left;
}

.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 8px;
  padding-left: 20px;
  text-align: left;
  line-height: 44px;
}



.select2-results__option--selectable {
  cursor: pointer;
  text-align: left;
}

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
  display: none;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
  background: #FFFFFF;
  border: 1px solid #ACACAC;
  box-sizing: border-box;
  border-radius: 3px;

  padding: 11px;
  font-size: 16px;
  color: #858585;
  flex: 1;
  /* margin-left: 10px; */
}

.select2-container--default .select2-results>.select2-results__options {
  max-height: 200px;
  overflow-y: auto;
  display: block;
} 

.likeprop1
{
  width: 50px;
}

.select2 {
width:100%!important;
}


.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  right: 1px;
  left: auto;
  display: none;
}

.select2-container .select2-selection--single {
  box-sizing: border-box;
  cursor: pointer;
  display: block;
  height: 44px;
  user-select: none;
  -webkit-user-select: none;
  margin-right: 2px;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #444;
  line-height: 47px;
  text-align: left;
}

@media (max-width: 1940px) {

.select2
{
  width:100%!important;
}
}

@media (max-width: 768px) {
  .select2
{
  width:100%!important;
}
}


.leaflet-popup-content {
  width: auto;
  min-width: 350px !important;
}

.leaflet-popup-content .card-img img {
  width: 350px;
  border-radius: 2px;
} 

.marker-cluster div {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  margin-top: 5px;
  text-align: center;
  border-radius: 15px;
  font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif;
}


#loading {
  background: url('../img/loading-gif.gif') no-repeat center center;
  position: absolute;
  top: 40%;
  left: 35%;
  height: 100%;
  width: 100%;
  z-index: 9999999;
}

.card-footer .personc {
  width: 85px;
  height: 85px;
  border-radius: 100%;
  border: 3px solid #fff;

  overflow: hidden;
  background: #fff;
  margin-top: -97px;
  margin-left: 50px;
}

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