@font-face {
  font-family: 'BrownRegular';
  src: url("../fonts/BrownRegular.eot");
  src: url("../fonts/BrownRegular.eot") format("embedded-opentype"), url("../fonts/BrownRegular.woff2") format("woff2"), url("../fonts/BrownRegular.woff") format("woff"), url("../fonts/BrownRegular.ttf") format("truetype"), url("../fonts/BrownRegular.svg#BrownRegular") format("svg"); }

@font-face {
  font-family: 'BrownLight';
  src: url("../fonts/BrownLight.eot");
  src: url("../fonts/BrownLight.eot") format("embedded-opentype"), url("../fonts/BrownLight.woff2") format("woff2"), url("../fonts/BrownLight.woff") format("woff"), url("../fonts/BrownLight.ttf") format("truetype"), url("../fonts/BrownLight.svg#BrownLight") format("svg"); }

@font-face {
  font-family: 'BrownBold';
  src: url("../fonts/BrownBold.eot");
  src: url("../fonts/BrownBold.eot") format("embedded-opentype"), url("../fonts/BrownBold.woff2") format("woff2"), url("../fonts/BrownBold.woff") format("woff"), url("../fonts/BrownBold.ttf") format("truetype"), url("../fonts/BrownBold.svg#BrownBold") format("svg"); }

.gallery__container {
  width: 100%;
  height: calc(100%);
  position: fixed;
  z-index: 10000;
  opacity: 1;
  left: 0;
  top: 0;
  box-sizing: border-box;
  transition: all 0.3s ease-in;
  background: rgba(255, 255, 255, 0.9); }
  .gallery__container.is-home {
    background: none;
    pointer-events: none; }
    @media only screen and (max-width: 768px) {
      .gallery__container.is-home {
        background: rgba(255, 255, 255, 0.9);
        pointer-events: all; } }
    .gallery__container.is-home .close {
      display: none; }
      @media only screen and (max-width: 768px) {
        .gallery__container.is-home .close {
          display: block; } }
    .gallery__container.is-home .owl-carousel {
      max-width: 50%;
      margin: auto; }
      @media only screen and (max-width: 768px) {
        .gallery__container.is-home .owl-carousel {
          max-width: 100%; } }
  .gallery__container .owl-carousel {
    padding-top: 80px;
    padding-bottom: 80px;
    box-sizing: border-box; }
  .gallery__container div, .gallery__container .owl-carousel, .gallery__container .owl-stage-outer, .gallery__container .owl-stage, .gallery__container .owl-item {
    height: 100%; }
  .gallery__container .owl-dots {
    -webkit-transform: none;
    transform: none;
    height: 80px;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-animation: dots .5s forwards;
    animation: dots .5s forwards;
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  .gallery__container .owl-nav {
    pointer-events: none; }
    .gallery__container .owl-nav .owl-prev, .gallery__container .owl-nav .owl-next {
      pointer-events: all; }
  .gallery__container .background {
    display: none; }
  .gallery__container .gallery-item {
    width: 100%;
    height: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center; }
  .gallery__container .close {
    position: absolute;
    top: 0;
    right: 0px;
    background-color: #FFF;
    width: 80px;
    height: 80px;
    z-index: 20;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-animation: close .5s forwards 0.5s;
    animation: close .5s forwards 0.5s;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0; }
    @media only screen and (max-width: 480px) {
      .gallery__container .close {
        width: 40px;
        height: 40px;
        right: 20px; } }
    .gallery__container .close:after, .gallery__container .close:before {
      position: absolute;
      top: 50%;
      margin: -1px auto 0;
      left: 0;
      right: 0;
      height: 2px;
      width: calc(100% - 40px);
      -webkit-transform: rotate(45deg);
      transform: rotate(45deg);
      background-color: #931D2F;
      content: ''; }
      @media only screen and (max-width: 480px) {
        .gallery__container .close:after, .gallery__container .close:before {
          width: calc(100% - 20px); } }
    .gallery__container .close:after {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg); }
  .gallery__container.home-gallery {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 0;
    background: none;
    z-index: 10000;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    pointer-events: none; }
    @media only screen and (max-width: 768px) {
      .gallery__container.home-gallery {
        background: white;
        pointer-events: all; } }
    .gallery__container.home-gallery .close {
      display: none;
      background: none; }
      @media only screen and (max-width: 768px) {
        .gallery__container.home-gallery .close {
          display: block; } }
    .gallery__container.home-gallery .owl-carousel {
      max-height: 80vh;
      min-height: 500px;
      width: 100%;
      max-width: 50%; }
      @media only screen and (max-width: 768px) {
        .gallery__container.home-gallery .owl-carousel {
          width: 95%;
          max-width: none;
          min-height: 0;
          max-height: none; } }
    .gallery__container.home-gallery .background {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: transparent;
      pointer-events: none; }

.fade-enter-active, .fade-leave-active {
  transition: opacity .5s; }

.fade-enter, .fade-leave-to {
  opacity: 0; }

