html,
body {
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-overflow-scrolling: touch;
	color: rgba(41, 41, 41, 1);
	min-height: 100vh;
	background-image: url("/assets/img/papel.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

* {
	box-sizing: border-box;
}

.grid {
	width: 100dvw;
	max-width: 2500px;
	margin: 0 auto;
	display: grid;
	position: relative;
	overflow: hidden;
	/* background-image: url("/assets/img/papel.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center; */
	background: rgba(211, 211, 211, 1);
	z-index: 6
}

.grid article{
	background: rgba(179, 179, 179, 1);
	border: 1px solid rgba(255, 0, 0, 1);
}

/* .grid.pop {
	width: 72% !important;
	margin: 0 0 0 27%;
} */


.grid.s {
	width: 90dvw;
	max-width: 2250px;
}

.grid.x {
	width: 100dvw;
	max-width: 2600px;
}

.grid-row {
	width: 100%;
	height: 100%;
	display: grid;
} 

.grid>.grid-row>article {
	margin: 0;
	height: 100%;
	width: 100%;
	display: flex
}

h1,
h2,
h3 {
	line-height: .9;
}

h1 {
	position: fixed;
	left: 1%;
	bottom: 3%;
	transform: rotate(-90deg);
	transform-origin: left bottom;
	z-index: 9999;
	font-size: .7rem;
	text-transform: uppercase;
	font-weight: 400;
	color: #ffffff;
	pointer-events: none;
}

h2 {
	font-size: 3.36rem;
	font-weight: 900;
	text-transform: uppercase;
	mix-blend-mode: normal;
	text-shadow: none;
	text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.2), -1px -1px 1px rgba(255, 255, 255, 0.4);
}

h3 {
	font-size: 1.68rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 1);
}

h4 {
	font-size: 5rem;
	font-weight: 900;
	text-transform: uppercase;
	mix-blend-mode: normal;
	text-shadow: none;
	color: #90aae2;
}

i {
	font-size: .8rem;
	font-style: italic;
	position: relative;
}

i:before {
	content: '*';
	margin-right: .25rem;
}

a {
	cursor: pointer;
	font-size: 1rem;
	opacity: .75;
}

a.btn {
	font-size: 1rem;
	font-weight: 600;
	padding: .3rem 2rem;
	background: rgba(255, 255, 255, 0.5);
	color: #fff;
	text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
	display: inline-block;
	cursor: pointer;
	border-radius: 5px;
	margin-top: 1rem;
}

a.btn:hover {
	background: rgba(255, 255, 255, .35);
}

a.simple_btn {
	position: fixed;
	left: 0;
	top: 50%;
	transform: translateY(-50%) rotate(-90deg);
	transform-origin: left top;
	padding: .3rem 1rem;
	font-size: .6rem;
	background: rgba(255, 255, 255, .3);
	color: #000;
	z-index: 9999;
	display: inline-block;
	white-space: nowrap;
	border-radius: 0 0 5px 5px;
}

p {
	font-size: 1rem;
	font-weight: 400;
	text-transform: none;
	text-indent: 1rem;
	margin-top: 1rem;
}

p:last-child {
	margin-bottom: 0;
}

p::first-letter {
	text-transform: uppercase;
}

.col {
	  column-count: 2;
	  column-gap: 1rem;
}

blockquote {
	background: #d5cfc7;
	padding: 1rem;
	margin: 1rem;
	border-left: 1px solid #c44;
}

hr {
	/* border: 0;
	height: 1px;
	background: linear-gradient(to right,
		transparent 0%,
		currentColor 30%,
		currentColor 70%,
		transparent 100%
	);
	opacity: 1;
	z-index: 20 */
}
/*=======================*/
article.txt{
  display: flex;
  padding: 2rem
}

/* combinaciones */

article.txt.ct{
  justify-content: center;
  align-items: flex-start;
  text-align: center
}

article.txt.rt{
  justify-content: flex-end;
  align-items: flex-start;
  text-align: right;
}

