:root {
  --hs-color-primary: #758c6b;
  --hs-color-primary-dark: #3c4d38;
  --hs-color-primary-light: #9cad86;
  --hs-color-muted: #929292;
  --hs-color-accent: #d4c9b5;
  --hs-color-surface: #ffffff;
  --hs-color-soft: #ebebeb;
  --hs-color-text: #2f332d;
  --hs-color-ink: #10170e;
  --hs-font-heading: Oswald, Arial, sans-serif;
  --hs-font-body: Roboto, Arial, sans-serif;
  --hs-font-button: Roboto, Arial, sans-serif;
  --hs-font-size-base: 16px;
  --hs-container: 1240px;
  --hs-section-padding: clamp(72px, 9vw, 132px);
  --hs-shadow-text: 0 2px 12px rgba(0, 0, 0, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--hs-color-text);
  background: #ffffff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: var(--hs-font-heading);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0;
}

p,
li,
a,
button,
input,
textarea,
select {
  font-family: var(--hs-font-body);
}

button,
.button,
.flg-button {
  font-family: var(--hs-font-button);
}

img,
video {
  max-width: 100%;
  height: auto;
}

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

ul.list li {
  list-style: disc;
}

a {
  color: inherit;
}

.skip-link,
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  margin: 0;
  clip: auto;
  z-index: 1000;
  left: 16px;
  top: 16px;
  padding: 10px 14px;
  background: #fff;
  color: #111;
}

.container {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: var(--hs-container);
  padding-left: 30px;
  padding-right: 30px;
}
.container.sm {
  max-width: 600px;
}
.container.md {
  max-width: 800px;
}

.seccion {
  padding-top: 40px;
  padding-bottom: 40px;
}

.d-flex {
  display: flex !important;
}

.flex-1 {
  flex: 1;
}

.color-7 {
  color: var(--hs-color-accent);
}

.text-center {
  text-align: center !important;
}

.uppercase {
  text-transform: uppercase !important;
}

.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.d-grid {
  display: grid;
}

.d-grid.col-sm-2 {
  grid-template-columns: 1fr 1fr;
}

@media (min-width: 780px) {
  .d-grid.col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .d-grid.col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.mb-1 {
  margin-bottom: 10px !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 30px !important;
}

.mb-4 {
  margin-bottom: 40px !important;
}

.mb-5 {
  margin-bottom: 50px !important;
}

.mb-6 {
  margin-bottom: 60px !important;
}

.mb-7 {
  margin-bottom: 70px !important;
}

.mb-8 {
  margin-bottom: 80px !important;
}

.button.icon-btn .icon {
  margin-right: 5px;
}

table.table-left {
  display: grid;
  grid-template-columns: 1fr 2fr;
}
table.table-left tr,
table.table-left th,
table.table-left td {
  display: block;
  width: 100%;
}
table.table-left thead th {
  background-color: var(--hs-color-primary);
  color: white;
  cursor: pointer;
}
table.table-left thead tr {
  position: relative;
}
table.table-left thead tr.active th {
  filter: brightness(1.2) saturate(1.5);
}
table.table-left thead tr.active::after {
  content: "";
  width: 15px;
  height: 50%;
  position: absolute;
  right: -1px;
  top: 25%;
  background: #fff;
  clip-path: polygon(0 50%, 100% 100%, 100% 0);
  z-index: 1;
}
table.table-left tbody {
  position: relative;
}
table.table-left tbody tr {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  transition: 300ms;
}
table.table-left tbody tr.active {
  z-index: 1;
}
table.table-left tbody tr td {
  height: 100%;
  border: none;
  overflow-y: auto;
}
table.table-left tbody p {
  font-size: 14px;
  margin-bottom: 10px;
}

.site-topbar {
  position: relative;
  z-index: 970;
  background: #3c4d38;
  color: #fff;
}

.site-topbar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.site-header {
  position: relative;
  z-index: 970;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.08);
  transition: background-color 240ms ease, box-shadow 240ms ease, transform 240ms ease;
}

.site-header.is-sticky {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 970;
  animation: hs-header-pin 240ms ease both;
}

.site-header__inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-branding img {
  display: block;
  max-height: 70px;
  width: auto;
}
.site-branding a {
  text-decoration: none;
  font-weight: 700;
  color: var(--hs-color-primary);
}

.site-nav {
  margin-left: auto;
}

