@charset "UTF-8";
.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.carousel *,
.carousel *:before,
.carousel *:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}

.carousel__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.carousel__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: var(--carousel-slide-width, 60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
}

.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: currentColor;
  opacity: 0.25;
  -webkit-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}

.carousel__button {
  width: var(--carousel-button-width, 48px);
  height: var(--carousel-button-height, 48px);
  padding: 0;
  border: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color, currentColor);
  background: var(--carousel-button-bg, transparent);
  border-radius: var(--carousel-button-border-radius, 50%);
  -webkit-box-shadow: var(--carousel-button-shadow, none);
  box-shadow: var(--carousel-button-shadow, none);
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
.carousel__button.is-prev,
.carousel__button.is-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: 0.3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width, 50%);
  height: var(--carousel-button-svg-height, 50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none;
}

html.with-fancybox {
  scroll-behavior: auto;
}

body.compensate-for-scrollbar {
  overflow: hidden !important;
  -ms-touch-action: none;
  touch-action: none;
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px)
    env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--fancybox-color, #fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: none;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}
.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
.fancybox__container :focus {
  outline: none;
}
body:not(.is-using-mouse) .fancybox__container :focus {
  -webkit-box-shadow:
    0 0 0 1px #fff,
    0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
  box-shadow:
    0 0 0 1px #fff,
    0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;

  height: 100%;
  z-index: 10;
}
.fancybox__carousel.has-dots {
  margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}

.fancybox__track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 0;
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto;
}
@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}

.fancybox__content {
  margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
  padding: 36px;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  position: relative;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.fancybox__caption {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  visibility: visible;
  cursor: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
  visibility: hidden;
}

.fancybox__container > .carousel__dots {
  top: 100%;
  color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top, 0px) + 8px);
  right: calc(env(safe-area-inset-right, 0px) + 8px);
  z-index: 40;
}
@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}

.fancybox__content > .carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color, #fff);
}

.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color, currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
  animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden="false"] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden="false"] .carousel__dots,
.fancybox__container.is-animated[aria-hidden="false"]
  .carousel__button.is-close {
  -webkit-animation: 0.15s ease backwards fancybox-fadeIn;
  animation: 0.15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .carousel__button.is-close {
  -webkit-animation: 0.15s ease both fancybox-fadeOut;
  animation: 0.15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
  -webkit-animation: 0.15s ease both fancybox-fadeIn;
  animation: 0.15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
  -webkit-animation: 0.1s ease both fancybox-fadeOut;
  animation: 0.1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
  -webkit-animation: 0.2s ease both fancybox-zoomInUp;
  animation: 0.2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
  -webkit-animation: 0.15s ease both fancybox-zoomOutDown;
  animation: 0.15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
  -webkit-animation: 0.15s ease both fancybox-throwOutUp;
  animation: 0.15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
  -webkit-animation: 0.15s ease both fancybox-throwOutDown;
  animation: 0.15s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
    transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
    transform: scale(0.97) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0);
    opacity: 0;
  }
}
@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0, 30%, 0);
    transform: translate3d(0, 30%, 0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__image {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: none;
  transition: none;
}

.has-image .fancybox__content {
  padding: 0;
  background: transparent;
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit="contain"] {
  overflow: visible;
  -ms-touch-action: none;
  touch-action: none;
}
.has-image[data-image-fit="contain"] .fancybox__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.has-image[data-image-fit="contain"] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.has-image[data-image-fit="contain-w"] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit="contain-w"] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit="contain-w"] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit="cover"] {
  overflow: visible;
  -ms-touch-action: none;
  touch-action: none;
}
.has-image[data-image-fit="cover"] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit="cover"] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  -webkit-flex-shrink: 1;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: transparent;
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.fancybox__thumbs {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity, 1);
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__thumbs {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width, 96px);
  margin: 0;
  padding: 8px 3px;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  opacity: 0;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: 0.92;
}
.fancybox__thumbs .carousel__slide > * {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__thumb {
  position: relative;
  width: 100%;

  padding-top: calc(100% / (var(--fancybox-thumbs-ratio, 1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255, 255, 255, 0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(hsla(0, 0%, 0%, 0)),
    color-stop(8.1%, hsla(0, 0%, 0%, 0.006)),
    color-stop(15.5%, hsla(0, 0%, 0%, 0.021)),
    color-stop(22.5%, hsla(0, 0%, 0%, 0.046)),
    color-stop(29%, hsla(0, 0%, 0%, 0.077)),
    color-stop(35.3%, hsla(0, 0%, 0%, 0.114)),
    color-stop(41.2%, hsla(0, 0%, 0%, 0.155)),
    color-stop(47.1%, hsla(0, 0%, 0%, 0.198)),
    color-stop(52.9%, hsla(0, 0%, 0%, 0.242)),
    color-stop(58.8%, hsla(0, 0%, 0%, 0.285)),
    color-stop(64.7%, hsla(0, 0%, 0%, 0.326)),
    color-stop(71%, hsla(0, 0%, 0%, 0.363)),
    color-stop(77.5%, hsla(0, 0%, 0%, 0.394)),
    color-stop(84.5%, hsla(0, 0%, 0%, 0.419)),
    color-stop(91.9%, hsla(0, 0%, 0%, 0.434)),
    to(hsla(0, 0%, 0%, 0.44))
  );
  background: linear-gradient(
    to top,
    hsla(0, 0%, 0%, 0) 0%,
    hsla(0, 0%, 0%, 0.006) 8.1%,
    hsla(0, 0%, 0%, 0.021) 15.5%,
    hsla(0, 0%, 0%, 0.046) 22.5%,
    hsla(0, 0%, 0%, 0.077) 29%,
    hsla(0, 0%, 0%, 0.114) 35.3%,
    hsla(0, 0%, 0%, 0.155) 41.2%,
    hsla(0, 0%, 0%, 0.198) 47.1%,
    hsla(0, 0%, 0%, 0.242) 52.9%,
    hsla(0, 0%, 0%, 0.285) 58.8%,
    hsla(0, 0%, 0%, 0.326) 64.7%,
    hsla(0, 0%, 0%, 0.363) 71%,
    hsla(0, 0%, 0%, 0.394) 77.5%,
    hsla(0, 0%, 0%, 0.419) 84.5%,
    hsla(0, 0%, 0%, 0.434) 91.9%,
    hsla(0, 0%, 0%, 0.44) 100%
  );
  padding: 0;
  -ms-touch-action: none;
  touch-action: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(
    --fancybox-toolbar-text-shadow,
    1px 1px 1px rgba(0, 0, 0, 0.4)
  );
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden="false"] .fancybox__toolbar {
  -webkit-animation: 0.15s ease-in backwards fancybox-fadeIn;
  animation: 0.15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height, 48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
  background: var(--fancybox-accent-color, rgba(34, 213, 233, 0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0;
  -ms-transform-origin: 0;
  transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-moz-full-screen::backdrop {
  opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}

.fancybox__container:-webkit-full-screen
  .fancybox__button--fullscreen
  g:nth-child(1) {
  display: none;
}

.fancybox__container:-moz-full-screen
  .fancybox__button--fullscreen
  g:nth-child(1) {
  display: none;
}

.fancybox__container:-ms-fullscreen
  .fancybox__button--fullscreen
  g:nth-child(1) {
  display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}

.fancybox__container:-webkit-full-screen
  .fancybox__button--fullscreen
  g:nth-child(2) {
  display: block;
}

.fancybox__container:-moz-full-screen
  .fancybox__button--fullscreen
  g:nth-child(2) {
  display: block;
}

.fancybox__container:-ms-fullscreen
  .fancybox__button--fullscreen
  g:nth-child(2) {
  display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}

@media (max-width: 849px) {
  .mobile_hide,
  .--desktop {
    display: none !important;
  }
}

@media (min-width: 850px) {
  .gt_mobile_hide,
  .--mobile {
    display: none !important;
  }
}

.hide {
  display: none !important;
}

.vcenter {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (min-width: 1441px) {
  .vcenter {
    max-width: 1071px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .vcenter {
    max-width: 74.375vw;
  }
}
@media (min-width: 1441px) {
  .vcenter {
    padding-left: 76px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .vcenter {
    padding-left: 5.2777777778vw;
  }
}
@media (min-width: 1441px) {
  .vcenter {
    padding-right: 76px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .vcenter {
    padding-right: 5.2777777778vw;
  }
}
@media (max-width: 849px) {
  .vcenter {
    padding-left: 20px;
    padding-right: 20px;
  }
}
#page_direction .main .vcenter {
  max-width: 1174px;
}

body {
  -webkit-animation: a_document 0.8s forwards;
  animation: a_document 0.8s forwards;
}

.hidden {
  display: none;
}

@media (min-width: 850px) {
  .--mob {
    display: none !important;
  }
}

@media (max-width: 849px) {
  .--gt_mob {
    display: none !important;
  }
}

.--rel {
  position: relative;
}

@-webkit-keyframes a_document {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes a_document {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
html.is_resized body * {
  -webkit-transition-duration: 0s !important;
  transition-duration: 0s !important;
  -webkit-transition-delay: 0s !important;
  transition-delay: 0s !important;
}

@font-face {
  font-family: "Circe";
  src: url("/assets/fonts/Circe-Light.eot");
  src:
    local("Circe Light"),
    local("Circe-Light"),
    url("/assets/fonts/Circe-Light.eot?")
      format("embedded-opentype"),
    url("/assets/fonts/Circe-Light.woff2") format("woff2"),
    url("/assets/fonts/Circe-Light.woff") format("woff"),
    url("/assets/fonts/Circe-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Circe Extra";
  src: url("/assets/fonts/Circe-ExtraBold.eot");
  src:
    local("Circe Extra Bold"),
    local("Circe-ExtraBold"),
    url("/assets/fonts/Circe-ExtraBold.eot?")
      format("embedded-opentype"),
    url("/assets/fonts/Circe-ExtraBold.woff2")
      format("woff2"),
    url("/assets/fonts/Circe-ExtraBold.woff") format("woff"),
    url("/assets/fonts/Circe-ExtraBold.ttf")
      format("truetype");
  font-weight: 800;
  font-style: normal;
}
@font-face {
  font-family: "Circe";
  src: url("/assets/fonts/Circe-Thin.eot");
  src:
    local("Circe Thin"),
    local("Circe-Thin"),
    url("/assets/fonts/Circe-Thin.eot?")
      format("embedded-opentype"),
    url("/assets/fonts/Circe-Thin.woff2") format("woff2"),
    url("/assets/fonts/Circe-Thin.woff") format("woff"),
    url("/assets/fonts/Circe-Thin.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Circe";
  src: url("/assets/fonts/Circe-Regular.eot");
  src:
    local("Circe"),
    local("Circe-Regular"),
    url("/assets/fonts/Circe-Regular.eot?")
      format("embedded-opentype"),
    url("/assets/fonts/Circe-Regular.woff2") format("woff2"),
    url("/assets/fonts/Circe-Regular.woff") format("woff"),
    url("/assets/fonts/Circe-Regular.ttf")
      format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Circe";
  src: url("/assets/fonts/Circe-Bold.eot");
  src:
    local("Circe Bold"),
    local("Circe-Bold"),
    url("/assets/fonts/Circe-Bold.eot?")
      format("embedded-opentype"),
    url("/assets/fonts/Circe-Bold.woff2") format("woff2"),
    url("/assets/fonts/Circe-Bold.woff") format("woff"),
    url("/assets/fonts/Circe-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}

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

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

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

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

img {
  vertical-align: top;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

address {
  font-style: normal;
}

input,
textarea,
button,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

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

button,
input[type="submit"] {
  cursor: pointer;
}

input:focus,
input:active,
button:focus,
button:active {
  outline: none;
}

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

label {
  cursor: pointer;
}

legend {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}
a:not(.rvbtn) {
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
a:not(.rvbtn):hover {
  color: #c09973;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  color: #2a3e37;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  position: relative;
  overflow-x: hidden;
}

.footer {
  margin: auto 0 0 0;
}

.container,
.vc {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0px 15px;
  width: 100%;
}

.rvsection .rvtitle {
  padding-left: 15px;
}

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

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

.rvcol {
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}
.rvcol:first-child {
  padding-left: calc((100vw - (1340px)) / 2);
}
@media (max-width: 1340px) {
  .rvcol:first-child {
    padding-left: 15px;
  }
}
.rvcol:last-child {
  padding-right: calc((100vw - (1340px)) / 2);
}
@media (max-width: 1340px) {
  .rvcol:last-child {
    padding-right: 15px;
  margin-top: 30px;
  }
}
.rvcol.poster {
  min-height: 233px;
  z-index: 2;
}
@media (max-width: 768px) {
  .rvcol {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
  .rvcol.poster {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}

.r_content p {
  margin-bottom: 1em;
}
.r_content ul,
.r_content menu {
  list-style-type: disc;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.r_content ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.r_content ul ul,
.r_content ol ul {
  list-style-type: circle;
}
.r_content ul ul ul,
.r_content ul ol ul,
.r_content ol ul ul,
.r_content ol ol ul {
  list-style-type: square;
}
.r_content dd {
  margin: 0 0 0 40px;
}
.r_content dl {
  margin: 1em 0;
}
.r_content ul ul,
.r_content ul ol,
.r_content ul menu,
.r_content ul dl,
.r_content ol ul,
.r_content ol ol,
.r_content ol menu,
.r_content ol dl,
.r_content menu ul,
.r_content menu ol,
.r_content menu menu,
.r_content menu dl,
.r_content dl ul,
.r_content dl ol,
.r_content dl menu,
.r_content dl dl {
  margin: 0;
}
.r_content li {
  list-style: disc outside none;
  display: list-item;
  margin-left: 1em;
}
.r_content table {
  width: 100%;
  border-collapse: collapse;
}
.r_content table td {
  padding: 1.3em;
  border: 1px solid #d0d0d0;
}
.r_content h1,
.r_content h2,
.r_content h3,
.r_content h4,
.r_content h5,
.r_content h6 {
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: 0.7em;
}
.r_content h2 {
  font-size: 2em;
}
.r_content h3 {
  font-size: 1.8em;
}
.r_content h4 {
  font-size: 1.6em;
}
.r_content h5 {
  font-size: 1.4em;
}
.r_content h6 {
  font-size: 1.2em;
}

.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #0b0b0b;
  opacity: 0.8;
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden;
}

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.mfp-container:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
  display: none;
}

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto;
}

.mfp-ajax-cur {
  cursor: progress;
}

.mfp-zoom-out-cur,
.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
  cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.mfp-loading.mfp-figure {
  display: none;
}

.mfp-hide {
  display: none !important;
}

.mfp-preloader {
  color: #ccc;
  position: absolute;
  top: 50%;
  width: auto;
  text-align: center;
  margin-top: -0.8em;
  left: 8px;
  right: 8px;
  z-index: 1044;
}

.mfp-preloader a {
  color: #ccc;
}

.mfp-preloader a:hover {
  color: #fff;
}

.mfp-s-ready .mfp-preloader {
  display: none;
}

.mfp-s-error .mfp-content {
  display: none;
}

button.mfp-close,
button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

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

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  padding: 0 0 18px 10px;
  color: #fff;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover,
.mfp-close:focus {
  opacity: 1;
}

.mfp-close:active {
  top: 1px;
}

.mfp-close-btn-in .mfp-close {
  color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
  color: #fff;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%;
}

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #ccc;
  font-size: 12px;
  line-height: 18px;
  white-space: nowrap;
}

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
  margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
  opacity: 1;
}

.mfp-arrow:before,
.mfp-arrow:after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 35px;
  margin-left: 35px;
  border: medium inset transparent;
}

.mfp-arrow:after {
  border-top-width: 13px;
  border-bottom-width: 13px;
  top: 8px;
}

.mfp-arrow:before {
  border-top-width: 21px;
  border-bottom-width: 21px;
  opacity: 0.7;
}

.mfp-arrow-left {
  left: 0;
}

.mfp-arrow-left:after {
  border-right: 17px solid #fff;
  margin-left: 31px;
}

.mfp-arrow-left:before {
  margin-left: 25px;
  border-right: 27px solid #3f3f3f;
}

.mfp-arrow-right {
  right: 0;
}

.mfp-arrow-right:after {
  border-left: 17px solid #fff;
  margin-left: 39px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #3f3f3f;
}

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
  top: -40px;
}

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto;
}

.mfp-figure {
  line-height: 0;
}

.mfp-figure:after {
  content: "";
  position: absolute;
  left: 0;
  top: 40px;
  bottom: 40px;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #444;
}

.mfp-figure small {
  color: #bdbdbd;
  display: block;
  font-size: 12px;
  line-height: 14px;
}

.mfp-figure figure {
  margin: 0;
}

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto;
}

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #f3f3f3;
  word-wrap: break-word;
  padding-right: 36px;
}

.mfp-image-holder .mfp-content {
  max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
  screen and (max-height: 300px) {
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0;
  }
  .mfp-img-mobile img.mfp-img {
    padding: 0;
  }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0;
  }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px;
  }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .mfp-img-mobile .mfp-bottom-bar:empty {
    padding: 0;
  }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px;
  }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0;
  }
}
@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    -ms-transform: scale(0.75);
    transform: scale(0.75);
  }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
  }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    -ms-transform-origin: 100%;
    transform-origin: 100%;
  }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  -webkit-transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  transition-timing-function: var(
    --swiper-wrapper-transition-timing-function,
    initial
  );
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

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

.swiper-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property:
    transform,
    -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property:
    height,
    -webkit-transform;
  transition-property:
    height,
    -webkit-transform;
  transition-property: transform, height;
  transition-property:
    transform,
    height,
    -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  -webkit-scroll-snap-type: x mandatory;
  -ms-scroll-snap-type: x mandatory;
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -webkit-scroll-snap-type: y mandatory;
  -ms-scroll-snap-type: y mandatory;
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -webkit-scroll-snap-type: none;
  -ms-scroll-snap-type: none;
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
  -webkit-order: 9999;
  -ms-flex-order: 9999;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal
  > .swiper-wrapper
  > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical
  > .swiper-wrapper
  > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(
    linear,
    right top,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to left,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(
    linear,
    left top,
    right top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.5)),
    to(rgba(0, 0, 0, 0))
  );
  background-image: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.5),
    rgba(0, 0, 0, 0)
  );
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size: 44px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}

.swiper-rtl .swiper-button-next svg,
.swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

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

.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(
    --swiper-pagination-bullet-width,
    var(--swiper-pagination-bullet-size, 8px)
  );
  height: var(
    --swiper-pagination-bullet-height,
    var(--swiper-pagination-bullet-size, 8px)
  );
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-vertical
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition:
    0.2s top,
    0.2s -webkit-transform;
  transition:
    0.2s top,
    0.2s -webkit-transform;
  transition:
    0.2s transform,
    0.2s top;
  transition:
    0.2s transform,
    0.2s top,
    0.2s -webkit-transform;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal
  > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition:
    0.2s left,
    0.2s -webkit-transform;
  transition:
    0.2s left,
    0.2s -webkit-transform;
  transition:
    0.2s transform,
    0.2s left;
  transition:
    0.2s transform,
    0.2s left,
    0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl
  > .swiper-pagination-bullets-dynamic
  .swiper-pagination-bullet {
  -webkit-transition:
    0.2s right,
    0.2s -webkit-transform;
  transition:
    0.2s right,
    0.2s -webkit-transform;
  transition:
    0.2s transform,
    0.2s right;
  transition:
    0.2s transform,
    0.2s right,
    0.2s -webkit-transform;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(
    --swiper-pagination-progressbar-bg-color,
    rgba(0, 0, 0, 0.25)
  );
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite,
.swiper-vertical
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal
  > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-vertical > .swiper-pagination-progressbar {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}

.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar.swiper-scrollbar-vertical,
.swiper-vertical > .swiper-scrollbar {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
  touch-action: none;
}

.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}

.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property:
    opacity,
    height,
    -webkit-transform;
  transition-property:
    opacity,
    height,
    -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property:
    transform,
    opacity,
    height,
    -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
  -ms-transform-origin: center bottom;
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  margin: -1px;
}

.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-target {
  position: relative;
}

.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.noUi-connects {
  overflow: hidden;
  z-index: 0;
}

.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  -webkit-transform-style: flat;
  transform-style: flat;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}

.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}

.noUi-horizontal .noUi-origin {
  height: 0;
}

.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
}

.noUi-touch-area {
  height: 100%;
  width: 100%;
}

.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
}

.noUi-state-drag * {
  cursor: inherit !important;
}

.noUi-horizontal {
  height: 18px;
}

.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}

.noUi-vertical {
  width: 18px;
}

.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}

.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}

.noUi-target {
  background: #fafafa;
  border-radius: 4px;
  border: 1px solid #d3d3d3;
  -webkit-box-shadow:
    inset 0 1px 1px #f0f0f0,
    0 3px 6px -5px #bbb;
  box-shadow:
    inset 0 1px 1px #f0f0f0,
    0 3px 6px -5px #bbb;
}

.noUi-connects {
  border-radius: 3px;
}

.noUi-connect {
  background: #3fb8af;
}

.noUi-draggable {
  cursor: ew-resize;
}

.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}

.noUi-handle {
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  cursor: default;
  -webkit-box-shadow:
    inset 0 0 1px #fff,
    inset 0 1px 7px #ebebeb,
    0 3px 6px -3px #bbb;
  box-shadow:
    inset 0 0 1px #fff,
    inset 0 1px 7px #ebebeb,
    0 3px 6px -3px #bbb;
}

.noUi-active {
  -webkit-box-shadow:
    inset 0 0 1px #fff,
    inset 0 1px 7px #ddd,
    0 3px 6px -3px #bbb;
  box-shadow:
    inset 0 0 1px #fff,
    inset 0 1px 7px #ddd,
    0 3px 6px -3px #bbb;
}

.noUi-handle:after,
.noUi-handle:before {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #e8e7e6;
  left: 14px;
  top: 6px;
}

.noUi-handle:after {
  left: 17px;
}

.noUi-vertical .noUi-handle:after,
.noUi-vertical .noUi-handle:before {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}

.noUi-vertical .noUi-handle:after {
  top: 17px;
}

[disabled] .noUi-connect {
  background: #b8b8b8;
}

[disabled] .noUi-handle,
[disabled].noUi-handle,
[disabled].noUi-target {
  cursor: not-allowed;
}

.noUi-pips,
.noUi-pips * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.noUi-pips {
  position: absolute;
  color: #999;
}

.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}

.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}

.noUi-marker {
  position: absolute;
  background: #ccc;
}

.noUi-marker-sub {
  background: #aaa;
}

.noUi-marker-large {
  background: #aaa;
}

.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}

.noUi-value-horizontal {
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
}

.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%);
}

.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}

.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}

.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}

.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}

.noUi-value-vertical {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding-left: 25px;
}

.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0, 50%);
  -ms-transform: translate(0, 50%);
  transform: translate(0, 50%);
}

.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}

.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}

.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}

.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #d9d9d9;
  border-radius: 3px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
}

.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  left: 50%;
  bottom: 120%;
}

.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  top: 50%;
  right: 120%;
}

.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%, 0);
  -ms-transform: translate(50%, 0);
  transform: translate(50%, 0);
  left: auto;
  bottom: 10px;
}

.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0, -18px);
  -ms-transform: translate(0, -18px);
  transform: translate(0, -18px);
  top: auto;
  right: 28px;
}

.swal2-popup.swal2-toast {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  grid-column: 1/4 !important;
  grid-row: 1/4 !important;
  grid-template-columns: 1fr 99fr 1fr;
  padding: 1em;
  overflow-y: hidden;
  background: #fff;
  -webkit-box-shadow:
    0 0 1px hsla(0, 0%, 0%, 0.075),
    0 1px 2px hsla(0, 0%, 0%, 0.075),
    1px 2px 4px hsla(0, 0%, 0%, 0.075),
    1px 3px 8px hsla(0, 0%, 0%, 0.075),
    2px 4px 16px hsla(0, 0%, 0%, 0.075);
  box-shadow:
    0 0 1px hsla(0, 0%, 0%, 0.075),
    0 1px 2px hsla(0, 0%, 0%, 0.075),
    1px 2px 4px hsla(0, 0%, 0%, 0.075),
    1px 3px 8px hsla(0, 0%, 0%, 0.075),
    2px 4px 16px hsla(0, 0%, 0%, 0.075);
  pointer-events: all;
}
.swal2-popup.swal2-toast > * {
  grid-column: 2;
}
.swal2-popup.swal2-toast .swal2-title {
  margin: 0.5em 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}
.swal2-popup.swal2-toast .swal2-loading {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.swal2-popup.swal2-toast .swal2-input {
  height: 2em;
  margin: 0.5em;
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-validation-message {
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-footer {
  margin: 0.5em 0 0;
  padding: 0.5em 0 0;
  font-size: 0.8em;
}
.swal2-popup.swal2-toast .swal2-close {
  grid-column: 3/3;
  grid-row: 1/99;
  align-self: center;
  width: 0.8em;
  height: 0.8em;
  margin: 0;
  font-size: 2em;
}
.swal2-popup.swal2-toast .swal2-html-container {
  margin: 0.5em 1em;
  padding: 0;
  font-size: 1em;
  text-align: initial;
}
.swal2-popup.swal2-toast .swal2-html-container:empty {
  padding: 0;
}
.swal2-popup.swal2-toast .swal2-loader {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  height: 2em;
  margin: 0.25em;
}
.swal2-popup.swal2-toast .swal2-icon {
  grid-column: 1;
  grid-row: 1/99;
  align-self: center;
  width: 2em;
  min-width: 2em;
  height: 2em;
  margin: 0 0.5em 0 0;
}
.swal2-popup.swal2-toast .swal2-icon .swal2-icon-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 1.8em;
  font-weight: bold;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}
.swal2-popup.swal2-toast .swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
  top: 0.875em;
  width: 1.375em;
}
.swal2-popup.swal2-toast
  .swal2-icon.swal2-error
  [class^="swal2-x-mark-line"][class$="left"] {
  left: 0.3125em;
}
.swal2-popup.swal2-toast
  .swal2-icon.swal2-error
  [class^="swal2-x-mark-line"][class$="right"] {
  right: 0.3125em;
}
.swal2-popup.swal2-toast .swal2-actions {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  height: auto;
  margin: 0;
  margin-top: 0.5em;
  padding: 0 0.5em;
}
.swal2-popup.swal2-toast .swal2-styled {
  margin: 0.25em 0.5em;
  padding: 0.4em 0.6em;
  font-size: 1em;
}
.swal2-popup.swal2-toast .swal2-success {
  border-color: #a5dc86;
}
.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-circular-line"] {
  position: absolute;
  width: 1.6em;
  height: 3em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}
