
/* ==================================================
   MODULE: block.css
   ================================================== */

/* block mobile */
.block {
	--block-dt-base-color: rgb(var(--n-d) / 1);
	--block-dt-photo-color: rgb(var(--b) / 1);
	flex-direction: column-reverse;
}

.block figure figcaption{
	transform: rotate(-90deg);
	transform-origin: top left;
	bottom: 10%;
}
/* block mobile - text over media */
.block > article:nth-child(1) {
	position: relative;
	width: 100%;
	margin-top: -4rem;
	z-index: 20;
}

.block > article:nth-child(2) {
	position: relative;
	width: 100%;
	z-index: 1;
}

.block .artxt {
	position: relative;
	width: 100%;
	transform: none;
	z-index: 20;
	padding: 0 2rem 2rem;
}

.block.reverse  {
	flex-direction: column;
}

.block.reverse > article:nth-child(2) {
	position: relative;
	width: 100%;
	margin-top: -4rem;
	z-index: 12;
}

.block.reverse > article:nth-child(1) {
	position: relative;
	width: 100%;
	z-index: 1;
}

.block.reverse .artxt {
	position: relative;
	width: 100%;
	transform: none;
}

.block .artxt dt {
	position: relative;
	width: 100%;
	color: transparent;
	
}

.block.reverse .artxt dt {
	position: relative;
	width: 100%;
	color: transparent;
	text-align: right;
}

.block .artxt dd {
	color: rgb(var(--n) / 1)
}


/* capas del efecto */
.block-dt-base,
.block-dt-photo {
	position: absolute;
	inset: 0;
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.block-dt-base {
	color: var(--block-dt-base-color);
	z-index: 1;
}

.block-dt-photo {
	color: var(--block-dt-photo-color);
	z-index: 2;
	clip-path: inset(0 100% 0 0);
}

.block-dt-real {
	position: relative;
	display: block;
	visibility: hidden;
	pointer-events: none;
	z-index: 0;
}

.block .artxt dt h1,
.block .artxt dt h2,
.block .artxt dt h3,
.block .artxt dt h4,
.block .artxt dt p,
.block .artxt dt .lead,
.block .artxt dt span {
	color: inherit;
}


/* ==================================================
   MODULE: break.css
   ================================================== */

/* break */
.break {
	position: relative;
	width: 100%;
	min-height: 220dvh;
	margin: 0;
	padding: 0;
	overflow: visible;
	background: rgb(var(--n-d) / 1);
}

.break-scroll {
	position: relative;
	width: 100%;
	min-height: 220dvh;
	margin: 0;
	padding: 0;
	overflow: visible;
}

.break-stage {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100dvh;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.break figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

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

.break figcaption {
	position: absolute;
	left: 1rem;
	bottom: 1rem;
	z-index: 5;
	color: rgb(var(--b) / .75);
	font-size: .75rem;
}

.break .layer_one {
	z-index: 1;
}

.break .layer_two {
	z-index: 2;
	opacity: var(--op-current, 0);
	transform:
		translate(var(--x-current, -50%), var(--y-current, -50%))
		scale(var(--scale-current, 1));
	filter: blur(var(--blur-current, 0px));
	will-change: transform, opacity, filter;
}

.break .layer_three {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 3;
	width: var(--w-current, 42%);
	margin: 0;
	padding: 3rem;
	color: rgb(var(--b) / 1);
	opacity: var(--op-current, 0);
	transform:
		translate(var(--x-current, -50%), var(--y-current, -50%))
		scale(var(--scale-current, 1));
	filter: blur(var(--blur-current, 0px));
	will-change: transform, opacity, filter, width;
}

/* layer two animation values */
.break .layer_two {
	--x0: 0;
	--y0: 0;
	--x1: 0;
	--y1: 0;

	--scale0: 1;
	--scale1: 1.1;

	--op0: 0;
	--op1: 1;

	--blur0: 12px;
	--blur1: 0px;
}

/* layer three animation values */
.break .layer_three {
	--x0: -50%;
	--y0: -100%;
	--x1: -50%;
	--y1: -50%;

	--scale0: 1;
	--scale1: 1;

	--op0: 0;
	--op1: 1;

	--blur0: 0px;
	--blur1: 0px;

	--w0: 80%;
	--w1: 80%;
}

/* ==================================================
   MODULE: comentarios.css
   ================================================== */

body#comentarios{
}

.comment-form{
	min-height:100dvh;
	display:grid;
	place-items:center;
	padding:8vw;
}

.comment-form article{
	width:min(100%,680px);
	display:grid;
	gap:2rem;
}

.comment-form header{
	display:grid;
	gap:.8rem;
}

.comment-form .lead{
	margin:0;
}

.comment-form h1{
	margin:0;
}

.comment-form header p{
	margin:0;
}

.comment-form form{
	display:grid;
	gap:1rem;
}

.comment-form label{
	display:grid;
	gap:.45rem;
}

.comment-form label span{
	display:block;
}

.comment-form input,
.comment-form textarea,
.comment-form button{
	width:100%;
	font:inherit;
	
}

.comment-form input,
.comment-form textarea{
	border:1px solid currentColor;
	background:transparent;
	color:inherit;
	padding:1rem;
	outline:none;
}

.comment-form textarea{
	min-height:11rem;
	resize:vertical;
}

.comment-form small{
	opacity:.65;
}

.comment-form .comment-msg{
	padding:1rem;
	border:1px solid currentColor;
}

.comment-form .hp{
	position:absolute;
	left:-9999px;
	opacity:0;
	pointer-events:none;
}

/*============ validar comentarios php ================ */

body#validar-comentarios{
}

.comentarios-admin{
	min-height:100dvh;
	padding:4rem;
	display:flex;
	flex-direction:column;
}

.comentarios-admin header{
	display:flex;
	justify-content:space-between;
	align-items:flex-end;
	gap:2rem;
	margin-bottom:3rem;
}

.comentarios-admin header div{
	width:min(100%,46rem);
}

.comentarios-admin .lead{
	margin:0 0 .8rem;
}

.comentarios-admin h1{
	margin:0;
}

.comentarios-admin header p{
	margin:1rem 0 0;
	opacity:.68;
}

.comentarios-admin nav{
	display:flex;
	flex-wrap:wrap;
	gap:.6rem;
	justify-content:flex-end;
}

.comentarios-admin nav a{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:.65rem 1rem;
	border:1px solid currentColor;
	border-radius:999px;
	color:inherit;
	text-decoration:none;
}

.comentarios-admin nav a.active{
	outline:2px solid currentColor;
	outline-offset:2px;
}

.comentarios-grid{
	display:flex;
	flex-direction:column;
	gap:1rem;
}

.comentario-card{
	display:flex;
	flex-direction:column;
	gap:1.2rem;
	padding:1.4rem;
	border:1px solid currentColor;
}

.comentario-top{
	display:flex;
	justify-content:space-between;
	align-items:flex-start;
	gap:1rem;
}

.comentario-card h2{
	margin:0;
}

.comentario-meta{
	margin:.5rem 0 0;
	opacity:.55;
}

.comentario-texto{
	margin:0;
}

.comentario-status{
	display:inline-flex;
	align-items:center;
	justify-content:center;
	padding:.4rem .7rem;
	border:1px solid currentColor;
	border-radius:999px;
}

.comentario-actions{
	display:flex;
	flex-wrap:wrap;
	gap:.5rem;
	margin-top:auto;
}

.comentario-actions button{
	border:1px solid currentColor;
	background:transparent;
	color:inherit;
	padding:.7rem .9rem;
	font:inherit;
	cursor:pointer;
}

.comentarios-empty{
	opacity:.55;
}

/*============ comentarios públicos como tarjetas ================ */

section.comentarios-publicos .cards-track dd p{
	white-space:pre-line;
}

section.comentarios-publicos .cards-track dd small{
	display:block;
	margin-top:1rem;
	opacity:.55;
}

section.comentarios-publicos .cards-track dd .icon-text{
	display:block;
	margin-bottom:1rem;
}

section.comentarios-publicos .cards-track dd .artxt-toggle{
	display:none;
}

/* ==================================================
   MODULE: contact-form.css
   ================================================== */

section.contacto-form{
	width:100%;
	color: rgb(var(--n) / 1)
}

section.contacto-form article{
	width:min(100%,680px);
	margin:0 auto;
	display:grid;
	gap:2rem;
	padding: 2rem 1.5rem
}

section.contacto-form header{
	display:grid;
	gap:.8rem;
}

section.contacto-form .lead,
section.contacto-form h2,
section.contacto-form h3{
	margin:0;
	
	color: rgb(var(--c1) / 1)
}

section.contacto-form form{
	display:grid;
	gap:1rem;
}

section.contacto-form label{
	display:grid;
	gap:.45rem;
}

section.contacto-form label span{
	display:block;
}

section.contacto-form input,
section.contacto-form textarea,
section.contacto-form button{
	width:100%;
	font:inherit;
	color:inherit;
}

section.contacto-form input,
section.contacto-form textarea{
	border:1px solid currentColor;
	background:transparent;
	color:inherit;
	padding:1rem;
	outline:none;
}

section.contacto-form textarea{
	min-height:9rem;
	resize:vertical;
}

section.contacto-form input:focus,
section.contacto-form textarea:focus{
	outline:2px solid currentColor;
	outline-offset:2px;
}

section.contacto-form .hp{
	position:absolute;
	left:-9999px;
	opacity:0;
	pointer-events:none;
}

section.contacto-form .contacto-check{
	display:flex;
	align-items:flex-start;
	gap:.75rem;
}

section.contacto-form .contacto-check input{
	width:auto;
	margin-top:.25rem;
}

section.contacto-form .contacto-respuesta{
	display:none;
	margin:0;
	padding:1rem;
	border:1px solid currentColor;
}

section.contacto-form .contacto-respuesta.is-active{
	display:block;
}

section.contacto-form .contacto-check{
	display:flex;
	align-items:center;
	gap:.75rem;
	cursor:pointer;
}

section.contacto-form .contacto-check input{
	appearance:auto;
	-webkit-appearance:checkbox;
	display:block;
	width:2rem;
	height:2rem;
	min-width:2rem;
	margin:0;
	cursor:pointer;
}

section.contacto-form button[type="submit"].is-disabled,
section.contacto-form button[type="submit"]:disabled{
	opacity:.35;
	pointer-events:none;
	cursor:not-allowed;
}

section.contacto-form .contacto-warning{
	display:none;
	margin-top:.35rem;
	opacity:.7;
}

section.contacto-form .contacto-warning.is-active{
	display:block;
}

section.contacto-form input.is-invalid{
	outline:2px solid currentColor;
	outline-offset:2px;
}

/* ==================================================
   MODULE: events.css
   ================================================== */

