@font-face {
	font-family: Kajiro;
	src: url(./assets/fonts/Kajiro\ Bold.ttf);
}

@font-face {
	font-family: tradeb;
	src: url(./assets/fonts/tradegothic_lt_boldcondtwenty.ttf);
}

* {
	margin: 0;
	padding: 0;
	font-family: 'tradeb';
	box-sizing: border-box;
	overflow: hidden;
}

html,
body {
	width: 100%;
	height: 100%;
}

#main {
	width: 100%;
	height: 100vh;
}

#back {
	width: 100%;
	height: 100vh;
}

#back img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#top {
	top: 0%;
	left: 0%;
	width: 100%;
	height: 100vh;
	position: absolute;
	pointer-events: none;
}

#workingarea {
	width: 80%;
	height: 100vh;
	margin: 0 auto;
	max-width: 1600px;
	position: relative;
}

#nav {
	width: 100%;
	display: flex;
	padding: 40px 0;
	align-items: center;
	justify-content: space-between;
}

#nav img {
	height: 60px;
}

#nleft,
#nright {
	gap: 50px;
	display: flex;
	align-items: center;
	pointer-events: all;
}

#nleft a,
#nright a {
	padding: 2px;
	color: #FFF;
	font-size: 16px;
	font-weight: 700;
	text-decoration: none;
	text-transform: uppercase;
	transition: all 300ms ease-in-out;
}

#nleft a:hover,
#nright a:hover {
	scale: 1.2;
}

#hero {
	position: absolute;
	top: 50%;
	left: 0%;
	width: 100%;
	display: flex;
	text-transform: uppercase;
	justify-content: space-between;
	transform: translate(0%, -50%);
}

#heroleft {
	min-width: 50%;
}

#heroleft .elem {
	height: 9vw;
	overflow: hidden;
	position: relative;
}

#heroleft .elem h1 {
	position: absolute;
	left: 0%;
	top: 100%;
	color: #FFF;
	font-size: 11vw;
	line-height: .9;
	font-weight: 100;
	font-family: 'Kajiro';
}

#heroleft .elem h1:nth-child(1) {
	top: 0%;
}

#heroleft button {
	border: none;
	font-size: 2vw;
	margin-top: 2vw;
	padding: .4vw 3vw;
	pointer-events: all;
	font-family: 'Kajiro';
	transition: all 300ms ease-in-out;
}

#heroleft button:hover {
	box-shadow: rgba(50, 50, 93, 0.45) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.4) 0px 18px 36px -18px inset;
}

#heroright {
	width: 17%;
	display: flex;
	color: #FFF;
	align-items: flex-end;
	flex-direction: column;
}

#heroright p {
	font-size: 14px;
	font-weight: 300;
	text-align: right;
}

#heroright #imagediv {
	width: 100%;
	height: 170px;
	margin-top: 20px;
	margin-bottom: 50px;
	background-size: cover;
	background-position: center;
	background-image: url(https://images.unsplash.com/photo-1514876708437-c1a520bbff01?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=3151&q=80);
}


#heroright p:nth-child(3) {
	margin-bottom: 50px;
}