@charset "utf-8";
html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}
@font-face {
	src: url("fonts/PierSans-Regular.otf");
	font-family: pierreg;
}
@font-face {
	src: url("fonts/PierSans-Light.otf");
	font-family: pierlight;
}
@font-face {
	src: url("fonts/PierSans-Black.otf");
	font-family: pierblack;
}
a {
	text-decoration: none;
	color: #00a47c;
}

/*===================================================================================
PARAGRAPH & HEADINGS
===================================================================================*/

p {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
}
h1 {
	font-size: 48px;
	font-family: poppins, sans-serif;
	font-style: normal;
}

h3 {
	font-size: 32px;
	font-family: poppins, sans-serif;
	font-style: normal;
	/* margin-bottom: 2.5rem; */
	position: relative;
	align-self: flex-start;
}
.my-name {
	text-align: left;
}
h4 {
	font-size: 20px;
	/* text-align: left; */
	padding-top: 3rem;
	/* padding-bottom: 1.5rem; */
	position: relative;
	align-self: flex-start;
	color: #00a47c;
}
h5 {
	font-size: 16px;
	/* text-align: center; */
	font-family: poppins, sans-serif;
	font-style: normal;
	/* margin-top: 2rem; */
}
h6 {
	font-size: 14px;
	/* text-align: center; */
	font-family: poppins, sans-serif;
	font-style: normal;
	color: #e9370a;
	width: min(600px, 60vw);
	margin-top: 1rem;

	margin-bottom: 0.5rem;
}
.highlighted {
	background: linear-gradient(
		180deg,
		rgba(0, 164, 124, 0) 60%,
		rgba(0, 164, 124, 1) 60%,
		rgba(0, 164, 124, 1) 100%
	);
}
/*===================================================================================
HOME - HEADER
===================================================================================*/

.landing {
	height: 100vh;
	width: 100vw;
	grid-area: header;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	color: #00a47c;
	position: relative;
	background-color: #292929;
	font-family: poppins, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.graphic-designer {
	padding: 2rem;
	text-align: center;
	z-index: 1;
}
.graphic-designer::after {
	content: "TIM TESSNOW";
	color: #fff;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 4rem;
}

/*==========================
Logo & Signature Animation*/

.logo {
	width: 300px;
	position: absolute;
	top: 45%;
	transform: translateY(-55%);
	filter: drop-shadow(0rem 0rem 5rem);
	/* animation: animate 5s linear infinite; */
}
.logo-footer {
	filter: drop-shadow(0rem 0rem 5rem);
	color: #00a47c;
}
/* @keyframes animate {
	0% {
		box-shadow: none;
		color: #00a47c;
	}
	100% {
		color: #00a47c;
		box-shadow: 0rem 0rem 5rem;
	}
}*/
.signature {
	width: 200px;
	transform: rotate(0deg);
	margin-bottom: 3em;
}
path {
	/* stroke: #fff; */
	fill: none;
	stroke: #fff;
	stroke-width: 1px;
	stroke-dasharray: 1800;
	opacity: 10;
	animation: animate 3s cubic-bezier(0, 0.23, 1, 0.1);
	animation-direction: reverse;
}
@keyframes animate {
	0% {
		opacity: 1;
		fill: none;
		stroke-dashoffset: 3800;
		stroke-linejoin: unset;
	}
	50% {
		fill: none;
	}
	100% {
		opacity: 1;
		fill: none;
		stroke-dashoffset: 500;
		animation-direction: reverse;
	}

	/*==========================
Navigation*/
}
.nav {
	display: flex;
	width: min(90vw, 500px);
	align-items: center;
	justify-content: space-around;
}
.nav-list {
	display: flex;
	flex-direction: row;
}
.nav-list-item {
	list-style: none;
	margin: 0 2vw 4vh 2vw;
	position: relative;
	font-family: poppins, sans-serif;
	font-weight: 400;
	font-style: normal;
}
nav a::after {
	content: "";
	display: block;
	height: 2px;
	background-color: #fff;
	position: absolute;
	width: 100%;
	transform: scale(0, 1);
	transition: transform 200ms;
}
nav ul li a:hover:after {
	transform: scale(1, 1);
}
.ham-wrapper {
	position: fixed;
	left: 22%;
	top: calc(10rem + 16px);
	height: auto;
	width: auto;
}
.ham-wrapper nav {
	width: 10rem;
	height: 10rem;
	margin: 1rem 0 0 3.5rem;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	background: #292929;
	border-radius: 50%;
	opacity: 0;
	transition: all 700ms ease;
}
.ham-wrapper #check {
	display: none;
}
.ham-wrapper .open {
	font-size: 1.5rem;
	cursor: pointer;
	background: #00a47c;
	color: #fff;
	text-align: center;
	padding: 1rem 1.2rem;
	border-radius: 50%;
}
.ham-wrapper nav .close {
	font-size: 1.5rem;
	position: absolute;
	cursor: pointer;
	color: red;
	top: 0.2rem;
	left: 1.3rem;
	opacity: 0;
}
.ham-wrapper nav ul {
	list-style: none;
	margin: 0rem;
	display: flex;
	flex-direction: column;
	text-align: center;
	padding-top: 1.3rem;
	padding-left: 2.4rem;
}
.ham-wrapper nav ul li a {
	display: block;
	text-decoration: none;
	font-size: 0.9rem;
	padding: 0.5rem;
	text-align: center;
	color: #fff;
	font-family: poppins, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.ham-wrapper nav ul li a::after {
	display: none;
}
.ham-wrapper nav ul a:hover {
	color: #00a47c;
}
.ham-wrapper #check:checked ~ nav {
	opacity: 0.85;
}

