:root {
	--background-color: #211F1F;
}

* {
	box-sizing: border-box;
}

h1, h2, h3 {
	font-family: 'Roboto', cursive;
	color: var(--accent-color1);
	margin: 0;
}

p, a, span {
	font-family: 'Roboto', sans-serif;
	font-size: 1em;
	color: var(--accent-color1);
	line-height: 150%;
	margin: 0;
}

a {
	text-decoration: none;
}

a:hover {
	color: var(--accent-color1);
	text-decoration: underline;
}

@keyframes fadein-onload {
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.hidden1 {
	opacity: 0;
	filter: blur(5px);
	transform: translateX(-20px);
	transition: all 2s;
		-webkit-transition: all 2s;
	transition-delay: 300ms;
}

.hidden2 {
	opacity: 0;
	filter: blur(5px);
	transform: translateX(20px);
	transition: all 2s;
		-webkit-transition: all 2s;
	transition-delay: 300ms;
}

.hidden3 {
	opacity: 0;
	filter: blur(5px);
	position: relative;
	left: -60px;
}

.fade-in {
	opacity: 1;
	filter: blur(0);
	transform: translateX(0);
	transition-delay: 300ms;
}

.fade-in-cards {
	opacity: 1;
	filter: blur(0);
	left: 0;
}

.section1 {
	background-color: #000000;
	height: 100vh;
}

.section1 > .intro {
	background-color: #000000;
	background-image: url('../img/background-pattern1.png');
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	width: 100%;
	overflow: hidden;
	animation: fadein-onload 4s;
	text-align: center;
}

.section1 > .intro > p:first-child {
	margin: 0;
	color: #ffffff;
	font-size: 20px;
	letter-spacing: .5em;
}

.section1 > .intro > .heading span {
	margin: 0;
	color: #ffffff;
	font-family: "futura-pt", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 4em;
	line-height: 1em;
	letter-spacing: .5em;
	width: 100%;
}

.heading-last-letter {
	letter-spacing: normal !important;

}

.section2 {
	background-color: #ffffff;
	margin: 0;
	overflow: hidden;
	padding: 8em 3em;
	height: auto;
}

.section2 > .comparison {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: repeat(5, 80px);
	justify-content: center;
	column-gap: 4em;
}

.section2 > .comparison > .comparison-futura {
	display: flex;
	justify-content: right;
	align-items: center;
	height: 70px;
	background-position: center right;
	background-size: auto 80px;
	background-repeat: no-repeat;
}

.section2 > .comparison > .comparison-glyphs {
	display: flex;
	justify-content: left;
	align-items: center;
	height: 70px;
	background-position: center left;
	background-size: auto 80px;
	background-repeat: no-repeat;
}

.section2 > .comparison > .futura-1 {
	background-image: url('../img/1-futura.png');
}

.section2 > .comparison > .glyphs-1 {
	background-image: url('../img/1-glyphs.png');
}

.section2 > .comparison > .futura-2 {
	background-image: url('../img/2-futura.png');
}

.section2 > .comparison > .glyphs-2 {
	background-image: url('../img/2-glyphs.png');
}

.section2 > .comparison > .futura-3 {
	background-image: url('../img/3-futura.png');
}

.section2 > .comparison > .glyphs-3 {
	background-image: url('../img/3-glyphs.png');
}

.section2 > .comparison > .futura-4 {
	background-image: url('../img/4-futura.png');
}

.section2 > .comparison > .glyphs-4 {
	background-image: url('../img/4-glyphs.png');
}

.section2 > .comparison > .futura-5 {
	background-image: url('../img/5-futura.png');
}

.section2 > .comparison > .glyphs-5 {
	background-image: url('../img/5-glyphs.png');
}

.section3 {
	background-color: transparent;
	background-image: url('../img/bookpage1.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	height: 60vh;
}

.section4 {
	background-color: #ffffff;
	margin: 0;
	overflow: hidden;
	padding: 8em 3em;
	display: flex;
	flex-direction: row;
	justify-content: center;
}

.section4 > .glyphs-grid {
	height: auto;
	display: flex;
	flex-wrap: wrap;
	flex-grow: 1;
	justify-content: center;
	gap: 3em;
}

.section4 > .glyphs-grid > .glyphs-card {
	position: relative;
	transform-style: preserve-3d;
		-webkit-transform-style: preserve-3d;
	transform: rotateX(180deg);
		-webkit-transform: rotateX(180deg);
		-moz-transform: rotateX(180deg);
		-o-transform: rotateX(180deg);
	transition: box-shadow .3 ease;
		-webkit-transition: box-shadow .3s ease
}


.section4 > .glyphs-grid > .glyphs-card > .upper-case, .lower-case {
	width: 230px;
	height: 230px;
	position:  relative;
	background-size: 175px;
	background-repeat: no-repeat;
	background-position: center 30px;
	border-radius: 8px;
	backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-o-backface-visibility: hidden;
	overflow: hidden;
	transition: 
		transform .5s ease,
		filter 3s 300ms ease, 
		left 3s 300ms ease,
		opacity 3s 300ms ease;
		-webkit-transition: 
			transform .5s ease,
			filter 3s 300ms ease,
			left 3s 300ms ease,
			opacity 3s 300ms ease;
}

.section4 > .glyphs-grid > .glyphs-card > .lower-case {
	position: absolute;
	top: 0px;		
}

.glyphs-card:hover {
	box-shadow:
			7px 7px 20px 0px #fff9,
			4px 4px 5px 0px #fff9,
			7px 7px 20px 0px #0002,
			4px 4px 5px 0px #0001;
	border-radius: 8px;
}

.flip-front {
	transform: rotateX(180deg);
		-webkit-transform: rotateX(180deg);
		-moz-transform: rotateX(180deg);
		-o-transform: rotateX(180deg);
}

.flip-back {
	transform: rotateX(0deg);
		-webkit-transform: rotateX(0deg);
		-moz-transform: rotateX(0deg);
		-o-transform: rotateX(0deg);
}


.section4 > .glyphs-grid > .glyphs-card:nth-child(1) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export1.png');
}

.section4>.glyphs-grid>.glyphs-card:nth-child(1) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export16.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(2) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export2.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(2) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export17.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(3) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export3.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(3) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export18.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(4) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export4.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(4) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export19.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(5) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export5.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(5) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export20.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(6) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export6.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(6) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export21.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(7) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export7.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(7) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export22.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(8) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export8.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(8) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export23.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(9) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export9.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(9) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export24.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(10) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export10.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(10) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export25.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(11) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export11.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(11) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export26.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(12) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export12.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(12) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export27.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(13) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export13.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(13) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export28.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(14) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export14.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(14) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export29.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(15) > .upper-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export15.png');
}