@-webkit-keyframes close {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@keyframes close {
  from {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0; }
  to {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; } }

@-webkit-keyframes dots {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes dots {
  from {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.navigation {
  position: relative;
  left: 0;
  top: 0;
  z-index: 2;
  height: 80px;
  background: #fff;
  width: 100%; }
  @media only screen and (max-width: 480px) {
    .navigation {
      height: 40px; } }
  .navigation .logo {
    position: absolute;
    z-index: 2;
    height: 80px;
    width: 120px;
    background-image: url("../images/logo_2.svg");
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    -webkit-animation: logo .5s forwards 0.2s;
    animation: logo .5s forwards 0.2s;
    margin: 0 auto;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0; }
    @media only screen and (max-width: 480px) {
      .navigation .logo {
        height: calc(40px - 10px);
        top: 5px; } }
  .navigation .burger--wrapper {
    width: 40px;
    height: 50px;
    position: absolute;
    top: 25px;
    z-index: 2;
    right: 20px;
    -webkit-animation: logo .5s forwards 0.5s;
    animation: logo .5s forwards 0.5s;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0; }
    @media only screen and (max-width: 480px) {
      .navigation .burger--wrapper {
        height: 40px;
        top: 0;
        -webkit-transform: none;
        transform: none; } }
    .navigation .burger--wrapper .burger {
      width: 35px;
      height: 50px;
      position: absolute;
      top: 25%;
      right: 0;
      z-index: 2;
      cursor: pointer;
      display: block;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      transition: all 0.3s ease-in; }
      @media only screen and (max-width: 480px) {
        .navigation .burger--wrapper .burger {
          height: 40px;
          top: -4px;
          -webkit-transform: none;
          transform: none; } }
      .navigation .burger--wrapper .burger.hideBurger {
        top: -30%;
        opacity: 0;
        display: none; }
      .navigation .burger--wrapper .burger span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #931D2F;
        display: block;
        top: 17px;
        transition: -webkit-transform 0.5s;
        transition: transform 0.5s;
        transition: transform 0.5s, -webkit-transform 0.5s; }
        .navigation .burger--wrapper .burger span:nth-child(2) {
          top: 25px; }
        .navigation .burger--wrapper .burger span:nth-child(3) {
          top: 33px; }
    .navigation .burger--wrapper .appartments-details {
      width: 40px;
      height: 50px;
      position: absolute;
      right: 0;
      bottom: -20%;
      opacity: 0;
      cursor: pointer;
      transition: all 0.2s linear; }
      .navigation .burger--wrapper .appartments-details span {
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #931D2F;
        display: block;
        top: 15px;
        transition: -webkit-transform 0.5s ease-in;
        transition: transform 0.5s ease-in;
        transition: transform 0.5s ease-in, -webkit-transform 0.5s ease-in; }
        .navigation .burger--wrapper .appartments-details span:nth-child(1) {
          -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg); }
        .navigation .burger--wrapper .appartments-details span:nth-child(2) {
          -webkit-transform: rotate(45deg);
          transform: rotate(45deg); }
      .navigation .burger--wrapper .appartments-details.hideBurger {
        bottom: 0%;
        opacity: 1; }
  .navigation .menu-wrapper {
    width: 100%;
    opacity: 0;
    top: 80px;
    height: calc(100% - 160px);
    position: fixed;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    display: -webkit-box;
    display: flex;
    max-width: 0%;
    transition: all 0.4s ease-in;
    pointer-events: none; }
    @media only screen and (max-width: 480px) {
      .navigation .menu-wrapper {
        top: 40px;
        height: calc(100% - 80px); } }
    .navigation .menu-wrapper.wrapper--left {
      left: 0;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -webkit-box-pack: center;
      justify-content: center;
      -webkit-box-align: start;
      align-items: flex-start;
      background: rgba(147, 29, 47, 0.83); }
      .navigation .menu-wrapper.wrapper--left .menu-item-wrapper {
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding-left: 50px;
        -webkit-box-align: start;
        align-items: flex-start; }
    .navigation .menu-wrapper.wrapper--right {
      right: 0;
      background: rgba(0, 0, 0, 0.3); }
      @media only screen and (max-width: 768px) {
        .navigation .menu-wrapper.wrapper--right {
          display: none !important; } }
      .navigation .menu-wrapper.wrapper--right .menu-carousel {
        width: 120%;
        height: 60vh;
        background: #931D2F;
        position: absolute;
        left: -30%;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%); }
        .navigation .menu-wrapper.wrapper--right .menu-carousel .item {
          width: 100%;
          height: 100%;
          opacity: 0;
          position: absolute;
          transition: all 0.3s ease-in;
          overflow: hidden; }
          .navigation .menu-wrapper.wrapper--right .menu-carousel .item .background {
            width: 100%;
            height: 100%;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            transition: all 0.3s ease-in;
            -webkit-transform: translateX(-100%);
            transform: translateX(-100%); }
          .navigation .menu-wrapper.wrapper--right .menu-carousel .item.active {
            width: 100%;
            height: 100%;
            opacity: 1; }
            .navigation .menu-wrapper.wrapper--right .menu-carousel .item.active .background {
              -webkit-transform: translateX(0);
              transform: translateX(0); }
    .navigation .menu-wrapper .menu-item {
      width: auto;
      height: 30px;
      margin-bottom: 20px;
      font-family: "BrownLight";
      text-transform: uppercase;
      letter-spacing: 1px;
      position: relative;
      padding-right: 10px;
      opacity: 0;
      -webkit-transform: translateX(-20px);
      transform: translateX(-20px);
      display: block; }
      .navigation .menu-wrapper .menu-item:nth-child(1) {
        transition: all 0.2s ease-out 0.1s; }
      .navigation .menu-wrapper .menu-item:nth-child(2) {
        transition: all 0.2s ease-out 0.2s; }
      .navigation .menu-wrapper .menu-item:nth-child(3) {
        transition: all 0.2s ease-out 0.3s; }
      .navigation .menu-wrapper .menu-item:nth-child(4) {
        transition: all 0.2s ease-out 0.4s; }
      .navigation .menu-wrapper .menu-item:nth-child(5) {
        transition: all 0.2s ease-out 0.5s; }
      .navigation .menu-wrapper .menu-item:nth-child(6) {
        transition: all 0.2s ease-out 0.6s; }
      .navigation .menu-wrapper .menu-item:nth-child(7) {
        transition: all 0.2s ease-out 0.7s; }
      .navigation .menu-wrapper .menu-item:nth-child(8) {
        transition: all 0.2s ease-out 0.8s; }
      .navigation .menu-wrapper .menu-item:nth-child(9) {
        transition: all 0.2s ease-out 0.9s; }
      .navigation .menu-wrapper .menu-item a {
        text-decoration: none;
        padding: 8px 8px 5px;
        display: block;
        color: #FFF;
        z-index: 3;
        position: relative;
        transition: all 0.2s ease-in; }
        .navigation .menu-wrapper .menu-item a:before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          width: 0;
          height: 100%;
          transition: all 0.2s ease-in;
          background-color: #FFF;
          z-index: -1; }
      .navigation .menu-wrapper .menu-item:hover a {
        color: #931D2F !important;
        padding-left: 13px; }
        .navigation .menu-wrapper .menu-item:hover a:before {
          width: 100%; }
      .navigation .menu-wrapper .menu-item.active a {
        color: #931D2F !important;
        padding-left: 5px;
        z-index: 1; }
        .navigation .menu-wrapper .menu-item.active a:before {
          width: 100%; }
  .navigation.active .burger span:nth-child(2) {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%); }
  .navigation.active .menu-wrapper {
    opacity: 1;
    max-width: 50%;
    pointer-events: all; }
    @media only screen and (max-width: 768px) {
      .navigation.active .menu-wrapper.wrapper--left {
        max-width: 100%; } }
    .navigation.active .menu-wrapper .menu-item {
      opacity: 1;
      -webkit-transform: translateX(0);
      transform: translateX(0);
      display: inline-block; }