/*===================================================================================
HOME - ABOUT
===================================================================================*/

.about {
	display: grid;
	grid-auto-rows: minmax(100vh, auto);
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "sticky-about bio";
	position: relative;
	width: 100vw;
}
.sticky-about {
	grid-area: sticky-about;
	background-color: #00a47c;
	position: sticky;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	height: 100vh;
	top: 0;
}
.sticky-about .nav-list {
	position: absolute;
	bottom: 0;
}
.about a {
	color: #292929;
}
.about a::after {
	content: "";
	display: block;
	height: 2px;
	background-color: #fff;
	position: absolute;
	width: 100%;
	transform: scale(0, 1);
	transition: transform 200ms;
}
.about a:hover:after {
	transform: scale(1, 1);
}
.sticky-about h1 {
	color: #fff;
}
.bio {
	grid-area: bio;
	display: flex;
	flex-direction: column;
	margin: 10vh 10vw;
	max-width: 35vw;
	line-height: 25px;
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.bio ul {
	padding-left: 1.5rem;
	list-style: disc;
}
ol {
	list-style-type: disc;
	display: flex;
	flex-direction: column;
	padding-left: 1rem;
	list-style-position: outside;
	align-self: center;
	margin-left: 1rem;
	margin-right: 1rem;
}
ol .stichpunkt {
	padding-left: .1rem;
}
ol .stichpunkt a {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 1.24rem;
	margin-left: 1rem;
}
	
.content-list .stichpunkt {
	list-style: none;
}
/*===============================================================================
	HOME - MAIN
	===================================================================================*/
.work {
	grid-area: main;
	display: grid;
	grid-auto-rows: minmax(100vh, auto);
	grid-template-columns: 50vw 50vw;
	grid-template-areas:
		"sticky-work work-magazine"
		". work-motion"
		". work-awareness";
	position: relative;
	height: 300vh;
}
.sticky-work {
	grid-area: sticky-work;
	top: 0;
	height: 100vh;
	width: 100%;
	position: sticky;
	justify-self: center;
	align-self: center;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	z-index: 5;
}
.sticky-work h1 {
	color: #292929;
}
.work-list {
	display: flex;
	list-style: none;
	width: max(325px, 70%);
	justify-content: space-around;
	padding-left: 5vw;
	padding-right: 5vw;
}
.work-list-item {
	position: relative;
}
.work a:hover:after {
	transform: scale(1, 1);
}
.work-list-item a {
	color: #292929;
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.work-list-item a:hover {
	color: #00a47c;
}
.sticky-work .nav-list {
	position: absolute;
	bottom: 0;
}
.sticky-work .nav-list a::after {
	content: "";
	display: block;
	height: 2px;
	background-color: #292929;
	position: absolute;
	width: 100%;
	transform: scale(0, 1);
	transition: transform 200ms;
}
.sticky-work .nav-list a:hover:after {
	transform: scale(1, 1);
}
main h2 {
	z-index: 10;
	color: #fff;
	text-align: center;
	font-size: 2rem;
	line-height: 2rem;
	font-family: poppins, sans-serif;
	font-style: normal;
	color: whie;
	z-index: 1000;
}
.work-magazine {
	grid-area: work-magazine;
	height: 100vh;
	width: 50vw;
	position: relative;
	background-color: #292929;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.work-motion {
	grid-area: work-motion;
	height: 100vh;
	width: 50vw;
	position: relative;
}
.work-awareness {
	height: 100vh;
	width: 50vw;
	position: relative;
	grid-area: work-awareness;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

/*===================================================================================
HOME - CONTACT
===================================================================================*/
address {
	height: 100vh;
	width: 100%;
	grid-area: address;
}
.contact {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "sticky-contact info";
	position: relative;
	height: 100vh;
	width: 100vw;
}
.sticky-contact {
	grid-area: sticky-contact;
	background-color: #00a47c;
	position: sticky;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	/* height: 100vh; */
	top: 0;
}
.sticky-contact .nav-list {
	position: absolute;
	bottom: 0;
}
.contact .nav-list a {
	color: white;
	font-family: poppins, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.contact a::after {
	content: "";
	display: block;
	height: 2px;
	background-color: #fff;
	position: absolute;
	width: 100%;
	transform: scale(0, 1);
	transition: transform 200ms;
}
.contact a:hover:after {
	transform: scale(1, 1);
}
.sticky-contact h1 {
	color: #fff;
}
.info {
	grid-area: info;
	display: flex;
	flex-direction: column;
	margin: 10vh 5vw;
	font-family: futura-pt, sans-serif;
	font-weight: 300;
	font-style: normal;
}
.in-text-link {
	text-decoration: underline;
	color: #00a47c;
}
.in-text-link:hover {
	text-decoration: none;
}
.client-link:hover {
	text-decoration: underline;
	color: #00a47c;
}

/*===================================================================================
HOME - FOOTER
===================================================================================*/

footer {
	height: 100vh;
	width: 100vw;
	grid-area: footer;
	background-color: #292929;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}
.signature-footer {
	width: 200px;
	transform: rotate(15deg);
}
.logo-footer {
	width: 300px;
	position: absolute;
	top: 45%;
	transform: tr anslateY(-55%);
}
.outro {
	margin-top: 5rem;
}
/*===================================================================================
IMAGES
===================================================================================*/

.avatar {
	width: 130px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	top: 7rem;
	z-index: 1;
	border-radius: 50%;
}
.overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	opacity: 0;
	transition: 500ms ease;
	background: black;
	cursor: pointer;
}
.case-stories {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-evenly;
	background-color: #292929;
}

.hero-image-case {
	width: 300px;
	min-width: 60%;
	max-width: 80%;
}
.sector {
	font-size: 1rem;
	font-weight: 400;
	font-style: normal;
	font-family: futura-pt, sans-serif;
	font-style: normal;
}
#PDF {
	width: 50%;
	height: 85vh;
	align-self: center;
	margin-top: 3rem;
	margin-bottom: 3rem;
}
.work-magazine:hover .overlay {
	opacity: 0.5;
}
/* .work-motion img {
	object-fit: cover;
} */
.work-motion:hover .overlay {
	opacity: 0.5;
}
/* .work-awareness .img {
	object-fit: cover;
	width: 50vw;
	height: 100vh;
} */
.work-awareness:hover .overlay {
	opacity: 0.5;
}

.hero-image-hour {
	max-width: 40vw;
	align-self: center;
	/* padding: 5rem 2rem; */
}

.hero-image-motion {
	max-width: 600px;
	align-self: center;
	padding: 5rem 0 5rem 0;
}
.hero-image-awareness {
	max-width: 600px;
	align-self: center;
	padding: 5rem 0 5rem 0;
}
.magazine-case-story-image {
	margin: 2rem 0 3rem 0;
	max-width: 40vw;
	/* box-shadow: 0.75rem 0.75rem 1rem #292929; */
	filter: drop-shadow(0.75rem 0.75rem 1rem #292929);
}
/*===================================================================================
WORKS/PROJECTS PAGES
===================================================================================*/

.works-header {
	height: calc(10rem + 28.5px);
	width: 100vw;
	display: flex;
	flex-direction: row;
	background: #292929;
	text-align: center;
}
.my-brand {
	width: 25%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-content: center;
	height: 100%;
	font-family: poppins, sans-serif;
	font-weight: 400;
	font-style: normal;
}
.my-name {
	width: 100%;
	text-align: center;
	color: #fff;
}
.logo-works-page {
	max-height: 5rem;
	padding: 0.25rem 0;
}
.my-title {
	width: 100%;
	text-align: center;
	color: #fff;
}
.project-brand {
	display: flex;
	flex-direction: column;
	justify-content: center;
	flex-grow: 1;
	color: #fff;
}
.deliverables a:hover {
	color: #fff;
}
.work-page-content {
	/* background: greenyellow; */
	display: flex;
	flex-direction: column;
	position: fixed;
	align-items: center;
	top: calc(10rem + 28.5px);
	width: 25%;
	padding-top: 3rem;
	padding-bottom: 3rem;
}
.work-page-content h4 {
	font-family: poppins, sans-serif;
	/* font-size: 20px; */
	margin-bottom: 2rem;
	align-self: center;
	color: #00a47c;
}
.work-page-content ol li {
	padding: 1rem 0;
	font-family: futura pt, sans;
}
.work-page-content ol li a {
	padding-left: 1rem;
	color: #292929;
}
.work-page-content ol li a:hover {
	padding-left: 1rem;
	color: #00a47c;
}
.works-main {
	/* background-color: rgba(135, 206, 233, 1); */
	top: calc(10rem + 28.5px);
	font-family: poppins, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	display: flex;
	flex-direction: column;
	margin-left: 25%;
}
summary {
	display: flex;
	flex-direction: column;
	margin: 0rem 25% 0rem 25%;
}
summary .project-details {
	display: flex;
	flex-grow: 1;
	border-bottom: 1px solid #292929;
	border-bottom-style: discrete;
}
summary h5 {
	width: 30%;
	padding: 1rem 0% 1rem 0%;
	color: #00a47c;
}
summary p {
	width: 70%;
	padding: 1rem 0% 1rem 0%;
}

.chapter {
	/* background-color: gray; */
	align-items: center;
	display: flex;
	flex-direction: column;
	padding-top: 5rem;
	width: min(600px, 60vw);
	align-self: center;
}

blockquote {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: italic;
	width: min(600px, 60vw);
	text-align: center;
	color: #e9370a;
	border-top: 1px solid #e9370a;
	border-bottom: 1px solid #e9370a;
	padding-bottom: 1rem;
	margin-top: 3rem;
	margin-bottom: 2rem;
}
cite {
	display: block;
	padding-top: 0.5rem;
}
.p-works {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	font-style: normal;
	padding: 1rem 0rem 1rem 0rem;
}
.lists {
	font-family: futura-pt, sans-serif;
	font-weight: 400;
	max-width: 400px;
	align-self: flex-start;
	margin-left: 2rem;
}
.lists-heading {
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	color: black;
}
.storyboard-heading {
	font-family: futura-pt, sans-serif;
	font-weight: 600;
	color: black;
	align-self: flex-start;
	margin-top: 3rem;
	padding-bottom: 0;
}
.by-line {
	align-self: flex-start;
}
/* font-family: futura-pt, sans-serif;
	font-weight: 400;
	max-width: 400px;
} */
/* .project-data {
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	margin: 0 10vw 0vh 10vw;
	align-items: center;
	text-align: center;
	font-size: 20px;
}
.research-w {
	display: flex;
	flex-flow: row;
	flex-wrap: wrap;
	justify-content: space-around;
	margin-top: 2rem;
}
.w-container {
	display: flex;
	flex-flow: column wrap;
	border: 2px solid #00a47c;
	max-width: 200px;
	padding: 1rem;
	margin: 1rem;
}
.logo-type-color {
	display: flex;
	flex-direction: row;
	justify-content: space-around;
	width: min(800px, 70vw);
	flex-wrap: wrap;
}
.type-and-color {
	padding: 1rem;
	margin: 1rem;
	text-align: center;
	min-width: 200px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.logotype {
	font-family: oskar-inline, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 50px;
	margin-bottom: 2rem;
	text-align: center;
}
.headings-type {
	font-family: roma-solid, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 40px;
	margin-bottom: 1rem;
	margin-top: 3rem;
	text-align: center;
}
.special-type {
	font-family: roma-fill, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 24px;
	margin-bottom: 1rem;
	text-align: center;
}
.body-copy-type {
	font-family: semplicitapro, sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 16px;
	text-align: center;
} */

/*==================================================================================
MEDIA QUERIES
===================================================================================*/

@media screen and (max-width: 750px) {
	.works-main {
		margin: 0;
	}
	.work-page-content {
		display: none;
	}
	.hero-image-awareness {
		max-width: 90vw;
	}
	address {
		all: unset;
	}
	.contact {
		all: unset;
	}
	.about,
	.work,
	.contact {
		display: flex;
		flex-direction: column;

		/* grid-auto-rows: minmax(100vh, auto);
	grid-template-columns: 1fr 1fr;
	grid-template-areas: "sticky-about bio";
	position: relative;
	width: 100vw; */
	}
	.sticky-about,
	.sticky-work,
	.sticky-contact {
		position: relative;
		background-color: #00a47c;
		height: 100vh;
	}
	.work-list {
		display: none;
	}
	.nav-list-item a,
	.nav-list-item .link-anim {
		color: white;
	}
	.bio {
		margin: 10vh 10vw;
		min-width: 80vw;
		max-width: 600px;
		line-height: 25px;
		font-family: futura-pt, sans-serif;
		font-weight: 400;
		font-style: normal;
	}
	.case-stories {
		width: 100vw;
	}
	.sticky-work .nav-list a::after {
		background-color: white;
	}
	.sticky-work h1 {
		color: white;
	}
}
@media screen and (max-width: 600px) {
	.p-works {
		min-width: 80vw;
	}
}
