@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

a {
  color: black;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
table {
  border-spacing: 0;
}

body {
  line-height: 1.5;
  font-size: 3.2rem;
  -webkit-font-smoothing: antialiased;
  background-color: white;
  overscroll-behavior: none;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

img.with-fade {
  transition: opacity 0.5s ease;
}

img:not(.loaded) {
  opacity: 0 !important;
}

input, button, textarea, select {
  font: inherit;
}

p {
  text-wrap: pretty;
}

#root, #__next {
  isolation: isolate;
}

/* typography */
@font-face {
  font-family: "SohneMonoBuch";
  src: url("../fonts/sohne_mono_buch.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
@font-face {
  font-family: "SohneBreitBuch";
  src: url("../fonts/sohne_breit_buch.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
/* Defaults */
:root {
  --c-negro: #000000;
  --c-casinegro: #333333;
  --c-gris: #808080;
  --t-borde: 1rem;
  --t-sangria: 5.2rem;
}

/* Esto apunta al enlace generado automáticamente por iOS */
a[href^=tel],
a[href^=address],
a[href^=mailto],
a[x-apple-data-detectors] {
  color: inherit !important; /* Usa el color del texto circundante */
  text-decoration: none !important; /* Quita el subrayado */
  cursor: default !important; /* Evita el cursor de enlace */
}

/* base styles */
html {
  font-size: 0.69446vw;
  overflow-x: hidden;
  overscroll-behavior: none;
}

p {
  font-family: "SohneBreitBuch";
  font-size: 3.2rem;
  font-weight: 100;
  margin: 0.75rem 0;
}

h1, h2, .footer__menu-item {
  text-align: center;
  font-family: "SohneBreitBuch";
  font-size: 3.25rem;
  text-transform: uppercase;
  font-weight: 100;
  color: #333333;
}

.footer__menu-item, .blog-link {
  text-decoration: none;
}

.text-small {
  font-family: "SohneMonoBuch";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2rem;
  color: var(--c-gris);
}
.text-small a {
  text-decoration: none;
  color: var(--c-gris);
}
.text-small a:hover {
  opacity: 0.6;
}

.text-small.info {
  text-align: center;
}

.text-link {
  font-family: "SohneBreitBuch";
  font-size: 3.2rem;
  font-weight: 100;
}

.info {
  margin-top: 2.5rem;
}

.home .text-block__content {
  width: 81%;
}

.contacto .text-block__content {
  width: 70%;
}

.comunicacion .text-block__content {
  width: 68%;
}

.influencia .text-block__content {
  width: 70%;
}

.eventos .text-block__content {
  width: 70%;
}

/* banner */
.banner-section {
  position: relative;
}
.banner-section video.banner {
  width: 100%;
}
.banner-section .banner {
  line-height: 0;
}
.banner-section .banner img {
  width: 100vw;
}
.banner-section .banner-sound {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  color: white;
  cursor: pointer;
}

.subheading.home-subheading {
  margin-top: 19.8rem;
}

/* footer */
.footer-form {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-form .text-small {
  text-transform: unset;
}

.email-input {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid white;
  width: 35rem;
  color: white;
  font-family: "SohneMonoBuch";
  font-size: 1.25rem;
  margin-top: 1rem;
}

.email-input:focus {
  outline: none;
}

.footer-form-submit {
  font-family: "SohneMonoBuch";
  color: white;
  background-color: transparent;
  border: none;
  padding: 0;
  font-size: 1.2rem;
  cursor: pointer;
}

.footer {
  z-index: 11;
}

.footer-block {
  display: flex;
  flex-direction: column;
  margin-bottom: 6rem;
}

.footer-block__content {
  background-color: black;
}
.footer-block__content .img-pie {
  padding: var(--t-borde);
}
.footer-block__content .img-pie img {
  width: 100%;
  height: auto;
}

.footer-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: var(--t-borde);
  -moz-column-gap: var(--t-borde);
       column-gap: var(--t-borde);
}
.footer-block__grid > div {
  height: 25.3rem;
}
.footer-block__grid > div.fut2 {
  height: 30.2rem;
}

.footer-block p {
  color: white;
  margin: 0;
}
.footer-block p a {
  color: white;
}

.footer-block__credits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2rem var(--t-borde) 1rem;
  -moz-column-gap: var(--t-borde);
       column-gap: var(--t-borde);
}

.footer-block__credits p {
  font-size: 0.9rem;
}

/* sticky footer */
/* footer menu bar */
.footer {
  width: 100%;
  background-color: white;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 0;
  justify-content: center;
  flex-direction: column;
  transition: 0.5s ease all;
  height: 6rem;
}

.footer p {
  font-size: 3.6rem;
  margin: 0;
  transition: 0.5s ease all;
  cursor: pointer;
  color: black;
}

.footer.open p {
  color: white;
}

/* menu */
.footer.open {
  background-color: black;
  position: fixed;
  top: 0;
  left: 0;
}

.footer__menu {
  transition: 0.5s ease all;
  flex-direction: column;
  height: 100svh;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  background-color: black;
  display: flex;
  position: fixed;
  top: 100%;
}

.footer__menu-item {
  color: white;
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.1;
  cursor: pointer;
}
.footer__menu-item:hover {
  color: #878787;
}
.footer__menu-item.open:hover {
  color: white;
}

.footer__menu-item.secondary {
  color: #878787;
  text-transform: capitalize;
}

.footer__menu-item.secondary:hover {
  color: white;
}

.footer__menu-secondary-menu {
  overflow: hidden;
  height: 16rem;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
}
.footer__menu-secondary-menu.hidden {
  height: 0;
}

.footer__menu p {
  color: white;
  margin: 0 0 0.7rem 0;
}

.footer__menu-options {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer__menu-options .idiomas {
  padding-top: 2rem;
  display: flex;
  gap: 1.8rem;
  justify-content: center;
}
.footer__menu-options .idiomas .idioma-link {
  color: white;
  font-size: 1.8rem;
  line-height: 1.1;
  text-transform: uppercase;
  font-family: "SohneBreitBuch";
  text-decoration: none;
  cursor: pointer;
}
.footer__menu-options .idiomas .idioma-link:hover {
  color: #878787;
}
.footer__menu-options .idiomas .idioma-link.open:hover {
  color: white;
}

.footer__menu.open {
  top: 0;
}

/* text grid */
.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 7rem;
}
.grid.home-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}
.grid.home-grid::-webkit-scrollbar {
  display: none;
}
.grid.home-grid .grid__item {
  flex: 0 0 25%;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.grid.home-grid {
  /* Cuando hay 5 o más items, cambiamos el flex a 24% */
}
.grid.home-grid .grid__item:nth-last-child(n+5),
.grid.home-grid .grid__item:nth-last-child(n+5) ~ .grid__item {
  flex: 0 0 24%;
}
.grid__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5rem;
}

.grid__header .text-small {
  /* max-width: 70%; */
}

.grid__content {
  font-family: "SohneMonoBuch";
  font-size: 1.2rem;
  color: #333333;
  line-height: 1.5;
  /* flex-grow: 1; */
}

/* .grid.home-grid .grid__content {
	height: 40vh;
} */
.methods-grid .grid__header {
  height: 11rem;
}

.methods-grid {
  margin-top: 9rem;
  height: 34rem;
}

.grid__item {
  padding: 0 var(--t-borde);
  display: flex;
  flex-direction: column;
  border-right: 1px solid #bfbfbf;
}

.grid__item.grid__item-hidden, .cases-grid__item.grid__item-hidden, .cases-list__grid-row.grid__item-hidden {
  display: none;
}

/* header */
.header {
  width: 100%;
  overflow: hidden;
  transition: height 0.75s ease;
  position: relative;
  padding: var(--t-borde);
  mix-blend-mode: exclusion;
  z-index: 5;
}

/* Large and small containers */
.header__large,
.header__small {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.75s ease;
  line-height: 0;
}

/* Default state */
.header__large {
  opacity: 1;
}

.header__small {
  position: absolute;
  top: 0;
  left: 0;
}

/* Visibility toggles */
/* Logos */
.header__logo--large {
  width: 100%;
}

.header__logo--small {
  position: fixed;
  left: 50%;
  translate: -50% 0;
  transition: top 0.3s ease, opacity 0.3s ease;
  top: -6rem;
  z-index: 10;
  fill: white !important;
  height: 4.5rem;
  width: auto;
  opacity: 0;
}

.header__small.visible .header__logo--small {
  top: 1rem;
  opacity: 1;
}

.desktop-menu-logo {
  width: 6.4rem;
  margin-top: 2rem;
  height: 4.5rem;
}

/* image block */
.image-block .image-block__image {
  margin-top: 0;
}

.image-block__image {
  display: flex;
  justify-content: center;
  width: 100%;
  align-items: center;
  flex-direction: column;
  margin-top: 2rem;
}

.contenidos .image-block__image img {
  width: 70.5rem;
  height: 87.3rem;
}

.image-block__image img {
  width: 70.5rem;
  aspect-ratio: 824/1099;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-block__image.eventos-image {
  margin-top: 10rem;
  margin-bottom: 15rem;
}

.image-block__image.eventos-image img {
  width: 70.5rem;
  height: 87.3rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-block__image.influencia-image {
  margin: 10rem 0 20rem 0;
}

.image-block__image.influencia-image img {
  width: 70.5rem;
  height: 87.3rem;
}

/* image gallery */
.image-gallery.nosotros-image-gallery {
  margin-top: 10rem;
}
.image-gallery.comunicacion-image-gallery {
  margin: 10rem 0 12rem 0;
}
.image-gallery.eventos-image-gallery, .image-gallery.contenidos-image-gallery, .image-gallery.influencia-image-gallery {
  margin-top: 10rem;
  margin-bottom: 18rem;
}
.image-gallery .image-gallery__carousel {
  width: 100%;
  overflow: hidden; /* hide outer scrollbar, track will scroll */
}
.image-gallery .image-gallery__carousel .carousel__track {
  display: flex;
  gap: var(--t-borde);
  padding: 0 var(--t-borde);
  overflow-x: auto; /* the scrolling happens here */
}
.image-gallery .image-gallery__carousel .carousel__track .carousel__track-image {
  width: 40.8rem;
  height: 54.4rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 40.8/54.4;
}
.image-gallery .image-gallery__carousel .carousel__track::-webkit-scrollbar {
  display: none;
}

/* subheading */
.subheading {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: 0 var(--t-sangria);
}
.subheading h2 {
  line-height: 1.3;
  margin-bottom: 8rem;
  font-size: 3.6rem;
}
.subheading.subheading-footer {
  padding-top: 18rem;
  padding-bottom: 18rem;
}
.subheading.subheading-footer a {
  text-decoration: none;
  color: #808080 !important;
}
.subheading.subheading-footer h2 {
  margin-bottom: 2.5rem;
}

/* Header */
.text-block.nosotros-intro-block {
  margin-top: 3rem;
}

.text-block.nosotros-second-block {
  margin-top: 15rem;
}

.text-block__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 calc(var(--t-sangria) + var(--t-borde)) 2.2rem;
}

.text-block__content {
  width: 74.5%;
  padding-left: var(--t-borde);
}

.text-block__content p {
  margin-bottom: 1.5rem;
  line-height: 1.28;
  color: #333333;
}
.text-block__content p:last-child {
  margin-bottom: 0;
}

.text-block__content p:first-of-type {
  text-indent: var(--t-sangria);
}

.text-block__content .text-link {
  margin-left: var(--t-sangria);
  display: inline-block;
}
.text-block__content .text-link.link-fake {
  text-decoration: underline;
  cursor: pointer;
}

/* two image grid */
.double-image.contenidos-double-image {
  margin-top: 8rem;
  margin-bottom: 18rem;
}
.double-image.eventos-double-image {
  margin-top: 8rem;
}
.double-image .double-image__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0 var(--t-borde);
  gap: var(--t-borde);
  width: 100%;
}
.double-image .double-image__grid img {
  width: 100%;
  aspect-ratio: 705/940;
  -o-object-fit: cover;
     object-fit: cover;
}

.double-image-home {
  margin-top: 12rem;
}

/* dynamic media */
.dynamic-media {
  width: 100%;
  display: flex;
  justify-content: center;
}

.dynamic-media video,
.dynamic-media img {
  width: 70.5rem;
  height: 94rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* staff gallery */
.staff-gallery {
  padding: 0 var(--t-borde);
}

.staff-gallery-carousel__track {
  display: flex;
  max-width: 100vw;
  overflow-x: auto;
  gap: var(--t-borde);
}

.staff-gallery-carousel__track::-webkit-scrollbar {
  display: none;
}

.staff-gallery-carousel__item {
  width: 19.6vw;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
  gap: 1.5rem;
}

.staff-gallery-carousel__item .text-small {
  text-align: center;
}

.staff-gallery-image {
  max-width: unset;
  width: inherit;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  cursor: pointer;
}
.staff-gallery-image img {
  width: 100%;
  aspect-ratio: 282/462;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff-gallery-image .cora {
  position: absolute;
  width: 1.7rem;
  height: 1.7rem;
  right: 2rem;
  bottom: 1.8rem;
}
.staff-gallery-image .cora img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* double page */
.double-page-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.double-page-grid__image {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 376/502;
  width: 100%;
}

/* statistics grid */
.statistics-grid {
  display: flex;
  justify-content: space-around;
  row-gap: 8rem;
}
.statistics-grid .statistics-grid__item {
  width: 100%;
  height: 100%;
  display: flex;
  margin: 0 auto;
  padding: 0 1rem;
  justify-content: center;
  border-right: 1px solid #bfbfbf;
}
.statistics-grid .statistics-grid__item .sta-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 21rem;
  justify-content: flex-start;
  max-width: 30rem;
}

.statistics-grid__item-number {
  font-size: 5.1rem;
  font-weight: 500;
}

.statistics-grid__item .text-small {
  text-align: center;
}

/* clients */
.clients-gallery {
  display: flex;
  max-width: 100vw;
  overflow: auto;
  padding: 5rem 2rem 0 2rem;
  gap: 8rem;
}

.clients-gallery::-webkit-scrollbar {
  display: none;
}

.clients-gallery img {
  height: 4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

/* Marquesina infinita para medios-gallery */
.medios-gallery.marquee-wrapper {
  max-width: 100vw;
  overflow: hidden;
  padding: 5rem 0 0 0;
  display: block;
  pointer-events: none;
}

.marquee-track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scrollMarquee 30s linear infinite;
}

.marquee-content {
  display: flex;
  gap: 8rem;
  padding-right: 8rem;
  align-items: center;
  flex-shrink: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.marquee-content img {
  height: 4rem;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.4;
}

@keyframes scrollMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333333%);
  }
}
/* grid influencia */
.statistics-grid.grid-influencia {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.grid-influencia .text-small {
  height: 1.5rem;
}

/* grid eventos */
.statistics-grid.grid-eventos {
  grid-template-columns: 1fr 1fr;
}

.grid-eventos .statistics-grid__item {
  align-items: center;
}

.grid-eventos .text-small {
  width: 50%;
  height: auto;
}

/* text block - historias */
.content-historia p:last-of-type {
  text-indent: 5rem;
}

/* cases */
.cases-menu {
  display: flex;
  justify-content: space-between;
  height: 13.5rem;
  align-items: flex-start;
  margin: 4rem calc(var(--t-sangria) + var(--t-borde)) 0;
}
.cases-menu .text-small {
  color: var(--c-casinegro);
}
.cases-menu .text-small.text-der {
  text-align: end;
}

.cases-submenu {
  text-align: center;
  height: 8rem;
  transition: 0.5s ease all;
  overflow: hidden;
}

.cases-submenu .text-small {
  cursor: pointer;
}

.cases-submenu.hidden {
  height: 0;
}

#todos-proyectos, #listado-btn {
  cursor: pointer;
}

#imagenes-btn, #listado-btn {
  width: 7vw;
}

/* cases image grid */
.cases-grid.cases-hidden, .cases-list.cases-hidden {
  display: none;
}

.cases-grid {
  margin: 0 calc(var(--t-sangria) + var(--t-borde)) 5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  row-gap: 13rem;
  -moz-column-gap: 14rem;
       column-gap: 14rem;
}

.cases-grid .text-block__header {
  padding: 0;
  margin: 0;
}

@keyframes casesFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cases-grid__item {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0.75rem 0;
  opacity: 1;
}
.cases-grid:not(.revealed) .cases-grid__item {
  opacity: 0;
  animation: casesFadeIn 0.6s ease forwards;
}

.cases-grid__item_image {
  cursor: pointer;
}

.cases-grid__item_content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.cases-grid__item_content .text-small {
  color: var(--c-casinegro);
}

/* cases list */
.cases-list__table {
  margin: 0 calc(var(--t-sangria) + var(--t-borde)) 5rem;
}
.cases-list__table .cases-list__grid-row {
  cursor: pointer;
}

.cases-list__grid-headers, .cases-list__grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 0.2fr;
  border-bottom: solid 1px rgba(134, 134, 134, 0.5);
  padding: 1rem 0;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}