.site-nav__menu {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav__menu a {
  color: var(--hs-color-text);
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
}

#menu-flotante {
  display: none;
  flex-direction: column;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  background-color: #fff;
  padding: 80px 30px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  height: 100%;
  width: min(320px, 88vw);
  text-align: center;
  transition: 300ms;
  transform: translateX(-100%);
}
#menu-flotante .brand {
  margin-bottom: 60px;
}
#menu-flotante .brand img {
  max-width: 180px;
  height: auto;
}
#menu-flotante ul.menu-custom {
  padding: 0;
}
#menu-flotante .menu-item {
  margin-bottom: 20px;
}
#menu-flotante a {
  color: var(--hs-color-text);
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
}
#menu-flotante a:hover {
  color: var(--hs-color-primary);
}

.social-media {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 980;
}
.social-media a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: currentColor;
  font-size: 16px;
  text-decoration: none;
  transition: color 200ms ease, transform 200ms ease;
}
.social-media a:hover, .social-media a:focus-visible {
  color: #d4c9b5;
  transform: translateY(-2px);
}

@keyframes hs-header-pin {
  from {
    transform: translateY(-12px);
  }
  to {
    transform: translateY(0);
  }
}
header .btn-wrapper {
  min-width: 130px;
  display: none;
  justify-content: end;
  align-items: center;
}
header .btn-wrapper .btn-menu-custom {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  min-width: 55px;
  min-height: 45px;
  padding: 10px !important;
  border: none;
  background-color: var(--hs-color-primary);
  transition: 300ms;
  cursor: pointer;
  position: relative;
  z-index: 980;
}
header .btn-wrapper .btn-menu-custom:hover {
  transform: scale(1.1);
}
header .btn-wrapper .btn-menu-custom .bar {
  display: inline-block;
  background-color: #fff;
  width: 35px;
  height: 3px;
  transition: 500ms;
  transform-origin: left;
  position: relative;
}

@media (max-width: 779px) {
  .site-topbar {
    display: none;
  }
  .site-header__inner {
    min-height: 72px;
  }
  .site-nav {
    display: none;
  }
  header .btn-wrapper {
    display: flex;
  }
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
#footer.site-footer {
  background: var(--hs-color-primary-dark);
  color: #fff;
}
#footer.site-footer .site-footer__inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
#footer.site-footer .legales {
  padding: 10px 0;
  font-size: 12px;
}
#footer.site-footer .legales p {
  margin: 0;
}

#portada {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.04);
  box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.1);
}
#portada h1 {
  margin-bottom: 18px;
  color: var(--hs-color-ink);
  font-size: clamp(34px, 4vw, 46px);
  font-weight: 700;
}
#portada #breadcrumbs {
  margin: 0;
  color: #b0b4b8;
  font-size: 14px;
}
#portada #breadcrumbs a {
  color: var(--hs-color-primary);
  text-decoration: none;
}

#blockquote {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  background-color: var(--hs-color-soft);
  min-height: 170px;
  margin-bottom: 80px;
  position: relative;
  padding: 0;
  overflow: hidden;
}
#blockquote::before {
  content: "";
  position: absolute;
  left: 64px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--hs-color-primary);
}
#blockquote blockquote {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 100%;
  text-align: center;
  padding: 30px;
  position: relative;
}
#blockquote blockquote h4 {
  margin: 0;
  color: var(--hs-color-primary);
  font-size: clamp(18px, 2vw, 24px);
}
#blockquote blockquote::before, #blockquote blockquote::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  font-size: 250px;
  line-height: 1;
  opacity: 0.3;
}
#blockquote blockquote::before {
  content: "\f10d";
  left: 0;
  bottom: -50%;
}
#blockquote blockquote::after {
  content: "\f10e";
  right: 0;
  top: -50%;
}
#blockquote footer {
  width: 100%;
  text-align: right;
  font-style: italic;
}

.slide-card {
  height: 300px;
}
.slide-card .contenido {
  border-radius: 13px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
  height: 100%;
  transition: transform 0.25s ease;
}
.slide-card .contenido .front {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
  height: 100%;
  padding: 15px;
}
.slide-card .contenido .front .card-title {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--hs-color-primary);
  font-weight: bold;
  text-transform: uppercase;
}
.slide-card .contenido .back {
  display: none;
  flex-direction: column;
  background-image: linear-gradient(to bottom right, var(--hs-color-primary), var(--hs-color-primary-dark));
  color: white;
  height: 100%;
  padding: 15px;
}
.slide-card .contenido .back .card-title {
  color: #fff;
  display: block;
}
.slide-card .contenido .back .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.slide-card.image-card .contenido .front {
  position: relative;
  padding: 0;
}
.slide-card.image-card .contenido .front .card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(70%);
}
.slide-card.image-card .contenido .front .card-title {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 10;
  color: #fff;
  text-align: left;
  font-size: 24px;
  padding: 0 15px;
  margin: 10px 0;
}

