@font-face {
  font-family: "Texta";
  font-weight: 300;
  src: url("/assets/fonts/texta-book.otf") format("opentype");
}
@font-face {
  font-family: "Texta";
  font-weight: 400;
  src: url("/assets/fonts/texta-regular.otf") format("opentype");
}
@font-face {
  font-family: "Texta";
  font-weight: 500;
  src: url("/assets/fonts/texta-medium.otf") format("opentype");
}
@font-face {
  font-family: "Texta";
  font-weight: 600;
  src: url("/assets/fonts/texta-alt-bold.otf") format("opentype");
}
@font-face {
  font-family: "La Luxes Script";
  font-weight: 400;
  src: url("/assets/fonts/la-luxes-script.ttf") format("truetype");
}
@font-face {
  font-family: "La Luxes Serif";
  font-weight: 400;
  src: url("/assets/fonts/la-luxes-serif.ttf") format("truetype");
}
html, body {
  padding: 0;
  margin: 0;
  font-family: "Texta", sans-serif;
  font-weight: 300;
  font-size: 20px;
  color: #373737;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}
html.--no-scroll, body.--no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, p {
  margin: 0;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

h1 {
  font-family: "La Luxes Serif", serif;
  font-size: 70px;
  line-height: 80px;
  text-transform: uppercase;
}

h2 {
  font-family: "La Luxes Script", serif;
  font-size: 120px;
  line-height: 80px;
  font-weight: lighter;
}

h3, h4 {
  font-family: "Texta", sans-serif;
  font-weight: 400;
  font-size: 60px;
  line-height: 80px;
}

h4 {
  font-size: 50px;
  line-height: 50px;
}

p {
  font-family: "Texta", sans-serif;
  font-weight: 400;
  font-size: 26px;
  line-height: 35px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

section {
  max-width: 100%;
}

a, button {
  border: none;
  background: transparent;
  -webkit-appearance: none;
  text-decoration: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
}
a:focus, a:active, button:focus, button:active {
  outline: none;
}

input, textarea, select {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
}
input:focus, input:active, textarea:focus, textarea:active, select:focus, select:active {
  outline: none;
}

@media screen and (max-width: 1080px) {
  h1 {
    font-size: 22px;
    line-height: 25.6px;
  }

  h2 {
    font-size: 30px;
    line-height: 25.6px;
  }

  h3, h4 {
    font-size: 25px;
    line-height: 21.8px;
  }

  h4 {
    font-size: 25px;
    line-height: 24px;
  }

  p {
    font-size: 15px;
    line-height: 15px;
  }
}
.l-main-wrapper {
  width: 90vw;
  max-width: 1080px;
  margin: 0 auto;
}

.slick-slider .slick-list {
  height: 100%;
}
.slick-slider .slick-list .slick-track {
  height: 100%;
}
.slick-slider .slick-list .slick-track .slick-slide {
  height: 100%;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: all 0.2s ease;
}
nav.--scrolled {
  background-color: rgba(0, 0, 0, 0.4);
}
nav.--scrolled .l-main-wrapper {
  height: 80px;
}
nav.--scrolled .l-main-wrapper .nav__logo {
  height: 60px;
}
nav .l-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 128px;
  transition: all 0.2s ease;
}
nav .l-main-wrapper .mobile-menu {
  display: none;
}
nav .l-main-wrapper ul {
  display: flex;
  align-items: center;
}
nav .l-main-wrapper ul.mobile-menu__wrapper {
  display: none;
}
nav .l-main-wrapper ul:not(.mobile-menu__wrapper) li {
  color: #FFF;
}
nav .l-main-wrapper ul:not(.mobile-menu__wrapper) li:not(:last-of-type) {
  margin-right: 92px;
}
nav .l-main-wrapper .nav__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 88px;
}
nav .l-main-wrapper .nav__logo img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
}
nav .l-main-wrapper .nav__logo img:nth-of-type(2) {
  opacity: 0;
}

