html,
body {
  padding: 0;
  margin: 0;
  font-size: 1rem;
  width: 100%;
}

html {
  min-height: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: Montserrat, serif;
  color: #1d1d1b;
  /* Chrome + Safari =/- */
  text-rendering: geometricPrecision;
  /* Safari */
  -webkit-font-smoothing: antialiased;
  /* Firefox */
  -moz-osx-font-smoothing: grayscale;
  /* Just in case */
  font-smooth: antialiased;
}
body.a-fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}

picture img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

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

li {
  margin: 0;
  padding: 0;
}

p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

sup {
  line-height: 0;
}

button {
  border: none;
  outline: none;
  appearance: none;
  background: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.3s;
}

svg {
  transition: fill 0.3s;
}

.a-container {
  margin: 0 auto;
  width: 100%;
  padding: 0 20px;
  overflow: hidden;
}
@media only screen and (min-width: 1280px) {
  .a-container {
    max-width: 1280px;
    padding: 0 44px;
  }
}

.a-anchor {
  position: relative;
}
.a-anchor__top {
  position: absolute;
  top: -128px;
  left: 0;
  pointer-events: none;
}

h2.a-title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 124%;
  text-transform: uppercase;
}
@media only screen and (min-width: 768px) {
  h2.a-title {
    font-size: 3rem;
    line-height: 124%;
  }
}
h2.a-title span {
  font-weight: 400;
}

.a-subtitle {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 160%;
  margin-top: 20px;
}