.swal2-popup.swal2-toast
  .swal2-success
  [class^="swal2-success-circular-line"][class$="left"] {
  top: -0.8em;
  left: -0.5em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 2em 2em;
  -ms-transform-origin: 2em 2em;
  transform-origin: 2em 2em;
  border-radius: 4em 0 0 4em;
}
.swal2-popup.swal2-toast
  .swal2-success
  [class^="swal2-success-circular-line"][class$="right"] {
  top: -0.25em;
  left: 0.9375em;
  -webkit-transform-origin: 0 1.5em;
  -ms-transform-origin: 0 1.5em;
  transform-origin: 0 1.5em;
  border-radius: 0 4em 4em 0;
}
.swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
  width: 2em;
  height: 2em;
}
.swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
  top: 0;
  left: 0.4375em;
  width: 0.4375em;
  height: 2.6875em;
}
.swal2-popup.swal2-toast .swal2-success [class^="swal2-success-line"] {
  height: 0.3125em;
}
.swal2-popup.swal2-toast
  .swal2-success
  [class^="swal2-success-line"][class$="tip"] {
  top: 1.125em;
  left: 0.1875em;
  width: 0.75em;
}
.swal2-popup.swal2-toast
  .swal2-success
  [class^="swal2-success-line"][class$="long"] {
  top: 0.9375em;
  right: 0.1875em;
  width: 1.375em;
}
.swal2-popup.swal2-toast
  .swal2-success.swal2-icon-show
  .swal2-success-line-tip {
  -webkit-animation: swal2-toast-animate-success-line-tip 0.75s;
  animation: swal2-toast-animate-success-line-tip 0.75s;
}
.swal2-popup.swal2-toast
  .swal2-success.swal2-icon-show
  .swal2-success-line-long {
  -webkit-animation: swal2-toast-animate-success-line-long 0.75s;
  animation: swal2-toast-animate-success-line-long 0.75s;
}
.swal2-popup.swal2-toast.swal2-show {
  -webkit-animation: swal2-toast-show 0.5s;
  animation: swal2-toast-show 0.5s;
}
.swal2-popup.swal2-toast.swal2-hide {
  -webkit-animation: swal2-toast-hide 0.1s forwards;
  animation: swal2-toast-hide 0.1s forwards;
}

.swal2-container {
  display: grid;
  position: fixed;
  z-index: 1060;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  grid-template-areas: "top-start     top            top-end" "center-start  center         center-end" "bottom-start  bottom-center  bottom-end";
  grid-template-rows:
    minmax(-webkit-min-content, auto) minmax(-webkit-min-content, auto)
    minmax(-webkit-min-content, auto);
  grid-template-rows:
    minmax(min-content, auto) minmax(min-content, auto)
    minmax(min-content, auto);
  height: 100%;
  padding: 0.625em;
  overflow-x: hidden;
  -webkit-transition: background-color 0.1s;
  transition: background-color 0.1s;
  -webkit-overflow-scrolling: touch;
}
.swal2-container.swal2-backdrop-show,
.swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.4);
}
.swal2-container.swal2-backdrop-hide {
  background: transparent !important;
}
.swal2-container.swal2-top-start,
.swal2-container.swal2-center-start,
.swal2-container.swal2-bottom-start {
  grid-template-columns: minmax(0, 1fr) auto auto;
}
.swal2-container.swal2-top,
.swal2-container.swal2-center,
.swal2-container.swal2-bottom {
  grid-template-columns: auto minmax(0, 1fr) auto;
}
.swal2-container.swal2-top-end,
.swal2-container.swal2-center-end,
.swal2-container.swal2-bottom-end {
  grid-template-columns: auto auto minmax(0, 1fr);
}
.swal2-container.swal2-top-start > .swal2-popup {
  -webkit-align-self: start;
  -ms-flex-item-align: start;
  align-self: start;
}
.swal2-container.swal2-top > .swal2-popup {
  grid-column: 2;
  align-self: start;
  justify-self: center;
}
.swal2-container.swal2-top-end > .swal2-popup,
.swal2-container.swal2-top-right > .swal2-popup {
  grid-column: 3;
  align-self: start;
  justify-self: end;
}
.swal2-container.swal2-center-start > .swal2-popup,
.swal2-container.swal2-center-left > .swal2-popup {
  grid-row: 2;
  align-self: center;
}
.swal2-container.swal2-center > .swal2-popup {
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: center;
}
.swal2-container.swal2-center-end > .swal2-popup,
.swal2-container.swal2-center-right > .swal2-popup {
  grid-column: 3;
  grid-row: 2;
  align-self: center;
  justify-self: end;
}
.swal2-container.swal2-bottom-start > .swal2-popup,
.swal2-container.swal2-bottom-left > .swal2-popup {
  grid-column: 1;
  grid-row: 3;
  align-self: end;
}
.swal2-container.swal2-bottom > .swal2-popup {
  grid-column: 2;
  grid-row: 3;
  justify-self: center;
  align-self: end;
}
.swal2-container.swal2-bottom-end > .swal2-popup,
.swal2-container.swal2-bottom-right > .swal2-popup {
  grid-column: 3;
  grid-row: 3;
  align-self: end;
  justify-self: end;
}
.swal2-container.swal2-grow-row > .swal2-popup,
.swal2-container.swal2-grow-fullscreen > .swal2-popup {
  grid-column: 1/4;
  width: 100%;
}
.swal2-container.swal2-grow-column > .swal2-popup,
.swal2-container.swal2-grow-fullscreen > .swal2-popup {
  grid-row: 1/4;
  align-self: stretch;
}
.swal2-container.swal2-no-transition {
  -webkit-transition: none !important;
  transition: none !important;
}

.swal2-popup {
  display: none;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  grid-template-columns: minmax(0, 100%);
  width: 32em;
  max-width: 100%;
  padding: 0 0 1.25em;
  border: none;
  border-radius: 5px;
  background: #fff;
  color: rgb(84.15, 84.15, 84.15);
  font-family: inherit;
  font-size: 1rem;
}
.swal2-popup:focus {
  outline: none;
}
.swal2-popup.swal2-loading {
  overflow-y: hidden;
}

.swal2-title {
  position: relative;
  max-width: 100%;
  margin: 0;
  padding: 0.8em 1em 0;
  color: rgb(89.25, 89.25, 89.25);
  font-size: 1.875em;
  font-weight: 600;
  text-align: center;
  text-transform: none;
  word-wrap: break-word;
}

.swal2-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: auto;
  margin: 1.25em auto 0;
  padding: 0;
}
.swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
  opacity: 0.4;
}
.swal2-actions:not(.swal2-loading) .swal2-styled:hover {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.1)),
    to(rgba(0, 0, 0, 0.1))
  );
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1));
}
.swal2-actions:not(.swal2-loading) .swal2-styled:active {
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(rgba(0, 0, 0, 0.2)),
    to(rgba(0, 0, 0, 0.2))
  );
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2));
}

.swal2-loader {
  display: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.2em;
  height: 2.2em;
  margin: 0 1.875em;
  -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
  border-width: 0.25em;
  border-style: solid;
  border-radius: 100%;
  border-color: #2778c4 transparent #2778c4 transparent;
}

.swal2-styled {
  margin: 0.3125em;
  padding: 0.625em 1.1em;
  -webkit-transition: -webkit-box-shadow 0.1s;
  transition: -webkit-box-shadow 0.1s;
  transition: box-shadow 0.1s;
  transition:
    box-shadow 0.1s,
    -webkit-box-shadow 0.1s;
  -webkit-box-shadow: 0 0 0 3px transparent;
  box-shadow: 0 0 0 3px transparent;
  font-weight: 500;
}
.swal2-styled:not([disabled]) {
  cursor: pointer;
}
.swal2-styled.swal2-confirm {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #7367f0;
  color: #fff;
  font-size: 1em;
}
.swal2-styled.swal2-confirm:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.5);
  box-shadow: 0 0 0 3px rgba(115, 103, 240, 0.5);
}
.swal2-styled.swal2-deny {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #ea5455;
  color: #fff;
  font-size: 1em;
}
.swal2-styled.swal2-deny:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(234, 84, 85, 0.5);
  box-shadow: 0 0 0 3px rgba(234, 84, 85, 0.5);
}
.swal2-styled.swal2-cancel {
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #6e7d88;
  color: #fff;
  font-size: 1em;
}
.swal2-styled.swal2-cancel:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(110, 125, 136, 0.5);
  box-shadow: 0 0 0 3px rgba(110, 125, 136, 0.5);
}
.swal2-styled.swal2-default-outline:focus {
  -webkit-box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
  box-shadow: 0 0 0 3px rgba(100, 150, 200, 0.5);
}
.swal2-styled:focus {
  outline: none;
}
.swal2-styled::-moz-focus-inner {
  border: 0;
}

.swal2-footer {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1em 0 0;
  padding: 1em 1em 0;
  border-top: 1px solid #eee;
  color: rgb(84.15, 84.15, 84.15);
  font-size: 1em;
}

.swal2-timer-progress-bar-container {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  grid-column: auto !important;
  height: 0.25em;
  overflow: hidden;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
}

.swal2-timer-progress-bar {
  width: 100%;
  height: 0.25em;
  background: rgba(0, 0, 0, 0.2);
}

.swal2-image {
  max-width: 100%;
  margin: 2em auto 1em;
}

.swal2-close {
  z-index: 2;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 1.2em;
  height: 1.2em;
  margin-top: 0;
  margin-right: 0;
  margin-bottom: -1.2em;
  padding: 0;
  overflow: hidden;
  -webkit-transition:
    color 0.1s,
    -webkit-box-shadow 0.1s;
  transition:
    color 0.1s,
    -webkit-box-shadow 0.1s;
  transition:
    color 0.1s,
    box-shadow 0.1s;
  transition:
    color 0.1s,
    box-shadow 0.1s,
    -webkit-box-shadow 0.1s;
  border: none;
  border-radius: 5px;
  background: transparent;
  color: #ccc;
  font-family: serif;
  font-family: monospace;
  font-size: 2.5em;
  cursor: pointer;
  justify-self: end;
}
.swal2-close:hover {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  background: transparent;
  color: #f27474;
}
.swal2-close:focus {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
  box-shadow: inset 0 0 0 3px rgba(100, 150, 200, 0.5);
}
.swal2-close::-moz-focus-inner {
  border: 0;
}

.swal2-html-container {
  z-index: 1;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1em 1.6em 0.3em;
  padding: 0;
  overflow: auto;
  color: rgb(84.15, 84.15, 84.15);
  font-size: 1.125em;
  font-weight: normal;
  line-height: normal;
  text-align: center;
  word-wrap: break-word;
  word-break: break-word;
}

.swal2-input,
.swal2-file,
.swal2-textarea,
.swal2-select,
.swal2-radio,
.swal2-checkbox {
  margin: 1em 2em 0;
}

.swal2-input,
.swal2-file,
.swal2-textarea {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: auto;
  -webkit-transition:
    border-color 0.1s,
    -webkit-box-shadow 0.1s;
  transition:
    border-color 0.1s,
    -webkit-box-shadow 0.1s;
  transition:
    border-color 0.1s,
    box-shadow 0.1s;
  transition:
    border-color 0.1s,
    box-shadow 0.1s,
    -webkit-box-shadow 0.1s;
  border: 1px solid rgb(216.75, 216.75, 216.75);
  border-radius: 0.1875em;
  background: inherit;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.06),
    0 0 0 3px transparent;
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.06),
    0 0 0 3px transparent;
  color: inherit;
  font-size: 1.125em;
}
.swal2-input.swal2-inputerror,
.swal2-file.swal2-inputerror,
.swal2-textarea.swal2-inputerror {
  border-color: #f27474 !important;
  -webkit-box-shadow: 0 0 2px #f27474 !important;
  box-shadow: 0 0 2px #f27474 !important;
}
.swal2-input:focus,
.swal2-file:focus,
.swal2-textarea:focus {
  border: 1px solid #b4dbed;
  outline: none;
  -webkit-box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.06),
    0 0 0 3px rgba(100, 150, 200, 0.5);
  box-shadow:
    inset 0 1px 1px rgba(0, 0, 0, 0.06),
    0 0 0 3px rgba(100, 150, 200, 0.5);
}
.swal2-input::-webkit-input-placeholder,
.swal2-file::-webkit-input-placeholder,
.swal2-textarea::-webkit-input-placeholder {
  color: #ccc;
}
.swal2-input::-moz-placeholder,
.swal2-file::-moz-placeholder,
.swal2-textarea::-moz-placeholder {
  color: #ccc;
}
.swal2-input:-ms-input-placeholder,
.swal2-file:-ms-input-placeholder,
.swal2-textarea:-ms-input-placeholder {
  color: #ccc;
}
.swal2-input::-ms-input-placeholder,
.swal2-file::-ms-input-placeholder,
.swal2-textarea::-ms-input-placeholder {
  color: #ccc;
}
.swal2-input::placeholder,
.swal2-file::placeholder,
.swal2-textarea::placeholder {
  color: #ccc;
}

.swal2-range {
  margin: 1em 2em 0;
  background: #fff;
}
.swal2-range input {
  width: 80%;
}
.swal2-range output {
  width: 20%;
  color: inherit;
  font-weight: 600;
  text-align: center;
}
.swal2-range input,
.swal2-range output {
  height: 2.625em;
  padding: 0;
  font-size: 1.125em;
  line-height: 2.625em;
}

.swal2-input {
  height: 2.625em;
  padding: 0 0.75em;
}

.swal2-file {
  width: 75%;
  margin-right: auto;
  margin-left: auto;
  background: inherit;
  font-size: 1.125em;
}

.swal2-textarea {
  height: 6.75em;
  padding: 0.75em;
}

.swal2-select {
  min-width: 50%;
  max-width: 100%;
  padding: 0.375em 0.625em;
  background: inherit;
  color: inherit;
  font-size: 1.125em;
}

.swal2-radio,
.swal2-checkbox {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #fff;
  color: inherit;
}
.swal2-radio label,
.swal2-checkbox label {
  margin: 0 0.6em;
  font-size: 1.125em;
}
.swal2-radio input,
.swal2-checkbox input {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin: 0 0.4em;
}

.swal2-input-label {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1em auto 0;
}

.swal2-validation-message {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 1em 0 0;
  padding: 0.625em;
  overflow: hidden;
  background: rgb(239.7, 239.7, 239.7);
  color: #666666;
  font-size: 1em;
  font-weight: 300;
}
.swal2-validation-message::before {
  content: "!";
  display: inline-block;
  width: 1.5em;
  min-width: 1.5em;
  height: 1.5em;
  margin: 0 0.625em;
  border-radius: 50%;
  background-color: #f27474;
  color: #fff;
  font-weight: 600;
  line-height: 1.5em;
  text-align: center;
}

