* {
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	font-weight: 300;
	font-style: normal;
	color: #1b2e37;
	
}
@font-face {
  font-family: 'PasticheGrotesqueWeb-Bold';
  src: url('/fonts/PasticheGrotesqueWeb-Bold.woff2') format('woff2');
}
@font-face {
  font-family: 'PasticheGrotesqueWeb-Regular';
  src: url('/fonts/PasticheGrotesqueWeb-Regular.woff2') format('woff2');
}

::selection {
  background: #eeff03; /* WebKit/Blink Browsers */
  color: #1b2e37;
}
::-moz-selection {
  background: #eeff03; /* Gecko Browsers */
  color: #1b2e37
}

html, body {
	font-family: PasticheGrotesqueWeb-Regular;
	position: relative;
	width: 100%;
	height: 100%;
}
body {
	height: 100%;
	background: #fef8eb;
}
body.blog {
	height: auto;
}
body.dark {
	background: #1b2e37;
}
img {
	width: 100%;
	height: auto;
}
/* TYPOGRAPHY */

.clearfix.header {
	width: 100%;
	height: 205px;
}
.clearfix.footer {
	width: 100%;
	height: 100px;
}
#logo-grafik {
	width: calc(100vh - 50px);
	height: calc(100vh - 50px);
	position: absolute;
	top:25px;
	left:25px;
	bottom: 25px;
	right: 25px;
	overflow: hidden;
}
#logo-grafik img {
	width: 100%;
	height:100%;
	object-fit: cover;
	object-position: 50% 100%;
}
#logo {
	position: absolute;
	top: 60px;
	left: 60px;
	width: 300px;
	z-index: 10;
}
#logo-mono {
	position: absolute;
	top: 60px;
	left: 60px;
	width: 84px;
	z-index: 10;	
}
#plus {
	position: absolute;
	top: 60px;
	right: 60px;
	width: 84px;
	z-index: 100;
}

#plus .st1{
	fill:none;
	stroke:#1B2E37;
	stroke-width:3;
}

#lead-text-container {
	width:65vw;
	height:100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}

#contact {
	position: absolute;
	bottom: 55px;
	left: 55px;
}
#topic {
	position: absolute;
	top: 25px;
	right: 25px;
}
.font-family-pastiche-regular {
	font-family: "PasticheGrotesqueWeb-Regular", sans-serif;
}
.font-family-pastiche-bold {
	font-family: "PasticheGrotesqueWeb-Bold", sans-serif;
}
.font-family-area-regular {
	font-family: area-normal, sans-serif;
	font-weight: 400;
	font-style: normal;
}

.font-family-area-bold {
	font-family: "area-normal", sans-serif;
	font-weight: 700;
}
p {
	margin-top: 30px;
	color: #1b2e37;
}
p:first-of-type {
	margin-top:0;
}
.font-size-x-large,
.font-size-large {
	font-size: 64px;
	line-height: 1.1;
}
.font-size-small {
	font-size: 23px;
	line-height:1.33;
}
.font-size-x-small {
	font-size: 16px;
	line-height:1;
}
.flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: flex-start;
	align-content: flex-start;
	gap: 15px 30px;
}
.button {
	display: flex;
	justify-content: center;
	align-items: center; 
	white-space: nowrap;
	padding: 4px 12px 4px;
	background: transparent;
	color: #1b2e37;
	border: 1px solid #1b2e37;
	border-radius: 15px;
}
.letter-spacing-1 {
	letter-spacing: 0.03rem;
}
.text-align-center {
	text-align: center;
}
.text-transform-uppercase {
	text-transform: uppercase;
}
.text-decoration-none {
	text-decoration: none;	
}
.margin-top-large {
	margin-top: 80px;
}
.margin-top-medium {
	margin-top: 30px;
}
.margin-bottom-large {
	margin-bottom: 60px;
}
.margin-bottom-x-large {
	margin-bottom: 120px;
}
.margin-bottom-medium {
	margin-bottom: 30px;
}

.hvr-sweep-to-right {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	padding: 5px;
}
.hvr-sweep-to-right:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #1b2e37;
	-webkit-transform: scaleX(0);
	transform: scaleX(0);
	-webkit-transform-origin: 0 50%;
	transform-origin: 0 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	}
