/*** contenidos comunes *****/
/*** RESET ***/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure {
  padding: 0;
  margin: 0;
}
* {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
*:focus,
a:focus {
  outline: none;
}
ul,
li {
  list-style: none;
}
a,
button {
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a:hover {
  text-decoration: none;
}
/**** FONTS ****/
/*** color ***/
/* marron */
/**/
/**** MIXINS LESS CLASES *****/
@media (min-width: 1024px) {
  .grid {
    display: grid;
    gap: 30px;
    padding-bottom: 40px;
  }
  .grid.nomarg {
    margin-bottom: 0;
  }
  .grid.gap-0 {
    gap: 0px;
    margin-bottom: 0px;
  }
  .grid.col-1 {
    grid-template-columns: 1fr;
  }
  .grid.col-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid.col-50-rest {
    grid-template-columns: 50px 1fr;
  }
  .grid.col-3 {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid.col-3-acord {
    grid-template-columns: 1fr 1fr 1fr;
    padding-bottom: 0;
  }
  .grid.col-4 {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
  .grid.col-5 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
  .grid.col-6 {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
  .grid.col-2-1 {
    grid-template-columns: 2fr 1fr;
  }
  .grid.col-300-1 {
    grid-template-columns: 250px 1fr;
    padding-bottom: 0;
  }
  .grid.col-1-2 {
    grid-template-columns: 1fr 2fr;
  }
  .grid.col-1-2-1 {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .grid.col-2-1-1 {
    grid-template-columns: 2fr 1fr 1fr;
  }
  .grid .column {
    display: block;
  }
  .grid .column.center {
    display: flex;
    align-items: center;
  }
  .grid .column.start {
    display: flex;
    align-items: flex-start;
  }
  .grid .column.end {
    display: flex;
    align-items: flex-end;
  }
  .grid .column.line-end {
    display: flex;
    justify-content: end;
  }
  .grid .column.flex-col-vert {
    display: flex;
    flex-direction: column;
  }
  .grid.center {
    align-items: center;
  }
}
@media (min-width: 1360px) {
  
}
@media (max-width: 1023px) {
  .grid.invert {
    display: flex;
    flex-direction: column-reverse;
  }
  .grid.col-6 {
    display: grid;
    gap: 30px;
    margin-bottom: 20px;
    grid-template-columns: 150px 150px 150px 150px 150px 150px;
    overflow-y: scroll;
  }
}
/***** CONTENIDOS COMUNES ******/
body.open {
  overflow: hidden !Important;
}
html {
  width: 100%;
  height: 100%;
  font-size: 100%;
}
body {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #EBEBEB;
  color: #000000;
  font-family: "Lato", sans-serif;
}
#main {
  display: block;
  height: auto;
  width: 100%;
  overflow: hidden;
  padding-top: 80px;
}
@media (max-width: 1023px) {
  #main {
    padding-top: 80px;
  }
}
.wrapper {
  max-width: 1615px;
  display: block;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1665px) {
  .wrapper {
    width: 1615px;
  }
}
.modulo {
  padding: 80px 0 0 0;
  display: block;
}
@media (max-width: 1023px) {
  .modulo {
    padding: 40px 0;
  }
}
.img-responsive {
  display: block;
  max-width: 100%;
}
@media (max-width: 1023px) {
  .img-responsive {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1023px) {
  
}
/**** BOTONES ****/
.btn {
  color: #fff;
  display: flex;
  width: fit-content;
  height: 48px;
  align-items: center;
  padding: 0 24px;
  margin: 0;
  font-size: 18px;
  line-height: 48px;
  font-weight: 400;
  border: none;
  border-radius: 24px;
  background: #776e66;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn .icon {
  margin-left: 5px;
  display: flex;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.btn.filled {
  color: #776e66;
  border: solid 1px #776e66;
  background: #fff;
}
.btn.filled:hover {
  color: #fff;
  background: #776e66;
}
.btn.light {
  color: #776E66;
  background: #E5E5DB;
}
.btn.light:hover {
  color: #fff;
}
.btn.transparent {
  background: transparent;
  border: none;
  padding: 0;
}
.btn.transparent:hover {
  color: #fff;
  background: transparent;
}
.btn:hover {
  background: #000;
}
.btn:hover .icon {
  transform: translateX(10px);
}
.btn.no-hover:hover {
  color: #fff;
}
@media (max-width: 1023px) {
  .btn {
    font-size: 14px;
    padding: 0 14px;
  }
}
.btns-area {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.btns-area.centered {
  justify-content: center;
}
.btns-area.end {
  justify-content: flex-end;
}
/*********************/
/* estado inicial: oculto y posicionado según la variante */
.fadein,
.fadeinUp,
.fadeinDown,
.fadeinLeft,
.fadeinRight {
  opacity: 0;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
  /* hint para rendimiento */

}
/* posiciones iniciales por variante */
.fadein {
  transform: translateY(0);
}
/* solo fade (sin movimiento) */
.fadeinUp {
  transform: translateY(30px);
}
.fadeinDown {
  transform: translateY(-30px);
}
.fadeinLeft {
  transform: translateX(-30px);
}
.fadeinRight {
  transform: translateX(30px);
}
/* estado visible: cada variante vuelve a su lugar (0) */
.fadein.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fadeinUp.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fadeinDown.in-view {
  opacity: 1;
  transform: translateY(0);
}
.fadeinLeft.in-view {
  opacity: 1;
  transform: translateX(0);
}
.fadeinRight.in-view {
  opacity: 1;
  transform: translateX(0);
}
/********** WP FORMS PLUGIN CUSTOMIZE ******/
.form-area {
  display: block;
  width: auto;
}
.form-area .form-tit {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 0 0 20px 0;
}
.form-area .form-txt {
  color: #fff;
  font-size: 14px;
  line-height: 125%;
  text-align: center;
  margin: 0 0 20px 0;
}
.form-area .thanks {
  color: #776e66;
  font-size: 18px;
  line-height: 125%;
  text-align: center;
  margin: 0;
  padding: 30px 0 20px 0;
  font-weight: 600;
}
@media (max-width: 1023px) {
  .form-area .form-tit {
    font-size: 24px;
  }
}
.form-custom {
  display: block;
  max-width: 700px;
}
/***** inputs custom ***/
.wpforms-field {
  display: flex;
  padding: 0;
  position: relative;
  border-bottom: solid 1px #000;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px 0;
}
.wpforms-field input[type="text"] {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  text-indent: 10px;
  padding: 0 20px 0 0;
}
.wpforms-field input[type="text"]:focus {
  background: transparent;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
}
.wpforms-field input[type="tel"] {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  text-indent: 10px;
  padding: 0 20px 0 0;
}
.wpforms-field input[type="tel"]:focus {
  background: transparent;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
}
.wpforms-field input[type="password"] {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  text-indent: 10px;
  padding: 0 20px 0 0;
}
.wpforms-field input[type="password"]:focus {
  background: transparent;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
}
.wpforms-field input[type="email"] {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  text-indent: 10px;
  padding: 0 20px 0 0;
}
.wpforms-field input[type="email"]:focus {
  background: transparent;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
}
.wpforms-field input[type="number"] {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  text-indent: 10px;
  padding: 0 20px 0 0;
}
.wpforms-field input[type="number"]:focus {
  background: transparent;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
}
.wpforms-field input[type="checkbox"] {
  margin-right: 10px;
}
.wpforms-field input[type="radio"] {
  margin-right: 10px;
}
.wpforms-field select {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  text-indent: 10px;
  padding: 0 20px 0 0;
  height: 40px;
}
.wpforms-field select:focus {
  background: transparent;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
}
.wpforms-field textarea {
  font-family: "Lato", sans-serif;
  color: #000000;
  font-size: 18px;
  line-height: 40px;
  font-weight: 400;
  display: block;
  width: 100%;
  border-radius: 0;
  border: none;
  background: transparent;
  text-indent: 10px;
  padding: 0 20px 0 0;
  height: 100px;
  resize: none;
  padding: 5px 10px;
  text-indent: 0;
  line-height: 20px;
}
.wpforms-field textarea:focus {
  background: transparent;
  -webkit-box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
  box-shadow: 0px 20px 40px 0px rgba(79, 35, 35, 0);
}
.wpforms-submit-container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.wpforms-submit {
  color: #fff;
  display: flex;
  width: fit-content;
  height: 48px;
  align-items: center;
  padding: 0 24px;
  font-size: 16px;
  line-height: 48px;
  font-weight: 400;
  border: none;
  border-radius: 24px;
  background: #776e66;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.wpforms-submit:hover {
  background: #000;
}
@media (max-width: 1023px) {
  .wpforms-submit {
    font-size: 16px;
  }
}
label.wpforms-error {
  font-family: "Lato", sans-serif;
  font-size: 12px;
  color: #cc2020;
  position: absolute;
  bottom: -17px;
  left: 0;
}
.wpforms-field-label {
  font-size: 18px;
  line-height: 40px;
  font-family: "Lato", sans-serif;
  color: #000;
  padding: 0;
  font-weight: 400;
  display: flex;
}
.wpforms-field-layout-preset-33-33-33 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}
.wpforms-field-layout-preset-50-50 {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.wpforms-field ul {
  margin-bottom: 0;
  padding: 0 0 0 0;
  list-style: none;
}
.wpforms-field ul li {
  list-style: none;
  margin-bottom: 14px;
  font-size: 16px;
  line-height: 22px;
  color: #000;
}
.wpforms-field ul li::before {
  display: none;
}
.header {
  background: #EBEBEB;
  padding: 20px 0 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
}
.nav-principal {
  display: block;
}
.nav-principal ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-principal ul li {
  color: #000000;
  font-size: 20px;
  font-weight: 500;
}
.nav-principal ul li a {
  color: #000000;
}
.nav-principal .logo {
  max-width: 130px;
}
.nav-principal .logo img {
  display: block;
  width: 100%;
}
@media (max-width: 1023px) {
  .nav-principal .logo {
    display: none;
  }
}
.logo-noble {
  display: none;
  max-width: 200px;
  padding: 0;
}
.logo-noble img {
  display: block;
  width: 100%;
  height: auto;
}
.logo-noble a {
  display: block;
}
@media (max-width: 1023px) {
  .logo-noble {
    display: block;
  }
}
@media (max-width: 1023px) {
  .nav-principal {
    position: fixed;
    width: 100%;
    background: #EBEBEB;
    top: 74px;
    left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    overflow: hidden;
    max-height: 0;
  }
  .nav-principal ul {
    display: block;
    text-align: center;
    padding: 30px 0;
  }
  .nav-principal ul li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .nav-principal.open {
    max-height: 1000px;
  }
}
@media (max-width: 1023px) {
  
}
.hamburger {
  display: block;
  position: fixed;
  right: 20px;
  top: 30px;
  z-index: 30;
}
@media (min-width: 1023px) {
  .hamburger {
    display: none;
  }
}
.hamburger .hamburger-inner {
  position: relative;
  height: 18px;
  width: 20px;
  display: block;
  margin: 0;
  padding: 0;
}
.hamburger .bar {
  width: 20px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 0;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.hamburger.open .bar {
  background: #000;
}
.hamburger .bar.bar2,
.hamburger .bar.bar3 {
  top: 7px;
  transform: matrix(0.99999, 0, 0, 0.99999, 0, 0);
}
.hamburger .bar.bar4 {
  top: 14px;
}
.hamburger.open .bar1,
.hamburger.open .bar4 {
  opacity: 0;
}
.hamburger.open .bar2 {
  height: 2px;
  transform: matrix(0.7071, 0.7071, -0.7071, 0.7071, 0, 0);
}
.hamburger.open .bar3 {
  height: 2px;
  transform: matrix(0.7071, -0.7071, 0.7071, 0.7071, 0, 0);
}
/***** FOOTER ******/
.footer {
  background: #776E66;
  padding: 100px 0 30px 0;
  display: block;
}
@media (max-width: 1023px) {
  .footer {
    padding: 40px 0;
  }
}
.footer p {
  color: #F5F5F5;
  font-size: 16px;
  font-weight: 400;
  line-height: 100%;
}
.footer p strong {
  font-weight: 700;
}
.footer p a {
  color: #F5F5F5;
  text-decoration: none;
}
@media (max-width: 1023px) {
  .footer p {
    line-height: 120%;
    margin-bottom: 10px;
  }
}
.footer .info-foot {
  padding: 0 0 0 150px;
}
@media (max-width: 1023px) {
  .footer .info-foot {
    padding: 20px 0 0 0;
  }
}
.logo-noble-light {
  display: block;
  width: 120px;
}
.logo-noble-light img {
  display: block;
  max-width: 100%;
}
@media (max-width: 1023px) {
  
}
/**** PAGES ***/
.hero-video {
  position: relative;
  width: 100%;
  height: 90vh;
  /* o la altura que quieras */

  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* importante para llenar el área */

}
.hero {
  width: 100%;
  height: auto;
}
.hero .bg-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .hero .bg-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }
  .hero .bg-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.hero.margined {
  margin-top: 100px;
  margin-bottom: 80px;
}
@media (max-width: 1023px) {
  .hero.margined {
    margin-top: 40px;
  }
}
.tit-section {
  color: #000000;
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
  margin: 0;
  padding: 0;
}
.tit-section.mtop80 {
  margin-top: 80px;
}
.tit-section i {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}
@media (max-width: 1400px) {
  .tit-section {
    font-size: 40px;
  }
}
@media (max-width: 1100px) {
  .tit-section {
    font-size: 35px;
  }
}
@media (max-width: 1023px) {
  .tit-section {
    font-size: 35px;
    margin-bottom: 30px;
  }
  .tit-section.mbot80 {
    margin-top: 50px;
  }
}
@media (max-width: 480px) {
  .tit-section {
    font-size: 32px;
  }
  .tit-section br {
    display: none;
  }
}
.article .tx {
  color: #000000;
  font-size: 32px;
  font-weight: 400;
  line-height: 120%;
  margin: 0;
  padding: 0;
}
.article i {
  font-family: "Playfair Display", serif;
  font-style: italic;
}
.article .tit {
  color: #000000;
  font-size: 40px;
  font-weight: 500;
  line-height: 120%;
  margin: 0;
  padding: 0;
}
.article p {
  font-size: 26px;
  font-weight: 400;
  line-height: 116%;
}
.article p strong {
  font-weight: 600;
}
.article h3 {
  font-weight: 600;
  font-size: 34px;
  margin: 0 0 15px 0;
  padding: 0;
}
.article h3 i {
  font-weight: 500;
}
.article.light p {
  color: #E5E5DB;
}
@media (max-width: 1400px) {
  .article .tx {
    font-size: 30px;
  }
  .article .tit {
    font-size: 42px;
  }
  .article p {
    font-size: 24px;
  }
  .article h3 {
    font-size: 30px;
  }
}
@media (max-width: 1023px) {
  .article .tx {
    font-size: 26px;
  }
  .article .tit {
    font-size: 28px;
  }
  .article p {
    font-size: 18px;
  }
  .article h3 {
    font-size: 20px;
  }
  .article.mbotM {
    margin-bottom: 30px;
  }
}
.line {
  width: 100%;
  height: 1px;
  background: #000;
  position: relative;
  display: block;
}
.line span {
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  z-index: 2;
  top: -6px;
}
.line.light {
  background: #E5E5DB;
}
.line.light span {
  background: #E5E5DB;
}
.line .uno {
  left: 0;
}
.line .dos {
  left: 33.3%;
}
.line .tres {
  right: 32%;
}
.line .cuatro {
  right: 0;
}
.line.mtop40 {
  margin-top: 40px;
}
.line.mtop20 {
  margin-top: 20px;
}
.line.mbot40 {
  margin-bottom: 40px;
}
.line.mbot150 {
  margin-bottom: 150px;
}
@media (max-width: 1023px) {
  .line.mbot150 {
    margin-bottom: 40px;
  }
}
.line.mbot20 {
  margin-bottom: 20px;
}
@media (max-width: 1023px) {
  .line.mbotM {
    margin-bottom: 20px;
    margin-top: 10px;
  }
}
.mapa {
  display: block;
  margin: 40px 0 0 0;
}
.mapa img {
  display: block;
  width: 100%;
}
.mapa-info {
  padding: 40px 0;
  background: #776E66;
}
.item-map {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px;
  color: #E5E5DB;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .item-map {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.acordeon {
  display: block;
  padding: 40px 0;
}
.acordeon .tit-acord {
  border-bottom: solid 1px #777;
  margin: 0 0 20px 0;
  padding: 0 0 10px 0;
  cursor: pointer;
}
.acordeon .tit-acord span {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 48px;
  font-style: italic;
  color: #000;
  display: block;
  line-height: 100%;
}
.acordeon .tit-acord h3 {
  font-weight: 500;
  font-size: 32px;
  color: #000;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .acordeon .tit-acord .col-3-acord {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  .acordeon .tit-acord .col-3-acord h3 {
    padding-top: 10px;
    font-size: 20px;
  }
  .acordeon .tit-acord .col-3-acord span {
    font-size: 30px;
  }
}
.acordeon .info-acord {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.acordeon .info-acord img {
  display: block;
  max-width: 100%;
}
.acordeon .info-acord p {
  color: #000;
  font-weight: 300;
  font-size: 24px;
  line-height: 115%;
  margin: 0;
  padding: 0;
}
.acordeon .info-acord.open {
  transition: max-height 0.6s ease;
  margin-bottom: 30px;
}
@media (max-width: 1023px) {
  .acordeon .info-acord .col-3-acord {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
  }
  .acordeon .info-acord .col-3-acord p {
    font-size: 18px;
  }
  .acordeon .info-acord .col-3-acord .column:first-child {
    display: none;
  }
}
@media (max-width: 1023px) {
  .acordeon {
    padding-bottom: 0;
  }
}
.item-proy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-bottom: solid 1px #000;
  padding: 30px 0;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  position: relative;
  overflow: hidden;
}
.item-proy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(229, 229, 219, 0) 0%, #e5e5db 72%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}
.item-proy:hover::before {
  opacity: 1;
}
.item-proy .dates {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item-proy .dates .nn {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 48px;
  font-style: italic;
  color: #000;
}
@media (max-width: 1023px) {
  .item-proy .dates .nn {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.item-proy .dates .info li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  gap: 10px;
}
.item-proy .dates .info span {
  color: #000;
  font-weight: 300;
  font-size: 20px;
  line-height: 115%;
  margin: 0;
  padding: 0;
  width: 50%;
  min-width: 50%;
}
@media (max-width: 1023px) {
  .item-proy .dates .info span {
    font-size: 18px;
  }
}
.item-proy .dates .info strong {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 115%;
  margin: 0;
  padding: 0;
  width: 50%;
  min-width: 50%;
}
@media (max-width: 1023px) {
  .item-proy .dates .info strong {
    font-size: 18px;
  }
}
.item-proy .fotos {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: end;
  gap: 10px;
}
.item-proy .fotos img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 1023px) {
  .item-proy {
    display: block;
  }
  .item-proy .dates {
    margin-bottom: 30px;
  }
}
@media (max-width: 1023px) {
  .proyects {
    margin-bottom: 40px;
  }
}
.hzt-acordeon {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 150px 0;
}
.hzt-acordeon .hzt-item {
  max-width: 15%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.hzt-acordeon .hzt-item.open {
  max-width: 32%;
}
@media (max-width: 1023px) {
  .hzt-acordeon {
    display: none;
  }
}
.hzt-mobile {
  display: none;
}
@media (max-width: 1023px) {
  .hzt-mobile {
    display: block;
    padding: 40px 0;
    position: relative;
  }
}
.hzt-item {
  border: solid 1px #000;
  border-radius: 0 80px 0 0;
  overflow: hidden;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  height: 560px;
  cursor: pointer;
}
.hzt-item .fila {
  position: relative;
  z-index: 3;
}
.hzt-item span {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 48px;
  font-style: italic;
  color: #000;
  margin-bottom: 20px;
  display: block;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1023px) {
  .hzt-item span {
    font-size: 30px;
  }
}
.hzt-item h3 {
  font-weight: 500;
  color: #000;
  font-size: 30px;
  line-height: 115%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media (max-width: 1400px) {
  .hzt-item h3 {
    font-size: 20px;
  }
}
.hzt-item p {
  color: #E5E5DB;
  font-size: 20px;
  line-height: 115%;
  font-weight: 400;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
}
@media (max-width: 1400px) {
  .hzt-item p {
    font-size: 18px;
  }
}
.hzt-item .hzt-img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  opacity: 0;
  background: #000;
}
.hzt-item .hzt-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}
.hzt-item.open {
  background: #776E66;
}
.hzt-item.open .hzt-img {
  opacity: 0;
}
.hzt-item.open span {
  color: #E5E5DB;
}
.hzt-item.open h3 {
  color: #E5E5DB;
}
.hzt-item.open p {
  opacity: 1;
}
@media (max-width: 1023px) {
  .hzt-item {
    height: 400px;
    background: #776E66;
  }
  .hzt-item .hzt-img {
    opacity: 0;
  }
  .hzt-item span {
    color: #E5E5DB;
  }
  .hzt-item h3 {
    color: #E5E5DB;
  }
  .hzt-item p {
    opacity: 1;
  }
}
.item-choice {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 50px;
  border-bottom: solid 1px #000;
  padding: 30px 0;
}
.item-choice .dates {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.item-choice .dates span {
  display: block;
  width: 40px;
  height: 40px;
  background: url('../img/ic-arrow.svg') center center no-repeat;
  background-size: 100%;
  margin-bottom: 70px;
}
.item-choice .dates p {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 115%;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .item-choice .dates p {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.item-choice .info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.item-choice .info p {
  color: #000;
  font-weight: 300;
  font-size: 20px;
  line-height: 115%;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .item-choice .info p {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.item-choice .share {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.item-choice .share p {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 115%;
  margin: 0;
  padding: 0;
}
@media (max-width: 1023px) {
  .item-choice .share p {
    font-size: 18px;
  }
}
@media (max-width: 1023px) {
  .item-choice {
    display: block;
  }
  .item-choice .dates span {
    margin-bottom: 20px;
  }
}
@media (max-width: 1023px) {
  
}
.swiper-slide {
  padding-bottom: 30px;
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 0;
}
.swiper-pagination-bullet-active {
  background: #776e66;
}
/**** modal proyectos ****/
.modal-proyecto {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.filas-modal {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.filas-modal .flxc {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 20px;
}
.filas-modal .nn span {
  font-family: "Playfair Display", serif;
  font-weight: 400;
  font-size: 60px;
  font-style: italic;
  color: #000;
}
.filas-modal .if-tt {
  padding-top: 20px;
}
.filas-modal .if-tt h2 {
  color: #000;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  margin: 0 0 5px 0;
  padding: 0;
}
.filas-modal .if-tt h3 {
  color: #54565A;
  font-weight: 600;
  font-size: 20px;
  line-height: 110%;
  margin: 0;
  padding: 0;
}
.filas-modal .if-tx {
  padding-top: 20px;
}
.filas-modal .if-tx p {
  color: #000;
  font-weight: 400;
  font-size: 16px;
  line-height: 110%;
  margin: 0;
  padding: 0;
}
.filas-modal .pic {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.filas-modal .pic img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.flex-col {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.modal-proyecto.visible {
  display: flex;
  animation: fadeIn 0.4s ease;
}
.no-scroll {
  overflow: hidden;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.content-modal {
  background: #EBEBEB;
  padding: 30px;
  max-width: 900px;
  width: 90%;
  position: relative;
  animation: fadeInUp .4s ease;
}
.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}
.lista-proyectos li {
  font-size: 16px;
  color: #54565A;
  line-height: 24px;
}
.lista-proyectos li a {
  color: #54565A;
}
.lista-proyectos li a:hover {
  text-decoration: underline;
  color: #000;
}
.lista-proyectos li a.active {
  text-decoration: underline;
  color: #000;
}
@media (max-width: 980px) {
  .flex-col {
    display: none;
  }
  .filas-modal {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}
@media (max-width: 760px) {
  .filas-modal,
  .filas-modal .flxc {
    display: block;
  }
  .item-proy .dates .info li {
    display: block;
  }
}
.contact-area {
  padding: 60px 0;
}