#interest-post {
  padding: 40px 0;
}
#interest-post .post-item {
  box-shadow: 0 4px 7px rgba(0, 0, 0, 0.35);
  border-radius: 10px;
}

.grid-content {
  display: grid;
  grid-template-columns: 1fr;
}
.grid-content.gap-1 {
  gap: 1px;
}
.grid-content.gap-2 {
  gap: 2px;
}
.grid-content.gap-10 {
  gap: 10px;
}
.grid-content.gap-20 {
  gap: 20px;
}
.grid-content.grid-sm-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 780px) {
  .grid-content.grid-md-col-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid-content.grid-md-col-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid-content.grid-md-col-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .grid-content.grid-md-col-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
article.image-article {
  overflow: hidden;
  position: relative;
}
article.image-article .entry-thumbnail {
  width: 100%;
  height: 100%;
}
article.image-article .entry-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
article.image-article .entry-thumbnail img:focus-visible {
  outline: none;
}
article.image-article .entry-thumbnail:focus-visible {
  outline: none;
}
article.image-article .entry-content {
  position: absolute;
  left: 0;
  top: -100%;
  width: 100%;
  height: 100%;
  padding: 10px 10px 5px;
  transition: 500ms;
  overflow-y: auto;
}
article.image-article .entry-content .entry-link {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: white;
  height: 100%;
}
article.image-article .entry-content .entry-link .entry-title {
  color: white;
  font-size: 22px;
}
article.image-article .entry-content .entry-link p {
  flex: 1;
  margin: 0;
  font-size: 14px;
}
article.image-article .entry-content .entry-link .entry-footer {
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.8);
  padding: 2px 5px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
article.image-article:focus-visible {
  outline: none;
}
article.image-article:hover .entry-content {
  top: 0;
  background-color: rgba(0, 0, 0, 0.25);
}
article.image-article .entry-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
article.image-article.v2 {
  transition: 300ms;
}
article.image-article.v2 .entry-title {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 10px;
  color: white;
  transition: opacity 500ms;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
}
article.image-article.v2 .entry-thumbnail img {
  filter: brightness(0.6);
}
article.image-article.v2 .entry-content {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  padding: 10px;
  background-color: transparent;
  opacity: 0;
  color: white;
}
article.image-article.v2:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.35) !important;
}
article.image-article.v2:hover .entry-thumbnail img {
  filter: brightness(0.35);
}
article.image-article.v2:hover .entry-content {
  animation: showIn 500ms linear forwards;
  backdrop-filter: blur(2px);
}
article.image-article.v2:hover .entry-title {
  opacity: 0;
}

@keyframes showIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  user-select: none;
  touch-action: pan-y;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track::before,
.slick-track::after {
  display: table;
  content: "";
}

.slick-track::after {
  clear: both;
}

.slick-loading .slick-track,
.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  min-height: 1px;
}

.slick-initialized .slick-slide {
  display: block;
}

.carrusel-infinito {
  display: flex;
  position: relative;
  overflow-x: hidden;
  width: 100%;
}
.carrusel-infinito .carrusel-wrapper {
  flex-wrap: nowrap;
  display: flex;
  animation: carrusel-infinito 30s linear infinite;
}
.carrusel-infinito .carrusel-item {
  flex-shrink: 0;
  width: 250px;
  padding: 10px;
  border-radius: 8px;
}

@keyframes carrusel-infinito {
  0%, 100% {
    transform: translateX(0);
  }
  99.999999% {
    transform: translateX(-49.999999%);
  }
}
.page-template-home_tmpl {
  --flg-ink: #f8f6ee;
  --flg-deep: #0f170d;
  --flg-leaf: #9cad86;
  --flg-gold: #d4c9b5;
  --flg-glass: rgba(10, 17, 8, .36);
  background: var(--flg-deep);
  color: var(--flg-ink);
}

.page-template-home_tmpl .site-header {
  position: relative;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 970;
  background: transparent;
  box-shadow: none;
}

