.corporate_green,
.corporate_green:hover,
.corporate_green:visited,
.corporate_green:active {
  color: #90b637;
}
.corporate_purple,
.corporate_purple:hover,
.corporate_purple:visited,
.corporate_purple:active {
  color: #810978;
}
.corporate_blue,
.corporate_blue:hover,
.corporate_blue:visited,
.corporate_blue:active {
  color: #3d75bb;
}
.silver {
  color: #777777;
}
.dark,
.dark:hover,
.dark:visited,
.dark:active {
  color: #333333;
}
.gray,
.gray:hover,
.gray:visited,
.gray:active {
  color: #353535;
}
.clearGray,
.clearGray:hover,
.clearGray:visited,
.clearGray:active {
  color: #f5f5f5;
}
.white,
.white:hover,
.white:visited,
.white:active {
  color: #ffffff;
}
.red,
.red:hover,
.red:visited,
.red:active {
  color: #d83d39;
}
.blue,
.blue:hover,
.blue:visited,
.blue:active {
  color: #0044cc;
}
.metalBlue,
.metalBlue:hover,
.metalBlue:visited,
.metalBlue:active {
  color: #3779cc;
}
.green,
.green:hover,
.green:visited,
.green:active {
  color: #b3ff00;
}
.cherry,
.cherry:hover,
.cherry:visited,
.cherry:active {
  color: #6e1229;
}
.magenta,
.magenta:hover,
.magenta:visited,
.magenta:active {
  color: #d500c5;
}
.darkMagenta,
.darkMagenta:hover,
.darkMagenta:visited,
.darkMagenta:active {
  color: #a20096;
}
.bg-white {
  background-color: #ffffff;
}
.bg-red {
  background-color: #d83d39;
}
.bg-blue {
  background-color: #0044cc;
}
.bg-green {
  background-color: #b3ff00;
}
.bg-cherry {
  background-color: #6e1229;
}
.bg-clearGray {
  background-color: #f5f5f5;
}
.bg-darkGray {
  background-color: #191919;
  box-shadow: 0 0 0 rgba(25, 25, 25, 0);
}
.bg-darkGray:hover {
  box-shadow: 0 0 1.6em #191919;
}
.bg-magenta {
  background-color: #d500c5;
  box-shadow: 0 0 0 rgba(213, 0, 197, 0);
}
.bg-magenta:hover {
  box-shadow: 0 0 1.6em #d500c5;
}
.bg-gray {
  background-color: #353535;
  box-shadow: 0 0 0 rgba(53, 53, 53, 0);
}
.bg-gray:hover {
  box-shadow: 0 0 1.6em #353535;
}
.bg-corporateGreen {
  background-color: #90b637;
  box-shadow: 0 0 0 rgba(144, 182, 55, 0);
}
.bg-corporateGreen:hover {
  box-shadow: 0 0 1.6em #90b637;
}
.bg-corporateBlue {
  background-color: #3d75bb;
  box-shadow: 0 0 0 rgba(61, 117, 187, 0);
}
.bg-corporateBlue:hover {
  box-shadow: 0 0 1.6em #3d75bb;
}
.bg-corporatePurple {
  background-color: #810978;
  box-shadow: 0 0 0 rgba(129, 9, 120, 0);
}
.bg-corporatePurple:hover {
  box-shadow: 0 0 1.6em #810978;
}
.light {
  font-family: 'OmnesLight';
  font-weight: 300;
}
.normal {
  font-family: 'OmnesRegular';
  font-weight: normal;
}
.semibold {
  font-family: 'OmnesMedium';
  font-weight: 600;
}
.bold {
  font-family: 'OmnesSemibold';
  font-weight: 700;
}
.box-shadow {
  box-shadow: 0 0.3em 1.5em rgba(0, 0, 0, 0.1);
}
.cursor_pointer {
  cursor: pointer;
}
.bg-cover {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 0;
}
.bg-contain {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  padding: 0;
}
.absolute {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.absolute.center {
  margin: auto;
  text-align: center;
  display: block;
}
.flex {
  display: flex;
}
.flex.center {
  align-items: center;
  justify-content: center;
}
.flex.right {
  align-items: center;
  justify-content: flex-end;
}
.flex-1 {
  flex: 1;
}
.flex-2 {
  flex: 2;
}
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .flex {
    display: block;
  }
  .flex.flex-xs {
    display: flex;
  }
}
html {
  background-color: #333333;
  background-size: cover;
  background-position: center;
  background-image: url("../img/bg-wallpaper.jpg");
  background-attachment: fixed;
}
body {
  background-image: #ffffff;
  font-family: 'OmnesLight', 'Open sans', 'Arial', 'Geneva', sans-serif;
  font-size: 14pt;
  color: #333333;
  height: 100%;
  margin: 0 auto;
  box-shadow: 0 0 5em rgba(0, 0, 0, 0.5);
}
.bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: url("../img/bg.jpg") no-repeat;
  background-size: cover;
  opacity: 0.7;
}
header {
  background-image: url("../img/bg-header.jpg");
  background-size: cover;
  background-color: white;
  position: relative;
}
header.fixed {
  box-shadow: 0 0.3em 1.5em rgba(0, 0, 0, 0.1);
  position: fixed;
  left: 0;
  right: 0;
  z-index: 100;
}
header nav a {
  font-size: 12.5pt;
  margin: 0;
  color: rgba(0, 0, 0, 0.9);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
  letter-spacing: .025em;
  padding-left: 0.75em;
  padding-right: 0.75em;
  font-family: 'OmnesLight';
  font-weight: 300;
}
header nav a:hover {
  text-decoration: none;
}
header nav .social-call2action a {
  margin: 0;
  display: inline-block;
  border: 0;
  padding: 0;
}
footer {
  background: url("../img/bg-footer.jpg");
  padding-top: 1.5em;
  padding-bottom: 1.0em;
  background-size: cover;
  font-size: .8em;
  line-height: 1.25em;
  color: white;
  font-family: 'OmnesRegular';
  font-weight: normal;
  letter-spacing: 0.025em;
}
footer a {
  color: white;
}
footer a:hover {
  text-decoration: underline;
  color: white;
}
.full-cover {
  position: fixed;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.full-cover.white {
  background: rgba(255, 255, 255, 0.985);
  color: #444;
}
.full-cover.blue {
  background: #0044cc;
  color: #fff;
}
.btn {
  border-radius: 0;
  transition: all .1s linear;
}
.btn .round {
  border-radius: 0.25em;
}
.btn.green {
  color: #ffffff;
  background-color: #b3ff00;
  width: 100%;
}
.btn.corporate_green {
  color: #ffffff;
  background-color: #90b637;
  width: 100%;
}
.btn.corporate_purple {
  color: #ffffff;
  background-color: #810978;
  width: 100%;
}
.btn.corporate_blue {
  color: #ffffff;
  background-color: #3d75bb;
  width: 100%;
  box-shadow: 0.2em 0.2em 0.4em rgba(61, 117, 187, 0.8);
}
.btn.outline {
  padding-top: 0;
  padding-bottom: .2em;
  border: 1px solid transparent;
  background-color: transparent !important;
  transition: all .1s linear;
  font-size: 16pt;
  font-weight: lighter;
}
.btn.outline:hover {
  border-radius: 5px;
  box-shadow: 0 0 0px 2px !important;
}
.btn.outline.white,
.btn.outline.white:hover,
.btn.outline.white:visited {
  border-color: #ffffff;
  color: #ffffff;
}
.overlay {
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.overlay .white {
  background: rgba(255, 255, 255, 0.91);
  color: #444;
}
.overlay .black {
  background: rgba(65, 65, 65, 0.94);
  color: white;
}
.form-control {
  border: 0;
  box-shadow: 0.2em 0.2em 1.5em rgba(0, 0, 0, 0.1);
  border-radius: 0;
  padding: 1.5em 0.8em;
}
.form-control.select.custom {
  border: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url('../img/drop-down.png');
  background-repeat: no-repeat;
  background-position: .4em center;
  text-indent: 9px;
  background-size: 12px;
  font-weight: lighter;
}
textarea.form-control {
  padding: 0.8em;
}
.form-group {
  padding: 0.1em;
  margin: 0;
}
::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #3d75bb !important;
  font-family: 'OmnesRegular';
  font-weight: normal;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: #3d75bb !important;
  font-family: 'OmnesRegular';
  font-weight: normal;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: #3d75bb !important;
  font-family: 'OmnesRegular';
  font-weight: normal;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: #3d75bb !important;
  font-family: 'OmnesRegular';
  font-weight: normal;
}
/* for IE 11 */
select.custom::-ms-expand {
  display: none;
}
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 105;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu .wrap {
    width: 100%;
  }
  .mobile-menu .wrap nav {
    width: 100%;
  }
  .mobile-menu .wrap nav a {
    display: block;
    border-bottom: thin solid rgba(245, 245, 245, 0.5);
    text-align: center;
    padding: 0.5em;
    color: #333333;
    font-family: 'OmnesRegular';
    font-weight: normal;
  }
  .mobile-menu .wrap .social-call2action {
    text-align: center;
    width: 100%;
  }
  .mobile-menu .wrap .social-call2action a {
    display: inline-block;
    border: 0;
    padding: 0.5em;
  }
  .icon-call,
  .icon-mail {
    position: fixed;
    bottom: 0;
    padding-top: 5px;
    padding-bottom: 10px;
    z-index: 100;
    text-align: center;
    background-size: contain;
  }
  .icon-call img,
  .icon-mail img {
    height: 25px;
  }
  .icon-call {
    left: 0;
    background-image: url("../img/btn-blue-grad.png");
  }
  .icon-mail {
    background-image: url("../img/btn-gray-grad.png");
    right: 0;
  }
}
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1200px) and (max-width: 1366px) {
  body {
    width: 1200px;
  }
}
/* Large Devices, Wide Screens */
@media only screen and (min-width: 1440px) {
  body {
    width: 1200px;
  }
}
#home .hero .slide {
  height: 450px;
}
#nosotros .info-block {
  height: 270px;
  padding: 1.5em;
  transition: all .2s linear;
}
#nosotros .info-block h1,
#nosotros .info-block h3 {
  font-family: 'OmnesLight';
  font-weight: 300;
  padding: 0;
  padding-bottom: 0.3em;
  margin: 0;
}
#nosotros .info-block p {
  font-size: 0.90em;
  text-align: justify;
  letter-spacing: 0.075em;
  line-height: 1.2em;
  text-shadow: 0.1em 0.1em 0.3em rgba(0, 0, 0, 0.1);
}
#nosotros .info-block:hover {
  z-index: 10;
}
#nosotros .info-block.brand-title h1 {
  font-size: 3em;
  margin: 0;
  padding: 0;
  border-right: 2px solid rgba(255, 255, 255, 0.4);
  padding-right: 0.2em;
}
#nosotros .info-block.brand-title h3 {
  font-size: 1.3em;
  line-height: .85em;
  margin: 0;
  padding: 0;
  padding-left: 0.5em;
}
#desarrollos .desarrollos-wrap .item article {
  position: relative;
  border-radius: 6px;
  box-shadow: 0 0.2em 0.3em rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all .2s linear;
}
#desarrollos .desarrollos-wrap .item article:hover {
  box-shadow: 0 0.2em 1.5em rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
