/*INTRO*/

/*intro*/
.intro {
	width: 100vw;
	height: 100vh;
	background-color: white;
  	position: fixed;
  	top: 0;
  	left: 0;
	display: flex;
  	align-items: center;
  	justify-content: center;
	pointer-events: none;
	opacity: 1;
	transition: opacity .5s;
	z-index: 150;
}

.intro h1 {
	font-family: Unica Regular;
	font-size: 2.1vw;
	color: black;
}

.intro img.af {
	width: 13vw;
	height: auto;
}

.intro.off{
	opacity: 0;
	pointer-events: none;
}

/*TABLET*/
@media (max-width:1024px) {
}

/*MOBILE*/
@media (max-width:600px) {

.intro h1 {
	font-size: 5.75vw;
}

.intro img.af {
    width: 35vw;
    height: auto;
}

}