@media screen and (max-width: 1080px) {
  nav {
    transition: all 0.2s ease;
  }
  nav.--scrolled .l-main-wrapper {
    height: 45px;
  }
  nav.--scrolled .l-main-wrapper .nav-logo {
    height: 35px;
  }
  nav.--active {
    background-color: #FFF;
  }
  nav.--active .l-main-wrapper .mobile-menu span {
    left: 50%;
  }
  nav.--active .l-main-wrapper .mobile-menu span:nth-of-type(1), nav.--active .l-main-wrapper .mobile-menu span:nth-of-type(2) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  nav.--active .l-main-wrapper .mobile-menu span:nth-of-type(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 100%;
  }
  nav.--active .l-main-wrapper ul.mobile-menu__wrapper {
    transform: none;
    opacity: 1;
  }
  nav.--active .l-main-wrapper .nav__logo img:nth-of-type(1) {
    opacity: 0;
  }
  nav.--active .l-main-wrapper .nav__logo img:nth-of-type(2) {
    opacity: 1;
  }
  nav .l-main-wrapper {
    height: 45px;
  }
  nav .l-main-wrapper ul:not(.mobile-menu__wrapper) {
    display: none;
  }
  nav .l-main-wrapper ul.mobile-menu__wrapper {
    position: absolute;
    top: 45px;
    left: 0;
    transform: translateX(-100%);
    display: flex;
    flex-flow: column;
    width: 100vw;
    transition: all 0.2s ease;
    z-index: -1;
    opacity: 0;
  }
  nav .l-main-wrapper ul.mobile-menu__wrapper li {
    width: 100%;
    text-transform: uppercase;
  }
  nav .l-main-wrapper ul.mobile-menu__wrapper li:not(:last-of-type) {
    border-bottom: 1px solid #FFF;
  }
  nav .l-main-wrapper ul.mobile-menu__wrapper li a {
    display: block;
    width: 100%;
    padding: 30px 0;
    text-align: center;
    box-sizing: border-box;
    background-color: #5a8080;
    color: #FFF;
    font-weight: 600;
    font-size: 20px;
  }
  nav .l-main-wrapper .mobile-menu {
    position: relative;
    display: block;
    width: 12px;
    height: 12px;
  }
  nav .l-main-wrapper .mobile-menu span {
    position: absolute;
    left: 0;
    width: 12px;
    height: 2px;
    background-color: #e7ae3e;
    transition: all 0.2s ease;
  }
  nav .l-main-wrapper .mobile-menu span:nth-of-type(1) {
    top: 0;
  }
  nav .l-main-wrapper .mobile-menu span:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
  }
  nav .l-main-wrapper .mobile-menu span:nth-of-type(3) {
    bottom: 0;
    width: 9px;
  }
  nav .l-main-wrapper .nav__logo {
    height: 35px;
  }
}
.button, .button--white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 33px;
  padding: 0 26px;
  box-sizing: border-box;
  border-radius: 33px;
  font-family: "Texta", sans-serif;
  font-weight: 300;
  font-size: 20px;
  border: 2px solid #5a8080;
  color: #5a8080;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.button:disabled, .button--white:disabled, .button.--disabled, .--disabled.button--white {
  opacity: 0.5;
  pointer-events: none;
}
.button:hover, .button--white:hover {
  background-color: #5a8080;
  color: #e7ae3e;
}
.button--white {
  border: 2px solid #f6f4f0;
  color: #f6f4f0;
  background-color: transparent;
}
.button--white:hover {
  background-color: #FFF;
  color: #e7ae3e;
}

label {
  display: block;
  width: 100%;
  color: #626262;
  font-family: "Texta", sans-serif;
  font-size: 20px;
  font-weight: 300;
  line-height: 35px;
  margin-bottom: 10px;
}

input, select {
  height: 46px;
}

input, textarea, select {
  display: block;
  width: 100%;
  border-radius: 2px;
  border: 1px solid #cccccc;
  background-color: #fafafa;
  margin-bottom: 35px;
  padding: 0 18px;
  box-sizing: border-box;
  font-size: 20px;
  font-family: "Texta", sans-serif;
  font-weight: 300;
  line-height: 35px;
  resize: none;
}
input:focus, input:active, textarea:focus, textarea:active, select:focus, select:active {
  border-color: #e7ae3e;
}
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #afafaf;
}
input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #afafaf;
}
input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #afafaf;
}
input:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
  color: #afafaf;
}