@-webkit-keyframes logo {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

@keyframes logo {
  from {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
    opacity: 0; }
  to {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1; } }

.form__wrapper {
  width: 30%;
  height: auto;
  background: rgba(255, 255, 255, 0.9);
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  box-sizing: border-box;
  padding: 30px 30px; }
  @media only screen and (max-width: 1280px) {
    .form__wrapper {
      left: auto;
      right: 20px;
      width: calc(50% - 40px);
      -webkit-transform: none;
      transform: none;
      top: 20px;
      height: calc(100% - 40px - 80px);
      box-sizing: border-box; } }
  @media only screen and (max-width: 1024px) {
    .form__wrapper {
      position: relative;
      -webkit-transform: none;
      transform: none;
      width: 100%;
      top: 0;
      left: auto;
      right: auto;
      height: auto;
      width: calc(100% - 40px);
      margin-left: 20px;
      margin-top: 20px; } }
  @media only screen and (max-width: 480px) {
    .form__wrapper {
      width: calc(100%);
      margin-left: 0; } }
  .form__wrapper .form {
    width: 90%;
    margin: 0 auto; }
    @media only screen and (max-width: 1024px) {
      .form__wrapper .form {
        width: 95%;
        margin: 0;
        padding: 3%; } }
  .form__wrapper .input, .form__wrapper .textarea, .form__wrapper .button {
    box-sizing: border-box; }
  .form__wrapper .input-wrapper {
    position: relative;
    width: 100%; }
  .form__wrapper .input {
    display: block;
    width: 100%;
    background: none;
    border: none;
    border: 1px solid #931D2F;
    font-family: "BrownRegular";
    outline: none;
    color: #931D2F;
    padding: 10px 20px;
    margin-top: 5px;
    font-size: 0.8em;
    position: relative;
    z-index: 2; }
    .form__wrapper .input:focus + .input-label {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      font-size: 0.7em; }
    .form__wrapper .input:valid + .input-label {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      font-size: 0.7em; }
  .form__wrapper .input-label {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 1;
    font-size: 0.8em;
    font-family: "BrownRegular";
    transition: all 0.5s;
    color: #FFF; }
  .form__wrapper .input::-webkit-input-placeholder {
    color: #931D2F; }
  .form__wrapper .input:-ms-input-placeholder {
    color: #931D2F; }
  .form__wrapper .input::placeholder {
    color: #931D2F; }
  .form__wrapper .textarea::-webkit-input-placeholder {
    color: #931D2F; }
  .form__wrapper .textarea:-ms-input-placeholder {
    color: #931D2F; }
  .form__wrapper .textarea::placeholder {
    color: #931D2F; }
  .form__wrapper .textarea {
    display: block;
    width: 100%;
    height: 200px;
    background: none;
    border: none;
    border: 1px solid #931D2F;
    font-family: "BrownRegular";
    outline: none;
    color: #931D2F;
    padding: 10px 20px;
    margin-top: 5px;
    margin-bottom: 10px;
    font-size: 0.8em;
    resize: none; }
    .form__wrapper .textarea:focus + .input-label {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      font-size: 0.7em; }
    .form__wrapper .textarea:valid + .input-label {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      font-size: 0.7em; }
  .form__wrapper .button {
    padding: 10px 0px;
    background: transparent;
    border: none;
    color: #931D2F;
    outline: none;
    font-size: 0.8em;
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .form__wrapper .form-message {
    padding: 15px;
    border: 1px solid transparent;
    clear: both;
    font-size: 1.1rem; }
    @media only screen and (max-width: 1024px) {
      .form__wrapper .form-message {
        font-size: 0.9rem; } }
    .form__wrapper .form-message.success {
      color: #3c763d;
      background-color: #dff0d8;
      border-color: #d6e9c6; }
    .form__wrapper .form-message.error {
      color: #a94442;
      background-color: #f2dede;
      border-color: #ebccd1; }

/**
 * Owl Carousel v2.2.0
 * Copyright 2013-2016 David Deutsch
 * Licensed under MIT (https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE)
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1; }

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y; }

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px); }

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none; }

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d; }

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none; }

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-loaded {
  display: block; }

.owl-carousel.owl-loading {
  opacity: 0;
  display: block; }

.owl-carousel.owl-hidden {
  opacity: 0; }

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden; }

.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab; }

.owl-carousel.owl-rtl {
  direction: rtl; }

.owl-carousel.owl-rtl .owl-item {
  float: right; }

/* No Js */
.no-js .owl-carousel {
  display: block; }

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both; }

.owl-carousel .owl-animated-in {
  z-index: 0; }

.owl-carousel .owl-animated-out {
  z-index: 1; }

.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut; }

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

@keyframes fadeOut {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }

/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out; }

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease; }

.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000; }

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease; }

.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3); }

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none; }

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease; }

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%; }

#wrapper {
  position: relative;
  height: 100%; }

.container {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  height: 100%; }
  .container > .content {
    display: -webkit-box;
    display: flex;
    -webkit-box-flex: 1;
    flex: auto;
    position: relative;
    z-index: 1; }

.section {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  overflow: hidden;
  padding-bottom: 80px; }
  @media only screen and (max-width: 480px) {
    .section {
      padding-bottom: 40px; } }
  .section.disabled .dragscroll {
    pointer-events: none;
    overflow: hidden; }
  .section.gallery-open {
    pointer-events: none; }
    .section.gallery-open .appartment-details .wrapper--left {
      pointer-events: none;
      overflow: hidden; }
    .section.gallery-open .dragscroll, .section.gallery-open .appartment-details {
      pointer-events: none;
      overflow: hidden; }
  .section.scroll-disabled {
    pointer-events: none;
    overflow: hidden; }
  .section .background {
    position: fixed;
    left: 0;
    top: 80px;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    height: calc(100% - 80px - 80px); }
    @media only screen and (max-width: 480px) {
      .section .background {
        display: none; } }
  .section__content {
    position: relative;
    height: calc(100%);
    width: 50%;
    box-sizing: border-box;
    color: #FFF;
    z-index: 2;
    float: left; }
    @media only screen and (max-width: 1024px) {
      .section__content {
        width: 100%;
        height: auto;
        float: none; } }
    .section__content--left {
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -webkit-box-align: start;
      align-items: flex-start;
      -webkit-box-pack: center;
      justify-content: center;
      padding: 0 50px;
      background: rgba(147, 29, 47, 0.83); }
      @media only screen and (max-width: 1280px) {
        .section__content--left {
          padding: 30px;
          -webkit-box-align: center;
          align-items: center; } }
      .section__content--left .download {
        color: #FFF;
        font-family: "BrownRegular";
        text-decoration: none;
        font-size: 0.8em;
        display: -webkit-box;
        display: flex;
        padding: 20px 0;
        -webkit-box-align: center;
        align-items: center; }
        .section__content--left .download:before {
          content: '';
          background-image: url("../images/file-icon.svg");
          background-repeat: no-repeat;
          width: 30px;
          height: 40px;
          margin-right: 20px; }
    .section__content .show-gallery-mobile:before {
      background-image: url("../images/show-gallery.svg");
      width: 40px; }
    @media (min-width: 1025px) {
      .section__content .show-gallery-mobile {
        display: none; } }
    .section__content .mailto-icon:before {
      background-image: url("../images/message-icon.svg");
      width: 40px; }
    .section__content--right {
      height: 50%;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%); }
      .section__content--right.white-overlay {
        height: 100%;
        float: left;
        background: rgba(255, 255, 255, 0.8); }
        @media (max-width: 1024px) {
          .section__content--right.white-overlay {
            background: none; } }
      .section__content--right .owl-holder {
        position: relative;
        top: 50%;
        -webkit-transform: translate(-10%, -40%);
        transform: translate(-10%, -40%);
        width: 110%;
        height: 55%; }
      .section__content--right .show-gallery {
        width: 130px;
        height: 100%;
        top: -50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        position: relative;
        z-index: 1;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        justify-content: center;
        cursor: pointer;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-align: center;
        align-items: center;
        float: right;
        font-family: "BrownLight"; }
        @media (max-width: 1024px) {
          .section__content--right .show-gallery {
            display: none; } }
        .section__content--right .show-gallery img {
          width: 25%; }
        .section__content--right .show-gallery p {
          margin: 0;
          padding-left: 5px;
          padding-right: 5px;
          font-size: 16px;
          padding-top: 10px; }
    .section__content .section__title {
      font-size: 2.6rem;
      font-family: "BrownRegular";
      text-transform: uppercase; }
      @media (max-width: 1920px) {
        .section__content .section__title {
          font-size: 1.8rem; } }
    .section__content .split {
      display: block;
      height: 2px;
      background-color: #FFF;
      width: 20px;
      margin: 20px 0; }
    .section__content .section__description {
      font-size: 0.9em;
      font-family: "BrownLight";
      max-width: 500px;
      line-height: 1.2rem;
      -webkit-font-smoothing: antialiased; }
  .section .vue-map-container {
    width: 100%;
    height: calc(100% -  80px);
    top: 0;
    left: 0;
    position: absolute; }
    @media only screen and (max-width: 480px) {
      .section .vue-map-container {
        position: relative;
        height: 250px; } }