.page-template-home_tmpl .site-header__inner {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.page-template-home_tmpl .social-media a {
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
}

.page-template-home_tmpl .social-media a:hover, .page-template-home_tmpl .social-media a:focus-visible {
  color: var(--flg-gold);
}

.page-template-homev2_tmpl .site-nav__menu a,
.page-template-home_tmpl .site-nav__menu a {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
}

.page-template-homev2_tmpl .site-nav__menu a:hover,
.page-template-home_tmpl .site-nav__menu a:hover,
.page-template-homev2_tmpl .site-nav__menu a:focus-visible,
.page-template-home_tmpl .site-nav__menu a:focus-visible {
  color: var(--flg-gold);
}

.page-template-home_tmpl #page,
.page-template-home_tmpl .site-main {
  overflow: visible;
}

.page-template-home_tmpl .flg-home {
  background: var(--flg-deep);
  scroll-snap-type: y proximity;
}

.page-template-home_tmpl .flg-particles {
  position: fixed;
  inset: 0;
  z-index: 10;
  width: 100vw;
  height: 100dvh;
  pointer-events: none;
  opacity: 0.74;
  mix-blend-mode: screen;
}

.page-template-home_tmpl .flg-scene {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100dvh;
  overflow: hidden;
  color: #fff;
  background: var(--flg-deep);
  scroll-snap-align: start;
}

.page-template-home_tmpl .flg-scene::before,
.page-template-home_tmpl .flg-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-template-home_tmpl .flg-scene::before {
  z-index: 0;
  background-image: var(--flg-scene-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 1600ms ease, filter 1600ms ease;
}

.page-template-home_tmpl .flg-scene::after {
  z-index: 5;
  background: linear-gradient(90deg, rgba(7, 12, 5, 0.76), rgba(7, 12, 5, 0.22) 58%, rgba(7, 12, 5, 0.08)), linear-gradient(0deg, rgba(7, 12, 5, 0.64), transparent 44%, rgba(7, 12, 5, 0.36));
}

.page-template-home_tmpl .flg-scene:hover::before {
  transform: scale(1.09);
  filter: saturate(1.08) contrast(1.06);
}

.page-template-home_tmpl .flg-kicker {
  margin: 0 0 12px;
  color: var(--flg-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.78);
}

.page-template-home_tmpl .flg-scene__heading {
  max-width: 760px;
}

.page-template-home_tmpl .flg-scene__heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 6vw, 78px);
  line-height: 0.94;
  font-weight: 900;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.68);
}

.page-template-home_tmpl .flg-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.94);
  color: #182112;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: transform 240ms ease, background-color 240ms ease, color 240ms ease, box-shadow 240ms ease;
}

.page-template-home_tmpl .flg-button:hover, .page-template-home_tmpl .flg-button:focus-visible {
  transform: translateY(-4px);
  background: var(--flg-gold);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.page-template-home_tmpl .flg-button--ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.page-template-home_tmpl .flg-hero__frame,
.page-template-home_tmpl .flg-observe,
.page-template-home_tmpl .flg-servicescape,
.page-template-home_tmpl .flg-gallery-wall,
.page-template-home_tmpl .flg-process-map,
.page-template-home_tmpl .flg-final-frame {
  position: relative;
  z-index: 20;
  width: 100%;
  padding-top: clamp(108px, 13vh, 150px);
  padding-bottom: clamp(46px, 8vh, 88px);
}

.page-template-home_tmpl .flg-scene__ambient {
  position: absolute;
  right: max(30px, 8vw);
  bottom: max(34px, 9vh);
  z-index: 0;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  opacity: 0.55;
  animation: flg-orbit 18s linear infinite;
}

.page-template-home_tmpl .flg-scene__ambient::before,
.page-template-home_tmpl .flg-scene__ambient::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.page-template-home_tmpl .flg-scene__ambient::before {
  inset: 12%;
}

.page-template-home_tmpl .flg-scene__ambient::after {
  inset: 28%;
  background: rgba(255, 255, 255, 0.08);
}

.page-template-home_tmpl .flg-hero__frame {
  display: grid;
  align-content: end;
  min-height: 100dvh;
}

.page-template-home_tmpl .flg-hero__copy {
  max-width: 760px;
  animation: flg-fade-up 900ms ease both;
}

.page-template-home_tmpl .flg-hero__copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(50px, 9vw, 132px);
  line-height: 0.86;
  font-weight: 900;
  text-shadow: 0 6px 34px rgba(0, 0, 0, 0.72);
}

.page-template-home_tmpl .flg-hero__copy p:not(.flg-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.45;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

.page-template-home_tmpl .flg-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
  animation: flg-fade-up 900ms 140ms ease both;
}

.page-template-home_tmpl .flg-hero__signal {
  position: absolute;
  right: 30px;
  bottom: 28px;
  display: grid;
  gap: 7px;
}

.page-template-home_tmpl .flg-hero__signal span {
  display: block;
  width: 42px;
  height: 2px;
  background: rgba(255, 255, 255, 0.72);
  transform-origin: right;
  animation: flg-signal 1800ms ease-in-out infinite;
}

.page-template-home_tmpl .flg-hero__signal span:nth-child(2) {
  animation-delay: 160ms;
}

