@charset "UTF-8";
.subheading {
  font-family: "Mukta", sans-serif;
  color: #537f91;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 3px;
}

.subheading-vertical {
  font-family: "Mukta", sans-serif;
  color: #537f91;
  font-size: 0.9rem;
  text-transform: uppercase;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  letter-spacing: 3px;
  position: absolute;
  top: 45%;
  left: 2rem;
}

.bg-blue-200 {
  background-color: #b4c9d0;
}

.bg-blue-900 {
  background-color: #074862;
}

.padding-top-60 {
  padding-top: 60px;
}

.container {
  margin: auto;
  padding: 4vh 6vw;
}

.grid-amenidades {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 3fr;
  grid-template-columns: 1fr 3fr;
  max-width: 1200px;
  margin: auto;
  gap: 1rem;
}

.grid-contacto {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  -ms-grid-rows: 1fr;
  grid-template-rows: 1fr;
  gap: 14px;
}

.grid-gallery {
  position: relative;
  display: -ms-grid;
  display: grid;
  gap: 14px;
  /* [1] Add some gap between rows and columns */
  -ms-grid-columns: (minmax(300px, 1fr)) [auto-fit];
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  /* [2] Make columns adjust according to the available viewport */
  grid-auto-rows: 250px;
  /* [3] Set the height for implicitly-created row track */
  width: 100%;
  height: 800px;
}

.item {
  background-color: gray;
  background-image: url("../../img/gallery/LDC_Photo - 9 (1).jpg");
  background-position: center;
  background-size: cover;
}

.grid-desarrollo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  max-width: 1000px;
  margin: auto;
}