section.events{
	width:100%;
	display:grid;
	grid-template-columns:1fr;
	gap:0;
	margin:0;
	padding:0;
	overflow:hidden
}
section.events > article{
	width:100%;
	min-width:0
}
section.events .events-pics{
	position:relative;
	display:flex;
	flex-direction:row;
	flex-wrap:nowrap;
	width:100%;
	height:72dvh;
	margin:0;
	padding:0;
	overflow-x:auto;
	overflow-y:hidden;
	scroll-snap-type:x mandatory;
	-webkit-overflow-scrolling:touch;
	list-style:none
}
section.events .events-pics > li{
	position:relative;
	flex:0 0 100%;
	width:100%;
	height:100%;
	min-width:100%;
	margin:0;
	padding:0;
	overflow:hidden;
	scroll-snap-align:start
}
section.events .events-pics figure{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	margin:0;
	z-index:1
}
section.events .events-pics figure img,
section.events .events-pics figure video{
	width:100%;
	height:100%;
	display:block;
	object-fit:cover;
	object-position:center
}
section.events .events-pics figure::after{
	content:"";
	position:absolute;
	inset:0;
	z-index:2;
	background:linear-gradient(
		0deg,
		rgb(var(--n) / .72) 0%,
		rgb(var(--n) / .38) 42%,
		rgb(var(--n) / .08) 100%
	);
	pointer-events:none
}
section.events .events-pics figcaption{
	position:absolute;
	left:1rem;
	bottom:.75rem;
	z-index:4;
	font-size:.65rem;
	color:rgb(var(--b) / .65)
}
section.events .events-pics .poster-copy{
	position:absolute;
	left:1rem;
	right:1rem;
	bottom:2.25rem;
	z-index:5;
	display:flex;
	flex-direction:column;
	align-items:flex-start;
	width:auto;
	max-width:none;
	margin:0;
	color:rgb(var(--b) / 1);
	pointer-events:none
}
section.events .events-pics .poster-copy dt,
section.events .events-pics .poster-copy dd{
	margin:0
}
section.events .events-pics .poster-copy dt{
	display:flex;
	flex-direction:column;
	gap:.2rem
}
section.events .events-pics .poster-copy .lead{
	margin:0;
	font-size:.65rem;
	font-weight:600;
	line-height:1;
	text-transform:uppercase;
	letter-spacing:.08em;
	opacity:.75
}
section.events .events-pics .poster-copy h2{
	margin:0;
	max-width:12ch;
	font-size:clamp(1.8rem,9vw,3rem);
	line-height:.86;
	font-weight:800;
	letter-spacing:-.055em;
	text-transform:uppercase
}
section.events .events-pics .poster-copy h3{
	margin:0;
	font-size:.75rem;
	line-height:1;
	font-weight:600;
	text-transform:uppercase;
	letter-spacing:.04em;
	opacity:.85
}
section.events .events-pics .poster-copy dd{
	width:min(100%,20rem);
	margin-top:.55rem
}
section.events .events-pics .poster-copy dd p{
	margin:0;
	font-size:.78rem;
	line-height:1.3
}
section.events .events-details{
	display:flex;
	flex-direction:column;
	width:100%;
	margin:0;
	padding:1rem;
	list-style:none;
	background:rgb(var(--n) / .35)
}
section.events .events-details > li{
	display:none;
	margin:0;
	padding:1rem;
	color:rgb(var(--b) / 1)
}
section.events .events-details > li.is-active{
	display:block
}
/* section.events .events-viewpoint{
	position:absolute;
	left:50%;
	bottom:1rem;
	z-index:20;
	display:flex;
	gap:.45rem;
	transform:translateX(-50%)
}
section.events .events-viewpoint span{
	display:block;
	width:.45rem;
	height:.45rem;
	border-radius:50%;
	background:rgb(var(--b) / .35)
}
section.events .events-viewpoint span.is-active{
	background:rgb(var(--c1) / 1)
} */

/* ==================================================
   MODULE: footer.css
   ================================================== */


/* footer mobile */
footer.site-footer {
	position: fixed;
	inset: 0;
	top: 100dvh;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	height: 100dvh;
	max-height: 100dvh;
	margin: 0;
	padding: 0;
	color: rgb(var(--b) / 1);
	overflow: hidden;
	isolation: isolate;
	border-radius: 0;
	box-shadow: none;
	opacity: .75;
	visibility: hidden;
	pointer-events: none;
	z-index: 300;
	transition:
		top .95s cubic-bezier(.22, 1, .36, 1),
		opacity .95s ease,
		visibility .95s ease;
}

footer.site-footer.is-visible {
	top: 0;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

footer.site-footer > * {
	position: relative;
	z-index: 1;
}

/* stamp */
footer.site-footer .stamp {
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 25dvh;
	min-height: 25dvh;
	margin: 0;
	padding: 0 2rem 2rem;
	text-align: center;
	overflow: visible;
	opacity: .85;
	z-index: 10;
	padding: 2rem 0 1rem;
}

footer.site-footer .stamp .stamp-logo {
	position: relative;
	display: block;
	width: 50%;
	height: 100%;
	margin: 0 auto;
	background:linear-gradient(
		60deg,
		#5a5245 0%,
		#7a705f 8%,
		#d7cbb0 16%,
		#fff4d4 21%,
		#b7ab91 27%,
		#837967 34%,
		#cfc3a8 43%,
		#fffbe4 49%,
		#988d78 56%,
		#746b5b 64%,
		#c2b69c 74%,
		#f1e4c7 82%,
		#a59a83 90%,
		#665d4f 100%
	);
	
	-webkit-mask-image: url("/assets/img/iso.webp");
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	-webkit-mask-size: contain;
	
	mask-image: url("/assets/img/iso.webp");
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: contain;
	}

footer.site-footer .stamp .tagline {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	margin: 0 auto;
	gap: .1rem;
}

footer.site-footer .stamp span.lead {
	font-size: .9rem;
	font-weight: 500;
	line-height: 1.15;
}

footer.site-footer .stamp span.caption {
	font-size: .7rem;
	font-weight: 300;
	line-height: 1.25;
}

/* footer container */
footer.site-footer .footer-container {
	position: absolute;
	top: 25dvh;
	left: 0;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	height: 75dvh;
	min-height: 75dvh;
	margin: 0;
	padding: 2rem 2rem 10rem !important;
	color: rgb(var(--b) / 1);
	background: linear-gradient(
		135deg,
		rgb(var(--n-l) / 1) 0%,
		rgb(var(--n-d) / 1) 100%
	);
	border-radius: 1rem 1rem 0 0;
	transform: none;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	pointer-events: auto;
	z-index: 50;
}

/* lists */
footer.site-footer .footer-container ul {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	gap: 0;
	margin: 0;
	padding: 0;
	list-style: none;
}

footer.site-footer .footer-container ul + ul {
	margin-top: 2rem;
	padding-top: 2rem;
	border-top: 1px solid rgb(var(--b) / 1);
}

footer.site-footer .footer-container ul li {
	width: 100%;
	margin: .15rem 0;
	padding: 0;
	color: rgb(var(--b) / 1);
	cursor: pointer;
}

footer.site-footer .footer-container ul li:first-of-type {
	width: 100%;
	margin: 0 0 .75rem;
	padding: 0 0 .5rem;
	font-size: 1.15rem;
	font-weight: 700;
	color: rgb(var(--c1) / 1);
	text-transform: uppercase;
	background: none;
	border-bottom: 1px solid rgb(var(--b) / .5);
	cursor: default;
}

footer.site-footer .footer-container ul li a {
	display: block;
	width: 100%;
	margin: 0;
	padding: .35rem 0;
	color: rgb(var(--b) / 1);
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.25;
	text-decoration: none;
}

footer.site-footer .footer-container ul.easy-menu li a::before {
	font-family: "icomoon";
	content: "\e906";
	margin-right: .75rem;
	color: rgb(var(--c1) / 1);
}

footer.site-footer .footer-container ul.contact li a::before,
footer.site-footer .footer-container ul.corp li a::before {
	content: "";
	margin: 0;
}

/* contact */
footer.site-footer .footer-container ul.contact li a span {
	margin-right: .75rem;
	color: rgb(var(--c1) / 1);
}

footer.site-footer .footer-container ul.contact li.social {
	display: flex;
	flex-direction: row;
	align-items: center;
	width: 100%;
	gap: 1rem;
	margin-top: 1rem;
	padding-top: 1rem;
	border-top: 1px solid rgb(var(--b) / .5);
}

footer.site-footer .footer-container ul.contact li.social a {
	display: inline-flex;
	width: auto;
	margin: 0;
	padding: 0;
}

footer.site-footer .footer-container ul.contact li.social a span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	color: rgb(var(--b) / 1);
	font-size: 1.25rem;
}

/* corp */
footer.site-footer .footer-container ul.corp {
	align-items: flex-start;
	text-align: left;
}

footer.site-footer .footer-container ul.corp li {
	width: 100%;
}

footer.site-footer .footer-container ul.corp li.brand {
	margin: 0 0 1rem;
	padding: 0;
	background: none;
	border: 0;
}

footer.site-footer .footer-container ul.corp .footer-logo {
	position: relative;
	display: block;
	width: 80%;
	max-width: 14rem;
	height: 3rem;
	margin: 0;
	background:linear-gradient(
			100deg,
			#34312a 0%,
			#4a463d 7%,
			#7e7768 14%,
			#d8cfb8 20%,
			#fff6da 24%,
			#b7ad99 30%,
			#766f61 36%,
			#5f5a50 43%,
			#827b6c 50%,
			#efe4c8 57%,
			#ffffff 61%,
			#c8bea8 66%,
			#7a7466 73%,
			#555147 81%,
			#a69d89 88%,
			#e8dcc2 94%,
			#5a554a 100%
		);
		-webkit-mask-image:url("/assets/img/logo-r.webp");
		-webkit-mask-repeat:no-repeat;
		-webkit-mask-position:center;
		-webkit-mask-size:contain;
		mask-image:url("/assets/img/logo-r.webp");
		mask-repeat:no-repeat;
		mask-position:center;
		mask-size:contain;
	}

footer.site-footer .footer-container ul.corp span.lead {
	display: block;
	color: rgb(var(--b) / 1);
	font-size: 1.15rem;
	font-weight: 700;
	line-height: 1.2;
}

footer.site-footer .footer-container ul.corp span.caption {
	display: block;
	margin-top: .35rem;
	color: rgb(var(--b) / .85);
	font-size: .95rem;
	font-weight: 500;
	line-height: 1.35;
}

footer.site-footer .footer-container ul.corp button {
	margin-top: 1rem;
}

/* rights */
footer.site-footer .footer-container span.right {
	position: relative;
	display: block;
	width: 100%;
	margin-top: 2rem;
	padding-top: 1rem;
	color: rgb(var(--c1) / 1);
	font-size: .65rem;
	text-align: center;
	border-top: 1px solid rgb(var(--b) / .35);
}

/* ==================================================
   MODULE: gallery.css
   ================================================== */

/* pic-gallery */

.pic-gallery{
	display:flex;
	align-items:flex-start;
	width:100%;
	background-image:
		linear-gradient(90deg, rgb(var(--n)/.65) 0%, rgb(var(--n)/.85) 100%),
		url("/assets/img/bg.webp");
	background-repeat:repeat;
	background-size:auto;
	background-attachment:fixed;
	background-position:center;
	background-blend-mode:multiply;
}

.pic-gallery > article:nth-child(1){
	width:100%;
	min-width:0;
	padding:0;
}

.pic-gallery > article:nth-child(2){
	position:sticky;
	top:0;
	width:100%;
	min-width:0;
	padding:0;
	color:rgb(var(--b) / 1);
}

.pic-gallery .gallery-cols{
	width:100%;
	margin:0;
	padding:1rem;
	list-style:none;
}

.pic-gallery .gallery-cols > li{
	position:relative;
	width:100%;
	min-width:0;
	margin:0;
	padding:0;
	overflow:hidden;
}

.pic-gallery .gallery-cols figure{
	position:relative;
	width:100%;
	height:100%;
	margin:0;
	overflow:hidden;
	cursor:pointer;
	background:rgb(var(--n) / 1);
}

