/*--------------------- TIPOGRAFÍA ---------------------*/
.body-escalando{
/*- Fuente predeterminada -*/
font-family: "Work Sans", sans-serif;
font-weight: 450;
color: var(--negro-escalando);
/*- Variables de color -*/
--rojo-escalando: #F83D44;
--negro-escalando: #141414;
/*- Variables para tamaño de fuente -*/
/*- Sobreescribimos estas variables para los elementos hijos
de .body-escalando. Esto porque el tema usa un root size de 14.5px,
pero escalando usa un root size de 16px -*/
--fz-9pt: 11.2px;
--fz-10pt: 12.8px;
--fz-12pt: 16px;
--fz-14pt: 18px;
--fz-16pt: 20.8px;
--fz-17pt: 22.4px;
--fz-18pt: 24px;
--fz-20pt: 26px;
--fz-24pt: 32px;
--fz-26pt: 34.56px;
--fz-28pt: 36.8px;
--fz-30pt: 40px;
--fz-35pt: 46.4px;
--fz-40pt: 52.8px;
--fz-48pt: 64px;
--fz-50pt: 67.2px;
}

.body-escalando *{
	font-weight: inherit;
}

.texto-titulo {
  font-size: var(--fz-30pt);
  line-height: normal;
  color: var(--rojo-escalando);
  text-decoration: underline;
}

.escalando-bw .texto-titulo{
  color: white;
}

.texto-menu {
  font-size: var(--fz-28pt);
  line-height: normal;
  text-decoration: none;
  color: var(--rojo-escalando);
}

.escalando-bw .texto-menu {
  color: white;
}

.texto-subtitulo {
  font-size: var(--fz-28pt);
  line-height: normal;
  color: var(--rojo-escalando);
  text-decoration: underline;
}

.texto-agenda {
  font-size: var(--fz-24pt);
  font-weight: 400;
  line-height: normal;
  font-family: Rubik, sans-serif;
  color: white;
  text-decoration: none;
  text-transform: uppercase;
}

.texto-soundcloud {
  font-size: var(--fz-16pt);
  line-height: normal;
  font-family: Rubik, sans-serif;
  color: white;
  text-transform: uppercase;
}

.texto-cuerpo {
  font-size: var(--fz-16pt);
  line-height: 1.5em;
}

.single-escalando .texto-principal .texto-cuerpo {
  color: white;
}

.texto-cuerpo em {
  font-style: italic;
}

.texto-cuerpo u {
  text-decoration: underline;
}

.creditos .texto-cuerpo {
  line-height: 1.2em;
}

.texto-cargo {
  font-size: var(--fz-12pt);
  line-height: normal;
}

.banner-superior{
	text-decoration: none;
}

.banner-superior h1,
span.banner-superior-title{
	font-family: Jomhuria;
	text-transform: uppercase;
	color: white;
	font-size: 180px;
	transform: scale(1.1,1);
	transform-origin: 0 0;
	letter-spacing: 0.015em;
}

.banner-superior .banner-expo-subtitle{
	font-family: Rubik;
	color: white;
	text-transform: uppercase;
	font-size: var(--fz-20pt);
}

/*--------------------- DIAGRAMACIÓN ---------------------*/
.body-escalando{
  /*- Variable de borde -*/
  --peso-borde: 4px;
  --borde-escalando: var(--peso-borde) solid var(--negro-escalando);
  /*- Alto-masthead es igual a la función que usamos para definir la altura del header en el CSS principal -*/
  --alto-masthead: calc(var(--top-margin)*2 + var(--logo-h));
}

.logged-in .body-escalando{
	/*- Si estamos loggeados, sumamos los 32px de la barra de wp -*/
	--alto-masthead: calc(var(--top-margin)*2 + var(--logo-h) + 32px);
}