article.txt.lc{
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}

article.txt.cc{
  justify-content: center;
  align-items: center;
  text-align: center
}

article.txt.rc{
  justify-content: flex-end;
  align-items: center;
  text-align: right;
}

article.txt.lb{
  justify-content: flex-start;
  align-items: flex-end;
  text-align: left;
}

article.txt.cb{
  justify-content: center;
  align-items: flex-end;
  text-align: center
}

article.txt.rb{
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
}



/*=======================*/
.artxt{
	width:100%;
	padding:0;
	--lines:6;
	--lh:1.3;
	--max-height:12;
}

.artxt.r{ text-align:right; }
.artxt.c{ text-align:center; }

.artxt dt h2{
	white-space:normal;
	overflow-wrap:break-word;
	word-break:normal;
	hyphens:auto;
}

.artxt a.btn{
	display:inline-block;
	width:fit-content;
	justify-self:start;
}

.artxt hr{
	margin:1rem 0;
	display:block;
}

.artxt .colapse{
	box-sizing:border-box;
	position:relative;
	overflow:hidden;
	max-height:calc(var(--lines) * var(--lh) * 1rem);
	transition:max-height 1s ease;
	padding:0;
}

.artxt .colapse.expanded{
	max-height:calc(var(--max-height) * var(--lh) * 1rem);
	overflow-y:auto;
	transition:max-height 1s ease;
	scrollbar-width:none;
}

.artxt .colapse.expanded::-webkit-scrollbar{
	display:none;
	width:0;
	height:0;
}

.artxt .colapse-toggle{
	cursor:pointer;
	color:rgba(238,117,13,1);
	display:none;
	width:100%;
	font-size:2rem;
}

.artxt .colapse-toggle::before{
	font-family:"icomoon";
	content:"\e900";
}

.artxt .colapse-toggle.is-expanded::before{
	font-family:"icomoon";
	content:"\e903";
}

.artxt .colapse::after{
	content:"";
	position:absolute;
	left:0;
	right:0;
	bottom:0;
	height:3rem;
	pointer-events:none;
	background:linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,.25));
	opacity:0;
	transition:opacity .25s ease;
}

.artxt .colapse.has-more::after{
	opacity:1;
}

.artxt .colapse-arrow{
	height:1.5rem;
	line-height:1.5rem;
	margin-top:.5rem;
	text-align:right;
	font-size:1.2rem;
	opacity:0;
	visibility:hidden;
	pointer-events:none;
	transition:opacity .25s ease;
}

.artxt .colapse-arrow.visible{
	opacity:.7;
	visibility:visible;
	pointer-events:auto;
	animation:arrowPulse 1.2s infinite ease-in-out;
}

.artxt .colapse-arrow::before{
	font-family:"icomoon";
	content:"\e900";
	display:inline-block;
}

@keyframes arrowPulse{
	0%{ transform:translateY(0); opacity:.4; }
	50%{ transform:translateY(4px); opacity:.8; }
	100%{ transform:translateY(0); opacity:.4; }
}

.artxt.h{
	display:grid;
	grid-template-columns:50% 1fr;
	column-gap:2rem;
	row-gap:1rem;
	align-items:start;
	width:63%;
}

.artxt.h dt{
	grid-column:1;
	background:rgba(181,124,124,1);
	text-align:right;
	align-self:center;
}

.artxt.h dd{
	grid-column:2;
	background:rgba(127,124,181,1);
	align-self:center;
	text-align:left;
}

.artxt.h .colapse-toggle,
.artxt.h a.btn{
	grid-column:2;
}

.artxt.h hr{
	display:none;
}

.artxt.f,
.artxt.fr{
	position:relative;
	z-index:2;
	padding:0 !important;
	--half:36%;
}

.artxt.f{
	transform:translate(var(--half), 18%);
}

.artxt.fr{
	transform:translate(calc(var(--half) * -1), 18%);
}

.artxt.f dd{
	padding-right:var(--half);
	text-align:right;
}

