/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@-webkit-keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@-webkit-keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@-webkit-keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@-webkit-keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@-webkit-keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@-webkit-keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

@media screen and (min-width: 1024px) {
  .act {
    background: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.act__main {
  position: relative;
  z-index: 1;
  -webkit-transition: all 500ms;
  transition: all 500ms;
}

@media screen and (min-width: 1024px) {
  .act__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
  }
}

@media screen and (min-width: 768px) {
  body.view--expanded .act__main {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media screen and (min-width: 1366px) {
  body.view--expanded .act__main {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
}

.act__aside {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  position: relative;
  background-color: #212633;
}

@media screen and (min-width: 1024px) {
  .act__aside {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 0%;
    flex: 0 0 0%;
    overflow: hidden;
    max-height: 100vh;
  }
}

@media screen and (min-width: 768px) {
  body.view--expanded .act__aside {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media screen and (min-width: 1366px) {
  body.view--expanded .act__aside {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
  }
}

.act__aside-close-link {
  position: absolute;
  bottom: 50px;
  right: 30px;
  display: block;
  width: 30px;
  height: 30px;
}

.act__aside-close-link .cls-1 {
  stroke: #ffff00;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.act-slides__overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(10%, transparent), color-stop(90%, rgba(0, 0, 0, 0.5)));
  background-image: linear-gradient(transparent 10%, rgba(0, 0, 0, 0.5) 90%);
  z-index: 20;
}

.act-slide {
  background-position: center center;
  background-size: cover;
  height: 100vw;
}

.act-slide:nth-child(2) {
  display: block;
}

@media screen and (min-width: 768px) {
  .act-slide {
    height: 80vw;
  }
}

@media screen and (min-width: 1024px) {
  .act-slide {
    height: 100vh;
  }
}

.act-slide__body {
  top: 30vh;
  left: 30px;
  right: 30px;
  z-index: 30;
  position: absolute;
}

@media screen and (min-width: 1024px) {
  .act-slide__body {
    padding-left: 10%;
  }
}

@media screen and (min-width: 1024px) {
  .act-slide__overlay {
    position: absolute;
    top: 0px;
    bottom: 0px;
    right: 0px;
    left: 0px;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 29;
  }
}

.act-slide__title {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .act-slide__title {
    color: #ffff00;
	font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .act-slide__title {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .act-slide__title {
    font-size: 64px;
    line-height: 68px;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.icon-apartments {
  width: 75px;
  height: 40px;
}

.house--current .house__conture {
  stroke: #242423;
}

.status-sold .house--current .house__conture {
  stroke: #d2d2d2;
}

.floor-top .house--current .house__top {
  fill: #242423;
  stroke: #242423;
}

.floor-top.status-sold .house--current .house__top {
  fill: #d2d2d2;
  stroke: #d2d2d2;
}

.floor-middle .house--current .house__middle {
  fill: #242423;
  stroke: #242423;
}

.floor-middle.status-sold .house--current .house__middle {
  fill: #d2d2d2;
  stroke: #d2d2d2;
}

.floor-bottom .house--current .house__bottom {
  fill: #242423;
  stroke: #242423;
}

.floor-bottom.status-sold .house--current .house__bottom {
  fill: #d2d2d2;
  stroke: #d2d2d2;
}

.apartment {
  padding-top: 10px;
  padding-bottom: 15px;
  border-bottom: 1px solid #242423;
}

@media screen and (min-width: 413px) {
  .apartment {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 1024px) {
  .apartment {
    padding-bottom: 10px;
    padding-top: 0px;
    border-bottom: none;
  }

  .apartment:hover .apartment__house,
  .apartment:hover .apartment__info,
  .apartment:hover .apartment__more-info-btn .btn {
    background: #000;
    color: #fff;
  }

  .apartment:hover .apartment__house {
    padding-left: 10px;
  }
}

@media screen and (min-width: 1366px) {
  .apartment {
    padding-bottom: 5px;
  }
}

.apartment.status-sold {
  color: #818181;
}

.apartment.status-sold:hover .apartment__info,
.apartment.status-sold:hover .apartment__house {
  background-color: #FFF;
  color: #d2d2d2;
}

.apartment.status-sold:hover .apartment__house {
  padding-left: 0px;
}

.apartment__house {
  font-family: "Circular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-transform: uppercase;
}

@media screen and (min-width: 768px) {
  .apartment__house {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (min-width: 413px) {
  .apartment__house {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
  }
}

@media screen and (min-width: 1024px) {
  .apartment__house {
    border-top: 1px solid #000;
    padding-top: 5px;
  }
}

@media screen and (min-width: 1366px) {
  .apartment__house {
    padding-top: 8px;
  }
}

.apartment__info {
  font-family: "Circular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .apartment__info {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (min-width: 768px) {
  .apartment__info {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
  }
}

@media screen and (min-width: 1024px) {
  .apartment__info {
    padding-bottom: 0px;
    border-top: 1px solid #000;
    padding-top: 5px;
    margin-right: 10px;
  }
}

@media screen and (min-width: 1366px) {
  .apartment__info {
    padding-top: 8px;
  }
}

.apartment__info .info-bullet:after {
  content: ', ';
}

@media screen and (min-width: 768px) {
  .apartment__info .info-bullet:after {
    content: ' / ';
  }
}

.apartment__info .price {
  display: inline-block;
}

.apartment__more-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: bottom;
  -ms-flex-align: bottom;
  align-items: bottom;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

@media screen and (min-width: 413px) {
  .apartment__more-info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 220px;
    flex: 0 0 220px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .apartment__more-info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 300px;
    flex: 0 0 300px;
  }
}

@media screen and (min-width: 1024px) {
  .apartment__more-info {
    -ms-flex-preferred-size: 110px;
    flex-basis: 110px;
    display: block;
  }
}

@media screen and (min-width: 1366px) {
  .apartment__more-info {
    -ms-flex-preferred-size: 140px;
    flex-basis: 140px;
  }
}

.apartment__more-info--sold {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  text-align: center;
  height: 30px;
  line-height: 30px;
}

@media screen and (min-width: 1024px) {
  .apartment__more-info--sold {
    display: block;
    height: 30px;
    line-height: 30px;
    line-height: 28px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1366px) {
  .apartment__more-info--sold {
    height: 40px;
    line-height: 40px;
    line-height: 38px;
    font-size: 17px;
  }
}

@media screen and (min-width: 413px) {
  .apartment__matrix {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
  }
}

@media screen and (min-width: 1024px) {
  .apartment__matrix {
    display: none;
  }
}

.apartment__more-info-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-left: 20px;
}

@media screen and (min-width: 413px) {
  .apartment__more-info-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100px;
    flex: 0 0 100px;
    margin-left: 0px;
  }
}

@media screen and (min-width: 768px) {
  .apartment__more-info-btn {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 150px;
    flex: 0 0 150px;
  }
}

.apartment__more-info-btn .btn {
  display: block;
}

@media screen and (min-width: 1024px) {
  .apartment__more-info-btn .btn {
    height: 30px;
    line-height: 30px;
    line-height: 28px;
    font-size: 14px;
  }
}

@media screen and (min-width: 1366px) {
  .apartment__more-info-btn .btn {
    height: 40px;
    line-height: 40px;
    line-height: 38px;
    font-size: 17px;
  }
}

.list-group__item:first-child .apartment__house,
.list-group__item:first-child .apartment__info {
  border-top-width: 3px;
}

.status-text {
  color: #818181;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.cover {
  background-size: cover;
  padding-bottom: 40px;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .cover {
    min-height: 100vh;
  }
}

.cover__overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
}

body.template-list .cover__overlay {
  background-color: rgba(0, 0, 0, 0.7);
}

.cover__body {
  padding: 80px 20px 20px;
  z-index: 30;
  position: relative;
}

@media screen and (min-width: 413px) {
  .cover__body {
    padding: 0px;
    padding-top: 12vh;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 768px) {
  .cover__body {
    max-width: 500px;
  }
}

.cover__title {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .cover__title {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .cover__title {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .cover__title {
    font-size: 64px;
    line-height: 68px;
  }
}

.cover__content {
  font-family: "Circular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
}

@media screen and (min-width: 768px) {
  .cover__content {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (min-width: 413px) {
  .cover__content {
    padding: 0px 50px;
  }
}

.icon-apartment-overview {
  width: 80%;
  margin: 4vw auto;
  display: block;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.header {
  position: absolute;
  top: 0px;
  right: 0px;
  left: 0px;
  z-index: 90;
  height: 100px;
  background-image: url(../src/images/fundo_barra.jpg);
  
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.hero-video {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-color: black;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.hero-video__close {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 20px;
  width: 20px;
  display: block;
}

.hero-video__close:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.hero-video__close svg .cls-1 {
  stroke: #fff;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.editor-content {
  color: red;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

@media screen and (min-width: 1024px) {
  .layout--list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.layout--list__cover {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 1024px) {
  .layout--list__cover {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media screen and (min-width: 1500px) {
  .layout--list__cover {
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
  }
}

.layout--list__list {
  -webkit-transition: all 500ms;
  transition: all 500ms;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

@media screen and (min-width: 1024px) {
  .layout--list__list {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
  }
}

@media screen and (min-width: 1500px) {
  .layout--list__list {
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.list-group {
  padding-top: 20px;
}

@media screen and (min-width: 1024px) {
  .list-group {
    padding-top: 0px;
  }
}

.list-group:first-child {
  padding-top: 50px;
}

.list-group:last-child {
  margin-bottom: 0px;
}

.list-group__title {
  border-bottom: 3px solid #2e2e2e;
  text-transform: uppercase;
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 15px;
}

@media screen and (min-width: 1024px) {
  .list-group__title {
    border-bottom: none;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.nav-footer {
  position: relative;
  padding-top: 50px;
  padding-bottom: 30px;
  height: 80px;
  background-color: #FFF;
  margin-top: 0px;
}

@media screen and (min-width: 1024px) {
  .nav-footer {
    position: absolute;
    z-index: 21;
    background-color: transparent;
    background-color: rgba(255, 192, 203, 0.3);
    bottom: 0px;
    right: 0px;
    left: 0px;
    top: auto;
    height: 0px;
    padding: 0px;
    padding-top: 0pc;
  }
}

.nav-footer__item {
  position: absolute;
  bottom: 30px;
  top: 20px;
}

@media screen and (min-width: 1024px) {
  .nav-footer__item {
    top: -100px;
  }
}

.nav-footer__item--left {
  left: 15px;
}

@media screen and (min-width: 768px) {
  .nav-footer__item--left {
    left: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .nav-footer__item--left {
    left: 23px;
  }
}

@media screen and (min-width: 1500px) {
  .nav-footer__item--left {
    left: 60px;
    top: -110px;
  }
}

@media screen and (min-width: 1024px) {
  body.template-list .nav-footer__item--left .nav-item .icon__main,
  body.template-list .nav-footer__item--left .nav-item .icon__arrow {
    stroke: #fff;
  }
}

@media screen and (min-width: 1024px) {
  body.template-list .nav-footer__item--left .nav-item:hover .icon__main {
    fill: #fff;
  }
}

body.template-list .nav-footer__item--left .nav-item .icon__text {
  fill: #242423;
}

@media screen and (min-width: 1024px) {
  body.template-list .nav-footer__item--left .nav-item .icon__text {
    fill: #fff;
  }
}

body.view--expanded .nav-footer__item--left .nav-item .icon__main,
body.view--expanded .nav-footer__item--left .nav-item .icon__arrow {
  stroke: #818181;
}

body.view--expanded .nav-footer__item--left .nav-item .icon__text {
  fill: #818181;
}

body.view--expanded .nav-footer__item--left .nav-item:hover .icon__main {
  fill: #818181;
}

.nav-footer__item--right {
  right: 15px;
}

@media screen and (min-width: 768px) {
  .nav-footer__item--right {
    right: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .nav-footer__item--right {
    right: 23px;
  }
}

@media screen and (min-width: 1500px) {
  .nav-footer__item--right {
    right: 60px;
    top: -110px;
  }
}

.nav-footer--start {
  z-index: 20;
  background-color: transparent;
  bottom: 40px;
}

@media screen and (min-width: 413px) {
  .nav-footer--start {
    bottom: 160px;
  }
}

@media screen and (min-width: 768px) {
  .nav-footer--start {
    bottom: 60px;
  }
}

.nav-footer--start .nav-footer__item {
  top: -100px;
  right: 20px;
}

@media screen and (min-width: 413px) {
  .nav-footer--start .nav-footer__item {
    top: -10px;
  }
}

@media screen and (min-width: 768px) {
  .nav-footer--start .nav-footer__item {
    top: -110px;
    right: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .nav-footer--start .nav-footer__item {
    top: -110px;
  }
}

@media screen and (min-width: 1366px) {
  .nav-footer--start .nav-footer__item {
    top: -60px;
    right: 50px;
  }
}

@media screen and (min-width: 1500px) {
  .nav-footer--start .nav-footer__item {
    right: 60px;
  }
}

.nav-footer--start .nav-item .icon__arrow,
.nav-footer--start .nav-item .icon__main {
  stroke: #fff;
}

.nav-footer--start .nav-item .icon__text {
  fill: #fff;
}

.nav-footer--start .nav-item:active {
  -webkit-transition: all 100ms;
  transition: all 100ms;
}

.nav-footer--start .nav-item:active .icon__main {
  stroke: #fff;
  fill: #fff;
}

.nav-item {
  display: block;
}

.nav-item svg {
  width: 100px !important;
}

@media screen and (min-width: 768px) {
  .nav-item svg {
    width: unset  !important;
  }
}

.nav-item .icon__main {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-animation: fadeIn 900ms;
  animation: fadeIn 900ms;
  stroke: #242423;
}

@media screen and (min-width: 1024px) {
  .nav-item .icon__main {
    stroke: #fff;
  }
}

.nav-item .icon__arrow {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-animation: fadeIn 900ms;
  animation: fadeIn 900ms;
  stroke: #242423;
}

@media screen and (min-width: 1024px) {
  .nav-item .icon__arrow {
    stroke: #fff;
  }
}

body.view--expanded .nav-footer__item--left .nav-item .icon__arrow {
  stroke: black;
}

.nav-item .icon__text {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  -webkit-animation: fadeIn 0ms;
  animation: fadeIn 0ms;
  fill: #242423;
}

@media screen and (min-width: 1024px) {
  .nav-item .icon__text {
    fill: #fff;
  }
}

.nav-item:hover .icon__main {
  fill: #fff;
  stroke: #fff;
}

.nav-item:hover .icon__arrow {
  -webkit-transform: translate(-10px, 0px);
  transform: translate(-10px, 0px);
}

.nav-footer__item--right .nav-item:hover .icon__arrow {
  -webkit-transform: translate(10px, 0px);
  transform: translate(10px, 0px);
}

.nav-item:active {
  -webkit-transition: all 100ms;
  transition: all 100ms;
}

.nav-item:active .icon__main {
  stroke: #242423;
  fill: #242423;
}

@media screen and (min-width: 1024px) {
  .nav-item:active .icon__main {
    stroke: #fff;
    fill: #fff;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.sharing__btns {
  text-align: center;
}

.sharing__btn {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  border: 1px solid #fefc1e;
  display: inline-block;
  width: 50px;
  height: 50px;
  padding: 5px;
}

@media screen and (min-width: 1024px) {
  .sharing__btn {
    width: 50px;
    height: 50px;
    padding: 5px;
  }
}

.sharing__btn:hover {
  background-color: #FFF;
}

.sharing__btn:hover svg {
  padding: 0px;
  fill: #242423;
}

.sharing__btn svg {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  max-height: 100%;
  max-width: 100%;
  fill: #fff;
  padding: 5px;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

@-webkit-keyframes toneInReallyLate {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

@keyframes toneInReallyLate {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 0;
    -webkit-transform: translateY(10%);
    transform: translateY(10%);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
  }
}

.nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .nav-items {
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .nav-items--sm-flip {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .nav-items--sm-flip .nav-item__link--down {
    width: 40px;
  }
}

.nav-item {
  text-align: center;
}

.nav-item__icon > svg {
  display: block;
  margin: 0 auto 10px;
}

.nav-item__icon > svg .cls-1 {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  fill: rgba(237, 237, 237, 0);
}

.nav-item--house.nav-item--right .nav-item__arrow--right {
  margin-top: -7px;
}

.nav-item__link {
  -webkit-animation: toneInReallyLate 4400ms;
  animation: toneInReallyLate 4400ms;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #ededed;
}

.nav-item__link--left {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.nav-item__link:hover {
  color: #ededed;
}

.nav-item__link:hover svg .cls-1 {
  fill: #ededed;
}

.nav-item__link:hover .nav-item__arrow--left svg,
.nav-item__link:hover .nav-item__arrow--right svg {
  margin-right: 5px;
  margin-left: 5px;
}

.nav-item__link:hover .nav-item__arrow--up svg,
.nav-item__link:hover .nav-item__arrow--down svg {
  margin-left: 10px;
}

.nav-item__link--down {
  padding-top: 10px;
  width: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .nav-item__link--down {
    padding-top: 30px;
  }
}

.nav-item__link--up {
  padding-top: 00px;
  width: 100px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .nav-item__link--up {
    padding-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .nav-item__arrow {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 70px;
    flex: 0 0 70px;
  }
}

.nav-item__arrow--left {
  -webkit-transform: rotate(180deg) translateY(3px);
  transform: rotate(180deg) translateY(3px);
}

@media screen and (min-width: 768px) {
  .nav-item__arrow--left {
    -webkit-transform: rotate(180deg) translateY(6px);
    transform: rotate(180deg) translateY(6px);
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .nav-item__arrow--left {
    margin-left: 10px;
  }
}

.nav-item__arrow--down {
  -webkit-transform: rotate(90deg) translateY(2px);
  transform: rotate(90deg) translateY(2px);
}

@media screen and (min-width: 768px) {
  .nav-item__arrow--down {
    -webkit-transform: rotate(90deg) translateY(15px);
    transform: rotate(90deg) translateY(15px);
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .nav-item__arrow--down {
    margin-left: 25px;
  }
}

.nav-item__arrow--up {
  -webkit-transform: rotate(270deg) translateY(2px);
  transform: rotate(270deg) translateY(2px);
}

@media screen and (min-width: 768px) {
  .nav-item__arrow--up {
    -webkit-transform: rotate(270deg) translateY(15px);
    transform: rotate(270deg) translateY(15px);
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .nav-item__arrow--up {
    margin-right: 20px;
  }
}

@media screen and (max-width: 767px) {
  .nav-item__arrow--up {
    margin-bottom: 10px;
  }
}

.nav-item__arrow > svg {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  width: 26px;
  margin-right: 10px;
  stroke-width: 1px;
}

@media screen and (min-width: 768px) {
  .nav-item__arrow > svg {
    width: 40px;
  }
}

.nav-item__arrow > svg .cls-1 {
  fill: none !important;
}

@media screen and (min-width: 768px) {
  .nav-item__main {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.signup-form__intro {
  margin-bottom: 20px;
}

.signup-form__intro a {
  color: inherit;
  text-decoration: underline;
}

.signup-form__intro a:hover {
  opacity: 0.8;
}

.signup-form svg {
  width: 10px;
  height: 5px;
}

@media screen and (min-width: 768px) {
  .signup-form svg {
    width: 20px;
    height: 10px;
  }
}

.selectric {
  background-color: transparent;
  margin-bottom: 10px;
}

.selectric .label {
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: left;
  padding: 0px;
  font-size: 16px;
  font-weight: 300;
  padding-left: 5px;
}

@media screen and (min-width: 768px) {
  .selectric .label {
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    font-weight: normal;
    padding-left: 10px;
  }
}

.selectric .button {
  height: 40px;
  line-height: 40px;
  color: #fff;
  text-align: left;
  padding: 0px;
  border-left: 1px solid #fff;
  background-color: #000;
}

@media screen and (min-width: 768px) {
  .selectric .button {
    height: 48px;
    line-height: 48px;
    width: 48px;
  }
}

.selectric .button:after {
  border-width: 7px;
}

.selectric-items li {
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  font-weight: 300;
  color: #000;
  padding: 0px 0px 0px 20px;
}

@media screen and (min-width: 768px) {
  .selectric-items li {
    height: 48px;
    line-height: 48px;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

@-webkit-keyframes zoomOutFadein {
  0% {
    opacity: 0;
    background-size: 140%;
  }

  30% {
    opacity: 1;
    background-size: 100%;
  }

  100% {
    opacity: 0.3;
    background-size: 100%;
  }
}

@keyframes zoomOutFadein {
  0% {
    opacity: 0;
    background-size: 140%;
  }

  30% {
    opacity: 1;
    background-size: 100%;
  }

  100% {
    opacity: 0.3;
    background-size: 100%;
  }
}

@-webkit-keyframes toneInLate {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes toneInLate {
  0% {
    opacity: 0;
  }

  70% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes toneOut {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

@keyframes toneOut {
  0% {
    opacity: 0;
  }

  30% {
    opacity: 1;
  }

  100% {
    opacity: 0.3;
  }
}

.slide {
  padding: 20px;
  position: fixed;
  z-index: 10;
  color: #fff;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  padding-top: 300px;
  overflow: scroll;
}

@media screen and (min-width: 768px) {
  .slide {
    padding-top: 60vh;
  }
}

.slide--has-logo {
  top: 20px;
  padding-top: 100px;
}

@media screen and (min-width: 768px) {
  .slide--has-logo {
    top: 10vh;
  }
}

@media screen and (min-width: 768px) and (-ms-high-contrast: active), screen and (min-width: 768px) and (-ms-high-contrast: none) {
  .slide--has-logo {
    top: 0vh;
  }
}

.slide__top-nav {
  z-index: 80;
  position: fixed;
  top: 0px;
  width: 100%;
}

.slide__bg {
  background-position: center center;
  background-size: cover;
  -webkit-animation: toneOut 4000ms;
  animation: toneOut 4000ms;
  background-size: cover;
  height: 100vh;
  opacity: 0.3;
  z-index: 1;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .slide__bg.loaded {
    opacity: 1;
    background-image: none !important;
  }

  .slide__bg.loaded .ytplayer-container {
    opacity: 0.3;
  }
}

.slide__bg--platsen {
  background-image: url("/src/images/obt_karta_phone.jpg");
}

@media screen and (min-width: 768px) {
  .slide__bg--platsen {
    background-image: url("/src/images/obt_karta.jpg");
  }
}

.slide__logo {
  width: 220px;
  margin: 0 auto 40px;
}

@media screen and (min-width: 768px) {
  .slide__logo {
    -webkit-animation: toneInLate 4000ms;
    animation: toneInLate 4000ms;
    width: 390px;
  }
}

@media screen and (min-width: 768px) {
  .slide__body {
    -webkit-animation: toneInLate 4000ms;
    animation: toneInLate 4000ms;
    margin: 0 auto;
    max-width: 675px;
  }
}

.slide__countdown {
  display: none;
}

@media screen and (min-width: 768px) {
  .slide__countdown {
    display: block;
    margin-top: 38px;
  }
}

.slide__cta {
  text-align: center;
}

@media screen and (min-width: 768px) {
  .slide__cta {
    margin-top: 30px;
  }
}

.slide__video-cta {
  margin-top: 20px;
  margin-bottom: 10px;
}

.slide__video-cta .glyphicon {
  margin-right: 10px;
  font-size: 1em;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.slide-nav {
  position: absolute;
  bottom: 0px;
  left: 30px;
  right: 30px;
  z-index: 30;
}

@media screen and (min-width: 1024px) {
  .slide-nav {
    width: 300px;
    display: block;
    margin: 0px 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    left: auto;
    right: auto;
  }

  body.view--expanded .slide-nav {
    margin-left: 60px;
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.slide-nav__items {
  width: 70%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: 20px;
}

.slide-nav__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  text-align: center;
}

.slide-nav__link {
  -webkit-transition: all 100ms;
  transition: all 100ms;
  border-top: 8px solid #ffff00;
  margin-left: 10px;
  color: #fff;
  display: block;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 10px;
  font-weight: 500;
}

.slide-nav__link.active,
.slide-nav__link:active,
.slide-nav__link:focus,
.slide-nav__link:hover {
  color: #FFFF00;
  border-top-width: 25px;
  padding-top: 9px;
  text-decoration: none;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.start-declaration {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  max-width: 490px;
  padding: 20px;
  z-index: 10;
  position: relative;
  top: 12vh;
}

@media screen and (min-width: 413px) {
  .start-declaration {
    top: 20vh;
  }
}

@media screen and (min-width: 768px) {
  .start-declaration {
    top: 30vh;
  }
}

.start-declaration__title {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding-left: 30px;
}

@media screen and (min-width: 768px) {
  .start-declaration__title {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .start-declaration__title {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .start-declaration__title {
    font-size: 64px;
    line-height: 68px;
  }
}

.start-declaration__title .animate-terrass {
  line-height: 1.15em;
}

.start-declaration__title .animate-terrass span:nth-child(1) {
  margin-left: 0;
  -webkit-transform: translateX(-1.35em);
  transform: translateX(-1.35em);
  -webkit-animation: animate-terrass--grand-first 800ms;
  animation: animate-terrass--grand-first 800ms;
}

.start-declaration__title .animate-terrass span:nth-child(3) {
  margin-left: 0;
  -webkit-transform: translateX(1.45em);
  transform: translateX(1.45em);
  -webkit-animation: animate-terrass--grand-last 800ms;
  animation: animate-terrass--grand-last 800ms;
}

@media screen and (max-width: 412px) {
  .start-declaration__title {
    font-size: 28px;
    line-height: 30px;
    margin-bottom: -15px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 1366px) {
  .start-declaration__title {
    padding-left: 30px;
  }
}

.start-declaration__content {
  font-family: "Circular", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .start-declaration__content {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .start-declaration__content {
    padding-left: 60px;
  }
}

.start-declaration__cta-mobile {
  margin-top: 30px;
}

.start-declaration__cta-mobile .btn {
  max-width: 300px;
  margin: 0px auto;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.solid {
  background-color: #212633;
  color: #242423;
}

.solid--mega {
  padding: 0 15px;
}

@media screen and (min-width: 768px) {
  .solid--mega {
    padding: 0 60px;
  }
}

@media screen and (min-width: 1024px) {
  .solid--mega {
    min-height: 100vh;
    padding-top: 12vh;
    padding-left: 40px;
    padding-right: 40px;
    padding-bottom: 140px;
  }
}

@media screen and (min-width: 1366px) {
  .solid--mega {
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1500px) {
  .solid--mega {
    padding-left: 80px;
    padding-right: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .solid-slide {
    padding: 40px;
  }
}

.solid-slide .content {
  font-family: 'Amatic SC', cursive;
  font-weight: 450;
  font-size: 25px;
  line-height: 20px;
}

@media screen and (min-width: 768px) {
  .solid-slide .content {
    font-size: 18px;
    line-height: 24px;
  }
}

@media screen and (min-width: 413px) {
  .solid-slide .content {
    padding: 0px 35px;
  }
}

@media screen and (min-width: 768px) {
  .solid-slide .content {
    padding: 0px 45px;
  }
}

@media screen and (min-width: 1024px) {
  .solid-slide .content {
    padding: 0px 0px;
  }
}

@media screen and (min-width: 1366px) {
  .solid-slide .content {
    padding: 0px 45px;
  }
}

@media screen and (min-width: 1500px) {
  .solid-slide .content {
    padding: 0px 60px;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.text-solid {
  color: #FFFF00;
  padding: 30px;
}

@media screen and (min-width: 768px) {
  .text-solid {
    padding: 80px;
    padding-bottom: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .text-solid {
    padding: 0px;
  }

  body.view--expanded .text-solid {
    margin: 15vh 0px;
  }
}

@media screen and (min-width: 1024px) and (min-width: 1024px) {
  body.view--expanded .text-solid {
    margin: 10vh 0px;
  }
}

.text-solid_text {
  font-family: 'Anton', sans-serif;
  line-height: 30px;
}

@media screen and (min-width: 768px) {
  .text-solid__title {
    font-size: 20px;
    line-height: 30px;
  }
}

@media screen and (min-width: 1500px) {
  .text-solid__title {
    font-size: 64px;
    line-height: 68px;
  }
}

body.view--expanded .text-solid__title {
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.text-solid__content {
  font-size: 14px;
  line-height: 20px;
  font-family: "Circular Std";
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.top-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  width: 100%;
  height: 50px;
  padding: 15px;
}

@media screen and (min-width: 768px) {
  .top-nav {
    padding: 30px;
  }
}

.top-nav--start {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 767px) {
  .top-nav--start {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.top-nav--start .top-nav__countdown {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .top-nav--start .top-nav__countdown {
    display: none;
  }
}

.top-nav--start .top-nav__item {
  margin-left: 0px;
}

.top-nav__logo {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 50px;
  height: 50px;
  display: inline-block;
  margin-top: -10px;
  margin-left: -10px;
}

@media screen and (min-width: 768px) {
  .top-nav__logo {
    width: 60px;
    height: 60px;
  }
}

.top-nav__logo .cls-1 {
  fill: none;
  stroke: none;
}

.top-nav__logo .cls-2 {
  stroke: none;
  fill: #ededed;
}

body.view--expanded .top-nav__logo .cls-2 {
  fill: #242423;
}

.top-nav__item-group {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

body.template-list .top-nav__item-group .btn--default {
  color: #FFFF00;
  border-color: #FFFF00;
}

body.template-list .top-nav__item-group .btn--default:hover {
  color: #FFFF00;
}

@media screen and (max-width: 1023px) {
  body.template-list .top-nav__item-group .btn--default {
    color: #fefc1e;
    border-color: #fefc1e;
  }

  body.template-list .top-nav__item-group .btn--default:hover {
    color: #242423;
  }
}

.top-nav__item {
  margin-left: 20px;
}

.top-nav__mute {
  display: none;
}

@media screen and (min-width: 768px) {
  .top-nav__mute {
    margin-top: 5px;
    display: inline-block;
  }
}

.top-nav__mute svg > use,
.top-nav__mute svg {
  width: 28px;
  height: 28px;
}

.top-nav__mute svg > use .cls-1,
.top-nav__mute svg > use .cls-2,
.top-nav__mute svg .cls-1,
.top-nav__mute svg .cls-2 {
  fill: none;
}

body.template-list .top-nav__mute svg > use .cls-1,
body.template-list
        .top-nav__mute svg > use .cls-2,
body.template-list
        .top-nav__mute svg .cls-1,
body.template-list
        .top-nav__mute svg .cls-2 {
  stroke: #fff;
}

@media screen and (min-width: 1024px) {
  body.template-list .top-nav__mute svg > use .cls-1,
  body.template-list
            .top-nav__mute svg > use .cls-2,
  body.template-list
            .top-nav__mute svg .cls-1,
  body.template-list
            .top-nav__mute svg .cls-2 {
    stroke: #242423;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.btn {
  height: 40px;
  line-height: 40px;
  line-height: 38px;
  -webkit-transition: all 700ms;
  transition: all 700ms;
  border-radius: 0px;
  padding: 0px 15px;
  font-size: 16px;
}

@media screen and (min-width: 1500px) {
  .btn {
    height: 50px;
    line-height: 50px;
    line-height: 48px;
    font-size: 20px;
  }
}

.btn--sm {
  height: 30px;
  line-height: 30px;
  line-height: 28px;
}

.btn--default {
  border: 1px solid #FFFF00;
  color: #FFFF00;
  background-color: #212633;
}

.btn--default:hover,
.btn--default:active:hover,
.btn--default:focus:hover {
  background-color: #fefc1e;
  color: #3c3c3b;
}

.btn--default:focus,
.btn--default:active {
  color: #ededed;
}

.btn--default.btn--invert {
  border-color: #242423;
  color: #242423;
}

.btn--default.btn--invert:hover {
  background-color: #242423;
  color: #fff;
}

.btn--default.btn--invert:active {
  -webkit-transition: all 100ms;
  transition: all 100ms;
  background-color: #fff;
  color: #242423;
}

.btn--invisible {
  background-color: transparent;
  text-decoration: underline;
  color: #ededed;
}

.btn--invisible:hover,
.btn--invisible:active:hover,
.btn--invisible:focus:hover {
  background-color: #ededed;
  color: #3c3c3b;
}

.btn--invisible:focus,
.btn--invisible:active {
  color: #ededed;
}

.btn--sold {
  border: 1px solid #d2d2d2;
  color: #d2d2d2;
}

.btn--sold:hover {
  cursor: pointer;
}

.btn--full {
  display: block;
}

.hover-btn__text--hover {
  display: none;
}

.hover-btn:hover .hover-btn__text--default {
  display: none;
}

.hover-btn:hover .hover-btn__text--hover {
  display: block;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

textarea:focus,
input:focus {
  outline: none;
}

input {
  width: 100%;
}

input[type="text"],
input[type="email"] {
  -webkit-transition: all 200ms;
  transition: all 200ms;
  height: 40px;
  line-height: 40px;
  font-size: 16px;
  background-color: transparent;
  border: 1px solid #ededed;
  padding-left: 1em;
  padding-right: 1em;
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  input[type="text"],
  input[type="email"] {
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    margin-bottom: 20px;
  }
}

input[type="text"]::-webkit-input-placeholder,
input[type="email"]::-webkit-input-placeholder {
  color: #ededed;
}

input[type="text"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder {
  color: #ededed;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder {
  color: #ededed;
}

input[type="text"]:focus,
input[type="email"]:focus {
  background-color: #ededed;
  color: #3c3c3b;
}

input[type="submit"] {
  background-color: transparent;
}

input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
  background-color: transparent;
}

input.error {
  border-color: orange;
}

input + .error {
  color: orange;
  font-weight: normal;
  position: relative;
  top: -10px;
}

@media screen and (min-width: 768px) {
  input + .error {
    top: -20px;
  }
}

.error--already-registread {
  color: orange;
  margin-bottom: 5px;
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.icon--square {
  width: 11px;
  height: 6px;
}

@media screen and (min-width: 768px) {
  .icon--square {
    width: 20px;
    height: 10px;
  }
}

.icon--house {
  width: 37px;
}

@media screen and (min-width: 768px) {
  .icon--house {
    width: 56px;
    height: 49px;
  }
}

.icon--plats {
  width: 55px;
}

@media screen and (min-width: 768px) {
  .icon--plats {
    width: 84px;
    height: 43px;
    width: 100px;
    height: 48px;
    stroke-width: 1px;
  }
}
/**
 *  ---- Media queries ----
 */

@font-face {
  font-family: "Circular";
  src: url("/fonts/CircularStd-Medium.otf");
}

.heading {
  font-family: "Circular", serif;
  font-size: 32px;
  line-height: 32px;
  letter-spacing: 0.04em;
  font-weight: 500;
}

@media screen and (min-width: 768px) {
  .heading {
    font-size: 46px;
    line-height: 46px;
  }
}

@media screen and (min-width: 1366px) {
  .heading {
    font-size: 54px;
    line-height: 60px;
  }
}

@media screen and (min-width: 1500px) {
  .heading {
    font-size: 64px;
    line-height: 68px;
  }
}

.text--invert,
.heading--invert {
  color: #fff;
}

/**
 *  ---- Media queries ----
 */

@keyframes flyDown {
  from {
    top: -500px;
  }

  to {
    top: 60px;
  }
}

@keyframes flyUp {
  from {
    top: 60px;
  }

  to {
    top: -500px;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation: fadeIn 500ms;
  animation: fadeIn 500ms;
}

@keyframes animate-terrass-first {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: -1em;
  }
}

@keyframes animate-terrass-last {
  0% {
    opacity: 0;
    margin-left: 0em;
  }

  to {
    margin-left: 1em;
  }
}

.animate-terrass {
  margin: 0px;
  margin-left: 1em;
  margin-bottom: 1em;
}

.animate-terrass span {
  margin-left: -1em;
  display: block;
}

.animate-terrass span:nth-child(1) {
  margin-left: -1em;
  -webkit-animation: animate-terrass-first 800ms;
  animation: animate-terrass-first 800ms;
}

.animate-terrass span:nth-child(2) {
  margin-left: 0em;
  -webkit-animation: fadeIn 800ms;
  animation: fadeIn 800ms;
}

.animate-terrass span:nth-child(3) {
  margin-left: 1em;
  -webkit-animation: animate-terrass-last 800ms;
  animation: animate-terrass-last 800ms;
}

@keyframes animate-terrass--grand-first {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(-1.35em);
    transform: translateX(-1.35em);
  }
}

@keyframes animate-terrass--grand-last {
  0% {
    opacity: 0;
    -webkit-transform: translateX(0em);
    transform: translateX(0em);
  }

  to {
    -webkit-transform: translateX(1.45em);
    transform: translateX(1.45em);
  }
}

.text--shadow {
  text-shadow: rgba(0, 0, 0, 0.8) 2px 2px 10px;
}

.overlay {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  background-position: center center;
  background-size: cover;
  z-index: 100;
  position: fixed;
}

@media screen and (min-width: 768px) {
  .overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.overlay__toner {
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: 0px;
  left: 0px;
  content: '';
  position: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 80;
}

.overlay__menu {
  z-index: 200;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  padding-right: 15px;
  padding-top: 30px;
  height: 40px;
}

@media screen and (min-width: 768px) {
  .overlay__menu {
    padding-right: 30px;
    padding-top: 45px;
    height: 30px;
  }
}

.overlay__menu .icon {
  width: 30px;
  height: 30px;
  stroke: white;
}

.overlay--start {
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.4);
}

.overlay-content {
  z-index: 90;
  padding: 20px;
  position: fixed;
  top: 50px;
  bottom: 0px;  
  left: 20px;
  right: 20px;
}

@media screen and (min-width: 768px) {
  .overlay-content {
    max-width: 550px;
    margin: 50px auto;
  }
}

@media screen and (min-width: 1024px) {
  .overlay-content {
    max-width: 700px;
    margin: 50px auto;
  }
}

@media screen and (min-width: 1366px) {
  .overlay-content {
    max-width: 700px;
    margin: 50px auto;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .overlay-content {
    width: 800px;
    position: relative;
    overflow: hidden;
    height: 1200px;
    top: -0px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: landscape) {
  .overlay-content {
    top: -20px;
  }
}

.overlay-content__header .heading {
  -webkit-transform: translateX(25%);
  transform: translateX(25%);
}

.overlay-content__header svg {
  margin: 0px auto 50px;
  display: block;
  width: 220px;
}

@media screen and (min-width: 768px) {
  .overlay-content__header svg {
    width: 390px;
    height: 145px;
  }
}
.swiper-button-next {
  background-image: url("/src/images/svg-v2/chevron-right.svg");
  opacity: 0.8;
}

.swiper-button-prev {
  background-image: url("/src/images/svg-v2/chevron-left.svg");
  opacity: 0.8;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}