.section4 > .glyphs-grid > .glyphs-card:nth-child(15) > .lower-case {
	background-image: url('../img/Glyphs-final-frames/Glyphs-web-export30.png');
}


.section5 {
	background-color: transparent;
	background-image: url('../img/sketchbook.png');
	background-position: center;
	background-size: 110%;
	background-repeat: no-repeat;
	display: flex;
	height: 50vh;
}

.section6 {
	background-color: transparent;
	padding: 8em 5em;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 3em;
}

.section6 > .passage1 > h1 {
	font-weight: 600;
}

.section6 > .passage2 > p {
	font-size: 1.5em;
}

.section7 {
	background-color: transparent;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	align-items: center;
	gap: 1em;
}

.section7 > .sketchbook-images {
	height: 40vh;
	width: 100%;
	background-repeat: no-repeat;
}

.section7 > .sketchbook-images:nth-child(1) {
	background-image: url(../img/sketchbook2.png);
	background-size: 220%;
	background-position: center -100px;
}

.section7 > .sketchbook-images:nth-child(2) {
	background-image: url(../img/sketchbook3.png);
	background-size: 155%;
	background-position: center -50px;
}

.section8 {
	background-color: transparent;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	gap: 2em;
	padding: 8em 5em;
}

.section8 > .text-block {
	width: 100%;
	text-align: left;
	justify-content: left;
}

.section8 > .text-block > p:first-child {
	position: relative;
	font-weight: 800;
	padding: 10px 0;
}

.section8 > .text-block > p:first-child::before {
	content: '';
	position: absolute;
	background-color: #000000;
	left: 0;
	top: -20px;
	width: 99%;
	height: 1px;
	z-index: -1;
}

.section8 > .text-block:first-child > p:first-child::after {
	content: '';
	background-image: url(../img/Glyphs-final-frames/Glyphs-web-export8.png);
	background-size: cover;
	position: absolute;
	right: -50px;
	top: 0;
	width: 400px;
	height: 400px;
	opacity: .1;
	z-index: -1;
}

.section8 > .text-block:last-child > p:first-child::after {
	content: '';
	background-image: url(../img/Glyphs-final-frames/Glyphs-web-export15.png);
	background-size: cover;
	position: absolute;
	right: -50px;
	top: 0;
	width: 400px;
	height: 400px;
	opacity: .1;
	z-index: -1;
}

.section9 {
	background-color: transparent;
	background-image: url('../img/book.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
	display: flex;
	height: 70vh;
}

.disclosures {
	padding: 5em 1em 1em;
}

.disclosures p {
	font-size: 13px;
	color: #A9A9A9;
	text-align: center;
}

/* Responsive */

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

	.section6 {
		flex-direction: column;
		gap: 2em;
	}

}

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

	.section2 > .comparison {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	
	.section2 > .comparison > .comparison-futura {
		background-position: center;
	}
	
	.section2 > .comparison > .comparison-glyphs {
		background-position: center;
		margin-bottom: 2em;
	}

	.section4 > .glyphs-grid > .glyphs-card > .upper-case, .lower-case {
		width: 150px;
		height: 150px;
		background-size: 100px;
	}

	.section7 > .sketchbook-images:nth-child(1) {
		background-image: url(../img/sketchbook2.png);
		background-size: cover;
		background-position: center;
	}
		
	.section7 > .sketchbook-images:nth-child(2) {
		background-image: url(../img/sketchbook3.png);
		background-size: cover;
		background-position: center
	}
				
	.section8 {
		background-color: transparent;
		display: flex;
		flex-direction: column;
		gap: 4em;
	}

}

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

	.section1 > .intro > p:first-child {
		letter-spacing: .25em;
	}
	.section1 > .intro > .heading span {
		font-size: 3em;
		letter-spacing: .25em;
	}

	.section4 {
		padding: 8em 1em;
	}
	
	.section4 > .glyphs-grid {
		gap: 1em;
	}

	.section5 {
		background-size: cover;
	}

	.section2 {
		padding: 8em 2em;
	}
	
	.section2 > .comparison > .comparison-futura {
		background-size: cover;
	}
	
	.section2 > .comparison > .comparison-glyphs {
		background-size: cover;
	}

	.section6 {
		padding: 8em 2em;
	}
	
	.section6>.passage1>h1 {
		font-size: 2em;
	}
	
	.section6>.passage2>p {
		font-size: 1.25em;
	}

	.section8 {
		padding: 8em 2em;
	}

	.section8 > .text-block:first-child > p:first-child::after {
		width: 300px;
		height: 300px;
	}
	
	.section8 > .text-block:last-child > p:first-child::after {
		width: 300px;
		height: 300px;
	}

}