/*-- Estilos Proy Destacado --*/
a.proyecto-destacado-escalando::after{
    content: '';
    display: block;
    width: 20%;
    height: 20%;
    position: absolute;
    right: 5px;
    top: 5px;
    background-image: url('../assets/escalando-destacado.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right top;
    max-width: 300px;
    min-width: 100px;
    min-height: 80px;
}

.body-escalando * {
  /*- Border Box -*/
  box-sizing: border-box;
}

/*-- Estilos scroll --*/
html {
  overflow-x: hidden;
  overflow-y: hidden;
}

.contenedor-principal {
  --alto-total: calc(100vh - var(--alto-masthead));
  height: var(--alto-total);
  width: 100%;
  display: grid;
  --ancho-derecha: 70vw;
  grid-template-columns: 30% 70%;
}

/*-- COLUMNA IZQUIERDA --*/
.caja-lateral {
  height: inherit;
  overflow-x: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  border: var(--borde-escalando);
}

.caja-lateral::-webkit-scrollbar {
  width: 0px;
  background: transparent;
  display: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.banner-principal svg {
  width: 100%;
  height: auto;
  border-bottom: var(--borde-escalando);
}

.creditos {
  width: 100%;
  height: auto;
  padding-top: 4rem;
  padding-bottom: 4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.creditos>div {
  width: 50%;
  padding-right: 2rem;
  margin-bottom: 2rem;
}

.creditos>div:last-child {
  margin-bottom: 0;
}

/*-- COLUMNA CENTRAL Y DERECHA --*/
.wrapper-derecho {
  height: inherit;
  overflow-y: scroll;
  overflow-x: hidden;
  scrollbar-width: none;
  border: var(--borde-escalando);
  border-left: none;
}

.escalando-bw .wrapper-derecho {
  border-top: none;
  border-right: none;
}

.contenedor-derecho {
  display: flex;
  flex-direction: column;
}

.banner-superior {
  width: 100%;
  display: grid;
  height: 0;
  padding-top: 20.25%;
  position: relative;

  background-color: var(--negro-escalando);
  pointer-events: none;
}

.escalando-bw .banner-superior {
  border-left: var(--borde-escalando);
  border-color: white;
}

.banner-superior div.banner-content-responsive{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	
	display: flex;
	align-items: center;
}

.banner-superior-text{
	display: grid;
	grid-template-columns: min-content min-content;
	padding-left: 3rem;
}

svg.banner-decorative-icon{
	width: 25px;
	height: auto;
	align-self: center;
	margin-right: 35px;
}

.banner-superior h1,
span.banner-superior-title{
	margin-top: -0.2em;
	margin-bottom: -0.35em;
	margin-left: -0.02em;
}

.banner-superior h1,
span.banner-superior-title,
.banner-expo-subtitle{
	grid-column: 2;
}

.banner-superior .banner-expo-subtitle{
	margin-top: 0.1em;
}

.banner-superior .banner-expo-subtitle:first-of-type,
.banner-superior span.banner-superior-title + .banner-expo-subtitle:nth-of-type(2){
	margin-top: 0.3em;
}

/*-- COLUMNA CENTRAL --*/
.contenido-home {
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  border-top: var(--borde-escalando);
}

.escalando-bw .contenido-home {
  background-color: var(--negro-escalando);
  border-top: none;
}

.escalando-bw .contenido-home .texto-cuerpo {
  color: white;
}

.contenido-proyecto {
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(4, auto);
  border-top: var(--borde-escalando);
  background-color: var(--negro-escalando);
}

.escalando-bw.single-escalando .contenido-proyecto {
  border-top: none;
}

.texto-principal {
  width: 100%;
  border-right: var(--borde-escalando);
}

.escalando-bw .texto-principal {
  border: var(--borde-escalando);
  border-color: white;
}

.single-escalando .texto-principal {
  background-color: var(--negro-escalando);
  box-shadow: inset 0 4px 0 0 white;
  grid-row: 1/span 2;
}

.escalando-bw.single-escalando .texto-principal {
  box-shadow: none;
}

section.body-escalando:not(.index-escalando):not(.single-escalando) .texto-principal {
  border-bottom: var(--borde-escalando);
}

section.escalando-bw.body-escalando:not(.index-escalando):not(.single-escalando) .texto-principal {
  border-bottom-color: white;
}

.texto-principal>*:first-child {
  padding-top: 3rem;
}

.texto-principal>* {
  padding: 1.5rem 3rem 0 3rem;
}

.texto-principal>*:last-child {
  padding-bottom: 5rem;
}

.botones-proyecto {
  grid-row: 3;
  display: flex;
  align-self: end;
  border-right: var(--borde-escalando);
  border-bottom: var(--borde-escalando);
}

.escalando-bw .botones-proyecto {
  border-left: var(--borde-escalando);
  border-bottom: none;
  border-color: white;
}

.boton-proyecto {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 2em;
  box-sizing: border-box;
  align-self: flex-end;
  background-color: white;
  transition: 0.1s;
}

.escalando-bw .boton-proyecto {
  background-color: var(--negro-escalando);
}

.boton-proyecto:first-of-type {
  border-right: var(--borde-escalando);
}

.escalando-bw .boton-proyecto:first-of-type {
  border-right-color: white;
}


.boton-proyecto:only-child{
	width: 100%;
	border-right: none;
}

.boton-proyecto:hover {
  background-color: var(--rojo-escalando);
  color: white;
}

.escalando-bw .boton-proyecto:hover {
  background-color: white;
  color: var(--negro-escalando);
}

/*-- COLUMNA DERECHA --*/
.contenido-home{
	--button-count: 7;
}

.menu-escalando {
  width: 100%;
  --pad-vertical-botones: 5px;
  --pad-vertical-btn-agenda: 2em;
  /* Formula mágica: altura total vh - altura del banner que ocupa el banner segun su aspect ratio */
  /* min: suma de altura de textos + pad agenda + pad de todos los otros botones. max: un alto considerable */
  height: clamp(calc(1.5em*var(--button-count) + var(--pad-vertical-btn-agenda)*2 + var(--pad-vertical-botones)*2*calc(var(--button-count) - 1)), calc(var(--alto-total) - var(--ancho-derecha)*(890/4394)), 20em);
  display: grid;
  grid-template-rows: repeat(7, auto);
  position: sticky;
  top: 0;
}

.escalando-bw .menu-escalando{
  border-top: var(--borde-escalando);
  border-color: white;
}

.single-escalando .menu-escalando {
  position:static;
}

.boton-menu.boton-menu-activo {
  background-color: #141414;
  color: white;
}

.escalando-bw .boton-menu.boton-menu-activo {
  background-color: white;
  color: var(--negro-escalando);
}

.boton-menu {
  display: flex;
  align-items: center;
  border-bottom: var(--borde-escalando) !important;
  background-color: white;
  padding: var(--pad-vertical-botones) 0.8em;
  transition: 0.1s;
  outline: none;
}

.escalando-bw .boton-menu {
  background-color: var(--negro-escalando);
  border-bottom-color: white !important;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  text-decoration-color: transparent;
  text-decoration-thickness: 2px;
  transition: text-decoration-color 0.3s;
}

.boton-menu:hover {
  background-color: var(--negro-escalando);
  color: var(--rojo-escalando);
}

.escalando-bw .boton-menu:hover {
  color: white;
  text-decoration-color: currentColor;
}

.boton-menu.boton-menu-activo:hover {
  color: var(--rojo-escalando);
}

.escalando-bw .boton-menu-activo:hover {
  color: var(--negro-escalando);
}

.boton-descarga-agenda {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--rojo-escalando);
  padding: var(--pad-vertical-btn-agenda) 1em;
  transition: 0.1s;
  border-bottom: var(--borde-escalando) !important;
  outline: none;
}

.escalando-bw .boton-descarga-agenda {
  background-color: var(--negro-escalando);
  border-color: white !important;
}

.boton-descarga-agenda span:before {
  content: 'Descarga ';
}

.boton-descarga-agenda:hover {
  color: var(--rojo-escalando);
  background-color: var(--negro-escalando);
}

.escalando-bw .boton-descarga-agenda:hover {
  background-color: white;
  color: var(--negro-escalando);
}

.boton-descarga-agenda svg {
  height: 1em;
  width: auto;
  margin-right: 0.5em;
  fill: white;
  transition: 0.1s;
}

.boton-descarga-agenda:hover svg {
  fill: var(--rojo-escalando);
}

.escalando-bw .boton-descarga-agenda:hover svg {
  fill: var(--negro-escalando);
}

/*-- EMBED SOUNDCLOUD --*/
.audio-proyecto{
  grid-row: 2/span 2;
  background-color: white;
  border-bottom: var(--borde-escalando);
}

.titulo-voz-autores {
  display: grid;
  grid-template-columns: min-content auto min-content;
  grid-template-rows: min-content;
  align-items: center;
  justify-items: center;
  background-color: var(--negro-escalando);
}

.foto-autor {
  height: 4em;
  max-width: unset;
  border-bottom: var(--borde-escalando);
}

.logo-soundcloud{
  height: 2em;
  max-width: unset;
  margin: 0.5em;
}

/*-- GRID INFERIOR --*/
.grid-imagenes-proyectos {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.escalando-bw:not(.index-escalando) .grid-imagenes-proyectos {
  border-left: var(--borde-escalando);
  border-bottom: var(--borde-escalando);
  border-right: var(--borde-escalando);
  border-color: white;
}

.escalando-bw.single-escalando .grid-imagenes-proyectos {
  border-top: var(--borde-escalando);
  border-color: white;
}

.single-escalando .grid-imagenes-proyectos{
  background-color: white;
  grid-column: 1/span 2;
}

.grid-imagenes-proyectos>* {
  box-sizing: border-box;
  width: 50%;
  height: 40vmax;
  max-height: 886px;
  border-bottom: var(--borde-escalando);
  display: block;
  overflow: hidden;
  position: relative;
}

.escalando-bw .grid-imagenes-proyectos > * {
  border-color: white;
}

/*- Las imágenes en la última fila no tienen borde inferior -*/
.grid-imagenes-proyectos>*:last-child, .grid-imagenes-proyectos>*:nth-last-child(2):nth-child(odd) {
  border-bottom: none;
}

/*- Solo las imágenes de la primera columna tienen borde derecho -*/
.grid-imagenes-proyectos>*:nth-child(odd) {
  border-right: var(--borde-escalando);
}

.escalando-bw .grid-imagenes-proyectos>*:nth-child(odd) {
  border-color: white;
}

.grid-imagenes-proyectos img {
  object-fit: cover;
  height: 100%;
  min-width: 100%;
  position: relative;
  filter: saturate(1);
  transition: 0.3s;

  /* Quitar esto para que las imágenes llenen su recuadro siempre */
  max-width: 100%;
}

.escalando-bw .grid-imagenes-proyectos a {
  filter: grayscale();
}

/*-- Los efectos de hover solo pasan si es un link --*/
.grid-imagenes-proyectos>a{
  display: flex;
}

.grid-imagenes-proyectos>a:hover img {
  filter: saturate(0);
}

.grid-imagenes-proyectos>a div:first-child{
  width: 100%;
  height: 100%;
}

.grid-imagenes-proyectos>a div:first-child:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.3s;
  opacity: 0;
  background-color: var(--rojo-escalando);
  mix-blend-mode: multiply;
}

.grid-imagenes-proyectos>a:hover div:first-child:after {
  opacity: 1;
}

.grid-imagenes-proyectos>a div:not(:first-child){
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;

  color: white;
  text-align: center;
  opacity: 0;
  transition: 0.3s;
}

.grid-imagenes-proyectos>a:hover div:not(:first-child){
  opacity: 1;
}

.grid-imagenes-proyectos>a div:not(:first-child) > span{
  max-width: 80%;
}

/*--------------------- SVG ---------------------*/
#banner-lateral .banner-1-svg {
  fill: #FFFFFF;
}

#banner-lateral .banner-2-svg {
  fill: var(--negro-escalando);
}