@media only screen and (min-width: 768px) {
  .a-numbers {
    display: flex;
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 768px) {
  .a-numbers__item {
    flex: 1;
  }
}
.a-numbers__item + .a-numbers__item {
  margin: 20px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-numbers__item + .a-numbers__item {
    margin: 0 0 0 56px;
  }
}
.a-numbers__number {
  font-weight: 700;
  font-size: 3rem;
  line-height: 124%;
  text-transform: uppercase;
  color: #003249;
}
.a-numbers__unit {
  font-weight: 600;
  font-size: 1rem;
  line-height: 180%;
  margin-left: 6px;
}
.a-numbers__text {
  font-weight: 500;
  font-size: 0.9375rem;
  line-height: 140%;
  margin-top: 6px;
}
.a-numbers__text:before {
  content: "";
  width: 72px;
  height: 3px;
  background: #0d364a;
  margin-bottom: 10px;
  display: block;
}
.a-numbers__legend {
  margin: 32px 0 0 0;
  border-top: solid 1px #dee7eb;
  padding: 24px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-numbers__legend {
    flex: 0 0 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 16px;
  }
}
.a-numbers__legend-item {
  margin: 16px 0 0 0;
  position: relative;
  padding: 0 0 0 20px;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .a-numbers__legend-item {
    margin: 0;
  }
}
.a-numbers__legend-item:first-child {
  grid-column: 1/2;
  grid-row: 1/2;
  margin-top: 0;
}
.a-numbers__legend-item:nth-child(2) {
  grid-column: 2/4;
  grid-row: 1/2;
}
.a-numbers__legend-item:before {
  position: absolute;
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  left: 0;
  top: 3px;
  display: block;
}
.a-numbers__legend-item_retail:before {
  background-color: #c52808;
}
.a-numbers__legend-item_new:before {
  background-color: #9aa8fb;
}
.a-numbers__legend-item_active:before {
  background-color: #969696;
}
.a-numbers__legend-item_industrial:before {
  background-color: #2b35bf;
}
.a-numbers__legend-item_residential:before {
  background-color: #bde4f7;
}

.a-circles {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.a-circles__item {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
}
.a-circles__item:first-child {
  width: 148px;
  height: 148px;
  left: 225px;
  top: -40px;
  animation: sway-1 3s ease-in-out infinite alternate;
}
.a-circles__item:nth-child(2) {
  width: 400px;
  height: 400px;
  left: 536px;
  top: -140px;
  animation: sway-2 5s ease-in-out infinite alternate;
}
.a-circles__item:nth-child(3) {
  width: 272px;
  height: 272px;
  left: 420px;
  bottom: -140px;
  animation: sway-3 4s ease-in-out infinite alternate;
}

@keyframes sway-1 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, -15px);
  }
}
@keyframes sway-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-50px, 20px);
  }
}
@keyframes sway-3 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, -20px);
  }
}
@keyframes border-color-animation {
  0% {
    border-color: rgba(13, 54, 74, 0.5);
  }
  25% {
    border-color: rgba(0, 33, 48, 0.8);
  }
  50% {
    border-color: rgba(13, 54, 74, 0.5);
  }
  75% {
    border-color: rgba(0, 33, 48, 0.8);
  }
  100% {
    border-color: rgba(13, 54, 74, 0.5);
  }
}
/** text block **/
.a-text-block {
  overflow: hidden;
}
.a-text-block + .a-text-block {
  margin-top: 80px;
}
.a-text-block .a-numbers {
  margin-top: 20px;
}
.a-text-block_about {
  margin-top: 32px;
}
@media only screen and (min-width: 768px) {
  .a-text-block_about {
    margin-top: 48px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-text-block_about {
    margin-top: 92px;
  }
}
.a-text-block_potential {
  margin-top: 32px;
}
@media only screen and (min-width: 768px) {
  .a-text-block_potential {
    margin-top: 48px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-text-block_potential {
    margin-top: 60px;
  }
}
.a-text-block_life-balance {
  background: linear-gradient(180deg, #c2e3f4 0%, #f2e8dc 100%);
  padding: 40px 0;
}
@media only screen and (min-width: 1280px) {
  .a-text-block_life-balance {
    padding: 84px 0 74px;
  }
}
.a-text-block_life-balance .a-container {
  position: relative;
  overflow: visible;
}
.a-text-block_life-balance .a-container .a-text-block__columns {
  position: relative;
  z-index: 2;
}
.a-text-block_life-balance .a-container .a-circles {
  z-index: 1;
  pointer-events: none;
}
.a-text-block_work-balance {
  background: url(../images/work-balance-bg.png) 0 0 no-repeat, #010e14;
  background-size: cover;
  position: relative;
  padding: 40px 0;
  color: #ffffff;
  overflow: hidden;
}
@media only screen and (min-width: 1280px) {
  .a-text-block_work-balance {
    padding: 68px 0;
  }
}
.a-text-block_work-balance .a-text-block__tag {
  color: white;
}
.a-text-block_work-balance .a-container {
  position: relative;
  z-index: 2;
}
.a-text-block_work-balance .a-circle-decor {
  opacity: 0.2;
  z-index: 1;
  left: -270px;
  bottom: -270px;
}
.a-text-block__tag {
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 12px;
}
.a-text-block__tag_eggshell {
  background: #ffffff;
}
.a-text-block__tag_beaublue {
  background: #0d364a;
  color: white;
}
.a-text-block__columns {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 1280px) {
  .a-text-block__columns {
    flex-direction: row;
    align-items: center;
  }
}
@media only screen and (min-width: 1280px) {
  .a-text-block_image-left .a-text-block__columns {
    flex-direction: row-reverse;
  }
}
.a-text-block__subtitle {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 160%;
}
.a-text-block__subtitle + * {
  margin-top: 24px;
}
.a-text-block__desc {
  font-weight: 400;
  font-size: 1rem;
  line-height: 180%;
}
.a-text-block__desc p + p {
  margin-top: 24px;
}
.a-text-block__footer {
  font-weight: 500;
  font-size: 1.25rem;
  line-height: 160%;
  margin-top: 24px;
}
.a-text-block__text {
  flex: 1;
}
.a-text-block__img {
  width: calc(100% + 40px);
  margin: 36px -20px 0;
  border-radius: 16px;
}
@media only screen and (min-width: 768px) {
  .a-text-block__img {
    width: 100%;
    margin: 32px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-text-block__img {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media only screen and (min-width: 1280px) {
  .a-text-block_image-right .a-text-block__img {
    margin: 0 0 0 58px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-text-block_image-left .a-text-block__img {
    margin: 0 58px 0 0;
  }
}
.a-text-block h2.a-title + * {
  margin-top: 24px;
}

/** text block **/
.a-favourite-button {
  display: flex;
  align-items: center;
}
.a-favourite-button > * {
  pointer-events: none;
}
.a-favourite-button__number {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #003249;
  margin-left: 4px;
  pointer-events: none;
}

/** header **/
.a-header {
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 0;
  height: 96px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s;
  border-radius: 0 0 10px 10px;
}
.a-header_fixed {
  box-shadow: 0 -2px 10px rgba(29, 29, 27, 0.1);
}
@media only screen and (min-width: 768px) {
  .a-header {
    border-radius: 0 0 30px 30px;
  }
}
.a-header .a-container {
  display: flex;
  align-items: center;
}
.a-header__link {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: transparent;
  transition: text-decoration 0.3s;
}
.a-header__link:hover {
  text-decoration-color: #1d1d1b;
}
.a-header__favourite-block {
  transition: opacity 0.3s;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: 16px;
}
@media only screen and (min-width: 1280px) {
  .a-header__favourite-block {
    margin-left: 0;
  }
}
.a-header__favourite-block[data-visible=true] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.a-header__favourite-block[data-visible=false] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.a-header__favourite-block .a-header__delimiter {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-header__favourite-block .a-header__delimiter {
    display: flex;
  }
}
.a-header__menu {
  align-items: center;
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-header__menu {
    display: flex;
    margin-left: 104px;
  }
}
.a-header__delimiter {
  height: 18px;
  margin: 0 16px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.a-header__delimiter-line {
  width: 2px;
  height: 14px;
  background: #0d364a;
  transform: skewX(-22deg);
}
.a-header__phone {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.03em;
  color: #003249;
}
.a-header__phone:hover {
  text-decoration-color: #003249;
}
@media only screen and (min-width: 1280px) {
  .a-header__phone {
    margin-left: auto;
  }
}
.a-header__phone_desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-header__phone_desktop {
    display: block;
  }
}
.a-header__phone_mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .a-header__phone_mobile {
    display: none;
  }
}
.a-header__messengers {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-header__messengers {
    display: flex;
    align-items: center;
    margin: 0 0 0 22px;
  }
}
.a-header__messenger {
  flex: 0 0 24px;
  max-width: 24px;
}
.a-header__messenger + .a-header__messenger {
  margin: 0 0 0 16px;
}
.a-header__messenger:hover {
  opacity: 0.5;
}
.a-header__callback.a-button {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-header__callback.a-button {
    display: block;
    min-width: 214px;
    margin-left: 32px;
    min-height: 40px;
    font-size: 0.875rem;
  }
}

/** header **/
/** head **/
h1.a-title {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 4.625rem;
  line-height: 124%;
  letter-spacing: 0.09em;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  h1.a-title {
    font-size: 6.5625rem;
    line-height: 124%;
    letter-spacing: 0.09em;
  }
}

.a-head {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  min-height: 600px;
  padding: 96px 0 30px;
}
@media only screen and (min-width: 1280px) {
  .a-head {
    min-height: 750px;
  }
}
.a-head__bg {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translateX(-50%);
  object-fit: cover;
  z-index: 0;
  transition: opacity 0.8s ease-in-out;
}
.a-head__bg.a-hidden {
  opacity: 0;
}
.a-head__bg-video {
  z-index: 1;
}
.a-head__bg-image {
  z-index: 1;
}
.a-head .a-container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}
@media only screen and (min-width: 768px) {
  .a-head .a-container {
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
  }
}
.a-head__text {
  background: #003249;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  border-radius: 50%;
  flex: 0 0 320px;
  max-height: 320px;
  width: 320px;
  border: solid 10px rgba(255, 255, 255, 0.8);
  opacity: 0.85;
}
@media only screen and (min-width: 768px) {
  .a-head__text {
    margin: 0;
    flex: 0 0 360px;
    max-height: none;
    height: 360px;
    max-width: 360px;
    width: auto;
    opacity: 0.95;
  }
}
@media only screen and (min-width: 1280px) {
  .a-head__text {
    flex: 0 0 493px;
    max-width: 493px;
    height: 493px;
    border: solid 19px rgba(255, 255, 255, 0.8);
  }
}
.a-head h1.a-title {
  background: url(../images/title-decor.svg) top center no-repeat;
  padding-top: 20px;
}
.a-head__subtitle {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-head__subtitle {
    display: block;
    font-weight: 600;
    font-size: 1.1875rem;
    line-height: 124%;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-top: -10px;
  }
}
.a-head__desc {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-head__desc {
    font-weight: 400;
    font-size: 1rem;
    line-height: 144%;
    margin-top: 20px;
    max-width: 344px;
    display: block;
  }
}
.a-head__desc:before {
  content: "";
  background: #0d364a;
  width: 64px;
  height: 3px;
  margin: 0 auto 16px;
  display: block;
}
.a-head__address {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin-top: 26px;
}
.a-head__pin {
  margin: 0 10px 0 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.a-head__arrow {
  margin-top: 30px;
}
.a-head__anchor {
  position: absolute;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  background: #ffffff;
  border: solid 6px rgba(0, 50, 73, 0.5);
  font-weight: 700;
  font-size: 0.9375rem;
  line-height: 140%;
  text-align: center;
  text-transform: uppercase;
  color: #003249;
  right: -55px;
  bottom: 40px;
  display: none;
  animation: border-color-animation 4s ease-in-out infinite;
}
@media only screen and (min-width: 1280px) {
  .a-head__anchor {
    display: block;
  }
}
.a-head__anchor:before, .a-head__anchor:after {
  position: absolute;
  width: 30px;
  height: 1px;
  background: #003249;
  content: "";
  left: 50%;
  transform: translateX(-50%);
}
.a-head__anchor:before {
  top: 24px;
}
.a-head__anchor:after {
  bottom: 24px;
}
.a-head__promo {
  color: #ffffff;
  overflow: hidden;
  transition: all 0.3s;
  font-weight: 600;
  font-size: 1rem;
  line-height: 140%;
  letter-spacing: 0.01em;
  align-self: flex-end;
  background: rgba(0, 50, 73, 0.9);
  border-radius: 0 0 8px 8px;
  padding: 14px 24px;
}
@media only screen and (min-width: 768px) {
  .a-head__promo {
    border-radius: 8px;
  }
}
.a-head__promo-animate {
  display: flex;
  transition: all 0.5s;
}
.a-head__promo-animate.a-moving {
  transform: translateY(-200%);
}
.a-head__promo_desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-head__promo_desktop {
    opacity: 0.9;
    display: block;
  }
}
.a-head__promo_mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .a-head__promo_mobile {
    display: none;
    padding: 12px 18px 12px 16px;
  }
}
@media only screen and (min-width: 768px) {
  .a-head__promo {
    flex: 0 0 360px;
    max-width: 360px;
  }
}
.a-head__promo-text {
  margin: 0 0 0 10px;
}

/** head **/
/** features **/
.a-features {
  margin: 48px 0 0 0;
  position: relative;
}
@media only screen and (min-width: 1280px) {
  .a-features {
    margin: 80px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-features_one-line {
    margin: 56px 0 0 0;
  }
}
.a-features .a-container {
  position: relative;
  z-index: 2;
}
.a-features__list {
  margin: -48px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-features__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -48px 0 0 -60px;
  }
  .a-features_one-line .a-features__list {
    margin: -48px 0 0 -90px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-features__list {
    margin: -80px 0 0 -100px;
  }
  .a-features_one-line .a-features__list {
    margin: 0 0 0 -90px;
    flex-wrap: nowrap;
  }
}
.a-features__feature {
  width: 300px;
  text-align: center;
  margin: 48px auto 0;
}
@media only screen and (min-width: 768px) {
  .a-features__feature {
    flex: 0 0 300px;
    max-width: 300px;
    width: auto;
    margin: 48px 0 0 60px;
  }
  .a-features_one-line .a-features__feature {
    flex: 0 0 228px;
    max-width: 228px;
    margin: 48px 0 0 90px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-features__feature {
    margin: 80px 0 0 100px;
  }
  .a-features_one-line .a-features__feature {
    margin: 0 0 0 90px;
  }
}
.a-features__feature:nth-child(even) .a-features__icon {
  border-color: #0d364a;
}
.a-features__icon {
  width: 134px;
  height: 134px;
  border-radius: 50%;
  background: #003249;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  background: #ffffff;
  border: solid 17px #ffffff;
}
.a-features__text {
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
  text-align: center;
  margin: 24px 0 0 0;
}
.a-features .a-circle-decor {
  top: 50%;
  left: -320px;
  transform: translateY(-50%);
}
@media only screen and (min-width: 1280px) {
  .a-features .a-circle-decor {
    top: auto;
    bottom: -92px;
    left: -320px;
    transform: none;
  }
}

/** features **/
.a-circle-decor {
  position: absolute;
  width: 552px;
  height: 552px;
  border-radius: 50%;
  border: solid 2px #dee7eb;
  z-index: 1;
}
.a-circle-decor:before, .a-circle-decor:after {
  position: absolute;
  left: 50%;
  top: 50%;
  content: "";
  transform: translate(-50%, -50%);
  border: solid 2px #dee7eb;
  border-radius: 50%;
}
.a-circle-decor:before {
  width: 356px;
  height: 356px;
}
.a-circle-decor:after {
  width: 182px;
  height: 182px;
}

.a-tabs {
  display: flex;
  justify-content: center;
}
.a-tabs button {
  height: 44px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.06em;
  text-align: center;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 8px;
  color: #003249;
  cursor: pointer;
  position: relative;
  transition: all 0.3s;
  background-clip: padding-box;
}
.a-tabs button:hover, .a-tabs button_active, .a-tabs button[data-active=true] {
  text-decoration-color: transparent;
  border: solid 4px rgba(13, 54, 74, 0.5);
  border-radius: 28px;
  padding: 8px 16px;
}
.a-tabs button:hover {
  color: #003249;
  background-color: #0d364a;
}
.a-tabs button_active, .a-tabs button[data-active=true] {
  color: #ffffff;
  background-color: #003249;
}
.a-tabs button + button {
  margin-left: 40px;
}

/** popups **/
.a-overlay {
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s;
}

.a-popup {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: #ffffff;
  padding: 40px 36px;
  border-radius: 24px;
  width: 100%;
}
.a-popup__title {
  font-weight: 700;
  font-size: 2rem;
  line-height: 124%;
  text-transform: uppercase;
  margin: 0 0 24px 0;
}
.a-popup__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #003249;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 100;
}
.a-popup_callback {
  width: 460px;
}
.a-popup_plan {
  width: 100%;
  height: 100%;
  padding: 0;
  border-radius: 0;
}
.a-popup_favourite {
  width: 100%;
  overflow: auto;
  max-height: calc(100% - 40px);
  max-width: calc(100% - 40px);
}
@media only screen and (min-width: 768px) {
  .a-popup_favourite {
    max-width: 700px;
  }
}
.a-popup .a-button {
  margin-top: 32px;
  width: 100%;
}

/** popups **/
/** forms **/
.a-form {
  position: relative;
}
.a-form__row + .a-form__row {
  margin: 24px 0 0 0;
}
.a-form__form {
  position: relative;
}
.a-form__field {
  position: relative;
}
.a-form__label {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.375rem;
  font-family: Montserrat, serif;
  display: flex;
  color: #1d1d1b;
  margin: 0 0 10px 0;
}
.a-form__label_mandatory:after {
  content: "*";
  color: #003249;
  margin: 0 0 0 4px;
}
.a-form__input, .a-form__textarea {
  appearance: none;
  outline: none;
  margin: 0;
  padding: 0;
  color: #1d1d1b;
  font-weight: 400;
  font-size: 1rem;
  line-height: 160%;
  width: 100%;
  border: solid 1px #0d364a;
  border-radius: 8px;
  transition: border 0.3s;
}
.a-form__input:focus, .a-form__textarea:focus {
  border-color: #003249;
}
.a-form__input {
  height: 48px;
  padding: 0 16px;
}
.a-form__textarea {
  min-height: 112px;
  resize: vertical;
  padding: 8px;
}
.a-form__disclaimer {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 180%;
  margin: 20px 0 0 0;
}
.a-form__disclaimer a {
  color: #003249;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #003249;
}
.a-form__disclaimer a:hover {
  text-decoration-color: transparent;
}
.a-form__error {
  position: absolute;
  left: 0;
  bottom: -18px;
  color: #003249;
  font-size: 0.75rem;
}
.a-form__form {
  position: relative;
}
.a-form__message {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 0.875rem;
  line-height: 1.3125rem;
  letter-spacing: 0.0625rem;
  text-transform: uppercase;
  background: #ffffff;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.a-form__message[data-visible=true] {
  opacity: 1;
}
.a-form__checkbox-wrapper {
  display: flex;
  align-items: center;
  position: relative;
}
.a-form__checkbox-wrapper input[type=checkbox] {
  position: absolute;
  left: 4px;
  top: 6px;
  margin: 0;
  pointer-events: none;
  opacity: 0;
}
.a-form__checkbox-wrapper + .a-form__checkbox-wrapper {
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-form__checkbox-wrapper + .a-form__checkbox-wrapper {
    margin: 0 0 0 40px;
  }
}
.a-form__checkbox {
  width: 24px;
  height: 24px;
  border: solid 1px #0d364a;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  background: #ffffff;
}
.a-form__checkbox-label {
  font-weight: 500;
  font-size: 1rem;
  line-height: 160%;
  margin: 0 0 0 10px;
  cursor: pointer;
  user-select: none;
}
.a-form input:checked + .a-form__checkbox:before {
  position: absolute;
  width: 8px;
  height: 8px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content: "";
  background: #003249;
  border-radius: 1px;
}

/** forms **/
/** contacts **/
.a-contacts {
  margin: 40px 0 0 0;
}
.a-contacts h2.a-title,
.a-contacts .a-subtitle {
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .a-contacts {
    margin: 60px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-contacts {
    margin: 80px 0 0 0;
  }
}
.a-contacts__map {
  min-height: 452px;
  width: calc(100% + 40px);
  margin: 28px -20px 0;
  border-radius: 16px;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .a-contacts__map {
    width: 100%;
    margin: 40px 0 0 0;
  }
}

/** contacts **/
.a-button {
  transition: background-color 0.3s, color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  min-height: 48px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  text-transform: uppercase;
  padding: 0 24px;
}
.a-button_light {
  background: #0d364a;
  color: #ffffff;
}
.a-button_light:hover {
  background: #93b6c7;
}
.a-button_dark {
  background: #003249;
  color: #ffffff;
}
.a-button_dark:hover {
  background: #002130;
}

/** filter **/
.a-filter {
  margin: 36px 0 0 0;
  position: relative;
  overflow: hidden;
}
.a-filter .a-circle-decor {
  top: 0;
  right: -300px;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .a-filter {
    margin: 80px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-filter {
    margin: 80px 0 0 0;
  }
}
.a-filter .a-tabs {
  margin: 28px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-filter .a-tabs {
    margin-top: 44px;
  }
}
.a-filter h2.a-title {
  text-align: center;
}
.a-filter .a-subtitle {
  text-align: center;
}
.a-filter__not-found {
  text-align: center;
  margin: 40px 0;
  font-size: 2.25rem;
  line-height: 2.625rem;
  text-transform: uppercase;
}
.a-filter__form {
  margin: 20px -20px 0;
  padding: 28px 24px;
  background: #dee7eb;
  border-radius: 16px;
}
@media only screen and (min-width: 768px) {
  .a-filter__form {
    margin: 44px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-filter__form {
    display: flex;
  }
}
@media only screen and (min-width: 1280px) {
  .a-filter .a-form {
    display: flex;
  }
}
.a-filter__row {
  display: flex;
  flex-wrap: wrap;
}
.a-filter__row + .a-filter__row {
  margin: 20px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-filter__row {
    flex: 1;
  }
}
.a-filter__label,
.a-filter label {
  font-weight: 500;
  font-size: 1rem;
  line-height: 160%;
  margin: 0 0 8px 0;
}
.a-filter label {
  margin: 0 0 0 8px;
}
.a-filter__block {
  flex: 0 0 100%;
  max-width: 100%;
}
@media only screen and (min-width: 768px) {
  .a-filter__block {
    flex: 1;
  }
}
.a-filter__block + .a-filter__block {
  margin: 28px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-filter__block + .a-filter__block {
    margin: 0 0 0 24px;
  }
}
.a-filter__block:last-child {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 24px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-filter__block:last-child {
    display: flex;
    flex-wrap: wrap;
    margin: 24px 0 0 -24px;
  }
}
@media only screen and (min-width: 768px) {
  .a-filter__block:last-child .a-form__checkbox-wrapper {
    margin: 12px 0 0 20px;
    white-space: nowrap;
  }
}
.a-filter__inputs {
  display: flex;
}
.a-filter__buttons {
  margin: 32px 0 0 0;
  text-align: center;
}
.a-filter__buttons .a-filter__label {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-filter__buttons .a-filter__label {
    display: block;
  }
}
@media only screen and (min-width: 1280px) {
  .a-filter__buttons {
    margin: 0 0 0 24px;
    flex: 0 0 284px;
    max-width: 284px;
  }
}
.a-filter .a-button {
  width: 100%;
  height: 48px;
  font-size: 1rem;
}
.a-filter__clear {
  font-weight: 500;
  font-size: 1rem;
  line-height: 160%;
  text-align: center;
  display: inline;
  margin: 16px 0 0 0;
}
.a-filter__clear:after {
  width: 100%;
  height: 2px;
  content: "";
  display: block;
  background: url(../images/dashes.svg) left bottom repeat-x;
  transition: all 0.3s;
  margin: 2px 0 0 0;
}
.a-filter__clear:hover:after {
  opacity: 0;
}
.a-filter__range {
  margin: 30px 0 0 10px;
  width: calc(100% - 20px);
}
.a-filter__range.noUi-target {
  box-shadow: none;
  border: none;
  background: #0d364a;
}
.a-filter__range.noUi-horizontal {
  height: 2px;
}
.a-filter__range.noUi-horizontal .noUi-handle {
  top: -9px;
}
.a-filter__range .noUi-connect {
  background: #003249;
}
.a-filter__range .noUi-handle {
  width: 20px;
  height: 20px;
  border: 2px solid #003249;
  background: #ffffff;
  box-shadow: none;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s;
  right: -10px;
}
.a-filter__range .noUi-handle:before, .a-filter__range .noUi-handle:after {
  display: none;
}
.a-filter .a-form__input {
  flex: 1;
  margin: 0 0 0 12px;
}
.a-filter .a-form__input:first-child {
  margin: 0;
}
.a-filter__cards {
  margin: 0 auto;
  max-width: 360px;
}
@media only screen and (min-width: 768px) {
  .a-filter__cards {
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    margin: -8px 0 0 -24px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-filter__cards {
    margin: -12px 0 0 -40px;
  }
}
.a-filter__more {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 24px auto 0;
}
@media only screen and (min-width: 768px) {
  .a-filter__more {
    max-width: none;
  }
}
@media only screen and (min-width: 1280px) {
  .a-filter__more {
    margin: 40px 0 0 0;
  }
}

.a-filter-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 24px 0 0 0;
  background: rgba(222, 231, 235, 0.5);
  border-radius: 24px;
}
@media only screen and (min-width: 768px) {
  .a-filter-card {
    margin: 24px 0 0 24px;
    flex: auto;
    width: calc(50% - 24px);
    max-width: calc(50% - 24px);
  }
}
@media only screen and (min-width: 1280px) {
  .a-filter-card {
    margin: 40px 0 0 40px;
    width: calc(33.3333333333% - 40px);
    max-width: calc(33.3333333333% - 40px);
  }
}
.a-filter-card__sale {
  flex: 0 0 32px;
  max-width: 32px;
  height: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #3999c8;
}
.a-filter-card__tools {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.a-filter-card__favourite {
  margin: 0 0 0 8px;
  flex: 0 0 32px;
  max-width: 32px;
  height: 32px;
  border-radius: 50%;
  stroke: #003249;
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.a-filter-card__favourite svg {
  pointer-events: none;
}
.a-filter-card__favourite svg path {
  fill: transparent;
  transition: fill 0.3s;
}
.a-filter-card__favourite[data-active=true] svg path {
  fill: #003249;
}
.a-filter-card__block {
  padding: 48px 24px;
}
.a-filter-card__block:first-child {
  padding-bottom: 20px;
  border-bottom: solid 1px #dee7eb;
}
.a-filter-card__block:last-child {
  padding-top: 20px;
  text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.a-filter-card__img {
  max-width: 100%;
  width: 100%;
  display: block;
  position: relative;
  z-index: 1;
}
.a-filter-card__image {
  position: relative;
  margin: 18px 0 0 0;
  width: 100%;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
}
.a-filter-card__image:after {
  position: absolute;
  content: "";
}
.a-filter-card__image:after {
  background: url(../images/icon-zoom.svg) center center no-repeat, #ffffff;
  right: 8px;
  bottom: 8px;
  z-index: 3;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}
.a-filter-card__image_no-image {
  cursor: default;
}
.a-filter-card__image_no-image:before, .a-filter-card__image_no-image:after {
  display: none;
}
.a-filter-card__title {
  font-weight: 600;
  font-size: 1.3125rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.a-filter-card__title-number {
  font-weight: 700;
  color: #003249;
}
.a-filter-card__title-delim {
  color: #0d364a;
  margin: 0 6px;
  font-weight: 600;
}
.a-filter-card__title-floor {
  font-weight: 400;
  color: #003249;
}
.a-filter-card__info {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  margin: 4px 0 0 0;
}
.a-filter-card__features {
  margin: 20px 0 0 0;
}
.a-filter-card__feature {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 200%;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.01em;
}
.a-filter-card__feature span {
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 200%;
  color: #003249;
}
.a-filter-card__feature + .a-filter-card__feature {
  margin: 4px 0 0 0;
}
.a-filter-card__price-title {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  text-align: center;
}
.a-filter-card__old-price {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  margin: 0 0 0 6px;
  color: #003249;
}
.a-filter-card__old-price span {
  text-decoration: line-through;
}
.a-filter-card__price {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 160%;
  margin-bottom: 16px;
  text-align: center;
}
.a-filter-card__price-label {
  margin: -20px 0 12px;
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-align: center;
}

/** filter **/
/** plan **/
.a-plan {
  display: flex;
  height: 100%;
  width: 100%;
  overflow: scroll;
}
@media only screen and (min-width: 1280px) {
  .a-plan {
    overflow: hidden;
  }
}
.a-plan .a-floors {
  padding: 0 24px;
  flex: 0 0 150px;
  max-width: 150px;
  border: solid 1px #dee7eb;
}
.a-plan .a-floors__floor[data-exists=false] {
  pointer-events: none;
  opacity: 0.3;
}
.a-plan .a-floors__floor + .a-floors__floor {
  margin-top: 16px;
}
.a-plan__favourite {
  position: absolute;
  width: 38px;
  height: 34px;
  top: 8px;
  right: -54px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.a-plan__favourite svg {
  display: block;
  pointer-events: none;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.a-plan__favourite svg path {
  stroke: transparent;
  fill: #003249;
}
.a-plan__favourite-number {
  font-family: Montserrat, serif;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25rem;
  letter-spacing: 0.01em;
  text-align: center;
  color: #ffffff;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.a-plan__favourite[data-visible=false] {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.a-plan__info {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.a-plan__title-wrap {
  flex: 0 0 264px;
  max-width: 264px;
}
.a-plan__title {
  font-weight: 700;
  font-size: 2.25rem;
  line-height: 124%;
  text-transform: uppercase;
}
.a-plan__header {
  padding: 32px 92px 0 36px;
  display: flex;
  align-items: center;
}
.a-plan .a-tabs {
  justify-content: center;
  width: 100%;
}
.a-plan__header-group {
  margin: 0 auto 0 144px;
  position: relative;
  display: flex;
  align-items: center;
}
.a-plan .a-favourite-button {
  margin-left: 40px;
}
.a-plan__phone {
  font-weight: 600;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.06em;
  margin: 0 0 8px 0;
}
.a-plan__statuses {
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 160%;
  margin: 4px 0 0 0;
}
.a-plan__status {
  position: relative;
  padding: 0 0 0 20px;
}
.a-plan__status + .a-plan__status {
  margin: 0 0 0 16px;
}
.a-plan__status:before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.a-plan__status_free:before {
  background: #c0fad6;
}
.a-plan__status_occupied:before {
  background: #ffb6b9;
}
.a-plan__status_booked:before {
  background: #fae6cb;
}
.a-plan__footer-fade {
  display: flex;
  align-items: flex-start;
  margin: auto 0 0 0;
  min-height: 134px;
  padding: 0 24px 0 0;
  background: #dee7eb;
}
.a-plan__lot-info-left {
  background: #003249;
  padding: 12px 16px 16px 16px;
  color: #ffffff;
  flex: 0 0 242px;
  max-width: 242px;
  align-self: stretch;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.a-plan__lot-info-right {
  display: flex;
  align-self: stretch;
  flex: 1;
}
.a-plan__lot-type {
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 130%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.a-plan__lot-number {
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 100%;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.a-plan__lot-favourite {
  height: 28px;
  width: 28px;
  display: block;
  margin-left: 16px;
}
.a-plan__lot-favourite svg {
  pointer-events: none;
  transition: all 0.3s;
}
.a-plan__lot-favourite[data-active=false] svg path {
  fill: transparent;
  stroke: #003249;
}
.a-plan__lot-favourite[data-active=true] svg path {
  fill: #003249;
  stroke: transparent;
}
.a-plan__lot-pictures {
  border: 1px solid white;
  min-height: 36px;
  width: 100%;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 100%;
  text-transform: uppercase;
  padding: 10px 16px;
}
.a-plan__lot-pictures-text {
  margin: 0 0 0 6px;
}
.a-plan__lot-pictures_hidden {
  opacity: 0;
  pointer-events: none;
}
.a-popup .a-plan__lot-pictures {
  margin-top: 10px;
}
.a-plan__features {
  padding: 20px 30px 26px 40px;
  flex: 1;
  max-width: 510px;
}
.a-plan__feature-list {
  display: flex;
}
.a-plan__feature {
  font-size: 0.875rem;
  line-height: 160%;
}
.a-plan__feature + .a-plan__feature {
  margin: 0 0 0 68px;
}
.a-plan__feature-label {
  font-weight: 500;
}
.a-plan__feature-value {
  margin: 4px 0 0 0;
  font-weight: 600;
}
.a-plan__description {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  margin: 18px 0 0 0;
}
.a-plan__price {
  padding: 20px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
}
.a-plan__meter-price {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
}
.a-plan__current-price {
  font-weight: 600;
  font-size: 1.625rem;
  line-height: 160%;
}
.a-plan__current-price-label {
  font-size: 0.875rem;
  line-height: 1.25rem;
  margin: -8px 0 0 0;
}
.a-plan__old-price {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  color: #003249;
}
.a-plan__order {
  width: 100%;
}
.a-plan__order_hidden {
  opacity: 0;
  pointer-events: none;
}
.a-plan__right-buttons {
  padding: 26px 0 26px 0;
  display: flex;
  align-items: center;
  margin-right: 64px;
}
.a-plan__right-buttons .a-button {
  max-width: 222px;
}
.a-popup .a-plan__right-buttons .a-button {
  margin: 0;
}
.a-plan__schema {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  transition: opacity 0.3s;
  width: 1152px;
  margin: 0 40px;
}
@media only screen and (min-width: 1280px) {
  .a-plan__schema {
    width: 96%;
    margin: 0 auto;
  }
}
.a-plan__schema_hidden {
  opacity: 0;
}
.a-plan__schema-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: 0 auto;
  pointer-events: none;
  position: relative;
  z-index: 1;
}
.a-plan__schema-lots {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 100%;
  height: 100%;
}
.a-plan__schema-lots svg {
  width: 100%;
  height: 100%;
}

.a-lot {
  cursor: pointer;
  fill-opacity: 0.5;
  transition: fill-opacity 0.3s;
}
.a-lot_booked {
  fill: #fae6cb;
}
.a-lot_occupied {
  fill: #ffb6b9;
}
.a-lot_free {
  fill: #c0fad6;
}
.a-lot:hover, .a-lot[data-active=true] {
  fill-opacity: 1;
}

/** plan **/
@keyframes blink-animation {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/** building **/
.a-building {
  margin: 60px 0 40px;
}
@media only screen and (min-width: 768px) {
  .a-building {
    margin: 80px 0 60px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-building {
    margin: 100px 0 80px;
  }
}
.a-building h2.a-title {
  text-align: center;
}
.a-building .a-subtitle {
  text-align: center;
  margin-top: 20px;
}
.a-building .a-subtitle_desktop {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-building .a-subtitle_desktop {
    display: block;
  }
}
.a-building .a-subtitle_mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .a-building .a-subtitle_mobile {
    display: none;
  }
}
.a-building__arrow {
  margin: 16px auto 36px;
  display: block;
}
@media only screen and (min-width: 1280px) {
  .a-building__arrow {
    margin: 28px auto 36px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-building__group {
    display: flex;
    align-items: center;
  }
}
.a-building__levels {
  flex: 1;
  position: relative;
}
.a-building__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.a-building__overlay > g {
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s;
}
.a-building__overlay > g:hover, .a-building__overlay > g[data-active=true] {
  opacity: 1;
}
.a-building__overlay_mobile {
  display: block;
  cursor: pointer;
  animation: blink-animation 3s infinite;
}
@media (pointer: coarse) {
  .a-building__overlay_mobile {
    display: block;
  }
}
@media only screen and (min-width: 768px) {
  .a-building__overlay_mobile {
    display: none;
  }
}
.a-building__info {
  position: absolute;
  z-index: 2;
  min-width: 270px;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 16px;
}
.a-building__info-head {
  display: none;
}
.a-building__info-features {
  font-weight: 500;
  font-size: 1rem;
  line-height: 120%;
}
.a-building__info-feature {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #dee7eb;
  padding: 8px 0;
}
.a-building__info-feature:first-child {
  padding-top: 0;
}
.a-building__info-feature:last-child {
  padding-bottom: 0;
  border: none;
  margin-left: auto;
}
.a-building__info-feature span:first-child {
  max-width: 210px;
  flex: 1;
  margin-right: 16px;
}
.a-building__info-feature span:last-child {
  font-weight: 600;
  color: #003249;
}
.a-building__image {
  width: 100%;
  pointer-events: none;
  display: block;
  border-radius: 16px;
}
.a-building .a-floors {
  flex-direction: row;
  margin: 16px 0 0 0;
  justify-content: space-between;
  overflow: scroll;
  white-space: nowrap;
}
@media only screen and (min-width: 768px) {
  .a-building .a-floors {
    overflow: hidden;
  }
}
@media only screen and (min-width: 1280px) {
  .a-building .a-floors {
    justify-content: center;
    flex-direction: column;
    margin: 0 0 0 24px;
    max-width: 112px;
    width: 112px;
  }
}
.a-building .a-floors__floor + .a-floors__floor {
  margin: 0 0 0 16px;
}
@media only screen and (min-width: 768px) {
  .a-building .a-floors__floor + .a-floors__floor {
    margin: 16px 0 0 0;
  }
}
.a-building .a-floors__floor-decor {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-building .a-floors__floor-decor {
    display: block;
  }
}

/** building **/
/** floors **/
.a-floors {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  text-align: center;
}
.a-floors__floor {
  font-weight: 500;
  font-size: 1rem;
  line-height: 100%;
  letter-spacing: 0.03em;
  text-align: center;
  padding: 8px 16px;
  transition: all 0.3s;
  width: 100%;
  border-radius: 28px;
  position: relative;
  background-clip: padding-box;
  white-space: nowrap;
  border: solid 4px transparent;
}
.a-floors__floor[data-active=true] {
  color: #ffffff;
  font-weight: 600;
  border-color: rgba(13, 54, 74, 0.5);
  background-color: #003249;
}
@media (hover: hover) {
  .a-floors__floor:hover {
    color: white;
    font-weight: 600;
    border-color: rgba(13, 54, 74, 0.5);
    background-color: #0d364a;
  }
}

/** floors **/
.a-slider {
  margin: 48px 0 8px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 768px) {
  .a-slider {
    margin: 48px auto;
  }
}
@media only screen and (min-width: 1280px) {
  .a-slider {
    margin: 80px auto;
  }
}
.a-slider img {
  display: block;
  max-height: 20vh;
  border-radius: 16px;
}
@media only screen and (min-width: 768px) {
  .a-slider img {
    max-height: 30vh;
  }
}
@media only screen and (min-width: 1280px) {
  .a-slider img {
    max-height: 48vh;
  }
}
.a-slider .a-arrow-button {
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-slider .a-arrow-button {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: #003249;
    z-index: 4;
    border-radius: 50%;
  }
}
@media only screen and (min-width: 768px) {
  .a-slider .a-arrow-button_prev {
    left: 20px;
  }
}
.a-slider .a-arrow-button_prev svg {
  transform: scaleX(-1);
}
@media only screen and (min-width: 768px) {
  .a-slider .a-arrow-button_next {
    right: 20px;
  }
}

.tns-autowidth {
  display: block !important;
}

.a-feedback {
  margin: 40px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-feedback {
    margin: 48px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-feedback {
    margin: 80px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-feedback .a-container {
    display: flex;
  }
}
.a-feedback__image {
  display: none;
}
@media only screen and (min-width: 1280px) {
  .a-feedback__image {
    display: block;
    flex: 0 0 49%;
    max-width: 49%;
    margin: 0 48px 0 0;
    border-radius: 16px;
  }
}
.a-feedback__title {
  font-size: 1.75rem;
  line-height: 2.125rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #000000;
  font-family: Montserrat, serif;
}
@media only screen and (min-width: 768px) {
  .a-feedback__title {
    font-size: 3rem;
    line-height: 3.625rem;
  }
}
.a-feedback__subtitle {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6875rem;
  font-family: Montserrat, serif;
  color: #000000;
  margin: 16px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-feedback__subtitle {
    font-size: 1.25rem;
    line-height: 2.125rem;
    margin: 20px 0 0 0;
  }
}
.a-feedback .a-form {
  width: 100%;
  max-width: 728px;
  margin: 0 auto;
}
@media only screen and (min-width: 1280px) {
  .a-feedback .a-form {
    max-width: 100%;
  }
}
.a-feedback .a-form__input, .a-feedback .a-form__textarea {
  background: #ffffff;
}
.a-feedback .a-form__disclaimer {
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-feedback .a-form__disclaimer {
    text-align: left;
  }
}
.a-feedback .a-form__form {
  margin: 28px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-feedback .a-form__form {
    margin: 32px 0 0 0;
  }
}
@media only screen and (min-width: 1280px) {
  .a-feedback .a-form__form {
    margin: 20px 0 0 0;
  }
}
.a-feedback .a-button {
  min-width: 254px;
  margin: 32px auto 0;
}
@media only screen and (min-width: 768px) {
  .a-feedback .a-button {
    margin: 32px 0 0 0;
  }
}

@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  4.9% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 0;
  }
  5% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0;
    left: 0;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.a-loader {
  display: block;
  width: 80px;
  height: 80px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.a-loader__part {
  position: absolute;
  border: 4px solid #003249;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.a-loader__part:nth-child(2) {
  animation-delay: -0.5s;
}

div[data-loader=true] {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}
div[data-loader=true][data-visible=true] {
  opacity: 1;
  pointer-events: auto;
}

.a-secret-1 {
  display: none !important;
}

.a-secret-2 {
  position: absolute;
  left: -10000px;
  top: -10000px;
}

.a-footer {
  margin: 44px 0 0 0;
  text-align: center;
}
@media only screen and (min-width: 1280px) {
  .a-footer {
    text-align: left;
  }
}
.a-footer .a-container {
  padding: 0;
}
@media only screen and (min-width: 768px) {
  .a-footer .a-container {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer .a-container {
    padding: 0 44px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer__block:first-child {
    padding: 28px 0 16px;
    border-top: solid 1px #dee7eb;
  }
}
.a-footer__block:last-child {
  padding: 18px 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__block:last-child {
    border-top: solid 1px #dee7eb;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer__block {
    display: flex;
  }
}
.a-footer__contacts {
  padding: 32px 20px 28px;
  border-top: solid 1px #dee7eb;
}
@media only screen and (min-width: 1280px) {
  .a-footer__contacts {
    padding: 0;
    border: none;
    flex: 1;
    max-width: 250px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer__feedback {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
.a-footer__phone {
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 160%;
  text-transform: uppercase;
  white-space: nowrap;
}
.a-footer__phone:hover {
  color: #003249;
}
.a-footer__messengers {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 16px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__messengers {
    margin: 0 0 0 16px;
  }
}
.a-footer__messenger {
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.a-footer__messenger:hover {
  opacity: 0.5;
}
.a-footer__messenger + .a-footer__messenger {
  margin: 0 0 0 14px;
}
.a-footer__email {
  color: #003249;
  margin: 4px 0 0 0;
  display: inline-block;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: #003249;
  flex: 0 0 100%;
  max-width: fit-content;
}
.a-footer__email:hover {
  text-decoration-color: transparent;
}
@media only screen and (min-width: 1280px) {
  .a-footer__email {
    max-width: 100%;
  }
}
.a-footer__address {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  margin: 14px 0 0 0;
  white-space: nowrap;
  position: relative;
  display: inline-block;
}
@media only screen and (min-width: 768px) {
  .a-footer__address {
    padding: 0 0 0 42px;
  }
}
@media only screen and (min-width: 1280px) {
  .a-footer__address {
    margin: 18px 0 0 0;
  }
}
.a-footer__pin {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-footer__pin {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #93b6c7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.a-footer__projects {
  border: solid #dee7eb;
  border-width: 1px 0;
  padding: 20px 0 28px;
}
@media only screen and (min-width: 1280px) {
  .a-footer__projects {
    border: none;
    padding: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-around;
    margin: 0 0 0 70px;
    flex: 1;
  }
}
.a-footer__project-title {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 180%;
}
.a-footer__logos {
  margin: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.a-footer__project + .a-footer__project {
  margin: 28px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__project + .a-footer__project {
    margin: 0;
  }
}
.a-footer__logo + .a-footer__logo {
  margin: 0 0 0 32px;
}
.a-footer__copy {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 180%;
  white-space: nowrap;
}
.a-footer__policy {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 180%;
  margin: 16px 0 0 0;
  display: inline-block;
  color: #003249;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #003249;
}
.a-footer__policy:hover {
  text-decoration-color: transparent;
}
@media only screen and (min-width: 1280px) {
  .a-footer__policy {
    margin: 0 0 0 64px;
  }
}
.a-footer__delimiter {
  color: #0d364a;
}
.a-footer__offer {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 180%;
  margin: 16px 0 0 0;
}
@media only screen and (min-width: 1280px) {
  .a-footer__offer {
    margin: 0 0 0 64px;
  }
}
.a-footer__dev {
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 180%;
  margin: 24px 0 0 0;
  display: inline-block;
}
.a-footer__dev:hover {
  color: #003249;
}
@media only screen and (min-width: 1280px) {
  .a-footer__dev {
    margin: 0 0 0 auto;
  }
}

.a-popup_order {
  max-width: calc(100% - 40px);
}
.a-popup_order .a-title {
  margin: 0;
}
.a-popup_order .a-title_success {
  display: none;
}
@media only screen and (min-width: 768px) {
  .a-popup_order {
    max-width: 460px;
  }
}

.a-order-header {
  display: flex;
  position: relative;
  margin: 24px -36px 28px;
  padding: 16px 36px;
  background: #dee7eb;
}
.a-order-header__block:first-child {
  padding-right: 24px;
  flex: 0 0 204px;
  max-width: 204px;
  position: relative;
}
.a-order-header__block:first-child:after {
  position: absolute;
  width: 1px;
  height: calc(100% + 32px);
  content: "";
  top: -16px;
  right: 0;
  transform: translateX(-50%);
  background: #0d364a;
}
.a-order-header__block:last-child {
  padding-left: 24px;
}
.a-order-header__name {
  font-weight: 700;
  font-size: 1.375rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: #000000;
}
.a-order-header__type {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 140%;
  margin: 2px 0 0 0;
}
.a-order-header__meter-price, .a-order-header__rent-title {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
}
.a-order-header__old-price {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 160%;
}
.a-order-header__old-price span {
  text-decoration: line-through;
}
.a-order-header__price {
  font-weight: 600;
  font-size: 1.375rem;
  line-height: 160%;
}

.a-none {
  display: none;
}

.a-hidden {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.a-transition {
  pointer-events: auto;
  transition: opacity 0.5s;
}

.a-visibility-button {
  position: absolute;
  z-index: 2000;
  left: 0px;
  top: 0px;
  font-size: 1rem;
  line-height: 1.25rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-skip-ink: none;
  transition: text-decoration 0.3s;
  width: 128px;
  padding: 8px;
}
.a-visibility-button:hover {
  text-decoration-color: transparent;
}

svg *[data-exists=false] {
  pointer-events: none;
}

.a-favourite-list {
  margin: 60px 0 0 0;
}
.a-favourite-list__item {
  padding: 16px 80px 16px 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .a-favourite-list__item {
    display: flex;
  }
}
.a-favourite-list__item:after {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  content: "";
  background: #000000;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .a-favourite-list__item:after {
    width: calc(100% - 80px);
  }
}
.a-favourite-list__number {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8125rem;
}
.a-favourite-list__type {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 0.875rem;
  letter-spacing: 0.01em;
}
.a-favourite-list__type-type {
  display: inline-block;
  margin: 0 8px 0 0;
}
.a-favourite-list__type-saletype {
  color: white;
  display: inline-block;
  background: #0d364a;
  padding: 2px 6px;
  margin: 4px 0 0 0;
}
@media only screen and (min-width: 768px) {
  .a-favourite-list__type-saletype {
    margin: 0;
  }
}
.a-favourite-list__price {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2.375rem;
  margin: 0 0 0 auto;
}
.a-favourite-list__currency {
  font-weight: 600;
  color: #003249;
  display: inline-block;
  margin: 0 0 0 4px;
}
.a-favourite-list__favourite {
  position: absolute;
  width: 28px;
  height: 24px;
  display: block;
  right: 0;
  top: 24px;
}
.a-favourite-list__favourite svg {
  pointer-events: none;
  color: #003249;
}

.a-data-overlay {
  background: rgba(0, 50, 73, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.a-data-loader-content {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.5rem;
  margin-bottom: 12px;
}