

:root {
	--n: 1 21 2;
	--b: 237 237 232;
	--c1: 2 60 29;
	--c2: 135 192 145;
	--c3: 240 66 66;

	font-size: 16px;
	color: rgb(var(--c1) / 1);
}

* {
	box-sizing: border-box;
}

html,
body {
	width: 100%;
	min-height: 100dvh;
	margin: 0;
	padding: 0;
	font-family: "Rubik", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
	line-height: 1.3;
	background-image: linear-gradient(130deg, rgb(var(--b)/0) 0%, rgb(var(--b)/0) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: screen;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
	-webkit-overflow-scrolling: touch;
}

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

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

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,
video.responsive-video,
.responsive-video{
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	filter:grayscale(1) !important;
	-webkit-filter:grayscale(1) !important;
	mix-blend-mode:normal !important;
}

/* layout */
main {
	position: relative;
	width: 100%;
	min-height: 100dvh;
}

section {
	position: relative;
	display: flex;
	flex-direction: row;
	width: 100%;
	height: ;
	margin: 0 auto;
	padding: 0;
	z-index: 20;
}

section > article {
	position: relative;
	display: block;
	min-width: 0;
	background: none;
}
h1 {
	font-size: 12rem;
	font-weight: 900;
	color: rgb(var(--c3) / 1);
}

h2 {
	font-size: 4rem;
	font-weight: 900;
	text-transform: uppercase;
	text-shadow: -1px -1px 1px rgb(var(--b) / .25), 3px 3px 4px rgb(var(--n) / .5);
	color: rgb(var(--c1) / 1);
	line-height: .85;
}

h3 {
	font-size: 1.5rem;
	line-height: 1;
	font-weight: 200;
}

h4 {
	font-size: 1.25rem;
	line-height: 1;
	font-weight: 600;
}

p {
	font-size: 1rem;
	font-weight: 300;
}

.lead {
	font-size: 1.25rem;
	font-weight: 200;
	opacity: 1;
	z-index: 0;
}

.caption {
	font-size: .75rem;
}

.big-txt {
	font-size: 6rem;
	line-height: .75;
	letter-spacing: .04em;
	color: rgb(var(--b) / 1);
}

button {
	padding: .5rem 1.2rem;
	border-radius: .25rem;
	background: rgb(var(--c3) / 1);
	color: rgb(var(--b) / 1);
	cursor: pointer;
}

button.sec {
	background: rgb(var(--c1) / 1);
	color: rgb(var(--b) / 1);
}

button.out {
	border: 1px solid rgb(var(--c1) / 1);
	background: transparent;
	color: rgb(var(--c1) / 1);
}

button.txt {
	padding-inline: .5rem;
	background: transparent;
	color: rgb(var(--c1) / 1);
}

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: .9;
}

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

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

.artxt dd {
	margin: 0;
}

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

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

.artxt-toggle {
	display: none;
	width: 1.5rem;
	height: 1.5rem;
	margin: 0;
	padding: 0;
	border-radius: 50%;
	background: none;
	color: rgb(var(--c3) / 1);
	font-size: 2rem;
	font-weight: 700;
}

.artxt-toggle:hover {
	background: none;
}

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

.artxt-toggle::before {
	content: "+";
}

.artxt-toggle.is-open::before {
	content: "-";
}

[data-anim="on"] h1,
[data-anim="on"] h2,
[data-anim="on"] h3,
[data-anim="on"] h4,
[data-anim="on"] p,
[data-anim="on"] .artxt-toggle {
	opacity: 0;
	transform: translateX(25px);
	transition:
		opacity .8s ease,
		transform .8s ease;
}

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

.simple-term {
	color: rgb(var(--c3) / 1);
	text-shadow: 1px 1px 5px rgb(var(--n) / 1);
	font-weight: 600;
}

/* hide txt */
.hide_txt {
	--hide-txt-size: 3rem;
	--hide-txt-icon-size: 1.5rem;
	position: fixed;
	top: 50%;
	right: 5%;
	left: auto;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: var(--hide-txt-size);
	height: var(--hide-txt-size);
	color: rgb(var(--c1) / 1);
	background: rgb(var(--n) / .25);
	border-radius: 50%;
	cursor: pointer;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transform: translateY(-50%) translateX(1.5rem) scale(.75);
	transition:
		opacity .35s ease,
		visibility .35s ease,
		transform .35s cubic-bezier(.22, 1, .36, 1);
}

