/* START: Global tags */
html {
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: antialiased;
	height:100%;
	font-size: .625vw; /*12px*/
}

body {
	width: 100%;
	height: 100%;
	background: var(--darkWhite);
	font-size: 1rem;
    font-family: 'season-mix-regular', serif;
}


* {
	margin: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

*:focus {
	outline: none;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

::selection {
	background: black;
	color: white;
}

::-moz-selection {
	background: black;
	color: white;
}

a, a:hover, a:link {
	text-decoration: none;
}

.container {
	width: 100%;
	padding: 20px;
	clear: both;
	position: relative;
	overflow: hidden;
}

.transition {
	transition: all .4s ease;
	-webkit-transition: all .4s ease;
	-moz-transition: all .4s ease;
	-o-transition: all .4s ease;
}

.slowTransition {
	transition: all .8s cubic-bezier(0.645, 0.045, 0.355, 1);
	-webkit-transition: all .8s cubic-bezier(0.645, 0.045, 0.355, 1);
	-moz-transition: all .8s cubic-bezier(0.645, 0.045, 0.355, 1);
	-o-transition: all .8s cubic-bezier(0.645, 0.045, 0.355, 1);
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
}


/* LAZY */
picture.lazy {
	display: block;
	overflow: hidden;
	transition: opacity .4s ease-in-out, filter .4s ease-in-out;
	-webkit-transition: opacity .4s ease-in-out, filter .4s ease-in-out;
	-moz-transition: opacity .4s ease-in-out, filter .4s ease-in-out;
	-o-transition: opacity .4s ease-in-out, filter .4s ease-in-out;
	transition-property: opacity, filter;
	will-change: opacity, filter;
	opacity: 0;
	filter: blur(1.5rem);
}

picture.lazy.lazyloaded {
	opacity: 1;
	filter: blur(0rem);
}

picture.lazy img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}

.aspect-container {
	position: relative;
	width: 100%;
}

.aspect-container picture {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.aspect-container picture img,
.aspect-container video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	object-fit: cover;
}

/* Button */
.button {
	position: relative;
	display: block;
	width: max-content;
	padding: .834vw 2.187vw; /*16px 42px*/
	line-height: 1;
	color: var(--black);
	border-radius: .52vw; /*10px*/
	background: var(--softGrey);
	transition: 
		opacity .6s cubic-bezier(0, 0, 0.3, 1),
		transform .6s cubic-bezier(0, 0, 0.3, 1),
		color .6s cubic-bezier(0, 0, 0.3, 1),
		background .6s cubic-bezier(0, 0, 0.3, 1);
}

.positive .button:hover {
	color: var(--darkWhite);
	background: var(--black);
}

.negative .button:hover {
	color: var(--black);
	background: var(--white);
}

/* Reveal */
.reveal:not(.button) {
	transition-delay: .2s;
	transition: opacity .6s ease-in-out, transform .6s ease-in-out;
	-webkit-transition: opacity .6s ease-in-out, transform .6s ease-in-out;
	-moz-transition: opacity .6s ease-in-out, transform .6s ease-in-out;
	-o-transition: opacity .6s ease-in-out, transform .6s ease-in-out;
}

.reveal.revealMove {
	transform: translate(0, 2vw);
}

.reveal.revealOpacity {
	opacity: 0;
}

.reveal.revealMove.revealed {
	transform: translate(0, 0);
}

.reveal.revealOpacity.revealed {
	opacity: 1;
}



@media screen and (max-width: 1920px) {
	
}

@media screen and (max-width: 1680px) {
	
}

@media screen and (max-width: 1280px) {
	
}

@media only screen and (max-width: 980px) {
	html {
		font-size: 1.22vw; /*12px*/
	}

	.button {
  		padding: 10px 15px;
    	border-radius: 5px;
	}
}

@media only screen and (max-width: 740px) {
	html {
		font-size: 3.2vw; /*12px*/
	}
}

@media only screen and (max-width: 550px) {



}