.cases-list__grid-row .text-small {
  color: black;
  text-decoration: none;
}

.cases-list__grid-row a.text-small {
  margin-left: auto;
}

#cases-list-see-more {
  text-align: right;
  cursor: pointer;
}

/* ficha de proyecto */
.project-info.project-page {
  padding-top: 8rem;
}

.project-title {
  padding: 1.5rem 0;
  position: sticky;
  top: 5rem;
  mix-blend-mode: exclusion;
}
.project-title h2 {
  color: white;
  font-size: 3.6rem;
}

.project-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  gap: 1rem;
  font-size: 1rem;
}
.project-images img {
  height: auto !important;
}
.project-images img.tamano-XS {
  width: 34.2rem !important;
}
.project-images img.tamano-S {
  width: 45.9rem !important;
}
.project-images img.tamano-M {
  width: 57.8rem !important;
}
.project-images img.tamano-L {
  width: 69.4rem !important;
}
.project-images img.tamano-XL {
  width: 93.5rem !important;
}

.project-img-prin {
  margin: 0 auto 1rem;
  width: 69.4rem;
  padding-top: 1rem;
}
.project-img-prin img {
  width: 100%;
  height: auto;
}

.modu-blog {
  width: 70.5rem;
  margin: 0 auto;
  margin-bottom: 9rem;
}
.modu-blog.intro {
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6rem;
}
.modu-blog.blog-images img.vertical {
  width: 46.5rem;
  height: auto;
  margin: 0 auto;
}
.modu-blog.blog-images img.horizontal {
  width: 100%;
  height: auto;
}
.modu-blog:last-child {
  margin-bottom: 0;
}