.owl-stage {
  padding-left: 0 !important; }

.owl-dots {
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateX(-8%);
  transform: translateX(-8%); }
  .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background: #931D2F;
    opacity: 0.5;
    margin-right: 5px;
    display: inline-block;
    transition: opacity 0.3s; }
    .owl-dots .owl-dot.active {
      opacity: 1; }

.owl-nav {
  position: absolute;
  z-index: 9;
  width: 100%;
  height: 6%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between; }
  .owl-nav .owl-prev, .owl-nav .owl-next {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    width: 45px;
    padding: 0 2%;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
    height: 100%; }
  @media (min-width: 1024px) {
    .owl-nav .owl-prev:hover {
      -webkit-transform: translateX(-10%);
      transform: translateX(-10%); } }
  .owl-nav .owl-next {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg); }
    @media (min-width: 1024px) {
      .owl-nav .owl-next:hover {
        -webkit-transform: translateX(10%) rotate(180deg);
        transform: translateX(10%) rotate(180deg); } }
  .owl-nav img {
    width: 100%;
    height: auto;
    max-height: 70px; }
    @media only screen and (max-width: 1024px) {
      .owl-nav img {
        max-height: 20px; } }

@media only screen and (max-width: 1024px) {
  .phone-wrapper {
    min-width: 500px; } }

@media only screen and (max-width: 480px) {
  .phone-wrapper {
    min-width: 0;
    width: 100%; } }

.phone, .email {
  font-family: "BrownLight";
  font-size: 0.9em;
  padding-top: 5px; }
  .phone a, .email a {
    text-decoration: none;
    color: #fff;
    font-family: "BrownLight"; }

.item-carousel {
  width: 100%;
  height: 55vh;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }

.animated {
  transition: all 0.4s; }
  .animated:nth-child(1) {
    transition-delay: 0.1s; }
  .animated:nth-child(2) {
    transition-delay: 0.2s; }
  .animated:nth-child(3) {
    transition-delay: 0.3s; }
  .animated:nth-child(4) {
    transition-delay: 0.4s; }
  .animated:nth-child(5) {
    transition-delay: 0.5s; }
  .animated:nth-child(6) {
    transition-delay: 0.6s; }
  .animated:nth-child(7) {
    transition-delay: 0.7s; }
  .animated:nth-child(8) {
    transition-delay: 0.8s; }
  .animated:nth-child(9) {
    transition-delay: 0.9s; }
  .animated:nth-child(10) {
    transition-delay: 1s; }
  .animated:nth-child(11) {
    transition-delay: 1.1s; }
  .animated:nth-child(12) {
    transition-delay: 1.2s; }
  .animated:nth-child(13) {
    transition-delay: 1.3s; }
  .animated:nth-child(14) {
    transition-delay: 1.4s; }

.cls-1, .cls-2, .cls-3, .cls-4 {
  fill: none;
  stroke: #931d2f; }

.cls-1, .cls-2, .cls-4 {
  stroke-miterlimit: 10; }

.cls-1 {
  stroke-width: 2px; }

.cls-2, .cls-3 {
  stroke-width: 1.279px; }

.cls-4 {
  stroke-width: 0.756px; }

#credit {
  position: absolute;
  bottom: 0px;
  right: 25px;
  height: 80px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 10px;
  font-family: "BrownLight";
  text-align: right; }
  @media only screen and (max-width: 480px) {
    #credit {
      height: 40px;
      right: 15px;
      font-size: 8px; } }
  #credit a {
    color: #931D2F;
    text-decoration: none; }

.dragscroll {
  width: 100%;
  position: relative;
  height: calc(100%);
  left: 0;
  top: 0;
  z-index: 2;
  overflow: hidden;
  cursor: move; }
  .dragscroll img {
    width: auto;
    top: 0;
    left: 0;
    z-index: 1;
    height: 100%; }
    .dragscroll img.wide {
      width: 100%;
      height: auto; }
  .dragscroll svg {
    position: absolute;
    top: 0;
    left: 0;
    height: auto;
    z-index: 3; }
    .dragscroll svg .apartment-poly {
      fill: #1a1d23;
      transition: opacity 0.3s; }
      .dragscroll svg .apartment-poly:hover {
        opacity: 0.7; }
  .dragscroll .information-hover {
    display: block;
    position: fixed;
    right: -9999px;
    top: -9999px;
    font-size: 1.1rem;
    pointer-events: none;
    line-height: 1.2;
    padding: 20px;
    z-index: 10000000;
    text-align: right;
    color: #fff;
    width: 330px;
    color: #FFF;
    text-decoration: none; }
    @media only screen and (max-width: 1024px) {
      .dragscroll .information-hover {
        pointer-events: all; } }
    @media only screen and (max-width: 480px) {
      .dragscroll .information-hover {
        font-size: 0.8rem;
        line-height: 1rem; } }
    .dragscroll .information-hover.left {
      text-align: left; }
    .dragscroll .information-hover .title {
      font-family: "BrownRegular";
      font-size: 1.5em;
      text-transform: uppercase; }
    .dragscroll .information-hover .description {
      font-family: "BrownLight"; }
    .dragscroll .information-hover .open-apartment {
      font-family: "BrownBold";
      pointer-events: all;
      color: #FFF;
      text-decoration: none; }