.page-template-home_tmpl .flg-hero__signal span:nth-child(3) {
  animation-delay: 320ms;
}

.page-template-home_tmpl .flg-observe {
  display: grid;
  align-content: center;
  max-width: 980px;
  margin-left: auto;
}

.page-template-home_tmpl .flg-observe h2 {
  max-width: 850px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 900;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.7);
  animation: flg-reveal linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 38%;
}

.page-template-home_tmpl .flg-observe__keys {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.page-template-home_tmpl .flg-observe__keys span {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  transition: transform 220ms ease, background-color 220ms ease;
}

.page-template-home_tmpl .flg-observe__keys span:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.18);
}

.page-template-home_tmpl .flg-servicescape,
.page-template-home_tmpl .flg-process-map {
  display: grid;
  gap: clamp(32px, 6vw, 82px);
}

.page-template-home_tmpl .flg-service-lenses {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.page-template-home_tmpl .flg-lens {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 15, 7, 0.28);
  backdrop-filter: blur(12px);
  box-shadow: 0 24px 68px rgba(0, 0, 0, 0.28);
  transition: transform 320ms ease, background-color 320ms ease, border-color 320ms ease;
  animation: flg-reveal linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 34%;
}

.page-template-home_tmpl .flg-lens::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 201, 181, 0.26), transparent 56%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.page-template-home_tmpl .flg-lens:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
}

.page-template-home_tmpl .flg-lens:hover::before {
  opacity: 1;
}

.page-template-home_tmpl .flg-lens__icon,
.page-template-home_tmpl .flg-lens h3,
.page-template-home_tmpl .flg-lens p {
  position: relative;
}

.page-template-home_tmpl .flg-lens__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 74px;
  border: 1px solid rgba(231, 214, 141, 0.42);
  border-radius: 26px;
  background: radial-gradient(circle at 30% 24%, rgba(231, 214, 141, 0.24), rgba(36, 57, 27, 0.38));
  box-shadow: inset 0 0 24px rgba(255, 255, 255, 0.08), 0 18px 42px rgba(0, 0, 0, 0.26);
  transform: rotate(-3deg);
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.page-template-home_tmpl .flg-lens:hover .flg-lens__icon {
  transform: rotate(0deg) translateY(-4px) scale(1.04);
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.12), 0 24px 52px rgba(0, 0, 0, 0.34);
}

.page-template-home_tmpl .flg-lens__icon img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.page-template-home_tmpl .flg-lens h3 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(22px, 2.4vw, 34px);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.64);
}

.page-template-home_tmpl .flg-lens p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  line-height: 1.58;
}

.page-template-home_tmpl .flg-gallery-wall {
  display: grid;
  gap: clamp(24px, 4vw, 48px);
}

.page-template-home_tmpl .flg-gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.7fr 0.9fr;
  grid-auto-rows: minmax(150px, 21vh);
  gap: 10px;
}

.page-template-home_tmpl .flg-gallery-tile {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.32);
  animation: flg-reveal linear both;
  animation-timeline: view();
  animation-range: entry 5% cover 36%;
}

.page-template-home_tmpl .flg-gallery-tile--1,
.page-template-home_tmpl .flg-gallery-tile--5 {
  grid-row: span 2;
}

.page-template-home_tmpl .flg-gallery-tile--4 {
  grid-column: span 2;
}

.page-template-home_tmpl .flg-gallery-tile img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  transition: transform 900ms ease, filter 500ms ease;
}

.page-template-home_tmpl .flg-gallery-tile:hover img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.08);
}

.page-template-home_tmpl .flg-gallery-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.78);
}

.page-template-home_tmpl .flg-process-ribbon {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.16);
}

.page-template-home_tmpl .flg-process-step {
  min-height: 300px;
  padding: clamp(24px, 3vw, 34px);
  background: rgba(11, 18, 9, 0.42);
  backdrop-filter: blur(10px);
  transition: background-color 260ms ease, transform 260ms ease;
}

.page-template-home_tmpl .flg-process-step:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.13);
}

.page-template-home_tmpl .flg-process-step span {
  display: block;
  margin-bottom: 82px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 64px;
  line-height: 1;
  font-weight: 900;
}

.page-template-home_tmpl .flg-process-step h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 26px;
  text-transform: uppercase;
}

.page-template-home_tmpl .flg-process-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.55;
}

.page-template-home_tmpl .flg-final-frame {
  display: grid;
  align-content: center;
  max-width: 760px;
  min-height: 100dvh;
  margin-left: auto;
}

.page-template-home_tmpl .flg-final-frame h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.92;
  font-weight: 900;
  text-shadow: 0 5px 28px rgba(0, 0, 0, 0.72);
}

