/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust:     100%;
}

body {
    margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
    position: relative;
}

dfn {
    font-style: italic;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

mark {
    background: #ff0;
    color: #000;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

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

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

legend {
    border: 0;
    padding: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
    color: #404040;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    clear: both;
}

p {
    margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background: #eee;
    font-family: "Courier 10 Pitch", Courier, monospace;
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
    font-size: 15px;
    font-size: 0.9375rem;
}

abbr,
acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
}

mark,
ins {
    background: #fff9c0;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
    box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
    box-sizing: inherit;
}

body {
    background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: "";
}

blockquote,
q {
    quotes: "" "";
}

hr {
    background-color: #ccc;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

ul,
ol {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

ol {
    list-style: decimal;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

dt {
    font-weight: bold;
}

dd {
    margin: 0 1.5em 1.5em;
}

img {
    height: auto; /* Make sure images are scaled correctly. */
    max-width: 100%; /* Adhere to container width. */
}

figure {
    margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
}

table {
    margin: 0 0 1.5em;
    width: 100%;
}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    border: 1px solid;
    border-color: #ccc #ccc #bbb;
    border-radius: 3px;
    background: #6d6e71;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1;
    padding: .6em 1em .4em;
    text-transform: uppercase;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    border-color: #ccc #bbb #aaa;
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    color: #4F4B46;
    border: 0px solid #ccc;
    border-radius: 2px;
    padding: 3px;
    background: #fbfbfb;
    margin-bottom: 0px;
    width: 90%;
}

select {
    border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: #111;
}

textarea {
    width: 90%;
    height: 150px;
    display: block;
    margin-bottom: 0px;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
    color: #333;
    transition: ease all 0.3s;
    text-decoration: none;
}

a:visited {
    color: #333;
}

a:hover,
a:focus,
a:active {
    color: #666;
    opacity: 0.7;
}

a:focus {
    outline: thin dotted;
}

a:hover,
a:active {
    outline: 0;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
    clear: both;
    display: block;
    float: none;
    width: 100%;
    position: absolute;
    left: 40%;
    font-size: 12px;
    z-index: 4;
    top: 65px;
}

.main-navigation ul {
    display: none;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.main-navigation li {
    float: left;
    position: relative;
}

.main-navigation a {
    display: block;
    text-decoration: none;
    position: relative;
}

.main-navigation ul ul {
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    float: left;
    position: absolute;
    top: 100%;
    left: -999em;
    z-index: 99999;
}

.main-navigation ul ul ul {
    left: -999em;
    top: 0;
}

.main-navigation ul ul a {
    width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
    left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
    left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
    display: block;
    font-size: 20px;
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    right: 10px;
    top: 20px;
}

@media screen and (min-width: 37.5em) {
    .menu-toggle {
        display: none;
    }
    .main-navigation ul {
        display: block;
    }
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
    margin: 0 0 1.5em;
    overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
    float: left;
    width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
    float: right;
    text-align: right;
    width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    color: #21759b;
    display: block;
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
    outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
    display: inline;
    float: left;
    margin-right: 1.5em;
}

.alignright {
    display: inline;
    float: right;
    margin-left: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
    content: "";
    display: table;
    table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
    clear: both;
}
/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/

header {
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 999999;
    background: #fff;
    text-align: center;
    padding-left: 50px;
    padding-right: 50px;
}

.container {
    padding: 50px;
    padding-top: 80px;
}

ul.menu-items {
    width: 100%;
    list-style: none;
}

ul.menu-items li {
    font-size: 11px;
    text-transform: uppercase;
    color: #6D6E71;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 30px;
    letter-spacing: 2px;
}
ul.menu-items li a {
    height: 18px;
    display:block;
}
ul.menu-items li a:after {
    content: "";
    width: 0%;
    height: 1px;
    transition: ease all .2s;
    display: block;
    margin: auto;
    background: #6D6E71;
}
ul.menu-items li a.active:after, ul.menu-items li a:hover:after, .main-navigation li.current-menu-item a:after, .main-navigation .mPS2id-highlight:after {
    content: "";
    background: #6D6E71;
    position: relative;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    margin: auto;
}
.logo {
    position: absolute;
    top: 14px;
    left: 50px;
    height: auto;
    width: 38px;
}

.menu {
    position: relative;
}

.logo img {
    width: auto;
}
ul.square {
    text-align: center;
}
.bx-viewport ul li {
    width: 100%!important;
}
.news-image.desarrollos {
    margin-bottom: 0;
}

ul.bx-pager {
    margin: 0!important;
    padding: 0!important;
    top: 0;
    text-align: left!important;
    display: flex;
    width: 100%!important;
    justify-content: space-between;
    margin-bottom: 50px;
}
.bx-viewport .bx-pager li {
    width: 22%!important;
    display: inline-block!important;
    position: relative!important;
    margin-right: 0px;
    max-width: 250px;
}
.bx-viewport .bx-pager li a {
    opacity:0.4;
    display:block;
    padding-top: 5px;
    padding-right: 0px;
}
.bx-viewport .bx-pager li a.active {
    opacity:1;
}
.square li{
    position: relative;
    width: 27%;		/* desired width */
    background: #333;
    color: #fff;
    display: inline-block;
    margin: 17px;
    background-size: cover!important;
    background-position: center center;
}
.square li:before{
    content: "";
    display: block;
    padding-top: 100%; 	/* initial ratio of 1:1*/
}
.sqr-content {
    position: absolute;
    top: 0;
    padding: 0px;
    width: 100%;
    background: rgba(129, 186, 72, 0);
    height: 100%;
    transition:ease all 0.2s;
}
.sqr-content:hover {
    background: rgba(162, 162, 162, 0.5);
}
section#Video {
    min-height: 500px;
}
#map {
    width: 100%;
    height: 500px;
}

.content {
    padding-top: 50px;
    padding-bottom: 0px;
    width: 88%;
    margin: auto;
    z-index: 2;
    position: relative;
}
.third {
    width: 33%;
    margin-right: -4px;
    display: inline-block;
    vertical-align: top;
}
#masterplan .content {
    padding-top: 0px;
    margin-top: -90px;
}
.left {
    width: 50%;
    margin-right: -4px;
    display: inline-block;
    vertical-align: top;
}

.rigth {
    width: 50%;
    margin-right: -4px;
    display: inline-block;
    vertical-align: top;
    text-align: left;
}
.left img {
    max-width: 95%;
}
.rigth img {
    max-width: 565px;
}
.container-inside {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 150px 50px;
    max-width: 1325px;
    margin-left: auto;
    margin-right: auto;
}

.text-block {
    text-align: left;
    letter-spacing: 0.5px;
    line-height: 30px;
    padding-top: 0px;
    font-weight: 300;
}
h2 {
    font-family: 'Century Gothic';
    padding: 0;
    margin: 0;
    font-size: 34px;
    color: #6d6e71;
    font-weight: 500;
    letter-spacing: 5.4px;
    line-height: 30px;
    margin-bottom: 90px;
    font-weight: 700;
}
h2.lowmargin {
    margin-bottom: 0px;
}
.century {
    font-family: 'Century Gothic';
    color: #6d6e71;
}
.iframe .player .controls .logo {
    display: none!important;
}
.welcomehome {
    min-height: 200px;
    height: auto;
}
ul.unslider-wrap li img {
    width: 100%;
    display: block;
}
.logofooter {
    width: 8%;
    margin: auto;
    padding-top: 100px;
    padding-bottom: 3%;
}

ul.legal {
    text-align: center;
    font-size: 11px;
    padding-bottom: 5%;
}

ul.legal li {
    min-width: 50px;
    display: inline-block;
    padding-left: 20px;
    padding-right: 20px;
    letter-spacing: 2px;
}
.square li a {
    display: block;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 210%;
    font-family: 'Century Gothic';
    line-height: 40px;
    padding-top: 37%;
    letter-spacing: 4px;
    font-weight: 700;
}
/* 
 _____   _           _         _                        _                  
|_   _| | |         | |       | |                      | |                 
  | |   | |__   __ _| |_ ___  | |_ ___  _ __ ___   __ _| |_ ___   ___  ___ 
  | |   | '_ \ / _` | __/ _ \ | __/ _ \| '_ ` _ \ / _` | __/ _ \ / _ \/ __|
 _| |_  | | | | (_| | ||  __/ | || (_) | | | | | | (_| | || (_) |  __/\__ \
 \___/  |_| |_|\__,_|\__\___|  \__\___/|_| |_| |_|\__,_|\__\___/ \___||___/

Oh nice, welcome to the stylesheet of dreams. 
It has it all. Classes, ID's, comments...the whole lot:)
Enjoy responsibly!
@ihatetomatoes

*/
/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection rule sets have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

/*
 * A better looking default horizontal rule
 */

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
    vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */

textarea {
    resize: vertical;
}

/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

/* ==========================================================================
   Parallax Scroll
   ========================================================================== */
.no-js {
    padding-top: 106px;
}
h2 {
    margin-top: 0;
}
.loading {
    background: url('../img/ico_loading.gif') no-repeat center center;
}
section {
    min-width: 200px;
    opacity: 1;
    position: relative;
}
.loaded section,
.no-js section {
    opacity: 1;
    -webkit-transition: opacity 300ms ease-out;
    -moz-transition: opacity 300ms ease-out;
    transition: opacity 300ms ease-out;
}
main {
    overflow-x: hidden;
}
#preload {
    width: 1px;
    height: 1px;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}