.appartment-details {
  width: 100%;
  height: calc(100% - 80px);
  position: absolute;
  z-index: 1000;
  transition: all 0.3s linear;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  overflow: hidden;
  box-sizing: border-box; }
  @media only screen and (max-width: 480px) {
    .appartment-details {
      height: calc(100% - 40px);
      overflow: auto;
      display: block; } }
  .appartment-details:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(147, 29, 47, 0.83);
    width: 100%;
    max-width: 50%;
    height: 100%;
    transition: all 0.4s; }
    @media only screen and (max-width: 480px) {
      .appartment-details:after {
        max-width: 100%;
        position: fixed;
        overflow: hidden;
        height: calc(100% - 40px); } }
  @media only screen and (max-width: 480px) {
    .appartment-details {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column; } }
  .appartment-details:before {
    content: '';
    position: absolute;
    top: 0;
    left: auto;
    background-color: rgba(255, 255, 255, 0.8);
    width: 100%;
    max-width: 50%;
    transition: all 0.4s;
    right: 0;
    height: 100%; }
    @media only screen and (max-width: 480px) {
      .appartment-details:before {
        display: none; } }
  .appartment-details .back {
    color: #931D2F;
    text-decoration: none;
    font-size: 0.8rem;
    font-family: "BrownLight";
    transition: all 0.4s;
    align-self: flex-start;
    position: absolute;
    left: 50%;
    padding-left: 65px;
    margin-left: -25px;
    z-index: 10000;
    margin-top: 30px;
    padding-top: 20px;
    height: 30px; }
    @media (max-height: 480px) {
      .appartment-details .back {
        margin-top: 25px;
        padding-left: 30px;
        margin-left: -13px; } }
    @media only screen and (max-width: 480px) {
      .appartment-details .back span {
        display: none; } }
    @media (max-height: 480px) {
      .appartment-details .back span {
        display: none; } }
    .appartment-details .back:before {
      content: '';
      position: absolute;
      top: 0px;
      left: 0;
      height: 50px;
      width: 50px;
      background: url("../images/back.png") left center no-repeat;
      background-size: cover; }
      @media (max-height: 480px) {
        .appartment-details .back:before {
          height: 25px;
          width: 25px; } }
  .appartment-details .cover-wrapper {
    width: 50%;
    position: absolute;
    transition: opacity 0.4s;
    z-index: 1000;
    padding: 0;
    box-sizing: border-box;
    cursor: pointer;
    opacity: 1;
    min-height: 300px;
    margin: auto;
    left: 0;
    right: 0;
    top: 50%;
    height: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding: 0 0;
    pointer-events: none; }
    @media only screen and (max-width: 1024px) {
      .appartment-details .cover-wrapper {
        left: auto;
        width: 50%;
        right: 0; } }
    @media only screen and (max-width: 480px) {
      .appartment-details .cover-wrapper {
        position: relative;
        -webkit-transform: none;
        transform: none;
        top: 0;
        height: auto; } }
    @media (max-height: 480px) {
      .appartment-details .cover-wrapper {
        min-height: 0; } }
  @media only screen and (max-height: 480px) and (max-width: 480px) {
    .appartment-details .cover-wrapper {
      min-height: 300px; } }
    .appartment-details .cover-wrapper .legend-wrapper {
      position: absolute;
      z-index: 100;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
      left: 50%;
      right: 0; }
      @media only screen and (max-width: 1024px) {
        .appartment-details .cover-wrapper .legend-wrapper {
          padding-left: 10px;
          left: 20px; } }
      @media only screen and (max-width: 480px) {
        .appartment-details .cover-wrapper .legend-wrapper {
          left: 35px; } }
      .appartment-details .cover-wrapper .legend-wrapper div.legend {
        width: 2px;
        background-color: #000;
        position: relative;
        color: #000; }
        @media only screen and (max-width: 480px) {
          .appartment-details .cover-wrapper .legend-wrapper div.legend {
            height: 50%;
            background-color: #FFF;
            color: #FFF; } }
        .appartment-details .cover-wrapper .legend-wrapper div.legend > span {
          display: block;
          position: absolute;
          bottom: 0;
          left: 100%;
          font-family: "BrownLight";
          font-size: 0.7rem;
          text-indent: 5px; }
          @media only screen and (max-width: 1024px) {
            .appartment-details .cover-wrapper .legend-wrapper div.legend > span {
              left: auto;
              right: 100%;
              text-indent: 0px; } }
          .appartment-details .cover-wrapper .legend-wrapper div.legend > span:before {
            content: '';
            height: 2px;
            background-color: #000;
            width: 10px;
            position: absolute;
            top: 0;
            right: 100%; }
            @media only screen and (max-width: 480px) {
              .appartment-details .cover-wrapper .legend-wrapper div.legend > span:before {
                background-color: #FFF; } }
            @media only screen and (max-width: 1024px) {
              .appartment-details .cover-wrapper .legend-wrapper div.legend > span:before {
                left: 100%; } }
          .appartment-details .cover-wrapper .legend-wrapper div.legend > span:last-child {
            bottom: auto;
            top: 0; }
          .appartment-details .cover-wrapper .legend-wrapper div.legend > span span {
            display: block;
            -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
            white-space: nowrap;
            padding-right: 5px; }
      .appartment-details .cover-wrapper .legend-wrapper .north {
        width: 25px;
        height: 25px;
        border: 2px solid #000;
        border-radius: 50%;
        position: relative;
        margin-top: 40px;
        margin-left: -14px;
        top: 20px; }
        @media only screen and (max-width: 480px) {
          .appartment-details .cover-wrapper .legend-wrapper .north {
            border-color: #FFF; } }
        .appartment-details .cover-wrapper .legend-wrapper .north:before {
          height: 25px;
          -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
          width: 2px;
          top: 0;
          left: 50%;
          margin-left: -1px;
          background-color: #000;
          content: '';
          position: absolute; }
          @media only screen and (max-width: 480px) {
            .appartment-details .cover-wrapper .legend-wrapper .north:before {
              background-color: #FFF; } }
        .appartment-details .cover-wrapper .legend-wrapper .north:after {
          content: 'N';
          position: absolute;
          bottom: 100%;
          color: #000;
          left: 50%;
          -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
          top: -30px; }
          @media only screen and (max-width: 480px) {
            .appartment-details .cover-wrapper .legend-wrapper .north:after {
              color: #FFF; } }
    .appartment-details .cover-wrapper img.cover {
      width: 100%;
      height: auto;
      max-height: calc(100% - 150px);
      width: auto;
      position: absolute;
      top: 50%;
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
      max-width: calc(100% - 120px);
      pointer-events: all;
      cursor: pointer;
      right: 0;
      left: 0;
      margin: auto; }
      @media only screen and (max-width: 1024px) {
        .appartment-details .cover-wrapper img.cover {
          max-width: calc(100% - 50px);
          margin-left: auto;
          margin-right: 0; } }
      @media only screen and (max-width: 768px) {
        .appartment-details .cover-wrapper img.cover {
          max-width: calc(100% - 50px);
          margin-left: auto;
          margin-right: 0; } }
      @media only screen and (max-width: 480px) {
        .appartment-details .cover-wrapper img.cover {
          left: 0;
          right: 0;
          margin: auto; } }
      @media (max-height: 480px) {
        .appartment-details .cover-wrapper img.cover {
          margin: auto;
          left: 0; } }
    @media only screen and (max-width: 1024px) {
      .appartment-details .cover-wrapper {
        width: 50%; } }
    @media only screen and (max-width: 480px) {
      .appartment-details .cover-wrapper {
        width: 100%; } }
    .appartment-details .cover-wrapper img {
      z-index: 1;
      position: relative; }
  .appartment-details .image {
    width: 100%;
    height: calc(100% - 100px);
    top: 50px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    z-index: 1000; }
    @media only screen and (max-width: 1024px) {
      .appartment-details .image {
        top: 0;
        height: 100%; } }
    @media only screen and (max-width: 480px) {
      .appartment-details .image {
        height: 300px; } }
  .appartment-details.active {
    opacity: 1;
    z-index: 3; }
  .appartment-details .owl-dots {
    position: absolute;
    bottom: 0;
    height: 80px;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    width: 100%;
    -webkit-transform: none;
    transform: none;
    left: 0;
    z-index: 10000; }
    @media only screen and (max-width: 480px) {
      .appartment-details .owl-dots {
        height: calc(100% - 40px); } }
    .appartment-details .owl-dots .owl-dot {
      cursor: pointer; }
  .appartment-details .links-wrapper {
    z-index: 10000;
    position: absolute;
    bottom: 0;
    width: 33.3333%;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -webkit-box-pack: center;
    justify-content: center; }
    @media only screen and (max-width: 1024px) {
      .appartment-details .links-wrapper {
        width: 50%; } }
    @media only screen and (max-width: 768px) {
      .appartment-details .links-wrapper {
        width: 70%; } }
    @media only screen and (max-width: 480px) {
      .appartment-details .links-wrapper {
        width: 100%;
        margin: 0;
        position: relative;
        bottom: auto;
        top: auto;
        border-top: 1px solid #931D2F; } }
    .appartment-details .links-wrapper a {
      color: #931D2F;
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
      -webkit-box-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      align-items: center;
      background: rgba(255, 255, 255, 0.83);
      height: 75px;
      width: 50%;
      font-family: "BrownBold";
      font-size: 0.8rem;
      text-decoration: none;
      padding: 0 10px; }
      @media only screen and (max-width: 768px) {
        .appartment-details .links-wrapper a {
          height: 62px;
          width: 30%;
          font-size: 0.6rem; } }
      @media only screen and (max-width: 480px) {
        .appartment-details .links-wrapper a:first-child {
          border-right: 1px solid #931D2F; } }
      .appartment-details .links-wrapper a svg {
        height: calc(100% - 20px);
        margin-right: 20px;
        opacity: 1;
        transition: opacity 0.2s ease-out; }
        .appartment-details .links-wrapper a svg.fade-out {
          opacity: 0; }
  .appartment-details .wrapper--left {
    width: 100%;
    height: auto;
    z-index: 3;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: flex; }
    .appartment-details .wrapper--left .inner {
      width: 33.33333333%;
      display: -webkit-box;
      display: flex;
      -webkit-box-pack: center;
      justify-content: center;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      padding-top: 40px;
      position: relative; }
      @media (max-height: 1024px) {
        .appartment-details .wrapper--left .inner {
          -webkit-box-pack: start;
          justify-content: flex-start; } }
      @media only screen and (max-width: 1024px) {
        .appartment-details .wrapper--left .inner {
          width: 50%; } }
      @media only screen and (max-width: 480px) {
        .appartment-details .wrapper--left .inner {
          width: 100%;
          display: block;
          padding-top: 20px; } }
      @media (max-height: 768px) {
        .appartment-details .wrapper--left .inner {
          display: block; } }
    @media only screen and (max-width: 1024px) {
      .appartment-details .wrapper--left {
        top: 0;
        left: 0;
        height: auto;
        overflow: auto; } }
    @media only screen and (max-width: 768px) {
      .appartment-details .wrapper--left {
        overflow: hidden; } }
    @media only screen and (max-width: 480px) {
      .appartment-details .wrapper--left {
        width: 100%;
        display: block;
        overflow: visible;
        padding-bottom: 0; } }
    @media (max-height: 768px) {
      .appartment-details .wrapper--left {
        overflow: auto;
        display: block; } }
    .appartment-details .wrapper--left.active {
      height: 100%;
      opacity: 1; }
    .appartment-details .wrapper--left header {
      text-transform: uppercase; }
    .appartment-details .wrapper--left .visit-wrapper {
      padding: 20px;
      padding-top: 0;
      padding-left: 70px;
      color: #FFF;
      position: relative;
      z-index: 10;
      /* width: 70%; */ }
      @media only screen and (max-width: 1280px) {
        .appartment-details .wrapper--left .visit-wrapper {
          padding-left: 35px; } }
      @media only screen and (max-width: 1024px) {
        .appartment-details .wrapper--left .visit-wrapper {
          padding-bottom: 100px; } }
      @media only screen and (max-width: 768px) {
        .appartment-details .wrapper--left .visit-wrapper {
          padding-bottom: 70px; } }
      @media only screen and (max-width: 480px) {
        .appartment-details .wrapper--left .visit-wrapper {
          padding-bottom: 0; } }
      .appartment-details .wrapper--left .visit-wrapper img {
        max-width: 400px; }
        @media only screen and (max-width: 768px) {
          .appartment-details .wrapper--left .visit-wrapper img {
            max-width: 80%; } }
      .appartment-details .wrapper--left .visit-wrapper .split {
        margin-top: 0; }
    .appartment-details .wrapper--left h5.visit {
      font-size: 1rem;
      font-family: "BrownRegular";
      padding: 0;
      margin: 0;
      margin-bottom: 5px;
      margin-top: 0; }
      @media only screen and (max-width: 1280px) {
        .appartment-details .wrapper--left h5.visit {
          font-size: 0.9rem; } }
      @media only screen and (max-width: 1024px) {
        .appartment-details .wrapper--left h5.visit {
          font-size: 0.8rem; } }
      @media only screen and (max-width: 768px) {
        .appartment-details .wrapper--left h5.visit {
          font-size: 0.7rem; } }
    .appartment-details .wrapper--left p.visit {
      margin: 0;
      font-family: "BrownLight";
      margin-bottom: 40px; }
      @media only screen and (max-width: 1280px) {
        .appartment-details .wrapper--left p.visit {
          font-size: 0.9rem; } }
      @media only screen and (max-width: 1024px) {
        .appartment-details .wrapper--left p.visit {
          font-size: 0.8rem; } }
      @media only screen and (max-width: 768px) {
        .appartment-details .wrapper--left p.visit {
          font-size: 0.7rem; } }
    .appartment-details .wrapper--left .split {
      display: block;
      height: 2px;
      background-color: #FFF;
      width: 20px;
      margin: 20px 0;
      align-self: flex-start; }
      .appartment-details .wrapper--left .split-lg {
        width: 100px; }
    .appartment-details .wrapper--left .infos {
      padding: 0 20px;
      padding-left: 70px;
      box-sizing: border-box;
      color: #FFF;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      position: relative;
      z-index: 1;
      text-decoration: none;
      color: #FFF;
      margin: auto 0;
      -webkit-box-flex: 1;
      flex: 1;
      display: -webkit-box;
      display: flex;
      -webkit-box-pack: center;
      justify-content: center;
      overflow: auto; }
      @media (max-height: 800px) {
        .appartment-details .wrapper--left .infos {
          -webkit-box-pack: start;
          justify-content: flex-start; } }
      @media (max-height: 1024px) {
        .appartment-details .wrapper--left .infos {
          margin: 35px 0; } }
      @media only screen and (max-width: 1280px) {
        .appartment-details .wrapper--left .infos {
          padding-left: 35px; } }
      @media only screen and (max-width: 768px) {
        .appartment-details .wrapper--left .infos {
          overflow: auto;
          margin: 35px 0 20px; } }
      @media only screen and (max-width: 480px) {
        .appartment-details .wrapper--left .infos {
          margin-top: 80px; } }
      .appartment-details .wrapper--left .infos .apartment__description {
        width: 100%;
        font-family: "BrownLight";
        font-size: 1.1em; }
        @media only screen and (max-width: 768px) {
          .appartment-details .wrapper--left .infos .apartment__description {
            font-size: 0.9em; } }
        .appartment-details .wrapper--left .infos .apartment__description ul {
          list-style: none;
          margin: 0;
          padding: 0; }
          .appartment-details .wrapper--left .infos .apartment__description ul li {
            padding: 5px 0; }
            @media only screen and (max-width: 768px) {
              .appartment-details .wrapper--left .infos .apartment__description ul li {
                padding: 3px 0; } }
        .appartment-details .wrapper--left .infos .apartment__description__short {
          line-height: 1.2rem; }
      .appartment-details .wrapper--left .infos .apartment__title {
        width: 100%;
        font-family: "BrownRegular";
        font-size: 2.6rem; }
        @media only screen and (max-width: 1920px) {
          .appartment-details .wrapper--left .infos .apartment__title {
            font-size: 1.8rem; } }
        @media only screen and (max-width: 1280px) {
          .appartment-details .wrapper--left .infos .apartment__title {
            font-size: 1.3rem; } }
        @media only screen and (max-width: 480px) {
          .appartment-details .wrapper--left .infos .apartment__title {
            font-size: 1rem; } }
  .appartment-details .wrapper--left-collection {
    width: 100%;
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
    padding: 40px 0 20px;
    overflow: auto; }
    .appartment-details .wrapper--left-collection:after {
      display: none; }
    @media only screen and (max-width: 480px) {
      .appartment-details .wrapper--left-collection {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        padding: 20px 0 20px; } }
    .appartment-details .wrapper--left-collection .back + .infos {
      margin-top: 55px; }
      @media only screen and (max-width: 1280px) {
        .appartment-details .wrapper--left-collection .back + .infos {
          margin-top: 55px; } }
      @media only screen and (max-width: 1024px) {
        .appartment-details .wrapper--left-collection .back + .infos {
          margin-top: 0; } }
      @media only screen and (max-width: 480px) {
        .appartment-details .wrapper--left-collection .back + .infos {
          margin-top: 20px; } }
    .appartment-details .wrapper--left-collection .infos {
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
      flex-direction: row;
      width: 100%;
      height: 50%;
      padding: 0;
      -webkit-box-flex: 1;
      flex: auto;
      transition: opacity 0.2s ease-out;
      min-height: 300px;
      overflow: auto;
      -webkit-box-pack: start;
      justify-content: flex-start; }
      @media only screen and (max-width: 480px) {
        .appartment-details .wrapper--left-collection .infos {
          -webkit-box-orient: vertical;
          -webkit-box-direction: normal;
          flex-direction: column; } }
      .appartment-details .wrapper--left-collection .infos .content-wrapper {
        width: 33.33333333%;
        display: -webkit-box;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -webkit-box-pack: center;
        justify-content: center;
        padding-left: 70px;
        box-sizing: border-box; }
        @media only screen and (max-width: 1024px) {
          .appartment-details .wrapper--left-collection .infos .content-wrapper {
            width: 50%;
            padding-left: 35px; } }
        @media only screen and (max-width: 480px) {
          .appartment-details .wrapper--left-collection .infos .content-wrapper {
            width: 100%; } }
      .appartment-details .wrapper--left-collection .infos.hovered {
        opacity: 0.6; }
        .appartment-details .wrapper--left-collection .infos.hovered .image {
          -webkit-filter: grayscale(100%);
          filter: grayscale(100%); }
      .appartment-details .wrapper--left-collection .infos .image-wrapper {
        width: 33.333333333%;
        position: relative;
        overflow: hidden; }
        @media only screen and (max-width: 1024px) {
          .appartment-details .wrapper--left-collection .infos .image-wrapper {
            width: 50%;
            background-position: center; } }
        @media only screen and (max-width: 480px) {
          .appartment-details .wrapper--left-collection .infos .image-wrapper {
            width: 100%;
            min-height: 300px; } }
      .appartment-details .wrapper--left-collection .infos .image {
        background-position: top center;
        background-size: contain;
        background-repeat: no-repeat;
        transition: -webkit-filter 0.2s ease-out;
        transition: filter 0.2s ease-out;
        transition: filter 0.2s ease-out, -webkit-filter 0.2s ease-out;
        transition: all 0.4s;
        height: auto;
        padding: 0;
        top: 0;
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0;
        -webkit-transform: scale(1.5);
        transform: scale(1.5); }
        @media only screen and (max-width: 1024px) {
          .appartment-details .wrapper--left-collection .infos .image {
            background-position: center;
            left: 20px;
            width: calc(100% - 40px);
            -webkit-transform: scale(1.1);
            transform: scale(1.1); } }
      .appartment-details .wrapper--left-collection .infos .more, .appartment-details .wrapper--left-collection .infos .short-description {
        font-family: "BrownLight";
        font-size: 0.9rem;
        margin: 10px 0; }
        @media only screen and (max-width: 1280px) {
          .appartment-details .wrapper--left-collection .infos .more, .appartment-details .wrapper--left-collection .infos .short-description {
            font-size: 0.9rem; } }
      .appartment-details .wrapper--left-collection .infos .short-description {
        line-height: 1.2rem; }
      .appartment-details .wrapper--left-collection .infos .more {
        color: #FFF;
        text-decoration: none; }
  .appartment-details .apartment__image {
    width: 50%;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    z-index: 3;
    transition: top 0.5s linear, opacity 0.5s linear;
    position: relative; }
    .appartment-details .apartment__image #zoom {
      position: fixed;
      width: 300px;
      height: 300px;
      left: 0;
      top: 25%;
      z-index: 999;
      border: 1px solid transparent;
      border-radius: 50%; }
    .appartment-details .apartment__image.active {
      opacity: 1; }
    .appartment-details .apartment__image img {
      display: block;
      height: 100%;
      max-height: 900px; }
    .appartment-details .apartment__image .owl-holder {
      position: relative;
      height: 100%;
      width: 100%; }
  .appartment-details .wrapper--right {
    width: 33.333333%;
    height: 0%;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease-in;
    position: absolute;
    z-index: 3; }
    .appartment-details .wrapper--right.active {
      height: 100%;
      opacity: 1; }
  .appartment-details .section__content--right {
    height: 100%;
    top: 0;
    -webkit-transform: none;
    transform: none;
    position: absolute;
    z-index: 1000;
    width: 100%;
    transition: margin-left 0.2s ease-out;
    pointer-events: none;
    right: 0; }
    @media only screen and (max-width: 1024px) {
      .appartment-details .section__content--right {
        position: relative;
        background: rgba(255, 255, 255, 0.8);
        height: 50%; } }
    .appartment-details .section__content--right .owl-carousel {
      position: static; }
    .appartment-details .section__content--right .owl-holder {
      pointer-events: all;
      top: auto;
      -webkit-transform: none;
      transform: none;
      height: calc(100% - 80px);
      padding: 100px 0;
      width: 100%;
      margin-left: 66.66666666%;
      width: 66.666666%;
      position: static;
      transition: all 0.4s;
      box-sizing: border-box; }
      @media only screen and (max-width: 1280px) {
        .appartment-details .section__content--right .owl-holder {
          padding: 50px 0; } }
      @media only screen and (max-width: 1024px) {
        .appartment-details .section__content--right .owl-holder {
          margin-left: 0;
          width: 100%;
          height: 100%;
          position: relative;
          padding-bottom: 0; } }
      @media only screen and (max-width: 768px) {
        .appartment-details .section__content--right .owl-holder {
          padding-top: 20px; } }
      @media only screen and (max-width: 480px) {
        .appartment-details .section__content--right .owl-holder {
          height: calc(100% - 40px); } }
    .appartment-details .section__content--right .owl-initializer {
      position: static;
      transition: all 0.4s; }
    .appartment-details .section__content--right .owl-initializer, .appartment-details .section__content--right .owl-carousel, .appartment-details .section__content--right .owl-stage, .appartment-details .section__content--right .owl-item, .appartment-details .section__content--right .owl-stage-outer, .appartment-details .section__content--right .item-carousel {
      height: 100%; }
    @media only screen and (max-width: 1024px) {
      .appartment-details .section__content--right .item-carousel {
        height: 500px;
        max-height: calc(80vh - 80px);
        min-height: 250px; } }
    @media only screen and (max-width: 480px) {
      .appartment-details .section__content--right .item-carousel {
        height: calc(80vh - 80px); } }
  .appartment-details .show-gallery {
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    width: 140px;
    height: calc(100% - 200px - 80px);
    top: 100px;
    position: absolute;
    right: 0;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    cursor: pointer;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    -webkit-box-align: center;
    align-items: center;
    float: right;
    font-family: "BrownLight";
    color: #FFF;
    transition: all 0.4s;
    -webkit-transform: none;
    transform: none;
    pointer-events: all; }
    @media only screen and (max-width: 1280px) {
      .appartment-details .show-gallery {
        height: calc(100% - 100px - 80px);
        top: 50px; } }
    .appartment-details .show-gallery > div {
      display: -webkit-box;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      flex-direction: column;
      -webkit-box-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      align-items: center; }
    @media only screen and (max-width: 1024px) {
      .appartment-details .show-gallery {
        top: 50px;
        height: calc(100% - 50px); } }
    @media only screen and (max-width: 768px) {
      .appartment-details .show-gallery {
        top: 20px;
        height: calc(100% - 20px); } }
    @media only screen and (max-width: 480px) {
      .appartment-details .show-gallery {
        height: calc(100% - 40px);
        width: 40px; } }
    .appartment-details .show-gallery .back-to-plan {
      margin-top: 20px; }
    .appartment-details .show-gallery img {
      width: 25%; }
      @media only screen and (max-width: 480px) {
        .appartment-details .show-gallery img {
          width: 50%; } }
    .appartment-details .show-gallery p {
      margin: 0;
      padding-left: 5px;
      padding-right: 5px;
      font-size: 16px;
      padding-top: 10px; }
      @media only screen and (max-width: 480px) {
        .appartment-details .show-gallery p {
          display: none; } }

.point-of-view {
  position: absolute;
  z-index: 10000;
  top: 55%;
  left: 10%;
  color: #FFF;
  font-family: "BrownRegular";
  padding-top: 50px;
  text-align: center;
  cursor: pointer;
  opacity: 0.5;
  transition: opacity 0.2s ease-out; }
  @media only screen and (max-width: 480px) {
    .point-of-view span {
      display: none; } }
  .point-of-view:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: url("../images/eyes.svg") top center no-repeat;
    width: 70px;
    height: 50px;
    right: 0;
    margin: auto; }
    @media only screen and (max-width: 480px) {
      .point-of-view:after {
        width: 35px;
        height: 25px; } }
  .point-of-view-right {
    left: auto;
    right: 20%; }
  .point-of-view:hover {
    opacity: 1; }

.wrapper-point-of-view {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: all; }

.page-enter .animated, .page-leave-to .animated {
  opacity: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.page-enter .cover-wrapper, .page-enter .show-gallery, .page-enter .back, .page-leave-to .cover-wrapper, .page-leave-to .show-gallery, .page-leave-to .back {
  opacity: 0; }

.page-enter .owl-initializer, .page-leave-to .owl-initializer {
  opacity: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%); }

.page-enter .appartment-details-inner:after, .page-leave-to .appartment-details-inner:after {
  max-width: 0; }

.page-enter .wrapper--left:after, .page-leave-to .wrapper--left:after {
  max-width: 0; }

.page-enter:after, .page-enter:before, .page-leave-to:after, .page-leave-to:before {
  max-width: 0; }

.subsection-enter .animated, .subsection-leave-to .animated {
  opacity: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%); }

.subsection-enter .cover-wrapper, .subsection-enter .image, .subsection-enter .show-gallery, .subsection-leave-to .cover-wrapper, .subsection-leave-to .image, .subsection-leave-to .show-gallery {
  opacity: 0; }

.subsection-enter .owl-initializer, .subsection-leave-to .owl-initializer {
  opacity: 0;
  -webkit-transform: translateX(50%);
  transform: translateX(50%); }

.subsection-enter:after, .subsection-enter:before, .subsection-leave-to:after, .subsection-leave-to:before {
  max-width: 0; }

.subsection-enter .wrapper--left:after, .subsection-leave-to .wrapper--left:after {
  max-width: 0; }

.is-tablet .dragscroll, .is-mobile .dragscroll {
  overflow-x: auto; }

.is-ios .appartment-details-inner {
  display: -webkit-box !important; }
  @media only screen and (max-width: 480px) {
    .is-ios .appartment-details-inner {
      display: block !important; } }

@media only screen and (max-width: 480px) {
  .is-ios .wrapper--left-collection {
    display: block !important; } }

.is-ie .appartment-details .show-gallery img {
  width: 50px !important;
  height: 50px !important; }

.is-ie .appartment-details .wrapper--left .back:before {
  top: 7px !important; }

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  font-size: 18px;
  background: #fff;
  font-family: "BrownRegular";
  overflow: hidden;
  position: fixed; }

* {
  outline: none;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar; }

#app {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden; }

strong, b {
  font-family: "BrownBold";
  font-weight: normal; }

.width-100 {
  width: 100%; }

@media only screen and (max-width: 1024px) {
  .breakpoint-hide {
    display: none; } }

#la-clochatte .st0 {
  fill: #931D2F; }

#la-clochatte .st1 {
  fill: #931D2F; }

#svg-gallery .st0 {
  fill: none;
  stroke: #931D2F;
  stroke-width: 1.516;
  stroke-miterlimit: 10; }

#svg-visit .st0 {
  fill: none;
  stroke: #931D2F;
  stroke-width: 1.516;
  stroke-miterlimit: 10; }

#svg-visit .st1 {
  fill: none;
  stroke: #931D2F;
  stroke-width: 1.516; }

.svg-wrapper {
  display: -webkit-box;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center; }
  .svg-wrapper svg {
    width: 100%;
    max-width: 50%;
    min-height: 300px; }

/*# sourceMappingURL=app.css.map */