@media (max-width: 768px) {
  .grid-desarrollo {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .grid-amenidades {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .subheading-vertical {
    display: none;
  }
}

@media (max-width: 768px) {
  .grid-contacto {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}
.glide {
  margin: 0 auto !important;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
  /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

.navbar {
  background-color: transparent;
  color: #fcfcfc;
  padding: 0.5rem 2vw;
  position: fixed;
  width: 100%;
  height: 62px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  top: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 100;
}

.navbar .logo {
  display: inline-block;
  width: 100px;
}

.navbar-scrolled {
  background-color: #ebeedf;
  padding: 0vw 4vw;
  -webkit-transition: all 300ms;
  transition: all 300ms;
}

.navbar-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar-flex li {
  color: #074862;
  display: inline-block;
  margin: 0 1rem 0 0;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 100ms;
  transition: all 100ms;
  cursor: pointer;
}

.navbar-flex li:hover {
  border-bottom: 2px solid #074862;
  -webkit-transition: all 100ms;
  transition: all 100ms;
}

.navbar-flex li:hover a {
  color: white;
}

.navbar-flex li:nth-last-child(1) {
  display: inline-block;
  margin: 0 0 0 0;
}

.navbar-toggle {
  display: none;
}

.navbar-toggle img {
  width: 28px;
}

.navbar-icon {
  display: inline-block;
  vertical-align: middle;
}

.navbar .active {
  display: block;
}

@media screen and (max-width: 768px) {
  .navbar {
    background-color: #f0f0f1;
  }
  .navbar .logo {
    height: 32px;
    padding: 1vh 0;
  }
  .navbar .main-nav {
    width: 100%;
    height: 90%;
    position: fixed;
    top: 48px;
    left: 0;
    margin: auto;
    padding: 5vh 0;
    background-color: #f0f0f1;
    overflow: scroll;
  }
  .navbar-flex {
    display: block;
  }
  .navbar-flex ul {
    display: none;
  }
  .navbar-flex ul li {
    padding: 4vh 0;
    font-size: 1.3rem;
    display: block;
    text-align: center;
    margin: auto;
  }
  .navbar-flex ul li:nth-last-child(1) {
    display: block;
    margin: auto;
  }
  .navbar-toggle {
    display: block;
    position: absolute;
    right: 20px;
    top: 14px;
    cursor: pointer;
    color: #074862;
    font-size: 2rem;
  }
}

.active-link {
}

.active-link a {
  color: white;
}

.carousel {
  position: relative;
  display: block;
  max-width: 1000px;
  margin: 2rem auto;
}

.carousel img {
  width: 100%;
  height: 100%;
}

.arrow {
  font-size: 51px;
  font-weight: bold;
  border-radius: 50%;
  width: 50px;
  height: 65px;
  color: white;
  text-align: center;
  display: inline-block;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.arrow-left {
  position: absolute;
  left: 0;
  top: 50%;
  margin-left: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.arrow-right {
  position: absolute;
  right: 0;
  top: 50%;
  margin-right: 5px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.arrow:hover {
  color: #121212;
  background: white;
  cursor: pointer;
}

.indicators {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  bottom: 0;
  margin-bottom: 10px;
}

.indicators span {
  display: inline-block;
  border-radius: 50%;
  width: 0.8rem;
  height: 0.8rem;
  background: white;
}

.indicators span.indicator-active {
  background: red;
}

.display-none  {
  display: none;
}

input {
  color: #231f1f;
  font-family: "Mukta", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  height: 40px;
  border-radius: 0.5rem;
  border: none;
  margin: 0.5rem 0 1rem 0;
  padding: 0 1rem;
}

textarea {
  color: #231f1f;
  font-family: "Mukta", sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  resize: none;
  width: 100%;
  height: 100px;
  border-radius: 0.5rem;
  border: none;
  margin-bottom: 1rem;
  padding: 1rem;
}

label {
  font-family: "Mukta", sans-serif;
}

.btn {
  color: #f0f0f1;
  font-family: "Mukta", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #074862;
  padding: 14px 2rem;
  border: none;
  border-radius: 3rem;
  cursor: pointer;
}

.btn:hover {
  border-radius: 3rem;
  background-color: #215b72;
}

.btn-secondary {
  display: inline-block;
  color: #074862;
  background-color: transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-radius: 3rem;
  color: #215b72;
  background-color: rgba(35, 31, 31, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn-secondary img {
  width: 18px;
  margin-right: 0.5rem;
  vertical-align: middle;
}

.whatsapp-button {
  cursor: pointer;
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 99;
  background-color: #25d366;
  border-radius: 50px;
  color: #ffffff;
  text-decoration: none;
  width: 50px;
  height: 50px;
  font-size: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-animation: effect 5s infinite ease-in;
  animation: effect 5s infinite ease-in;
}

.whatsapp-button:hover {
  background-color: #21b457;
}

#ws-mobile {
  display: none;
}

#ws-web {
  display: none;
}

@-webkit-keyframes effect {
  20%,
  100% {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  0%,
  10% {
    width: 65px;
    height: 65px;
    font-size: 35px;
  }
  5% {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

@keyframes effect {
  20%,
  100% {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
  0%,
  10% {
    width: 65px;
    height: 65px;
    font-size: 35px;
  }
  5% {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }
}

@media screen and (min-width: 300px) {
  #ws-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  #ws-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 992px) {
  #ws-mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1200px) {
  #ws-web {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 1600px) {
  #ws-web {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

#fade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: 0.8;
  filter: alpha(opacity=80);
}

#light {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  max-width: 80%;
  max-height: 80%;
  border: 2px solid #fff;
  background: #fff;
  z-index: 10000;
  overflow: visible;
}

#boxclose {
  float: right;
  cursor: pointer;
  color: #fff;
  border: 1px solid #aeaeae;
  border-radius: 3px;
  background: #222222;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 1000;
  opacity: 0.9;
}

.boxclose:before {
  content: "×";
}

#fade:hover ~ #boxclose {
  display: none;
}

.hero {
  width: 100%;
  background-image: url("./../img/hero.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
}

.hero::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #074862;
  opacity: 0.15;
  z-index: 1;
}

.hero-content {
  width: 100%;
  padding: 30vh 0 34vh 0;
  display: inline-block;
  text-align: center;
  z-index: 200;
}

.hero-content img {
  display: inline-block;
  width: 48px;
}

.hero-content h1 {
  color: white;
}

.hero-content .btn {
  color: white;
}

.hero-content .btn-secondary {
  background-color: rgba(252, 252, 252, 0.1);
}

.hero-content .btn-secondary img {
  width: 18px;
}

.hero-content .btn-secondary:hover {
  background-color: rgba(252, 252, 252, 0.25);
}

.hero > * {
  z-index: 10;
  position: relative;
}

@media screen and (max-width: 768px) {
  .hero-content {
    padding: 26vh 0;
  }
}

.desarrollo {
  padding: 1rem 0 0 0;
  background-color: #f0f0f1;
  position: relative;
}

.desarrollo p {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.amenidades {
  background-color: #ebeedf;
  position: relative;
}

.amenidades h2 {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
}

.amenidades ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style-type: none;
}

.amenidades ul li {
  color: #074862;
  font-size: 1.3rem;
  font-weight: 600;
  min-width: 230px;
  padding: 1rem 2rem 1rem 0;
}

.amenidades ul li img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.5rem;
}

@media (max-width: 768px) {
  .amenidades h2 {
    text-align: center;
  }
  .amenidades ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.galeria {
  background-color: #f0f0f1;
}

.galeria h2 {
  text-align: center;
}

.wrapper {
  position: relative;
}

.img-gallery {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 768px) {
  .img-gallery img {
    padding: 0px !important;
  }
}
.img-gallery img {
  object-fit: cover;
  padding: 0px 25px 0px 15px;
}

.demo-gallery {
  max-width: 1300px;
  margin: auto;
}

.demo-gallery > ul {
  margin-bottom: 0;
  padding-left: 15px;
}

.demo-gallery > ul > li {
  margin-bottom: 15px;
  width: 300px;
  height: 170px;
  display: inline-block;
  margin-right: 1rem;
  list-style: outside none none;
}

.demo-gallery > ul > li a {
  display: block;
  overflow: hidden;
  position: relative;
  float: left;
  width: 100%;
  height: 100%;
}

.demo-gallery > ul > li a > img {
  -webkit-transition: -webkit-transform 0.15s ease 0s;
  transition: -webkit-transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s;
  transition: transform 0.15s ease 0s, -webkit-transform 0.15s ease 0s;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery > ul > li a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
}

.demo-gallery > ul > li a:hover .demo-gallery-poster > img {
  opacity: 1;
}

.demo-gallery > ul > li a .demo-gallery-poster {
  background-color: rgba(7, 72, 98, 0.1);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery > ul > li a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -1rem;
  margin-top: -1rem;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery > ul > li a:hover .demo-gallery-poster {
  background-color: rgba(7, 72, 98, 0.5);
}

.demo-gallery .justified-gallery > a > img {
  -webkit-transition: -webkit-transform 0.2s ease 0s;
  transition: -webkit-transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s;
  transition: transform 0.2s ease 0s, -webkit-transform 0.2s ease 0s;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  height: 100%;
  width: 100%;
}

.demo-gallery .justified-gallery > a:hover > img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1);
  -webkit-transform: rotate(15deg);
  transform: rotate(15deg);
}

.demo-gallery .justified-gallery > a:hover .demo-gallery-poster > img {
  opacity: 1;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: background-color 0.15s ease 0s;
  transition: background-color 0.15s ease 0s;
}

.demo-gallery .justified-gallery > a .demo-gallery-poster > img {
  left: 50%;
  margin-left: -10px;
  margin-top: -10px;
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}

.demo-gallery .video .demo-gallery-poster img {
  margin-left: -24px;
  margin-top: -24px;
  opacity: 0.8;
}

@media (max-width: 768px) {
  #lightgallery {
    text-align: center;
  }
}

.view-360 {
  height: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: 550px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.view-360-container {
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
}

.view-360-container.shown {
  opacity: 1;
}

.ubicacion {
  background-color: #ebeedf;
  position: relative;
}

.ubicacion .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  margin: auto;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.ubicacion .flex .text {
  vertical-align: middle;
}

#juriquilla {
  line-height: 24px;
  letter-spacing: 1px;
  color: #074862;
  font-weight: 600;
  font-family: "Mukta", sans-serif;
}

#qro {
  color: #074862;
  font-size: 1.2rem;
  display: block;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  .ubicacion .flex {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .ubicacion .flex .map {
    width: 100%;
  }
}

.contacto {
  position: relative;
}

.contacto-text {
  padding: 4vh 4vw;
}

.contacto-text h2 {
  color: #f0f0f1;
}

.contacto-form {
  padding: 4vh 4vw;
}

.contacto-datos {
  padding: 2rem 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.contacto-datos-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.contacto-datos-item img {
  padding: 0 1rem;
  display: inline-block;
  vertical-align: middle;
}

.contacto-datos-item p {
  font-weight: normal;
  color: #fcfcfc;
}

@media (max-width: 768px) {
  .contacto-text h2 {
    text-align: center;
  }
  .contacto-datos {
    padding: 0;
  }
}

footer {
  background-color: #f0f0f1;
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row;
  flex-flow: row;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.footer-flex li {
  display: inline-block;
  padding-right: 2rem;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .footer-flex .main-nav {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}

body h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3.4rem;
  font-weight: 700;
}

body h2 {
  color: #074862;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  font-weight: 700;
}

h2 {
  text-align: center;
}

body a {
  font-family: "Mukta", sans-serif;
  color: #074862;
  text-decoration: none;
}

body p {
  font-size: 1.1rem;
  color: #074862;
  font-family: "Mukta", sans-serif;
  line-height: 23px;
}

body li {
  list-style-type: none;
}

body section {
  margin-bottom: 12px;
}

.email-success {
  margin: 4rem 0;
  max-width: 800px;
  background-color: white;
  margin: auto;
  text-align: center;
  padding: 10vh 10vw;
}

.success-main {
  background-color: #e6ecef;
  padding: 6rem 0;
}
/*# sourceMappingURL=styles.css.map */

#prototipos {
  width: 100%;
  height: 100%;
}
.prototipos_grid .card {
  position: relative;
  width: 100%;
  height: 100%;
}
.prototipos_grid .card .fondo {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.prototipos_grid .card .contenedor_text {
  background-color: #e6ecef9d;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.prototipos_grid .card .contenedor_text .icono_proto {
  background-image: url(/img/logo-icono-blue.svg);
  background-repeat: no-repeat;
  width: 35px;
  height: 50px;
  margin-bottom: 5px;
}
.prototipos_grid .card .contenedor_text:hover {
  background-color: #0748628f;
  transition: all 0.5s ease;
}
.prototipos_grid .card .contenedor_text:hover h3 {
  color: white;
}
.prototipos_grid .card .contenedor_text:hover .icono_proto {
  background-image: url(/img/logo-icono.svg);
}
.prototipos_grid .card .contenedor_text h3 {
  color: #074862;
  margin-bottom: 5px;
}
.prototipos_grid .card .contenedor_text a {
  background-color: white;
  font-size: 15px;
  padding: 10px 50px 8px 50px;
  border-radius: 20px;
  color: #074862;
}
.prototipos_grid .card:nth-child(3) .contenedor_text a {
  padding: 10px 30px 8px 30px;
}
#gallery {
  width: 100%;
  height: 90%;
  background-color: transparent;
}
#gallery .modal-gallery {
  width: 100%;
  height: 100%;
}
#gallery .modal-gallery .swiper {
  width: 100%;
  height: 100%;
}
#gallery .modal-gallery .swiper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#master-plan {
  width: 100%;
  height: 90%;
  background-color: transparent;
}
#master-plan .modal-gallery {
  width: 100%;
  height: 100%;
}
#master-plan img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.fancybox-close-small {
  color: white !important;
  right: 5% !important;
}
@media (min-width: 1600px) {
  .prototipos_grid {
    grid-template-rows: 700px;
  }
  .prototipos_grid .card .contenedor_text h3 {
    font-size: 25px;
  }
  .prototipos_grid .card .contenedor_text .icono_proto {
    width: 47px;
    height: 65px;
    background-size: cover;
  }
}
@media (max-width: 550px) {
  .prototipos_grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px;
    column-gap: 0px;
  }
  .prototipos_grid .card:nth-child(1) {
    grid-column: 1/4;
  }
  .prototipos_grid .card .contenedor_text a {
    padding: 8px 30px 7px 30px;
  }
  .prototipos_grid .card:nth-child(3) .contenedor_text a {
    padding: 8px 20px 7px 20px;
  }
  #gallery {
    width: 100%;
    height: 50%;
  }
  .fancybox-content {
    padding: 40px 0 0 !important;
  }
  .swiper-button-prev,
  .swiper-button-next {
    display: none !important;
  }
}