.bcg {
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    height: 100%;
    width: 100%;
}

.hsContainer {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: relative;
}

.hsContent {
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
}
.hsContent h2  {
    color: #fff8de;
    background-color: rgba(0,0,0,0.5);
    padding: 10px 5px;
    font-size: 35px;
    line-height: 38px;
    margin-bottom: 12px;
}
.hsContent p {
    width: 400px;
    color: #b2b2b2;
}
.hsContent a {
    color: #b2b2b2;
    text-decoration: underline;
}

/* Slide 1 */
#slide-1 .bcg {background-image:url('img/separadormaster.jpg')}
#slide-1 .hsContent {
    bottom: 42%;
    top: auto;
}

/* ==========================================================================
   Helper classes
   ========================================================================== */

/*
 * Image replacement
 */

.ir {
    background-color: transparent;
    border: 0;
    overflow: hidden;
    /* IE 6/7 fallback */
    *text-indent: -9999px;
}

.ir:before {
    content: "";
    display: block;
    width: 0;
    height: 150%;
}

/*
 * Hide from both screenreaders and browsers: h5bp.com/u
 */

.hidden {
    display: none !important;
    visibility: hidden;
}

/*
 * Hide only visually, but have it available for screenreaders: h5bp.com/v
 */

.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/*
 * Extends the .visuallyhidden class to allow the element to be focusable
 * when navigated to via the keyboard: h5bp.com/p
 */