#banner-lateral .banner-3-svg {
  fill: var(--rojo-escalando);
}

.escalando-bw #banner-lateral .banner-3-svg {
  fill: var(--negro-escalando);
}

.escalando-bw #banner-lateral path.banner-3-svg:last-of-type {
  fill: #FFFF;
}

#banner-lateral .banner-4-svg {
  clip-path: url("#SVGID_2_");
  fill: var(--rojo-escalando);
}

.escalando-bw #banner-lateral .banner-4-svg {
  fill: var(--negro-escalando);
}

#banner-lateral .lineas-banner-svg {
  fill: none;
  stroke: var(--negro-escalando);
  stroke-width: 7;
  stroke-miterlimit: 10;
}

#banner-expo-year{
	fill: var(--negro-escalando);
	font-family: 'Rubik';
	font-weight: 300;
	font-size: 300px;
	letter-spacing: 17px;
	text-anchor: middle;
}

#banner-year-textarea{
	fill: none;
}

/*--------------------- RESPONSIVE ---------------------*/
/* Para visualizaciones demasiado grandes, limitamos el ancho de la visualizacion
 * del contenido A 1800px y crece solamente el banner lateral
 */
@media only screen and (min-width: 2700px) {
  .contenedor-principal {
    --ancho-derecha: 1800px;
    grid-template-columns: 1fr 1800px;
  }
}