.blog-info img.vertical {
  width: 46.5rem;
  height: auto;
  margin: 0 auto;
}
.blog-info img.horizontal {
  width: 100%;
  height: auto;
}

.blog-info__content {
  margin-bottom: 3rem;
}
.blog-info__content.titu {
  text-align: center;
  margin-bottom: 3rem;
}
.blog-info__content .text-small {
  text-transform: unset;
  color: #333333;
}
.blog-info__content .text-small p {
  font-weight: 400;
  font-size: 1.2rem;
  font-family: "SohneMonoBuch";
}
.blog-info__content .text-small p:first-child {
  text-indent: 5rem;
}

.project-info {
  padding-top: 10rem;
  position: relative;
}
.project-info .info-ancla {
  position: absolute;
  top: 0rem;
  left: 0;
}

.project-info__title {
  margin-bottom: 4rem;
  font-size: 3.6rem;
}

.project-info__content {
  width: 69.8rem;
  margin: 0 auto;
  text-indent: 0;
}
.project-info__content.intro {
  text-align: center;
  margin-bottom: 5rem;
}
.project-info__content.descri .text-small p {
  text-indent: 5rem;
  font-family: "SohneMonoBuch";
  font-weight: 400;
  font-size: 1.2rem;
}

.project-info__content .text-small {
  color: #333333;
  text-transform: unset;
}