select {
  background-image: url("/assets/images/ic_arrow-down_black.svg");
  background-repeat: no-repeat;
  background-size: auto 8px;
  background-position: 95% center;
}

input.datepicker {
  background-image: url("/assets/images/ic_calendar_black.svg");
  background-repeat: no-repeat;
  background-size: auto 20px;
  background-position: 95% center;
}

#ui-datepicker-div {
  padding: 0;
  border: 0;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.27);
}
#ui-datepicker-div .ui-datepicker-header {
  height: 50px;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #d0d0d0;
  border-radius: 0;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Texta", sans-serif;
  font-weight: 300;
  font-size: 23px;
  line-height: 35px;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev,
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 2px;
  border: 1px solid #d0d0d0;
  background-image: url("/assets/images/ic_arrow-left_black.svg");
  background-size: auto 8px;
  background-repeat: no-repeat;
  background-position: center;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-prev {
  left: 5%;
}
#ui-datepicker-div .ui-datepicker-header .ui-datepicker-next {
  right: 5%;
  transform: translateY(-50%) rotate(180deg);
}
#ui-datepicker-div .ui-datepicker-calendar {
  font-family: "Texta", sans-serif;
  font-weight: 500;
  font-size: 12px;
  font-weight: 500;
}
#ui-datepicker-div .ui-datepicker-calendar thead tr th {
  color: #5a8080;
  line-height: 20px;
}
#ui-datepicker-div .ui-datepicker-calendar tbody tr td a {
  position: relative;
  text-align: center;
  line-height: 30px;
  background-color: transparent;
  border: 0;
}
#ui-datepicker-div .ui-datepicker-calendar tbody tr td a.ui-state-active:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  z-index: -1;
  background-color: #5a8080;
  border-radius: 50%;
}

#modals {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(65, 65, 65, 0.5);
  z-index: 11;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#modals.--visible {
  opacity: 1;
  pointer-events: auto;
}
#modals .modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #FFF;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.27);
  border-radius: 2px;
  padding: 60px 70px 70px 70px;
  box-sizing: border-box;
  max-width: 543px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}
#modals .modal-wrapper.--visible {
  opacity: 1;
  pointer-events: auto;
}
#modals .modal-wrapper h3, #modals .modal-wrapper h4 {
  font-size: 27px;
  font-weight: 500;
  line-height: 26px;
  color: #5a8080;
  margin: 20px 0 13px 0;
}
#modals .modal-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}
#modals .modal-wrapper .close-modal {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  background-color: #e7ae3e;
}
#modals .modal-wrapper .close-modal img {
  pointer-events: none;
}