.page-template-home_tmpl .flg-final-frame p:not(.flg-kicker) {
  max-width: 600px;
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.5;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.72);
}

@keyframes flg-fade-up {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes flg-reveal {
  from {
    opacity: 0;
    transform: translateY(42px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes flg-orbit {
  to {
    transform: rotate(360deg);
  }
}
@keyframes flg-signal {
  0%, 100% {
    transform: scaleX(0.42);
    opacity: 0.4;
  }
  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}
@supports not (animation-timeline: view()) {
  .page-template-home_tmpl .flg-observe h2,
  .page-template-home_tmpl .flg-lens,
  .page-template-home_tmpl .flg-gallery-tile {
    opacity: 1;
    transform: none;
    animation: flg-fade-up 800ms ease both;
  }
}
@media (max-width: 979px) {
  .page-template-home_tmpl .flg-service-lenses,
  .page-template-home_tmpl .flg-process-ribbon {
    grid-template-columns: 1fr 1fr;
  }
  .page-template-home_tmpl .flg-gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 639px) {
  .page-template-home_tmpl .flg-home {
    scroll-snap-type: y proximity;
  }
  .page-template-home_tmpl .flg-scene {
    min-height: 100svh;
  }
  .page-template-home_tmpl .flg-scene::after {
    background: linear-gradient(90deg, rgba(7, 12, 5, 0.84), rgba(7, 12, 5, 0.34)), linear-gradient(0deg, rgba(7, 12, 5, 0.78), transparent 46%);
  }
  .page-template-home_tmpl .flg-hero__frame,
  .page-template-home_tmpl .flg-observe,
  .page-template-home_tmpl .flg-servicescape,
  .page-template-home_tmpl .flg-gallery-wall,
  .page-template-home_tmpl .flg-process-map,
  .page-template-home_tmpl .flg-final-frame {
    padding-top: 96px;
    padding-bottom: 44px;
  }
  .page-template-home_tmpl .flg-hero__frame,
  .page-template-home_tmpl .flg-final-frame {
    min-height: 100svh;
  }
  .page-template-home_tmpl .flg-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .page-template-home_tmpl .flg-button {
    width: 100%;
  }
  .page-template-home_tmpl .flg-scene__ambient,
  .page-template-home_tmpl .flg-hero__signal {
    display: none;
  }
  .page-template-home_tmpl .flg-service-lenses,
  .page-template-home_tmpl .flg-process-ribbon,
  .page-template-home_tmpl .flg-gallery-grid {
    grid-template-columns: 1fr;
  }
  .page-template-home_tmpl .flg-lens,
  .page-template-home_tmpl .flg-process-step {
    min-height: auto;
  }
  .page-template-home_tmpl .flg-lens__icon,
  .page-template-home_tmpl .flg-process-step span {
    margin-bottom: 34px;
  }
  .page-template-home_tmpl .flg-gallery-grid {
    grid-auto-rows: minmax(220px, 34vh);
  }
  .page-template-home_tmpl .flg-gallery-tile--1,
  .page-template-home_tmpl .flg-gallery-tile--4,
  .page-template-home_tmpl .flg-gallery-tile--5 {
    grid-column: auto;
    grid-row: auto;
  }
}
@media (min-width: 780px) {
  .page-template-home_tmpl .site-topbar {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 970;
    background: rgba(8, 14, 6, 0.34);
    backdrop-filter: blur(10px);
  }
  .page-template-home_tmpl .site-header {
    position: absolute;
    left: 0;
    top: 34px;
    width: 100%;
    background: transparent;
    box-shadow: none;
  }
  .page-template-home_tmpl .site-header.is-sticky {
    position: fixed;
    top: 0;
    background: rgba(8, 14, 6, 0.88);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(14px);
  }
}
.page-template-homev2_tmpl .site-header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 970;
  background: transparent;
  box-shadow: none;
}
.page-template-homev2_tmpl .site-header__inner {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.65);
}
.page-template-homev2_tmpl .social-media a {
  color: #fff;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.65));
}
.page-template-homev2_tmpl .social-media a:hover, .page-template-homev2_tmpl .social-media a:focus-visible {
  color: var(--hs-color-accent);
}
.page-template-homev2_tmpl #footer {
  display: none;
}
.page-template-homev2_tmpl #main {
  position: relative;
}
.page-template-homev2_tmpl #main .content {
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.75);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  z-index: 940;
  display: flex;
  justify-content: center;
  align-items: start;
  padding: 60px 0 0;
}
.page-template-homev2_tmpl #main .content * {
  color: inherit;
  text-shadow: inherit;
}
.page-template-homev2_tmpl #main .content .brand {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}
.page-template-homev2_tmpl #main .content .wp-block-heading {
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
}
.page-template-homev2_tmpl .slick-carousel {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.page-template-homev2_tmpl .slick-carousel .slick-list,
.page-template-homev2_tmpl .slick-carousel .slick-track {
  height: 100dvh;
}
.page-template-homev2_tmpl .slick-carousel .slick-track {
  display: flex;
}
.page-template-homev2_tmpl .slick-carousel .slick-slide {
  height: 100dvh;
  max-height: 100vh !important;
}
.page-template-homev2_tmpl .slick-carousel .slick-slide > div {
  height: 100%;
}
.page-template-homev2_tmpl .slick-carousel .slick-slide.wp-video * {
  max-height: 100%;
}
.page-template-homev2_tmpl .slick-carousel img,
.page-template-homev2_tmpl .slick-carousel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-template-homev2_tmpl .slick-thumbnail {
  position: absolute;
  left: 50%;
  bottom: 30px;
  z-index: 950;
  width: min(800px, 100% - 40px);
  margin: 0;
  padding: 10px 30px;
  transform: translateX(-50%);
}
.page-template-homev2_tmpl .slick-thumbnail .slick-slide {
  width: 110px;
  height: 80px;
  object-fit: cover;
  margin: 0 10px;
  transition: 500ms;
  cursor: pointer;
}
.page-template-homev2_tmpl .slick-thumbnail .slick-slide img,
.page-template-homev2_tmpl .slick-thumbnail .slick-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-template-homev2_tmpl .slick-thumbnail .slick-slide.slick-current {
  transform: scale(0.85);
  box-shadow: 0 0 10px 5px white;
}

body.page-template-us_tmpl {
  background-color: #fff;
  background-image: url("../images/cardos-color.webp");
  background-repeat: no-repeat;
  background-position: right 120px;
  background-size: min(48vw, 620px) auto;
  background-attachment: fixed;
}

.page-template-us_tmpl #main {
  position: relative;
  isolation: isolate;
}
.page-template-us_tmpl #titlePage,
.page-template-us_tmpl #resumen,
.page-template-us_tmpl #mision,
.page-template-us_tmpl #me {
  position: relative;
  z-index: 1;
}
.page-template-us_tmpl #titlePage {
  padding-top: 52px;
  padding-bottom: 34px;
}
.page-template-us_tmpl #titlePage h3 {
  margin-bottom: 24px;
  color: var(--hs-color-primary);
  font-size: clamp(26px, 3vw, 32px);
  text-transform: uppercase;
}
.page-template-us_tmpl #titlePage h4 i {
  display: block;
  max-width: 520px;
  margin: 0 auto;
  color: var(--hs-color-primary);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.2;
}
.page-template-us_tmpl #resumen {
  display: grid;
  gap: 30px 0;
  padding-top: 18px;
}
.page-template-us_tmpl #resumen .feature {
  height: 300px;
}
.page-template-us_tmpl #resumen .feature > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-template-us_tmpl #resumen .feature > span {
  display: block;
  text-align: center;
  font-size: 12px;
}
.page-template-us_tmpl #resumen .feature-2 {
  grid-row: 3;
}
.page-template-us_tmpl #resumen .feature-2 > img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.page-template-us_tmpl .beneficios .list {
  display: grid;
  gap: 28px 0;
  padding: 0;
}
.page-template-us_tmpl .beneficios .list li {
  align-content: center;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 18px;
}
.page-template-us_tmpl .beneficios .list li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  font-size: 18px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--hs-color-primary);
}
.page-template-us_tmpl .beneficios .list li h3 {
  margin: 0;
  color: var(--hs-color-primary);
  font-size: clamp(23px, 2.5vw, 30px);
  line-height: 1;
  text-shadow: 0 0 2px rgba(0, 0, 0, 0.65);
}
.page-template-us_tmpl .descripcion {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-self: flex-start;
  justify-content: start;
  gap: 24px;
}
.page-template-us_tmpl .descripcion p {
  margin: 5px;
  font-size: 14px;
  line-height: 1.6;
}
.page-template-us_tmpl .descripcion .button {
  width: max-content;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 3px;
  background: var(--hs-color-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
.page-template-us_tmpl #mision {
  position: relative;
  min-height: 600px;
  margin-bottom: 80px;
}
.page-template-us_tmpl #mision > * {
  position: absolute;
  width: 400px;
  max-width: 80%;
}
.page-template-us_tmpl #mision .left {
  left: 15px;
  height: 0;
}
.page-template-us_tmpl #mision .right {
  right: 15px;
  bottom: 0;
}
.page-template-us_tmpl #mision .card {
  border: solid 1px #efefef;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 30px 26px;
  text-align: center;
  color: var(--hs-color-muted);
}
.page-template-us_tmpl #mision .card h3 {
  color: var(--hs-color-primary);
  font-size: clamp(24px, 2.4vw, 32px);
}
.page-template-us_tmpl #mision .card p {
  font-size: 15px;
  line-height: 1.65;
}
.page-template-us_tmpl #me h3 {
  color: var(--hs-color-primary);
  font-size: clamp(25px, 2.7vw, 34px);
}
.page-template-us_tmpl #me .content {
  display: grid;
  gap: 20px;
}
.page-template-us_tmpl #me .image span {
  display: block;
  text-align: center;
  font-size: 13px;
  opacity: 0.5;
}
.page-template-us_tmpl #me .text p {
  font-size: 16px;
  line-height: 1.65;
}
.page-template-us_tmpl #me .text strong,
.page-template-us_tmpl #me .text .bold {
  color: var(--hs-color-primary);
}