.project-info__content .text-small {
  text-indent: 0;
  margin: 1rem 0;
}

.project-menu {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 3rem 6rem;
  position: sticky;
  top: 0;
  z-index: 4;
}

.project-menu .text-small {
  color: black;
}
.project-menu .text-small:last-child a {
  cursor: pointer;
  color: black;
}

.project-info-modal {
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
  background-color: white;
}

/* cases listado hover */
.cases-list__image-container {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none; /* 👈 important */
}

.cases-list__grid-row:hover > .cases-list__image-container {
  display: flex;
}

.cases-list__image {
  width: 45.9rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

/* testimonios */
.testimonios-subheading h2 {
  margin-top: 3rem;
  width: 90vw;
}

.banner-section-image {
  width: 100vw;
}

.testimonials-grid {
  grid-row-gap: 6rem;
}

.testimonials-grid .grid__header {
  margin-bottom: 3rem;
  height: 5rem;
}

/* blog */
.blog-grid {
  grid-row-gap: 8rem;
}

.blog-grid .grid__item {
  justify-content: unset;
}
.blog-grid .grid__item a {
  text-decoration: none;
}

.blog-grid__item-top {
  margin-bottom: 6rem;
}

.blog-grid__item-image {
  margin-bottom: 1rem;
  aspect-ratio: 340/483;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.blog-grid__item-top .text-small {
  color: #999999;
}

.blog-grid__item-bottom .text-small:first-child {
  text-transform: unset;
  color: #333333;
  margin-bottom: 2.5rem;
}

.blog-menu {
  justify-content: center;
  height: 14vh;
}

/* ficha de blog (blog article) */
.blog-title {
  margin: 2rem auto 2.5rem;
  width: 80%;
}
.blog-title h1 {
  line-height: 1.2;
  font-size: 3.6rem;
}

/* contacto */
.contact-text-block {
  margin-bottom: 6rem;
}

.contact-image-block {
  margin-top: 10rem;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 5rem;
}

.contact-block .text-block__content p {
  margin: 0;
}
.contact-block .text-block__content p a {
  color: #333333;
  text-decoration: none;
  cursor: pointer !important;
}
.contact-block .text-block__content p a:hover {
  opacity: 0.7;
}
.contact-block .text-block__content p.dire {
  margin-bottom: 2rem;
}
.contact-block .text-block__content p.dire:last-of-type {
  margin-bottom: 0;
}

.contact-image {
  -o-object-fit: cover;
     object-fit: cover;
  width: 70.5rem;
  height: 94rem;
}

.footer-logo-mobile {
  display: none;
}

.mobile-menu-logo {
  display: none;
}

.blog-info.centrado {
  text-align: center;
}
.blog-info.centrado .text-small {
  text-indent: 0;
}

.modulo {
  padding-top: 9rem;
}
.modulo.con-titulo {
  padding-top: 18rem;
}
.modulo.con-titulo.anterior-hero {
  padding-top: 9rem;
}
.modulo.con-titulo .text-block__header .text-small:first-child {
  width: 35.8rem;
}
body.page-id-94 .modulo.con-titulo:nth-child(1) {
  padding-top: 0 !important;
}
.modulo.primer-bloque {
  padding-top: 0 !important;
}
body.page-id-74 .modulo:nth-child(2) {
  padding-top: 2rem !important;
}

.hacia-small {
  cursor: pointer;
}

.error404 .header {
  padding: 0;
}
.error404 .footer-block {
  margin-bottom: 0;
}
.error404 .header__logo--small {
  top: 1.5rem;
  opacity: 1;
}

.error-cuerpo {
  background-color: var(--c-negro);
}
.error-cuerpo .contain {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  line-height: 1 !important;
}
.error-cuerpo .contain h1 {
  color: white;
  font-family: "SohneMonoBuch";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.error-cuerpo .contain p {
  color: white;
  font-family: "SohneMonoBuch";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.error-cuerpo .contain a {
  color: white;
  font-family: "SohneMonoBuch";
  font-weight: 400;
  text-transform: uppercase;
  font-size: 1.2rem;
  text-decoration: none;
  cursor: pointer;
}
.error-cuerpo .contain a:hover {
  opacity: 0.7;
}

section.legal-cuerpo {
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
}
section.legal-cuerpo .formato {
  width: 100%;
  max-width: 70.5rem;
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.8);
}
section.legal-cuerpo .formato strong, section.legal-cuerpo .formato b {
  font-weight: 400;
  color: black;
}
section.legal-cuerpo .formato h2 {
  font-family: "SohneMonoBuch" !important;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: black;
  text-align: initial;
  margin-top: 2rem;
}
section.legal-cuerpo .formato h2:first-child {
  margin-top: 0;
}
section.legal-cuerpo .formato a {
  text-decoration: underline !important;
  cursor: pointer !important;
}
section.legal-cuerpo .formato p {
  font-family: "SohneMonoBuch" !important;
  font-weight: 400;
  font-size: 1.2rem;
}
section.legal-cuerpo .formato ul {
  font-family: "SohneMonoBuch" !important;
  font-weight: 400;
  font-size: 1.2rem;
}
section.legal-cuerpo .formato table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0;
}
section.legal-cuerpo .formato table th {
  font-family: "SohneMonoBuch" !important;
  font-weight: 400;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: white;
}
section.legal-cuerpo .formato table td {
  font-family: "SohneMonoBuch" !important;
  font-weight: 400;
  font-size: 1.2rem;
}

@media screen and (width > 1920px) {
  html {
    font-size: 13.25px;
  }
  section.modulo.text-block {
    width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  section.modulo.image-block {
    width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  section.modulo.double-image {
    width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  .text-block__header {
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  .cases-menu {
    width: 1740px;
    margin-left: auto;
    margin-right: auto;
  }
  .cases-grid, .cases-list {
    width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  .project-menu {
    width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  .project-images {
    width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
  .contact-block {
    width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (width < 1200px) {
  :root {
    --t-borde: 1.2rem;
  }
  .text-small {
    font-size: 1.4656rem;
  }
  html {
    font-size: 0.8vw;
  }
  .home .text-block__content {
    width: 85%;
  }
  .subheading h2 {
    font-size: 4.2rem;
    margin-bottom: 6.5rem;
  }
  .modulo.con-titulo .text-block__header .text-small:first-child {
    width: 37.2rem;
  }
  .image-gallery .image-gallery__carousel .carousel__track .carousel__track-image {
    width: 36.63rem;
    height: auto;
  }
  .grid .grid__header {
    margin-bottom: 5.8rem;
  }
  .grid .grid__content {
    font-size: 1.5rem;
  }
  .home-grid {
    max-width: 100vw;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
  .home-grid::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }
  .home-grid .grid__item {
    flex: 0 0 29vw;
  }
  .staff-gallery-carousel__item {
    width: 27.5vw;
  }
  footer .footer-block__credits {
    padding: 2rem var(--t-borde) 1.5rem;
  }
  footer .email-input {
    width: 39.5rem;
  }
  .footer-block__grid > div {
    height: 31rem;
  }
  .footer-block__grid > div.fut2 {
    height: 36.5rem;
  }
  .grid.testimonios-grid {
    grid-row-gap: 8rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid.blog-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .grid.blog-grid .grid__content {
    font-size: 1.5rem;
  }
  .cases-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cases-list__grid-headers .text-small,
  .cases-list__grid-row .text-small {
    font-size: 1.4rem;
  }
  .footer-block__credits p {
    font-size: 1.1rem;
  }
  .blog-info__content .text-small p {
    font-size: 1.4656rem;
  }
  .image-block__image img {
    width: 82.16rem;
  }
  .statistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .cases-grid {
    row-gap: 9rem;
  }
  .project-info__content.descri .text-small p {
    font-size: 1.4656rem;
  }
  .cases-submenu {
    height: 9rem;
  }
  .grid.home-grid .grid__item {
    flex: 0 0 31%;
  }
}
@media screen and (width < 992px) {
  :root {
    --t-borde: 1.4rem;
    --t-sangria: 6.2rem;
  }
  html {
    font-size: 0.9vw;
  }
  .text-small {
    font-size: 1.7365rem;
  }
  p {
    font-size: 3.33rem;
  }
  .modulo.con-titulo .text-block__header .text-small:first-child {
    width: 42.8rem;
  }
  .info {
    margin-top: 2.3rem;
  }
  .subheading h2 {
    font-size: 4.05rem;
  }
  .home .text-block__content {
    width: 86%;
  }
  .banner-section {
    padding-bottom: 0;
  }
  .banner-section img {
    width: 100%;
    aspect-ratio: 770/1024;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .text-block__content p {
    margin-bottom: 1.5rem;
    line-height: 1.37;
  }
  .banner-section video.banner {
    width: 100%;
    aspect-ratio: 770/1024;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .home-grid .grid__item {
    flex: 0 0 43.5vw;
  }
  .grid {
    margin-top: 0;
  }
  .grid .grid__header {
    margin-bottom: 7.2rem;
  }
  .grid .grid__content {
    font-size: 1.8rem;
  }
  footer .email-input {
    width: 47.5rem;
  }
  .email-input {
    margin-top: 1.5rem;
  }
  .footer-form {
    gap: 0.7rem;
  }
  .footer-form-submit {
    font-size: 1.7rem;
  }
  footer .footer-block__credits .text-small {
    font-size: 1.3rem;
  }
  footer .footer-block__credits {
    padding: 2.8rem 1rem 1.5rem;
  }
  .grid.testimonios-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid.blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .grid.blog-grid .grid__content {
    font-size: 1.8rem;
  }
  .text-block__content {
    width: 86.5%;
  }
  .staff-gallery-carousel__item {
    width: 38.5vw;
  }
  .staff-gallery-carousel__item .text-small {
    line-height: 1.4;
  }
  .cases-grid__item_content {
    gap: 0.6rem;
  }
  .cases-list__grid-headers, .cases-list__grid-row {
    grid-template-columns: 1fr 1fr 1fr 0.2fr;
    padding: 1rem 0;
  }
  .cases-list__grid-headers > div:first-child, .cases-list__grid-row > div:first-child {
    display: none;
  }
  .subheading {
    padding: 0 var(--t-sangria);
  }
  .cuatrocol h2 {
    font-size: 3.8rem;
    margin-bottom: 12rem;
  }
  .image-gallery .image-gallery__carousel .carousel__track .carousel__track-image {
    width: 42.83rem;
  }
  .footer__menu-item {
    font-size: 4.055rem;
  }
  .footer__menu-secondary-menu {
    height: 18rem;
  }
  .blog-info__content .text-small p {
    font-size: 1.7365rem;
  }
  .staff-gallery-image {
    cursor: default !important;
  }
  body.page-id-94 .image-block__image img {
    width: 100%;
  }
  .image-block__image img {
    width: 95.49rem;
  }
  .project-info__content.descri .text-small p {
    font-size: 1.7365rem;
  }
  .cases-submenu {
    height: 10rem;
  }
  .grid.home-grid .grid__item {
    flex: 0 0 44%;
  }
}
@media screen and (width < 768px) {
  :root {
    --t-borde: 0.75rem;
    --t-sangria: 3.3rem;
  }
  html {
    font-size: 2.25vw;
  }
  .text-small {
    font-size: 1.4rem;
  }
  p {
    font-size: 2.035rem;
  }
  h2 {
    font-size: 1.9rem;
  }
  .subheading {
    padding: 0 var(--t-borde);
  }
  .subheading h2 {
    font-size: 2.35rem;
    margin-bottom: 5.5rem;
  }
  .header__logo--small {
    height: 4.4rem;
    width: 6.26rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .text-block__content {
    width: 90%;
  }
  .text-block__content p {
    margin-bottom: 1.5rem;
  }
  .text-small.info {
    margin-top: 1.6rem;
  }
  /* home */
  .banner {
    height: 59rem;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .image-block.home-first-image {
    margin-top: 10rem;
  }
  .home-first-image img {
    width: 37rem;
    height: 49rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .text-block__header .text-small:first-child {
    width: 88%;
  }
  .text-block__header .text-small:first-child br {
    display: none;
  }
  .home .text-block__content {
    width: 90%;
  }
  .text-block__header div:first-child {
    width: auto;
  }
  .image-block .image-block__image {
    padding: 0 calc(var(--t-sangria) + var(--t-borde));
  }
  body.page-id-94 .image-block .image-block__image {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.page-id-94 .image-block .image-block__image img {
    width: 100% !important;
  }
  .image-gallery .image-gallery__carousel .carousel__track .carousel__track-image {
    width: 31.6rem;
  }
  .carousel__track {
    gap: 1rem;
    padding: 1rem;
  }
  .double-image .double-image__grid {
    grid-template-columns: 1fr;
  }
  .double-image .double-image__grid img:nth-child(2) {
    display: none;
  }
  .double-image.double-image-home {
    margin-top: 35rem;
  }
  .subheading.home-subheading {
    margin-top: 15rem;
  }
  .subheading.home-subheading h2 {
    margin: 0;
  }
  .grid {
    max-width: 100vw;
    overflow: auto;
  }
  .grid .grid__header {
    margin-bottom: 6rem;
  }
  .grid .grid__content {
    font-size: 1.3rem;
  }
  .grid::-webkit-scrollbar {
    display: none;
  }
  .grid.home-grid .grid__content {
    height: auto;
    margin: 0;
  }
  .home-grid .grid__item {
    flex: 0 0 82vw;
  }
  .double-image.double-image-home {
    margin-top: 12rem;
  }
  .subheading.subheading-footer br {
    display: none;
  }
  .subheading.subheading-footer h2 {
    margin-bottom: 1rem;
  }
  .footer-block {
    margin-bottom: 6rem;
  }
  .footer-block__content {
    margin-top: 0;
  }
  .footer-block__grid {
    display: flex;
    flex-direction: column;
  }
  .footer-block__grid > div {
    height: auto;
  }
  .footer-block__grid > div:first-child,
  .footer-block__grid > div:nth-child(2),
  .footer-block__grid > div:last-child {
    padding-bottom: 11rem;
  }
  .footer-block__grid > div:nth-child(3) {
    padding-bottom: 5rem;
  }
  .footer-logo-desktop {
    display: none;
  }
  .footer-logo-mobile {
    display: block;
  }
  .footer-block__credits {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 1rem 1rem 1rem 1rem !important;
  }
  .footer-block__credits .text-small {
    font-size: 1.06rem !important;
  }
  .footer-block__credits .text-small:first-child {
    display: flex;
    flex-direction: column-reverse;
  }
  .footer-block__credits .text-small:first-child span {
    display: block;
  }
  .footer-block__credits .text-small:last-child {
    display: flex;
    justify-content: space-between;
    width: 75%;
  }
  .footer-block__credits p {
    font-size: 1rem;
  }
  .footer {
    height: 6rem;
  }
  .footer p {
    font-size: 1.9rem;
  }
  .footer__menu-item {
    font-size: 3.8rem;
  }
  .footer-form {
    gap: 1rem;
  }
  .footer-form-submit {
    font-size: 1.3rem;
  }
  .footer-block__grid > div:nth-child(2) {
    height: 23rem;
  }
  .footer-block__grid > div.fut2 {
    height: auto;
  }
  .footer-block__grid > div:nth-child(4) {
    height: 17.5rem;
  }
  .email-input {
    width: 100%;
    height: 1.3rem;
    font-size: 1.3rem;
    padding: 1rem 0;
    margin-top: 0.3rem;
  }
  .mobile-menu-logo {
    padding: var(--t-borde);
    display: block;
  }
  .footer__menu-cerrar {
    height: 6rem;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .footer__menu-options {
    justify-content: flex-end;
    margin-bottom: 1rem;
  }
  .footer__menu-secondary-menu {
    height: 17rem;
  }
  .footer__menu-item:hover {
    color: white;
  }
  /* nosotros */
  .dynamic-media video, .dynamic-media img {
    width: 33rem;
    height: 44rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .image-gallery.nosotros-image-gallery {
    margin-top: 5rem;
  }
  .text-block__content .text-link {
    font-size: 2.04rem;
  }
  .staff-gallery-carousel__item {
    width: 71.5vw;
  }
  .staff-gallery-carousel__track {
    gap: 1rem;
  }
  .statistics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: initial;
    gap: 0;
    row-gap: 5rem;
  }
  .statistics-grid .statistics-grid__item .sta-wrapper {
    gap: 14rem;
  }
  .statistics-grid .statistics-grid__item .text-small {
    height: auto;
  }
  .statistics-grid__item-number {
    font-size: 3.8rem;
  }
  .clients-gallery {
    gap: 4rem;
  }
  .marquee-content {
    gap: 4rem;
    padding-right: 4rem;
  }
  .clients-gallery img, .marquee-content img {
    height: 4rem;
    max-width: 17rem;
  }
  .methods-grid .grid__header {
    margin-bottom: 19rem;
  }
  .double-page-grid {
    grid-template-columns: 1fr;
  }
  .double-page-grid img:nth-child(2) {
    display: none;
  }
  /* influencia */
  .statistics-grid.grid-influencia {
    grid-template-columns: 1fr 1fr;
  }
  /* eventos */
  .grid-eventos .text-small {
    width: auto;
  }
  .statistics-grid__item {
    justify-content: unset;
  }
  /* cases */
  .cases-menu {
    margin: 1rem var(--t-borde);
    height: 10rem;
  }
  #imagenes-btn, #listado-btn {
    width: 21vw;
  }
  #listado-btn {
    text-align: right;
  }
  .cases-submenu {
    height: 12vh;
  }
  .cases-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 5rem;
    -moz-column-gap: 4.6rem;
         column-gap: 4.6rem;
    margin: 0 2.4rem 5rem;
  }
  .project-images__image {
    height: auto;
    width: 70vw;
  }
  .project-images {
    font-size: 0.617rem;
    width: auto;
    margin: 0 var(--t-borde);
    gap: var(--t-borde);
  }
  .project-images img {
    max-width: 100% !important;
  }
  .project-images img.tamano-XS {
    width: 22.9rem !important;
  }
  .project-images img.tamano-S {
    width: 26.3rem !important;
  }
  .project-images img.tamano-M {
    width: 33rem !important;
  }
  .project-images img.tamano-L {
    width: 33rem !important;
  }
  .project-images img.tamano-XL {
    width: 39.8rem !important;
  }
  .cases-list__grid-headers, .cases-list__grid-row {
    grid-template-columns: 1fr 1fr;
  }
  .cases-list__grid-headers .text-small:first-child,
  .cases-list__grid-row .text-small:first-child,
  #cases-list-see-more,
  .cases-list__grid-headers div:last-child,
  .cases-list__grid-row div:last-child,
  .cases-list__grid-headers .text-small:nth-child(4),
  .cases-list__grid-row .text-small:nth-child(4) {
    display: none;
  }
  .cases-list__grid-headers, .cases-list__grid-row {
    padding: 1rem 0;
  }
  .cases-list__grid-headers > a, .cases-list__grid-row > a {
    display: none;
  }
  .cases-list__table {
    margin: 0 var(--t-borde) 5rem;
  }
  .cases-list__image {
    height: 60vh;
  }
  /* ficha de proyecto */
  .project-info__content {
    width: 100vw;
    padding: 0 2rem;
  }
  /* testimonios */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid .grid__item {
    width: 100vw;
  }
  .testimonials-grid .grid__content, .blog-grid__item-bottom {
    border-bottom: 1px solid #bfbfbf;
  }
  .testimonials-grid .grid__header, .testimonials-grid .grid__content {
    height: auto;
    margin-bottom: 0;
  }
  .testimonials-grid .grid__content {
    padding: 16rem 0 3rem 0;
  }
  /* blog */
  .blog-grid {
    gap: 2rem;
  }
  .blog-grid .grid__item {
    margin: 0;
    width: 100vw;
  }
  .grid.blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid__item-top .text-small {
    margin-bottom: 11rem;
  }
  .blog-link {
    margin-top: 8rem;
    display: inline-block;
  }
  .blog-grid__item-bottom {
    padding-bottom: 20rem;
  }
  /* contacto */
  .contact-block .text-block__content p {
    margin: 0;
  }
  .contact-image {
    height: 80vh;
    width: 100vw;
  }
  /* logo menu */
  .desktop-menu-logo {
    display: none;
  }
  /* nosotros */
  .text-block.nosotros-second-block {
    margin-top: 12rem;
  }
  .staff-gallery {
    padding-bottom: 4.5rem;
  }
  .nosotros-block-2 .text-small:first-child {
    width: 85%;
  }
  .grid.testimonios-grid {
    grid-template-columns: 1fr;
    gap: 6.5rem;
  }
  .grid.testimonios-grid .grid__item {
    width: 100%;
    border-left: 0 none !important;
    padding: 0 1rem 1rem;
    position: relative;
  }
  .grid.testimonios-grid .grid__item:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 1px;
    background-color: #bfbfbf;
  }
  .grid.testimonios-grid .grid__content {
    font-size: 1.3rem;
  }
  .blog-images, .blog-info {
    width: 100%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .blog-images img {
    height: auto;
  }
  .grid.blog-grid .grid__item {
    padding: 0 1rem;
  }
  .grid.blog-grid .text-small {
    margin-bottom: 0;
  }
  .grid.blog-grid .grid__content {
    font-size: 1.3rem;
  }
  .grid.blog-grid .blog-link {
    margin-top: 0;
  }
  .grid.blog-grid .blog-grid__item-bottom {
    padding-bottom: 2rem;
  }
  .modulo {
    padding-top: 6.5rem;
  }
  .modulo.con-titulo {
    padding-top: 13rem;
  }
  .modulo.con-titulo.anterior-hero {
    padding-top: 6.5rem;
  }
  .modulo.con-titulo .text-block__header {
    padding-bottom: 1.5rem;
  }
  .blog-title {
    width: auto;
    margin-left: var(--t-borde);
    margin-right: var(--t-borde);
  }
  .blog-title h1 {
    font-size: 2.36rem;
  }
  .modu-blog.intro {
    margin-bottom: 5rem;
  }
  .modu-blog.blog-images img.vertical, .blog-info img.vertical {
    width: 28.17rem;
  }
  .blog-info__content .text-small p {
    font-size: 1.4rem;
  }
  .cases-list__grid-row .cases-list__image-container {
    display: none !important;
  }
  footer .email-input {
    width: 100%;
  }
  .project-menu {
    padding: 3rem var(--t-borde) 1rem;
  }
  .project-title h2 {
    font-size: 2.36rem;
  }
  .project-img-prin {
    width: 35.4rem;
  }
  .project-info__content.descri .text-small p {
    font-size: 1.4rem;
    text-indent: 4rem;
  }
  .project-info {
    padding-top: 8.2rem;
  }
  .project-info__title {
    font-size: 2.36rem;
  }
  .subheading.subheading-footer {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
  .text-block__header {
    padding: 0 calc(var(--t-sangria) + var(--t-borde)) 0.8rem;
  }
  .text-block__content .text-link.link-fake {
    position: relative;
    top: -1.4rem;
  }
  .error-cuerpo .contain p {
    font-size: 1.4rem;
  }
  .error-cuerpo .contain a {
    font-size: 1.4rem;
  }
  .error-cuerpo .contain h1 {
    font-size: 1.4rem;
  }
  .grid.home-grid .grid__item {
    flex: 0 0 83%;
  }
  .project-info .info-ancla {
    top: -0.6rem;
  }
}/*# sourceMappingURL=main.css.map */