.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
}

/*
 * Hide visually and from screenreaders, but maintain layout
 */

.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/*
 * For IE 6/7 only
 * Include this rule to trigger hasLayout and contain floats.
 */

.clearfix {
    *zoom: 1;
}


section#slide-1 {
    text-align: center;
    height: 66vh;
    max-height: 450px;
}
section#Ubicacion {
    padding-top: 0px;
}
#Masterplan {
    height: 600px;
}
.master {
    background-image: url(img/masterplan-home.jpg);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: contain;
    height: 100%;
    position: relative;
}
#slide-1 .hsContent img {
    width: 54%;
}
.button {
    font-weight: 300;
    font-size: 14px;
    padding: 10px;
    border: 1px solid rgba(64, 64, 64, 0.25);
    display: inline-block;
    margin-top: 50px;
    color: rgba(64, 64, 64, 0.75);
    transition:ease all 0.5s;
}
.button:hover {
    font-weight: 300;
    font-size: 14px;
    padding: 10px;
    border: 1px solid rgba(64, 64, 64, 0.25);
    display: inline-block;
    margin-top: 50px;
    background-color: rgba(64, 64, 64, 0.75);
    color:#fff;
}
.button a {
    color: rgba(64, 64, 64, 0.75);
}
.button:hover a {
    color: #fff;
}
.rigth-align {
    text-align: right;
    padding-right: 25px;
}
.left img, .rigth img {
    width: 100%;
}
.medium {
    font-size: 20px;
    line-height: 42px;
}
.date {
    font-size: 12px;
    padding-bottom: 15px;
    opacity: 0.6;
}
.upper {
    width: 110%;
    margin-left: -5%;
    margin-top: -50px;
    z-index: -1;
    position: relative;
}
.pad {
    padding-right: 25px;
}
.pad2 {
    padding-top: 50px!important;
    padding-bottom: 50px;
    margin: 0!important;
}
.pad3 {
    padding-top: 50px!important;
    padding-bottom: 50px!important;
    /* margin: 0!important; */
    display: block!important;
}
img.spacer {
    margin-top: 50px;
    margin-bottom: 50px;
}
.masterlink {
    width: 80%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}
.masterlink a {
    width: 100%;
    height: 100%;
    display:block;
}
.master h2 {
    position: relative;
    z-index: 2;
}
.hamburg {
    display: none;
    opacity: 0;
}
.ops {
    opacity: 0.25;
}
.center {
    text-align: center;
}
article .content-area {
    padding: 50px;
    padding-top: 80px;
}
h1.entry-title {
    font-family: 'Century Gothic';
    padding: 0;
    margin: 0;
    font-size: 34px;
    color: #6d6e71;
    font-weight: 500;
    letter-spacing: 5.4px;
    line-height: 20px;
    margin-bottom: 100px;
    font-weight: 700;
}

header.entry-header {
    height: auto;
    position: relative;
    padding: 0;
    text-align: left;
}
article {
    width: 100%;
}
.mastermob .left, .mastermob .rigth-align {
    width: 100%;
    text-align: left!important;
}
.mastermob .rigth {
    width: 100%;
    text-align: center!important;
    margin-bottom: 100px;
}

.mastermob br {
    display: none;
}

.mastermob .content {
    margin-top: 0!important;
}
.news {
    padding: 50px;
}
.news-image {
    margin-bottom: 50px;
}
nav.controls {
    position: absolute;
    bottom: 50%;
    width: 100%;
}
.dev {
    width: 50%;
    text-align: center;
    height: 395px;
    display: inline-flex;
}
.dev img {
    width: 65%;
    margin: auto;
    text-align: center;
}
.gray {
    background: #dcdcdc;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
}
a#PREV {
    background: #2f2f2f;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    padding-top: 5px;
    border-radius: 40px;
    padding-right: 4px;
    left: 20px;
    color: #fff!important;
    position: absolute;
    font-size: .6em!important;
}