.pic-gallery .gallery-cols img,
.pic-gallery .gallery-cols video,
.pic-gallery .gallery-cols .gallery-thumb,
.pic-gallery .gallery-cols .responsive-img,
.pic-gallery .gallery-cols .responsive-video{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
}

.pic-gallery .gallery-cols img:hover,
.pic-gallery .gallery-cols video:hover{
	filter:saturate(.5);
}

.pic-gallery .gallery-cols dl{
	display:none;
}

.pic-gallery .gallery-cols figcaption{
	position:absolute;
	left:.75rem;
	bottom:.75rem;
	z-index:2;
	margin:0;
	padding:.3rem .5rem;
	font-size:.75rem;
	line-height:1;
	color:rgb(var(--b) / 1);
	background:rgb(var(--n) / .45);
}

.pic-gallery .gallery-video-mark{
	position:absolute;
	left:50%;
	top:50%;
	z-index:3;
	width:3.25rem;
	height:3.25rem;
	border-radius:50%;
	background:rgb(var(--n) / .55);
	transform:translate(-50%, -50%);
	pointer-events:none;
}

.pic-gallery .gallery-video-mark::before{
	content:"";
	position:absolute;
	left:54%;
	top:50%;
	width:0;
	height:0;
	border-top:.65rem solid transparent;
	border-bottom:.65rem solid transparent;
	border-left:1rem solid rgb(var(--b) / 1);
	transform:translate(-50%, -50%);
}

/* square grid */

.pic-gallery.square-grid .gallery-cols{
	display:grid;
	grid-template-columns:repeat(5, minmax(0, 1fr));
	gap:.5rem;
}

.pic-gallery.square-grid .gallery-cols figure{
	aspect-ratio:1 / 1;
}

/* mosaic grid */

.pic-gallery.mosaic-grid .gallery-cols{
	--cols:6;
	--gap:10px;
	--cell:10rem;

	display:grid;
	grid-template-columns:repeat(var(--cols), minmax(0, 1fr));
	grid-auto-rows:var(--cell);
	grid-auto-flow:dense;
	gap:var(--gap);
}

.pic-gallery.mosaic-grid .gallery-cols > li{
	width:auto;
	min-height:0;
	grid-column:span 1;
	grid-row:span 1;
}

.pic-gallery.mosaic-grid .gallery-cols > li.size-1x1{
	grid-column:span 1;
	grid-row:span 1;
}

.pic-gallery.mosaic-grid .gallery-cols > li.size-1x2{
	grid-column:span 1;
	grid-row:span 2;
}

.pic-gallery.mosaic-grid .gallery-cols > li.size-2x1{
	grid-column:span 2;
	grid-row:span 1;
}

.pic-gallery.mosaic-grid .gallery-cols > li.size-2x2{
	grid-column:span 2;
	grid-row:span 2;
}

/* pinterest grid */

.pic-gallery.pinterest-grid .gallery-cols{
	display:block;
	columns:3;
	column-gap:.25rem;
	margin:0;
	padding:1.5rem;
	list-style:none;
}

.pic-gallery.pinterest-grid .gallery-cols > li{
	display:block;
	width:100%;
	margin:0 0 .25rem;
	break-inside:avoid;
	-webkit-column-break-inside:avoid;
	overflow:hidden;
}

.pic-gallery.pinterest-grid .gallery-cols figure{
	position:relative;
	width:100%;
	height:auto;
	margin:0;
	overflow:hidden;
	cursor:pointer;
	background:rgb(var(--n) / 1);
}

.pic-gallery.pinterest-grid .gallery-cols > li.ratio-1x1 figure{
	aspect-ratio:1 / 1;
}

.pic-gallery.pinterest-grid .gallery-cols > li.ratio-2x3 figure{
	aspect-ratio:2 / 3;
}

.pic-gallery.pinterest-grid .gallery-cols > li.ratio-3x2 figure{
	aspect-ratio:3 / 2;
}

.pic-gallery.pinterest-grid .gallery-cols img,
.pic-gallery.pinterest-grid .gallery-cols video,
.pic-gallery.pinterest-grid .gallery-cols .gallery-thumb,
.pic-gallery.pinterest-grid .gallery-cols .responsive-img,
.pic-gallery.pinterest-grid .gallery-cols .responsive-video{
	display:block;
	width:100%;
	height:100%;
	object-fit:cover;
	object-position:center;
}

/* zoom */

.zoom{
	position:fixed;
	inset:0;
	display:flex;
	align-items:center;
	justify-content:center;
	background:rgb(var(--n-d) / 1);
	opacity:0;
	pointer-events:none;
	transition:opacity .25s ease;
	z-index:350;
}

.zoom.open{
	opacity:1;
	pointer-events:auto;
}

.zoom img,
.zoom video,
.zoom .zoom-img,
.zoom .zoom-video{
	display:block;
	max-width:90vw;
	max-height:90vh;
	object-fit:contain;
	background:#000;
	box-shadow:0 0 30px rgba(0, 0, 0, .45);
}

.zoom .zoom-img,
.zoom .zoom-video{
	display:none;
}

.zoom-close,
.zoom-prev,
.zoom-next{
	position:absolute;
	padding:.5rem;
	font-size:2.5rem;
	line-height:1;
	color:#fff;
	cursor:pointer;
	border:none;
	background:none;
	z-index:2;
}

.zoom-close{
	top:1rem;
	right:1rem;
}

.zoom-prev{
	top:50%;
	left:1rem;
	transform:translateY(-50%);
}

.zoom-next{
	top:50%;
	right:1rem;
	transform:translateY(-50%);
}

.zoom-count{
	position:absolute;
	left:50%;
	bottom:1rem;
	font-size:.9rem;
	letter-spacing:.08em;
	color:#f00;
	transform:translateX(-50%);
	z-index:2;
}

/* ==================================================
   MODULE: gallery copy.css
   ================================================== */