.artxt.fr dd{
	padding-left:var(--half);
	text-align:left;
}

.artxt.f a.btn{
	position:absolute;
	right:calc(var(--half) + 2rem);
}

.artxt.fr a.btn{
	position:absolute;
	left:calc(var(--half) + 2rem);
}
/* ===================== */
header.main {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	max-width: 1920px;
	transform: translate(-50%, -50%);
	/* aspect-ratio: 16 / 9; */
	background: rgb(255, 0, 0);
	z-index: 50
}

header.main ul {
	position: absolute;
	width: 18%;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	color: #ffffff;
	z-index: 2;
}

header.main ul p {
	text-indent: 0;
	margin-bottom: 1rem
}

header.main ul h3 {
	background: rgba(255, 255, 255, 0.3);
	padding: .5rem 1.5rem;
	border-radius: 5px;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

header.main ul figure {
	width: 100%;
	margin: 0 auto;
}

header.main ul figure img {
	object-fit: contain;
	filter: invert(1);
}

header.compact {
	position: fixed;
	width: 100%;
	max-width: 1920px;
	height: 18vh;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	pointer-events: none;
	z-index: 75;
}

header.compact ul {
	position: absolute;
	width: 9%;
	top: 50%;
	left: 9%;
	transform: translateY(-50%);
	text-align: center;
	color: #ffffff;
}

header.compact ul p {
	text-indent: 0;
	font-size: .8rem;
}

header.compact ul figure {
	width: 100%;
	opacity: .3
}

header.compact ul figure img {
	object-fit: contain;
}

nav.header {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	z-index: 75;
	display: flex;
	flex-direction: column;
	align-items: center;
	background-image: url("/assets/img/papel.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	border-radius: 5px 0 0 5px;
	opacity: 1;
	transition: opacity 1s ease;
	background-color: #ddbb33;
	background-blend-mode: multiply;
}

nav.header a {
	font-family: "icomoon";
	font-size: 1.6rem;
	padding: 1rem;
	color: rgba(43, 43, 43, 1);
	border-bottom: 1px solid rgba(0, 0, 0, 0.2);
	display: flex;
	align-items: center;
	justify-content: center;
}

nav.header a:last-child {
	border-bottom: none;
}

nav.header a span {
	display: inline-block;
	line-height: 1;
}

nav.header .header-toggle .icon-dots-three-horizontal {
	display: inline-block;
}

nav.header .header-toggle .icon-cross {
	display: none;
}

nav.header.menu-open .header-toggle .icon-dots-three-horizontal {
	display: none;
}

nav.header.menu-open .header-toggle .icon-cross {
	display: inline-block;
}

header.main,
header.compact,
nav.header {
	transition: opacity 1s ease;
	will-change: opacity;
}

/* ===================== */



.simple-head{
	padding: 9% 18%;
}

/* ===================== */

figure {
	position: relative;
	width: 100%;
	height: auto;
	overflow: hidden;
	aspect-ratio: 3 / 2;
	padding: 0;
}

figure figcaption {
	position: absolute;
	bottom: .5%;
	left: 1%;
	font-size: .8rem;
	font-style: italic;
	z-index: 2;
	color: rgb(169, 169, 169)
}

figure figcaption:before {
	content: '*';
	margin-right: .25rem;
}

figure img.responsive-img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	object-position: center center;
}

video.responsive-video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
	aspect-ratio: 16 / 9;
}

/* ===================== */

.footer-trigger,
.header-trigger {
	height: 1px;
	width: 100%;
}

.footer-trigger {
	display: block;
	height: 1px;
	width: 100%;
	margin-top: 100vh;
	position: relative;
}

footer {
	opacity: 0;
	transition: opacity .6s ease, background .6s ease, padding .6s ease, bottom .6s ease;
}

footer.active {
	position: fixed;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	opacity: 1;
	padding: 3rem 15%;
	z-index: 75;
	background: transparent;
	backdrop-filter: blur(20px) saturate(95%);
	-webkit-backdrop-filter: blur(20px) saturate(95%);
}

