@charset "UTF-8";
/*-------------------------
	General Styles
--------------------------*/
body {
	/* default is t--delta */
	font-size: 26px;
	line-height: 1.2;
	/*font-weight: 500;*/

	font-family: "Times New Roman", Georgia, serif;

	text-rendering: optimizeLegibility;
	font-feature-settings: "kern" 1, "liga" 1;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;

	letter-spacing: 0em;

	color: var(--color-black);
	background-color: #fff;
}
@media(max-width: 1000px) {
	.subtitles {
		display: none !important;
	}
}
@media(max-width: 800px) {
	body {	
		font-size: 21px;
	}
}
body.inverted {
	background-color: #000;
	/*color: #FFF;*/
	filter: invert(100%);
	-webkit-filter: invert(100%);
}
.clearfix:before,
.clearfix:after {
	content: " ";
	display: table;
}
.clearfix:after {
	clear: both;
}
/* Section heights */
.fullscreen {
	position: relative;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 1010;
}