section.hide-txt-current .hide_txt {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
	transform: translateY(-50%) translateX(0) scale(1);
}

.hide_txt::before,
.hide_txt::after {
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "icomoon";
	font-size: var(--hide-txt-icon-size);
	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;
}


@media (max-width: 767px) {
	h1 {
		font-size: 6rem;
	}
	
	h2 {
		font-size:3.5rem;
	}
	
	h3 {
		font-size: 1.5rem;
	}
	
	h4 {
		font-size: 1.5rem;
	}
	
	p {
		font-size: 1rem;
	}
	
	.lead {
		font-size: 1.25rem;
	}
	
	.caption {
		font-size: .75rem;
	}
	
	.big-txt  {
		font-size: 6rem;
		line-height: 0.85;
		letter-spacing: -0.01em;
		font-weight: 900;
		color: rgb(var(--) / .2);
	}
	section {
		width: 100%;
	}
	.magazzine,
	.launchpad,
	.tarjetas,
	.xscroll,
	.events,
	.hv-system-wrap {
		position: relative;
	}
	
	.hv-viewpoint {
		position: absolute;
		top: 97.5%;
		left: 50%;
		z-index: 998;
		display: flex;
		align-items: center;
		justify-content: center;
		gap: .45rem;
		width: auto;
		height: auto;
		margin: 0;
		padding: .35rem .5rem;
		pointer-events: auto;
		transform: translateX(-50%);
		background: rgb(var(--c2) / 1)
	}
	
	.hv-viewpoint .hv-dot {
		display: block;
		width: .35rem;
		height: .35rem;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: rgb(var(--n) / 1);
		opacity: .75;
		cursor: pointer;
		transition:
			background-color .25s ease,
			transform .25s ease,
			opacity .25s ease;
	}
	
	.hv-viewpoint .hv-dot.is-active {
		background: rgb(var(--c1) / 1);
		opacity: 1;
		transform: scale(1.35);
	}
	
	.hv-btn {
		position: absolute;
		top: 50%;
		z-index: 999;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 2.75rem;
		height: 2.75rem;
		margin: 0;
		padding: 0;
		border: 0;
		border-radius: 50%;
		background: rgb(var(--c2) / .8);
		color: rgb(var(--b) / 1);
		opacity: 1;
		visibility: visible;
		pointer-events: auto;
		transform: translateY(-50%);
		cursor: pointer;
		font-size: 0;
	}
	
	.hv-btn.prev {
		left: .75rem;
	}
	
	.hv-btn.next {
		right: .75rem;
	}
	
	.hv-btn.prev::before {
		content: "‹";
		font-size: 2.2rem;
		line-height: 1;
	}
	
	.hv-btn.next::before {
		content: "›";
		font-size: 2.2rem;
		line-height: 1;
	}
	
	.hv-btn.is-hidden {
		opacity: 0;
		visibility: hidden;
		pointer-events: none;
	}
	
	.hide_txt {
		--hide-txt-size: 2.5rem;
		--hide-txt-icon-size: 1.25rem;
		top: 60%;
		right: 1rem;
	}
}

@media (min-width: 768px) and (max-width: 1023px) {
	:root {
		font-size: clamp(10px, 1.25vw, 12px);
	}

	section {
		padding: 0
	}
}

@media (min-width: 1024px) and (max-width: 1279px) {
	:root {
		font-size: clamp(12px, 1.1vw, 14px);
	}

	section {
		padding: 0
	}
}

@media (min-width: 1280px) and (max-width: 1439px) {
	:root {
		font-size: clamp(14px, 1.05vw, 15px);
	}

	section {
		padding: 0
	}
}

@media (min-width: 1440px) and (max-width: 1919px) {
	:root {
		font-size: clamp(15px, .9vw, 16px);
	}

	section {
		padding: 0
	}
}

@media (min-width: 1920px) and (max-width: 2047px) {
	:root {
		font-size: clamp(16px, .833vw, 17px);
	}

	section {
		padding: 0
	}
}

@media (min-width: 2048px) {
	:root {
		font-size: clamp(17px, .8vw, 20px);
	}

	section {
		padding: 0
	}
}

/* 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;
}



/* popup-system */
#popup-root{
	position:fixed;
	top:0;
	left:100%;
	width:100%;
	height:100dvh;
	z-index:180;
	overflow:hidden;
	pointer-events:none;
	transition:left .65s cubic-bezier(.22,1,.36,1);
	background-image: linear-gradient(130deg, rgb(var(--c2)/1) 0%, rgb(var(--b)/1) 100%),
		url("/assets/img/bg.webp");
	background-repeat: repeat;
	background-size: auto;
	background-attachment: fixed;
	background-position: center;
	background-blend-mode: multiply;
}

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