/* Extra Large devices (desktops, 2000 and below) */
@media only screen and (max-width: 1999px) {

  /*-- TIPOGRAFÍA --*/
  .texto-menu {
    font-size: var(--fz-24pt);
    line-height: normal;
  }

  .texto-agenda {
    font-size: var(--fz-20pt);
    line-height: normal;
  }

  .texto-soundcloud {
    font-size: var(--fz-14pt);
    line-height: normal;
  }

  .banner-superior h1,
  span.banner-superior-title{
	font-size: 130px;
  }
   
  svg.banner-decorative-icon{
	width: 18px;
  }


  /*-- DIAGRAMACIÓN --*/
  .contenido-home {
    grid-template-columns: 1.5fr 1fr;
  }

  .contenido-proyecto {
    grid-template-columns: 1.5fr 1fr;
  }
}

/* Very Large devices (desktops, 1499 and below) */
@media only screen and (max-width: 1499px) {

  /*-- TIPOGRAFÍA --*/
  .texto-titulo {
    font-size: var(--fz-20pt);
    line-height: normal;
  }

  .texto-menu {
    font-size: var(--fz-20pt);
    line-height: normal;
  }

  .texto-subtitulo {
    font-size: var(--fz-20pt);
    line-height: normal;
  }

  .texto-agenda {
    font-size: var(--fz-16pt);
    line-height: normal;
  }

  .texto-soundcloud {
    font-size: var(--fz-12pt);
    line-height: normal;
  }

  .texto-cuerpo {
    font-size: var(--fz-12pt);
    line-height: 1.5em;
  }

  .texto-cargo {
    font-size: var(--fz-10pt);
    line-height: normal;
  }

  /*-- DIAGRAMACIÓN --*/
  .contenedor-principal {
    --ancho-derecha: 80vw;
    grid-template-columns: 20% 80%;
  }

  .creditos {
    padding: 2rem 0;
  }

  .creditos>div {
    width: 100%;
    padding: 0 1rem;
  }

  /*-- SVG --*/
  #banner-lateral .lineas-banner-svg {
    stroke-width: 16;
  }
}