a#NEXT {
    background: #2f2f2f;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    padding-top: 5px;
    border-radius: 40px;
    padding-left: 4px;
    margin-left: 20px;
    color: #ffffff!important;
    position: absolute;
    right: 20px;
    top: 0;
    font-size: .6em!important;
}
.bx-prev i, .bx-next i {
    color:#fff;
}
@media (max-width: 768px) { 
    /*--------------------------------------------------------------
    # Normalize
    --------------------------------------------------------------*/
    html {
        font-family: sans-serif;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust:     100%;
    }

    body {
        margin: 0;
    }

    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    main,
    menu,
    nav,
    section,
    summary {
        display: block;
    }

    audio,
    canvas,
    progress,
    video {
        display: inline-block;
        vertical-align: baseline;
    }

    audio:not([controls]) {
        display: none;
        height: 0;
    }

    [hidden],
    template {
        display: none;
    }

    a {
        background-color: transparent;
    }

    a:active,
    a:hover {
        outline: 0;
    }

    abbr[title] {
        border-bottom: 1px dotted;
    }

    b,
    strong {
        font-weight: bold;
        position: relative;
    }

    dfn {
        font-style: italic;
    }

    h1 {
        font-size: 2em;
        margin: 0.67em 0;
    }

    mark {
        background: #ff0;
        color: #000;
    }

    small {
        font-size: 80%;
    }

    sub,
    sup {
        font-size: 75%;
        line-height: 0;
        position: relative;
        vertical-align: baseline;
    }

    sup {
        top: -0.5em;
    }

    sub {
        bottom: -0.25em;
    }

    img {
        border: 0;
    }

    svg:not(:root) {
        overflow: hidden;
    }

    figure {
        margin: 1em 40px;
    }

    hr {
        box-sizing: content-box;
        height: 0;
    }

    pre {
        overflow: auto;
    }

    code,
    kbd,
    pre,
    samp {
        font-family: monospace, monospace;
        font-size: 1em;
    }

    button,
    input,
    optgroup,
    select,
    textarea {
        color: inherit;
        font: inherit;
        margin: 0;
    }

    button {
        overflow: visible;
    }

    button,
    select {
        text-transform: none;
    }

    button,
    html input[type="button"],
    input[type="reset"],
    input[type="submit"] {
        -webkit-appearance: button;
        cursor: pointer;
    }

    button[disabled],
    html input[disabled] {
        cursor: default;
    }

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

    input {
        line-height: normal;
    }

    input[type="checkbox"],
    input[type="radio"] {
        box-sizing: border-box;
        padding: 0;
    }

    input[type="number"]::-webkit-inner-spin-button,
    input[type="number"]::-webkit-outer-spin-button {
        height: auto;
    }

    input[type="search"]::-webkit-search-cancel-button,
    input[type="search"]::-webkit-search-decoration {
        -webkit-appearance: none;
    }

    fieldset {
        border: 1px solid #c0c0c0;
        margin: 0 2px;
        padding: 0.35em 0.625em 0.75em;
    }

    legend {
        border: 0;
        padding: 0;
    }

    textarea {
        overflow: auto;
    }

    optgroup {
        font-weight: bold;
    }

    table {
        border-collapse: collapse;
        border-spacing: 0;
    }

    td,
    th {
        padding: 0;
    }

    /*--------------------------------------------------------------
    # Typography
    --------------------------------------------------------------*/
    body,
    button,
    input,
    select,
    optgroup,
    textarea {
        color: #000;
        font-family: 'Montserrat', sans-serif;
        font-size: 16px;
        font-size: 14px;
        line-height: 16px;
        padding-top: 120p;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        clear: both;
    }

    p {
        margin-bottom: 1.5em;
    }

    dfn,
    cite,
    em,
    i {
        font-style: italic;
    }

    blockquote {
        margin: 0 1.5em;
    }

    address {
        margin: 0 0 1.5em;
    }

    pre {
        background: #eee;
        font-family: "Courier 10 Pitch", Courier, monospace;
        font-size: 15px;
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.6em;
        max-width: 100%;
        overflow: auto;
        padding: 1.6em;
    }

    code,
    kbd,
    tt,
    var {
        font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
        font-size: 15px;
        font-size: 0.9375rem;
    }

    abbr,
    acronym {
        border-bottom: 1px dotted #666;
        cursor: help;
    }

    mark,
    ins {
        background: #fff9c0;
        text-decoration: none;
    }

    big {
        font-size: 125%;
    }

    /*--------------------------------------------------------------
    # Elements
    --------------------------------------------------------------*/
    html {
        box-sizing: border-box;
    }

    *,
    *:before,
    *:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
        box-sizing: inherit;
    }

    body {
        background: #fff; /* Fallback for when there is no custom background color defined. */
    }

    blockquote:before,
    blockquote:after,
    q:before,
    q:after {
        content: "";
    }

    blockquote,
    q {
        quotes: "" "";
    }

    hr {
        background-color: #ccc;
        border: 0;
        height: 1px;
        margin-bottom: 1.5em;
    }

    ul,
    ol {
        margin: 0;
        padding: 0;
    }

    ul {
        list-style: none;
    }

    ol {
        list-style: decimal;
    }

    li > ul,
    li > ol {
        margin-bottom: 0;
        margin-left: 1.5em;
    }

    dt {
        font-weight: bold;
    }

    dd {
        margin: 0 1.5em 1.5em;
    }

    img {
        height: auto; /* Make sure images are scaled correctly. */
        max-width: 100%; /* Adhere to container width. */
    }

    figure {
        margin: 1em 0; /* Extra wide images within figure tags don't overflow the content area. */
    }

    table {
        margin: 0 0 1.5em;
        width: 100%;
    }

    /*--------------------------------------------------------------
    # Forms
    --------------------------------------------------------------*/
    button,
    input[type="button"],
    input[type="reset"],
    input[type="submit"] {
        border: 1px solid;
        border-color: #ccc #ccc #bbb;
        border-radius: 3px;
        background: #e6e6e6;
        color: rgba(0, 0, 0, .8);
        font-size: 12px;
        font-size: 0.75rem;
        line-height: 1;
        padding: .6em 1em .4em;
    }

    button:hover,
    input[type="button"]:hover,
    input[type="reset"]:hover,
    input[type="submit"]:hover {
        border-color: #ccc #bbb #aaa;
    }

    button:focus,
    input[type="button"]:focus,
    input[type="reset"]:focus,
    input[type="submit"]:focus,
    button:active,
    input[type="button"]:active,
    input[type="reset"]:active,
    input[type="submit"]:active {
        border-color: #aaa #bbb #bbb;
    }

    input[type="text"],
    input[type="email"],
    input[type="url"],
    input[type="password"],
    input[type="search"],
    input[type="number"],
    input[type="tel"],
    input[type="range"],
    input[type="date"],
    input[type="month"],
    input[type="week"],
    input[type="time"],
    input[type="datetime"],
    input[type="datetime-local"],
    input[type="color"],
    textarea {
        color: #4F4B46;
        border: 0px solid #ccc;
        border-radius: 10px;
        padding: 3px;
        background: #E5E2DA;
        margin-bottom: 20px;
        width: 90%;
    }

    select {
        border: 1px solid #ccc;
    }

    input[type="text"]:focus,
    input[type="email"]:focus,
    input[type="url"]:focus,
    input[type="password"]:focus,
    input[type="search"]:focus,
    input[type="number"]:focus,
    input[type="tel"]:focus,
    input[type="range"]:focus,
    input[type="date"]:focus,
    input[type="month"]:focus,
    input[type="week"]:focus,
    input[type="time"]:focus,
    input[type="datetime"]:focus,
    input[type="datetime-local"]:focus,
    input[type="color"]:focus,
    textarea:focus {
        color: #111;
    }

    textarea {
        width: 100%;
        height: 150px;
        display: block;
        margin-bottom: 0px;
    }

    /*--------------------------------------------------------------
    # Navigation
    --------------------------------------------------------------*/
    /*--------------------------------------------------------------
    ## Links
    --------------------------------------------------------------*/
    a {
        color: #333;
        transition: ease all 0.3s;
        text-decoration: none;
    }

    a:visited {
        color: #333;
    }

    a:hover,
    a:focus,
    a:active {
        color: #666;
        opacity: 0.7;
    }

    a:focus {
        outline: thin dotted;
    }

    a:hover,
    a:active {
        outline: 0;
    }

    /*--------------------------------------------------------------
    ## Menus
    --------------------------------------------------------------*/
    .main-navigation {
        clear: both;
        display: block;
        float: none;
        width: 100%;
        position: absolute;
        left: 40%;
        font-size: 12px;
        z-index: 4;
        top: 65px;
    }

    .main-navigation ul {
        display: none;
        list-style: none;
        margin: 0;
        padding-left: 0;
    }

    .main-navigation li {
        float: left;
        position: relative;
    }

    .main-navigation a {
        display: block;
        text-decoration: none;
        position: relative;
    }

    .main-navigation ul ul {
        box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
        float: left;
        position: absolute;
        top: 100%;
        left: -999em;
        z-index: 99999;
    }

    .main-navigation ul ul ul {
        left: -999em;
        top: 0;
    }

    .main-navigation ul ul a {
        width: 200px;
    }

    .main-navigation ul ul li {

    }

    .main-navigation li:hover > a,
    .main-navigation li.focus > a {
    }

    .main-navigation ul ul :hover > a,
    .main-navigation ul ul .focus > a {
    }

    .main-navigation ul ul a:hover,
    .main-navigation ul ul a.focus {
    }

    .main-navigation ul li:hover > ul,
    .main-navigation ul li.focus > ul {
        left: auto;
    }

    .main-navigation ul ul li:hover > ul,
    .main-navigation ul ul li.focus > ul {
        left: 100%;
    }

    .main-navigation .current_page_item > a,
    .main-navigation .current-menu-item > a,
    .main-navigation .current_page_ancestor > a,
    .main-navigation .current-menu-ancestor > a {
    }

    /* Small menu. */
    .menu-toggle,
    .main-navigation.toggled ul {
        display: block;
        font-size: 20px;
        width: 50px;
        height: 50px;
        text-align: center;
        position: absolute;
        right: 10px;
        top: 20px;
    }

    @media screen and (min-width: 37.5em) {
        .menu-toggle {
            display: none;
        }
        .main-navigation ul {
            display: block;
        }
    }

    .site-main .comment-navigation,
    .site-main .posts-navigation,
    .site-main .post-navigation {
        margin: 0 0 1.5em;
        overflow: hidden;
    }

    .comment-navigation .nav-previous,
    .posts-navigation .nav-previous,
    .post-navigation .nav-previous {
        float: left;
        width: 50%;
    }

    .comment-navigation .nav-next,
    .posts-navigation .nav-next,
    .post-navigation .nav-next {
        float: right;
        text-align: right;
        width: 50%;
    }

    /*--------------------------------------------------------------
    # Accessibility
    --------------------------------------------------------------*/
    /* Text meant only for screen readers. */
    .screen-reader-text {
        clip: rect(1px, 1px, 1px, 1px);
        position: absolute !important;
        height: 1px;
        width: 1px;
        overflow: hidden;
        word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
    }

    .screen-reader-text:focus {
        background-color: #f1f1f1;
        border-radius: 3px;
        box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
        clip: auto !important;
        color: #21759b;
        display: block;
        font-size: 14px;
        font-size: 0.875rem;
        font-weight: bold;
        height: auto;
        left: 5px;
        line-height: normal;
        padding: 15px 23px 14px;
        text-decoration: none;
        top: 5px;
        width: auto;
        z-index: 100000; /* Above WP toolbar. */
    }

    /* Do not show the outline on the skip link target. */
    #content[tabindex="-1"]:focus {
        outline: 0;
    }

    /*--------------------------------------------------------------
    # Alignments
    --------------------------------------------------------------*/
    .alignleft {
        display: inline;
        float: left;
        margin-right: 1.5em;
    }

    .alignright {
        display: inline;
        float: right;
        margin-left: 1.5em;
    }

    .aligncenter {
        clear: both;
        display: block;
        margin-left: auto;
        margin-right: auto;
    }

    /*--------------------------------------------------------------
    # Clearings
    --------------------------------------------------------------*/
    .clear:before,
    .clear:after,
    .entry-content:before,
    .entry-content:after,
    .comment-content:before,
    .comment-content:after,
    .site-header:before,
    .site-header:after,
    .site-content:before,
    .site-content:after,
    .site-footer:before,
    .site-footer:after {
        content: "";
        display: table;
        table-layout: fixed;
    }

    .clear:after,
    .entry-content:after,
    .comment-content:after,
    .site-header:after,
    .site-content:after,
    .site-footer:after {
        clear: both;
    }
    /*--------------------------------------------------------------
    # Custom
    --------------------------------------------------------------*/

    header {
        width: 100%;
        height: 80px;
        position: fixed;
        z-index: 999999;
        background: #fff;
        text-align: center;
        padding-left: 20px;
        padding-right: 20px;
    }

    .container {
        padding: 20px;
        padding-top: 80px;
    }

    ul.menu-items {
        width: 100%;
        list-style: none;
        background: #fff;
        display: none;
        padding-top: 20px;
    }

    ul.menu-items li {
        font-size: 11px;
        text-transform: uppercase;
        color: #6D6E71;
        display: inline-block;
        vertical-align: top;
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 20px;
        letter-spacing: 2px;
        width: 100%;
        padding-bottom: 20px;
    }
    ul.menu-items li a {
        height: 18px;
        display:block;
    }
    ul.menu-items li a:after {
        content: "";
        width: 0%;
        height: 1px;
        transition: ease all .2s;
        display: block;
        margin: auto;
        background: #6D6E71;
    }
    ul.menu-items li a.active:after, ul.menu-items li a:hover:after, .main-navigation li.current-menu-item a:after, .main-navigation .mPS2id-highlight:after {
        content: "";
        background: #6D6E71;
        position: relative;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        margin: auto;
    }
    .logo {
        position: relative;
        top: 14px;
        left: 0;
        height: auto;
        width: 38px;
    }

    .menu {
        position: relative;
    }

    .logo img {
        width: auto;
    }
    ul.square {
        text-align: center;
    }
    .square li{
        position: relative;
        width: 80%;		/* desired width */
        background: #333;
        color: #fff;
        display: inline-block;
        margin: 0px;
        background-size: cover!important;
        text-align: center;
        margin-bottom: 20%;
    }
    .square li:before{
        content: "";
        display: block;
        padding-top: 100%; 	/* initial ratio of 1:1*/
    }
    .sqr-content {
        position: absolute;
        top: 0;
        padding: 0px;
        width: 100%;
        background: rgba(129, 186, 72, 0);
        height: 100%;
        transition:ease all 0.2s;
    }
    #masterplan br {
        display: none;
    }
    .sqr-content:hover {
        background: rgba(162, 162, 162, 0.5);
    }
    section#Video {
        min-height: 100px;
    }
    #map {
        width: 100%;
        height: 250px;
    }

    .content {
        padding-top: 20px;
        padding-bottom: 0px;
        width: 100%;
        margin: auto;
    }
    .ubic h2 {
    }

    .ubic .content {
        margin-bottom: 50px;
    }
    #masterplan .content {
        padding-top: 0px;
        margin-top: 0px;
        margin-bottom: 75px;
    }
    .content.title {
        margin-bottom: 0!Important;
    }
    .left {
        width: 100%;
        margin-right: -4px;
        display: inline-block;
        vertical-align: top;
        padding-bottom: 25px;
    }
    #masterplan .left {
        margin-bottom: 20px;
        padding: 0;
    }
    .rigth {
        width: 100%;
        margin-right: -4px;
        display: inline-block;
        vertical-align: top;
        text-align: right;
    }
    .left img {
        max-width: 310px;
    }
    .rigth img {
        max-width: 565px;
    }
    .container-inside {
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        padding: 50px 25px 100px 25px;
        max-width: 1325px;
        margin-left: auto;
        margin-right: auto;
    }

    .text-block {
        text-align: left;
        letter-spacing: 0.5px;
        line-height: 30px;
        padding-top: 0px;
        font-weight: 300;
    }
    h2 {
        font-family: 'Century Gothic';
        padding: 0;
        margin: 0;
        font-size: 24px;
        color: #6d6e71;
        font-weight: 500;
        letter-spacing: 5.4px;
        line-height: normal;
        margin-bottom: 10px;
    }
    .iframe .player .controls .logo {
        display: none!important;
    }
    .welcomehome {
        min-height: 100%;
        height: auto;
        width: 100%;
        margin-bottom: 50px;
    }
    ul.unslider-wrap li img {
        width: 100%;
        display: block;
    }
    .logofooter {
        width: 25%;
        margin: auto;
        padding-top: 50px;
        padding-bottom: 5%;
    }

    ul.legal {
        text-align: center;
        font-size: 11px;
        padding-bottom: 5%;
    }

    ul.legal li {
        min-width: 50px;
        display: inline-block;
        padding-left: 20px;
        padding-right: 20px;
        letter-spacing: 2px;
    }
    .square li a {
        display: block;
        width: 100%;
        height: 100%;
        color: #fff;
        font-size: 4vh;
        font-family: 'Century Gothic';
        line-height: 140%;
        padding-top: 35%;
        letter-spacing: 2px;
    }
    /* 
     _____   _           _         _                        _                  
    |_   _| | |         | |       | |                      | |                 
      | |   | |__   __ _| |_ ___  | |_ ___  _ __ ___   __ _| |_ ___   ___  ___ 
      | |   | '_ \ / _` | __/ _ \ | __/ _ \| '_ ` _ \ / _` | __/ _ \ / _ \/ __|
     _| |_  | | | | (_| | ||  __/ | || (_) | | | | | | (_| | || (_) |  __/\__ \
     \___/  |_| |_|\__,_|\__\___|  \__\___/|_| |_| |_|\__,_|\__\___/ \___||___/
    
    Oh nice, welcome to the stylesheet of dreams. 
    It has it all. Classes, ID's, comments...the whole lot:)
    Enjoy responsibly!
    @ihatetomatoes
    
    */
    /*
     * HTML5 Boilerplate
     *
     * What follows is the result of much research on cross-browser styling.
     * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
     * Kroc Camen, and the H5BP dev community and team.
     */

    /* ==========================================================================
       Base styles: opinionated defaults
       ========================================================================== */

    /*
     * Remove text-shadow in selection highlight: h5bp.com/i
     * These selection rule sets have to be separate.
     * Customize the background color to match your design.
     */

    ::-moz-selection {
        background: #b3d4fc;
        text-shadow: none;
    }

    ::selection {
        background: #b3d4fc;
        text-shadow: none;
    }

    /*
     * A better looking default horizontal rule
     */

    hr {
        display: block;
        height: 1px;
        border: 0;
        border-top: 1px solid #ccc;
        margin: 1em 0;
        padding: 0;
    }

    /*
     * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
     */

    img {
        vertical-align: middle;
    }

    /*
     * Remove default fieldset styles.
     */

    fieldset {
        border: 0;
        margin: 0;
        padding: 0;
    }

    /*
     * Allow only vertical resizing of textareas.
     */

    textarea {
        resize: vertical;
    }

    /* ==========================================================================
       Chrome Frame prompt
       ========================================================================== */

    .chromeframe {
        margin: 0.2em 0;
        background: #ccc;
        color: #000;
        padding: 0.2em 0;
    }

    /* ==========================================================================
       Parallax Scroll
       ========================================================================== */
    .no-js {
        padding-top: 106px;
    }
    h2 {
        margin-top: 0;
    }
    .equipo h2 {
        margin-top: 0;
        margin: 0;
        line-height: 20px;
    }
    .equipo p {
        margin-top: 0;
        margin: 0!important;
        padding:0;
        position: relative;
    }
    .equipo img {
        margin: 0px;
        padding:0;
        display: block;
        margin-top: -10px;
        margin-bottom: 50px;
    }
    .loading {
        background: url('../img/ico_loading.gif') no-repeat center center;
    }
    section {
        min-width: 100%;
        opacity: 1;
    }
    .loaded section,
    .no-js section {
        opacity: 1;
        -webkit-transition: opacity 300ms ease-out;
        -moz-transition: opacity 300ms ease-out;
        transition: opacity 300ms ease-out;
    }
    main {
        overflow-x: hidden;
    }
    #preload {
        width: 1px;
        height: 1px;
        overflow: hidden;
        position: absolute;
        top: 0;
        left: 0;
    }
    .bcg {
        background-position: center center;
        background-repeat: no-repeat;
        background-attachment: scroll;
        background-size: cover;
        height: 100%;
        width: 100%;
    }

    .hsContainer {
        width: 100%;
        height: 100%;
        overflow: hidden;
        position: relative;
    }

    .hsContent {
        max-width: 100%;
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
    }
    .hsContent h2  {
        color: #fff8de;
        background-color: rgba(0,0,0,0.5);
        padding: 10px 5px;
        font-size: 35px;
        line-height: 38px;
        margin-bottom: 12px;
    }
    .hsContent p {
        width: 400px;
        color: #b2b2b2;
    }
    .hsContent a {
        color: #b2b2b2;
        text-decoration: underline;
    }

    /* Slide 1 */
    #slide-1 .bcg {background-image:url('img/separadormaster.jpg')}
    #slide-1 .hsContent {
        bottom: 65px;
        top: auto;
    }

    /* ==========================================================================
       Helper classes
       ========================================================================== */

    /*
     * Image replacement
     */

    .ir {
        background-color: transparent;
        border: 0;
        overflow: hidden;
        /* IE 6/7 fallback */
        *text-indent: -9999px;
    }

    .ir:before {
        content: "";
        display: block;
        width: 0;
        height: 150%;
    }

    /*
     * Hide from both screenreaders and browsers: h5bp.com/u
     */

    .hidden {
        display: none !important;
        visibility: hidden;
    }

    /*
     * Hide only visually, but have it available for screenreaders: h5bp.com/v
     */

    .visuallyhidden {
        border: 0;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
    }

    /*
     * Extends the .visuallyhidden class to allow the element to be focusable
     * when navigated to via the keyboard: h5bp.com/p
     */

    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

    /*
     * Hide visually and from screenreaders, but maintain layout
     */

    .invisible {
        visibility: hidden;
    }

    /*
     * Clearfix: contain floats
     *
     * For modern browsers
     * 1. The space content is one way to avoid an Opera bug when the
     *    `contenteditable` attribute is included anywhere else in the document.
     *    Otherwise it causes space to appear at the top and bottom of elements
     *    that receive the `clearfix` class.
     * 2. The use of `table` rather than `block` is only necessary if using
     *    `:before` to contain the top-margins of child elements.
     */

    .clearfix:before,
    .clearfix:after {
        content: " "; /* 1 */
        display: table; /* 2 */
    }

    .clearfix:after {
        clear: both;
    }

    /*
     * For IE 6/7 only
     * Include this rule to trigger hasLayout and contain floats.
     */

    .clearfix {
        *zoom: 1;
    }


    section#slide-1 {
        text-align: center;
        height: 220px;
    }
    section#Ubicacion {
        padding-top: 0px;
    }
    #Masterplan {
        height: 430px;
    }
    #Masterplan {
        padding-bottom: 50px;
    }
    .master {
        background-image: url(img/masterplan1.jpg);
        background-repeat: no-repeat;
        background-position: center bottom;
        background-size: contain;
        height: 115%;
    }
    #slide-1 .hsContent img {
        width: 85%;
    }
    footer .container {
        padding-top: 0px;
    }
    .button {
        padding: 10px;
        margin-top: 50px;
    }
    .hamburg {
        display: block;
        opacity: 1;
        position: absolute;
        top: 25px;
        right: 0;
        width: 30px;
        text-align: right;
    }
    .third {
        width: 100%;
        margin-right: -4px;
        display: inline-block;
        vertical-align: top;
    }
    .content.pad2 {
        padding-bottom: 50px;
        padding-top: 0px!important;
    }
    h2 br {
        display: none;
    }
    #masterplan .rigth, #masterplan .left {
        text-align: center;
    }
    h1.entry-title {
        font-family: 'Century Gothic';
        padding: 0;
        margin: 0;
        font-size: 24px;
        color: #6d6e71;
        letter-spacing: 5.4px;
        line-height: 20px;
        margin-bottom: 100px;
        font-weight: 700;
    }
}