section#inicio .landing__hero__carousel-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-controls {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 3;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-controls .l-main-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-controls .l-main-wrapper button {
  pointer-events: auto;
  height: 23px;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-controls .l-main-wrapper button.next {
  transform: rotate(180deg);
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-controls .l-main-wrapper button img {
  height: 100%;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 165px;
  z-index: 3;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-dots .slick-dots {
  display: flex;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-dots .slick-dots li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #626262;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-dots .slick-dots li:not(:last-of-type) {
  margin-right: 26px;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-dots .slick-dots li.slick-active {
  background-color: #FFF;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-dots .slick-dots li button {
  display: none;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles .circles-wrapper {
  position: absolute;
  width: 500px;
  height: 500px;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles .circles-wrapper:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles .circles-wrapper:nth-of-type(2) {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles .circles-wrapper span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  border: 1px solid #FFF;
  border-radius: 50%;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles .circles-wrapper span:nth-of-type(1) {
  width: 100%;
  height: 100%;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles .circles-wrapper span:nth-of-type(2) {
  width: 75%;
  height: 75%;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles .circles-wrapper span:nth-of-type(3) {
  width: 50%;
  height: 50%;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles .circles-wrapper span:nth-of-type(4) {
  width: 25%;
  height: 25%;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel {
  height: 100%;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel .slide {
  position: relative;
  display: flex;
  align-items: center;
  background-size: cover;
  text-align: center;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel .slide .l-main-wrapper {
  position: relative;
  z-index: 2;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel .slide .l-main-wrapper h1 {
  color: #f6f4f0;
  margin-bottom: -25px;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel .slide .l-main-wrapper h2 {
  color: #e7ae3e;
  margin-top: -25px;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel .slide .l-main-wrapper .button--white {
  margin-top: 37px;
}
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel .slide .landing__hero__carousel-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.48) 0%, rgba(0, 0, 0, 0) 39%, #000000 100%);
  pointer-events: none;
}

@media screen and (max-width: 1080px) {
  section#inicio .landing__hero__carousel-wrapper {
    height: 50vh;
  }
  section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-dots,
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-controls,
section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel-circles {
    display: none;
  }
  section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel .slide .l-main-wrapper h1, section#inicio .landing__hero__carousel-wrapper .landing__hero__carousel .slide .l-main-wrapper h2 {
    margin: 0;
  }
}
section#galeria .l-main-wrapper {
  text-align: center;
}
section#galeria .l-main-wrapper:not(.--instagram) {
  position: relative;
  padding: 185px 0 90px 0;
}
section#galeria .l-main-wrapper:not(.--instagram) .seal {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
}
section#galeria .l-main-wrapper:not(.--instagram) h3, section#galeria .l-main-wrapper:not(.--instagram) h4 {
  margin-bottom: 17px;
}
section#galeria .l-main-wrapper.--instagram {
  padding: 100px 0;
}
section#galeria .l-main-wrapper.--instagram h4 {
  margin-bottom: 17px;
}
section#galeria .landing__gallery-wrapper {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: [c1] 1fr [c2] 1fr [c3] 1fr [c4] 1fr [c5] 1fr [c6] 1fr [c7];
  grid-template-rows: [r1] calc(100vw / 6) [r2] calc(100vw / 6) [r3] calc(100vw / 6) [r4] calc(100vw / 6) [r5];
}
section#galeria .landing__gallery-wrapper .image {
  background-size: cover;
  background-position: center;
  background-color: #626262;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(1) {
  grid-column: c1/span 2;
  grid-row: r1/span 2;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(2) {
  grid-column: c3/span 1;
  grid-row: r1/span 2;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(3) {
  grid-column: c4/span 1;
  grid-row: r1/span 1;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(4) {
  grid-column: c4/span 1;
  grid-row: r2/span 1;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(5) {
  grid-column: c5/span 2;
  grid-row: r1/span 2;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(6) {
  grid-column: c1/span 2;
  grid-row: r3/span 1;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(7) {
  grid-column: c1/span 1;
  grid-row: r4/span 1;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(8) {
  grid-column: c2/span 1;
  grid-row: r4/span 1;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(9) {
  grid-column: c3/span 2;
  grid-row: r3/span 2;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(10) {
  grid-column: c5/span 2;
  grid-row: r3/span 1;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(11) {
  grid-column: c5/span 1;
  grid-row: r4/span 1;
}
section#galeria .landing__gallery-wrapper .image:nth-of-type(12) {
  grid-column: c6/span 1;
  grid-row: r4/span 1;
}
section#galeria .landing__gallery-wrapper .image .details {
  position: relative;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.48);
  color: #FFF;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 1;
  padding: 20px;
  box-sizing: border-box;
}
section#galeria .landing__gallery-wrapper .image .details:hover {
  opacity: 1;
  backdrop-filter: blur(4px);
}
section#galeria .landing__gallery-wrapper .image .details p {
  font-size: 18px;
  line-height: 20px;
  text-align: center;
}
section#galeria .landing__gallery-wrapper .image .details .button--white {
  margin-top: 20px;
}

@media screen and (max-width: 1080px) {
  section#galeria .l-main-wrapper:not(.--instagram) {
    padding: 75px 0 38px 0;
  }
  section#galeria .l-main-wrapper:not(.--instagram) .seal {
    width: 65px;
  }
  section#galeria .l-main-wrapper.--instagram {
    padding: 26px 0 34px 0;
  }
  section#galeria .landing__gallery-wrapper {
    grid-gap: 1px;
    grid-template-columns: [c1] 1fr [c2] 1fr [c3] 1fr [c4];
    grid-template-rows: [r1] calc(100vw / 3) [r2] calc(100vw / 3) [r3] calc(100vw / 3) [r4] calc(100vw / 3) [r5] calc(100vw / 3) [r6];
    overflow: hidden;
  }
  section#galeria .landing__gallery-wrapper .image:nth-of-type(1) {
    grid-column: c1/span 2;
    grid-row: r1/span 2;
  }
  section#galeria .landing__gallery-wrapper .image:nth-of-type(2) {
    grid-column: c3/span 1;
    grid-row: r1/span 2;
  }
  section#galeria .landing__gallery-wrapper .image:nth-of-type(3) {
    grid-column: c1/span 3;
    grid-row: r3/span 2;
  }
  section#galeria .landing__gallery-wrapper .image:nth-of-type(4) {
    grid-column: c1/span 1;
    grid-row: r5/span 1;
  }
  section#galeria .landing__gallery-wrapper .image:nth-of-type(5) {
    grid-column: c2/span 1;
    grid-row: r5/span 1;
  }
  section#galeria .landing__gallery-wrapper .image:nth-of-type(6) {
    grid-column: c3/span 1;
    grid-row: r5/span 1;
  }
  section#galeria .landing__gallery-wrapper .image:nth-of-type(7), section#galeria .landing__gallery-wrapper .image:nth-of-type(8), section#galeria .landing__gallery-wrapper .image:nth-of-type(9), section#galeria .landing__gallery-wrapper .image:nth-of-type(10), section#galeria .landing__gallery-wrapper .image:nth-of-type(11), section#galeria .landing__gallery-wrapper .image:nth-of-type(12) {
    display: none;
  }
}
section#servicios {
  padding: 0 0 180px 0;
}
section#servicios .l-main-wrapper {
  text-align: center;
}
section#servicios .l-main-wrapper h2 {
  color: #e7ae3e;
}
section#servicios .l-main-wrapper .landing__values-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 76px;
}
section#servicios .l-main-wrapper .landing__values-wrapper li {
  position: relative;
  display: flex;
  flex-flow: column;
  width: 200px;
}
section#servicios .l-main-wrapper .landing__values-wrapper li:hover .icon {
  transform: scale(1.2);
  background-color: #FFF;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