footer article {
	display: flex;
	flex-direction: column;
}

footer article ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: .25rem;
}

footer h2 {
	color: #fff;
	margin: 0 0 .5rem 0;
	font-size: 1rem;
	font-weight: 700;
	white-space: nowrap;
}

footer li {
	white-space: nowrap;
}

footer a {
	color: #fff;
	text-decoration: none;
	font-size: .9rem;
	cursor: pointer;
}

footer a:hover {
	opacity: .8;
}

/* bloque imagen */
footer #corp_img {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

footer #corp_img img {
	width: 60%;
	height: auto;
	object-fit: contain;
	display: block;
	margin-bottom: .25rem;
}

footer #corp_img ul.social {
	display: flex;
	flex-direction: row;
	gap: .5rem;
	margin-top: 2rem;
	padding: 0;
	list-style: none;
}

footer #corp_img ul.social li {
	cursor: pointer;
	opacity: .85;
}

footer #corp_img ul.social li:hover {
	opacity: 1;
}

footer #right {
	margin-top: 2rem;
}

/* ===================== */

.menu {
	position: fixed;
	top: 0;
	left: -25%;
	width: 25%;
	height: 100vh;
	background: #dedede;
	padding: 2rem;
	box-sizing: border-box;
	transition: left 0.3s ease;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	justify-content: center;
	z-index: 100;
}

#navmenu {
	z-index: 100;
	position: fixed;
	top: 2%;
	right: 2%;
	display: none
}

.btn-open-menu,
.btn-close-menu {
	cursor: pointer;
	color: #000;
	font-size: 1.5rem;
}

.menu li {
	display: block;
	cursor: pointer;
	background: rgba(255, 255, 255, 0.25);
	margin-bottom: .2rem;
	padding: .3rem .5rem;
	position: relative;
}

.menu li>i {
	display: block;
	margin: .1rem 0 .5rem;
	opacity: .7;
}

.menu ul {
	padding-left: 0;
}

.menu ul ul {
	padding-left: .5rem;
	display: none;
}

.menu ul ul ul {
	padding-left: 1rem;
}

.menu li ul li:last-child {
	margin-bottom: .5rem;
}

.menu li:has(> ul)::after {
	content: '\e901';
	font-family: 'icomoon';
	position: absolute;
	right: .5rem;
	top: .4rem;
	transform: none;
	font-size: 1rem;
	opacity: .7;
}

.menu li.open:has(> ul)::after {
	content: '\e902';
}

/* ===================== */

.slider {
	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
	z-index: 0;
	margin: 0 auto 25vh;
}

.slider hr {
	margin: 1rem 0;
	opacity: .5;
}

.slides-wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
	will-change: transform, opacity, filter;
}