.swal2-icon {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 5em;
  height: 5em;
  margin: 2.5em auto 0.6em;
  border: 0.25em solid transparent;
  border-radius: 50%;
  border-color: #000;
  font-family: inherit;
  line-height: 5em;
  cursor: default;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.swal2-icon .swal2-icon-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 3.75em;
}
.swal2-icon.swal2-error {
  border-color: #f27474;
  color: #f27474;
}
.swal2-icon.swal2-error .swal2-x-mark {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.swal2-icon.swal2-error [class^="swal2-x-mark-line"] {
  display: block;
  position: absolute;
  top: 2.3125em;
  width: 2.9375em;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #f27474;
}
.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="left"] {
  left: 1.0625em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swal2-icon.swal2-error [class^="swal2-x-mark-line"][class$="right"] {
  right: 1em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.swal2-icon.swal2-error.swal2-icon-show {
  -webkit-animation: swal2-animate-error-icon 0.5s;
  animation: swal2-animate-error-icon 0.5s;
}
.swal2-icon.swal2-error.swal2-icon-show .swal2-x-mark {
  -webkit-animation: swal2-animate-error-x-mark 0.5s;
  animation: swal2-animate-error-x-mark 0.5s;
}
.swal2-icon.swal2-warning {
  border-color: rgb(249.95234375, 205.965625, 167.74765625);
  color: #f8bb86;
}
.swal2-icon.swal2-info {
  border-color: rgb(156.7033492823, 224.2822966507, 246.2966507177);
  color: #3fc3ee;
}
.swal2-icon.swal2-question {
  border-color: rgb(200.8064516129, 217.9677419355, 225.1935483871);
  color: #87adbd;
}
.swal2-icon.swal2-success {
  border-color: #a5dc86;
  color: #a5dc86;
}
.swal2-icon.swal2-success [class^="swal2-success-circular-line"] {
  position: absolute;
  width: 3.75em;
  height: 7.5em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  border-radius: 50%;
}
.swal2-icon.swal2-success
  [class^="swal2-success-circular-line"][class$="left"] {
  top: -0.4375em;
  left: -2.0635em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 3.75em 3.75em;
  -ms-transform-origin: 3.75em 3.75em;
  transform-origin: 3.75em 3.75em;
  border-radius: 7.5em 0 0 7.5em;
}
.swal2-icon.swal2-success
  [class^="swal2-success-circular-line"][class$="right"] {
  top: -0.6875em;
  left: 1.875em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: 0 3.75em;
  -ms-transform-origin: 0 3.75em;
  transform-origin: 0 3.75em;
  border-radius: 0 7.5em 7.5em 0;
}
.swal2-icon.swal2-success .swal2-success-ring {
  position: absolute;
  z-index: 2;
  top: -0.25em;
  left: -0.25em;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  width: 100%;
  height: 100%;
  border: 0.25em solid rgba(165, 220, 134, 0.3);
  border-radius: 50%;
}
.swal2-icon.swal2-success .swal2-success-fix {
  position: absolute;
  z-index: 1;
  top: 0.5em;
  left: 1.625em;
  width: 0.4375em;
  height: 5.625em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.swal2-icon.swal2-success [class^="swal2-success-line"] {
  display: block;
  position: absolute;
  z-index: 2;
  height: 0.3125em;
  border-radius: 0.125em;
  background-color: #a5dc86;
}
.swal2-icon.swal2-success [class^="swal2-success-line"][class$="tip"] {
  top: 2.875em;
  left: 0.8125em;
  width: 1.5625em;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.swal2-icon.swal2-success [class^="swal2-success-line"][class$="long"] {
  top: 2.375em;
  right: 0.5em;
  width: 2.9375em;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-tip {
  -webkit-animation: swal2-animate-success-line-tip 0.75s;
  animation: swal2-animate-success-line-tip 0.75s;
}
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-line-long {
  -webkit-animation: swal2-animate-success-line-long 0.75s;
  animation: swal2-animate-success-line-long 0.75s;
}
.swal2-icon.swal2-success.swal2-icon-show .swal2-success-circular-line-right {
  -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
  animation: swal2-rotate-success-circular-line 4.25s ease-in;
}

.swal2-progress-steps {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 100%;
  margin: 1.25em auto;
  padding: 0;
  background: inherit;
  font-weight: 600;
}
.swal2-progress-steps li {
  display: inline-block;
  position: relative;
}
.swal2-progress-steps .swal2-progress-step {
  z-index: 20;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2em;
  height: 2em;
  border-radius: 2em;
  background: #2778c4;
  color: #fff;
  line-height: 2em;
  text-align: center;
}
.swal2-progress-steps .swal2-progress-step.swal2-active-progress-step {
  background: #2778c4;
}
.swal2-progress-steps
  .swal2-progress-step.swal2-active-progress-step
  ~ .swal2-progress-step {
  background: #add8e6;
  color: #fff;
}
.swal2-progress-steps
  .swal2-progress-step.swal2-active-progress-step
  ~ .swal2-progress-step-line {
  background: #add8e6;
}
.swal2-progress-steps .swal2-progress-step-line {
  z-index: 10;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 2.5em;
  height: 0.4em;
  margin: 0 -1px;
  background: #2778c4;
}

[class^="swal2"] {
  -webkit-tap-highlight-color: transparent;
}

.swal2-show {
  -webkit-animation: swal2-show 0.3s;
  animation: swal2-show 0.3s;
}

.swal2-hide {
  -webkit-animation: swal2-hide 0.15s forwards;
  animation: swal2-hide 0.15s forwards;
}

.swal2-noanimation {
  -webkit-transition: none;
  transition: none;
}

.swal2-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

.swal2-rtl .swal2-close {
  margin-right: initial;
  margin-left: 0;
}
.swal2-rtl .swal2-timer-progress-bar {
  right: 0;
  left: auto;
}

@-webkit-keyframes swal2-toast-show {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    -webkit-transform: translateY(0) rotateZ(0deg);
    transform: translateY(0) rotateZ(0deg);
  }
}

@keyframes swal2-toast-show {
  0% {
    -webkit-transform: translateY(-0.625em) rotateZ(2deg);
    transform: translateY(-0.625em) rotateZ(2deg);
  }
  33% {
    -webkit-transform: translateY(0) rotateZ(-2deg);
    transform: translateY(0) rotateZ(-2deg);
  }
  66% {
    -webkit-transform: translateY(0.3125em) rotateZ(2deg);
    transform: translateY(0.3125em) rotateZ(2deg);
  }
  100% {
    -webkit-transform: translateY(0) rotateZ(0deg);
    transform: translateY(0) rotateZ(0deg);
  }
}
@-webkit-keyframes swal2-toast-hide {
  100% {
    -webkit-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@keyframes swal2-toast-hide {
  100% {
    -webkit-transform: rotateZ(1deg);
    transform: rotateZ(1deg);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@keyframes swal2-toast-animate-success-line-tip {
  0% {
    top: 0.5625em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 0.125em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 0.625em;
    left: -0.25em;
    width: 1.625em;
  }
  84% {
    top: 1.0625em;
    left: 0.75em;
    width: 0.5em;
  }
  100% {
    top: 1.125em;
    left: 0.1875em;
    width: 0.75em;
  }
}
@-webkit-keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@keyframes swal2-toast-animate-success-line-long {
  0% {
    top: 1.625em;
    right: 1.375em;
    width: 0;
  }
  65% {
    top: 1.25em;
    right: 0.9375em;
    width: 0;
  }
  84% {
    top: 0.9375em;
    right: 0;
    width: 1.125em;
  }
  100% {
    top: 0.9375em;
    right: 0.1875em;
    width: 1.375em;
  }
}
@-webkit-keyframes swal2-show {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes swal2-show {
  0% {
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
  45% {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  80% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes swal2-hide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}
@keyframes swal2-hide {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
  }
}
@-webkit-keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@keyframes swal2-animate-success-line-tip {
  0% {
    top: 1.1875em;
    left: 0.0625em;
    width: 0;
  }
  54% {
    top: 1.0625em;
    left: 0.125em;
    width: 0;
  }
  70% {
    top: 2.1875em;
    left: -0.375em;
    width: 3.125em;
  }
  84% {
    top: 3em;
    left: 1.3125em;
    width: 1.0625em;
  }
  100% {
    top: 2.8125em;
    left: 0.8125em;
    width: 1.5625em;
  }
}
@-webkit-keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@keyframes swal2-animate-success-line-long {
  0% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  65% {
    top: 3.375em;
    right: 2.875em;
    width: 0;
  }
  84% {
    top: 2.1875em;
    right: 0;
    width: 3.4375em;
  }
  100% {
    top: 2.375em;
    right: 0.5em;
    width: 2.9375em;
  }
}
@-webkit-keyframes swal2-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}
@keyframes swal2-rotate-success-circular-line {
  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  5% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  12% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
  100% {
    -webkit-transform: rotate(-405deg);
    transform: rotate(-405deg);
  }
}
@-webkit-keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-x-mark {
  0% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  50% {
    margin-top: 1.625em;
    -webkit-transform: scale(0.4);
    transform: scale(0.4);
    opacity: 0;
  }
  80% {
    margin-top: -0.375em;
    -webkit-transform: scale(1.15);
    transform: scale(1.15);
  }
  100% {
    margin-top: 0;
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@keyframes swal2-animate-error-icon {
  0% {
    -webkit-transform: rotateX(100deg);
    transform: rotateX(100deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 1;
  }
}
@-webkit-keyframes swal2-rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swal2-rotate-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
  overflow: hidden;
}
body.swal2-height-auto {
  height: auto !important;
}
body.swal2-no-backdrop .swal2-container {
  background-color: transparent !important;
  pointer-events: none;
}
body.swal2-no-backdrop .swal2-container .swal2-popup {
  pointer-events: all;
}
body.swal2-no-backdrop .swal2-container .swal2-modal {
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.4);
}
@media print {
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: scroll !important;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)
    > [aria-hidden="true"] {
    display: none;
  }
  body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown)
    .swal2-container {
    position: static !important;
  }
}
body.swal2-toast-shown .swal2-container {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 360px;
  max-width: 100%;
  background-color: transparent;
  pointer-events: none;
}
body.swal2-toast-shown .swal2-container.swal2-top {
  top: 0;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-top-end,
body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
}
body.swal2-toast-shown .swal2-container.swal2-top-start,
body.swal2-toast-shown .swal2-container.swal2-top-left {
  top: 0;
  right: auto;
  bottom: auto;
  left: 0;
}
body.swal2-toast-shown .swal2-container.swal2-center-start,
body.swal2-toast-shown .swal2-container.swal2-center-left {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-center {
  top: 50%;
  right: auto;
  bottom: auto;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
body.swal2-toast-shown .swal2-container.swal2-center-end,
body.swal2-toast-shown .swal2-container.swal2-center-right {
  top: 50%;
  right: 0;
  bottom: auto;
  left: auto;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-start,
body.swal2-toast-shown .swal2-container.swal2-bottom-left {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
}
body.swal2-toast-shown .swal2-container.swal2-bottom {
  top: auto;
  right: auto;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
body.swal2-toast-shown .swal2-container.swal2-bottom-end,
body.swal2-toast-shown .swal2-container.swal2-bottom-right {
  top: auto;
  right: 0;
  bottom: 0;
  left: auto;
}

.swal2-container {
  z-index: 999999;
}

input.parsley-error,
textarea.parsley-error {
  border-color: #c09973;
}

.parsley-errors-list {
  position: absolute;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 0 15px;
  font-size: 12px;
  line-height: 28px;
  list-style: none;
  cursor: pointer;
  text-align: center;
  color: #fff;
  background: #c09973;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  opacity: 0.7;
  z-index: 5;
}

.parsley-errors-fix {
  position: relative;
  width: 100%;
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::-ms-input-placeholder {
  color: transparent;
}

input:focus::placeholder {
  color: transparent;
}

[placeholder]:focus::-webkit-input-placeholder {
  color: transparent !important;
}

[placeholder]:focus::-moz-placeholder {
  color: transparent !important;
}

.rvbtn {
  width: 100%;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  text-transform: uppercase;
  border-radius: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  gap: 13px;
  -webkit-transition-duration: 0.4s !important;
  transition-duration: 0.4s !important;
}
.rvbtn:not(.rvbtn--page_link):hover {
  -webkit-transform: translateY(-5%);
  -ms-transform: translateY(-5%);
  transform: translateY(-5%);
  -webkit-box-shadow: 0px 6px 8px -2px rgba(172, 172, 172, 0.4);
  box-shadow: 0px 6px 8px -2px rgba(172, 172, 172, 0.4);
}
@media (max-width: 768px) {
  .rvbtn {
    height: 50px;
    max-height: 50px;
  }
}
#page_news--item .singleHeader .rvbtn {
  width: 110px;
  height: 36px;
  border: 1px solid #c09973;
  border-radius: 18px;
  color: #2a3e37;
}

.singleHeader___news_list .rvbtn {
  width: 110px;
  height: 36px;
  border: 1px solid #c09973;
  border-radius: 18px;
  color: #2a3e37;
}
.singleHeader___news_list .rvbtn.active {
  background: #c09973;
  border-color: #c09973;
  color: #ffffff;
}

.rvbtn--bronze {
  background-color: #c09973;
}
.rvbtn--blue {
  background-color: #2a3e37;
}
.rvbtn--outline {
  border-color: #c09973;
}
.rvbtn--location:before {
  content: "";
  display: block;
  display: inline;
  width: 22px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/location_icon.svg");
}

.bg--bronze {
  background-color: #c09973;
}

.bg--orange {
  background-color: #c09973;
}

.bg--green {
  background-color: #c09973;
}

.bg--blue {
  background-color: #2a3e37;
}

.bg--outline {
  border-color: #c09973;
}

.breadcrumbs {
  margin-bottom: 16px;
  list-style: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  color: #2a3e37;
  font-size: 12px;
}
@media (min-width: 850px) {
  #page_projects .breadcrumbs {
    padding-top: 14px;
  }
}
@media (max-width: 849px) {
  #page_projects .breadcrumbs {
    padding-top: 14px;
  }
}

.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs li {
  position: relative;
}
.breadcrumbs li:after {
  content: "\\";
  margin-left: 10px;
}
.breadcrumbs li:last-child::after {
  display: none;
}
.breadcrumbs span {
  color: #2a3e37;
}
@media (max-width: 768px) {
  .breadcrumbs {
    font-size: 10px;
  }
}

.c-selector__wrapper {
  border-radius: 30px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 20px 38px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .c-selector__wrapper {
    display: none;
  }
}
.c-selector__title {
  color: #2a3e37;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}
.c-selector__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 53px;
}
.c-selector__btns .rvbtn {
  color: #c09973;
  width: auto;
  padding: 0;
  text-transform: none;
}
.c-selector__btn {
  display: none;
}
@media (max-width: 768px) {
  .c-selector__btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    color: #2a3e37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    background-color: #fff;
    border-color: #c09973;
    -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  }
}

.noUi-target {
  background: #c6cbcf;
  border-radius: 0;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: 2px;
}

.noUi-connect {
  background: #2a3e37;
}

.noUi-horizontal .noUi-handle {
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #c09973;
  -webkit-box-shadow: none;
  box-shadow: none;
  border: none;
  top: -9.5px;
  cursor: pointer;
}

.noUi-handle:after,
.noUi-handle:before {
  width: 2px;
  height: 9px;
  background: #fff;
  top: 5px;
  left: 6px;
}

.noUi-handle:after {
  left: 11px;
}

.singleHeader {
  padding: 81px 0px 49px 0px;
}
#page_news--item .singleHeader > .container {
  max-width: 864px;
}

@media (max-width: 768px) {
  .singleHeader {
    padding-top: 30px;
    padding-bottom: 13px;
  }
}
@media (min-width: 850px) {
  #page_projects .singleHeader {
    padding-top: 41px;
    padding-bottom: 21px;
  }
}
@media (max-width: 849px) {
  #page_projects .singleHeader {
    padding-top: 15px;
    padding-bottom: 0px;
  }
}

@media (max-width: 768px) {
  .singleHeader__title {
    margin-bottom: 0;
  }
}
@media (max-width: 849px) {
  #page_mytishi .singleHeader__title {
    margin-bottom: 10px;
  }
}

.singleHeader__faq {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.singleHeader__faq .rvtitle {
  font-weight: 400;
  max-width: 699px;
}
.singleHeader__faq .rvbtn {
  border-radius: 18px;
  border: 1px solid #c09973;
  color: #c09973;
  max-width: 110px;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  font-size: 14px;
  text-transform: none;
  padding: 9px;
  height: 36px;
}
@media (max-width: 580px) {
  .singleHeader__faq {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .singleHeader__faq .rvbtn {
    margin: 0 0 -28px auto;
    background: #fff;
    height: 30px;
  }
}
.singleHeader___news_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  padding-bottom: 10px;
}
@media (max-width: 768px) {
  .singleHeader___news_list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.singleHeader___news_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 849px) {
  #page_mytishi .singleHeader___news_item {
    display: block;
  }
}

.singleHeader__links {
  margin-left: 60px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  font-size: 18px;
}
.singleHeader__links a {
  color: #2a3e37;
  text-decoration: none;
}
.singleHeader__links a.active {
  color: #c09973;
}
@media (max-width: 768px) {
  .singleHeader__links {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 100%;
    -ms-flex: 1 1 100%;
    flex: 1 1 100%;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
    background-color: #c09973;
    margin: 30px -15px -10px -15px;
    padding: 15px;
  }
}
.singleHeader__years {
  font-size: 18px;
  margin: 0 200px 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  position: relative;
}
@media (max-width: 768px) {
  .singleHeader__years {
    gap: 15px;
    margin: 0px 15px;
  }
}
.singleHeader__years a {
  color: #fff;
  text-decoration: none;
}
.singleHeader__years a.active {
  color: #009ee3;
}
@media (max-width: 1000px) {
  .singleHeader__years {
    margin-right: 0;
  }
}

.swiper-pagination {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: static;
  color: #fff;
  width: auto;
  font-size: 15px;
  font-weight: bold;
}

.swiper-button-prev {
  position: static;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 36px;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-top: 0;
}
.swiper-button-prev:after {
  color: #fff;
  width: 8px;
  height: 16px;
  font-size: 16px;
}

.swiper-button-next {
  position: static;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 36px;
  -ms-flex: 0 0 36px;
  flex: 0 0 36px;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  border: 1px solid #fff;
  margin-top: 0;
}
.swiper-button-next:after {
  color: #fff;
  width: 8px;
  height: 16px;
  font-size: 16px;
}

.to_top {
  -webkit-transition: 0.3s ease opacity;
  transition: 0.3s ease opacity;
  position: fixed;
  bottom: 30px;
  right: 10px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid #fff;
  z-index: 999;
  cursor: pointer;
  background-color: #2a3e37;
  opacity: 0;
  pointer-events: none;
}
.to_top::before,
.to_top::after {
  content: "";
  background-color: #fff;
  width: 14px;
  height: 1px;
  position: absolute;
  top: 60%;
}
.to_top:before {
  left: 12px;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.to_top:after {
  right: 12px;
  -webkit-transform-origin: right;
  -ms-transform-origin: right;
  transform-origin: right;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.to_top--show {
  opacity: 1;
  pointer-events: all;
}

.rvtitle {
  color: #2a3e37;
  font-weight: 700;
  line-height: 1.2;
  font-size: 36px;
  margin: 0 0 28px 0;
}
@media (max-width: 1340px) {
  .rvtitle {
    font-size: calc(24px + 12 * (100vw - 430px) / 910);
  }
}
.singleHeader .rvtitle {
  margin: 0px;
}

.roomCard {
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  color: #2a3e37;
  font-size: 18px;
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr 18px;
  gap: 40px;
  padding: 18px 44px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  cursor: pointer;
  overflow: hidden;
  opacity: 0;
  position: relative;
  top: 30px;
}
.roomCard__promo {
  display: none;
  background: #ff4b42;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  line-height: 14px;
}
.roomCard__poster {
  position: relative;
}

#apartments_items.--columns .roomCard__poster .roomCard__promo {
  width: calc(100% - 66px);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: -11px;
  left: 33px;
  -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.15);
  height: 41px;
  border-radius: 7px;
}

#apartments_items:not(.--columns) .roomCard__price {
  margin-bottom: -20px;
}
#apartments_items:not(.--columns) .roomCard__price .roomCard__promo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 35px;
  border-radius: 11px 11px 0px 0px;
  width: 100%;
  margin-top: 5px;
}

.roomCard--is_action {
  border-color: #c09973;
}
.roomCard--is_action:before {
  content: "";
  display: block;
  pointer-events: none;
  position: absolute;
  top: -2px;
  left: auto;
  right: -2px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/gift_angle.svg");
  background-size: 67px 67px;
  width: 67px;
  height: 67px;
  z-index: 3;
}
.roomCard--load {
  opacity: 1 !important;
  top: 0px !important;
}
.roomCard__body {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: repeat(6, 1fr);
  text-align: center;
}
.roomCard.--header {
  background-color: transparent;
  -webkit-box-shadow: none;
  box-shadow: none;
  font-size: 14px;
  padding: 0 44px;
  cursor: auto;
  opacity: 1;
  top: 0px;
}
.roomCard.--header.--columns {
  display: none;
}
.roomCard.--header:hover {
  border-color: transparent;
}
.roomCard__btn:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/apps/star_border_yellow.svg");
  width: 20px;
  height: 20px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  position: relative;
  z-index: 4;
}
.roomCard__btn:hover:before {
  -webkit-transform: scale(1.4);
  -ms-transform: scale(1.4);
  transform: scale(1.4);
}
.roomCard.--header .roomCard__btn {
  display: none;
}

.roomCard.is_favorite .roomCard__btn:before {
  background-image: url("../img/apps/star_filled.svg");
}

.roomCard__area_price {
  font-size: 0.63em;
  color: #c09973;
}

.s-project {
  background-color: #2a3e37;
  background-repeat: no-repeat;
  background-position: right bottom;
  padding: 106px 0px;
}
.s-project .rvtitle {
  color: #c09973;
}
@media (max-width: 580px) {
  .s-project {
    padding: 33px 0;
  }
}
@media (max-width: 768px) {
  .s-project .container {
    padding: 0;
  }
}
.s-project__box {
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .s-project__box {
    border-radius: 0;
  }
}
.s-project__header {
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 1px solid #dcc7af;
  gap: 26px;
  overflow: auto;
}
.s-project__body .swiper-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
.s-project__rows {
  padding: 0px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .s-project__rows {
    grid-template-columns: 1fr;
  }
}
.s-project__row {
  padding: 45px 0px;
  color: #2a3e37;
  font-size: 16px;
  border-bottom: 1px solid #c09973;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1340px) {
  .s-project__row {
    font-size: calc(12px + 4 * (100vw - 430px) / 910);
  }
}
@media (min-width: 850px) {
  .s-project__row {
    min-height: 129px;
  }
}
.s-project__row:last-child {
  border-bottom: 0;
}
.s-project__row_1 {
  color: #2a3e37;
  font-weight: 800;
}
.s-project__row_2 {
  font-size: 32px;
}
@media (max-width: 1340px) {
  .s-project__row_2 {
    font-size: calc(24px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .s-project__row_3 {
    font-weight: 600;
    font-size: 12px;
  }
}
.s-project__row_4 {
  font-weight: 300;
}
.s-project__row_4 strong {
  font-weight: 300;
  font-size: 32px;
}
@media (max-width: 1340px) {
  .s-project__row_4 strong {
    font-size: calc(24px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .s-project__row {
    grid-template-columns: 1fr;
    padding: 20px 0px;
  }
}
.s-project__tab {
  background-color: #c09973;
  padding: 13px 30px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  white-space: nowrap;
}
.s-project__tab:hover {
  background: rgba(2, 42, 83, 0.5);
}
.s-project__tab.active {
  background-color: #2a3e37;
}
.s-project__link {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  font-size: 12px;
  margin: 0 0 0 auto;
  color: #2a3e37;
}
.s-project__link:hover {
  background-color: #c09973;
  color: #ffffff;
}
.s-project__finishing {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
}
.s-project__finishing_btns {
  position: absolute;
  top: 24px;
  left: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  z-index: 10;
  width: 100%;
}
@media (max-width: 849px) {
  .s-project__finishing_btns {
    overflow-x: auto;
    margin-left: -30px;
    padding-left: 30px;
  }
}
.s-project__finishing_btns .rvbtn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  padding: 12px 30px;
  background-color: #fcf8f0;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  text-transform: none;
  color: #2a3e37;
}
.s-project__finishing_btns .rvbtn:hover {
  background-color: rgba(2, 42, 83, 0.5);
}
.s-project__finishing_btns .rvbtn.active {
  background-color: #2a3e37;
  color: #fff;
}
.s-project__finishing_btns .rvbtn:last-child {
  margin-right: 50px;
}
.s-project__finishing .swiper {
  position: relative;
  width: 100%;
}
.s-project__finishing .swiper-slide {
  width: 100%;
  aspect-ratio: 1.5;
}
.s-project__finishing .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 849px) {
  .s-project__finishing .swiper-slide img {
    max-height: 70vw;
  }
}
.s-project__finishing .swiper-actions {
  position: absolute;
  z-index: 10;
  bottom: 50px;
  right: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.finishing_content {
  max-width: 790px;
  margin: 0px auto;
  padding: 30px;
  padding-top: 100px;
}
.finishing_content p {
  margin-bottom: 1em;
}
.finishing_content ul,
.finishing_content menu {
  list-style-type: disc;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.finishing_content ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.finishing_content ul ul,
.finishing_content ol ul {
  list-style-type: circle;
}
.finishing_content ul ul ul,
.finishing_content ul ol ul,
.finishing_content ol ul ul,
.finishing_content ol ol ul {
  list-style-type: square;
}
.finishing_content dd {
  margin: 0 0 0 40px;
}
.finishing_content dl {
  margin: 1em 0;
}
.finishing_content ul ul,
.finishing_content ul ol,
.finishing_content ul menu,
.finishing_content ul dl,
.finishing_content ol ul,
.finishing_content ol ol,
.finishing_content ol menu,
.finishing_content ol dl,
.finishing_content menu ul,
.finishing_content menu ol,
.finishing_content menu menu,
.finishing_content menu dl,
.finishing_content dl ul,
.finishing_content dl ol,
.finishing_content dl menu,
.finishing_content dl dl {
  margin: 0;
}
.finishing_content li {
  list-style: disc outside none;
  display: list-item;
  margin-left: 1em;
}
.finishing_content table {
  width: 100%;
  border-collapse: collapse;
}
.finishing_content table td {
  padding: 1.3em;
  border: 1px solid #d0d0d0;
}
.finishing_content h1,
.finishing_content h2,
.finishing_content h3,
.finishing_content h4,
.finishing_content h5,
.finishing_content h6 {
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: 0.7em;
}
.finishing_content h2 {
  font-size: 2em;
}
.finishing_content h3 {
  font-size: 1.8em;
}
.finishing_content h4 {
  font-size: 1.6em;
}
.finishing_content h5 {
  font-size: 1.4em;
}
.finishing_content h6 {
  font-size: 1.2em;
}

#location_map {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 600px;
}
@media (max-width: 849px) {
  #location_map {
    height: 50vh;
  }
}

.toggle_favorite.is_favorite path {
  fill: #ff0202;
}

.roomCard.is_favorite .toggle_favorite path {
  fill: #ff0202;
}

.may_be_interested {
  padding-bottom: 400px;
  margin-bottom: -300px;
  background: #fcf8f0;
}
@media (max-width: 1100px) {
  .may_be_interested {
    padding-bottom: 370px;
    font-size: 14px;
  }
}
@media (max-width: 849px) {
  .may_be_interested {
    display: none;
  }
}

.may_be_interested--title {
  font-size: 20px;
  font-weight: 700;
}

.may_be_interested--items {
  margin-top: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.2%;
}
@media (max-width: 1100px) {
  .may_be_interested--items {
    gap: 3%;
    row-gap: 20px;
  }
}

.may_be_interested_item {
  -webkit-flex-basis: 24%;
  -ms-flex-preferred-size: 24%;
  flex-basis: 24%;
  -webkit-transition: 0.4s opacity;
  transition: 0.4s opacity;
}
@media (max-width: 1100px) {
  .may_be_interested_item {
    -webkit-flex-basis: 48%;
    -ms-flex-preferred-size: 48%;
    flex-basis: 48%;
  }
}
@media (max-width: 849px) {
  .may_be_interested_item {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
  }
}
.may_be_interested_item:hover {
  opacity: 0.7;
}

.may_be_interested_item--title {
  background: #fff;
  padding: 10px;
  color: #2a3e37;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

.may_be_interested_item--image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.may_be_interested_item--image:before {
  content: "";
  display: block;
  padding-top: 60%;
}

#captcha__box {
  display: none;
  padding: 0;
}
#captcha__box .smart-captcha {
  min-height: 100px !important;
}

.fancybox__container {
  z-index: 10001;
}

#recently_apartments {
  padding-top: 60px;
}
#recently_apartments .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 23px;
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  #recently_apartments .grid {
    margin-bottom: 30px;
  }
}
#recently_apartments .grid.--columns {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
#recently_apartments .grid.--columns .roomCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}
#recently_apartments .grid.--columns .roomCard__body {
  padding: 28px 33px 19px 33px;
  border-bottom: 1px solid #fcf8f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  text-align: left;
}
#recently_apartments .grid.--columns .roomCard__title {
  color: #2a3e37;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 9px;
  grid-column: 2 span;
}
#recently_apartments .grid.--columns .roomCard__level {
  font-size: 16px;
  margin-bottom: 9px;
  grid-column: 2 span;
  color: #c09973;
}
#recently_apartments .grid.--columns .roomCard__name {
  font-size: 12px;
  margin-bottom: 2px;
  color: #c09973;
}
#apartments_items:not(.--columns) .roomCard__name {
  display: none;
}

#recently_apartments .grid.--columns .roomCard__s {
  color: #2a3e37;
  font-size: 20px;
}
#recently_apartments .grid.--columns .roomCard__s sup {
  font-size: 0.5em;
}
#recently_apartments .grid.--columns .roomCard__count {
  display: none;
}
#recently_apartments .grid.--columns .roomCard__type {
  display: none;
}
#recently_apartments .grid.--columns .roomCard__price {
  color: #2a3e37;
  font-size: 20px;
}
#recently_apartments .grid.--columns .roomCard__btn {
  color: transparent;
  position: absolute;
  right: 60px;
  top: 30px;
}
#recently_apartments .grid.--columns .roomCard__poster {
  padding: 37px 10px;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.header {
  padding: 17px 0px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background-color: #fff;
  border-bottom: 1px solid #fcf8f0;
}
@media (min-width: 850px) {
  html:not(.scroll) #page_index .header {
    position: absolute;
    background-color: transparent;
    border-bottom-color: transparent;
  }
}
.header .container {
  max-width: unset;
}
.header__wrapper {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 580px) {
  .header__wrapper {
    gap: 10px;
  }
}
.header__logo {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 132px;
  -ms-flex: 0 0 132px;
  flex: 0 0 132px;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
.header__logo .logo_light {
  display: none;
}
@media (min-width: 850px) {
  html:not(.scroll) #page_index .header__logo .logo_light {
    display: block;
  }
  html:not(.scroll) #page_index .header__logo .logo_dark {
    display: none;
  }
}
@media (max-width: 580px) {
  .header__logo {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 90px;
    -ms-flex: 0 0 90px;
    flex: 0 0 90px;
    position: relative;
    top: 5px;
  }
}
.header__menu {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1200px) {
  .header__menu {
    display: none;
  }
}
.header__btn {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 206px;
  -ms-flex: 0 0 206px;
  flex: 0 0 206px;
}
@media (max-width: 1400px) {
  .header__btn {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 155px;
    -ms-flex: 0 0 155px;
    flex: 0 0 155px;
  }
}
@media (max-width: 768px) {
  .header__btn {
    display: none;
  }
}
.header__contacts {
  color: #2a3e37;
}
@media (min-width: 850px) {
  html:not(.scroll) #page_index .header__contacts {
    color: #ffffff;
  }
}
.header__contacts .phone {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
  text-decoration: none;
}
@media (max-width: 1340px) {
  .header__contacts .phone {
    font-size: calc(14px + 6 * (100vw - 430px) / 910);
  }
}
.header__contacts .link {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
}
@media (max-width: 580px) {
  .header__contacts .link {
    display: none;
  }
}
.header__favorite {
  position: absolute;
  top: 76px;
  left: auto;
  right: -10px;
  font-size: 12px;
  letter-spacing: -0.02em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  display: none;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.header__favorite:hover {
  opacity: 0.7;
}
@media (max-width: 849px) {
  .header__favorite {
    top: 72px;
    right: -2px;
    font-size: 9px;
  }
}
.header__favorite:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  margin-bottom: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/apps/star_filled.svg");
}
@media (max-width: 849px) {
  .header__favorite:before {
    width: 20px;
    height: 20px;
    margin-bottom: 5px;
  }
}
.header__favorite--show {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  list-style: none;
}
.menu__link {
  text-transform: uppercase;
  text-decoration: none;
  color: #2a3e37;
  font-weight: 700;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}
@media (min-width: 850px) {
  html:not(.scroll) #page_index .menu__link {
    color: #ffffff;
  }
}
@media (max-width: 1500px) {
  .menu__link {
    font-size: 13px;
  }
}
@media (max-width: 1400px) {
  .menu__link {
    font-size: 12px;
  }
}
@media (max-width: 1300px) {
  .menu__link {
    font-size: 10px;
  }
}
.menu__link:hover {
  color: #c09973;
}

.burger {
  display: block;
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 45px;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
  width: 45px;
  height: 45px;
  text-decoration: none;
  outline: none;
  background-color: #2a3e37;
  border-radius: 50%;
  border: none;
}
@media (min-width: 850px) {
  html:not(.scroll) #page_index .burger {
    background-color: #ffffff;
  }
}
.burger::before,
.burger::after {
  content: "";
}
.burger::before,
.burger::after,
.burger span {
  position: absolute;
  width: 23px;
  height: 2px;
  background-color: #fff;
  border-radius: 6px;
  top: 22px;
  left: 11px;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media (min-width: 850px) {
  html:not(.scroll) #page_index .burger::before,
  html:not(.scroll) #page_index .burger::after,
  html:not(.scroll) #page_index .burger span {
    background-color: #2a3e37;
  }
}
.burger::before {
  top: 15px;
}
.burger::after {
  top: 29px;
}