section#servicios .l-main-wrapper .landing__values-wrapper li:hover p:nth-of-type(1) {
  transform: translateY(15px);
}
section#servicios .l-main-wrapper .landing__values-wrapper li:hover p:nth-of-type(2) {
  height: auto;
  opacity: 1;
  transform: translate(-50%, calc(100% + 20px));
}
section#servicios .l-main-wrapper .landing__values-wrapper li .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 135px;
  height: 135px;
  background-color: #5a8080;
  border-radius: 4px;
  margin: 0 auto 9px auto;
  transition: all 0.2s ease;
}
section#servicios .l-main-wrapper .landing__values-wrapper li .icon img {
  max-width: 76px;
  max-height: 76px;
}
section#servicios .l-main-wrapper .landing__values-wrapper li p {
  transition: all 0.2s ease;
}
section#servicios .l-main-wrapper .landing__values-wrapper li p:nth-of-type(2) {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, calc(100% + 40px));
  width: 100%;
  height: 0;
  margin-top: 10px;
  font-size: 16px;
  line-height: 18px;
  color: #626262;
  opacity: 0;
}

@media screen and (max-width: 1080px) {
  section#servicios {
    padding: 0 0 40px 0;
  }
  section#servicios .l-main-wrapper h2 {
    font-size: 60px;
    line-height: 48px;
  }
  section#servicios .l-main-wrapper .landing__values-wrapper {
    flex-flow: row wrap;
    justify-content: center;
    margin-top: 48px;
  }
  section#servicios .l-main-wrapper .landing__values-wrapper li {
    width: 50%;
    margin-bottom: 50px;
  }
  section#servicios .l-main-wrapper .landing__values-wrapper li:hover p:nth-of-type(2) {
    transform: translateY(15px);
  }
  section#servicios .l-main-wrapper .landing__values-wrapper li .icon {
    width: 85px;
    height: 85px;
  }
  section#servicios .l-main-wrapper .landing__values-wrapper li .icon img {
    max-width: 45px;
    max-height: 45px;
  }
  section#servicios .l-main-wrapper .landing__values-wrapper li p:nth-of-type(2) {
    position: initial;
    transform: none;
  }
}
section#nosotros {
  padding-bottom: 139px;
}
section#nosotros .l-main-wrapper {
  position: relative;
  display: flex;
  justify-content: space-between;
  height: 490px;
}
section#nosotros .l-main-wrapper .landing__about-carousel {
  width: 55%;
  max-width: 655px;
  height: 100%;
}
section#nosotros .l-main-wrapper .landing__about-carousel .slide {
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
section#nosotros .l-main-wrapper .landing__about-content {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  width: 35%;
  max-width: 373px;
  height: 100%;
}
section#nosotros .l-main-wrapper .landing__about-content .wrapper h3, section#nosotros .l-main-wrapper .landing__about-content .wrapper h4 {
  line-height: 60px;
}
section#nosotros .l-main-wrapper .landing__about-content .wrapper p {
  margin-top: 25px;
}
section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons {
  display: flex;
}
section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button {
  width: 48px;
  height: 48px;
  border-radius: 4px;
  border: 1px solid #434343;
  background-image: url("/assets/images/ic_arrow-left_black.svg");
  background-position: center;
  background-size: auto 15px;
  background-repeat: no-repeat;
  transition: all 0.2s ease;
}
section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button:hover {
  border-color: #e7ae3e;
  background-color: #e7ae3e;
  background-image: url("/assets/images/ic_arrow-left_white.svg");
}
section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button:not(:last-of-type) {
  margin-right: 26px;
}
section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button.next {
  transform: rotate(180deg);
}
section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button span {
  display: none;
}
section#nosotros .l-main-wrapper .landing__about-subimage {
  position: absolute;
  bottom: 0;
  left: 60px;
  margin-bottom: -139px;
  width: 278px;
  height: 278px;
  border-radius: 50%;
  border: 7px solid #FFF;
  box-shadow: 0 0 11px rgba(0, 0, 0, 0.23);
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 1080px) {
  section#nosotros {
    padding-bottom: 60px;
  }
  section#nosotros .l-main-wrapper {
    display: flex;
    flex-flow: column;
    height: auto;
  }
  section#nosotros .l-main-wrapper .landing__about-carousel {
    width: 100%;
    height: 196px;
  }
  section#nosotros .l-main-wrapper .landing__about-content {
    display: flex;
    flex-flow: column-reverse;
    width: 100%;
    text-align: center;
  }
  section#nosotros .l-main-wrapper .landing__about-content .wrapper p {
    margin: 0;
  }
  section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons {
    display: flex;
    justify-content: space-between;
    background-image: none;
    margin: 16px 0 25px 0;
  }
  section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 33px;
    padding: 0 26px;
    box-sizing: border-box;
    border-radius: 33px;
    font-family: "Texta", sans-serif;
    font-weight: 300;
    font-size: 20px;
    border: 2px solid #5a8080;
    color: #5a8080;
    width: auto;
    background-image: none;
  }
  section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button:not(:last-of-type) {
    margin: 0;
  }
  section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button:hover, section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button.--active {
    background-color: #5a8080;
    color: #e7ae3e;
    background-image: none;
    border-color: #5a8080;
  }
  section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button.next {
    transform: none;
  }
  section#nosotros .l-main-wrapper .landing__about-content .landing__about-buttons button span {
    display: block;
  }
  section#nosotros .l-main-wrapper .landing__about-subimage {
    display: none !important;
  }
}
section#contacto {
  padding: 174px 0 88px 0;
}
section#contacto .l-main-wrapper .landing__contact-prompt {
  position: relative;
  height: 334px;
}
section#contacto .l-main-wrapper .landing__contact-prompt .circles-wrapper {
  position: absolute;
  width: 350px;
  height: 350px;
  opacity: 0.5;
}
section#contacto .l-main-wrapper .landing__contact-prompt .circles-wrapper:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}
section#contacto .l-main-wrapper .landing__contact-prompt .circles-wrapper:nth-of-type(2) {
  right: 0;
  bottom: 0;
  transform: translate(50%, 50%);
}
section#contacto .l-main-wrapper .landing__contact-prompt .circles-wrapper span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  border: 1px solid #FFF;
  border-radius: 50%;
}
section#contacto .l-main-wrapper .landing__contact-prompt .circles-wrapper span:nth-of-type(1) {
  width: 100%;
  height: 100%;
}
section#contacto .l-main-wrapper .landing__contact-prompt .circles-wrapper span:nth-of-type(2) {
  width: 75%;
  height: 75%;
}
section#contacto .l-main-wrapper .landing__contact-prompt .circles-wrapper span:nth-of-type(3) {
  width: 50%;
  height: 50%;
}
section#contacto .l-main-wrapper .landing__contact-prompt .circles-wrapper span:nth-of-type(4) {
  width: 25%;
  height: 25%;
}
section#contacto .l-main-wrapper .landing__contact-prompt aside {
  position: absolute;
  top: 0;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden;
  text-align: center;
  background-color: #595959;
}
section#contacto .l-main-wrapper .landing__contact-prompt aside:first-of-type {
  left: 0;
  width: 62%;
  border-radius: 17px 0 0 17px;
}
section#contacto .l-main-wrapper .landing__contact-prompt aside:last-of-type {
  right: 0;
  width: 42%;
  border-radius: 0 17px 17px 0;
  transform: translateY(-28px);
  background-size: cover;
}
section#contacto .l-main-wrapper .landing__contact-prompt aside h1 {
  color: #FFF;
  font-size: 45px;
  line-height: 60px;
}
section#contacto .l-main-wrapper .landing__contact-prompt aside h2 {
  color: #e7ae3e;
  font-size: 76px;
  line-height: 60px;
  margin-top: -10px;
}
section#contacto .l-main-wrapper .landing__contact-prompt aside .button--white {
  margin-top: 20px;
}
section#contacto .l-main-wrapper .title {
  width: 100%;
  text-align: center;
  margin: 90px 0;
}
section#contacto .landing__contact-form .l-main-wrapper {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(1) {
  width: calc(40% - 30px);
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(1) .title {
  display: none;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(1) .contact-submit {
  margin-top: 30px;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) {
  position: relative;
  width: calc(60% - 30px);
  padding-top: 45px;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .seal {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateY(-50%);
  width: 218px;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .map {
  width: 100%;
  height: 600px;
  margin-bottom: 80px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 3px 3px 7px rgba(0, 0, 0, 0.15);
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper {
  display: flex;
  margin-top: 80px;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(1) {
  border-right: 1px solid #626262;
  padding: 10px 50px 10px 0;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(2) {
  padding: 10px 0 10px 20px;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(2) p {
  font-size: 18px;
  line-height: 25px;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(2) p:last-of-type {
  margin-top: 40px;
}
section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(2) p strong {
  text-transform: uppercase;
}

@media screen and (max-width: 1080px) {
  section#contacto {
    padding: 0 0 60px 0;
  }
  section#contacto .l-main-wrapper .landing__contact-prompt {
    display: none;
  }
  section#contacto .l-main-wrapper .title {
    display: none;
  }
  section#contacto .landing__contact-form .l-main-wrapper {
    display: flex;
    flex-flow: column;
    max-width: none;
    width: 100%;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(1), section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) {
    width: 100%;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(1) {
    box-shadow: 0 3px 10px 5px rgba(0, 0, 0, 0.1);
    padding: 22px;
    box-sizing: border-box;
    max-width: 90vw;
    margin-left: 5vw;
    margin-bottom: 60px;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(1) .title {
    display: block;
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 800;
    line-height: 40px;
    text-transform: uppercase;
    color: #5a8080;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .map {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.23);
    height: 300px;
    border-radius: 0;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .seal {
    display: none;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper {
    width: 90vw;
    margin-left: 5vw;
    flex-flow: column;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(1) {
    display: flex;
    justify-content: center;
    padding: 0;
    border: 0;
    margin-bottom: 17px;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(1) .button, section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(1) .button--white {
    margin: 0 auto;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(2) {
    padding: 0;
    text-align: center;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(2) p:last-of-type {
    margin: 0;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside:nth-of-type(2) .address-wrapper div:nth-of-type(2) p span {
    color: #e7ae3e;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside form {
    display: flex;
    justify-content: center;
    flex-flow: column;
  }
  section#contacto .landing__contact-form .l-main-wrapper aside form .button, section#contacto .landing__contact-form .l-main-wrapper aside form .button--white {
    margin: 0 auto;
  }
}
footer {
  background-color: #1c1512;
  color: #a9a9a9;
}
footer .content {
  padding: 60px 0 40px 0;
}
footer .content .l-main-wrapper {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  grid-column-gap: 30px;
}
footer .content .l-main-wrapper .about p {
  font-size: 20px;
  line-height: 23px;
  font-weight: 400;
}
footer .content .l-main-wrapper .about .social {
  display: flex;
  margin-top: 15px;
}
footer .content .l-main-wrapper .about .social a {
  width: 22px;
}
footer .content .l-main-wrapper .about .social a:not(:last-of-type) {
  margin-right: 23px;
}
footer .content .l-main-wrapper .about .social a img {
  width: 100%;
}
footer .content .l-main-wrapper .newsletter-wrapper {
  position: relative;
}
footer .content .l-main-wrapper .newsletter-wrapper .newsletter {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #393939;
  border-radius: 10px;
  padding: 30px;
  box-sizing: border-box;
  box-shadow: 4px 2px 6px rgba(0, 0, 0, 0.3);
  transform: translateY(-50%);
}
footer .content .l-main-wrapper .newsletter-wrapper .newsletter h3, footer .content .l-main-wrapper .newsletter-wrapper .newsletter h4 {
  font-size: 20px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  color: #e7ae3e;
  margin-bottom: 16px;
}
footer .content .l-main-wrapper .newsletter-wrapper .newsletter p {
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
}
footer .content .l-main-wrapper .newsletter-wrapper .newsletter input {
  height: auto;
  border: 0;
  border-bottom: 1px solid #FFF;
  margin-top: 26px;
  background-color: transparent;
  padding: 5px;
  font-size: 16px;
  border-radius: 0;
  color: #FFF;
}
footer .legal {
  border-top: 1px solid #393939;
  text-align: center;
}
footer .legal .l-main-wrapper {
  position: relative;
  padding: 40px 0;
}
footer .legal .l-main-wrapper p {
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
}
footer .legal .l-main-wrapper .to-top {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background-color: #a9a9a9;
  transition: background-color 0.2s ease;
}
footer .legal .l-main-wrapper .to-top:hover {
  background-color: #e7ae3e;
}

@media screen and (max-width: 1080px) {
  footer .content {
    padding: 20px 0 30px 0;
  }
  footer .content .l-main-wrapper {
    display: flex;
    flex-flow: column;
  }
  footer .content .l-main-wrapper .about {
    text-align: center;
    padding: 20px 0;
  }
  footer .content .l-main-wrapper .about p {
    font-size: 15px;
    line-height: 15px;
  }
  footer .content .l-main-wrapper .about .social {
    display: flex;
    justify-content: center;
  }
  footer .content .l-main-wrapper .newsletter-wrapper .newsletter {
    position: initial;
    transform: none;
    background-color: transparent;
    box-shadow: none;
    text-align: center;
    padding: 0;
  }
  footer .content .l-main-wrapper .newsletter-wrapper .newsletter input::-webkit-input-placeholder {
    text-align: center;
  }
  footer .content .l-main-wrapper .newsletter-wrapper .newsletter input::-moz-placeholder {
    text-align: center;
  }
  footer .content .l-main-wrapper .newsletter-wrapper .newsletter input:-ms-input-placeholder {
    text-align: center;
  }
  footer .content .l-main-wrapper .newsletter-wrapper .newsletter input:-moz-placeholder {
    text-align: center;
  }
  footer .legal {
    border: none;
  }
  footer .legal .l-main-wrapper {
    padding: 20px 0;
  }
  footer .legal .l-main-wrapper p {
    font-size: 15px;
    line-height: 15px;
  }
  footer .legal .l-main-wrapper .to-top {
    display: none;
  }
}

/*# sourceMappingURL=app.css.map */