/* Large devices (desktops, 1199 and below) */
@media only screen and (max-width: 1199px) {

  /*-- TIPOGRAFÍA --*/
  .texto-menu {
    font-size: var(--fz-16pt);
    line-height: normal;
  }

  .texto-agenda {
    font-size: var(--fz-14pt);
    line-height: normal;
  }

  .texto-soundcloud {
    font-size: var(--fz-10pt);
    line-height: normal;
  }

  .banner-superior h1,
  span.banner-superior-title{
	font-size: 100px;
  }
   
  svg.banner-decorative-icon{
	width: 14px;
	margin-right: 25px;
  }

  .banner-superior .banner-expo-subtitle{
	font-size: var(--fz-14pt);
  }

  /*-- SVG --*/
  #banner-lateral .lineas-banner-svg {
    stroke-width: 20;
  }
}

/* Medium devices (tablets, 991px and below) */
@media only screen and (max-width: 991px) {

  /*-- TIPOGRAFIA --*/
  .texto-soundcloud {
    font-size: var(--fz-9pt);
    line-height: normal;
  }

  /*-- DIAGRAMACIÓN --*/
  .wrapper-derecho {
    border: var(--borde-escalando);
  }

  .contenedor-principal {
    --ancho-derecha: 100vw;
    grid-template-columns: 1fr;
  }

  .caja-lateral {
    display: none;
  }

  .contenido-home {
    grid-template-columns: 2fr 1fr;
  }

  .contenido-proyecto {
    grid-template-columns: 2fr 1fr;
  }

  .boton-descarga-agenda span:before {
    content: unset;
  }

  .escalando-bw .wrapper-derecho {
    border-left: none;
  }

  .escalando-bw .banner-superior,
  .escalando-bw .texto-principal {
    border-left: none;
  }

  .escalando-bw:not(.index-escalando) .grid-imagenes-proyectos {
    border-left: none;
    border-right: none;
  }

  .escalando-bw .botones-proyecto {
    border-left: none;
  }
}