/* pic-gallery mobile */
.pic-gallery {
	display: flex;
	flex-direction: column-reverse;
	width: 100%;
	background-image:
		linear-gradient(90deg, rgb(var(--n)/1) 0%, rgb(var(--n-d)/1) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.pic-gallery > article:nth-child(1),
.pic-gallery > article:nth-child(2) {
	width: 100%;
	min-width: 0;
}

.pic-gallery > article:nth-child(2) {
	padding: 2rem 1rem;
}

.pic-gallery .gallery-cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: .35rem;
	width: 100%;
	margin: 0;
	padding: .5rem;
	list-style: none;
}

.pic-gallery .gallery-cols > li {
	width: 100%;
	min-width: 0;
	margin: 0;
}

.pic-gallery .gallery-cols figure {
	width: 100%;
	margin: 0;
	cursor: pointer;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.pic-gallery .gallery-cols img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pic-gallery .gallery-cols dl {
	display: none;
}

/* pic-gallery | pin-style mobile */
.pic-gallery.pin-style {
	display: flex;
	flex-direction: column-reverse;
	align-items: stretch;
	width: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
}

.pic-gallery.pin-style > article:nth-child(1),
.pic-gallery.pin-style > article:nth-child(2) {
	width: 100%;
	min-width: 0;
}

.pic-gallery.pin-style > article:nth-child(2) {
	position: relative;
	top: auto;
	padding: 3rem 1.25rem;
}

.pic-gallery.pin-style .gallery-cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: 8px;
	gap: .5rem;
	width: 100%;
	margin: 0;
	padding: 1rem;
	list-style: none;
	align-items: start;
}

.pic-gallery.pin-style .gallery-cols > li {
	position: relative;
	display: block;
	width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	overflow: hidden;
	break-inside: auto;
	-webkit-column-break-inside: auto;
}

.pic-gallery.pin-style .gallery-cols figure {
	position: relative;
	width: 100%;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	aspect-ratio: 1 / 1;
}

.pic-gallery.pin-style .gallery-cols img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pic-gallery.pin-style .gallery-cols > li.ratio-square figure {
	aspect-ratio: 1 / 1;
}

.pic-gallery.pin-style .gallery-cols > li.ratio-portrait figure {
	aspect-ratio: 2 / 2.5;
}

.pic-gallery.pin-style .gallery-cols > li.ratio-landscape figure {
	aspect-ratio: 2.5 / 2;
}

.pic-gallery.pin-style .gallery-cols figcaption {
	position: absolute;
	left: .75rem;
	bottom: .75rem;
	z-index: 2;
	margin: 0;
	padding: .3rem .5rem;
	font-size: .7rem;
	line-height: 1;
	color: rgb(var(--b) / 1);
}

/* accordion */
.pic-gallery.pin-style .gallery-cols .artxt {
	position: relative;
	display: block !important;
	padding: .25rem;
	background: rgb(var(--n) / .08);
}

.pic-gallery.pin-style .gallery-cols .artxt dt {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: flex-start;
	width: 100%;
	padding-right: 1.75rem;
	cursor: pointer;
}

.pic-gallery.pin-style .gallery-cols .artxt dt::after {
	content: "\e900";
	position: absolute;
	top: 0;
	right: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "icomoon";
	font-size: .9rem;
	line-height: 1;
	color: rgb(var(--c1) / 1);
	transform: rotate(0deg);
	transition: transform .25s ease;
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt dt::after {
	transform: rotate(180deg);
}

.pic-gallery.pin-style .gallery-cols .artxt h3,
.pic-gallery.pin-style .gallery-cols .artxt h4,
.pic-gallery.pin-style .gallery-cols .artxt p {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt h3 {
	font-size: 1.1rem;
	line-height: 1;
}

.pic-gallery.pin-style .gallery-cols .artxt h4 {
	font-size: .9rem;
	line-height: 1.1;
	font-weight: 400'
}

.pic-gallery.pin-style .gallery-cols .artxt p {
	font-size: .85rem;
	line-height: 1.35;
}

.pic-gallery.pin-style .gallery-cols .artxt h3,
.pic-gallery.pin-style .gallery-cols .artxt hr,
.pic-gallery.pin-style .gallery-cols .artxt dd,
.pic-gallery.pin-style .gallery-cols .artxt button {
	display: block;
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	pointer-events: none;
	transform: translateY(-.35rem);
	transition:
		max-height .45s ease,
		opacity .3s ease,
		transform .35s ease,
		margin .35s ease;
}

.pic-gallery.pin-style .gallery-cols .artxt hr {
	width: 100%;
	margin: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt dd {
	width: 100%;
	margin: 0;
	padding: 0;
}

.pic-gallery.pin-style .gallery-cols .artxt button {
	margin-top: 0;
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt h3,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt hr,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt dd,
.pic-gallery.pin-style .gallery-cols > li.is-open .artxt button {
	max-height: 20rem;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt hr {
	margin: .5rem 0;
}

.pic-gallery.pin-style .gallery-cols > li.is-open .artxt button {
	margin-top: .75rem;
}

.pic-gallery.modula-grid .gallery-cols {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	grid-auto-rows: var(--cell);
	grid-auto-flow: dense;
	gap: .35rem;
	margin: 0;
	padding: .5rem;
	list-style: none;
}

.pic-gallery.modula-grid .gallery-cols > li {
	position: relative;
	display: block;
	width: auto;
	min-width: 0;
	min-height: 0;
	margin: 0;
	overflow: hidden;
	break-inside: auto;
	-webkit-column-break-inside: auto;
	grid-column: span 1;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-1x1 {
	grid-column: span 1;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-2x1 {
	grid-column: span 2;
	grid-row: span 1;
}

.pic-gallery.modula-grid .gallery-cols > li.size-1x2 {
	grid-column: span 1;
	grid-row: span 2;
}

.pic-gallery.modula-grid .gallery-cols > li.size-2x2 {
	grid-column: span 2;
	grid-row: span 2;
}

.pic-gallery.modula-grid .gallery-cols figure {
	position: relative;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
}

.pic-gallery.modula-grid .gallery-cols img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pic-gallery.modula-grid .gallery-cols .artxt {
	display: none;
}

/* zoom mobile */
.zoom {
	position: fixed;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgb(var(--n-d) / 1);
	opacity: 0;
	pointer-events: none;
	transition: opacity .25s ease;
	z-index: 350;
	overflow: hidden;
	touch-action: none;
	overscroll-behavior: none;
}

.zoom.open {
	opacity: 1;
	pointer-events: auto;
}

.zoom img {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	max-width: 94vw;
	max-height: 86dvh;
	object-fit: contain;
	box-shadow: 0 0 30px rgba(0, 0, 0, .45);
	transform: translate(-50%, -50%);
	will-change: transform;
	transition: transform .28s ease;
}

.zoom.is-dragging img {
	transition: none;
}

.zoom-ghost {
	pointer-events: none;
}

.zoom-close,
.zoom-prev,
.zoom-next {
	position: absolute;
	padding: .5rem;
	font-size: 2.5rem;
	line-height: 1;
	color: #fff;
	cursor: pointer;
	border: none;
	background: none;
	z-index: 2;
}

.zoom-close {
	top: 1rem;
	right: 1rem;
}

.zoom-prev {
	top: 50%;
	left: .5rem;
	transform: translateY(-50%);
}

.zoom-next {
	top: 50%;
	right: .5rem;
	transform: translateY(-50%);
}

.zoom-count {
	position: absolute;
	left: 50%;
	bottom: 1rem;
	font-size: .9rem;
	letter-spacing: .08em;
	color: #f00;
	transform: translateX(-50%);
	z-index: 2;
}

/* ==================================================
   MODULE: header.css
   ================================================== */

/* header - footer */
.hero-header,
div.min,
.site-footer {
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.6s ease, transform 0.6s ease;
}

.is-visible {
	opacity: 1 !important;
	pointer-events: auto !important;
	transform: translate(0, 0) !important;
}

div.hero-header {
	position: fixed;
	inset: 0;
	z-index: 300;
	pointer-events: none;
	background-image:
	linear-gradient(
		-130deg,
		rgb(var(--n-d) / .97) 0%,
		rgb(var(--n-d) / .88) 30%,
		rgb(var(--n-d) / .68) 38%,
		rgb(var(--n-d) / .50) 44%,
		rgb(var(--n-l) / .4) 50%,
		rgb(var(--n-d) / .50) 56%,
		rgb(var(--n-d) / .70) 63%,
		rgb(var(--n-d) / .88) 72%,
		rgb(var(--n-d) / .98) 100%
	),
	linear-gradient(
		-130deg,
		transparent 0%,
		transparent 38%,
		rgb(255 255 255 / .04) 42%,
		rgb(255 255 255 / .12) 46%,
		rgb(255 255 255 / .30) 50%,
		rgb(255 255 255 / .14) 54%,
		rgb(255 255 255 / .05) 58%,
		transparent 64%,
		transparent 100%
	),
	url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

div.hero-header div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 80%;
	text-align: center;
	color: rgb(var(--b) / 1);
	transform: translate(-50%, -50%);
	
}

div.hero-header div span.lead {
	font-size: 1.5rem;
	font-weight: 700;
}
div.hero-header div span.caption {
	font-size: 1.25rem;
	font-weight: 500;
}
div.hero-header .brand-logo{
	position:relative;
	z-index:2;
	display:block;
	width:100%;
	height:18dvh;
	margin:0 auto 1rem;
	background:linear-gradient(
		100deg,
		#34312a 0%,
		#4a463d 7%,
		#7e7768 14%,
		#d8cfb8 20%,
		#fff6da 24%,
		#b7ad99 30%,
		#766f61 36%,
		#5f5a50 43%,
		#827b6c 50%,
		#efe4c8 57%,
		#ffffff 61%,
		#c8bea8 66%,
		#7a7466 73%,
		#555147 81%,
		#a69d89 88%,
		#e8dcc2 94%,
		#5a554a 100%
	);
	-webkit-mask-image:url("/assets/img/logo.webp");
	-webkit-mask-repeat:no-repeat;
	-webkit-mask-position:center;
	-webkit-mask-size:contain;
	mask-image:url("/assets/img/logo.webp");
	mask-repeat:no-repeat;
	mask-position:center;
	mask-size:contain;
}

div.hero-header .brand-logo-shadow{
	position:absolute;
	top:0;
	left:0;
	z-index:1;
	display:block;
	width:100%;
	height:18dvh;
	object-fit:contain;
	object-position:center;
	margin:0;
	padding:0;
	opacity:1;
	filter:
		drop-shadow(-1px -1px 0 rgb(var(--b) / .8))
		drop-shadow(4px 4px 6px rgb(var(--n-d) / 1));
	pointer-events:none;
	user-select:none;
}

div.hero-div.is-visible {
	transform: scale(1);
}

div.min {
	position: fixed;
	top: 0;
	left: 1%;
	display: flex;
	align-items: center;
	width: 18%;
	height: 9dvh;
	padding: 0 0 1rem 0;
	color: rgb(var(--b-light) / 1);
	background: rgb(var(--n-dark) / .8);
	border: 4px solid inherit;
	border-radius: 0 0 1rem 1rem;
	transform: translateX(0) translateY(-100%);
	z-index: 300;
}

div.min .header-iso {
	position: absolute;
	width: 100%;
	height: 60%;
	display: block;
	background:linear-gradient(
			60deg,
			#5a5245 0%,
			#7a705f 8%,
			#d7cbb0 16%,
			#fff4d4 21%,
			#b7ab91 27%,
			#837967 34%,
			#cfc3a8 43%,
			#fffbe4 49%,
			#988d78 56%,
			#746b5b 64%,
			#c2b69c 74%,
			#f1e4c7 82%,
			#a59a83 90%,
			#665d4f 100%
		);
	
		-webkit-mask-image: url("/assets/img/iso.webp");
		-webkit-mask-repeat: no-repeat;
		-webkit-mask-position: center;
		-webkit-mask-size: contain;
	
		mask-image: url("/assets/img/iso.webp");
		mask-repeat: no-repeat;
		mask-position: center;
		mask-size: contain;
	}

/* ==================================================
   MODULE: headline.css
   ================================================== */

.headline {
	padding: 2rem 2rem;
	align-items: stretch;
	background-image: linear-gradient(90deg, rgb(var(--c2) / 1) 0%, rgb(var(--n) / 1) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	border-radius: .25rem
}

.headline .artxt {
	display: flex;
	color: rgb(var(--b) / 1);
}

.headline .artxt dt {
	width: 100%;
	flex-direction: column;
	margin-bottom: 3rem;
	border-bottom: 1px solid rgb(var(--n) / .5);
}

.headline .artxt dt h2{
	color: rgb(var(--b) / 1)
}

.headline dd p {
	column-count: 1;
	column-gap: 0;
}


/* ==================================================
   MODULE: launchpad.css
   ================================================== */

/* launchpad mobile */
.launchpad {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100dvh;
	margin: 0;
	padding: 0 0 3rem;
	overflow: hidden;
	background-image:
		linear-gradient(80deg, rgb(var(--n)/.7) 0%, rgb(var(--n)/.9) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.launchpad > article:nth-child(1) {
	width: 100%;
	min-width: 0;
	padding: 4rem 1.25rem 2rem;
}

.launchpad > article:nth-child(2) {
	position: relative;
	width: 100%;
	min-width: 0;
	padding: 0;
	overflow: hidden;
}

.launchpad > article:nth-child(2) h2 {
	margin: 0;
	font-size: 1.8rem;
	line-height: 1.1;
}

.launchpad ul {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	gap: 1rem;
	width: 100%;
	margin: 0;
	padding: 0 0 3rem;
	list-style: none;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-padding-inline: 9vw;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	touch-action: pan-x;
	overscroll-behavior-x: contain;
}

.launchpad ul::before,
.launchpad ul::after {
	content: "";
	display: block;
	flex: 0 0 calc(9vw - 1rem);
	min-width: calc(9vw - 1rem);
}

.launchpad ul::-webkit-scrollbar {
	display: none;
}

.launchpad li {
	position: relative;
	display: flex;
	flex: 0 0 82vw;
	flex-direction: column;
	min-width: 82vw;
	min-height: 0;
	overflow: hidden;
	cursor: pointer;
	scroll-snap-align: center;
	scroll-snap-stop: always;
	color: rgb(var(--b) / 1);
	border: 1px solid rgb(var(--b) / 1);
	border: 1px solid rgb(var(--b) / 1);
	border-bottom: 10px solid transparent;
	border-radius: .25rem;
	border-image: linear-gradient(90deg,#24231f 0%,#302f2a 7%,#4b4941 14%,#77736a 22%,#36352f 31%,#2a2925 39%,#6b675f 49%,#d8d4c8 61%,#f3f1e7 68%,#c6c1b5 75%,#6d6a62 84%,#34332f 93%,#262521 100%) 1;
	background-image:
		linear-gradient(80deg, rgb(var(--n)/.7) 0%, rgb(var(--n)/.9) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	opacity: .55;
	transform: scale(.94);
	box-shadow: none;
	transition:
		opacity .35s ease,
		transform .35s ease,
		border-color .35s ease,
		box-shadow .35s ease,
		background-color .35s ease,
		color .35s ease;
}

.launchpad li.is-active {
	opacity: 1;
	transform: translateY(-.5rem) scale(1);
	color: rgb(var(--b) / 1);
	background-image:
		linear-gradient(80deg, rgb(var(--n)/.7) 0%, rgb(var(--n)/.9) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	border-color: rgb(var(--c1) / 1);
	box-shadow: 0 2rem 4.5rem rgb(var(--n) / 1);
}

.launchpad li figure {
	position: relative;
	width: 100%;
	height: auto;
	margin: 0;
	overflow: hidden;
}

.launchpad li figure img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	transition:
		transform .45s ease,
		filter .45s ease;
}

.launchpad li.is-active figure img {
	filter: saturate(1.08) contrast(1.1) brightness(.98);
	transform: scale(1.08);
}

.launchpad li figure figcaption {
	position: absolute;
	left: auto;
	right: .75rem;
	bottom: .75rem;
	z-index: 5;
	font-size: .65rem;
	color: rgb(var(--b) / .72);
}

.launchpad li dl {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	flex: 1;
	margin: 0;
	padding: 3rem 1rem;
	background-image: linear-gradient(80deg, rgb(var(--n)/.7) 0%, rgb(var(--n)/.9) 100%),
		url("/assets/img/bg.webp") !important;
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	transition:
		transform .35s ease,
		background-color .35s ease,
		color .35s ease;
}

.launchpad li.is-active dl {
	color: rgb(var(--b) / 1);
	background-image: linear-gradient(110deg, rgb(var(--n)/.8) 0%, rgb(var(--n)/.95) 100%),
		url("/assets/img/bg.webp") !important;
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	transform: translateY(-.5rem);
}

.launchpad li dt {
	margin: 0;
	color: rgb(var(--c1) / 1);
}

.launchpad li dt h3 {
	margin: 0;
	font-size: 2rem;
	line-height: 1;
	font-weight: 800;
}

.launchpad li dt h4 {
	margin: .5rem 0 0;
	font-size: 1.25rem;
	line-height: 1.1;
	font-weight: 700;
}

.launchpad li hr {
	width: 30%;
	height: 2px;
	margin: 1rem 0;
	border: 0;
	border-top: 1px solid rgb(var(--c1) / 1);
	border-bottom: 1px solid rgb(var(--c1) / 1);
	opacity: 1;
	transition: width .45s ease;
}

.launchpad li.is-active hr {
	width: 4rem;
}

.launchpad li dd {
	margin: 0;
	color: rgb(var(--n) / 1);
}

.launchpad li p {
	margin: 0;
	font-size: .9rem;
	line-height: 1.35;
}

.launchpad li.is-active h4,
.launchpad li.is-active p,
.launchpad li.is-active dd {
	color: rgb(var(--b) / 1);
	opacity: 1;
}

.launchpad li .artxt-toggle {
	margin-top: 1rem;
}

/* ==================================================
   MODULE: magazzine.css
   ================================================== */

/* magazzine mobile */
section.magazzine {
	position: relative;
	background-image:
		linear-gradient(90deg, rgb(var(--n)/1) 0%, rgb(var(--n-d)/1) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	width: 100%;
}

section.magazzine > article {
	position: relative;
}

section.magazzine .header {
	padding: 2rem 1.5rem 0;
}

section.magazzine .pic {
	padding: 0;
}

section.magazzine .pic img {
	aspect-ratio: 2.5 / 2;
}

/* body swipe */
section.magazzine .body {
	position: relative;
	display: flex;
	flex-direction: row;
	width: 100%;
	margin: 0;
	padding:1rem 1.5rem 2rem;
	gap: 1rem;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	scroll-padding: 8%;
	-webkit-overflow-scrolling: touch;
}

section.magazzine .body::-webkit-scrollbar {
	display: none;
}

section.magazzine .body > dd {
	flex: 0 0 84%;
	width: 84%;
	min-width: 84%;
	margin: 0;
	padding: 2rem;
	scroll-snap-align: start;
	background: rgb(var(--b) / .45);
	border-radius: 1rem;
}

section.magazzine .body > dd h4 {
	margin: 0 0 1rem;
}

section.magazzine .body > dd p {
	margin: 0;
}

/* señales laterales */
section.magazzine .body-wrap {
	position: relative;
}

section.magazzine .body-wrap::before,
section.magazzine .body-wrap::after {
	content: "";
	position: absolute;
	top: 1rem;
	bottom: 4rem;
	width: 2.5rem;
	pointer-events: none;
	z-index: 5;
	opacity: 0;
	transition: opacity .25s ease;
}

section.magazzine .body-wrap::before {
	left: 0;
	background: linear-gradient(90deg, rgb(var(--b-dark) / .9), rgb(var(--b-dark) / 0));
}

section.magazzine .body-wrap::after {
	right: 0;
	background: linear-gradient(270deg, rgb(var(--b-dark) / .9), rgb(var(--b-dark) / 0));
}

section.magazzine.has-left .body-wrap::before,
section.magazzine.has-right .body-wrap::after {
	opacity: 1;
}

/* indicador */
section.magazzine .body-viewpoint {
	position: absolute;
	left: 50%;
	bottom: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: .45rem;
	transform: translateX(-50%);
	z-index: 10;
	pointer-events: none;
}

section.magazzine .body-viewpoint span {
	display: block;
	width: .45rem;
	height: .45rem;
	border-radius: 50%;
	background: rgb(var(--n) / .35);
	transition:
		background .25s ease,
		transform .25s ease;
}

section.magazzine .body-viewpoint span.is-active {
	background: rgb(var(--c1) / 1);
	transform: scale(1.35);
}
.magazzine-wrap {
	position: relative;
}

.magazzine .body {
	position: relative;
}


/* ==================================================
   MODULE: menu.css
   ================================================== */

/* menu mobile */
.header-toggle {
	position: fixed;
	top: 5%;
	right: 5%;
	z-index: 250;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin: 0;
	padding: 0;
	color: rgb(var(--c1) / 1);
	background: transparent;
	border: 0;
	cursor: pointer;
}

.header-toggle span {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	line-height: 1;
	transition:
		opacity .25s ease,
		transform .25s ease;
}

.header-toggle .btn-open-menu {
	opacity: 1;
	transform: scale(1);
}

.header-toggle .btn-close-menu {
	opacity: 0;
	transform: scale(.7);
	pointer-events: none;
}

body.menu-open .header-toggle .btn-open-menu {
	opacity: 0;
	transform: scale(.7);
	pointer-events: none;
}

body.menu-open .header-toggle .btn-close-menu {
	opacity: 1;
	transform: scale(1);
	pointer-events: auto;
}

/* panel mobile */
.menu {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 200;

	display: flex;
	align-items: center;
	justify-content: center;

	width: 100%;
	height: auto !important;
	min-height: 100svh;
	max-height: 100svh;

	margin: 0;
	padding: 4rem 3rem;

	color: rgb(var(--b) / 1);
	background-image:
		linear-gradient(90deg, rgb(var(--n)/.75) 0%, rgb(var(--n)/.95) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;

	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	user-select: none;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateX(-100%);

	transition:
		transform .55s cubic-bezier(.22, 1, .36, 1),
		opacity .35s ease,
		visibility .35s ease,
		background-color .35s ease,
		color .35s ease;
}

body.menu-open .menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateX(0);
	touch-action: pan-y;
}

body.menu-open {
	overflow: hidden;
	touch-action: none;
}

.menu .menu-root {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: center;

	width: min(100%, 28rem);
	min-height: 100%;
	margin: 0 auto;
	padding: 0;

	list-style: none;
}

.menu li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	padding: 1rem 2.75rem 1rem 0;
	color: inherit;
	font-size: 1.05rem;
	font-weight: 600;
	line-height: 1.2;
	list-style: none;
	cursor: pointer;
}

.menu li i {
	display: block;
	margin: .25rem 0 0;
	color: rgb(var(--b) / .6) !important;
	font-size: .8rem;
	font-style: normal;
	font-weight: 500;
	line-height: 1.25;
}

.menu i::before {
	content: "" !important;
}

/* arrow */
.menu li:has(> ul)::after {
	content: "\e900";
	position: absolute;
	top: 1rem;
	right: 0;
	display: inline-flex;
	font-family: "icomoon" !important;
	font-size: .9rem;
	line-height: 1;
	color: rgb(var(--c1) / 1);
	transform: rotate(0deg);
	transition: transform .25s ease;
}

.menu li.is-open:has(> ul)::after {
	transform: rotate(180deg);
}

/* dropdown */
.menu .menu-root li > ul {
	position: relative;
	top: auto;
	left: auto;
	display: none;
	flex-direction: column;
	width: 100% !important;
	min-width: 0;
	margin: .75rem 0 0;
	padding: .75rem 0 0;
	color: inherit;
	background: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	list-style: none;
	z-index: 1;
}

.menu .menu-root li.is-open > ul {
	display: flex !important;
}

.menu .menu-root ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: 100%;
	margin: 0;
	padding: .5rem 0;
	color: inherit;
	background: none;
	border: 0;
	border-radius: 0;
}

.menu .menu-root ul li:hover {
	color: rgb(var(--c1) / 1);
	background: none;
}

.menu .menu-root ul li::before {
	content: "";
}

/* nested dropdown */
.menu .menu-root ul ul {
	position: relative;
	top: auto;
	left: auto;
	display: none;
	width: 100%;
	min-width: 0;
	margin: .5rem 0 0;
	padding: .5rem 0 0;
	color: inherit;
	background: none;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: 0;
	list-style: none !important;
}

.menu .menu-root ul ul li {
	margin: 0;
	padding: .4rem 0;
	background: none;
}

/* language */
.menu li.language {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: .35rem;
	width: 100%;
	padding: 1rem 0;
}

.menu .language .lang-option {
	display: inline-block;
	margin: 0;
	color: rgb(var(--c1) / 1);
	font-weight: 900;
	text-decoration: none;
	cursor: pointer;
}

.menu .language .lang-option + .lang-option::before {
	content: "/";
	display: inline-block;
	margin-right: .35rem;
	color: rgb(var(--b) / .45);
	font-weight: 400;
}

/* search mobile */
.menu .site-search {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: flex-start;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 1rem 0;
	color: inherit;
	overflow: visible;
}

.menu .site-search:has(> ul)::after,
.menu .site-search::before {
	content: none;
}

.menu .site-search-toggle {
	position: absolute;
	top: 1rem;
	right: 0;
	z-index: 3;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 2rem;
	margin: 0;
	padding: 0;
	cursor: pointer;
	text-decoration: none;
	background: none;
	border: 0;
}

.menu .site-search-toggle::before {
	content: "\e910";
	font-family: "icomoon" !important;
	font-size: 1rem;
	color: rgb(var(--c1) / 1);
	line-height: 1;
}

.menu .site-search input {
	position: relative;
	top: auto;
	right: auto;
	left: auto;
	z-index: 2;
	display: block;
	width: 100%;
	height: 2.75rem;
	margin: 0;
	padding: .35rem 3rem .35rem 1rem;
	font-family: inherit;
	font-size: 1rem;
	color: rgb(var(--n) / 1);
	background: rgb(var(--b) / 1);
	border: 0;
	border-radius: 0;
	outline: none;
}

.menu .site-search.search-open input {
	display: block;
}

.menu .site-search input::placeholder {
	color: rgb(var(--n) / .55);
	opacity: 1;
}

.menu #site-search-results {
	position: relative;
	top: auto;
	right: auto;
	left: auto;
	z-index: 2;
	display: none;
	width: 100% !important;
	max-height: 45dvh;
	margin: .75rem 0 0;
	padding: .75rem;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-overflow-scrolling: touch;
	overscroll-behavior: contain;
	list-style: none;
	color: rgb(var(--n) / 1);
	background: rgb(var(--b) / 1);
}

.menu #site-search-results.active {
	display: block;
}

.menu #site-search-results li {
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: .55rem;
	color: rgb(var(--n) / 1);
	cursor: pointer;
	background: none;
	border: 0;
	border-radius: 0;
}

.menu #site-search-results li::before {
	content: none;
}

.menu #site-search-results li:hover {
	background: rgb(var(--n) / .08);
}

.menu #site-search-results strong,
.menu #site-search-results span,
.menu #site-search-results p {
	color: rgb(var(--n) / 1);
}

body.site-search-open {
	overflow: hidden;
}

/* ==================================================
   MODULE: poster-simple.css
   ================================================== */

/* poster-simple */
.poster-simple{
	position:sticky;
	top:0;
	width:100vw;
	height:100dvh;
	margin-left:calc(50% - 50vw);
	overflow:hidden;
}

.poster-simple > article{
	position:relative;
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	overflow:hidden;
}

.poster-simple .poster-simple-media{
	position:absolute !important;
	inset:0 !important;
	z-index:1;
	width:100% !important;
	height:100% !important;
	margin:0 !important;
	padding:0 !important;
	overflow:hidden;
}

.poster-simple .poster-simple-media img,
.poster-simple .poster-simple-media video,
.poster-simple .poster-simple-media .responsive-img,
.poster-simple .poster-simple-media .responsive-video{
	position:absolute;
	inset:0;
	z-index:1;
	display:block;
	width:100% !important;
	height:100% !important;
	max-width:none !important;
	object-fit:cover;
	object-position:center;
}

.poster-simple-media-overlay{
	position:absolute;
	inset:45dvh 5% 0 5%;
	z-index:2;
	pointer-events:none;
	background:radial-gradient(circle at top right, rgb(var(--c2) / 1) 0%, rgb(0 0 0 / .95) 65%);
	mix-blend-mode:multiply;
}

.poster-simple-textbox{
	position:absolute;
	top:45dvh;
	left:5%;
	z-index:3;
	width:90%;
	height:55dvh;
	margin:0;
	padding:1.5rem;
	overflow:hidden;
	color:rgb(var(--b) / 1);
	pointer-events:auto;
	border-radius:.25rem;
}

.poster-simple-track{
	position:relative;
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	overflow:hidden;
}

.poster-simple-item{
	position:absolute;
	inset:0;
	z-index:1;
	display:flex;
	flex-direction:column;
	justify-content:center;
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	opacity:0;
	visibility:hidden;
	pointer-events:none !important;
	transform:translateY(0);
	transition:
		opacity .42s ease,
		transform .52s cubic-bezier(.22, 1, .36, 1),
		visibility .42s ease;
	will-change:opacity, transform;
}

.poster-simple-item.is-active{
	z-index:5;
	opacity:1;
	visibility:visible;
	pointer-events:auto !important;
	transform:translateY(0);
}

.poster-simple-item.is-before{
	opacity:0;
	visibility:hidden;
	transform:translateY(-2.5rem);
}

.poster-simple-item.is-after{
	opacity:0;
	visibility:hidden;
	transform:translateY(2.5rem);
}

.poster-simple-item.is-leaving-up{
	z-index:4;
	opacity:0;
	visibility:visible;
	transform:translateY(-2.5rem);
}

.poster-simple-item.is-leaving-down{
	z-index:4;
	opacity:0;
	visibility:visible;
	transform:translateY(2.5rem);
}

.poster-simple-item:not(.is-active) [data-edit-field],
.poster-simple-item:not(.is-active) [data-edit-type],
.poster-simple-item:not(.is-active) button,
.poster-simple-item:not(.is-active) a{
	pointer-events:none !important;
}

.poster-simple .artxt{
	width:100%;
	height:100%;
	margin:0;
	padding:0;
	color:inherit;
}

.poster-simple .artxt > dt{
	width:100%;
	margin:0;
	padding:0;
}

.poster-simple .artxt > dd{
	width:100%;
	margin:0;
	padding:0;
}

.poster-simple .artxt > dd .caption{
	display:block;
}

.poster-simple-viewpoint{
	position:absolute;
	left:2rem;
	right:2rem;
	bottom:5%;
	z-index:5;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	gap:.45rem;
	pointer-events:auto;
}

.poster-simple-viewpoint button{
	display:flex;
	align-items:center;
	justify-content:center;
	width:.55rem;
	height:.55rem;
	margin:0;
	padding:0;
	border:0;
	border-radius:50%;
	background:currentColor;
	color:currentColor;
	opacity:.35;
	cursor:pointer;
	font:inherit;
	line-height:1;
}

.poster-simple-viewpoint button.is-active{
	opacity:1;
}

body.simple-edit-mode .poster-simple-viewpoint button.is-add-item{
	width:1.35rem;
	height:1.35rem;
	background:rgb(var(--c1) / 1);
	color:rgb(var(--b) / 1);
	opacity:1;
	font-family:Arial,sans-serif;
	font-size:.9rem;
	font-weight:700;
	line-height:1;
}

body.simple-edit-mode .poster-simple-add-trigger{
	position:absolute;
	left:2rem;
	bottom:10%;
	z-index:999999;
	display:inline-flex;
	align-items:center;
	justify-content:center;
	width:auto;
	height:auto;
	margin:0;
	padding:.7rem .95rem;
	border:1px solid rgb(var(--b) / 1);
	background:rgb(var(--n) / 1);
	color:rgb(var(--b) / 1);
	font-family:Arial,sans-serif;
	font-size:12px;
	font-weight:700;
	line-height:1;
	text-transform:uppercase;
	letter-spacing:.04em;
	cursor:pointer;
}

body.simple-edit-mode .poster-simple-add-trigger:hover,
body.simple-edit-mode .poster-simple-add-trigger.is-active{
	background:rgb(var(--b) / 1);
	color:rgb(var(--n) / 1);
}

/* ==================================================
   MODULE: poster.css
   ================================================== */

/* poster mobile */
.poster {
	position: relative;
	width: 100%;
	min-height: 300dvh;
	overflow: visible;
	opacity: 1;
	transition: opacity 0.5s ease-out;
	will-change: opacity;
}

.poster article {
	position: relative;
	width: 100%;
	min-height: 300dvh;
	overflow: visible;
	z-index: 1
}

.poster figure {
	position: sticky;
	top: 0;
	width: 100%;
	height: 100dvh;
	margin: 0;
	aspect-ratio: auto;
	overflow: hidden;
	z-index: 1;
}

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

.poster .artxt {
	position: absolute;
	top: 100dvh;
	left: 9%;
	width: 82%;
	padding: 0;
	color: rgb(var(--b) / 1);
	border-radius: 1rem;
	z-index: 2;
	gap: 0;
}

.poster .artxt dt {
	width: 100%;
	padding: 0;
}

.poster .artxt dd {
	width: 100%;
	padding: 3rem;
}

/* ==================================================
   MODULE: setings.css
   ================================================== */


:root {
	--bg: 245 242 236;

	--c1-d: 191 38 4;     /* #BF2604 */
	--c1: 242 56 15;      /* #F2380F */
	--c1-l: 242 56 15;    /* #F2380F */
	
	--c2-d: 33 47 43;     /* #212F2B */
	--c2: 71 88 79;       /* #47584F */
	--c2-li: 71 88 79;    /* #47584F */
	
	--c3-d: 191 183 173;  /* #BFB7AD */
	--c3: 191 183 173;    /* #BFB7AD */
	--c3-l: 191 183 173;  /* #BFB7AD */
	
	--b-d: 191 183 173;   /* #BFB7AD */
	--b: 191 183 173;     /* #BFB7AD */
	--b-l: 191 183 173;   /* #BFB7AD */
	
	--n-d: 33 47 43;      /* #212F2B */
	--n: 33 47 43;        /* #212F2B */
	--n-l: 71 88 79;      /* #47584F */
	

	--viewport-color: 255 255 255;
	font-size: 16px;
}

* {
	box-sizing: border-box;
}

html {

	width: 100%;
	max-width: 100%;
	min-height: 100%;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
}

body {

	width: 100%;
	max-width: 100%;
	min-height: 100dvh;
	margin: 0;
	padding: 0;

	font-family: "Rubik", sans-serif;
	  font-optical-sizing: auto;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	line-height: 1.3;
	color: rgb(var(--b) / 1);
	background-image: linear-gradient(130deg, rgb(var(--n-l)/0) 0%, rgb(var(--n-d)/0) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-overflow-scrolling: touch;

}

*, *::before, *::after {
box-sizing: border-box;
}
h1,h2,h3{
	overflow-wrap:anywhere;
	word-break:break-word;
	hyphens:none;
}
main {

	position: relative;
	top: auto;
	left: auto;
	width: 100%;
	max-width: 100%;
	min-width: 0;

}

section {
overflow-x: hidden;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	height: auto;
	margin: 0;
	padding: 0;
	z-index: 20;

}

section > article {

	position: relative;
	display: block;
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	padding: 0;
	background: none;

}

img,

video,

svg,

canvas {

	max-width: 100%;

}

figure {

	max-width: 100%;
	margin: 0;

}

h1 {
	font-size: 6rem;
	line-height: 0.85;
	letter-spacing: -0.01em;
	font-weight: 900;
}

h2 {
	font-size:2rem;
line-height:1;
letter-spacing:0;
font-weight:900;
text-transform: uppercase;
text-shadow: -1px -1px 1px rgba(255, 255, 255, 0.5), 3px 3px 6px rgb(var(--n) / .5)
}

h3 {
	font-size: 1.5rem;
	line-height: 1.05;
	letter-spacing: -0.035em;
	font-weight: 600;
}

h4 {
	font-size: 1.5rem;
	line-height: 1.15;
	letter-spacing: -0.02em;
	font-weight: 700;
}

p {
	font-size: 1rem;
	line-height: 1.45;
	font-weight: 500;
}

.lead {
	font-size: 1.25rem;
	line-height: 1.2;
	font-weight: 300;
}

.caption {
	font-size: .75rem;
	line-height: 1.3;
	letter-spacing: 0.04em;
}

.big-txt  {
	font-size: 6rem;
	line-height: 0.85;
	letter-spacing: -0.01em;
	font-weight: 900;
	color: rgb(var(--) / .2);
}

a {
	display: inline-block;
	margin-top: 1rem;
	font-size: 1rem;
	font-weight: 400;
	color: rgb(var(--c1) / 1);
	text-decoration: none;
	text-underline-offset: 3px;
}

a:hover {
	opacity: 0.9;
}

hr {
	margin: 1rem 0;
	border: none;
	border-top: 1px solid rgb(var(--n) / 1);
	border-bottom: 1px solid rgb(var(--b) / 1);
	opacity: 0.5;
}

button {
	display: inline-block;
	width: fit-content;
	margin-top: 1rem;
	padding: 0.15rem .5rem;
	font-size: 1rem;
	font-weight: 500;
	color: rgb(var(--b) / 1);
	cursor: pointer;
	border: none;
	border-radius: .05rem;
	background: rgb(var(--c1) / 1);
	z-index: 10;
	align-self: flex-start;
}

button.m {
	color: rgb(var(--b) / 1);
	border: 1px solid rgb(var(--b) / 1);
	background: none;
}

button.w {
	color: rgb(var(--n-d) / 1);
	background: rgb(var(--b) / .75);
}
/* helpers */
.spacer {
	height: 50dvh;
}

.spacer.x {
	height: 100dvh;
}

.spacer.xl {
	height: 150dvh;
}
/* glass */
.glass {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	background: linear-gradient(30deg, rgb(var(--n) / 0.1) 0%, rgb(var(--n-l) / 0.15) 100%);
	border-radius: 1rem;
	backdrop-filter: blur(25px);
	-webkit-backdrop-filter: blur(25px);
	box-shadow: 5px 5px 15px rgb(var(--n) / .4), 1px 1px 1px rgb(var(--n) /.2), -1px -1px 1px rgb(var(--b) / .3);
}

.glass::after {
	content: "";
	position: absolute;
	inset: 0;
	pointer-events: none;
	background: url("/assets/img/patternblack.png") repeat;
	background-size: 2px;
	filter: invert(1);
	opacity: 0.15;
	border-radius: 1rem;
}

.glass > * {
	position: relative;
	z-index: 1;
}


/* artxt */
.artxt {
	width: 100%;
	margin: 0;
	padding: 0;
}

.artxt dd {
	margin: 0;
}

.artxt p {
	max-height: 9lh;
	margin: 0;
	overflow: hidden;
	transition: max-height 0.9s ease;
}

.artxt p.active {
	max-height: 18lh;
	overflow: auto;
}

.artxt-toggle {
	display: none;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	padding: 0;
	background: none;
	margin: 0;
}

.artxt-toggle.visible {
	display: block;
}

.artxt-toggle::before {
	content: "+";
	color: rgb(var(--c1) / 1);
	font-size: 2rem;
	font-weight: 700;
}

.artxt-toggle.is-open::before {
	content: "-";
	color: #f33;
	font-size: 2rem;
	font-weight: 700;
}
[data-anim="on"] dt h1,
[data-anim="on"] dt h2,
[data-anim="on"] dt h3,
[data-anim="on"] dt h4,
[data-anim="on"] dt p,
[data-anim="on"] .artxt-toggle {
	opacity: 0;
	transform: translateX(25px);
	transition: opacity 0.8s ease, transform 0.8s ease;
}

.artxt.appeared dt h1,
.artxt.appeared dt h2,
.artxt.appeared dt h3,
.artxt.appeared dt h4,
.artxt.appeared dt p,
.artxt.appeared .artxt-toggle {
	opacity: 1;
	transform: translateY(0);
}

/* media */
figure {
	position: relative;
	display: flex;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0;
	overflow: hidden;
	gap: 0;
}

figure[data-layout="col"] {
	flex-direction: column;
	gap: 2px;
}

figure[data-layout="row"] {
	flex-direction: row;
	gap: 2px;
}

figure img.responsive-img {
	display: block;
	flex: 1;
	width: 100%;
	height: 100%;
	min-width: 0;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 2 / 3;
	filter: saturate(0) contrast(1);
}

figure[data-layout="row"] img.responsive-img {
	aspect-ratio: 16 / 9;
}

figure figcaption {
	position: absolute;
	bottom: 10px;
	left: 10px;
	padding: 2px 5px;
	font-size: 0.7rem;
	font-style: italic;
	color: rgb(var(--b) / 1);
	pointer-events: none;
	background: none;
	z-index: 10;
}

figure i {
	display: block;
	margin-top: 1rem;
	font-size: 0.6rem;
	font-style: normal;
	color: rgb(var(--n) / 1);
	opacity: 0.75;
}

figure i::before {
	content: "*";
	margin-right: 0.25rem;
}

video.responsive-video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 9 / 16;
}
/* hide txt */
.hide_txt {
	position: sticky;
	left: 90%;
	top: 75%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	color: rgb(var(--c1) / 1);
	background: rgb(var(--n) / .25);
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition:
		opacity .25s ease,
		visibility .25s ease,
		transform .25s ease;
}

section.hide-txt-current .hide_txt {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

.hide_txt::before,
.hide_txt::after {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "icomoon";
	font-size: 1.5rem;
	line-height: 1;
	transition:
		opacity .25s ease,
		transform .25s ease;
}

.hide_txt::before {
	content: "\e913";
	opacity: 1;
	transform: scale(1);
}

.hide_txt::after {
	content: "\e91a";
	opacity: 0;
	transform: scale(.75);
}

section.hide-txt-clean .hide_txt::before {
	opacity: 0;
	transform: scale(.75);
}

section.hide-txt-clean .hide_txt::after {
	opacity: 1;
	transform: scale(1);
}

section .artxt {
	transition: opacity .35s ease;
}

section.hide-txt-clean .artxt {
	opacity: 0 !important;
	pointer-events: none !important;
}

/* horizontal viewpoint system */
.magazzine,
.launchpad,
.tarjetas,
.xscroll {
	position: relative;
}

/* dots */
.hv-viewpoint {
	position: absolute;
	left: 50%;
	bottom: 0;
	z-index: 200;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0;
	width: auto;
	height: auto;
	margin: 0;
	padding: 0;
	transform: translateX(-50%);
	pointer-events: auto;
}

.hv-viewpoint span {
	display: block;
	width: .35rem;
	height: .35rem;
	margin: 0 .35rem;
	padding: 0;
	border-radius: 50%;
	background: rgb(var(--b) / 1);
	opacity: .5;
	cursor: pointer;
	transition:background-color .25s ease,
		transform .25s ease,
		opacity .25s ease;
}

.hv-viewpoint span.is-active {
	background: rgb(var(--c1) / 1);
	transform: scale(1.15);
	opacity: 1;
}

/* buttons */
.hv-btn {
	position: absolute;
	top: 50%;
	z-index: 200;
	display: flex !important;
	align-items: center;
	justify-content: center;
	width: 2rem;
	height: 7rem;
	margin: 0;
	padding: 0;
	color: rgb(var(--c1) / 1);
	background: rgb(var(--b) / .8);
	border: 0;
	border-radius: .4rem;
	cursor: pointer;
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(-50%);
	font-size: 0;
	transition:opacity .25s ease,
		visibility .25s ease,
		background-color .25s ease;
}

.hv-btn.prev {
	left: 0;
}

.hv-btn.next {
	right: 0;
}

.hv-btn:hover {
	background: rgb(var(--c1) / 1);
	color: rgb(var(--b) / 1);
}

.hv-btn.hidden,
.hv-btn.is-hidden {
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
}

/* icons */
.hv-btn.prev::before {
	content: "‹";
	font-size: 2.2rem;
	line-height: 1;
}

.hv-btn.next::before {
	content: "›";
	font-size: 2.2rem;
	line-height: 1;
}

/* module-specific dots position */
.magazzine-viewpoint,
.launchpad-viewpoint,
.tarjetas-viewpoint,
.xscroll-viewpoint {
	bottom: 0;
}

/* module-specific buttons position */
.magazzine .hv-btn.prev,
.launchpad .hv-btn.prev,
.tarjetas .hv-btn.prev,
.xscroll .hv-btn.prev {
	left: 0;
}

.magazzine .hv-btn.next,
.launchpad .hv-btn.next,
.tarjetas .hv-btn.next,
.xscroll .hv-btn.next {
	right: 0;
}


/* popup-system */
#popup-root{
	position:fixed;
	top:0;
	left:100%;
	width:100%;
	height:100dvh;
	z-index:180;
	overflow:hidden;
	background:rgb(255,0,0);
	pointer-events:none;
	transition:left .65s cubic-bezier(.22,1,.36,1);
}

#popup-root.popup-open{
	left:0;
	pointer-events:auto;
}

.popup-container{
	position:absolute;
	inset:0;
	width:100%;
	height:100dvh;
	padding:2rem;
	overflow-y:auto;
	-webkit-overflow-scrolling:touch;
	background:rgb(var(--c1) / 1);
}

.popup-container section{
	width:100%;
}

.popup-shell{
	position:relative;
	width:100%;
	min-height:100%;
}

body.popup-open{
	overflow:hidden;
}
.popup-container .close-popup{
	position: sticky;
	top: 0;
	z-index: 100;
}

/* cta */
.cta-popover {
	position: fixed;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	max-width: min(20rem, calc(100vw - 2rem));
	padding: 0.75rem;
	background: rgb(var(--n) / 1);
	border-radius: 0.5rem;
	opacity: 0;
	pointer-events: none;
	visibility: hidden;
	transition: opacity 0.2s ease;
	z-index: 120;
}

.cta-popover button {
	color: rgb(var(--n) / 1);
	background: rgb(var(--b) / .8);
}

.cta-popover span {
	color: rgb(var(--c1) / 1);
	margin-right: 1rem;
	margin-right: 1rem
}

.cta-popover.is-open {
	opacity: 1;
	pointer-events: auto;
	visibility: visible;
}

.cta-popover-title {
	font-size: 0.85rem;
	font-weight: 600;
	color: rgb(var(--c1) / 1)
}

div.popup-content figure img.responsive-img {
	
	filter: none;
}




/* ==================================================
   MODULE: slider.css
   ================================================== */

/* slider mobile */
.slider {
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 100dvh;
	overflow: hidden;

	--media-duration: 1s;
	--media-ease: ease;
	--media-opacity-off: 0;
	--media-opacity-on: 1;
	--media-x-off: 0%;
	--media-x-on: 0%;
	--media-y-off: 0%;
	--media-y-on: 0%;
	--media-scale-off: 1;
	--media-scale-on: 1;
	--media-blur-off: 20px;
	--media-blur-on: 0px;

	--text-duration: .7s;
	--text-ease: ease;
	--text-opacity-off: 0;
	--text-opacity-on: 1;
	--text-x-off: 0%;
	--text-x-on: 0%;
	--text-y-off: 0%;
	--text-y-on: 0%;
	--text-scale-off: 1;
	--text-scale-on: 1;
	--text-blur-off: 0px;
	--text-blur-on: 0px;

	--thumb-gap: .35rem;
	--thumb-preview: 3;
	background-image:
		linear-gradient(90deg, rgb(var(--n)/1) 0%, rgb(var(--n-d)/1) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.slider-stage {
	position: relative;
	width: 100%;
	height: 100dvh;
	min-height: 100dvh;
	overflow: hidden;
}

.slider-side {
	width: 100%;
	padding: 3rem 1.25rem;
	overflow: hidden;
}

.slider .slides,
.slider .thumbs {
	margin: 0;
	padding: 0;
	list-style: none;
}

.slider .slides > li {
	position: absolute;
	inset: 0;
	pointer-events: none;
	will-change: opacity, transform, filter;
}

.slider .media {
	position: absolute;
	inset: 0;
	overflow: hidden;
}

.slider .media > li {
	opacity: var(--media-opacity-off);
	transform: translate(var(--media-x-off), var(--media-y-off)) scale(var(--media-scale-off));
	filter: blur(var(--media-blur-off));
	transition:
		opacity var(--media-duration) var(--media-ease),
		transform var(--media-duration) var(--media-ease),
		filter var(--media-duration) var(--media-ease);
}

.slider .media > li.is-active {
	opacity: var(--media-opacity-on);
	transform: translate(var(--media-x-on), var(--media-y-on)) scale(var(--media-scale-on));
	filter: blur(var(--media-blur-on));
	pointer-events: auto;
}

.slider .media img {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.slider .copy {
	position: absolute;
	top: 12dvh;
	left: 5%;
	width: 90%;
	z-index: 2;
}

.slider .copy > li {
	display: flex;
	align-items: flex-start;
	opacity: var(--text-opacity-off);
	transform: translate(var(--text-x-off), var(--text-y-off)) scale(var(--text-scale-off));
	filter: blur(var(--text-blur-off));
	transition:
		opacity var(--text-duration) var(--text-ease),
		transform var(--text-duration) var(--text-ease),
		filter var(--text-duration) var(--text-ease);
}

.slider .copy > li.is-active {
	opacity: var(--text-opacity-on);
	transform: translate(var(--text-x-on), var(--text-y-on)) scale(var(--text-scale-on));
	filter: blur(var(--text-blur-on));
	pointer-events: auto;
}

.slider .copy .artxt {
	width: 100%;
	color: rgb(var(--b) / 1);
}

.slider-ui {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 5;
	display: grid;
	width: 100%;
	gap: .75rem;
	padding: 0;
	background: rgb(var(--n) / .35);
}

.slider .timer {
	height: 2px;
	background: rgb(var(--c1) / 1);
	overflow: hidden;
}

.slider .timer > div {
	width: 0;
	height: 100%;
	background: rgb(var(--b-dark) / 1);
}

.slider .counter {
	position: absolute;
	right: 5%;
	bottom: 1rem;
	color: rgb(var(--b) / 1);
}

.slider .controls {
	position: absolute;
	right: 5%;
	bottom: 3rem;
	display: flex;
	gap: .5rem;
	color: rgb(var(--b) / 1);
}

.slider .controls button {
	appearance: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0;
	color: inherit;
	cursor: pointer;
	border: 0;
	background: none;
}

.slider .pause {
	display: none;
}

.slider.is-play .play {
	display: none;
}

.slider.is-play .pause {
	display: inline-flex;
}

.slider.is-pause .play {
	display: inline-flex;
}

.slider.is-pause .pause {
	display: none;
}

.slider .thumbs {
	position: absolute;
	left: 5%;
	bottom: 8%;
	z-index: 4;
	display: flex;
	gap: var(--thumb-gap);
	width: 60%;
	overflow: hidden;
}

.slider .thumbs > li {
	flex: 0 0 calc((100% - (var(--thumb-gap) * (var(--thumb-preview) - 1))) / var(--thumb-preview));
	overflow: hidden;
	cursor: pointer;
	opacity: 1;
	aspect-ratio: 2 / 3;
	border: 3px solid rgb(var(--b) / 1);
	transition: opacity .25s ease, transform .25s ease;
}

.slider .thumbs img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter: saturate(0);
}

.slider .thumbs > li.is-active {
	opacity: 1;
	transform: scale(1.03);
}


/* ==================================================
   MODULE: sweep.css
   ================================================== */

/* sweep */
.module-wrap[data-label="cierre"] {

	position: relative;
	min-height: 180vh;

}

.module-wrap[data-label="cierre"] .sweep {

	position: sticky;
	top: 0;
	height: 100vh;
	overflow: hidden;
	z-index: 1;

}

.sweep {
	position: sticky;
	top: 0;
	height: 100vh;
	max-height: 100vh;
	overflow: hidden;
}

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

.sweep figure.layer_one {
	position: absolute;
	inset: 0;
	z-index: 1;
	overflow: hidden;
}

.sweep figure.layer_one img {
	position: absolute;
	top: 50%;
	left: 0;
	width: auto;
	height: 100%;
	min-width: auto;
	max-width: none;
	object-fit: cover;
	object-position: center;
	aspect-ratio: 18 / 16;
	transform: translate(0, -50%);
	animation: sweep-x 40s ease-in-out infinite alternate;
	will-change: transform;
}

.sweep .layer_two {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	left: 9%;
	width: 81%;
	padding: 4rem 2rem;
	color: rgb(var(--b) / 1);
	pointer-events: auto;
	z-index: 2;
}

@keyframes sweep-x {
	from {
		transform: translate(0, -50%);
	}

	to {
		transform: translate(-16.666%, -50%);
	}
}


/* ==================================================
   MODULE: tarjetas.css
   ================================================== */

section.tarjetas {
background: rgb(var(--n-d) / 1);
color: rgb(var(--b) / 1);
padding: 2rem 1.5rem;
}
section.tarjetas article {
	position: relative;
	width: 100%;
	
}

section.tarjetas .cards-track {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	overflow-x: auto;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	touch-action: pan-x pan-y;
	scroll-snap-type: x mandatory;
	scrollbar-width: none;
	width: 100%;
	padding:  0;
}

section.tarjetas .cards-track::-webkit-scrollbar {
	display: none;
}

section.tarjetas dt {
	padding: 0;
}

section.tarjetas .cards-track dd {
	flex: 0 0 90%;
	min-width: 90%;
	max-width: 90%;
	scroll-snap-align: center;
	box-sizing: border-box;
	margin: 0px;
	opacity: 0.75;
	transform: scale(.9);
	transition: transform 0.4s ease, opacity 0.4s ease;
	padding: 2rem 1.5rem;
	border-radius: .4rem;
}

section.tarjetas .cards-track dd:first-child {
	margin-left: 0;
}

section.tarjetas .cards-track dd:last-child {
	margin-right: 0;
}

section.tarjetas .cards-track dd.is-active {
	opacity: 1;
	transform: scale(1);
	background: rgb(var(--b) / .85);
	color: rgb(var(--n) / 1);
}
section.tarjetas .cards-track dd.is-active .icon{
color: rgb(var(--c1) / 1);
	font-size: 4rem;
}

section.tarjetas .cards-btn.hidden,
section.tarjetas .cards-btn.is-hidden {
	opacity: 0;
	pointer-events: none;
}

/* ==================================================
   MODULE: txt-mask.css
   ================================================== */

.txt-mask{
	--text-left:64%;
--text-top:50%;
--stroke-size:2px;
--split:60%;

	position:sticky;
	top: 0;
	width:100%;
	height:100dvh;
	overflow:hidden;
}

.txt-mask .txt-mask-media{
	position:absolute;
	inset:0;
	z-index:1;
	width:100%;
	height:100%;
	margin:0;
}

.txt-mask .txt-mask-img{
	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	object-fit:cover;
}

.txt-mask .txt-mask-panel{
	position:absolute;
	inset:0;
	z-index:2;
	background:linear-gradient(
		90deg,
		#eee 0%,
		#eee  var(--split),
		#000 var(--split),
		#000 100%
	);
	mix-blend-mode:screen;
	pointer-events:none;
}

.txt-mask .txt-mask-border{
	position:absolute;
	inset:0;
	z-index:3;
	pointer-events:none;
}

.txt-mask .txt-mask-title{
	position:absolute;
	left:var(--text-left);
	top:var(--text-top);
	transform:translate(-50%, -50%);
	width:1ch;
	margin:0;
	font-size:8rem;
	line-height:.8;
	text-align:center;
	text-transform:uppercase;
	word-break:break-all;
	white-space:normal;
	text-shadow: none !important;
}

.txt-mask .txt-mask-panel .txt-mask-title{
	color:#000;
	z-index:1;
}

.txt-mask .txt-mask-border .txt-mask-title{
	color:transparent;
	-webkit-text-stroke:var(--stroke-size) #fff;
	text-stroke:var(--stroke-size) #fff;
}

.txt-mask .artxt{
	position:absolute;
	left:5%;
	top:50%;
	transform: translateY(-50%);
	z-index:5;
	width:50%;
	color:rgb(var(--n) / 1);
}

.txt-mask .artxt dt,
.txt-mask .artxt dd{
	margin:0;
}

.txt-mask .artxt .lead{
	display:block;
}

.txt-mask .artxt h2,
.txt-mask .artxt h3,
.txt-mask .artxt h4,
.txt-mask .artxt p{
	margin:0;
}

.txt-mask .artxt hr{
	border:0;
	height:1px;
	margin:1.5rem 0;
	background:currentColor;
	opacity:.25;
}

.txt-mask .artxt .caption{
	display:block;
}

.txt-mask .artxt-toggle{
	position:absolute;
	right:0;
	bottom:0;
	width:2.75rem;
	height:2.75rem;
	padding:0;
	border:1px solid currentColor;
	border-radius:50%;
	background:transparent;
	color:inherit;
	cursor:pointer;
}

.txt-mask .artxt-toggle::before,
.txt-mask .artxt-toggle::after{
	content:"";
	position:absolute;
	left:50%;
	top:50%;
	width:40%;
	height:1px;
	background:currentColor;
	transform:translate(-50%, -50%);
}

.txt-mask .artxt-toggle::after{
	transform:translate(-50%, -50%) rotate(90deg);
}

/* txt-mask + hide_txt */
section.hide-txt-clean .txt-mask .artxt,
section.hide-txt-clean .txt-mask .txt-mask-panel,
section.hide-txt-clean .txt-mask .txt-mask-border,
section.hide-txt-clean .txt-mask .txt-mask-title,
section.hide-txt-clean.txt-mask .artxt,
section.hide-txt-clean.txt-mask .txt-mask-panel,
section.hide-txt-clean.txt-mask .txt-mask-border,
section.hide-txt-clean.txt-mask .txt-mask-title{
	opacity:0 !important;
	visibility:hidden !important;
	pointer-events:none !important;
	transition:
		opacity .35s ease,
		visibility .35s ease;
}

section.hide-txt-clean .txt-mask .txt-mask-panel,
section.hide-txt-clean.txt-mask .txt-mask-panel{
	background:none !important;
	mix-blend-mode:normal !important;
}

section.hide-txt-clean .txt-mask .txt-mask-border,
section.hide-txt-clean.txt-mask .txt-mask-border{
	display:none !important;
}

/* ==================================================
   MODULE: viewpoint.css
   ================================================== */

/* viewpoint */
.viewpoint {
	position: fixed;
	top: 50%;
	right: .5rem;
	z-index: 150;
	display: flex;
	flex-direction: column;
	gap: 0;
	transform: translateY(-50%);
}

.viewpoint a {
	display: block;
	font-family: "icomoon";
	font-size: 1rem;
	color: rgb(var(--b) / .75);
	text-decoration: none;
	transition: transform 0.25s ease, color 0.25s ease;
	margin: 0;
	padding: 0
}

.viewpoint a::before {
	content: "\e90f";
}

.viewpoint a:hover {
	color: rgb(var(--c1) / 1);
	transform: scale(1.15);
}

.viewpoint a.is-active {
	color: rgb(var(--c1) / 1);
	transform: scale(1.35);
}

/* ==================================================
   MODULE: xscroll.css
   ================================================== */

/* xscroll mobile */
.xscroll {
	--xscroll-h: 90dvh;
	--xgap: .75rem;
	position: relative;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 0;
	margin: 0;
	padding: 5dvh 5%;
	overflow: hidden;
	background-image:
		linear-gradient(90deg, rgb(var(--n)/1) 0%, rgb(var(--n-d)/1) 100%),
		url("../../assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

.xscroll-head {
	width: 100%;
	padding: 2rem 1.25rem 1rem;
}

.xscroll-nav {
	display: none;
}

.xscroll-body {
	position: relative;
	width: 100%;
	height: var(--xscroll-h);
	overflow: hidden;
}

.xscroll-list {
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: stretch;
	gap: var(--xgap);
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 0 1.25rem;
	list-style: none;
	overflow-x: auto;
	overflow-y: hidden;
	scroll-snap-type: x mandatory;
	-webkit-overflow-scrolling: touch;
}

.xscroll-list::-webkit-scrollbar {
	display: none;
}

.xscroll-list > li {
	position: relative;
	flex: 0 0 auto;
	width: calc(var(--xscroll-h) * var(--ratio-mov-w) / var(--ratio-mov-h));
	height: var(--xscroll-h);
	margin: 0;
	padding: 0;
	overflow: hidden;
	scroll-snap-align: center;
}

.xscroll figure {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	margin: 0;
	overflow: hidden;
}

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

.xscroll li dl {
	position: absolute;
	inset: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	margin: 0;
	padding: 2rem 1.25rem;
	color: inherit;
	pointer-events: none;
}

.xscroll li dd {
	position: absolute;
	left: 1rem;
	right: 1rem;
	bottom: 1rem;
	margin: 0;
	pointer-events: auto;
}

/* portfolio iframe preview */

.portfolio-preview{
	position:relative;
	width:100%;
	margin:0;
	overflow:hidden;
	background:#111;

}

.portfolio-preview .portfolio-phone{

	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	overflow:hidden;
	background:#fff;

}

.portfolio-preview .portfolio-frame{

	position:absolute;
	inset:0;
	width:100%;
	height:100%;
	border:0;
	background:#fff;
	display:block;

}

.portfolio-url-edit-trigger{
	position:absolute;
	left:.75rem;
	right:.75rem;
	bottom:.75rem;
	z-index:999999;
	display:block;
	width:auto;
	padding:.65rem .75rem;
	border:1px solid #fff;
	background:#111;
	color:#fff;
	font-family:Arial,sans-serif;
	font-size:11px;
	font-weight:700;
	line-height:1.2;
	text-align:left;
	cursor:pointer;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}

#portfolio h2{
	font-size: 1.5rem;
}