@media (min-width: 780px) {
  .page-template-us_tmpl #titlePage h4 i {
    display: inline;
  }
  .page-template-us_tmpl #resumen {
    grid-template-columns: 1fr 2fr;
    gap: 0 30px;
  }
  .page-template-us_tmpl #resumen .feature-2 {
    grid-row: inherit;
  }
  .page-template-us_tmpl .beneficios .list {
    grid-template-columns: 1fr 1fr;
    height: calc(100% - 40px);
  }
  .page-template-us_tmpl .descripcion {
    padding: 30px 20px 0 10px;
  }
  .page-template-us_tmpl #mision .left {
    left: 50%;
    transform: translate(-85%);
  }
  .page-template-us_tmpl #mision .right {
    right: 50%;
    transform: translate(85%);
  }
  .page-template-us_tmpl #me .content {
    grid-template-columns: 1fr 2fr;
  }
}
@media (max-width: 779px) {
  body.page-template-us_tmpl {
    background-position: right 150px;
    background-size: 420px auto;
  }
  .page-template-us_tmpl .beneficios .list li h3 {
    font-size: 22px;
  }
}
.page-template-service_tmpl #services > .container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

.page-template-service_tmpl #services .service {
  text-align: center;
  color: var(--hs-color-muted);
}

#cardServicies .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