.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: #fef8eb;
}
.hvr-sweep-to-right:hover:before, .hvr-sweep-to-right:focus:before, .hvr-sweep-to-right:active:before {
	-webkit-transform: scaleX(1);
	transform: scaleX(1);
}
body.dark::selection {
  background: #eeff03; /* WebKit/Blink Browsers */
}
body.dark::-moz-selection {
  background: #eeff03; /* Gecko Browsers */
}
body.dark h1,
body.dark p,
body.dark p a,
body.dark .button {
	color: #fef8eb;
}

body.dark #logo-mono .st1 {
	fill: #eeff03;
}

body.dark #plus .st1{
	fill:none;
	stroke:#fef8eb;
	stroke-width:3;
}
body.dark #plus .x-axis {
	display: none;
}
body.dark .button {
	border: 1px solid #fef8eb;	
}
body.dark .hvr-sweep-to-right:before {
	background: #eeff03;	
}
body.dark .hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
  color: #1b2e37;
}


@media screen and (max-width: 1366px) {	
	#logo {
		width: 250px;
	}
	#logo-mono {
		top: 60px;
		left: 60px;
		width: 70px;	
	}
	#plus {
		width: 70px;
	}
	#lead-text-container {
		width: 75vw;
	}
	.font-size-x-large,
	.font-size-large {
		font-size: 54px;
	}
	p {
		margin-top: 20px;
	}
} 

@media screen and (max-width: 1024px) {	
	.clearfix.header {
		width: 100%;
		height: 150px;
	}
	#logo-grafik {
		width: calc(100vh - 20px);
		max-width: calc(100vw - 20px);
		height: calc(100vh - 20px);
		top:10px;
		left:10px;
		bottom: 10px;
		right: 10px;
		overflow: hidden;
	}
	#logo-grafik img.grafik-1 {
		object-position: 75% 50%;
	}
	#logo-grafik img.grafik-2 {
		object-position: 50% 50%;
	}
	#logo-grafik img.grafik-3 {
		object-position: 50% 50%;
	}
	#logo-grafik img.grafik-4 {
		object-position: 15% 50%;
	}
	#logo {
		top: 30px;
		left: 30px;
		width: 175px;
	}
	#logo-mono {
		top: 30px;
		left: 30px;
		width: 50px;	
	}
	#plus {
		top: 30px;
		right: 30px;
		width: 50px;
	}	
	
	#contact {
		position: absolute;
		bottom: 25px;
		left: 25px;
	}
	.flex {
		gap: 10px 10px;
	}
	.font-size-x-large,
	.font-size-large {
		font-size: 42px;
	}
	.font-size-small {
		font-size: 18px;
	}
	
	.hvr-sweep-to-right:before,
	body.dark .hvr-sweep-to-right:before {
		background: transparent;
	}
	
	.hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
	  color: #1b2e37;
	}
	
	body.dark .hvr-sweep-to-right:hover, .hvr-sweep-to-right:focus, .hvr-sweep-to-right:active {
		color: #fef8eb;
	}
	
} 

@media screen and (max-width: 767px) {
	#logo-grafik {
		width: calc(100%);
		max-width: 100%;
		height: calc(100%);
		top:0;
		left:0;
		bottom: 0;
		right: 0;
		overflow: hidden;
	}
	#logo-grafik img.grafik-1 {
		object-position: 75% 50%;
	}
	#logo-grafik img.grafik-2 {
		object-position: 50% 50%;
	}
	#logo-grafik img.grafik-3 {
		object-position: 50% 50%;
	}
	#logo-grafik img.grafik-4 {
		object-position: 15% 50%;
	}
	html,
	body {
		min-height: 100vh;
		min-height: -webkit-fill-available;
	}	
	
	#lead-text-container {
		width: calc(100vw - 60px);
	}
	.font-size-x-large,
	.font-size-large {
		font-size: 27px;
	}
	.font-size-small {
		font-size: 16px;
	}
	.font-size-x-small {
		font-size: 14px;
	}

	.margin-top-large {
		margin-top: 30px;
	}
	.margin-top-medium {
		margin-top: 20px;
	}
}

@media screen and (max-height: 850px) {
}