.popup-container{
	position:absolute;
	inset:0;
	width:100%;
	height:100dvh;
	padding:0;
	overflow-y:auto;
	-webkit-overflow-scrolling:touch;
}

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

body.popup-open{
	overflow:hidden;
}
.popup-container .close-popup{
	position:fixed;
	top:1.5rem;
	right:1.5rem;
	left:auto;
	z-index:1000000;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	margin:0;
	padding: 0;
	border-radius: 50%;
	font-size: 3rem;
	line-height: 1;
	opacity:0;
	visibility:hidden;
	pointer-events:none;
	transform:scale(.8);
	transition:
		opacity .25s ease,
		visibility .25s ease,
		transform .25s ease;

}

#popup-root.popup-open .popup-container .close-popup{
	opacity:1;
	visibility:visible;
	pointer-events:auto;
	transform:scale(1);
}

/* 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)
}
.rotate-notice {
	display: none;
}

/* color scope */

.color-scope {

	--cd-rgb: var(--n);
	--cs-rgb: var(--c1);
	--ct-rgb: var(--c2);
	--cf-rgb: var(--c3);
	--co-rgb: var(--b);

}

/* texto */

.clr1 { color: rgb(var(--cd-rgb) / 1); }

.clr2 { color: rgb(var(--cs-rgb) / 1); }

.clr3 { color: rgb(var(--ct-rgb) / 1); }

.clr4 { color: rgb(var(--cf-rgb) / 1); }

.clr5 { color: rgb(var(--co-rgb) / 1); }

/* fondo */

.bg1 { background-color: rgb(var(--cd-rgb) / 1); }

.bg2 { background-color: rgb(var(--cs-rgb) / 1); }

.bg3 { background-color: rgb(var(--ct-rgb) / 1); }

.bg4 { background-color: rgb(var(--cf-rgb) / 1); }

.bg5 { background-color: rgb(var(--co-rgb) / 1); }

/* borde */

.brd1 { border-color: rgb(var(--cd-rgb) / 1); }

.brd2 { border-color: rgb(var(--cs-rgb) / 1); }

.brd3 { border-color: rgb(var(--ct-rgb) / 1); }

.brd4 { border-color: rgb(var(--cf-rgb) / 1); }

.brd5 { border-color: rgb(var(--co-rgb) / 1); }

/* outline */

.out1 { outline-color: rgb(var(--cd-rgb) / 1); }

.out2 { outline-color: rgb(var(--cs-rgb) / 1); }

.out3 { outline-color: rgb(var(--ct-rgb) / 1); }

.out4 { outline-color: rgb(var(--cf-rgb) / 1); }

.out5 { outline-color: rgb(var(--co-rgb) / 1); }

/* sombra */

.shd1 { box-shadow: 0 1rem 3rem rgb(var(--cd-rgb) / .25); }

.shd2 { box-shadow: 0 1rem 3rem rgb(var(--cs-rgb) / .25); }

.shd3 { box-shadow: 0 1rem 3rem rgb(var(--ct-rgb) / .25); }

.shd4 { box-shadow: 0 1rem 3rem rgb(var(--cf-rgb) / .25); }

.shd5 { box-shadow: 0 1rem 3rem rgb(var(--co-rgb) / .25); }

/* degradado */

.grd1 {

	background: linear-gradient(
		135deg,
		rgb(var(--cd-rgb) / 1),
		rgb(var(--cs-rgb) / 1)
	);

}

.grd2 {

	background: linear-gradient(
		135deg,
		rgb(var(--cs-rgb) / 1),
		rgb(var(--ct-rgb) / 1)
	);

}

.grd3 {

	background: linear-gradient(
		135deg,
		rgb(var(--ct-rgb) / 1),
		rgb(var(--cf-rgb) / 1)
	);

}

.grd4 {

	background: linear-gradient(
		135deg,
		rgb(var(--cf-rgb) / 1),
		rgb(var(--co-rgb) / 1)
	);

}

.grd5 {

	background: linear-gradient(
		135deg,
		rgb(var(--co-rgb) / 1),
		rgb(var(--cd-rgb) / 1)
	);

}

div.popup-content{
	padding: 
}


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