/* Small devices (landscape phones, 767px and below) */
@media only screen and (max-width: 767px) {

  /*-- TIPOGRAFÍA --*/
  .texto-menu {
    font-size: var(--fz-12pt);
    line-height: normal;
  }

  .texto-soundcloud {
    font-size: var(--fz-12pt);
    line-height: normal;
  }

  .banner-superior h1,
  span.banner-superior-title{
	font-size: 70px;
  }
   
  svg.banner-decorative-icon{
	width: 10px;
	margin-right: 20px;
  }

  .banner-superior .banner-expo-subtitle{
	font-size: var(--fz-12pt);
  }


  /*-- DIAGRAMACIÓN --*/
  .contenido-proyecto {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, auto);
  }

  .menu-escalando>*:first-child, .menu-escalando>*:last-child {
    display: none;
  }

  .menu-escalando {
    grid-template-rows: repeat(4, auto);
  }

  .single-escalando .menu-escalando{
    position: static;
    grid-row: 1;
    grid-column: 1;
    display: none;
  }

  .single-escalando .texto-principal{
    grid-row: 1;
    box-shadow: none;
  }

  .single-escalando .texto-principal > *:first-child{
    padding-top: 1.5rem;
  }

  .single-escalando .audio-proyecto{
    border-right: none;
    grid-row: 2;
  }

  .single-escalando .grid-imagenes-proyectos{
    grid-row: 3;
  }

  .single-escalando .botones-proyecto{
    border-right: none;
    border-bottom: none;
    border-top: var(--borde-escalando);
    grid-row: 4;
  }

  .escalando-bw.single-escalando .wrapper-derecho {
    border-bottom: none;
  }

  .escalando-bw.single-escalando .botones-proyecto{
    border-top: none;
  }

  .boton-proyecto {
    height: 3em;
  }

  .escalando-bw.single-escalando .grid-imagenes-proyectos {
    border-top: none;
  }
}

/* Extra small devices (phones, 575px and below) */
@media only screen and (max-width: 575px) {

  /*-- TIPOGRAFÍA --*/
  .texto-soundcloud {
    font-size: var(--fz-10pt);
    line-height: normal;
  }

  /*-- DIAGRAMACIÓN --*/
  .texto-principal,
  .escalando-bw .texto-principal {
    border: none;
  }

  .contenido-home {
    grid-template-columns: 1fr;
  }

  .menu-escalando {
    grid-row: 1;
    position: static;
    top: unset;
  }

  .menu-escalando {
    height: min-content;
    grid-template-rows: repeat(5, min-content);
  }

  .single-escalando .menu-escalando{
    display:none;
  }

  .texto-principal>* {
    padding: 1.5rem 1.5rem 0 1.5rem;
  }

  .boton-menu {
    padding: 0.8em;
  }

  .grid-imagenes-proyectos>* {
    width: 100%;
  }

  /*- Como solo hay una columna ahora, niguna imagen tiene borde lateral -*/
  .grid-imagenes-proyectos>*:nth-child(odd) {
    border-right: none;
  }

  /*- Como solo hay una columna ahora, solo la última imagen no tiene borde inferior -*/
  .grid-imagenes-proyectos>*:nth-last-child(2):nth-child(odd) {
    border-bottom: var(--borde-escalando);
  }

  .escalando-bw .grid-imagenes-proyectos>*:nth-last-child(2):nth-child(odd) {
    border-bottom-color: white;
  }

  .banner-superior {
	  display: block;
	  height: auto;
	  padding-top: 0;
	  pointer-events: all;
  }

  .banner-superior div.banner-content-responsive{
	position: static;
	left: unset;
	top: unset;

	display: flex;
	align-items: center;
  }

  .banner-superior-text{
	padding: 1.5rem;
   }

   /* Dejamos solo el borde superior y los bordes internos en celular */
   .wrapper-derecho {
    border-left: none;
    border-right: none;
    border-bottom: none;
   }

  .escalando-bw.single-escalando .grid-imagenes-proyectos {
    border-top: var(--borde-escalando);
    border-color: white;
  }
}