.slider li {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.slider li .msj {
	position: absolute;
	top: 50%;
	left: 9%;
	transform: translateY(-50%);
	text-align: left;
	color: white;
	pointer-events: none;
	font-style: inherit;
	width: 18%;
}

.slider li figure {
	height: 100%;
	width: auto;
	aspect-ratio: 2 / 1;
}

.slider li .msj p {
	font-size: 1.1rem;
	font-weight: 600;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.slider li .msj h3 {
	padding: .5rem 1em;
	background: rgba(255, 255, 255, 0.15);
	border-radius: 3px;
}

.slider-set {
	position: absolute;
	bottom: 4.5%;
	right: 9%;
	z-index: 50;
	width: 18%;
	text-align: right;
}

.slider-set .slider-counter {
	will-change: transform, opacity;
	color: rgba(255, 255, 255, 1);
}

.slider-set .slider-controls {
	will-change: transform, opacity;
	z-index: 50;
}

.slider-set .slider-controls a {
	display: inline-block;
	width: 2rem;
	height: 2rem;
	border-radius: 50%;
	cursor: pointer;
	text-align: center;
	line-height: 2rem;
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
	z-index: 50;
}

.slider-set .slider-controls a[hidden] {
	display: none;
}

.slider-timer {
	height: 1px;
	width: 100%;
	background: rgba(255, 255, 255, 1);
	opacity: .5
}

/* ===================== */

.break {
	position: sticky;
	top: 0;
	height: 250vh;
	overflow: visible;
	--anim-end: .7;
	/* texto */
	--start-x: 0;
	--end-x: 500;
	--start-y: 0;
	--end-y: 0;
	--start-scale: 1;
	--end-scale: 1;
	--start-blur: 0;
	--end-blur: 0;
	--start-op: 1;
	--end-op: 1;
	/* layer-two */
	--l2-start-x: 0;
	--l2-end-x: 0;
	--l2-start-y: 0;
	--l2-end-y: 0;
	--l2-start-scale: 1;
	--l2-end-scale: 1.1;
	--l2-start-blur: 0;
	--l2-end-blur: 0;
	--l2-start-op: 1;
	--l2-end-op: 1;

	opacity: 1;
	transition: opacity 2s ease;
	z-index: 2
}

.break article {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.break img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
}

.break .layer-one {
	z-index: 0;
}

.break .layer-two {
	z-index: 1;
	will-change: transform, opacity, filter;
	transform: translate(var(--cur-x2, 0px), var(--cur-y2, 0px)) scale(var(--cur-scale2, 1));
	opacity: var(--cur-op2, 1);
	filter: blur(calc(var(--cur-blur2, 0) * 1px));
}

.break .artxt {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 3;
	color: #fff;
	background: rgba(0, 0, 0, 0.1);
	padding: 2.5rem;
	border-radius: 10px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
	will-change: transform, opacity, filter;
	transform: translate(var(--cur-x, 0px), var(--cur-y, 0px)) scale(var(--cur-scale, 1));
	opacity: var(--cur-op, 1);
	filter: blur(calc(var(--cur-blur, 0) * 1px));
}

/* ===================== */

.launchpad {
	--cols: 4;
	z-index: 6;
}

.launchpad #head_launchpad {
	width: 72%;
	margin: 0 auto;
	padding: 9% 0;
}

.launchpad #pics_launchpad {
	width: 72%;
	margin: 0 auto;
	padding: 0 0 9% 0;
}

.launchpad ul {
	list-style: none;
	padding: 0;
	margin: 0 auto;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(var(--cols), 1fr);
	gap: 1rem;
}

.launchpad li {
	position: relative;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 2 / 3;
	background: #000;
	transition: transform .6s ease;
}

.launchpad li:hover {
	transform: translateY(9%);
}

.launchpad li figure,
.launchpad li figure img {
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	display: block;
}

.launchpad li figure {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.launchpad li figure img {
	object-fit: cover;
	object-position: center;
	transform: scale(1.3);
	opacity: .8;
	transition: transform .6s ease, opacity .6s ease;
}

.launchpad li:hover figure img {
	transform: scale(1);
	opacity: 1;
}

.launchpad li figcaption {
	display: ;
}

.launchpad li .artxt {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	padding-left: 9%;
	padding-right: 9%;
	text-align: left;
	color: #fff;
	z-index: 2;
	opacity: 1;
	transition: top .6s, opacity .6s ease;
}

.launchpad li:hover .artxt {
	top: 18%;
	opacity: 1;
}

.launchpad li .artxt p {
	opacity: 0;
	transition: opacity .6s ease;
	margin-top: 2rem;
}

.launchpad li:hover .artxt p {
	opacity: 1;
	margin-top: 2rem;
}

.launchpad li .artxt h3 {
	font-size: 1.1rem
}

.launchpad li .artxt h2 {
	font-size: 2rem
}

/* ===================== */

.post {
	z-index: 6;
	padding: 0;
}

.post #pic {
	aspect-ratio: 16 / 9;
}