#desarrollos .desarrollos-wrap .item article .thumb {
  height: 200px;
  transition: filter .5s linear;
}
#desarrollos .desarrollos-wrap .item article .location {
  text-align: center;
  line-height: 1.2em;
  margin: 0;
  padding: .5em;
  padding-top: .66em;
  font-size: 0.8em;
  letter-spacing: 0.01em;
  text-transform: capitalize;
  transition: opacity .5s linear;
}
#desarrollos .desarrollos-wrap .item article .hover-action {
  transition: opacity .25s linear;
  background: #810978;
  background: -moz-linear-gradient(45deg, #810978 0%, #aa0ba5 100%);
  background: -webkit-linear-gradient(45deg, #810978 0%, #aa0ba5 100%);
  background: linear-gradient(45deg, #810978 0%, #aa0ba5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#810978', endColorstr='#aa0ba5', GradientType=1);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.0;
}
#desarrollos .desarrollos-wrap .item article .hover-action .link a {
  font-size: 1.25em;
  color: rgba(255, 255, 255, 0.9);
}
#desarrollos .desarrollos-wrap .item article:hover > .hover-action {
  opacity: 0.75;
}
#desarrollos .desarrollos-wrap .item article:hover > .thumb {
  filter: blur(15px);
}
#desarrollos .desarrollos-wrap .item article:hover > .location {
  opacity: 0;
}
#contacto {
  background-color: #f4f4f4;
  box-shadow: 0 0 0.6em rgba(0, 0, 0, 0.1);
  background-image: url("../img/bg-contact-form.jpg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}
#contacto .advice {
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0.2em 0.2em 1.5em rgba(0, 0, 0, 0.1);
  padding: 0.5em;
  border-radius: 5px;
}
#ubicacion-telefono {
  background-color: #000e2d;
  box-shadow: 0 0 0.6em rgba(0, 0, 0, 0.1);
  background-image: url("../img/bg-contact-data.jpg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}
#ubicacion-telefono p {
  text-shadow: 0 0.1em 0.5em #000000;
}
#ubicacion-telefono p a {
  text-shadow: 0 0.1em 0.5em rgba(179, 255, 0, 0.4);
}
#ubicacion-telefono h1 {
  text-shadow: 0 0.1em 0.5em rgba(179, 255, 0, 0.4);
}
.whatsapp-link {
  position: fixed;
  bottom: 5px;
  left: 10px;
  width: 46px;
  height: 46px;
  z-index: 100;
}
/* Custom, iPhone Retina */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  #home .hero .slide {
    height: 150px;
  }
  #nosotros .info-block {
    height: auto;
  }
  #contacto {
    background: #f4f4f4;
  }
  #contacto .bg-xs {
    background-image: url("../img/bg-contact-form.jpg");
    height: 150px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center left;
  }
  #ubicacion-telefono {
    background: #000e2d;
  }
  #ubicacion-telefono .bg-xs {
    background-image: url("../img/bg-contact-data.jpg");
    height: 150px;
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center right;
  }
}
/* Extra Small Devices, Phones */
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  #home .hero .slide {
    height: 380px;
  }
}
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
#property-detail .hero .slide {
  height: 450px;
}
#property-detail .owl-carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#property-detail .owl-carousel .owl-stage {
  display: flex;
  align-items: center;
  justify-content: center;
}
#property-detail .gallery .thumb {
  display: block;
  position: relative;
  height: 350px;
}
#property-detail .gallery .thumb div {
  height: 100%;
  width: 100%;
  position: absolute;
  opacity: .95;
  transition: .2s opacity linear;
}
#property-detail .gallery .thumb div:hover {
  opacity: 1;
}
#property-detail .gallery .thumb div.bg-contain {
  display: none;
}
#property-detail .details ul li {
  padding: .25em;
}
/* Extra Small Devices, Phones */
@media only screen and (min-width: 320px) and (max-width: 480px) {
  #property-detail .gallery .thumb {
    height: 150px;
  }
}
/* Small Devices, Tablets */
@media only screen and (min-width: 768px) and (max-width: 992px) {
  #home .hero .slide {
    height: 380px;
  }
}
/* Medium Devices, Desktops */
/* Large Devices, Wide Screens */
