@charset "utf-8";

/*	BASIC STYLES
============================== */
::selection{
	color: var(--cbg);
	background-color: rgba(0,0,0,.99);
}
html{
	font-size: 10px;
	/* scrollbar-width: none; */
}
body{
	width: 100vw;
	height: 100%;
	margin: auto;
	font-family: 'MessinaSans', Helvetica, Arial, sans-serif;
	font-variant-ligatures: discretionary-ligatures;
	-webkit-text-size-adjust: none;
	-moz-osx-font-smoothing: grayscale;
	 -webkit-font-smoothing: antialiased;
				font-smoothing: antialiased;
	font-size: var(--fs);
	font-style: normal;
	font-weight: normal;
	line-height: var(--lh);
	color: var(--cb);
	background-color: var(--cbg);
	overflow-x: hidden;
}
img,
video{
	width: 100%;
	height: auto;
	display: block;
	object-fit: contain;
	font-size: 0;
	line-height: 0;
	-webkit-user-select: none;
		-moz-user-select: none;
		 -ms-user-select: none;
			  user-select: none;
	opacity: 1;
	-webkit-transition: opacity .3s linear;
			  transition: opacity .3s linear;
	-webkit-transform: translate3d(0, 0, 0);
		-moz-transform: translate3d(0, 0, 0);
		 -ms-transform: translate3d(0, 0, 0);
			  transform: translate3d(0, 0, 0);
}


picture,
.video-wrapper{
	width: 100%;
	height: 100%;
	display: block;
}
picture img{
	opacity: 1;
	-webkit-transition: opacity .3s linear;
			  transition: opacity .3s linear;
}
.lazy,
.picture img{
	opacity: 0;
}
a{
	width: fit-content;
	width: -moz-fit-content;
	color: inherit;
	text-decoration: none;
	cursor: pointer;
}
/* .desktop a:not(.static):hover,
.mobile a:not(.static):active{
	color: var(--chover);
} */
/* .desktop a:not(.static):not(.menu-link):not(.menu-link-child):not(:hover){
	transition: color .3s ease;
}
.desktop a:not(.static):hover svg,
.mobile a:not(.static):active svg{
	fill: var(--chover) !important;
} */
/* .desktop a:not(.static):not(:hover) svg{
	transition: fill .3s ease;
} */
ol,
ul,
li{
	list-style: none;
}
ul li{
	position: relative;
	padding-left: 2ch;
}
ul li::before{
	content: '•';
	position: absolute;
	/* top: 50%; */
	left: 0;
	/* transform: translateY(-50%); */
}
svg{
	overflow: visible;
}

/* LOADER
============================== */
#loader{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100vw;
	height: 100%;
	background-color: inherit;
	overflow-y: hidden;
	-ms-touch-action: none;
		 touch-action: none;
	z-index: 999;
}

/* VARS
============================== */
:root{
	/*Window*/
	--h: 100vh;

	/*Colors*/
	--cb: black;
	--cw: white;
	--dg: #282828;
	--cbg: #fbfbfb;
	--chover: #a7a6a4;
}