.post #txt {
	position: relative;
	background-image: url("/assets/img/papel.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-color: rgba(73, 46, 25, 0.15);
	background-blend-mode: multiply;
	justify-content: start;
	align-items: center;
	padding: 0;
	text-align: right;
}

/* overlay */
.post #txt::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(-45deg, #000 0%, #fff 75%);
	mix-blend-mode: soft-light;
	opacity: .35;
}

.post #txt .artxt_body{
	padding-left: 36%;
}

.post.r #txt .artxt_body{
	padding-left: 0;
	padding-right: 36%;
}

.post.r #txt {
	text-align: left;
}

.post.up .artxt {
	transform: translateX(18%);
	z-index: 2;
}

.post.up .artxt_head {
	width: 100%;
}

.post.up .artxt_body {
	width: 81%;
}

.post.r.up .artxt {
	transform: translateX(-60%);
	z-index: 2;
}

.post.r.up .artxt_head {
	width: 100%;
	text-align: right;
}

.post.r.up .artxt_body {
	width: 81%;
	margin-left: 68%;
}

/* ===================== */

.poster {
	position: sticky;
	top: 0;
	height: 100vh;
	width: 100%;
	z-index: 2;
}

.poster article {
	position: relative;
	height: 100%;
	width: 100%;
}

.poster figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	z-index: 1;
}

/* .poster figure video.responsive-video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	display: block;
} */

.poster .artxt {
	position: absolute;
	top: 50vh;
	transform: translateY(-50%);
	left: 9%;
	width: 27%;
	color: #fff;
	z-index: 4;
	background: rgba(0, 0, 0, 0.2);
	padding: 2.5rem;
	border-radius: 10px;
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.after-poster{
	height: 100vh;
}

/* ===================== */

.paneo {
	position: sticky;
	top: 0;
	height: 100vh;
	margin-top: -100vh;
	z-index: 4;
}

.paneo figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.paneo img.responsive-img {
	width: auto;
	height: 100%;
	aspect-ratio: 2.5 / 1;
	object-fit: cover;
	object-position: center left;
	display: block;
	animation: paneo var(--paneo-speed, 100s) linear infinite;
}

.paneo .artxt {
	position: absolute;
	top: 50vh;
	transform: translateY(-50%);
	left: 9%;
	width: 30%;
	z-index: 2;
	color: #fff;
	background: rgba(0, 0, 0, 0.1);
	padding: 2.5rem;
	border-radius: 10px;
	backdrop-filter: blur(8px);
	-webkit-backdrop-filter: blur(8px);
}

@keyframes paneo {
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(calc(-100% + 100vw));
	}

	100% {
		transform: translateX(0);
	}
}

/* ===================== */

.popup {
	position: fixed;
	top: 0;
	left: 100%;
	width: 100%;
	height: 100%;
	z-index: 80;
	opacity: 0;
	pointer-events: none;
	transition: left 1s ease, opacity 1s ease;
	inset: 0;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	padding: 0;
}

.popup.activo {
	left: 0;
	opacity: 1;
	pointer-events: auto;
	overflow-y: auto;
	background-image: url("/assets/img/papel.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-color: rgba(60, 54, 44, 0.25);
	background-blend-mode: multiply;
}

.popup section {
	background-image: url("/assets/img/papel.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	position: relative;
	margin: 0 auto !important;
	padding: 0;
}

.popup .icon-cross {
	position: fixed;
	right: 9%;
	top: 50%;
	transform: translateY(-50%);
	z-index: 20;
	padding: 10px !important;
	border-radius: 50%;
	font-size: 3rem;
	color: rgba(208, 154, 28, 1);
	text-shadow: none;
}

.popup figure{
	padding: 1rem
}

.popup .post #txt::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: linear-gradient(-45deg, #000 0%, #fff 75%);
	mix-blend-mode: soft-light;
	opacity: .45;
}

.popup .post .artxt{
	  width: 100%;
	  text-align: right;
	  padding: 18% 2% 9% 36%;
}

.popup .artxt h2 {
	filter: saturate(50%);
}

.popup .post.r .artxt{
	  width: 100%;
	  text-align: left;
	  padding: 18% 36% 9% 2%;
}



.popup .head .artxt {
	padding: 9%  27% !important;
	width: 100%;
	  text-align: left;
}

.popup .head .artxt.h .artxt_head{
	  text-align: right;
	  width: 50%;
}

.popup .fullscreen{
	position: relative;
	height: 100%;
	width: 100%;
}
.popup .fullscreen #pop-pic{
	position: absolute;
	z-index: 0;
}
.popup .fullscreen #pop-txt{
	position: absolute;
	z-index: 1;
	top: 36%;
	left: 9%;
	width: 27%;
}