.megamenu {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #2a3e37;
  padding: 182px 0px;
  z-index: 998;
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
  overflow: auto;
}
@media (max-width: 849px) {
  .megamenu {
    padding: 100px 0px 10px 0px;
  }
}
.megamenu__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.megamenu__row {
  margin-bottom: 86px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 70px;
}
@media (max-width: 768px) {
  .megamenu__row {
    gap: 20px;
    margin-bottom: 20px;
  }
  .megamenu__row:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media (max-width: 580px) {
  .megamenu__row {
    grid-template-columns: 1fr;
  }
}
.megamenu__row .rvbtn {
  height: 45px;
  border-radius: 22px;
}
.megamenu .-link {
  cursor: pointer;
}
.megamenu .phone {
  font-size: 24px;
  margin: 20px 0px;
}
.menu-show {
  overflow: hidden;
}
.menu-show .header {
  background-color: #fff;
}
.menu-show .burger::before {
  top: 22px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.menu-show .burger::after {
  top: 22px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.menu-show .burger span {
  width: 0;
}
.menu-show .megamenu {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.footer__top {
  background-color: #fcf8f0;
}
.footer__form {
  background-color: #c09973;
  background-image: url("../img/footer_form_decor.svg");
  background-repeat: no-repeat;
  background-position: center left;
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 71px 71px 90px 189px;
  min-height: 350px;
  margin-bottom: -175px;
  z-index: 3;
  position: relative;
}
@media (max-width: 580px) {
  .footer__form {
    background-image: none;
    padding: 23px;
  }
}
.footer__form_header {
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 50px;
}
@media (max-width: 1000px) {
  .footer__form_header {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__form_header {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.footer__form_title {
  color: #2a3e37;
  font-weight: 700;
  line-height: 1.12;
  font-size: 32px;
}
@media (max-width: 1340px) {
  .footer__form_title {
    font-size: calc(24px + 8 * (100vw - 430px) / 910);
  }
}
.footer__form_text {
  color: #fff;
  line-height: 1.14;
  font-size: 14px;
}
@media (max-width: 1340px) {
  .footer__form_text {
    font-size: calc(12px + 2 * (100vw - 430px) / 910);
  }
}
.footer__form_text a {
  text-decoration: underline;
}
.footer__form_text a:hover {
  color: #2a3e37;
}
.footer__form_body {
  display: grid;
  grid-template-columns: 1fr 1fr 200px;
  gap: 50px;
  margin-bottom: 20px;
}
@media (max-width: 1000px) {
  .footer__form_body {
    grid-template-columns: 1fr 1fr;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .footer__form_body {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.footer__form_body a {
  text-decoration: underline;
}
.footer__form_body a:hover {
  color: #2a3e37;
}
.footer__form .textbox {
  width: 100%;
  padding: 19px 0;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
}
.footer__form .textbox::-webkit-input-placeholder {
  color: #fff;
}
.footer__form .textbox::-moz-placeholder {
  color: #fff;
}
.footer__form .textbox:-ms-input-placeholder {
  color: #fff;
}
.footer__form .textbox::-ms-input-placeholder {
  color: #fff;
}
.footer__form .textbox::placeholder {
  color: #fff;
}
.footer__form .rvbtn {
  border-radius: 22px;
  border: 2px solid #ffffff;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  padding: 12px;
}
@media (max-width: 768px) {
  .footer__form .rvbtn {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
    -ms-flex-order: 4;
    order: 4;
    height: 40px;
  }
}
.footer__form .agr {
  color: #fff;
}
@media (max-width: 1000px) {
  .footer__form .agr {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .footer__form .agr {
    margin: 20px 0px;
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
    -ms-flex-order: 3;
    order: 3;
  }
}
.footer__body {
  background-color: #2a3e37;
  padding-top: 282px;
  padding-bottom: 87px;
}
@media (max-width: 580px) {
  .footer__body {
    padding-bottom: 43px;
    padding-top: 214px;
  }
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
@media (max-width: 768px) {
  .footer__cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 580px) {
  .footer__cols {
    grid-template-columns: 1fr;
  }
}
.footer__col {
  color: #dcc7af;
}
@media (max-width: 849px) {
  .footer .footer__col:first-child {
    margin-bottom: -40px;
  }
}

@media (max-width: 849px) {
  .megamenu .footer__col:first-child {
    margin-bottom: -20px;
  }
}

.footer__col .-title {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.14;
  text-decoration: none;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.footer__col .-subtitle {
  font-weight: 700;
  color: #ffffff;
}
.footer__col ul {
  list-style: none;
  margin-bottom: 20px;
}
.footer__col ul li {
  margin-bottom: 8px;
}
.footer__col ul li a {
  text-decoration: none;
  color: #dcc7af;
}
.footer__col hr {
  border-bottom: 2px solid #1c4065;
  margin: 10px 0px;
}
@media (max-width: 580px) {
  .footer__col.--first {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 10px;
  }
}
@media (max-width: 580px) {
  .footer__col.--second {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
}
.footer__col .rvbtn {
  margin: 17px 0 27px 0px;
  max-width: 210px;
}
@media (max-width: 768px) {
  .footer__col .rvbtn {
    height: 40px;
    border-radius: 22px;
  }
}
.footer__logo {
  max-width: 220px;
  margin-bottom: 50px;
}
@media (max-width: 580px) {
  .footer__logo {
    margin-bottom: 13px;
  }
}
.footer__bottom {
  background-color: #2a3e37;
  padding: 21px;
}
@media (max-width: 849px) {
  .footer__bottom {
    padding: 21px 15px;
  }
}
.footer__bottom .container {
  padding: 0px;
}
.footer__bottom_grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 35px;
  color: #dcc7af;
  font-size: 12px;
}
@media (max-width: 768px) {
  .footer__bottom_grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.fab {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  height: 100%;
  display: block;
}
.fab.fa-dzen {
  background-image: url("../img/icons/social/dzen--white.svg");
}
.fab.fa-odnoklassniki {
  background-image: url("../img/icons/social/ok--white.svg");
}
.fab.fa-vk {
  background-image: url("../img/icons/social/vk--white.svg");
}
.fab.fa-telegram-plane {
  background-image: url("../img/icons/social/telegram--white.svg");
}

.socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  padding-left: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.socials a {
  display: block;
  width: 22px;
  height: 22px;
  color: #ffffff !important;
}
@media (max-width: 768px) {
  .socials {
    gap: 20px;
  }
}

@media (max-width: 580px) {
  .mobile--hide {
    display: none !important;
  }
}

.p-about-header {
  position: relative;
  min-height: 650px;
  padding: 70px 0px;
}
.p-about-header__poster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.p-about-header__decor {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.p-about-header__title {
  font-size: 24px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  max-width: 656px;
}
@media (max-width: 1340px) {
  .p-about-header__title {
    font-size: calc(14px + 10 * (100vw - 430px) / 910);
  }
}
.p-about-header .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
  z-index: 3;
  color: #fff;
}
.p-about-header .rvbtn {
  max-width: 211px;
  background-color: #c09973;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
}
@media (max-width: 580px) {
  .p-about-header {
    padding-top: 0;
    position: relative;
    min-height: 430px;
  }
  .p-about-header .container {
    background-color: #fff;
    color: #c09973;
    padding-bottom: 20px;
  }
  .p-about-header .rvbtn {
    position: absolute;
    top: 111%;
  }
  .p-about-header .p-about-header__decor {
    height: 66px;
  }
}

.p-about-numbers {
  padding: 90px 0px;
}
@media (max-width: 580px) {
  .p-about-numbers {
    padding: 40px 0px;
  }
}
.p-about-numbers__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: url("../img/map_marker.svg") no-repeat center left/contain;
}
@media (max-width: 1100px) {
  .p-about-numbers__grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-left: 80px;
    background-size: 42px;
    background-position: left top;
    max-width: 500px;
  }
}
.p-about-numbers__item {
  border-right: 2px solid #c09973;
  padding: 0px 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.p-about-numbers__item:last-child {
  border-right: none;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.p-about-numbers__item:last-child .text {
  max-width: 336px;
  font-size: 23px;
}
@media (max-width: 1100px) {
  .p-about-numbers__item {
    border-right: none;
    display: block;
  }
}
.p-about-numbers__item .number {
  font-size: 72px;
  color: #2a3e37;
  font-weight: 600;
  margin-bottom: 4px;
}
@media (max-width: 1340px) {
  .p-about-numbers__item .number {
    font-size: calc(38px + 34 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1100px) {
  .p-about-numbers__item .number {
    margin-right: 10px;
    display: inline-block;
  }
}
.p-about-numbers__item .text {
  font-size: 28px;
  color: #c09973;
}
@media (max-width: 1340px) {
  .p-about-numbers__item .text {
    font-size: calc(15px + 13 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1100px) {
  .p-about-numbers__item .text {
    display: inline-block;
  }
}
.p-about-numbers__item .name {
  color: #2a3e37;
  font-size: 36px;
  margin-bottom: 4px;
}
@media (max-width: 1340px) {
  .p-about-numbers__item .name {
    font-size: calc(22px + 14 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1100px) {
  .p-about-numbers__item .name {
    margin-right: 10px;
  }
}

.p-about-map {
  padding: 90px 0px;
  background-color: #fcf8f0;
}
#page_about .p-about-map {
  background-image: url("data:image/svg+xml,%3Csvg width='760' height='379' viewBox='0 0 760 379' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_12_137)'%3E%3Cpath d='M759 0H377.79V0.02C168.83 1.85 0 171.03 0 379.47H381.21V379.45C590.17 377.62 758.99 208.44 759 0Z' fill='%23EDE7DA'/%3E%3Cpath d='M651 270.32V379.32L760 270.32H651Z' fill='%23EDE7DA'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_12_137'%3E%3Crect width='760' height='379.47' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 100% 100%;
}

.p-about-map__title {
  max-width: 500px;
}
@media (max-width: 768px) {
  .p-about-map {
    padding: 20px 0 0 0;
  }
  .p-about-map .p-contacts__map {
    padding: 40px 0px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .p-about-map .p-contacts__map_map {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
  }
  .p-about-map .mapBtns {
    margin-bottom: 20px;
  }
}

.p-about-slider {
  position: relative;
}
.p-about-slider .swiper {
  position: relative;
  height: 803px;
}
@media (max-width: 768px) {
  .p-about-slider .swiper {
    height: 203px;
  }
}
.p-about-slider .swiper-slide img {
  width: 100%;
}
.p-about-slider .swiper-controls {
  position: absolute;
  bottom: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
  z-index: 2;
  right: calc((100vw - (1340px)) / 2);
}
@media (max-width: 1340px) {
  .p-about-slider .swiper-controls {
    right: 15px;
  }
}
@media (max-width: 768px) {
  .p-about-slider .swiper-controls {
    bottom: 20px;
  }
}
.p-about-slider__decor {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  .p-about-slider__decor {
    height: 53px;
  }
}

.p-about-info {
  padding: 100px 0px;
}
@media (max-width: 849px) {
  .p-about-info {
    padding: 50px 0px;
  }
}
.p-about-info__wrapper {
  display: grid;
  gap: 93px;
  grid-template-columns: 1fr 2fr;
}
@media (max-width: 768px) {
  .p-about-info__wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 0px;
  }
}
.p-about-info__title {
  max-width: 528px;
}
.p-about-info__title .title {
  color: #c09973;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 25px;
}
@media (max-width: 1340px) {
  .p-about-info__title .title {
    font-size: calc(24px + 12 * (100vw - 430px) / 910);
  }
}
.p-about-info__title .span {
  padding-left: 38px;
  border-left: 1px solid #dcc7af;
  font-size: 20px;
  color: #2a3e37;
}
@media (max-width: 1340px) {
  .p-about-info__title .span {
    font-size: calc(16px + 4 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .p-about-info__title .span {
    padding-left: 16px;
  }
}
.p-about-info__body {
  font-size: 16px;
  color: #2a3e37;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  line-height: 1.5;
}
@media (max-width: 1340px) {
  .p-about-info__body {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}

.p-about-projects {
  margin-bottom: 53px;
}

.index_map_infrastructure {
  background-color: #fcf8f0;
}
@media (min-width: 850px) {
  .index_map_infrastructure .rvtitle {
    padding-bottom: 270px;
  }
}

.p-about-location {
  background: #2a3e37;
}
.p-about-location .container {
  padding-top: 342px;
  padding-bottom: 80px;
  position: relative;
}
@media (max-width: 849px) {
  .p-about-location .container {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.p-about-location__map {
  height: 540px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: -270px;
  width: 100%;
  height: 540px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
}
.p-about-location__map img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 768px) {
  .p-about-location__map {
    border-radius: 0px;
  }
}
@media (max-width: 849px) {
  .p-about-location__map {
    display: none;
  }
}
.p-about-location__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 580px) {
  .p-about-location__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.p-about-location__title {
  font-size: 28px;
  color: #fff;
  font-weight: 600;
  max-width: 336px;
}
@media (max-width: 1340px) {
  .p-about-location__title {
    font-size: calc(18px + 10 * (100vw - 430px) / 910);
  }
}
@media (max-width: 849px) {
  .p-about-location__title {
    max-width: 100%;
  }
}
.p-about-location__items {
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 70px 10px;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 900px) {
  .p-about-location__items {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 768px) {
  .p-about-location__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 580px) {
  .p-about-location__items {
    padding-top: 20px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-about-location__item {
  text-align: center;
}
.p-about-location__item_icon {
  width: 61px;
  height: 61px;
  margin-bottom: 17px;
}
.p-about-location__item_title {
  font-size: 15px;
  font-weight: 600;
  color: #c6cbcf;
}
@media (max-width: 1340px) {
  .p-about-location__item_title {
    font-size: calc(11px + 4 * (100vw - 430px) / 910);
  }
}

.p-about-features {
  background-color: #fff !important;
}
.p-about-features .s-features__box {
  font-size: 18px;
}
@media (max-width: 1340px) {
  .p-about-features .s-features__box {
    font-size: calc(14px + 4 * (100vw - 430px) / 910);
  }
}
.p-about-features .s-features__box .title {
  color: #c09973;
  font-size: 36px;
}
@media (max-width: 1340px) {
  .p-about-features .s-features__box .title {
    font-size: calc(24px + 12 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .p-about-features .rvrow:before,
  .p-about-features .rvrow:after {
    display: none;
  }
}

.p-apps {
  background-color: #fcf8f0;
  padding-top: 42px;
}
@media (max-width: 768px) {
  .p-apps .container {
    background-color: #fff;
  }
}

.rvbtn--callback {
  background-color: #c09973;
  width: 206px;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}
@media (max-width: 768px) {
  .rvbtn--callback {
    width: 150px;
    margin: 0px auto 0px auto;
  }
}

.p-apps-header {
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 25px 0px rgba(37, 83, 157, 0.1);
  box-shadow: 0px 4px 25px 0px rgba(37, 83, 157, 0.1);
  margin-bottom: 87px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr 75px;
  gap: 50px;
}
@media (max-width: 1000px) {
  .p-apps-header {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .p-apps-header {
    grid-template-columns: 1fr;
    padding: 20px 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
}
.p-apps-header__floor {
  border-left: 2px solid #c09973;
  width: 50%;
  padding-left: 60px;
}
@media (max-width: 849px) {
  .p-apps-header__floor {
    width: 40%;
    padding-left: 30px;
  }
}
.p-apps-header__col:nth-child(2) {
  text-align: center;
}
@media (max-width: 1000px) {
  .p-apps-header__col:last-child {
    grid-column: 2 span;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .p-apps-header__col:last-child {
    grid-column: 1 span;
    padding: 16px 20px;
    background: #fcf8f0;
    margin: 0px -25px;
    -webkit-box-pack: space-evenly;
    -webkit-justify-content: space-evenly;
    -ms-flex-pack: space-evenly;
    justify-content: space-evenly;
  }
}
.p-apps-header__col .decor {
  display: block;
  margin-bottom: 63px;
}
.p-apps-header__col .decor.dir_180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.p-apps-header__col .decor.dir_cclock_90 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.p-apps-header__col .decor.dir_clock_90 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
@media (max-width: 1000px) {
  .p-apps-header__col .decor {
    margin-bottom: 0;
    margin-right: 20px;
  }
}
.p-apps-header__title {
  color: #2a3e37;
  font-size: 32px;
  font-weight: 600;
  padding-bottom: 30px;
  border-bottom: 2px solid #f2f1f4;
  margin-bottom: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6px;
}
@media (max-width: 1340px) {
  .p-apps-header__title {
    font-size: calc(18px + 14 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .p-apps-header__title {
    background: #fcf8f0;
    margin: -30px -25px 50px;
    padding: 15px;
  }
}
.p-apps-header__row {
  padding-bottom: 22px;
  display: grid;
  gap: 10px;
  grid-template-columns: 1.5fr 1fr;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.p-apps-header__row:last-child {
  border-bottom: none;
}
.p-apps-header__item {
  padding-left: 30px;
}
@media (max-width: 849px) {
  .p-apps-header__item:first-child {
    padding-left: 10px;
  }
}
.p-apps-header__name {
  font-size: 14px;
  color: #c09973;
  font-weight: 500;
}
.p-apps-header__name__is_action {
  margin-top: 20px;
}
.p-apps-header__value {
  color: #2a3e37;
  font-size: 24px;
  line-height: 1em;
}
@media (max-width: 1340px) {
  .p-apps-header__value {
    font-size: calc(18px + 6 * (100vw - 430px) / 910);
  }
}
.p-apps-header__value--nosup {
  line-height: 1.6em;
}
.p-apps-header__controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (max-width: 1000px) {
  .p-apps-header__controls {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    gap: 20px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.p-apps-header__btn {
  cursor: pointer;
  display: block;
  margin-bottom: 30px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.p-apps-header__btn:hover {
  opacity: 0.6;
}
@media (max-width: 1000px) {
  .p-apps-header__btn {
    margin-bottom: 0;
  }
}

.p-apps-text {
  color: #c09973;
  font-size: 14px;
  font-weight: 600;
}
.p-apps-text span {
  display: block;
  color: #2a3e37;
  font-size: 22px;
  font-weight: 600;
}
@media (max-width: 1340px) {
  .p-apps-text span {
    font-size: calc(16px + 6 * (100vw - 430px) / 910);
  }
}

.apartment_item_toggle_favorite {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.apartment_item_toggle_favorite__image:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/apps/star_border_gray.svg");
  width: 30px;
  height: 30px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.apartment_item_toggle_favorite.is_favorite
  .apartment_item_toggle_favorite__image:before {
  background-image: url("../img/apps/star_filled.svg");
}

.apartment_item_toggle_favorite__title {
  padding-top: 9px;
  font-size: 11px;
}
@media (max-width: 849px) {
  .apartment_item_toggle_favorite__title {
    padding-top: 3px;
    font-size: 9px;
  }
}

.apartment_item_finishing {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.apartment_item_finishing__image:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/apps/finishing.svg");
  width: 30px;
  height: 30px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
}
.apartment_item_finishing__title {
  padding-top: 9px;
  font-size: 11px;
  text-align: center;
}
@media (min-width: 850px) {
  .apartment_item_finishing__title {
    white-space: nowrap;
  }
}
@media (max-width: 849px) {
  .apartment_item_finishing__title {
    padding-top: 3px;
    font-size: 9px;
  }
}

.p-contacts {
  padding-bottom: 49px;
}
.p-contacts__bg {
  padding: 64px 0 101px;
  background: #ede7da url(../img/contacts/bg.svg) no-repeat;
  background-position: top center;
  background-size: 100%;
  margin-bottom: 60px;
}
@media (max-width: 580px) {
  .p-contacts__bg {
    padding-top: 28px;
    padding-bottom: 20px;
  }
}
.p-contacts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  line-height: 1.4;
}
@media (max-width: 580px) {
  .p-contacts__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}
.p-contacts__col .--title {
  color: #2a3e37;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
}
@media (max-width: 1340px) {
  .p-contacts__col .--title {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1340px) {
  .p-contacts__col .--title {
    margin-bottom: calc(19px + 13 * (100vw - 430px) / 910);
  }
}
.p-contacts__col .--address {
  color: #2a3e37;
  font-size: 18px;
  margin-bottom: 32px;
}
@media (max-width: 1340px) {
  .p-contacts__col .--address {
    font-size: calc(16px + 2 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1340px) {
  .p-contacts__col .--address {
    margin-bottom: calc(19px + 13 * (100vw - 430px) / 910);
  }
}
.p-contacts__col .--span {
  color: #2a3e37;
  font-size: 16px;
  margin-bottom: 32px;
}
@media (max-width: 1340px) {
  .p-contacts__col .--span {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1340px) {
  .p-contacts__col .--span {
    margin-bottom: calc(19px + 13 * (100vw - 430px) / 910);
  }
}
.p-contacts__col .--time {
  color: #2a3e37;
  font-size: 24px;
  margin-bottom: 32px;
}
@media (max-width: 1340px) {
  .p-contacts__col .--time {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1340px) {
  .p-contacts__col .--time {
    margin-bottom: calc(19px + 13 * (100vw - 430px) / 910);
  }
}
.p-contacts__col .--email,
.p-contacts__col .--phone {
  color: #2a3e37;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 32px;
  text-decoration: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
@media (max-width: 1340px) {
  .p-contacts__col .--email,
  .p-contacts__col .--phone {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1340px) {
  .p-contacts__col .--email,
  .p-contacts__col .--phone {
    margin-bottom: calc(19px + 13 * (100vw - 430px) / 910);
  }
}
.p-contacts__col .--phone {
  margin-bottom: 10px;
}
@media (max-width: 1340px) {
  .p-contacts__col .--phone {
    margin-bottom: calc(10px + 0 * (100vw - 430px) / 910);
  }
}
.p-contacts__map {
  grid-column: 2 span;
  border-radius: 20px;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  height: 675px;
}
@media (max-width: 580px) {
  .p-contacts__map {
    grid-column: 1;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0;
    height: auto;
  }
}
.p-contacts__map_map {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 580px) {
  .p-contacts__map_map {
    position: static;
    display: block;
    height: 400px;
    margin-bottom: 27px;
  }
}

.mapBtns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: absolute;
  top: 30px;
  left: 24px;
  right: 24px;
  z-index: 10;
}
@media (max-width: 1000px) {
  .mapBtns {
    grid-template-columns: 1fr;
    right: auto;
    max-width: 300px;
  }
}
@media (max-width: 580px) {
  .mapBtns {
    max-width: 100%;
    position: static;
  }
}
.mapBtns__btn {
  cursor: pointer;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  height: 80px;
  text-decoration: none;
  outline: none;
  border: 1px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  padding: 18px 23px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.mapBtns__btn::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  bottom: 2px;
  width: 1px;
  background-color: #c09973;
}
.mapBtns__btn span {
  padding-left: 79px;
  position: relative;
  background: url("../img/contacts/navigate.svg") no-repeat 33px center/contain;
  color: #2a3e37;
  font-size: 12px;
  font-weight: 600;
  background-size: 30px;
  line-height: 1.4em;
  min-height: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-transform: uppercase;
}
@media (max-width: 849px) {
  .mapBtns__btn span {
    padding-top: 4px;
  }
}
.mapBtns__btn:hover {
  border-color: #c09973;
}

.p-docs {
  background-color: #fcf8f0;
  padding: 87px 0px 55px;
}
@media (max-width: 849px) {
  .p-docs {
    padding: 40px 0px 30px;
  }
}
.p-docs__grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  margin-bottom: 71px;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 849px) {
  .p-docs__grid {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.p-docs__item {
  width: 290px;
  height: 413px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(37, 83, 157, 0.15);
  box-shadow: 0px 4px 10px 0px rgba(37, 83, 157, 0.15);
  color: #c09973;
}

.p-faq {
  background-color: #fff;
  padding: 57px 0px 49px 0px;
}
.p-faq__wrapper {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 49px;
}

.faqItem__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 55px;
  background: #fcf8f0;
  gap: 110px;
  -webkit-transition: 0.3s background;
  transition: 0.3s background;
}
@media (max-width: 768px) {
  .faqItem__header {
    gap: 20px;
  }
}
@media (max-width: 580px) {
  .faqItem__header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 30px 20px;
    border-bottom: 1px solid #dcc7af;
  }
}
.faqItem__header_number {
  color: #c09973;
  text-align: center;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1340px) {
  .faqItem__header_number {
    font-size: calc(20px + 12 * (100vw - 430px) / 910);
  }
}
.faqItem__header_title {
  color: #2a3e37;
  -webkit-box-flex: 1;
  -webkit-flex: auto;
  -ms-flex: auto;
  flex: auto;
  text-align: left;
  font-size: 24px;
}
@media (max-width: 1340px) {
  .faqItem__header_title {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
.faqItem__header_btn {
  text-decoration: none;
  color: #2a3e37;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  background-color: #fff;
  border: 1px solid #c09973;
  border-radius: 22px;
  cursor: pointer;
  outline: none;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.faqItem__header_btn:hover {
  background-color: #c09973;
  color: #fff;
}
@media (max-width: 580px) {
  .faqItem__header_btn {
    margin: 0 auto;
  }
}
.faqItem__header:hover {
  background-color: #ede7da;
}
.faqItem__body {
  display: none;
  padding: 30px 55px;
  background-color: #fcf8f0;
}

.p-faq-single {
  background-color: #fcf8f0;
  padding: 57px 0px 49px 0px;
}
.p-faq-single .content {
  margin: 0 auto 42px;
  line-height: 1.5;
}

.content {
  max-width: 864px;
  color: #2a3e37;
  font-size: 16px;
}
.content h2 {
  color: #2a3e37;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  margin: 40px 0px;
}
.content h3 {
  color: #2a3e37;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  margin: 40px 0px;
}
.content h4 {
  font-size: 1em;
  margin: 1em 0px;
  font-weight: 600;
}
.content h5 {
  font-size: 1em;
  font-weight: 600;
  margin: 0.5em 0px;
}
.content p {
  margin: 20px 0;
}
.content ul {
  padding-left: 20px;
}

.p-floor {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  background-color: #fcf8f0;
  min-height: 832px;
  height: 80vh;
}
.p-floor__left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-floor__left_numbers {
  position: relative;
  z-index: 2;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 0 auto;
}
.p-floor .floor_number {
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: center;
  font-size: 22px;
  color: #2a3e37;
  font-weight: 500;
  text-decoration: none;
  padding: 4px 16px;
  -webkit-transition:
    background 0.3s,
    color 0.3s;
  transition:
    background 0.3s,
    color 0.3s;
}
.p-floor .floor_number.no_available {
  color: #bebebe !important;
  cursor: default;
}
.p-floor .floor_number.no_available.active,
.p-floor .floor_number.no_available:hover {
  background-color: rgba(232, 232, 232, 0.5);
}
.p-floor .floor_number.active,
.p-floor .floor_number:hover {
  background-color: rgba(192, 153, 115, 0.5);
  color: #fff;
}
.p-floor__right {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  padding-right: calc((100vw - (1340px)) / 2);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (max-width: 1340px) {
  .p-floor__right {
    padding-right: 15px;
  }
}
.p-floor__wrapper {
  height: 100%;
  width: 100%;
  border-radius: 0 50% 50% 0;
  background-color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.p-floor__wrapper .rvbtn {
  border-radius: 25px;
  border-color: #c6cbcf;
  color: #2a3e37;
  background-color: #fff;
  max-width: 300px;
  margin-bottom: 29px;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
  padding: 13.5px;
}
.p-floor__wrapper .rvbtn.active {
  border-color: #2a3e37;
  color: #2a3e37;
  cursor: default !important;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.p-floor__wrapper .rvbtn:hover {
  border-color: #2a3e37;
  color: #2a3e37;
}
.p-floor__title {
  max-width: 325px;
  font-size: 42px;
  color: #2a3e37;
  margin-bottom: 48px;
}

.mainhead {
  min-height: 802px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  margin-bottom: 106px;
}
@media (max-width: 768px) {
  .mainhead {
    padding-top: 250px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    margin-bottom: 33px;
    min-height: auto;
  }
}
.mainhead .swiper {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .mainhead .swiper {
    height: 600px;
  }
}
@media (max-width: 580px) {
  .mainhead .swiper {
    height: 480px;
  }
}
.mainhead .swiper .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.mainhead__body {
  position: relative;
  width: 100%;
  z-index: 3;
}
.mainhead__row {
  display: grid;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-template-columns: 1fr 220px 1fr;
  gap: 39px;
  color: #fff;
  margin-bottom: 36px;
}
@media (max-width: 768px) {
  .mainhead__row {
    grid-template-columns: 1fr 220px;
    gap: 13px;
  }
}
@media (max-width: 580px) {
  .mainhead__row {
    grid-template-columns: 1fr 90px;
  }
}
.mainhead__controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.mainhead__banners {
  position: absolute;
  left: 0px;
  top: 104px;
  width: 100%;
  z-index: 10;
}
.mainhead__banners .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 40px;
}
@media (max-width: 849px) {
  .mainhead__banners .container {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .mainhead__banners {
    left: 0px;
    top: 100px;
  }
}
.mainhead__title {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.04;
  text-align: right;
  text-transform: uppercase;
  text-shadow: 0px 4px 15px rgba(0, 0, 0, 0.5);
}
@media (max-width: 1340px) {
  .mainhead__title {
    font-size: calc(20px + 18 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .mainhead__title {
    text-align: left;
    margin-left: 20px;
  }
}
.mainhead__mark {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background-color: #c09973;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.15);
  color: #ffffff;
  font-size: 38px;
  font-weight: 700;
  line-height: 0.94;
  text-align: center;
}
.mainhead__mark strong {
  font-size: 90px;
}
@media (max-width: 768px) {
  .mainhead__mark {
    grid-row: 2 span;
  }
}
@media (max-width: 580px) {
  .mainhead__mark {
    width: 90px;
    height: 90px;
    font-size: 15px;
  }
  .mainhead__mark strong {
    font-size: 37px;
  }
}
.mainhead__text {
  max-width: 514px;
  font-size: 28px;
  line-height: 1.17;
  position: relative;
  background-color: #ff4b42;
  border-top-left-radius: 79px;
  border-bottom-right-radius: 79px;
  padding: 23px 49px 26px;
  position: relative;
  left: -22px;
}
@media (max-width: 1340px) {
  .mainhead__text {
    font-size: calc(14px + 14 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1200px) {
  .mainhead__text {
    padding: 20px 35px;
  }
}
@media (max-width: 768px) {
  .mainhead__text {
    display: inline-block;
    left: 0px;
    border-top-left-radius: 39px;
    border-bottom-right-radius: 39px;
    padding: 20px;
  }
}
.mainhead__text span {
  border-bottom: 2px solid #c09973;
}
.mainhead__btns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 958px;
  margin: 14px auto -30.5px;
}
@media (max-width: 768px) {
  .mainhead__btns {
    margin: 86px 0 0 0;
    grid-template-columns: 1fr;
    gap: 11px;
  }
}
@media (max-width: 580px) {
  .mainhead__btns {
    margin: 41px 0 0 0;
  }
}
.mainhead__btns .rvbtn {
  font-size: 16px;
  border-radius: 0px;
}
.mainhead__btns .rvbtn:nth-child(2) {
  border-right: 1px solid #c09973;
  border-left: 1px solid #c09973;
}
.mainhead__btns .rvbtn:first-child {
  border-radius: 30px 0px 0px 30px;
}
.mainhead__btns .rvbtn:last-child {
  border-radius: 0 30px 30px 0;
}
@media (max-width: 768px) {
  .mainhead__btns .rvbtn {
    border-radius: 30px !important;
    font-size: 14px;
  }
}

.s-appartments {
  margin-bottom: 106px;
}
@media (max-width: 580px) {
  .s-appartments {
    margin-bottom: 33px;
  }
}
.s-appartments__title {
  text-align: center;
  font-size: 36px;
}
@media (max-width: 1340px) {
  .s-appartments__title {
    font-size: calc(20px + 16 * (100vw - 430px) / 910);
  }
}
.s-appartments__row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: 33px;
}
.s-appartments__item {
  border-radius: 15px;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 41px 10px;
  height: 390px;
}
.s-appartments__item img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.s-appartments__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 2;
}
.s-appartments__item .rvbtn {
  position: relative;
  z-index: 3;
  border-radius: 30px;
  font-size: 18px;
  max-width: 280px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.s-appartments__item .rvbtn::after {
  content: "";
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzNyIgaGVpZ2h0PSIzNyIgZmlsbD0ibm9uZSIgdmlld0JveD0iMCAwIDM3IDM3Ij48ZyBjbGlwLXBhdGg9InVybCgjYSkiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xOC41IDM3QzI4LjcgMzcgMzcgMjguNyAzNyAxOC41UzI4LjcgMCAxOC41IDAgMCA4LjMgMCAxOC41IDguMyAzNyAxOC41IDM3Wm0wLTM2QzI4LjE1IDEgMzYgOC44NSAzNiAxOC41UzI4LjE1IDM2IDE4LjUgMzYgMSAyOC4xNSAxIDE4LjUgOC44NSAxIDE4LjUgMVptLTIuNzIgMjQuOTYgNy40Ni03LjQ2LTcuNDYtNy40Ni43MS0uNzEgOC4xNyA4LjE3LTguMTcgOC4xNy0uNzEtLjcxWiIvPjwvZz48ZGVmcz48Y2xpcFBhdGggaWQ9ImEiPjxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0wIDBoMzd2MzdIMHoiIHRyYW5zZm9ybT0ibWF0cml4KC0xIDAgMCAxIDM3IDApIi8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: center;
  width: 37px;
  height: 37px;
  background-size: contain;
  position: absolute;
  right: 14px;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: 0.3s -webkit-transform;
  transition: 0.3s -webkit-transform;
  transition: 0.3s transform;
  transition:
    0.3s transform,
    0.3s -webkit-transform;
}
.s-appartments__item .rvbtn:hover {
  max-width: 336px;
}
.s-appartments__item .rvbtn:hover:after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
@media (max-width: 580px) {
  .s-appartments__item {
    height: 171px;
    padding: 14px;
  }
  .s-appartments__item .rvbtn {
    max-width: 180px;
    font-size: 12px;
    padding: 8px 26px;
  }
  .s-appartments__item .rvbtn::after {
    width: 16px;
    height: 16px;
    right: 6px;
  }
}

.s-features {
  color: #2a3e37;
  background-color: #fcf8f0;
  font-size: 27px;
  line-height: 1.33;
}
@media (max-width: 1340px) {
  .s-features {
    font-size: calc(15px + 12 * (100vw - 430px) / 910);
  }
}
.s-features__box {
  position: relative;
  max-width: 497px;
  margin: 135px auto 135px 0;
  padding-right: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 44px;
  font-size: 22px;
}
@media (max-width: 1340px) {
  .s-features__box {
    font-size: calc(14px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .s-features__box {
    margin: 35px 0 27px 0;
    gap: 23px;
  }
}
.s-features__row strong {
  font-size: 72px;
  color: #c09973;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1340px) {
  .s-features__row strong {
    font-size: calc(38px + 34 * (100vw - 430px) / 910);
  }
}
.s-features__row .title {
  color: #c09973;
  font-size: 42px;
  line-height: 1;
}
@media (max-width: 1340px) {
  .s-features__row .title {
    font-size: calc(22px + 20 * (100vw - 430px) / 910);
  }
}
@media (max-width: 580px) {
  .s-features__row {
    max-width: 230px;
  }
}
.s-features .rvrow:first-child {
  position: relative;
}
.s-features .rvrow:first-child::before {
  content: "";
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background-color: #2a3e37;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  z-index: 1;
}
#page_mytishi .s-features .rvrow:first-child::before {
  display: none;
}

.s-features .rvrow:first-child::after {
  content: "";
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #c09973;
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%);
  z-index: 1;
}
#page_mytishi .s-features .rvrow:first-child::after {
  display: none;
}

@media (max-width: 768px) {
  .s-features .rvrow:first-child::before {
    z-index: 2;
    width: 60px;
    height: 60px;
  }
  .s-features .rvrow:first-child::after {
    z-index: 2;
    width: 25px;
    height: 25px;
  }
}
.s-features .rvcol + .rvcol .s-features__box {
  margin-left: auto;
  margin-right: 0;
  padding-left: 10px;
  padding-right: 0;
}
.s-features .decor-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTgxIiBoZWlnaHQ9IjU1NSIgdmlld0JveD0iMCAwIDU4MSA1NTUiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0wIDBIMzAyLjgyQzQ1My4xOSAwIDU3NS42OCAxMTkuNjYgNTgwLjA2IDI2OC45M1YyODUuNThDNTc1LjY4IDQzNC44NCA0NTMuMTggNTU0LjUgMzAyLjgyIDU1NC41SDBWMFoiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  left: 0;
  top: 0;
}
.s-features .decor-2 {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTQ3IiBoZWlnaHQ9IjU0NyIgdmlld0JveD0iMCAwIDU0NyA1NDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik01NDYuOTggNTQ3TDAgNTQ2LjU2NFY1NC43MDg5VjBINTQ3VjAuMDI5NzE3TDI3My41IDI3My41MjVMNTQ2Ljk4IDU0N1oiIGZpbGw9IndoaXRlIi8+Cjwvc3ZnPgo=");
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
}

.s-actions {
  padding: 89px 0 79px 0;
  position: relative;
  color: #fff;
}
@media (max-width: 768px) {
  .s-actions {
    padding: 25px 0;
  }
}
.s-actions .swiper {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.s-actions .swiper .swiper-slide img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.s-actions .container {
  position: relative;
  z-index: 2;
}
.s-actions__title {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.16;
  margin: 0 0 29px 0;
}
@media (max-width: 1340px) {
  .s-actions__title {
    font-size: calc(32px + 16 * (100vw - 430px) / 910);
  }
}
.s-actions__content {
  font-size: 18px;
  line-height: 1.33;
  max-width: 528px;
}
@media (max-width: 1340px) {
  .s-actions__content {
    font-size: calc(14px + 4 * (100vw - 430px) / 910);
  }
}
.s-actions__content p {
  margin: 30px 0px;
}
.s-actions__btns {
  margin-top: 180px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
@media (max-width: 768px) {
  .s-actions__btns {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
}
.s-actions__btns_left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 28px;
}
.s-actions__btns_left .rvbtn {
  width: 220px;
}
@media (max-width: 768px) {
  .s-actions__btns_left {
    display: none;
  }
}
.s-actions__btns_right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 13px;
}

.s-selector__header {
  padding: 79px 0px 40px 0px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .s-selector__header {
    padding: 37px 0 21px;
  }
  .s-selector__header .rvtitle {
    margin-bottom: 0;
  }
}
.s-selector__btns {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.s-selector__btns .sep {
  width: 1px;
  background-color: #f2f1f4;
}
@media (max-width: 768px) {
  .s-selector__btns {
    display: none;
  }
}
.s-selector__btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #c09973;
  gap: 17px;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}
.s-selector__btn:hover {
  color: #2a3e37;
}
.s-selector__btn.active {
  color: #2a3e37;
}
.s-selector__body {
  background-color: #fcf8f0;
  padding: 70px 0px;
}
@media (max-width: 768px) {
  .s-selector__body {
    padding: 29px 0 80px 0;
  }
}
.s-selector__body .filters {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 56px;
}
@media (min-width: 850px) {
  .s-selector__body .filters--finishing {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.s-selector__body .filters .filter__name {
  color: #c09973;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  margin-bottom: 48px;
  height: 30px;
}
.s-selector__body .filters .filter__name--rooms {
  padding-top: 10px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .s-selector__body .filters .filter__name {
    gap: 7px;
  }
}
.s-selector__body .filters .filter__val {
  color: #2a3e37;
  font-size: 22px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: baseline;
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}
.s-selector__body .filters .filter__val input {
  height: 30px;
  width: 40px;
  text-align: right;
}
.s-selector__body .filters .filter__val input:last-child {
  text-align: left;
}
.s-selector__body .filters .filter__sep {
  padding: 0px 10px;
}
.s-selector__body .filters .filter__range {
  margin-right: 15px;
}
.s-selector__body .filters .filter .inps {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border: 1px solid #c09973;
  border: 1px solid #c09973;
}
.s-selector__body .filters .filter .inp {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0;
}
.s-selector__body .filters .filter .inp input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  visibility: hidden;
  opacity: 0;
}
.s-selector__body .filters .filter .inp input + span {
  min-width: 45px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  color: #2a3e37;
  font-size: 15px;
  background-color: #fff;
  padding: 0px 7px;
}
@media (max-width: 1400px) {
  .s-selector__body .filters .filter .inp input + span {
    font-size: 13px;
    min-width: 40px;
  }
}
@media (max-width: 700px) {
  .s-selector__body .filters .filter .inp input + span {
    font-size: 15px;
    min-width: 45px;
  }
}
.s-selector__body .filters .filter .inp input:checked + span {
  background-color: #c09973;
  color: #fff;
}
.s-selector__body .results {
  border-radius: 25px;
  background: #c09973;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 70px;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .s-selector__body .results {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.s-selector__body .results__text {
  text-align: center;
  font-size: 20px;
  color: #ffffff;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media (max-width: 1340px) {
  .s-selector__body .results__text {
    font-size: calc(12px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .s-selector__body .results__text {
    text-align: left;
  }
}
.s-selector__body .results__btn {
  color: #ffffff;
  padding-left: 33px;
  border-left: 1px solid #ffffff;
}
@media (max-width: 580px) {
  .s-selector__body .results__btn {
    padding-left: 10px;
    font-size: 12px;
  }
}
.s-selector__body .sort {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 39px;
  gap: 31px;
}
.s-selector__body .sort__name {
  color: #c09973;
}
.s-selector__body .sort__btn {
  color: #c09973;
}
@media (max-width: 768px) {
  .s-selector__body .sort__btn {
    display: none;
  }
}
.s-selector__body .sort__btn.active {
  color: #2a3e37;
}
.s-selector__body .grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 23px;
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  .s-selector__body .grid {
    margin-bottom: 30px;
  }
}
.s-selector__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.s-selector__footer .rvbtn {
  background-color: #c09973;
  color: #ffffff;
  max-width: 210px;
}
@media (max-width: 768px) {
  .s-selector__footer .rvbtn {
    border-radius: 23px;
    height: 30px;
  }
}

.grid.--columns {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}
.grid.--columns .roomCard {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 0;
}
.grid.--columns .roomCard__body {
  padding: 28px 33px 19px 33px;
  border-bottom: 1px solid #fcf8f0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  text-align: left;
}
.grid.--columns .roomCard__title {
  color: #2a3e37;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 9px;
  grid-column: 2 span;
}
.grid.--columns .roomCard__level {
  font-size: 16px;
  margin-bottom: 9px;
  grid-column: 2 span;
  color: #c09973;
}
.grid.--columns .roomCard__name {
  font-size: 12px;
  margin-bottom: 2px;
  color: #c09973;
}
#apartments_items:not(.--columns) .roomCard__name {
  display: none;
}

.grid.--columns .roomCard__s {
  color: #2a3e37;
  font-size: 20px;
}
.grid.--columns .roomCard__s sup {
  font-size: 0.5em;
}
.grid.--columns .roomCard__count {
  display: none;
}
.grid.--columns .roomCard__type {
  display: none;
}
.grid.--columns .roomCard__price {
  color: #2a3e37;
  font-size: 20px;
}
.grid.--columns .roomCard__btn {
  color: transparent;
  position: absolute;
  right: 60px;
  top: 30px;
}
.grid.--columns .roomCard__poster {
  padding: 37px 10px;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.s-project__header .rvbtn {
  text-wrap: nowrap;
}

.p-select .s-selector__header {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.p-select .s-selector__header .breadcrumbs {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
}

.plan {
  display: grid;
  width: 100%;
  max-width: 100%;
  grid-template-columns: 25% 75%;
}
@media (max-width: 1100px) {
  .plan {
    display: block;
  }
}
.plan__controls {
  background-color: #fcf8f0;
  padding: 46px 54px;
}
@media (max-width: 1100px) {
  .plan__controls {
    background-color: #fff;
    padding: 15px;
    border-bottom: 1px solid #dcc7af;
  }
}
.plan__items {
  list-style: none;
}
@media (max-width: 1100px) {
  .plan__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
  }
}
.plan__items a {
  display: block;
  text-decoration: none;
  color: #2a3e37;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 1340px) {
  .plan__items a {
    font-size: calc(18px + 6 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1100px) {
  .plan__items a {
    margin-bottom: 0;
  }
}
.plan__items a.active {
  color: #c09973;
}
.plan__main {
  background-color: #fff;
  padding: 46px 110px;
}
@media (max-width: 1100px) {
  .plan__main {
    padding: 20px 15px;
  }
}
.plan__tab {
  position: relative;
}
.plan__slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
@media (max-width: 768px) {
  .plan__slide {
    display: block;
  }
}
.plan__slide_body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
.plan__slide_body .prow {
  margin-bottom: 65px;
}
@media (max-width: 1100px) {
  .plan__slide_body .prow {
    margin-bottom: 20px;
  }
}
.plan__slide_body .prow__name {
  margin-bottom: 12px;
  color: #2a3e37;
  font-size: 12px;
}
.plan__slide_body .prow__val {
  color: #2a3e37;
  font-weight: 500;
  font-size: 26px;
}
@media (max-width: 1340px) {
  .plan__slide_body .prow__val {
    font-size: calc(24px + 2 * (100vw - 430px) / 910);
  }
}
.plan__slide_plan {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 50%;
  -ms-flex: 1 1 50%;
  flex: 1 1 50%;
}
.plan__btn {
  margin-top: 118px;
  height: 45px;
  border-radius: 22px;
  border: 1px solid #c09973;
  background: #fff;
  max-width: 178px;
  color: rgb(42, 56, 68);
}
@media (max-width: 768px) {
  .plan__btn {
    position: absolute;
    margin: 0;
    bottom: -60px;
  }
}
.plan .swiper {
  padding-bottom: 10px;
}
.plan .swiper-controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 8px 0 0 0;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
@media (max-width: 768px) {
  .plan .swiper-controls {
    margin-top: 20px;
  }
}
.plan .swiper-pagination {
  color: rgb(158, 163, 169);
}
.plan .swiper-button-prev,
.plan .swiper-button-next {
  border-color: rgb(158, 163, 169);
}
.plan .swiper-button-prev::after,
.plan .swiper-button-next::after {
  color: rgb(158, 163, 169);
}

.p-headcompany-header {
  height: 468px;
  padding-top: 109px;
  position: relative;
  background-color: #bab7c8;
}
@media (max-width: 768px) {
  .p-headcompany-header {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 37px;
    height: auto;
  }
}
.p-headcompany-header__poster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: center right;
  object-position: center right;
}
@media (max-width: 1000px) {
  .p-headcompany-header__poster {
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 768px) {
  .p-headcompany-header__poster {
    position: static;
    display: block;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2;
    -o-object-position: center top;
    object-position: center top;
  }
}
.p-headcompany-header .container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #c09973;
  border-radius: 0 350px 350px 0;
  z-index: 1;
}
@media (max-width: 1000px) {
  .p-headcompany-header .container::before {
    width: 70%;
  }
}
@media (max-width: 768px) {
  .p-headcompany-header .container::before {
    width: 100%;
    border-radius: 0;
    height: 207px;
  }
}
.p-headcompany-header .container::after {
  z-index: 2;
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3Csvg width='260' height='131' viewBox='0 0 260 131' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M260 0.359985H129.7V0.380005C58.2901 1 0.580078 58.82 0.580078 130.06H130.88C202.3 129.42 260 71.6 260 0.359985Z' fill='%23022A53'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 259px;
  height: 130px;
  bottom: 0;
  left: 0;
}
@media (max-width: 768px) {
  .p-headcompany-header .container::after {
    width: 150px;
    height: 75px;
    bottom: auto;
    top: 133px;
  }
}
@media (max-width: 768px) {
  .p-headcompany-header .container {
    padding-bottom: 65px;
  }
}
.p-headcompany-header__title {
  color: #fff;
  font-size: 22px;
  color: #fff;
  position: relative;
  z-index: 3;
  max-width: 416px;
}
@media (max-width: 1340px) {
  .p-headcompany-header__title {
    font-size: calc(14px + 8 * (100vw - 430px) / 910);
  }
}
.p-headcompany-header__title--realtor {
  font-size: 28px;
}
@media (max-width: 1340px) {
  .p-headcompany-header__title--realtor {
    font-size: calc(14px + 14 * (100vw - 430px) / 910);
  }
}
.p-headcompany-header__text {
  color: #fff;
  font-size: 22px;
  position: relative;
  z-index: 3;
  max-width: 529px;
}
@media (max-width: 1340px) {
  .p-headcompany-header__text {
    font-size: calc(14px + 8 * (100vw - 430px) / 910);
  }
}

.p-headcompany-content {
  padding: 84px 0 40px;
  background-color: #fcf8f0;
}
@media (max-width: 768px) {
  .p-headcompany-content {
    padding: 33px 0 33px;
  }
}
.p-headcompany-content .content {
  max-width: 1000px;
  margin: 0 auto 70px;
  font-size: 16px;
  color: #2a3e37;
  line-height: 1.5;
}
@media (max-width: 1340px) {
  .p-headcompany-content .content {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .p-headcompany-content .content {
    margin-bottom: 30px;
  }
}

.p-comercia__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
.p-comercia__left {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 123px;
  -ms-flex: 0 0 123px;
  flex: 0 0 123px;
}
@media (max-width: 768px) {
  .p-comercia__left {
    display: none;
  }
}
.p-comercia__main {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  position: relative;
}
.p-comercia__main .title {
  color: #2a3e37;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  margin-bottom: 10px;
}
@media (max-width: 1340px) {
  .p-comercia__main .title {
    font-size: calc(18px + 14 * (100vw - 430px) / 910);
  }
}

.cloud {
  display: block;
  position: absolute;
  left: 50%;
  top: 30%;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  max-width: 373px;
  z-index: 10;
  width: 100%;
}
@media (max-width: 768px) {
  .cloud {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.cloud__title {
  padding: 23px;
  color: #2a3e37;
  font-size: 24px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.16;
  border-bottom: 2px solid #dcc7af;
}
@media (max-width: 1340px) {
  .cloud__title {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .cloud__title {
    padding: 15px;
  }
}
.cloud__body {
  padding: 25px 23px;
  color: #2a3e37;
  font-size: 12px;
  font-weight: 600;
  border-bottom: 2px solid #dcc7af;
}
@media (max-width: 768px) {
  .cloud__body {
    padding: 15px;
  }
}
.cloud__footer {
  padding: 20px 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: 2px solid #dcc7af;
  font-weight: 600;
  color: #2a3e37;
  font-size: 20px;
}
@media (max-width: 1340px) {
  .cloud__footer {
    font-size: calc(14px + 6 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .cloud__footer {
    padding: 15px;
  }
}
.cloud__btn {
  padding: 23px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.cloud__btn .rvbtn {
  max-width: 132px;
}
@media (max-width: 768px) {
  .cloud__btn {
    padding: 15px;
  }
}

.s-hod {
  background-color: #fcf8f0;
  padding: 87px 0 47px 0px;
}
.s-hod__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 32px;
}
@media (max-width: 768px) {
  .s-hod__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
@media (max-width: 580px) {
  .s-hod__grid {
    gap: 18px;
  }
}
.s-hod__item {
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.s-hod__item_poster {
  position: relative;
  padding-bottom: 69%;
}
.s-hod__item_poster img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.s-hod__item_body {
  padding: 35px 17px;
  background-color: #fff;
  border: 2px solid #fff;
  border-top: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 0 0 25px 25px;
}
@media (max-width: 580px) {
  .s-hod__item_body {
    padding: 16px;
  }
}
.s-hod__item_date {
  color: #2a3e37;
  text-align: center;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 24px;
}
@media (max-width: 1340px) {
  .s-hod__item_date {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
.s-hod__item_count {
  color: #2a3e37;
  text-align: center;
  padding: 7px 25px;
  background-color: #fcf8f0;
  border-radius: 16px;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  font-size: 12px;
}
@media (max-width: 1340px) {
  .s-hod__item_count {
    font-size: calc(10px + 2 * (100vw - 430px) / 910);
  }
}
.s-hod__item:hover .s-hod__item_date {
  color: #c09973;
}
.s-hod__item:hover .s-hod__item_body {
  border-color: #c09973;
}
.s-hod__item:hover .s-hod__item_count {
  background-color: #fff2d9;
}
.s-hod__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 37px 0px 61px 0px;
}
.s-hod__footer .rvbtn {
  border-radius: 23px;
  padding: 13px;
  max-width: 210px;
  border-color: #c09973;
  color: #2a3e37;
}

#page_hotel .s-actions {
  padding: 0px;
}
#page_hotel .s-actions .container {
  min-height: 700px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-bottom: 80px;
}
@media (max-width: 768px) {
  #page_hotel .s-actions .container {
    min-height: 300px;
    padding-bottom: 20px;
  }
}

.p-hotel__page {
  padding: 44px 0px;
  background-color: #fcf8f0;
}
@media (max-width: 768px) {
  .p-hotel__page {
    padding: 20px 0px;
  }
}
.p-hotel__section {
  border-bottom: 2px solid #dcc7af;
  padding: 66px 0px;
}
.p-hotel__section:first-child {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTE1IiBoZWlnaHQ9IjI1OCIgdmlld0JveD0iMCAwIDUxNSAyNTgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik0yNTYuMzQgMFYwLjAzQzExNC41NiAxLjI3IDAgMTE2LjA1IDAgMjU3LjQ4SDI1OC42NlYyNTcuNDVDNDAwLjQ0IDI1Ni4yMSA1MTUgMTQxLjQzIDUxNSAwTDI1Ni4zNCAwWiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-position: bottom left;
}
.p-hotel__section:nth-child(2) {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDQ2IiBoZWlnaHQ9IjQ0OCIgdmlld0JveD0iMCAwIDQ0NiA0NDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMF8xN180NzA1MCkiPgo8ZyBvcGFjaXR5PSIwLjUiPgo8cGF0aCBkPSJNNDQ1LjkzIDQ0Ny45N0gwVjBDMjQ2LjI4IDAgNDQ1LjkzIDIwMC41NyA0NDUuOTMgNDQ3Ljk3WiIgZmlsbD0id2hpdGUiLz4KPC9nPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzE3XzQ3MDUwIj4KPHJlY3Qgd2lkdGg9IjQ0NS45MyIgaGVpZ2h0PSI0NDcuOTciIGZpbGw9IndoaXRlIi8+CjwvY2xpcFBhdGg+CjwvZGVmcz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-position: bottom left;
}
.p-hotel__section .container {
  display: grid;
  grid-template-columns: 415px auto;
  gap: 100px;
}
@media (max-width: 1000px) {
  .p-hotel__section .container {
    grid-template-columns: 340px auto;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .p-hotel__section .container {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .p-hotel__section {
    background-image: none;
    padding: 30px 0px;
  }
}
.p-hotel__section_left .title {
  color: #2a3e37;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 1340px) {
  .p-hotel__section_left .title {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
.p-hotel__section_left .title--security {
  font-size: 32px;
}
@media (max-width: 1340px) {
  .p-hotel__section_left .title--security {
    font-size: calc(18px + 14 * (100vw - 430px) / 910);
  }
}
.p-hotel__section_left .span {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 20px 30px;
  border-radius: 20px;
  background: #c09973;
}
.p-hotel__section_body {
  border-radius: 20px;
  border: 1px solid #dcc7af;
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  padding: 50px;
  font-size: 16px;
  color: #2a3e37;
}
@media (max-width: 768px) {
  .p-hotel__section_body {
    padding: 23px 20px;
  }
}
@media (max-width: 1340px) {
  .p-hotel__section_body {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}
.p-hotel__section_body h2 {
  font-size: 18px;
  color: #2a3e37;
  margin-bottom: 0px;
}
.p-hotel__section_body h2 + p {
  margin-top: 0.5em;
}
.p-hotel__footer {
  background-color: #fff;
  padding: 40px 0;
}

.p-hotel-header {
  height: 549px;
  position: relative;
}
@media (max-width: 768px) {
  .p-hotel-header {
    height: 244px;
  }
}
.p-hotel-header__poster {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 1;
}
.p-hotel-header__decor {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: 0;
}
@media (max-width: 768px) {
  .p-hotel-header__decor {
    height: 60px;
  }
}

.p-invest__header {
  padding-bottom: 36%;
  min-height: 244px;
  position: relative;
}
.p-invest__header_bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-invest__header_decor {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 218px;
  width: auto;
}
@media (max-width: 1340px) {
  .p-invest__header_decor {
    height: calc(60px + 158 * (100vw - 430px) / 910);
  }
}
.p-invest__body {
  background-color: #fcf8f0;
  line-height: 1.5;
}
.p-invest__body_title {
  max-width: 415px;
  margin-bottom: 27px;
  color: #2a3e37;
  font-weight: 600;
  font-size: 32px;
}
@media (max-width: 1340px) {
  .p-invest__body_title {
    font-size: calc(18px + 14 * (100vw - 430px) / 910);
  }
}
.p-invest__body_text {
  padding: 50px;
  background-color: #fff;
  border: 1px solid #dcc7af;
  -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 25px;
  font-size: 16px;
}
@media (max-width: 1340px) {
  .p-invest__body_text {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}
.p-invest__body_text h1,
.p-invest__body_text h2,
.p-invest__body_text h3,
.p-invest__body_text h4,
.p-invest__body_text h5,
.p-invest__body_text h6,
.p-invest__body_text p {
  margin-bottom: 30px;
}
.p-invest__body_text ul {
  padding-left: 1.5em;
}
.p-invest__body_text ol {
  padding-left: 1em;
}
@media (max-width: 580px) {
  .p-invest__body_text {
    padding: 24px 18px;
    padding-left: 40px;
  }
}
.p-invest__body_text table {
  width: auto !important;
  height: auto !important;
}
.p-invest__body_text table td {
  width: auto !important;
  height: auto !important;
}
.p-invest__body_span {
  padding: 25px 30px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  background-color: #c09973;
  border-radius: 20px;
  max-width: 415px;
}
.p-invest__body .--row {
  padding: 72px 0px;
  border-bottom: 1px solid #dcc7af;
}
@media (max-width: 580px) {
  .p-invest__body .--row {
    padding: 29px 0px;
  }
}
.p-invest__body .--row:last-child {
  border-bottom: none;
}
.p-invest__body .--row .container {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 100px;
}
@media (max-width: 768px) {
  .p-invest__body .--row .container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.p-level {
  background-color: #fcf8f0;
  padding: 50px 0px;
}
.p-level__wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
}
.p-level__body {
  position: relative;
}
.p-level__body .rvtitle {
  text-align: center;
  margin-bottom: 10px;
}
.p-level__body .cloud {
  max-width: 260px;
  padding: 15px;
}
.p-level__actions .name {
  color: #c09973;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 13px;
  text-align: center;
}
.p-level__actions .swiper-controls {
  border-radius: 35px;
  background: #dcc7af;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  padding: 9px;
  height: 500px;
}
.p-level__actions .swiper-next,
.p-level__actions .swiper-prev {
  background-color: #dcc7af;
  color: rgb(110, 112, 114);
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHdpZHRoPScxNycgaGVpZ2h0PScxMCcgdmlld0JveD0nMCAwIDE3IDEwJyBmaWxsPSdub25lJz48ZyBjbGlwLXBhdGg9J3VybCgjY2xpcDBfMTNfNzE4MyknPjxwYXRoIGQ9J00xNC44MyA5LjUzTDguMTIgMi44M0wxLjQxIDkuNTNMMCA4LjEyTDguMTIgMEwxNi4yNCA4LjEyTDE0LjgzIDkuNTNaJyBmaWxsPScjNkU3MDcyJy8+PC9nPjxkZWZzPjxjbGlwUGF0aCBpZD0nY2xpcDBfMTNfNzE4Myc+PHJlY3Qgd2lkdGg9JzE2LjI0JyBoZWlnaHQ9JzkuNTMnIGZpbGw9J3doaXRlJy8+PC9jbGlwUGF0aD48L2RlZnM+PC9zdmc+");
  background-repeat: no-repeat;
  background-position: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 45px;
  -ms-flex: 0 0 45px;
  flex: 0 0 45px;
  cursor: pointer;
}
.p-level__actions .swiper-next {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.p-level__actions .swiper-slide a,
.p-level__actions .swiper-slide span {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: #fff;
  text-decoration: none;
  color: #2a3e37;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.p-level__actions .swiper-slide a:hover,
.p-level__actions .swiper-slide span:hover {
  background-color: rgba(192, 153, 115, 0.5);
}
.p-level__actions .swiper-slide a.active,
.p-level__actions .swiper-slide span.active {
  background-color: #c09973;
}
.p-level__actions .swiper-slide span:not(.active) {
  background-color: #bdc6c7 !important;
}

.cloud {
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.cloud.show {
  opacity: 1;
}
.cloud__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 20px;
}
.cloud__row span:first-child {
  color: #c09973;
  font-size: 14px;
  font-weight: 600;
}
.cloud__row span:last-child {
  color: #2a3e37;
  font-size: 22px;
  font-weight: 600;
}
.cloud__row span.small {
  font-size: 14px;
}

.floor_plan {
  position: relative;
}

@media (max-width: 768px) {
  .p-news {
    background-color: #fcf8f0;
  }
}
.p-news__grid {
  border-radius: 20px 20px 0 0;
  background: #fcf8f0;
  margin-bottom: 42px;
  overflow: hidden;
}
@media (max-width: 580px) {
  .p-news__grid {
    margin-bottom: 28px;
  }
}
.p-news__item {
  display: block;
  text-decoration: none;
  padding: 60px 20px;
  border-bottom: 2px solid #dcc7af;
  -webkit-transition: 0.4s background;
  transition: 0.4s background;
}
.p-news__item:last-child {
  border-bottom: none;
}
.p-news__item:hover {
  background-color: #ede7da;
}
@media (max-width: 768px) {
  .p-news__item {
    padding: 30px 20px;
  }
}
@media (max-width: 580px) {
  .p-news__item:last-child {
    border-bottom: 1px solid #dcc7af;
  }
}
.p-news__item_wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: 140px auto;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}
@media (max-width: 768px) {
  .p-news__item_wrapper {
    grid-template-columns: 1fr;
  }
}
.p-news__item_date {
  color: #2a3e37;
  font-weight: 400;
  font-size: 24px;
}
@media (max-width: 1340px) {
  .p-news__item_date {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
.p-news__item_label {
  margin-bottom: 32px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  padding: 6px 12px;
  border-radius: 18px;
  background: #2a3e37;
  display: inline-block;
}
@media (max-width: 1340px) {
  .p-news__item_label {
    font-size: calc(10px + 2 * (100vw - 430px) / 910);
  }
}
.p-news__item_label.--orange {
  background-color: #c09973;
}
@media (max-width: 768px) {
  .p-news__item_label {
    margin-bottom: 0;
    position: absolute;
    right: 0;
    top: 0px;
  }
}
.p-news__item_title {
  color: #2a3e37;
  font-size: 32px;
  line-height: 1.12;
  margin-bottom: 19px;
}
@media (max-width: 1340px) {
  .p-news__item_title {
    font-size: calc(18px + 14 * (100vw - 430px) / 910);
  }
}
.p-news__item_text {
  color: #2a3e37;
  font-size: 16px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .p-news__item_text {
    display: none;
  }
}
.p-news__footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-bottom: 41px;
}
.p-news__footer .rvbtn {
  color: #2a3e37;
  border-color: #2a3e37;
  max-width: 210px;
}
@media (max-width: 768px) {
  .p-news__footer .rvbtn {
    height: 30px;
    border-radius: 23px;
  }
}

.p-news-single .container {
  max-width: 864px;
}
.p-news-single__header {
  background-color: #fff;
}
.p-news-single__header .date {
  margin-bottom: 33px;
  font-size: 18px;
  color: #2a3e37;
}
@media (max-width: 1340px) {
  .p-news-single__header .date {
    font-size: calc(14px + 4 * (100vw - 430px) / 910);
  }
}
.p-news-single__header .poster {
  border-radius: 20px;
  overflow: hidden;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: -60px;
}
.p-news-single__body {
  background-color: #fcf8f0;
  background-image: url("../img/news/line.png");
  background-repeat: repeat-x;
  background-position: top left;
  font-size: 16px;
  padding: 120px 0px 60px;
  color: #2a3e37;
}
@media (max-width: 1340px) {
  .p-news-single__body {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}
.p-news-single__body p {
  margin: 20px 0px;
}

.p-otdelka {
  background-color: #fcf8f0;
  padding: 30px 0px;
}
.p-otdelka__item {
  border-radius: 20px;
  border: 1px solid #dcc7af;
  background: #fff;
  -webkit-box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.1);
  margin-bottom: 47px;
  padding: 40px;
}
@media (max-width: 768px) {
  .p-otdelka__item {
    padding: 22px 0px;
  }
}
.p-otdelka__item_header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 40px;
}
.p-otdelka__item_header .title {
  color: #2a3e37;
  font-size: 28px;
}
@media (max-width: 1340px) {
  .p-otdelka__item_header .title {
    font-size: calc(18px + 10 * (100vw - 430px) / 910);
  }
}
.p-otdelka__item_header .rvbtn {
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
  max-width: 206px;
}
@media (max-width: 768px) {
  .p-otdelka__item_header .rvbtn {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-otdelka__item_header {
    margin-bottom: 25px;
    padding: 0px 24px 24px;
    border-bottom: 1px solid #dcc7af;
  }
}
.p-otdelka__item_variation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .p-otdelka__item_variation {
    grid-template-columns: 1fr;
  }
}
.p-otdelka__item_variant {
  border-radius: 10px;
  background: #fcf8f0;
  display: grid;
  grid-template-columns: 200px auto;
  gap: 38px;
  -webkit-box-shadow: 0px 4px 15px 0px transparent;
  box-shadow: 0px 4px 15px 0px transparent;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
  cursor: pointer;
  text-decoration: none;
}
@media (max-width: 1000px) {
  .p-otdelka__item_variant {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .p-otdelka__item_variant {
    grid-template-columns: 1fr;
    border-bottom: 1px solid #dcc7af;
    padding: 0px;
    background-color: #fff;
    border-radius: 0;
  }
  .p-otdelka__item_variant:last-child {
    border-bottom: none;
  }
}
.p-otdelka__item_variant .name {
  color: #2a3e37;
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 30px;
}
@media (max-width: 1340px) {
  .p-otdelka__item_variant .name {
    font-size: calc(16px + 5 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .p-otdelka__item_variant .name {
    margin: 0;
  }
}
.p-otdelka__item_variant .span {
  padding: 7px 25px;
  border-radius: 16px;
  background: #dcc7af;
  color: #2a3e37;
  text-align: center;
  font-size: 12px;
}
@media (max-width: 1340px) {
  .p-otdelka__item_variant .span {
    font-size: calc(10px + 2 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .p-otdelka__item_variant .span {
    padding: 7px;
  }
}
.p-otdelka__item_variant img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  min-height: 246px;
}
.p-otdelka__item_variant:hover {
  border-color: #c09973;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
}
.p-otdelka__item_body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 29px 0px 29px 34px;
}
@media (max-width: 768px) {
  .p-otdelka__item_body {
    padding: 0 22px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
  }
  .p-otdelka__item_body img {
    border-radius: 0px;
  }
}

.p-otdelka__item_footer {
  display: none;
}
@media (max-width: 768px) {
  .p-otdelka__item_footer {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 16px;
  }
  .p-otdelka__item_footer .rvbtn {
    max-width: 160px;
    height: 40px;
  }
}

.p-pursh-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .p-pursh-header {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.p-pursh-header__poster {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  padding-left: calc((100vw - (1340px)) / 2);
  position: relative;
}
@media (max-width: 1340px) {
  .p-pursh-header__poster {
    padding-left: 15px;
  }
}
@media (max-width: 1000px) {
  .p-pursh-header__poster {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    height: 500px;
  }
}
.p-pursh-header__poster img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-pursh-header__body {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60%;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  padding-top: 80px;
  padding-left: 110px;
  padding-bottom: 80px;
  padding-right: calc((100vw - (1340px)) / 2);
  background-color: #fcf8f0;
  position: relative;
  overflow: hidden;
}
.p-pursh-header__body::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #fcf8f0;
}
.p-pursh-header__body::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 800px;
  height: 800px;
  background: #ede7da;
  -webkit-transform: translate(50%, -50%) rotate(45deg);
  -ms-transform: translate(50%, -50%) rotate(45deg);
  transform: translate(50%, -50%) rotate(45deg);
}
@media (max-width: 1340px) {
  .p-pursh-header__body {
    padding-right: 15px;
  }
}
@media (max-width: 580px) {
  .p-pursh-header__body {
    padding-left: 15px;
  }
}
.p-pursh-header__body_wrap {
  position: relative;
  z-index: 4;
}
.p-pursh-header__body .title {
  font-size: 24px;
  font-weight: 600;
  color: #2a3e37;
  max-width: 700px;
  margin-bottom: 50px;
}
@media (max-width: 1340px) {
  .p-pursh-header__body .title {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1000px) {
  .p-pursh-header__body {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
.p-pursh-header__body .list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 25px;
}
.p-pursh-header__body .list__item {
  position: relative;
  padding-left: 70px;
}
.p-pursh-header__body .list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='19' height='19' viewBox='0 0 19 19' fill='none'%3E%3Cg clip-path='url(%23clip0_16_46703)'%3E%3Cpath d='M2.73016 15.8001C-0.899836 12.1701 -0.919836 6.31005 2.69016 2.70005C6.30016 -0.909948 12.1602 -0.889949 15.7902 2.74005L2.73016 15.8001Z' fill='%23022A53'/%3E%3Cpath d='M6.68005 11.8401C5.25005 10.4101 5.24005 8.09008 6.67005 6.67008C8.09005 5.25008 10.4101 5.25008 11.8401 6.68008L6.68005 11.8401Z' fill='%23C09973'/%3E%3Cpath d='M15.77 2.69995C19.4 6.32995 19.42 12.19 15.81 15.8C12.2 19.41 6.33996 19.39 2.70996 15.76L15.77 2.69995Z' fill='%23022A53'/%3E%3Cpath d='M11.8202 6.65991C13.2502 8.08991 13.2602 10.4099 11.8302 11.8299C10.4102 13.2499 8.09016 13.2499 6.66016 11.8199L11.8202 6.65991Z' fill='%23C09973'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_16_46703'%3E%3Crect width='18.5' height='18.5' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 19px;
  height: 19px;
}
.p-pursh-header__body .list__item_title {
  color: #2a3e37;
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}
@media (max-width: 1340px) {
  .p-pursh-header__body .list__item_title {
    font-size: calc(24px + 8 * (100vw - 430px) / 910);
  }
}
.p-pursh-header__body .list__item_text {
  color: #c09973;
  font-size: 16px;
  font-weight: 300;
  max-width: 512px;
}
@media (max-width: 1340px) {
  .p-pursh-header__body .list__item_text {
    font-size: calc(12px + 4 * (100vw - 430px) / 910);
  }
}

.p-pursh-main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1000px) {
  .p-pursh-main {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-pursh-main__values {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 40%;
  -ms-flex: 0 0 40%;
  flex: 0 0 40%;
  padding-left: calc((100vw - (1340px)) / 2);
  padding-top: 87px;
  padding-bottom: 87px;
}
@media (max-width: 1340px) {
  .p-pursh-main__values {
    padding-left: 15px;
  }
}
@media (max-width: 1000px) {
  .p-pursh-main__values {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
}
@media (max-width: 768px) {
  .p-pursh-main__values {
    padding-top: 31px;
    padding-bottom: 40px;
    background-color: #fff;
  }
}
.p-pursh-main__values .items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
  max-width: 338px;
}
.p-pursh-main__values .item__title {
  font-size: 16px;
  margin-bottom: 2px;
  color: #2a3e37;
}
@media (max-width: 1340px) {
  .p-pursh-main__values .item__title {
    font-size: calc(12px + 4 * (100vw - 430px) / 910);
  }
}
.p-pursh-main__values .item__title span {
  color: #c09973;
}
.p-pursh-main__values .item__value {
  color: #2a3e37;
  font-size: 32px;
  margin-bottom: 30px;
}
@media (max-width: 1340px) {
  .p-pursh-main__values .item__value {
    font-size: calc(24px + 8 * (100vw - 430px) / 910);
  }
}
.p-pursh-main__content {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 60%;
  -ms-flex: 0 0 60%;
  flex: 0 0 60%;
  max-width: 60%;
  background-color: #2a3e37;
  padding-top: 80px;
  padding-bottom: 80px;
  padding-left: 80px;
  padding-right: calc((100vw - (1340px)) / 2);
  color: #fff;
  font-size: 16px;
}
.p-pursh-main__content.blue {
  background-color: #2a3e37;
}
@media (max-width: 1340px) {
  .p-pursh-main__content {
    padding-right: 15px;
  }
}
@media (max-width: 1000px) {
  .p-pursh-main__content {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-right: 15px;
    max-width: 100%;
    background: -webkit-gradient(
      linear,
      left top,
      left bottom,
      color-stop(95%, #2a3e37),
      color-stop(95%, #fcf8f0)
    );
    background: linear-gradient(180deg, #2a3e37 95%, #fcf8f0 95%);
  }
}
@media (max-width: 580px) {
  .p-pursh-main__content {
    padding-left: 15px;
    padding-top: 29px;
    padding-bottom: 71px;
  }
}
.p-pursh-main__content .title {
  font-size: 28px;
  margin-bottom: 16px;
  max-width: 531px;
  font-weight: 600;
}
@media (max-width: 1340px) {
  .p-pursh-main__content .title {
    font-size: calc(16px + 12 * (100vw - 430px) / 910);
  }
}
.p-pursh-main__content .text {
  max-width: 531px;
  display: inline-block;
}
.p-pursh-main__content .swiper-controls {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 580px) {
  .p-pursh-main__content .swiper-controls {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    margin: 20px 0 0 0;
  }
}
.p-pursh-main__content .swiper {
  margin-top: 30px;
  width: 100%;
}

.bankcard {
  border-radius: 10px;
  background: #fff;
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.bankcard img {
  height: 50px;
  max-width: 100px;
  -o-object-fit: contain;
  object-fit: contain;
}
.bankcard .name {
  color: #2a3e37;
  font-size: 16px;
}
.bankcard .val {
  color: #2a3e37;
  font-size: 22px;
}
@media (max-width: 1340px) {
  .bankcard .val {
    font-size: calc(16px + 6 * (100vw - 430px) / 910);
  }
}
.bankcard .percent {
  color: #2a3e37;
  font-size: 22px;
  font-weight: 400;
}
@media (max-width: 1340px) {
  .bankcard .percent {
    font-size: calc(16px + 6 * (100vw - 430px) / 910);
  }
}
.bankcard .percent--small {
  font-size: 16px;
}
@media (max-width: 1340px) {
  .bankcard .percent--small {
    font-size: calc(13px + 3 * (100vw - 430px) / 910);
  }
}
@media (max-width: 768px) {
  .bankcard {
    grid-template-columns: 1fr;
  }
  .bankcard .col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.p-pursh-item__btn {
  width: 210px;
  height: 46px;
  background-color: #c09973;
  border-radius: 20px;
}
@media (max-width: 580px) {
  .p-pursh-item__btn {
    width: 160px;
    height: 40px;
  }
}

.mfp-container {
  padding: 0;
}

.mfp-close {
  font-size: 0;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjgiIGhlaWdodD0iMjgiIHZpZXdCb3g9IjAgMCAyOCAyOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwXzY4Xzg0NDMzKSI+CjxwYXRoIGQ9Ik0yNy41Nzg1IDI2LjE2NjRMMS40MTU1MyAwLjAwMzQxNzk3TDAuMDAxMzEzODEgMS40MTc2M0wyNi4xNjQzIDI3LjU4MDZMMjcuNTc4NSAyNi4xNjY0WiIgZmlsbD0iIzAyMkE1MyIvPgo8cGF0aCBkPSJNMS40MTM3MSAyNy41Nzg1TDI3LjU3NjcgMS40MTU1M0wyNi4xNjI0IDAuMDAxMzEzODFMLTAuMDAwNTAzODM4IDI2LjE2NDNMMS40MTM3MSAyNy41Nzg1WiIgZmlsbD0iIzAyMkE1MyIvPgo8L2c+CjxkZWZzPgo8Y2xpcFBhdGggaWQ9ImNsaXAwXzY4Xzg0NDMzIj4KPHJlY3Qgd2lkdGg9IjI3LjU4IiBoZWlnaHQ9IjI3LjU4IiBmaWxsPSJ3aGl0ZSIvPgo8L2NsaXBQYXRoPgo8L2RlZnM+Cjwvc3ZnPgo=") !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  width: 27px;
  height: 27px;
  top: 15px;
  right: 15px;
}
.mfp-close:active {
  top: 15px;
}

.rvpopup {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #fcf8f0 url("../img/popup/bg.svg") no-repeat center/cover;
  overflow-y: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
  max-width: 740px;
  max-height: 580px;
  margin: auto;
}
@media (max-width: 580px) {
  .rvpopup {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 96px;
  }
}
.rvpopup__form {
  max-width: 415px;
}
.rvpopup__form_title {
  color: #2a3e37;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}
@media (max-width: 1340px) {
  .rvpopup__form_title {
    font-size: calc(28px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1340px) {
  .rvpopup__form_title {
    margin-bottom: calc(8px + 12 * (100vw - 430px) / 910);
  }
}
.rvpopup__form_text {
  color: #2a3e37;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.16;
  margin-bottom: 40px;
}
@media (max-width: 1340px) {
  .rvpopup__form_text {
    font-size: calc(16px + 8 * (100vw - 430px) / 910);
  }
}
@media (max-width: 1340px) {
  .rvpopup__form_text {
    margin-bottom: calc(20px + 20 * (100vw - 430px) / 910);
  }
}
.rvpopup__form_form {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
}
@media (max-width: 580px) {
  .rvpopup__form_form {
    gap: 17px;
  }
}
.rvpopup__form_form .textbox {
  width: 100%;
  border-radius: 25px;
  height: 50px;
  border: 1px solid #c6cbcf;
  background: #fff;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(37, 83, 157, 0.15);
  box-shadow: 0px 4px 10px 0px rgba(37, 83, 157, 0.15);
  padding: 12px 24px;
  font-size: 14px;
  color: #000;
}
.rvpopup__form_form .textbox::-webkit-input-placeholder {
  color: #c09973;
}
.rvpopup__form_form .textbox::-moz-placeholder {
  color: #c09973;
}
.rvpopup__form_form .textbox:-ms-input-placeholder {
  color: #c09973;
}
.rvpopup__form_form .textbox::-ms-input-placeholder {
  color: #c09973;
}
.rvpopup__form_form .textbox::placeholder {
  color: #c09973;
}
.rvpopup__form_form .rvbtn {
  margin-top: 19px;
  text-transform: uppercase;
  font-size: 16px;
  background-color: #c09973;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(37, 83, 157, 0.15);
  box-shadow: 0px 4px 10px 0px rgba(37, 83, 157, 0.15);
  border-radius: 25px;
}
@media (max-width: 1340px) {
  .rvpopup__form_form .rvbtn {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}
@media (max-width: 580px) {
  .rvpopup__form_form .rvbtn {
    margin-top: 0;
    padding: 9px;
  }
}
.rvpopup a {
  text-decoration: underline;
}

.agr {
  position: relative;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  font-size: 12px;
}
.agr input {
  position: absolute;
  left: 0;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
  visibility: hidden;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.agr input + span {
  display: block;
  background-color: #fff;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #acabae;
  position: relative;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 20px;
  -ms-flex: 0 0 20px;
  flex: 0 0 20px;
}
.agr input + span::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #2a3e37;
  display: none;
  border-radius: 50%;
}
.agr input:checked + span:before {
  display: block;
}

.twc_text {
  gap: 80px;
}
@media (min-width: 850px) {
  .twc_text {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.twc_text___box {
  padding-bottom: 100px;
}
#page_commercial_real_estate .twc_text___box {
  padding-top: 60px;
}
@media (max-width: 849px) {
  #page_commercial_real_estate .twc_text___box {
    padding-top: 20px;
  }
}

@media (max-width: 849px) {
  .twc_text___box {
    padding-bottom: 50px;
  }
}
.twc_text__title {
  color: #2a3e37;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
}
@media (max-width: 1340px) {
  .twc_text__title {
    font-size: calc(18px + 14 * (100vw - 430px) / 910);
  }
}
@media (min-width: 850px) {
  .twc_text__title {
    width: 30%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
#page_commercial_real_estate .twc_text__title {
  font-weight: 400;
  font-size: 16px;
}
@media (max-width: 1340px) {
  #page_commercial_real_estate .twc_text__title {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}

@media (max-width: 849px) {
  .twc_text__title {
    padding-bottom: 20px;
  }
}
.twc_text__description {
  font-size: 16px;
  color: #2a3e37;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
@media (max-width: 1340px) {
  .twc_text__description {
    font-size: calc(14px + 2 * (100vw - 430px) / 910);
  }
}
.twc_text ul:not(:first-child) {
  margin: 1em 0;
}
.twc_text li {
  list-style: disc outside none;
  display: list-item;
  margin-left: 1em;
}

#page_apartment_print {
  overflow: hidden;
}
#page_apartment_print .document {
  width: 100vw;
  height: 100vh;
}
#page_apartment_print .document .document_content {
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  padding: 0px 5vw;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  height: 81vh;
}
#page_apartment_print .document .document_content .apartment_info {
  width: 45%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#page_apartment_print
  .document
  .document_content
  .apartment_info
  .apartment_info--caption {
  font-size: 2.4888888889vw;
  font-weight: 500;
  border-bottom: 1px solid #d2e6e6;
  padding-bottom: 1.1555555556vw;
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
#page_apartment_print
  .document
  .document_content
  .apartment_info
  .apartment_info--caption_separator {
  height: 2vw;
  margin-right: 3vw;
  margin-left: 7.3vw;
  border-left: 1px solid #2a3e37;
}
#page_apartment_print
  .document
  .document_content
  .apartment_info
  .apartment_info--caption_floor {
  font-size: 2vw;
}
#page_apartment_print
  .document
  .document_content
  .apartment_info
  .apartment_info--row {
  display: -webkit-box;
  -webkit-box-align: start;
  -webkit-box-pack: justify;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  border-bottom: 1px solid #d2e6e6;
  padding: 1.7777777778vw;
}
#page_apartment_print
  .document
  .document_content
  .apartment_info
  .apartment_info--row
  .apartment_info--column {
  text-align: left;
  width: 40%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#page_apartment_print
  .document
  .document_content
  .apartment_info
  .apartment_info--row
  .apartment_info--column
  .apartment_info--title {
  font-size: 0.9777777778vw;
  color: #6e7072;
  font-weight: 300;
  margin-bottom: 0.5vw;
}
#page_apartment_print
  .document
  .document_content
  .apartment_info
  .apartment_info--row
  .apartment_info--column
  .apartment_info--value {
  font-size: 1.8666666667vw;
  white-space: nowrap;
}
#page_apartment_print .document .document_content .apartment_plan {
  width: 30%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
#page_apartment_print .document .document_content .apartment_plan img {
  -webkit-transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 120%;
}
#page_apartment_print .document .document_content .apartment_floor {
  position: relative;
  width: 25%;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#page_apartment_print
  .document
  .document_content
  .apartment_floor
  .apartment_floor--outlines {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}
#page_apartment_print
  .document
  .document_content
  .apartment_floor
  .apartment_floor--outlines
  .apartment {
  opacity: 0;
}
#page_apartment_print
  .document
  .document_content
  .apartment_floor
  .apartment_floor--outlines
  .apartment.current {
  opacity: 0.5;
}
#page_apartment_print .document .document_content .apartment_info--position {
  position: absolute;
  top: 2vw;
  right: 8vw;
  font-size: 7.8222222222vw;
}
#page_apartment_print
  .document
  .document_content
  .apartment_info--position.dir_180 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
#page_apartment_print
  .document
  .document_content
  .apartment_info--position.dir_cclock_90 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
#page_apartment_print
  .document
  .document_content
  .apartment_info--position.dir_clock_90 {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#page_apartment_print .document .document_footer {
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  padding: 0px 5vw;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background: #2a3e37;
  height: 19vh;
  color: #b2c1c7;
}
#page_apartment_print .document .document_footer ._c__document_footer {
  display: -webkit-box;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  width: 45vw;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
#page_apartment_print .document .document_footer .document_footer--logo {
  margin-top: 3vw;
  background: url("../img/logo.svg") no-repeat 0px 0px;
  width: 13vw;
  height: 8vw;
  background-size: contain;
}
#page_apartment_print .document .document_footer .document_footer--address {
  margin-left: 4.0888888889vw;
  font-size: 1.1555555556vw;
}
#page_apartment_print
  .document
  .document_footer
  .document_footer--address
  .document_footer--title {
  color: #fff;
  font-size: 1.6888888889vw;
  margin-bottom: 1vw;
}
#page_apartment_print .document .document_footer .document_footer--contacts {
  font-size: 1.8666666667vw;
}
#page_apartment_print .document .document_footer .document_footer--phone {
  font-size: 2.2222222222vw;
}

.infrastructure_map {
  position: relative;
  width: 100%;
  height: 525px;
  border-radius: 6px;
  background-color: #ffffff;
  overflow: hidden;
}
@media (max-width: 849px) {
  .infrastructure_map {
    display: none;
  }
}
.infrastructure_map__tabs {
  position: absolute;
  top: 40px;
  left: 52px;
  z-index: 2;
}
.infrastructure_map__tabs ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.infrastructure_map__tabs ul li {
  cursor: pointer;
  font-size: 12px;
  color: #2a3e37;
  font-weight: bold;
  border-radius: 22px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 45px;
  padding: 10px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.infrastructure_map__tabs ul li.active,
.infrastructure_map__tabs ul li:hover {
  background-color: #c09973;
  color: #ffffff;
}
.infrastructure_map__tabs ul li:not(:last-child) {
  margin-right: 28px;
}
.infrastructure_map #infrastructure_map__map {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

.vs_buildingp {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vs_buildingp__image,
.vs_buildingp__floors {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.vs_buildingp__floors {
  z-index: 2;
}
.vs_buildingp__floors svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}

.floor {
  fill: #c09973;
  opacity: 0;
  cursor: pointer;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.floor.active,
.floor:hover {
  opacity: 0.5;
}
.floor.no_available {
  fill: #e8e8e8;
  cursor: default;
}

.floor_apartments {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: 2;
}
.floor_apartments .apartment {
  fill: #bdc6c7;
  opacity: 0.4;
  cursor: default;
}
.floor_apartments .apartment.available {
  cursor: pointer;
  opacity: 0;
}
.floor_apartments .apartment.available:hover {
  opacity: 0.4;
  fill: #eb5c37;
}
.floor_apartments .apartment.booked {
  fill: #ff9b00;
}
.floor_apartments .apartment:hover {
  opacity: 0.8;
}

#page_mytishi .p-about-features .s-features__box {
  max-width: 624px;
  margin: 36px auto 63px 0;
  gap: 21px;
  font-size: 16px;
}

#page_mytishi .rvcol:last-child .s-features__box {
  padding-left: 40px;
}

.tourism {
  padding-top: 60px;
  background-color: #fcf8f0;
  padding-bottom: 50px;
  color: #2a3e37;
}
@media (max-width: 849px) {
  .tourism {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.tourism--title {
  font-size: 35px;
  font-weight: 500;
}
@media (max-width: 849px) {
  .tourism--title {
    font-size: 24px;
  }
}
@media (min-width: 850px) {
  .tourism--list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.tourism--load_more {
  margin-top: 50px;
  font-weight: 500;
  font-size: 16px;
  display: table;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
@media (max-width: 849px) {
  .tourism--load_more {
    margin-top: 30px;
    font-size: 14px;
  }
}
.tourism--load_more:hover {
  opacity: 0.6;
}

.tourism_l_item {
  cursor: pointer;
  border-radius: 3px;
  overflow: hidden;
  background-color: #ffffff;
  -webkit-box-shadow: 3px 7px 12px rgba(0, 51, 71, 0.07);
  box-shadow: 3px 7px 12px rgba(0, 51, 71, 0.07);
  margin-top: 34px;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.tourism_l_item:hover {
  opacity: 0.7;
}
@media (max-width: 849px) {
  .tourism_l_item {
    margin-top: 20px;
  }
}
.tourism_l_item__hidden {
  max-height: 0px;
  opacity: 0;
  margin-top: 0px;
}
@media (min-width: 850px) {
  .tourism_l_item {
    width: 32%;
    margin-right: 2%;
  }
  .tourism_l_item:nth-of-type(3n) {
    margin-right: 0;
  }
}
.tourism_l_item--image {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
@media (min-width: 850px) {
  .tourism_l_item--image {
    height: 316px;
  }
}
.tourism_l_item--title {
  padding: 20px;
  height: 126px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 1400px) {
  .tourism_l_item--title {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 1100px) {
  .tourism_l_item--title {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 849px) {
  .tourism_l_item--title {
    font-size: 14px;
    line-height: 16px;
    height: 85px;
  }
}
.tourism_l_item--icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 3px;
  width: 40px;
  height: 40px;
  border: 1px solid #2a3e37;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: 5%;
}
@media (max-width: 1400px) {
  .tourism_l_item--icon {
    width: 35px;
    height: 35px;
  }
}
@media (max-width: 849px) {
  .tourism_l_item--icon {
    width: 30px;
    height: 30px;
  }
}
.tourism_l_item--icon:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 22.57 16.36'%3E%3Cdefs%3E%3Cstyle%3E.cls-1{fill:none;stroke:$c_blue;stroke-miterlimit:10;stroke-width:2px;}.cls-2{fill:$c_blue;}%3C/style%3E%3C/defs%3E%3Cg id='Слой_2' data-name='Слой 2'%3E%3Cg id='design'%3E%3Cline class='cls-1' x1='20.4' y1='8.18' y2='8.18'/%3E%3Cpolygon class='cls-2' points='13.77 0 12.41 1.47 19.63 8.18 12.41 14.89 13.77 16.36 22.57 8.18 13.77 0'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  -webkit-transition-duration: 400ms;
  transition-duration: 400ms;
}
@media (min-width: 1441px) {
  .tourism_l_item--icon:after {
    height: 16px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .tourism_l_item--icon:after {
    height: 1.1111111111vw;
  }
}
@media (min-width: 1441px) {
  .tourism_l_item--icon:after {
    width: 22px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .tourism_l_item--icon:after {
    width: 1.5277777778vw;
  }
}
@media (max-width: 849px) {
  .tourism_l_item--icon:after {
    height: 13px;
    width: 20px;
  }
}
.tourism_l_item--description {
  display: none;
  max-width: 1320px !important;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 850px) {
  .tourism_l_item--description___box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (min-width: 850px) {
  .tourism_l_item--description_image {
    width: 500px;
    -o-object-fit: cover;
    object-fit: cover;
    margin-right: 50px;
  }
}
@media (max-width: 849px) {
  .tourism_l_item--description_image {
    margin-bottom: 20px;
  }
}

.education_sport {
  background-color: #2a3e37;
  padding-top: 40px;
  padding-bottom: 89px;
  overflow: hidden;
}
@media (max-width: 849px) {
  .education_sport {
    padding-top: 30px;
    padding-bottom: 15px;
  }
}
.education_sport--header .wrap {
  padding-bottom: 20px;
}
@media (min-width: 850px) {
  .education_sport--header .wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.education_sport--title {
  color: #c09973;
  width: 533px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  font-size: 36px;
  font-weight: 400;
  word-spacing: 45px;
}
@media (max-width: 849px) {
  .education_sport--title {
    word-spacing: 15px;
    font-size: 24px;
  }
}
.education_sport--description {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  font-size: 15px;
  line-height: 20px;
}
@media (max-width: 849px) {
  .education_sport--description {
    font-size: 12px;
    line-height: 15px;
  }
}
.education_sport--preview {
  color: #ffffff;
}
@media (max-width: 849px) {
  .education_sport--preview {
    padding-top: 20px;
  }
}
.education_sport--full_description {
  color: #2a3e37;
  max-width: 1320px !important;
  display: none;
}
.education_sport--read_more {
  margin-top: 10px;
  color: #c09973;
  cursor: pointer;
  -webkit-transition: 0.3s color;
  transition: 0.3s color;
}
.education_sport--read_more:hover {
  color: #ffffff;
}

.com_plans__items {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 20px 0px 150px;
}
@media (min-width: 850px) {
  .com_plans__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 849px) {
  .com_plans__items {
    padding: 20px 0px 50px;
  }
}
@media (min-width: 850px) {
  .com_plans__item {
    width: 50%;
  }
}

.indexp_top_banner {
  max-width: 240px;
  height: 124px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: block;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.indexp_top_banner:hover {
  opacity: 0.7;
}
@media (max-width: 849px) {
  .indexp_top_banner {
    max-width: 135px;
    height: 80px;
  }
}
.indexp_top_banner img {
  max-height: 145px;
  max-width: 202px;
}
@media (max-width: 849px) {
  .indexp_top_banner img {
    max-height: 100px;
    max-width: 141px;
  }
}

.countdown {
  border-radius: 5px;
  background: #ffffff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
@media (min-width: 769px) {
  .countdown {
    padding: 10px 20px 20px 20px;
    margin-right: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .countdown {
    margin-top: 88px;
    margin-bottom: -32px;
  }
}
@media (max-width: 580px) {
  .countdown {
    margin-top: 50px;
    margin-bottom: 20px;
  }
}
@media (min-width: 769px) {
  .countdown__gt_mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 768px) {
  .countdown__gt_mobile {
    display: none;
  }
}
@media (min-width: 769px) {
  .countdown__mobile {
    display: none;
  }
}
@media (max-width: 768px) {
  .countdown__mobile {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

.countdown--title {
  font-size: 22px;
  color: #c09973;
  font-weight: 900;
  text-align: center;
}
@media (max-width: 849px) {
  .countdown--title {
    font-size: 17px;
  }
}

.countdown--timer {
  text-transform: uppercase;
  font-size: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  padding-top: 8px;
}

.countdown_item {
  text-align: center;
}
.countdown_item:not(:last-child) {
  margin-right: 15px;
}

.countdown_item--title {
  font-size: 10px;
  font-weight: 900;
  color: #2a3e37;
}
@media (max-width: 849px) {
  .countdown_item--title {
    font-size: 9px;
  }
}

.countdown_item--digits {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (min-width: 850px) {
  .countdown_item--digits {
    padding-top: 5px;
  }
}

.countdown_item--number {
  background: #ffd400;
  height: 73px;
  width: 43px;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 56px;
  color: #2a3e37;
  font-weight: 900;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 849px) {
  .countdown_item--number {
    height: 50px;
    width: 30px;
    font-size: 33px;
    margin-top: 5px;
  }
}
.countdown_item--number:after {
  content: "";
  display: block;
  background: -webkit-gradient(
    linear,
    left bottom,
    left top,
    from(rgba(255, 255, 255, 0)),
    to(rgb(255, 255, 255))
  );
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    rgb(255, 255, 255) 100%
  );
  opacity: 0.48;
  width: 100%;
  height: 30px;
  position: absolute;
  top: 50%;
  left: 0px;
}
@media (max-width: 849px) {
  .countdown_item--number:after {
    height: 20px;
  }
}
.countdown_item--number:not(:last-child) {
  margin-right: 5px;
}

.promo {
  color: #c09973;
  padding: 50px 0px 100px;
}
@media (max-width: 849px) {
  .promo {
    padding: 30px 0px 60px;
  }
}
.promo___section {
  background-color: #fcf8f0;
}
.promo___section p {
  margin-bottom: 1em;
}
.promo___section ul,
.promo___section menu {
  list-style-type: disc;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.promo___section ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.promo___section ul ul,
.promo___section ol ul {
  list-style-type: circle;
}
.promo___section ul ul ul,
.promo___section ul ol ul,
.promo___section ol ul ul,
.promo___section ol ol ul {
  list-style-type: square;
}
.promo___section dd {
  margin: 0 0 0 40px;
}
.promo___section dl {
  margin: 1em 0;
}
.promo___section ul ul,
.promo___section ul ol,
.promo___section ul menu,
.promo___section ul dl,
.promo___section ol ul,
.promo___section ol ol,
.promo___section ol menu,
.promo___section ol dl,
.promo___section menu ul,
.promo___section menu ol,
.promo___section menu menu,
.promo___section menu dl,
.promo___section dl ul,
.promo___section dl ol,
.promo___section dl menu,
.promo___section dl dl {
  margin: 0;
}
.promo___section li {
  list-style: disc outside none;
  display: list-item;
  margin-left: 1em;
}
.promo___section table {
  width: 100%;
  border-collapse: collapse;
}
.promo___section table td {
  padding: 1.3em;
  border: 1px solid #d0d0d0;
}
.promo___section h1,
.promo___section h2,
.promo___section h3,
.promo___section h4,
.promo___section h5,
.promo___section h6 {
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: 0.7em;
}
.promo___section h2 {
  font-size: 2em;
}
.promo___section h3 {
  font-size: 1.8em;
}
.promo___section h4 {
  font-size: 1.6em;
}
.promo___section h5 {
  font-size: 1.4em;
}
.promo___section h6 {
  font-size: 1.2em;
}

.filter_finishing {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.filter_param__actions .filter_finishing {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

@media (min-width: 1441px) {
  .filter_finishing:not(:last-child) {
    margin-right: 26px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .filter_finishing:not(:last-child) {
    margin-right: 1.8055555556vw;
  }
}
@media (max-width: 849px) {
  .filter_finishing:not(:last-child) {
    margin-right: 24px;
  }
}
@media (min-width: 850px) {
  .filter_finishing__w_repair {
    position: absolute;
    left: 0px;
  }
}
@media (min-width: 850px) and (min-width: 1441px) {
  .filter_finishing__w_repair {
    bottom: -18px;
  }
}
@media (min-width: 850px) and (min-width: 850px) and (max-width: 1440px) {
  .filter_finishing__w_repair {
    bottom: -1.25vw;
  }
}
@media (max-width: 849px) {
  .filter_finishing {
    margin-bottom: 10px;
  }
}
.filter_finishing input {
  display: none;
}
.filter_finishing--checkbox {
  border-radius: 50%;
  border: 1px solid #2a3e37;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 1441px) {
  .filter_finishing--checkbox {
    width: 20px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .filter_finishing--checkbox {
    width: 1.3888888889vw;
  }
}
@media (min-width: 1441px) {
  .filter_finishing--checkbox {
    height: 20px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .filter_finishing--checkbox {
    height: 1.3888888889vw;
  }
}
@media (max-width: 849px) {
  .filter_finishing--checkbox {
    width: 18px;
    height: 18px;
  }
}
.filter_finishing input:checked + .filter_finishing--checkbox:before {
  content: "";
  display: block;
  border-radius: 50%;
  background-color: #c09973;
}
@media (min-width: 1441px) {
  .filter_finishing input:checked + .filter_finishing--checkbox:before {
    width: 12px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .filter_finishing input:checked + .filter_finishing--checkbox:before {
    width: 0.8333333333vw;
  }
}
@media (min-width: 1441px) {
  .filter_finishing input:checked + .filter_finishing--checkbox:before {
    height: 12px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .filter_finishing input:checked + .filter_finishing--checkbox:before {
    height: 0.8333333333vw;
  }
}
@media (max-width: 849px) {
  .filter_finishing input:checked + .filter_finishing--checkbox:before {
    height: 10px;
    width: 10px;
  }
}

.filter_finishing--title {
  color: #2a3e37;
  white-space: nowrap;
}
@media (min-width: 1441px) {
  .filter_finishing--title {
    font-size: 14px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .filter_finishing--title {
    font-size: 0.9722222222vw;
  }
}
@media (min-width: 1441px) {
  .filter_finishing--title {
    margin-left: 10px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .filter_finishing--title {
    margin-left: 0.6944444444vw;
  }
}
@media (max-width: 849px) {
  .filter_finishing--title {
    font-size: 14px;
    margin-left: 10px;
  }
}

.apartment_action {
  position: relative;
}
.apartment_action--button {
  margin-top: 20px;
  height: 45px;
}
.apartment_action__sale .apartment_action--button {
}
.apartment_action__sale .apartment_action--button:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/gift_icon.svg");
  background-size: 24px 24px;
  width: 24px;
  height: 24px;
}
@media (max-width: 849px) {
  .apartment_action__sale .apartment_action--button:before {
    background-size: 23px 23px;
    width: 23px;
    height: 23px;
  }
}

@media (max-width: 849px) {
  .apartment_action--button {
    margin-top: 20px;
  }
}
.apartment_action--button_title {
  border-right: 2px solid #067489;
  height: 28px;
  padding-right: 20px;
  margin-right: 20px;
  margin-left: 20px;
  font-size: 23px;
  color: #003347;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 849px) {
  .apartment_action--button_title {
    height: 20px;
    font-size: 18px;
    padding-right: 10px;
    margin-right: 10px;
    margin-left: 15px;
  }
}
.apartment_action--content {
  background-color: #ffffff;
  border-radius: 14px;
  border: 2px solid #c09973;
  width: 429px;
  padding: 20px 40px 40px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  position: absolute;
  top: auto;
  left: 150px;
  bottom: 20px;
  z-index: 1000;
}
.apartment_action__rent .apartment_action--content {
  border-color: #0cb5cc;
  background-color: #daf6f0;
}

@media (max-width: 849px) {
  .apartment_action--content {
    width: 90vw;
    left: 0px;
    bottom: auto;
    top: 120%;
  }
}
.apartment_action--title {
  font-size: 19px;
  color: #c09973;
  margin-bottom: 10px;
  font-weight: 700;
}
.apartment_action__rent .apartment_action--title {
  font-size: 25px;
  color: #003347;
}
@media (max-width: 849px) {
  .apartment_action__rent .apartment_action--title {
    font-size: 19px;
  }
}

.apartment_action--description {
  font-size: 18px;
  line-height: 22px;
  color: #6e7072;
}
.apartment_action:hover .apartment_action--content {
  visibility: visible;
  opacity: 1;
}

.site_promo {
  font-weight: bold;
  color: #ff4b42;
}
@media (min-width: 1441px) {
  .site_promo {
    font-size: 17px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .site_promo {
    font-size: 1.1805555556vw;
  }
}
@media (min-width: 850px) {
  .site_promo {
    text-align: right;
  }
}
@media (max-width: 849px) {
  .site_promo {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
    -ms-flex-order: -1;
    order: -1;
  }
}
.site_promo__vg {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
@media (max-width: 849px) {
  .site_promo__vg {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
  }
}

.apartment_finishing_vers {
  border-radius: 10px;
  margin-bottom: 40px;
}
@media (max-width: 849px) {
  .apartment_finishing_vers {
    margin-left: -25px;
    margin-right: -25px;
  }
}
.apartment_finishing_vers__description {
  margin-bottom: 10px;
  margin-left: 30px;
}
@media (max-width: 849px) {
  .apartment_finishing_vers__description {
    margin-left: 10px;
  }
}
.apartment_finishing_vers__header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  border-radius: 10px;
  overflow: hidden;
}
.apartment_finishing_vers__tab {
  -webkit-flex-basis: 33.33%;
  -ms-flex-preferred-size: 33.33%;
  flex-basis: 33.33%;
  height: 93px;
  border-radius: 10px;
  background-color: #fcf8f0;
  -webkit-transition:
    background-color 0.3s,
    color 0.3s,
    opacity 0.3s;
  transition:
    background-color 0.3s,
    color 0.3s,
    opacity 0.3s;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #2a3e37;
  cursor: pointer;
  border: 1px solid #dcc7af;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-align: left;
}
@media (max-width: 849px) {
  .apartment_finishing_vers__tab {
    font-size: 14px;
    padding: 15px 10px;
  }
}
.apartment_finishing_vers__tab .agr {
  margin-right: 8px;
  margin-left: 15px;
}
@media (max-width: 849px) {
  .apartment_finishing_vers__tab .agr {
    margin-left: 0px;
  }
}
.apartment_finishing_vers__tab .agr input + span {
  width: 16px;
  height: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16px;
  -ms-flex: 0 0 16px;
  flex: 0 0 16px;
}
.apartment_finishing_vers__tab .agr input + span:before {
  width: 8px;
  height: 8px;
}
.apartment_finishing_vers__tab:hover {
  opacity: 0.7;
}
.apartment_finishing_vers__tab--active {
  background-color: #2a3e37;
  color: #ffffff;
  border-color: #2a3e37;
}
.apartment_finishing_vers__tab--active .agr input + span:before {
  display: block;
}
.apartment_finishing_vers__tabs_content {
  margin-top: -30px;
  background-color: #fcf8f0;
  border-radius: 0px 0px 10px 10px;
}

.apartment_finishing_version {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 85px;
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 10px 10px 0px 0px;
}
.apartment_finishing_version:nth-child(odd) {
  background-color: #ffffff;
  border: 1px solid #dcc7af;
}
.apartment_finishing_version:last-child {
  border-radius: 10px;
}
.apartment_finishing_version__amount {
  display: block;
}
.apartment_finishing_version__price {
  display: block;
  font-size: 24px;
  font-weight: 600;
  color: #2a3e37;
}
.apartment_finishing_version__title {
  display: block;
  margin-top: 1px;
}
.apartment_finishing_version__title--area {
  color: #c09973;
  font-size: 0.8em;
}
.apartment_finishing_vers__tabs_content-one_price
  .apartment_finishing_version__chose {
  display: none;
}

.apartment_item_finishing_photos {
  width: 90%;
  max-width: 1300px;
  padding: 0px;
  display: none;
}

@media (min-width: 850px) {
  .share {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
@media (min-width: 850px) {
  .share {
    padding-top: 60px;
  }
}
@media (max-width: 849px) {
  .share {
    padding-top: 40px;
  }
}
@media (min-width: 850px) {
  .share__name {
    margin-right: 30px;
  }
}
@media (max-width: 849px) {
  .share__name {
    margin-bottom: 10px;
  }
}
.share .ya-share2__container_size_m .ya-share2__badge .ya-share2__icon {
  height: 36px;
  width: 36px;
  background-size: 36px 36px;
}

.studios {
  font-size: 16px;
  color: #2a3e37;
  line-height: 1.5;
}
.studios p {
  margin-bottom: 1em;
}
.studios ul,
.studios menu {
  list-style-type: disc;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.studios ol {
  list-style-type: decimal;
  margin: 1em 0;
  padding: 0 0 0 40px;
}
.studios ul ul,
.studios ol ul {
  list-style-type: circle;
}
.studios ul ul ul,
.studios ul ol ul,
.studios ol ul ul,
.studios ol ol ul {
  list-style-type: square;
}
.studios dd {
  margin: 0 0 0 40px;
}
.studios dl {
  margin: 1em 0;
}
.studios ul ul,
.studios ul ol,
.studios ul menu,
.studios ul dl,
.studios ol ul,
.studios ol ol,
.studios ol menu,
.studios ol dl,
.studios menu ul,
.studios menu ol,
.studios menu menu,
.studios menu dl,
.studios dl ul,
.studios dl ol,
.studios dl menu,
.studios dl dl {
  margin: 0;
}
.studios li {
  list-style: disc outside none;
  display: list-item;
  margin-left: 1em;
}
.studios table {
  width: 100%;
  border-collapse: collapse;
}
.studios table td {
  padding: 1.3em;
  border: 1px solid #d0d0d0;
}
.studios h1,
.studios h2,
.studios h3,
.studios h4,
.studios h5,
.studios h6 {
  font-weight: bold;
  line-height: 1.3em;
  margin-bottom: 0.7em;
}
.studios h2 {
  font-size: 2em;
}
.studios h3 {
  font-size: 1.8em;
}
.studios h4 {
  font-size: 1.6em;
}
.studios h5 {
  font-size: 1.4em;
}
.studios h6 {
  font-size: 1.2em;
}
@media (max-width: 849px) {
  .studios {
    font-size: 14px;
  }
}
.studios___section {
  padding: 84px 0 40px;
  background-color: #ffffff;
}
@media (max-width: 849px) {
  .studios___section {
    padding: 30px 0 30px;
  }
}

.studios_types {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 30px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.studios_types__section {
  padding-bottom: 30px;
}
@media (max-width: 849px) {
  .studios_types__section {
    padding: 20px 0px;
  }
}
#page_e404 {
  background-color: #fcf8f0;
}

.e404 {
  padding-top: 170px;
  padding-bottom: 200px;
  overflow: hidden;
}
.e404 .wrap {
  position: relative;
}
@media (max-width: 849px) {
  .e404 {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}
.e404--code {
  font-size: 280px;
  letter-spacing: -0.04em;
  color: #2a3e37;
  text-align: center;
  line-height: 0.8em;
}
@media (max-width: 849px) {
  .e404--code {
    font-size: 120px;
  }
}
.e404--content {
  max-width: 459px;
  margin: 0px auto;
  padding-top: 10px;
  font-size: 26px;
  line-height: 29px;
}
@media (max-width: 849px) {
  .e404--content {
    font-size: 16px;
    line-height: normal;
  }
}
.e404--content strong {
  font-weight: 500;
}
.e404--goto_menu {
  color: #2a3e37;
  padding-top: 30px;
  position: relative;
}

#page_sitemap {
  background-color: #fcf8f0;
}

.sitemap__section {
  margin-bottom: 100px;
}
.sitemap__section ul,
.sitemap__section li {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 849px) {
  .sitemap__section {
    margin-top: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 849px) {
  .sitemap--item.hide_in_mobile {
    display: none;
  }
}
.sitemap > .sitemap--item {
  margin-bottom: 1.2em;
  font-weight: 500;
}
.sitemap > .sitemap--item > .sitemap--item_link {
  font-size: 1.3em;
}
.sitemap--item_link {
  margin-bottom: 10px;
  color: #2a3e37;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  display: block;
  font-size: 1.1em;
}
.sitemap--item_link:hover {
  opacity: 0.7;
}
.sitemap--submenu {
  display: block;
  padding-left: 2em !important;
  font-weight: 300;
}

#page_purchase_stages .singleHeader {
  padding-bottom: 24px;
}
@media (max-width: 849px) {
  #page_purchase_stages .singleHeader {
    padding-bottom: 15px;
  }
}
#page_purchase_stages .singleHeader__title {
  font-size: 42px;
  margin-top: 9px;
}
@media (max-width: 849px) {
  #page_purchase_stages .singleHeader__title {
    font-size: 24px;
  }
}
#page_purchase_stages .footer__top {
  background-color: #ffffff;
}

.purchase_stages__intro {
  color: #2a3e37;
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 133.333%;
  max-width: 798px;
}
@media (max-width: 849px) {
  .purchase_stages__intro {
    font-size: 16px;
    line-height: 20px;
  }
}
.purchase_stages__items {
  margin-top: 52px;
  margin-bottom: 105px;
}
@media (max-width: 849px) {
  .purchase_stages__items {
    margin-top: 25px;
    margin-bottom: 50px;
  }
}

.purchase_stages_item {
  margin-bottom: 45px;
  border-radius: 10px;
  overflow: hidden;
  background-color: #fcf8f0;
}
@media (min-width: 850px) {
  .purchase_stages_item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
@media (max-width: 849px) {
  .purchase_stages_item {
    margin-bottom: 20px;
  }
}
.purchase_stages_item .rvbtn {
  background-color: #c09973;
  max-width: 206px;
  margin-top: 16px;
}
@media (max-width: 849px) {
  .purchase_stages_item .rvbtn {
    height: 40px;
    max-width: 156px;
    margin: 21px auto 0px;
  }
}
@media (min-width: 850px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item {
    background-color: #f6f8fa;
  }
}
@media (min-width: 850px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item__image {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1;
  }
}
.purchase_stages_item:nth-child(even) .purchase_stages_item__text {
  background-image: url("../img/purchase_stages/circle.svg");
}
@media (min-width: 850px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item__text {
    background-position: right;
    padding: 80px 63px 90px 85px;
  }
}
@media (max-width: 1100px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item__text {
    padding: 31px 30px 37px 37px;
  }
}
@media (max-width: 849px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item__text {
    background-position: 0px -28px;
    background-color: #fcf8f0;
  }
}
@media (min-width: 850px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item__description {
    margin-top: 27px;
  }
}
@media (max-width: 1100px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item__description {
    margin-top: 25px;
  }
}
.purchase_stages_item:nth-child(even) .purchase_stages_item__title:before {
  content: "";
  display: block;
}
@media (min-width: 850px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item__title:before {
    left: -128px;
  }
}
@media (max-width: 1100px) {
  .purchase_stages_item:nth-child(even) .purchase_stages_item__title:before {
    left: -70px;
  }
}
.purchase_stages_item__image {
  border-radius: 10px;
  aspect-ratio: 0;
  position: relative;
  -o-object-fit: cover;
  object-fit: cover;
  z-index: 2;
}
@media (min-width: 850px) {
  .purchase_stages_item__image {
    width: 50%;
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
@media (max-width: 849px) {
  .purchase_stages_item__image {
    width: 100%;
  }
}
.purchase_stages_item__text {
  background-color: #f7f8fa;
  padding: 115px 105px 50px 97px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0% 0%;
  background-image: url("../img/purchase_stages/triangle.svg");
}
@media (max-width: 1100px) {
  .purchase_stages_item__text {
    padding: 31px 30px 37px 37px;
  }
}
@media (max-width: 849px) {
  .purchase_stages_item__text {
    background-position: 100% -28px;
    background-size: 325px 325px;
  }
}
.purchase_stages_item__title {
  color: #2a3e37;
  font-size: 36px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 1100px) {
  .purchase_stages_item__title {
    font-size: 28px;
  }
}
@media (max-width: 849px) {
  .purchase_stages_item__title {
    font-size: 22px;
  }
}
.purchase_stages_item__title:before {
  content: "";
  display: block;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: solid 26px #c09973;
  position: absolute;
  left: -139px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1100px) {
  .purchase_stages_item__title:before {
    width: 58px;
    height: 58px;
    left: -70px;
    top: -15px;
    -webkit-transform: unset;
    -ms-transform: unset;
    transform: unset;
    border-width: 14px;
  }
}
.purchase_stages_item__description {
  margin-top: 39px;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
}
@media (max-width: 1100px) {
  .purchase_stages_item__description {
    margin-top: 25px;
  }
}
@media (max-width: 849px) {
  .purchase_stages_item__description {
    font-size: 12px;
    line-height: 133%;
    margin-top: 17px;
  }
}

@media (min-width: 850px) {
  .invest_calc {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.invest_calc---box {
  padding-top: 49px;
  padding-bottom: 40px;
  background-color: #f0e4d2;
}
@media (max-width: 849px) {
  .invest_calc---box {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.invest_calc__title {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #2a3e37;
}
@media (max-width: 849px) {
  .invest_calc__title br {
    display: none;
  }
}
@media (max-width: 849px) {
  .invest_calc__title {
    font-size: 18px;
  }
}

@media (min-width: 850px) {
  .invest_calc_amount {
    width: 66%;
  }
}
.invest_calc_amount__title {
  font-weight: 700;
}
@media (max-width: 849px) {
  .invest_calc_amount__title {
    font-size: 14px;
  }
}
.invest_calc_amount__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
}
@media (max-width: 849px) {
  .invest_calc_amount__items {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}
.invest_calc_amount__item {
  height: 80px;
  background-color: #ffffff;
  border: 1px solid #c09973;
  border-radius: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-weight: bold;
  font-size: 18px;
}
@media (min-width: 850px) {
  .invest_calc_amount__item {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    height: 50px;
    width: 100%;
  }
}
@media (max-width: 849px) {
  .invest_calc_amount__item {
    height: 50px;
    width: 100%;
    max-width: 320px;
  }
}
.invest_calc_amount__item--select {
  border-width: 2px;
  text-decoration: underline;
}

.invest_calc_computing {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding-top: 20px;
}
@media (max-width: 849px) {
  .invest_calc_computing {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 10px;
  }
}
.invest_calc_computing__items {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: #ffffff;
  border: 1px solid #c09973;
  border-radius: 10px;
  padding: 10px;
}
@media (min-width: 850px) {
  .invest_calc_computing__items {
    height: 80px;
    width: 75%;
  }
}
@media (max-width: 849px) {
  .invest_calc_computing__items {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 100%;
    max-width: 320px;
  }
}
.invest_calc_computing__lots {
  background-color: #c09973;
  color: #ffffff;
  white-space: wrap;
  border-radius: 10px;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  width: 25%;
  font-weight: bold;
  font-size: 14px;
  height: 80px;
  text-transform: none;
  text-align: left;
}
@media (max-width: 849px) {
  .invest_calc_computing__lots {
    height: 50px;
    width: 100%;
    max-width: 320px;
  }
}
.invest_calc_computing__lots:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/invest/button_arrow.svg");
  width: 35px;
  height: 35px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.invest_calc_computing__lots__lots_title {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

.invest_calc_computing_item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
@media (max-width: 849px) {
  .invest_calc_computing_item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.invest_calc_computing_item__caption {
  color: #c09973;
  font-size: 12px;
}
.invest_calc_computing_item__amount {
  font-weight: bold;
  font-size: 24px;
}
@media (max-width: 849px) {
  .invest_calc_computing_item__amount {
    font-size: 19px;
  }
}

.invest_lots_slider {
  width: 100%;
  overflow: visible !important;
  padding-top: 30px;
}
.invest_lots_slider---box {
  overflow: hidden;
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #dcc7af;
}
@media (max-width: 849px) {
  .invest_lots_slider---box {
    padding-top: 33px;
    padding-bottom: 20px;
  }
}
.invest_lots_slider__caption {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #2a3e37;
}
@media (max-width: 849px) {
  .invest_lots_slider__caption br {
    display: none;
  }
}
@media (max-width: 849px) {
  .invest_lots_slider__caption {
    font-size: 18px;
  }
}
.invest_lots_slider__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
@media (min-width: 850px) {
  .invest_lots_slider__navigation {
    position: absolute;
    top: auto;
    bottom: 20px;
    left: calc(50% + 120px);
  }
}
@media (max-width: 849px) {
  .invest_lots_slider__navigation {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-top: 20px;
  }
}
.invest_lots_slider__pagination {
  color: #c09973;
  font-size: 24px;
}
@media (max-width: 849px) {
  .invest_lots_slider__pagination {
    font-size: 16px;
  }
}
.invest_lots_slider__controls {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 849px) {
  .invest_lots_slider__controls {
    width: calc(100% - 80px);
  }
}
.invest_lots_slider__goto_next,
.invest_lots_slider__goto_prev {
  border-color: #c09973;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  height: 50px;
  width: 50px;
}
.invest_lots_slider__goto_next:hover,
.invest_lots_slider__goto_prev:hover {
  opacity: 0.7;
}
@media (max-width: 849px) {
  .invest_lots_slider__goto_next,
  .invest_lots_slider__goto_prev {
    width: 45px;
    height: 45px;
  }
}
.invest_lots_slider__goto_next:after,
.invest_lots_slider__goto_prev:after {
  color: #c09973;
}

.invest_lots_slider_item {
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transition:
    opacity 0.9s,
    -webkit-transform 0.9s;
  transition:
    opacity 0.9s,
    -webkit-transform 0.9s;
  transition:
    opacity 0.9s,
    transform 0.9s;
  transition:
    opacity 0.9s,
    transform 0.9s,
    -webkit-transform 0.9s;
  height: 100%;
  z-index: 2;
  opacity: 1;
  border-radius: 8px;
  width: 670px;
}
.invest_lots_slider_item:not(.swiper-slide-active):not(.swiper-slide-next) {
  opacity: 0;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
}
@media (max-width: 1199.98px) {
  .invest_lots_slider_item {
    width: 520px;
  }
}
@media (max-width: 991.98px) {
  .invest_lots_slider_item {
    width: 86%;
  }
}
@media (max-width: 767.98px) {
  .invest_lots_slider_item {
    width: 100%;
  }
}
@media (max-width: 991.98px) {
  .invest_lots_slider_item {
    z-index: 2;
  }
}
.invest_lots_slider_item.swiper-slide-next {
  opacity: 0.5;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8);
  z-index: 1;
}
.invest_lots_slider_item.swiper-slide-prev {
  opacity: 0;
}
.invest_lots_slider_item__image {
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: cover;
  object-fit: cover;
}
.invest_lots_slider_item__params {
  position: absolute;
  top: 10px;
  left: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 20px;
}
@media (max-width: 849px) {
  .invest_lots_slider_item__params {
    display: none;
  }
}
.invest_lots_slider_item__param {
  width: 100%;
  padding: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  outline: none;
  cursor: pointer;
  text-decoration: none;
  border: 1px solid transparent;
  text-transform: uppercase;
  border-radius: 22px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  gap: 13px;
  background-color: #c09973;
  white-space: nowrap;
  -webkit-transition-duration: 0.4s !important;
  transition-duration: 0.4s !important;
}
@media (min-width: 1441px) {
  .invest_lots_slider_item__param {
    height: 50px;
  }
}
@media (min-width: 850px) and (max-width: 1440px) {
  .invest_lots_slider_item__param {
    height: 3.4722222222vw;
  }
}
@media (max-width: 849px) {
  .invest_lots_slider_item__param {
    height: 40px;
  }
}
.invest_lots_slider_item__caption {
  position: absolute;
  top: auto;
  bottom: 40px;
  left: 50px;
  color: #ffffff;
  text-decoration: underline;
  font-size: 30px;
}
@media (max-width: 849px) {
  .invest_lots_slider_item__caption {
    font-size: 18px;
    bottom: 20px;
    left: 20px;
  }
}

.invest_payment_options {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: 45px;
  gap: 30px;
}
@media (max-width: 849px) {
  .invest_payment_options {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 10px;
    padding-top: 10px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.invest_payment_options---box {
  background-color: #f3eadd;
  padding-top: 89px;
  padding-bottom: 89px;
}
@media (max-width: 849px) {
  .invest_payment_options---box {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
.invest_payment_options__caption {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #2a3e37;
  text-align: center;
}
@media (max-width: 849px) {
  .invest_payment_options__caption br {
    display: none;
  }
}
@media (max-width: 849px) {
  .invest_payment_options__caption {
    font-size: 18px;
  }
}

.invest_payment_options_item {
  background: #ffffff;
  border: solid 2px #dcc7af;
  height: 100px;
  border-radius: 9px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media (min-width: 850px) {
  .invest_payment_options_item {
    width: calc(33.33% - 20px);
  }
}
@media (max-width: 849px) {
  .invest_payment_options_item {
    width: 100%;
    height: 80px;
    max-width: 320px;
  }
}
.invest_payment_options_item__icon {
  width: 56px;
}
.invest_payment_options_item__caption {
  font-weight: bold;
  font-size: 18px;
  padding-left: 20px;
}

.invest_profit_programs---box {
  padding-top: 79px;
  padding-bottom: 79px;
}
@media (max-width: 849px) {
  .invest_profit_programs---box {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.invest_profit_programs__caption {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #2a3e37;
  text-align: center;
}
@media (max-width: 849px) {
  .invest_profit_programs__caption br {
    display: none;
  }
}
@media (max-width: 849px) {
  .invest_profit_programs__caption {
    font-size: 18px;
  }
}
.invest_profit_programs__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
  padding-top: 20px;
}
@media (max-width: 849px) {
  .invest_profit_programs__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.invest_profit_programs_item {
  background: #ffffff;
  border: solid 1px #dcc7af;
  border-radius: 18px;
  padding: 40px 40px;
}
@media (min-width: 850px) {
  .invest_profit_programs_item {
    width: calc(50% - 15px);
  }
}
.invest_profit_programs_item__title {
  font-weight: bold;
  font-size: 24px;
  line-height: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
@media (max-width: 849px) {
  .invest_profit_programs_item__title {
    font-size: 18px;
    line-height: 22px;
  }
}
.invest_profit_programs_item__number {
  border: solid 1px #dcc7af;
  border-radius: 50%;
  font-weight: bold;
  font-size: 24px;
  width: 45px;
  height: 45px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.invest_profit_programs_item__description {
  padding-top: 30px;
  font-size: 16px;
  line-height: 24px;
}
.invest_profit_programs_item__description ul,
.invest_profit_programs_item__description li {
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 849px) {
  .invest_profit_programs_item__description {
    padding-top: 5px;
    font-size: 14px;
    line-height: 18px;
  }
}
.invest_profit_programs_item__description p,
.invest_profit_programs_item__description ul {
  padding-top: 2em;
}
@media (max-width: 849px) {
  .invest_profit_programs_item__description p,
  .invest_profit_programs_item__description ul {
    padding-top: 1em;
  }
}
.invest_profit_programs_item__description strong {
  font-weight: bold;
  font-size: 20px;
  color: #c09973;
}
@media (max-width: 849px) {
  .invest_profit_programs_item__description strong {
    font-size: 16px;
  }
}
.invest_profit_programs_item__more {
  background-color: #2a3e37;
  white-space: wrap;
  padding: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 18px;
  font-weight: bold;
  font-size: 18px;
  text-transform: none;
  text-align: left;
  height: 60px;
  border-radius: 30px;
  max-width: 335px;
  margin: 40px auto 0px auto;
}
@media (max-width: 849px) {
  .invest_profit_programs_item__more {
    font-size: 14px;
    width: 100%;
    max-width: 289px;
    height: 44px;
    border-radius: 22px;
    padding: 0px 5px 0px 20px;
    margin-top: 20px;
  }
}
.invest_profit_programs_item__more:after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("../img/invest/button_arrow.svg");
  width: 35px;
  height: 35px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.invest_profit_programs_item__more_title {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  white-space: nowrap;
}

.invest_profit_charts {
  padding-top: 120px;
}
@media (max-width: 849px) {
  .invest_profit_charts {
    padding-top: 40px;
  }
}
.invest_profit_charts__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 849px) {
  .invest_profit_charts__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.invest_profit_charts__description {
  padding-top: 50px;
  font-size: 18px;
  line-height: 27px;
  color: #2a3e37;
  max-width: 822px;
  text-align: center;
  margin: 0px auto;
}
@media (max-width: 849px) {
  .invest_profit_charts__description {
    padding-top: 30px;
    font-size: 16px;
    line-height: 20px;
  }
}

@media (min-width: 850px) {
  .invest_profit_chart {
    width: calc(50% - 15px);
    -webkit-flex-shrink: 0;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  }
}
.invest_profit_chart__title {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #2a3e37;
}
@media (max-width: 849px) {
  .invest_profit_chart__title br {
    display: none;
  }
}
@media (max-width: 849px) {
  .invest_profit_chart__title {
    font-size: 18px;
  }
}
.invest_profit_chart__subtitle {
  padding-top: 40px;
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  color: #c09973;
}
@media (max-width: 849px) {
  .invest_profit_chart__subtitle {
    padding-top: 5px;
    font-size: 12px;
    line-height: 16px;
  }
}
.invest_profit_chart__image {
  display: block;
  width: 100%;
  height: 400px;
  margin-top: 20px;
  margin-bottom: 30px;
}
@media (max-width: 849px) {
  .invest_profit_chart__image {
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.invest_profit_chart__caption {
  font-size: 12px;
  line-height: 24.2px;
  color: #2a3e37;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
}
.invest_profit_chart__caption:before {
  content: "";
  display: block;
  background: #ffffff;
  border-style: Solid;
  border-color: #c09973;
  border-color: rgb(192, 153, 115);
  border-width: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
  margin-right: 10px;
}

.invest_slider {
  padding-top: 37px;
}
@media (max-width: 849px) {
  .invest_slider {
    padding-top: 15px;
  }
}
.invest_slider---box {
  padding-top: 87px;
  padding-bottom: 72px;
  background-color: #ffffff;
}
@media (max-width: 849px) {
  .invest_slider---box {
    padding-top: 25px;
    padding-bottom: 35px;
  }
}
.invest_slider__caption {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #2a3e37;
}
@media (max-width: 849px) {
  .invest_slider__caption br {
    display: none;
  }
}
@media (max-width: 849px) {
  .invest_slider__caption {
    font-size: 18px;
  }
}
@media (max-width: 849px) {
  .invest_slider__caption {
    font-size: 20px;
    line-height: 21px;
  }
}
.invest_slider__navigation {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
  padding-top: 40px;
}
@media (max-width: 849px) {
  .invest_slider__navigation {
    padding-top: 20px;
  }
}
.invest_slider__goto_next,
.invest_slider__goto_prev {
  border-color: #c09973;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
.invest_slider__goto_next:hover,
.invest_slider__goto_prev:hover {
  opacity: 0.7;
}
.invest_slider__goto_next:after,
.invest_slider__goto_prev:after {
  color: #c09973;
}

a.invest_slider_item:hover {
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
}
a.invest_slider_item:hover:hover {
  opacity: 0.7;
}

.invest_slider_item__image {
  background-color: #fcf8f0;
  display: block;
  width: 100%;
  height: 449px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  border-radius: 5px;
}
@media (max-width: 849px) {
  .invest_slider_item__image {
    height: 435px;
  }
}
.invest_slider_item__caption {
  font-weight: bold;
  font-size: 24px;
  line-height: 26.92px;
  color: #ffffff;
  position: absolute;
  z-index: 2;
  bottom: 41px;
  width: calc(100% - 20px);
  left: 20px;
}
@media (max-width: 849px) {
  .invest_slider_item__caption {
    bottom: 37px;
    font-size: 22px;
    line-height: 24.83px;
  }
}

.universal_map {
  width: 1317px;
}
.universal_map---box {
  padding-top: 100px;
  padding-bottom: 100px;
  overflow-x: auto;
}
.universal_map__caption {
  font-family: "Manrope", Arial, sans-serif;
  font-weight: bold;
  font-size: 32px;
  color: #2a3e37;
}
@media (max-width: 849px) {
  .universal_map__caption br {
    display: none;
  }
}
@media (max-width: 849px) {
  .universal_map__caption {
    font-size: 18px;
  }
}
@media (max-width: 849px) {
  .universal_map__caption {
    font-size: 32px;
    line-height: 40px;
  }
}
.universal_map__interactive {
  margin-top: 47px;
  position: relative;
}
.universal_map__buttons {
  position: absolute;
  top: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.universal_map__buttons ul,
.universal_map__buttons li {
  padding: 0;
  margin: 0;
  list-style: none;
}
.universal_map__categories {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.universal_map__category {
  cursor: pointer;
  font-size: 12px;
  color: #2a3e37;
  font-weight: bold;
  border-radius: 22px;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  text-transform: uppercase;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 45px;
  padding: 10px 20px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-transition-duration: 0.4s;
  transition-duration: 0.4s;
}
.universal_map__category--active,
.universal_map__category:hover {
  background-color: #c09973;
  color: #ffffff;
}
.universal_map__category:not(:last-child) {
  margin-right: 28px;
}
.universal_map__routes {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 20px;
}
.universal_map__widget {
  width: 100%;
  height: 860px;
}

.universal_map_route {
  position: relative;
}
.universal_map_route figure {
  cursor: pointer;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 4px 15px 0px rgba(0, 0, 0, 0.15);
  height: 60px;
  text-decoration: none;
  outline: none;
  border: 1px solid #fff;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.universal_map_route__icon {
  width: 70px;
  height: auto;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  padding: 0px 20px;
}
.universal_map_route__caption {
  border-left: 1px solid #ccc;
  color: #2a3e37;
  font-size: 12px;
  font-weight: 600;
  background-size: 30px;
  line-height: 1.4em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  text-transform: uppercase;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 100%;
  padding-right: 20px;
}
.universal_map_route__caption:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 30px;
  height: 100%;
  background-image: url("../img/contacts/navigate.svg");
  margin: 0px 20px;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (max-width: 849px) {
  .universal_map_route__caption {
    padding-top: 4px;
  }
}

@media (max-width: 849px) {
  #page_for_investment .invest_content---box {
    padding: 30px 0px;
  }
}
@media (max-width: 849px) {
  #page_for_investment .invest_content---box .p-invest__body_title {
    margin-bottom: 0px;
  }
}
@media (max-width: 849px) {
  #page_for_investment .invest_content---box .p-invest__body_span {
    margin-top: 20px;
    font-size: 14px;
    line-height: 20px;
    padding: 20px;
  }
}
#page_for_investment .invest_content---box .p-invest__body_text {
  padding: 20px;
}

.our_project {
  gap: 115px;
  background-color: #ffffff;
  border-radius: 10px;
  overflow: hidden;
}
@media (min-width: 850px) {
  .our_project {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.our_project__vg {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 20px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  padding-right: 20px;
}
@media (max-width: 849px) {
  .our_project__vg {
    padding: 22px 20px 20px 20px;
  }
}
.our_project__image {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
@media (min-width: 850px) {
  .our_project__image {
    height: 315px;
    width: 527px;
  }
}
@media (max-width: 849px) {
  .our_project__image {
    width: 100%;
    aspect-ratio: 1.7;
  }
}
.our_project__title {
  font-weight: bold;
  font-size: 28px;
  text-transform: uppercase;
  color: #c09973;
}
@media (max-width: 849px) {
  .our_project__title {
    font-size: 18px;
  }
}
.our_project--description {
  font-size: 18px;
  line-height: 1.3em;
  margin-top: 8px;
}
@media (max-width: 849px) {
  .our_project--description {
    font-size: 14px;
    line-height: 22px;
  }
}

.our_projects__vb {
  background: #fcf8f0;
  padding-bottom: 80px;
}
@media (max-width: 849px) {
  .our_projects__vb {
    padding-bottom: 40px;
  }
}
.our_projects__vg {
  padding-top: 76px;
  padding-bottom: 51px;
}
.our_projects__vg:first-child {
  border-bottom: 1px solid #dcc7af;
}
@media (max-width: 849px) {
  .our_projects__vg {
    padding-top: 29px;
    padding-bottom: 0px;
  }
}
.our_projects__title {
  font-weight: bold;
  font-size: 32px;
}
@media (max-width: 849px) {
  .our_projects__title {
    font-size: 24px;
  }
}
.our_projects__items {
  padding-top: 40px;
  padding-bottom: 40px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 849px) {
  .our_projects__items {
    padding-top: 28px;
    padding-bottom: 28px;
    gap: 20px;
  }
}
.our_projects .r_content ul {
  margin: 0px;
  padding: 0px;
}

.our_projects_intro {
  max-width: 890px;
  padding-bottom: 68px;
}
@media (max-width: 849px) {
  .our_projects_intro {
    padding-bottom: 32px;
  }
}
.our_projects_intro--title {
  font-size: 24px;
  line-height: 36px;
  color: #2a3e37;
}
@media (max-width: 849px) {
  .our_projects_intro--title {
    font-size: 16px;
    line-height: 23px;
  }
}
.our_projects_intro--description {
  font-size: 18px;
  line-height: 32px;
  color: #2a3e37;
  padding-top: 24px;
}
@media (max-width: 849px) {
  .our_projects_intro--description {
    font-size: 16px;
    line-height: 23px;
    padding-top: 4px;
  }
}