@media (min-width: 780px) {
  .page-template-service_tmpl #services > .container {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 779px) {
  #cardServicies .container {
    grid-template-columns: repeat(2, 1fr);
  }
}
#flowWork .d-grid {
  gap: 30px;
}

#flowWork .column {
  position: relative;
  padding-top: 30px;
}
#flowWork .column .number {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 90px;
  line-height: 1;
  font-weight: 900;
  color: #000;
  opacity: 0.1;
}
#flowWork .column .title {
  padding-left: 20px;
  font-size: 22px;
}
#flowWork .column .text {
  font-size: 14px;
  color: #848484;
}

#paquetes {
  font-size: 14px;
}
#paquetes .d-grid {
  gap: 30px;
}
#paquetes p {
  margin: 0;
}
#paquetes .list {
  margin-top: 20px;
  padding-left: 20px;
}

#trabajosRealizados {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  padding-left: 0;
  padding-right: 0;
}
#trabajosRealizados .galerias {
  display: flex;
  flex-direction: column;
  justify-content: end;
  position: relative;
  height: 350px;
  overflow: hidden;
}
#trabajosRealizados .galerias .entry-image {
  width: 100%;
  height: 100%;
}
#trabajosRealizados .galerias .entry-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#trabajosRealizados .galerias .entry-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  transition: 500ms;
  padding: 5px;
  background-color: #ededed;
}

@media (min-width: 780px) {
  #trabajosRealizados {
    grid-template-columns: repeat(4, 1fr);
    padding-left: 30px;
    padding-right: 30px;
  }
  #trabajosRealizados .galerias .entry-footer {
    bottom: -100%;
    background-color: #fff;
    text-align: center;
    box-shadow: none;
  }
  #trabajosRealizados .galerias:hover .entry-footer {
    bottom: 0;
    box-shadow: 0 -10px 10px rgba(0, 0, 0, 0.3), inset 0 0 7px rgba(0, 0, 0, 0.3);
  }
}
.single-galerias .lightbox-gallery {
  display: grid;
  gap: 2px;
}
.single-galerias .lightbox-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 780px) {
  .single-galerias .lightbox-gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
  }
}
.page-template-blog_tmpl .grid-content {
  margin-bottom: 40px;
}

.single-post .container > h1 {
  margin-top: 40px;
}