.popup .fullscreen #pop-txt .artxt {
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	background: rgba(0, 0, 0, 0.2);
	padding: 2rem;
	border-radius: 10px;

	display: inline-block;
	width: auto;
	max-width: 100%;
	height: auto !important;
	align-self: flex-start;
	box-sizing: border-box;
	
}

.popup .fullscreen .artxt{
color: #ffffff !important;
}

/* ===================== */

.gallery-pinterest {
	z-index: 6;
	padding: 0 9%;
	background-image: url("/assets/img/papel.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
}

.gallery_ {
}

.gallery_>div {
	width: 100%;
	column-count: 4;
	column-gap: 1rem;
	padding: 4rem;
}

.gallery_ > div > div {
	break-inside: avoid;
	margin-bottom: 1.5rem;
	opacity: .9;
	transform: translateZ(0) scale(1);
	transition: transform .3s ease, opacity .3s ease;
	will-change: transform, opacity;
	cursor: pointer;
}

.gallery_ > div > div:hover {
	transform: translateZ(0) scale(1.01);
	opacity: 1;
}

.gallery_ figure {
	display: block;
	width: 100%;
	margin: 0;
}

.gallery_ figure img {
}

.gallery_ figcaption {
	position: relative;
	bottom: auto;
	left: auto;
	padding: 1rem;
}

.gallery_ figcaption h3 {
	font-size: 1.2rem;
	font-weight: 500;
	margin: 0 0 0.15rem 0;
}

.gallery_ figcaption h2 {
	font-size: 1.3rem;
	font-weight: 700;
	margin: 0 0 0.25rem 0;
	text-transform: uppercase;
}

.gallery_ figcaption p {
	font-size: 0.9rem;
	margin: 0 0 0.4rem 0;
	text-indent: 0;
}

.gallery_ .btn {
	display: inline-block;
	margin-top: 0.3rem;
}


.wm-wrapper {
	position: relative;
	display: inline-block;
	width: 100%;
	height: 100%;
}

.wm-overlay {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0.35;
	pointer-events: none;
	width: auto;
	height: 100%;
}

.clean {
	opacity: 1;
	transition: opacity 1.2s ease;
}
/* ===================== */

@media (max-width: 767px) {
	html {
		font-size: 12px;
	}

	.grid-row {
		grid-template-columns: 1fr !important;
	}

	.grid-row>article {
		grid-column: span 1 !important;
		width: 100%;
	}
}

@media (min-width: 768px) and (max-width: 1024px) {
	html {
		font-size: 13px;
	}
}

@media (min-width: 1025px) and (max-width: 1279px) {
	html {
		font-size: 15px;
	}
}

@media (min-width: 1280px) and (max-width: 1439px) {
	html {
		font-size: 12px;
	}

	h2 {
		
	}
}

@media (min-width: 1440px) and (max-width: 1919px) {
	html {
		font-size: 12px;
	}
	
.slider li figure {
		height: auto;
		width: 100%;
		aspect-ratio: 2 / 1;
	}
	
	figure {
		position: relative;
		width: 100%;
		height: auto;
		overflow: hidden;
		aspect-ratio: 2 / 1;
		padding: .5rem;
	}
	
	#destinos .break#inicio {
		--start-y: 400;
		--end-y: 400;
	}
}