@charset "UTF-8";
/* Autor: Jose Vicente Belenguer - josevibp@gmail.com */
/* Otro pepe lepe*/
.button {
  background: #333;
  border: none;
  border-radius: 8px;
  padding: 10px 40px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 90%;
  display: inline-block;
}

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
  background: none;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item {
  /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""], .owl-carousel .owl-item .owl-lazy:not([src]) {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

.owl-nav {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.icon-slide-right {
  background: url("../img/nav-right.png") no-repeat center center transparent;
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

.icon-slide-left {
  background: url("../img/nav-left.png") no-repeat center center transparent;
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block;
}

.clearfix {
  clear: both;
  width: 100%;
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: underline;
  transition: .15s all ease-out 0s;
}

a:focus, a:active {
  outline: 0;
}

a:active,
a:hover {
  outline: 0;
  transition: .15s all ease-in 0s;
}

b, strong {
  font-weight: 700;
}

img {
  border: 0;
  width: 100%;
  width: auto/9;
  height: auto;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
  outline: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

ul, li {
  margin: 25px 0;
  padding: 0;
  list-style-type: none;
  font-weight: 400;
}

body {
  font-size: 15px;
  line-height: 120%;
  margin: 0 auto;
  position: relative;
  padding: 0;
  color: #969494;
  width: 100%;
  overflow-x: hidden;
  font-family: 'Quattrocento', serif;
  background: #f1efeb;
}

html {
  font-size: 15px;
  line-height: 120%;
  margin: 0;
  padding: 0px;
  width: 100%;
  overflow-x: hidden;
  background: #fff;
  position: relative;
  font-family: 'Quattrocento Sans', sans-serif;
}

* {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-weight: normal;
  font-weight: 300;
  font-size: 170%;
  margin: 10px 0;
  line-height: 130%;
}

p {
  margin: 30px 0;
  position: relative;
}

li {
  font-size: 100%;
  font-weight: 400;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset !important;
}

input[type="submit"] {
  cursor: pointer;
}

/*################################################################
##############  GENÉRICOS  #####################################
################################################################*/
form .row {
  width: 100%;
  position: relative;
  margin: 20px 0;
}

.hide {
  display: none;
}

button {
  background: #434343;
  color: #cccccc;
  border-radius: 5px;
  border: none;
  padding: 7px 30px;
  cursor: pointer;
  border: 1px solid #333333;
  box-shadow: 0px -19px 9px #333 inset, 0px 0px 3px 0px #333 inset, 2px 2px 2px rgba(0, 0, 0, 0.25);
  font-size: 15px;
}

button:hover {
  box-shadow: 0px -19px 9px #333 inset, 0px 0px 3px 0px #333 inset, 0px 0px 0px rgba(0, 0, 0, 0.39);
}

.text h2 {
  color: #969694;
  font-size: 350%;
  line-height: 125%;
}
@media (max-width: 768px) {
  .text h2 {
    font-size: 220%;
    padding: 0 20px;
  }
}
.text p {
  font-family: "Quattrocento";
  font-size: 130%;
  line-height: 160%;
}
@media (max-width: 768px) {
  .text p {
    text-align: justify;
    padding: 0 20px;
    margin: 30px 0;
  }
}

.intro-parallax {
  position: relative;
  z-index: 1;
  top: -220px;
}
.intro-parallax::after {
  content: "";
  width: 100%;
  height: 199px;
  display: block;
  background: url(../img/bg-bottom-grey-2.png) no-repeat center 0 transparent;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.intro-parallax p {
  margin: 0;
}

.imgblock {
  max-width: 1280px;
  margin: 0 auto;
  padding: 50px 40px;
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .imgblock {
    flex-direction: column;
    padding: 50px 0;
  }
}
.imgblock div {
  width: 40%;
  max-width: 500px;
  margin: 0 5%;
  position: relative;
}
@media (max-width: 768px) {
  .imgblock div {
    width: 100%;
    margin: 0 auto;
  }
}
.imgblock div img {
  width: auto;
  max-width: 100%;
}
.imgblock div p {
  margin: 50px 0;
}
.imgblock .left {
  text-align: right;
}
.imgblock .left p {
  padding: 0 0 0 60px;
  text-align: left;
  margin: 50px 0;
}
@media (max-width: 768px) {
  .imgblock .left p {
    padding: 0 20px;
    text-align: justify;
  }
}
.imgblock .left .imgright {
  margin: 0 auto 0 0;
}
.imgblock .right {
  padding-top: 120px;
}
.imgblock .right::before {
  content: "";
  width: 100%;
  height: 199px;
  display: block;
  background: url(../img/birds-three-grey.png) no-repeat 100% 0 transparent;
  position: absolute;
  left: 0;
  top: -25px;
  z-index: 2;
}
@media (max-width: 768px) {
  .imgblock .right::before {
    top: 20px;
  }
}

/*################################################################
##############  CABECERA  #####################################
################################################################*/
.hamburguer {
  display: none;
}

@media (max-width: 768px) {
  .main-header .top-header {
    position: fixed;
    display: none;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    background: #555;
    overflow: auto;
  }
  .main-header .top-header.close {
    display: block;
    background: #555;
  }

  .hamburguer {
    display: block;
    position: fixed;
    width: 99px;
    height: 99px;
    top: 0px;
    right: 0px;
    margin: 0;
    z-index: 1000;
    cursor: pointer;
    padding: 30px 28px;
  }
  .hamburguer div {
    background-color: #333;
    width: 100%;
    height: 5px;
    margin: 5px 0;
    transition: all 150ms ease-in;
  }
  .hamburguer.close .line-top {
    transform: translateY(200%) rotate(45deg);
    background-color: #fff;
  }
  .hamburguer.close .line-mid {
    opacity: 0;
    background-color: #fff;
  }
  .hamburguer.close .line-bottom {
    transform: translateY(-200%) rotate(135deg);
    background-color: #fff;
  }
}
.main-header {
  overflow: hidden;
  position: relative;
  z-index: 99;
}
.main-header .top-header {
  background: transparent;
}
.main-header .top-header .logo {
  max-width: 360px;
  margin: 0 auto;
  padding: 30px 0 0;
}
@media (max-width: 768px) {
  .main-header .top-header .logo {
    margin: 70px auto 0;
    display: none;
  }
}
@media (min-width: 768px) {
  .main-header.slim .top-header {
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 55px;
    background: #0000006b;
  }
  .main-header.slim .top-header .logo {
    padding: 10px 0 0 20px;
    margin: 0;
    position: relative;
    display: none;
  }
  .main-header.slim .top-header .logo .show {
    display: none;
  }
  .main-header.slim .top-header .logo .hide {
    display: block;
    width: 130px;
  }
  .main-header.slim .top-header .logo h1 {
    margin: 0;
  }
  .main-header.slim .top-header .logo img {
    width: 250px;
  }
  .main-header.slim .main-menu {
    margin: 0;
    padding: 0;
  }
  .main-header.slim .main-menu li {
    margin: 17px 15px;
    padding: 0;
  }
  .main-header.slim .main-menu li a {
    font-size: 100%;
  }
}

@media (min-width: 768px) {
  .main-header.slim .top-header {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
  }

  @-webkit-keyframes slideInDown {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
  @keyframes slideInDown {
    0% {
      -webkit-transform: translateY(-100%);
      transform: translateY(-100%);
      visibility: visible;
    }
    100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  }
}
.main-nav ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .main-nav ul {
    flex-direction: column;
    text-align: center;
  }
}
.main-nav ul li {
  margin: 0 15px;
}
@media (max-width: 768px) {
  .main-nav ul li {
    width: 100%;
    margin: 20px 0;
  }
}
.main-nav ul li a {
  color: #fff;
  text-decoration: none;
  letter-spacing: .5px;
  font-size: 110%;
  font-family: 'Quattrocento', serif;
  font-weight: 700;
}
@media (max-width: 768px) {
  .main-nav ul li a {
    font-size: 220%;
  }
}

/*################################################################
##############  CABECERA PORTADA  #####################################
################################################################*/
.header-home {
  width: 100%;
  position: relative;
  z-index: 99;
  height: 220px;
}
@media (max-width: 768px) {
  .header-home {
    position: absolute;
    height: auto;
  }
}
.header-home p {
  color: #fff;
  font-size: 350%;
  padding: 170px 30px 0;
  text-align: center;
  line-height: 130%;
  font-family: 'Quattrocento', serif;
}

.main-home {
  margin: 0 0 -200px;
}

.section-intro-home {
  background: url(../img/bg-intro-section-home.png) no-repeat center 100% #f1efeb;
  padding: 0 0 290px;
  position: relative;
}
.section-intro-home::before {
  content: "";
  background: url(../img/bird-1.gif) no-repeat 0px 0px transparent;
  width: 180px;
  height: 140px;
  display: none;
  position: absolute;
  left: 0;
  bottom: 230px;
}

.home-intro {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0px 30px;
  font-size: 160%;
  line-height: 170%;
  text-align: center;
}
.home-intro h2 {
  text-indent: -9999em;
  width: 300px;
  overflow: hidden;
  background: url(../img/logo-brown-border.svg) no-repeat center 0 transparent;
  background-size: 254px;
  height: 71px;
  margin: 0 auto;
}
.home-intro p {
  position: relative;
}
.home-intro p::before {
  content: url("../img/bird-big.svg");
  display: block;
  position: absolute;
  top: -109px;
  left: -226px;
  width: 272px;
  height: 200px;
}
.home-intro a {
  color: #777;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 70%;
  letter-spacing: 2px;
  display: inline-block;
  margin: 20px 0;
  padding: 10px 80px 10px 0;
  background: url(../img/bird-small-grey.svg) no-repeat 100% center transparent;
  background-size: 84px;
}
.home-intro-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 34px;
  justify-content: center;
  margin: 25px 0 0;
}
.home-intro .home-intro-actions a {
  margin: 0 0 10px;
}
.home-intro .home-intro-actions .home-intro-link-primary {
  background: #8b6f58;
  color: #fff;
  padding: 13px 28px;
}
.home-intro .home-intro-actions .home-intro-link-primary:hover,
.home-intro .home-intro-actions .home-intro-link-primary:focus {
  background: #705744;
}
@media (max-width: 768px) {
  .home-intro-actions {
    gap: 10px;
  }
  .home-intro .home-intro-actions a {
    max-width: 340px;
    width: 100%;
  }
  .home-intro .home-intro-actions .home-intro-link-primary {
    padding: 13px 18px;
  }
}

/* Welcome home */
.home-welcome {
  text-align: center;
  background: url("../img/bg-intro-section-home-bottom.png") no-repeat center 100% #e6e6df;
  padding: 0px 20px 310px 20px;
  margin-top: -20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .home-welcome {
    padding: 0 20px 190px;
  }
}
.home-welcome h2 {
  color: #969694;
  font-size: 350%;
  line-height: 125%;
  width: 100%;
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  .home-welcome h2 {
    font-size: 200%;
    padding: 0 15px;
  }
}
.home-welcome h2 strong {
  color: #454545;
  display: block;
  font-weight: 400;
  margin: 0 -216px 0 0;
}
@media (max-width: 768px) {
  .home-welcome h2 strong {
    margin: 0;
  }
}
.home-welcome h2 span {
  display: block;
  margin: 0 0 0 -62px;
}
@media (max-width: 768px) {
  .home-welcome h2 span {
    margin: 0px;
  }
}
.home-welcome h3 {
  font-size: 200%;
}
.home-welcome .left {
  width: 50%;
  max-width: 800px;
  margin: 120px 0 0 -20px;
  padding: 0 50px 0 0;
}
@media (max-width: 768px) {
  .home-welcome .left {
    width: 100%;
    margin: 10px 0 0;
    padding: 0px;
  }
}
.home-welcome .right {
  width: 50%;
  padding: 0 0 0 50px;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 768px) {
  .home-welcome .right {
    width: 100%;
    padding: 0 0px;
  }
}
.home-welcome .right img {
  display: block;
  margin: 0 0 50px;
}
.home-welcome .right img:hover {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  transition: all ease-out .3s;
}
.home-welcome .right p {
  font-size: 130%;
  line-height: 160%;
}
.home-welcome .right a {
  position: relative;
  left: -30%;
  color: #777;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 100%;
  letter-spacing: 2px;
  display: inline-block;
  margin: 20px 0;
  padding: 10px 80px 10px 0;
  background: url(../img/bird-small-grey.svg) no-repeat 100% center transparent;
  background-size: 84px;
}
@media (max-width: 768px) {
  .home-welcome .right a {
    left: 0;
  }
}

/* Video home */
.home-video {
  text-align: center;
  padding: 0px 0px 30px;
  position: relative;
  background: #f8f6f1;
  overflow: hidden;
}
.home-video::before {
  content: "";
  width: 100%;
  height: 250px;
  position: absolute;
  z-index: 9;
  bottom: -100px;
  left: 0;
  display: block;
  background: url("../img/bg-video-bottom.png") no-repeat center bottom transparent;
}
@media (max-width: 768px) {
  .home-video::before {
    display: none;
  }
}
.home-video h2 {
  color: #969694;
  font-size: 350%;
  line-height: 125%;
  width: 100%;
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  .home-video h2 {
    font-size: 200%;
    margin: 0 auto 20px;
    padding: 0 15px;
  }
}
.home-video h2 strong {
  color: #454545;
  display: block;
  font-weight: 400;
  margin: 0 -216px 0 0;
}
@media (max-width: 768px) {
  .home-video h2 strong {
    margin: 0 auto;
  }
}
.home-video h2 span {
  display: block;
  margin: 0 0 0 -62px;
}

.tv {
  position: relative;
}
.tv .bg-video {
  background: rgba(133, 125, 120, 0.27);
  box-shadow: 0 0 102px #00000091 inset;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  transition: all ease-out .3s;
}
@media (max-width: 768px) {
  .tv .bg-video {
    display: none;
  }
}

.tv .screen.active {
  opacity: 1;
}

/* House home */
.parallax-home {
  margin-bottom: -190px;
}
.parallax-home p {
  margin: 0;
  text-align: center;
  font-size: 290%;
  line-height: 100%;
  color: #fff;
  position: relative;
  top: 300px;
}
@media (max-width: 768px) {
  .parallax-home p {
    padding: 90px 15px 0;
    font-size: 220%;
  }
}
.parallax-home p strong {
  display: block;
  margin: 30px 0 0;
}

.home-house {
  position: relative;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0 0 0px;
  background: #f8f6f1;
}
.home-house h2 {
  color: #969694;
  font-size: 350%;
  line-height: 125%;
  width: 100%;
  margin-bottom: 0px;
  text-align: left;
  width: 40%;
}
@media (max-width: 768px) {
  .home-house h2 {
    font-size: 290%;
    width: 100%;
    padding: 10px 15px;
    text-align: center;
  }
}
.home-house h2 strong {
  color: #454545;
  display: block;
  font-weight: 400;
  margin: 0 0px 0 200px;
}
@media (max-width: 768px) {
  .home-house h2 strong {
    margin: 0 auto;
  }
}
.home-house h2 span {
  display: block;
  margin: 0 0 0 -62px;
}
@media (max-width: 768px) {
  .home-house h2 span {
    margin: 0;
  }
}
.home-house .content {
  max-width: 450px;
  padding: 50px 0 0 40px;
  width: 60%;
  font-size: 130%;
  line-height: 140%;
  position: relative;
  line-height: 160%;
}
@media (max-width: 768px) {
  .home-house .content {
    width: 100%;
    padding: 30px 15px;
    text-align: center;
  }
}
.home-house .content::before {
  content: "";
  width: 300px;
  height: 200px;
  display: block;
  position: absolute;
  top: 105px;
  left: -266px;
  background: url(../img/birds-two.png) no-repeat 0 0 transparent;
  background-size: 268px;
}
.home-house .content::after {
  content: "";
  width: 300px;
  height: 200px;
  display: block;
  position: absolute;
  top: 87px;
  right: -280px;
  background: url(../img/bird-big.svg) no-repeat 0 0 transparent;
  background-size: 215px;
}
.home-house .carousel {
  max-width: 2560px;
  width: 100%;
  width: calc(100% + 35px);
  overflow: hidden;
  position: relative;
  background: url(../img/bg-house-bottom.png) no-repeat center top transparent;
  padding: 201px 0 0;
}
.home-house .carousel a {
  text-decoration: none;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 100%;
  display: inline-block;
  margin: 0 0 0 60px;
  padding: 14px 63px 14px 0;
  background: url(../img/bird-small-grey.svg) no-repeat 100% center transparent;
  background-size: 60px;
  position: absolute;
  top: 17px;
  left: 40px;
  z-index: 9;
}
.home-house .carousel::after {
  content: "";
  background: url("../img/bg-house-carousel.png") no-repeat center bottom transparent;
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: -110px;
  z-index: 55;
  left: 0;
}
.home-house .carousel .item {
  margin: 0 5px;
}
.home-house .carousel .item img {
  -webkit-filter: grayscale(60%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(60%);
  transition: all ease-out .3s;
}
.home-house .carousel .item img:hover {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  transition: all ease-out .3s;
  cursor: grab;
}

.valverde-home {
  background: #e7e6e0;
  overflow: hidden;
  padding: 150px 0 0px;
  text-align: center;
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .valverde-home {
    padding: 30px 0 0;
  }
}
.valverde-home h2 {
  color: #969694;
  font-size: 380%;
  line-height: 125%;
  width: 100%;
  margin-bottom: 80px;
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .valverde-home h2 {
    font-size: 190%;
    padding: 0 15px;
    margin: 0 auto 50px;
  }
}
.valverde-home h2::before {
  content: "";
  background: url(../img/birds-three-brown.png) no-repeat center 0 transparent;
  background-size: 376px;
  width: 399px;
  height: 200px;
  position: absolute;
  top: 40px;
  right: -121px;
  display: block;
}
@media (max-width: 768px) {
  .valverde-home h2::before {
    display: none;
  }
}
.valverde-home h2 strong {
  color: #454545;
  display: block;
  font-weight: 400;
  margin: 0 -60px 0 0;
  font-size: 110%;
}
@media (max-width: 768px) {
  .valverde-home h2 strong {
    margin: auto;
  }
}
.valverde-home h2 span {
  display: block;
  margin: 0 0 0 -62px;
}
.valverde-home .left {
  width: 42%;
  position: relative;
}
@media (max-width: 768px) {
  .valverde-home .left {
    width: 100%;
  }
}
.valverde-home .left::before {
  content: "";
  width: 100%;
  height: 430px;
  display: block;
  position: absolute;
  right: 0;
  background: url(../img/bg-valverde-home-left.png) no-repeat center bottom transparent;
  bottom: 24px;
  z-index: 1;
}
@media (max-width: 768px) {
  .valverde-home .left::before {
    display: none;
  }
}
.valverde-home .left h3 {
  font-size: 220%;
  line-height: 100%;
}
.valverde-home .left h3 strong {
  display: block;
}
.valverde-home .left p {
  font-size: 120%;
  line-height: 140%;
}
.valverde-home .left a {
  text-decoration: none;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 100%;
  display: inline-block;
  margin: 0px;
  padding: 14px 63px 14px 0;
  background: url(../img/bird-small-grey.svg) no-repeat 100% center transparent;
  background-size: 60px;
}
.valverde-home .left .block {
  width: 480px;
  position: absolute;
  right: -30%;
  top: 110px;
  background: #fff;
  padding: 40px;
  text-align: left;
  z-index: 9;
}
@media (max-width: 768px) {
  .valverde-home .left .block {
    right: 5%;
    width: 90%;
    background: #ffffffe6;
    top: 100px;
    padding: 15px 20px;
  }
}
.valverde-home .right {
  width: 58%;
  background: url("../img/valverde-home.jpg") no-repeat center bottom transparent;
  background-size: cover;
  height: 800px;
  position: relative;
}
@media (max-width: 768px) {
  .valverde-home .right {
    width: 100%;
  }
}
.valverde-home .right::before {
  content: "";
  background: url(../img/birds-three.png) no-repeat center 11px transparent;
  background-size: 373px;
  width: 363px;
  height: 98px;
  position: absolute;
  top: -20px;
  right: 93%;
  display: block;
  z-index: 10;
}
.valverde-home .environment-valverde {
  width: 100%;
  padding: 40px 40px 100px;
  position: relative;
  background: url(../img/bg-home-footer.png) no-repeat center bottom #f8f6f1;
}
@media (max-width: 768px) {
  .valverde-home .environment-valverde {
    padding-top: 50px;
    padding-bottom: 10px;
  }
}
.valverde-home .environment-valverde::before {
  content: "";
  background: url(../img/bg-valverde-home.png) no-repeat center -10px transparent;
  width: 100%;
  height: 190px;
  position: absolute;
  top: -162px;
  left: 0;
  display: block;
  z-index: 1;
}
.valverde-home .environment-valverde h2 {
  margin-left: -90px;
  margin-bottom: 40px;
  width: 100%;
}
@media (max-width: 768px) {
  .valverde-home .environment-valverde h2 {
    margin: 0;
  }
}
.valverde-home .environment-valverde p {
  text-align: left;
  font-size: 130%;
  line-height: 140%;
}
@media (max-width: 768px) {
  .valverde-home .environment-valverde p {
    text-align: center;
    color: #5d5d5d;
  }
}
.valverde-home .environment-valverde p:nth-child(2) {
  max-width: 1000px;
  margin: 0 0 0 20%;
  color: #5d5d5d;
}
@media (max-width: 768px) {
  .valverde-home .environment-valverde p:nth-child(2) {
    margin: 40px auto 0;
  }
}
.valverde-home .environment-valverde p:nth-child(3) {
  margin: 40px 10% 60px auto;
  max-width: 1000px;
}
@media (max-width: 768px) {
  .valverde-home .environment-valverde p:nth-child(3) {
    margin: 40px auto 0;
  }
}
.valverde-home .home-footer {
  padding: 0 0 160px;
  margin: 0 0 -120px;
  width: 100%;
  overflow: hidden;
}
.valverde-home .home-footer .carousel {
  max-width: 2560px;
  width: 100%;
  width: 100%;
  overflow: hidden;
  position: relative;
  background: url(../img/bg-house-bottom.png) no-repeat center top transparent;
  padding: 201px 0 0;
}
@media (max-width: 768px) {
  .valverde-home .home-footer .carousel {
    width: 100%;
  }
}
.valverde-home .home-footer .carousel a {
  text-decoration: none;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 100%;
  display: inline-block;
  margin: 0 0 0 60px;
  padding: 14px 63px 14px 0;
  background: url(../img/bird-small-grey.svg) no-repeat 100% center transparent;
  background-size: 60px;
  position: absolute;
  top: 147px;
  left: 40px;
}
.valverde-home .home-footer .carousel::after {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: -110px;
  z-index: 55;
  left: 0;
}
.valverde-home .home-footer .carousel .item {
  margin: 0 px;
}
.valverde-home .home-footer .carousel .item img {
  -webkit-filter: grayscale(60%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(60%);
  transition: all ease-out .3s;
}
.valverde-home .home-footer .carousel .item img:hover {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  transition: all ease-out .3s;
  cursor: grab;
}

.parallax, #parallax-1 {
  position: relative;
  background-attachment: fixed;
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
  /**
   * Default height
   */
  height: 100%;
}
@media (max-width: 768px) {
  .parallax, #parallax-1 {
    height: 800px !important;
  }
}

/* Turn off parallax scrolling for tablets and phones */
@media only screen and (max-device-width: 1024px) {
  .parallax, #parallax-1 {
    background-attachment: scroll;
  }
}
.home-intro p.in-view {
  -webkit-transform: translate3d(-100px, 0px, 0);
  transform: translate3d(-100px, 0px, 0);
  -webkit-animation: AnimationCubeBig 2s ease-out forwards;
  animation: AnimationCubeBig 2s ease-out forwards;
}

@-webkit-keyframes AnimationCubeBig {
  0%, 10% {
    opacity: 0;
  }
  85%, 100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes AnimationCubeBig {
  0%, 10% {
    opacity: 0;
  }
  85%, 100% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
.section-intro-home::before {
  -webkit-animation: animationBird1 20s linear infinite;
  animation: animationBird1 20s linear infinite;
}

@-webkit-keyframes animationBird1 {
  0% {
    left: -180px;
    bottom: 230px;
  }
  40% {
    bottom: 230px;
  }
  50% {
    bottom: 170px;
  }
  75% {
    bottom: 230px;
  }
  100% {
    left: 100%;
  }
}
@keyframes animationBird1 {
  0% {
    left: -180px;
    bottom: 250px;
  }
  25% {
    bottom: 230px;
  }
  50% {
    bottom: 170px;
  }
  75% {
    bottom: 260px;
  }
  100% {
    left: 100%;
  }
}
body.page-template-page-landing img {
  width: auto;
}
body.page-template-page-landing .home-landing {
  text-align: center;
  background: url(../img/fondo-landing.jpg) no-repeat center 250px #f8f6f1;
  background-size: 1980px;
  height: 1450px;
  padding: 53px 0 0;
  font-family: Quattrocento;
  font-weight: 400;
  position: relative;
  top: -40px;
}
body.page-template-page-landing .home-landing img {
  display: block;
  margin: 44px auto 40px;
  width: 400px;
}
body.page-template-page-landing .home-landing h2 {
  color: #969694;
  font-size: 320%;
  line-height: 120%;
  width: 100%;
  margin-bottom: 50px;
}
body.page-template-page-landing .home-landing h2 strong {
  color: #454545;
  display: block;
  font-weight: 400;
  margin: 0 -276px 0 0;
  font-size: 125%;
}
body.page-template-page-landing .home-landing h2 span {
  display: block;
  margin: 0 0 0 -92px;
}
body.page-template-page-landing .contact {
  text-align: center;
  padding: 90px 0 330px;
  font-size: 150%;
  line-height: 150%;
  font-family: Quattrocentro;
  background: url("../img/landing-bottom-birds.png") no-repeat center 87% #e6e6df;
  background-size: 650px;
  margin: -40px 0 0;
}
body.page-template-page-landing .contact img {
  width: 290px;
  display: block;
  margin: 50px  auto 0;
}

.parallax-house::after {
  display: none;
}

.main-house {
  padding-bottom: 81px;
  background: #eeebe7;
  margin-bottom: -85px;
}
.main-house .intro-house {
  position: absolute;
  top: 470px;
  left: 16.333%;
  background: #fff;
  z-index: 3;
  width: 560px;
  padding: 15px 50px;
  z-index: 2;
}
@media (max-width: 768px) {
  .main-house .intro-house {
    left: 0;
    width: 100%;
    top: -120px;
    background: #f1efeb;
    position: relative;
    margin: -140px 0 0;
    padding: 10px 20px;
  }
}
.main-house .intro-house .text h2 {
  position: absolute;
  top: -165px;
  left: 40px;
  color: #fff;
  font-size: 310%;
  font-weight: 700;
  margin: 0;
  width: calc(100% + 60px);
}
@media (max-width: 768px) {
  .main-house .intro-house .text h2 {
    width: 100%;
    left: 0;
    padding: 0 0px;
    font-size: 200%;
    color: #333;
    top: -31px;
    position: relative;
  }
}
.main-house .intro-house .text h2 span {
  display: block;
  font-size: 145%;
  font-weight: 400;
  margin: 0 0 0 40px;
}
@media (max-width: 768px) {
  .main-house .intro-house .text h2 span {
    margin: 0 auto;
  }
}
.main-house .intro-house .text p {
  font-size: 180%;
  line-height: 145%;
  margin: 40px 0;
}
@media (max-width: 768px) {
  .main-house .intro-house .text p {
    font-size: 150%;
    margin: 10px 0;
  }
}
.main-house .intro-house .text p:nth-child(2) {
  color: #666;
}
.main-house .house1.text {
  background: url(../img/bg-casa-intro.png) no-repeat center top transparent;
  margin: -372px auto -45px;
  padding: 480px 0 0 0;
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 1980px;
}
@media (max-width: 768px) {
  .main-house .house1.text {
    margin: -100px auto;
    padding: 0px 0 0;
    background: #eeebe7;
  }
}
.main-house .house1.text::before {
  position: absolute;
  top: -190px;
  left: 0;
  content: "";
  width: 100%;
  height: 209px;
  overflow: hidden;
  display: block;
}
@media (max-width: 768px) {
  .main-house .house1.text h2 {
    padding: 0 20px;
  }
}
.main-house .house1.text h2 span {
  display: block;
  color: #444;
  font-size: 110%;
  text-indent: 330px;
}
@media (max-width: 768px) {
  .main-house .house1.text h2 span {
    text-indent: 0;
  }
}
.main-house .house1.text p {
  max-width: 800px;
  margin: 40px auto;
  font-size: 160%;
}
@media (max-width: 768px) {
  .main-house .house1.text p {
    padding: 0 20px;
    font-size: 140%;
  }
}
.main-house .house-2 {
  background: #eeebe7;
  margin: 0 auto -150px;
  text-align: center;
  padding: 60px 50px 100px;
}
@media (max-width: 768px) {
  .main-house .house-2 {
    padding: 60px 0px 100px;
    text-align: justify;
  }
}
.main-house .house-2 .text {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
}
.main-house .house-2 .text h3 {
  font-size: 270%;
  color: #777;
  line-height: 100%;
  margin: 0;
  position: absolute;
  top: 40px;
  left: 89px;
  text-align: left;
}
@media (max-width: 768px) {
  .main-house .house-2 .text h3 {
    left: 20px;
    font-size: 220%;
  }
}
.main-house .house-2 .text h3 strong {
  display: block;
  text-indent: 121px;
  color: #333;
  font-weight: 400;
  font-size: 110%;
  margin: 10px 0 0;
}
@media (max-width: 768px) {
  .main-house .house-2 .text h3 strong {
    text-indent: 0;
  }
}
.main-house .house-2 em {
  position: relative;
  z-index: 3;
  font-style: normal;
  font-size: 190%;
  color: #444;
  display: block;
  top: 0px;
  text-align: center;
  margin: 10px 0 40px;
  line-height: 130%;
}
@media (max-width: 768px) {
  .main-house .house-2 em {
    display: none;
  }
}
.main-house .house-2 .imgblock .right {
  text-align: left;
  padding: 0;
}
@media (max-width: 768px) {
  .main-house .house-2 .imgblock .right {
    max-width: 700px;
  }
}
.main-house .house-2 .imgblock .right::before {
  display: none;
}
.main-house .house-2 .imgblock .left {
  padding-top: 150px;
}
@media (max-width: 768px) {
  .main-house .house-2 .imgblock .left {
    padding: 150px 0 0;
    margin: 0 auto;
    max-width: 700px;
  }
}
.main-house .house-2 .imgblock .imgright {
  max-width: 320px;
}
@media (max-width: 768px) {
  .main-house .house-2 .imgblock .imgright {
    max-width: 100%;
  }
}

.house-3 {
  margin-bottom: -150px;
  padding: 30px 0 0;
  background: #e6e6df;
}
.house-3 .text {
  max-width: 922px;
  margin: 0 auto;
  padding: 0px 20px 0;
}
@media (max-width: 768px) {
  .house-3 .text {
    padding: 0;
  }
}
.house-3 .text h2 strong {
  color: #444;
  font-size: 110%;
  display: block;
  text-indent: 200px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .house-3 .text h2 strong {
    text-indent: 0;
  }
}
.house-3 .text p {
  color: #444;
}
@media (max-width: 768px) {
  .house-3 .text p {
    text-align: justify;
    font-size: 120%;
  }
}
.house-3 .carousel {
  max-width: 2560px;
  width: 100%;
  width: 100 .house-3 .carousel;
  overflow: hidden;
  position: relative;
  padding: 60px 0 0;
}
@media (max-width: 768px) {
  .house-3 .carousel {
    width: 100%;
    padding: 60px 0 0;
  }
}
.house-3 .carousel a {
  text-decoration: none;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 100%;
  display: inline-block;
  margin: 0 0 0 60px;
  padding: 14px 63px 14px 0;
  background: url(../img/bird-small-grey.svg) no-repeat 100% center transparent;
  background-size: 60px;
  position: absolute;
  top: 147px;
  left: 40px;
}
.house-3 .carousel::after {
  content: "";
  width: 100%;
  height: 200px;
  position: absolute;
  bottom: -110px;
  z-index: 55;
  left: 0;
}
.house-3 .carousel .item {
  margin: 0 5px;
}
@media (max-width: 768px) {
  .house-3 .carousel .item {
    margin: 0;
  }
}
.house-3 .carousel .item img {
  -webkit-filter: grayscale(60%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(60%);
  transition: all ease-out .3s;
}
.house-3 .carousel .item img:hover {
  -webkit-filter: grayscale(0%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(0%);
  transition: all ease-out .3s;
  cursor: grab;
}

.footer-parallax {
  width: 100%;
  height: 850px;
  display: block;
  overflow: hidden;
  margin-top: 60px;
}
.footer-parallax::after {
  content: "";
  width: 100%;
  height: 150px;
  display: block;
  background: url(../img/bg-casas-grey.png) no-repeat center 0 transparent;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}

.home-video.house {
  text-align: center;
  padding: 0px 0px 30px;
  position: relative;
  background: #e6e6df;
  overflow: hidden;
}
.home-video.house::before {
  content: "";
  width: 100%;
  height: 110px;
  position: absolute;
  z-index: 9;
  bottom: 10px;
  left: 0;
  display: block;
  background: url("../img/bg-casas-grey.png") no-repeat center bottom transparent;
}
@media (max-width: 768px) {
  .home-video.house::before {
    display: none;
  }
}

.intro-parallax {
  position: relative;
  z-index: 1;
  top: -220px;
}
.intro-parallax::after {
  content: "";
  width: 100%;
  height: 199px;
  display: block;
  background: url(../img/bg-bottom-grey.png) no-repeat center 0 transparent;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
}
.intro-parallax p {
  margin: 0;
}

.parallax-valverde::after {
  background: url(../img/bg-bottom-grey.png) no-repeat center 0 transparent;
}

.intro-valverde {
  margin: -120px auto 0;
}
@media (max-width: 768px) {
  .intro-valverde {
    margin: -200px auto 0;
  }
}
.intro-valverde h1 {
  font-size: 310%;
  color: #444;
  line-height: 100%;
  margin: 0 0 50px;
}
@media (max-width: 768px) {
  .intro-valverde h1 {
    font-size: 220%;
  }
}
.intro-valverde h1 strong {
  display: block;
  text-indent: 320px;
  color: #888;
  font-weight: 400;
  font-size: 85%;
}
@media (max-width: 768px) {
  .intro-valverde h1 strong {
    text-indent: 0px;
  }
}
.intro-valverde p::before {
  display: none;
}

.main-valverde {
  background: #f1efeb;
  margin: 0 auto -190px;
}
.main-valverde .bg-full.text {
  display: block;
  background: url(../img/bg-valverde-1.jpg) no-repeat center 60px #f1efeb;
  min-height: 447px;
}

.valverde-1 {
  text-align: center;
  background: #e8e5e0;
  overflow: hidden;
  padding: 30px 0 200px;
  margin: 0 auto -140px;
}
.valverde-1 .text {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .valverde-1 .text {
    padding: 0 0px;
  }
}
.valverde-1 .text h2 strong {
  color: #444;
  font-size: 110%;
  display: block;
  text-indent: 200px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .valverde-1 .text h2 strong {
    text-indent: 0;
  }
}
.valverde-1 .text p {
  color: #777;
  font-size: 160%;
}

.valverde-3.text p {
  font-size: 140%;
}

.parallax-vera {
  margin-bottom: -200px;
}
.parallax-vera p {
  margin: 0;
  text-align: center;
  font-size: 290%;
  line-height: 100%;
  color: #fff;
  position: relative;
  top: 300px;
}
@media (max-width: 768px) {
  .parallax-vera p {
    padding: 40px 20px 0;
    font-size: 220%;
  }
}
.parallax-vera p strong {
  display: block;
  margin: 30px 0 0;
}

.main-vera .section-intro-home::after {
  content: "";
  width: 100%;
  background: url("../img/birds-three-brown.png") no-repeat center bottom transparent;
  display: block;
  height: 100px;
}
.main-vera .section-intro-home p::before {
  display: none;
}
.main-vera .section-intro-home h1 strong {
  color: #444;
}

.vera-2 {
  background: url("../img/vera-2.jpg") no-repeat center top #e8e5de;
  overflow: hidden;
  padding: 1060px 0 200px;
  text-align: center;
  overflow: hidden;
}
.vera-2::after {
  content: "";
  width: 100%;
  background: url("../img/birds-three-grey.png") no-repeat center bottom transparent;
  display: block;
  height: 100px;
}
.vera-2 .text {
  max-width: 922px;
  margin: 0 auto;
}
.vera-2 .text h2 strong {
  color: #444;
  font-size: 110%;
  display: block;
  text-indent: 200px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .vera-2 .text h2 strong {
    text-indent: 0;
  }
}
.vera-2 .text p {
  color: #444;
}
@media (max-width: 768px) {
  .vera-2 .text p {
    padding: 0 20px;
  }
}

.vera-3 {
  background: #f8f4ef;
  position: relative;
  margin: 0px 0 -148px;
  padding: 0 0 180px;
}
.vera-3::before {
  position: absolute;
  top: -190px;
  left: 0;
  content: "";
  width: 100%;
  height: 209px;
  background: url("../img/bg-casas.png") no-repeat center 10px transparent;
  overflow: hidden;
  display: block;
}
.vera-3 .text {
  max-width: 922px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0 0;
}
.vera-3 .text h2 strong {
  color: #444;
  font-size: 110%;
  display: block;
  text-indent: 200px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .vera-3 .text h2 strong {
    text-indent: 0;
  }
}
.vera-3 .text p {
  color: #444;
}
@media (max-width: 768px) {
  .vera-3 .text p {
    padding: 0 20px;
  }
}
.vera-3 .imgs {
  display: flex;
  justify-content: space-between;
  padding: 30px 0;
}
@media (max-width: 768px) {
  .vera-3 .imgs {
    padding: 0 20px;
  }
}
.vera-3 .imgs img {
  display: block;
  max-width: 46%;
  margin: 0 0px;
}

.page-template-page-quehacer {
  background: #f8f6f1;
}
.page-template-page-quehacer .intro-parallax::after {
  background: url(../img/bg-bottom-grey-2.png) no-repeat center 0 transparent;
}
.page-template-page-quehacer .intro-parallax p {
  margin: 0;
}

.parallax-todo {
  margin-bottom: -200px;
}
.parallax-todo p {
  margin: 0;
  text-align: center;
  font-size: 290%;
  line-height: 100%;
  color: #fff;
  position: relative;
  top: 300px;
}
.parallax-todo p strong {
  display: block;
  margin: 30px 0 0;
}

.main-todo, .main-when {
  background: #f8f6f1;
}
.main-todo .intro-house, .main-when .intro-house {
  position: absolute;
  top: 500px;
  left: 16.333%;
  background: #fff;
  z-index: 3;
  width: 560px;
  padding: 15px 50px;
  z-index: 2;
  background: #e4e3dc;
  font-size: 120%;
  max-width: 490px;
  top: 520px;
}
@media (max-width: 768px) {
  .main-todo .intro-house, .main-when .intro-house {
    position: relative;
    top: -100px;
    left: 0;
    background: transparent;
    width: 100%;
    padding: 10px 20px;
    max-width: 550px;
    margin: 0 auto;
  }
}
.main-todo .todo-1 .text, .main-todo .when-1 .text, .main-when .todo-1 .text, .main-when .when-1 .text {
  max-width: 1100px;
  margin: 130px auto 0;
  text-align: center;
}
@media (max-width: 768px) {
  .main-todo .todo-1 .text, .main-todo .when-1 .text, .main-when .todo-1 .text, .main-when .when-1 .text {
    padding: 20px;
  }
}
.main-todo .todo-1 .text h2, .main-todo .when-1 .text h2, .main-when .todo-1 .text h2, .main-when .when-1 .text h2 {
  text-indent: -300px;
  position: relative;
  font-size: 400%;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .main-todo .todo-1 .text h2, .main-todo .when-1 .text h2, .main-when .todo-1 .text h2, .main-when .when-1 .text h2 {
    font-size: 220%;
    text-indent: 0;
  }
}
.main-todo .todo-1 .text h2::before, .main-todo .when-1 .text h2::before, .main-when .todo-1 .text h2::before, .main-when .when-1 .text h2::before {
  content: "";
  position: absolute;
  top: -175px;
  left: 256px;
  width: 100%;
  height: 97px;
  background: url(../img/birds-three-brown.png) no-repeat center 0 transparent;
  background-size: 350px;
  z-index: 9;
}
@media (max-width: 768px) {
  .main-todo .todo-1 .text h2::before, .main-todo .when-1 .text h2::before, .main-when .todo-1 .text h2::before, .main-when .when-1 .text h2::before {
    left: 10px;
  }
}
.main-todo .todo-1 .text h2 strong, .main-todo .when-1 .text h2 strong, .main-when .todo-1 .text h2 strong, .main-when .when-1 .text h2 strong {
  display: block;
  color: #333;
  text-indent: 150px;
  font-weight: 400;
}
.main-todo .todo-1 .text p, .main-todo .when-1 .text p, .main-when .todo-1 .text p, .main-when .when-1 .text p {
  font-size: 160%;
}
.main-todo .todo-2, .main-todo .when-2, .main-todo .when-4, .main-when .todo-2, .main-when .when-2, .main-when .when-4 {
  background: url(../img/mountain-brown.png) no-repeat center bottom transparent;
  text-align: center;
  padding: 50px 40px 40px;
  position: relative;
  z-index: 1;
}
.main-todo .todo-2 h2, .main-todo .when-2 h2, .main-todo .when-4 h2, .main-when .todo-2 h2, .main-when .when-2 h2, .main-when .when-4 h2 {
  font-weight: 700;
  color: #333;
  font-size: 250%;
}
.main-todo .todo-2 ul, .main-todo .when-2 ul, .main-todo .when-4 ul, .main-when .todo-2 ul, .main-when .when-2 ul, .main-when .when-4 ul {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .main-todo .todo-2 ul, .main-todo .when-2 ul, .main-todo .when-4 ul, .main-when .todo-2 ul, .main-when .when-2 ul, .main-when .when-4 ul {
    flex-direction: column;
  }
}
.main-todo .todo-2 ul li, .main-todo .when-2 ul li, .main-todo .when-4 ul li, .main-when .todo-2 ul li, .main-when .when-2 ul li, .main-when .when-4 ul li {
  margin: 30px 15px;
}
.main-todo .todo-2 ul li a, .main-todo .when-2 ul li a, .main-todo .when-4 ul li a, .main-when .todo-2 ul li a, .main-when .when-2 ul li a, .main-when .when-4 ul li a {
  display: block;
  padding: 25px 40px;
  border: 1px solid #ceccc2;
  color: #333;
  text-decoration: none;
  font-size: 130%;
  border-radius: 20px;
}
.main-todo .todo-2, .main-when .todo-2 {
  padding-bottom: 170px;
}
.main-todo .todo-3, .main-todo .when-3, .main-when .todo-3, .main-when .when-3 {
  background: url("../img/houses-bottom.png") no-repeat center bottom #e7e4dd;
  padding: 0 0 270px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin: -60px auto 0;
}
.main-todo .todo-3 p, .main-todo .when-3 p, .main-when .todo-3 p, .main-when .when-3 p {
  color: #444;
}
.main-todo .todo-3 h3, .main-todo .when-3 h3, .main-when .todo-3 h3, .main-when .when-3 h3 {
  font-size: 350%;
  text-align: center;
  margin: 0;
}
.main-todo .todo-3 .text, .main-todo .when-3 .text, .main-when .todo-3 .text, .main-when .when-3 .text {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 768px) {
  .main-todo .todo-3 .text, .main-todo .when-3 .text, .main-when .todo-3 .text, .main-when .when-3 .text {
    padding: 0 20px;
  }
}
.main-todo .todo-4, .main-when .todo-4 {
  background: url("../img/bg-mountain-grey.png") no-repeat center bottom #f7f4ef;
  padding: 0 0 270px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin: -60px auto 0;
}
.main-todo .todo-4 p, .main-when .todo-4 p {
  color: #444;
}
.main-todo .todo-4 h3, .main-when .todo-4 h3 {
  font-size: 350%;
  text-align: center;
  margin: 0;
}
.main-todo .todo-4 .text, .main-when .todo-4 .text {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.main-todo .todo-5, .main-when .todo-5 {
  background: url("../img/bg-video-bottom.png") no-repeat center bottom #e6e3dd;
  padding: 0 0 270px;
  overflow: hidden;
  position: relative;
  z-index: 3;
  margin: -60px auto -150px;
}
.main-todo .todo-5 p, .main-when .todo-5 p {
  color: #444;
}
.main-todo .todo-5 h3, .main-when .todo-5 h3 {
  font-size: 350%;
  text-align: center;
  margin: 0;
}
.main-todo .todo-5 .text, .main-when .todo-5 .text {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.page-template-page-cuandovenir {
  background: #f8f6f1;
}
.page-template-page-cuandovenir .intro-parallax::after {
  background: url(../img/bg-bottom-grey-2.png) no-repeat center 0 transparent;
}
.page-template-page-cuandovenir .intro-parallax p {
  margin: 0;
}
.page-template-page-cuandovenir .main-when {
  margin-bottom: -180px;
}
.page-template-page-cuandovenir h3 {
  color: #333333;
  font-size: 180%;
  margin: 0 0 60px;
  font-weight: 600;
}
.page-template-page-cuandovenir .when-1 {
  background: url(../img/bg-houses-grey-1.png) no-repeat center bottom transparent;
  padding-bottom: 300px;
  margin-bottom: -30px;
}
.page-template-page-cuandovenir .when-2 {
  background: #e6e3dd;
  padding-top: 0;
}
@media (max-width: 768px) {
  .page-template-page-cuandovenir .when-2 {
    padding: 10px 0;
  }
}
.page-template-page-cuandovenir .when-2 h2 {
  font-weight: 400;
  color: #909090;
  font-size: 250%;
  width: 100%;
}
.page-template-page-cuandovenir .when-2 .right {
  padding-top: 0;
}
.page-template-page-cuandovenir .when-2 .right::before {
  display: none;
}
.page-template-page-cuandovenir .when-2 .right p {
  text-align: left;
}
.page-template-page-cuandovenir .when-3 {
  position: relative;
  padding-top: 0;
  padding-bottom: 190px;
}
.page-template-page-cuandovenir .when-3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 350px;
  background: url(../img/bg-houses-cuando.png) no-repeat center bottom #e6e3dd;
}
.page-template-page-cuandovenir .when-3 h2 {
  font-weight: 400;
  color: #909090;
  font-size: 250%;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .page-template-page-cuandovenir .when-3 h2 {
    margin: 50px auto -50px;
    font-size: 220%;
  }
}
.page-template-page-cuandovenir .when-3 .right {
  padding-top: 0;
}
.page-template-page-cuandovenir .when-3 .right::before {
  display: none;
}
.page-template-page-cuandovenir .when-3 .right p {
  text-align: left;
}
.page-template-page-cuandovenir .when-4, .page-template-page-cuandovenir .when-5, .page-template-page-cuandovenir .when-6 {
  background: #edebe7;
  text-align: center;
  padding: 50px 40px 0px;
  position: relative;
  z-index: 1;
  margin-bottom: -20px;
}
@media (max-width: 768px) {
  .page-template-page-cuandovenir .when-4, .page-template-page-cuandovenir .when-5, .page-template-page-cuandovenir .when-6 {
    padding: 50px 0 0;
  }
}
.page-template-page-cuandovenir .when-4 h2, .page-template-page-cuandovenir .when-5 h2, .page-template-page-cuandovenir .when-6 h2 {
  font-weight: 400;
  color: #909090;
  font-size: 250%;
  width: 100%;
  text-align: center;
}
@media (max-width: 768px) {
  .page-template-page-cuandovenir .when-4 h2, .page-template-page-cuandovenir .when-5 h2, .page-template-page-cuandovenir .when-6 h2 {
    font-size: 220%;
  }
}
.page-template-page-cuandovenir .when-4 .right, .page-template-page-cuandovenir .when-5 .right, .page-template-page-cuandovenir .when-6 .right {
  padding-top: 0;
}
.page-template-page-cuandovenir .when-4 .right::before, .page-template-page-cuandovenir .when-5 .right::before, .page-template-page-cuandovenir .when-6 .right::before {
  display: none;
}
.page-template-page-cuandovenir .when-4 .right p, .page-template-page-cuandovenir .when-5 .right p, .page-template-page-cuandovenir .when-6 .right p {
  text-align: left;
}
.page-template-page-cuandovenir .when-6 {
  padding-bottom: 100px;
}

.main-footer {
  overflow: hidden;
  padding: 340px 0 0;
  position: relative;
  z-index: 5;
  background: url("../img/bg-footer.png") no-repeat center top transparent;
  background-size: 1980px;
}
.main-footer .footer-content {
  background: url("../img/logo-footer.png") no-repeat center 20px #6f6e6b;
  overflow: hidden;
  position: relative;
  padding: 140px 0 100px;
  background-size: 280px;
}
.main-footer .footer-content .link-banner {
  display: block;
  padding: 0 20px;
}
.main-footer .footer-content .banner {
  max-width: 1000px;
  padding: 0px;
  text-align: center;
  margin: 0 auto 50px;
  display: block;
  box-shadow: 0 0 3px #333;
}
.main-footer .footer-content .block {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  color: #fff;
  font-size: 95%;
}
@media (max-width: 768px) {
  .main-footer .footer-content .block {
    flex-wrap: wrap;
  }
}
.main-footer .footer-content .block > div {
  margin: 0 60px 0;
}
@media (max-width: 768px) {
  .main-footer .footer-content .block > div {
    width: 100%;
    margin: 0 auto;
  }
}
.main-footer .footer-content .block .footer-nav ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
@media (max-width: 768px) {
  .main-footer .footer-content .block .footer-nav ul {
    display: none;
  }
}
.main-footer .footer-content .block .footer-nav ul li {
  margin: 7px 0;
  padding: 0;
}
@media (max-width: 768px) {
  .main-footer .footer-content .block .footer-nav ul li {
    width: 50%;
  }
}
.main-footer .footer-content .block .footer-nav ul li a {
  color: #fff;
  text-decoration: none;
}
.main-footer .footer-content .block .footer-location {
  background: url("../img/mark.png") no-repeat 0px 10px #6f6e6b;
  padding: 45px 0 0;
}
@media (max-width: 768px) {
  .main-footer .footer-content .block .footer-location {
    padding: 30px 15px;
    text-align: center;
    background: url("../img/mark.png") no-repeat center 0px #6f6e6b;
  }
}
.main-footer .footer-content .block .footer-location p {
  margin: 10px 0;
  color: #fff;
  line-height: 130%;
}
.main-footer .footer-content .block .footer-location p:nth-child(2) {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .main-footer .footer-content .block .footer-location p:nth-child(2) {
    margin: 30px auto;
    display: block;
  }
}
.main-footer .footer-content .block .footer-location a {
  color: #fff;
  display: block;
  margin: 0 0px 0 0;
}
@media (max-width: 768px) {
  .main-footer .footer-content .block .footer-location a {
    margin: 5px 0 0;
  }
}
@media (max-width: 768px) {
  .main-footer .footer-content .block .footer-social {
    text-align: center;
  }
}
.main-footer .footer-content .block .footer-social em {
  font-style: normal;
  font-weight: 700;
  display: block;
  margin: 10px 0;
  font-size: 120%;
}
.main-footer .footer-content .block .footer-social ul {
  margin: 0;
  padding: 10px 0 0;
  display: flex;
}
@media (max-width: 768px) {
  .main-footer .footer-content .block .footer-social ul {
    justify-content: center;
  }
}
.main-footer .footer-content .block .footer-social ul li {
  margin: 0 25px 0 0;
  padding: 0;
}
.main-footer .footer-content .block .footer-social ul li a {
  color: #fff;
  text-decoration: none;
}
.main-footer .footer-content .block .footer-social ul .youtube {
  position: relative;
  top: 6px;
}

.banner-layout.show {
  position: fixed;
  z-index: 99999;
  top: 0px;
  left: 0;
  text-align: center;
  margin: 0 auto;
  background: #00000069;
  width: 100%;
  height: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-layout.show span.close {
  background: url("../img/close.png") no-repeat center center transparent;
  background-size: 25px;
  width: 40px;
  height: 40px;
  display: block;
  margin: 0 0 0 auto;
  position: relative;
  top: 65px;
  right: 6px;
  z-index: 999;
  cursor: pointer;
}
.banner-layout.show .banner-reservar {
  max-width: 600px;
  margin: 0 auto;
}
.banner-layout.show .banner-reservar a {
  display: block;
  position: relative;
}
.banner-layout.show .banner-reservar img {
  width: 600px;
  position: relative;
  top: 20px;
  box-shadow: 0 0 4px #00000080;
}
@media (max-width: 768px) {
  .banner-layout.show .banner-reservar img {
    width: 100%;
  }
}

.intro-reservar {
  position: relative;
  z-index: 2;
}

.main-reservar {
  margin-top: -220px;
  background: #f1efeb;
  overflow: hidden;
}
@media (max-width: 768px) {
  .main-reservar {
    padding: 0 0px;
  }
}
.main-reservar .text {
  max-width: 1100px;
  margin: 0px auto 0;
  text-align: center;
  padding: 0 0 90px;
}
@media (max-width: 768px) {
  .main-reservar .text {
    padding: 0 20px 50px;
  }
}
.main-reservar .text h2 {
  text-indent: -40px;
  position: relative;
  font-size: 260%;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .main-reservar .text h2 {
    text-indent: 0;
  }
}
.main-reservar .text h2::before {
  content: "";
  position: absolute;
  top: 62px;
  left: -367px;
  width: 100%;
  height: 97px;
  background: url(../img/birds-three-brown.png) no-repeat center 0 transparent;
  background-size: 350px;
  z-index: 9;
}
@media (max-width: 768px) {
  .main-reservar .text h2::before {
    display: none;
  }
}
.main-reservar .text h2 strong {
  display: block;
  color: #333;
  text-indent: 150px;
  font-weight: 400;
  font-size: 130%;
}
@media (max-width: 768px) {
  .main-reservar .text h2 strong {
    text-indent: 0;
  }
}
.main-reservar .text p {
  font-size: 140%;
  color: #333;
}
@media (max-width: 768px) {
  .main-reservar .text p {
    text-align: center;
  }
}
.main-reservar .text p a {
  display: inline-block;
  padding: 19px 60px;
  margin: 20px 0;
  border: 1px solid #1d1d1d;
  border-radius: 5px;
  color: #fff;
  background: #675d53;
  text-decoration: none;
  box-shadow: 0px 0px 3px #3c3632 inset;
}

.contact-form {
  position: relative;
  padding: 0px 0 47px;
  margin: 0px 0 -62px;
  background: #dedad2;
}
.contact-form::after {
  content: "";
  width: 100%;
  position: absolute;
  top: -230px;
  left: 0;
  height: 500px;
  z-index: 0;
  display: block;
  background: url("../img/bg-reservar-2.png") no-repeat center 0px transparent;
}
.contact-form form {
  position: relative;
  z-index: 2;
  padding: 10px 0 20px;
  max-width: 500px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .contact-form form {
    padding: 0 20px 30px;
  }
}
.contact-form form h2 {
  font-size: 190%;
}
.contact-form form br {
  display: none;
  height: 0;
}
.contact-form form input, .contact-form form textarea {
  width: 100%;
  padding: 12px 10px;
  border: none;
  border-radius: 5px;
  box-shadow: 0px 0px 4px #d2cec7 inset;
}
.contact-form form .send {
  display: flex;
  font-size: 90%;
  justify-content: space-between;
}
.contact-form form .send a {
  color: #222;
}
.contact-form form em {
  font-style: normal;
}
.contact-form form input[type=submit] {
  background: #6f6e6b;
  width: 100px;
  color: #fff;
  border: none;
  box-shadow: 0 0 0 transparent;
}
.contact-form form .wpcf7-list-item {
  margin: 0;
}
.contact-form form input[type=checkbox] {
  width: 15px;
  height: 15px;
}
.contact-form form label {
  display: block;
  margin: 15px 0 5px;
  font-size: 110%;
  color: #555;
}

.page-template-page-reservas {
  background: #dedad2;
}

/*# sourceMappingURL=style.css.map */
