/* Reset */
body, html, div, img, p, h1, h2, h3, h4, h5, h6, ul, ol,
li, dl, dt, dd, form, a, fieldset, input, th, td, section
{
	margin: 0; padding: 0; border: 0; outline: none;
} 
h1, h2, h3, h4, h5, h6 
{
	font-weight: normal;
}
ul, ol
{
	list-style: none;
}
a 
{
	text-decoration: none;
	color: #f0f0f0;
}
* 
{
	box-sizing: border-box;
	/* cursor: none; */
}
*:before, *:after 
{
	box-sizing: border-box;
}
/*--- end reset --*/
@font-face
{
	font-family: "thinFont";
	src: url("fonts/NormalThin.woff");
}
@font-face
{
	font-family: "regularFont";
	src: url("fonts/NormalRegular.woff");
}
@font-face
{
	font-family: "boldFont";
	src: url("fonts/NormalMedium.woff");
}
@font-face
{
	font-family: "squareFont";
	src: url("fonts/square.ttf");
}
@font-face
{
	font-family: "courier";
	src: url("fonts/CourierScreenplay.ttf");
}
@font-face
{
	font-family: "courierBold";
	src: url("fonts/CourierScreenplay-Bold.ttf");
}

:root 
{
	--black: #262627;
	--darkBlack: #1d1d1e;
	--white: #fafafa;
	--orange: #ff7a18;
	--gray: #999999;
	--easeTiming: cubic-bezier(.82, .04, .29, 1);
}
html
{
	scroll-behavior: smooth;
	scroll-padding-top: 60px;
	font-size: 62.5%;
}
html, body
{
	height: 100%;
	max-height: 100%;
}
body 
{
	font-family: regularFont;
	font-size: 1.8rem;
	line-height: 1.618;
	background-color: var(--black);
	text-rendering: optimizeLegibility;
}

/*-- Common types --*/
#squareElement
{
	width: 10px;
	height: 10px;
	fill: var(--black);
}
.spacer
{
	display: block;
	position: relative; 
	width: 100%;
	height: 600px;
}
.hide
{
	display: block;
	display: none !important;
}
.outlineText
{
	font-family: boldFont;
	-webkit-text-stroke-width: 2px;
	-webkit-text-fill-color: transparent;
	font-size: 6rem;
}
.thinText
{
	font-family: thinFont;
}
.orange 
{
	color: var(--orange);
}
.desktopViewable
{
	display: block;
}
.squarePeriod
{
	font-family: squareFont;
	line-height: 1;
	display: inline;
	vertical-align: baseline;
}

/*----------------------------------------- Nav Menu */
.navBar
{
	position: fixed;
	top: 30px;
	left: 50%;
	transform: translateX(-50%);
	background-color: var(--black);
	height: 80px;
	width: 60%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
	padding: 8px;
	z-index: 22;
	
	transition: all .6s var(--easeTiming);
	background-color: rgba(38,38,39,0.8);
	backdrop-filter: blur(4px);
}
.navLeft
{
	display: flex;
	justify-content: space-between;
	align-items: center;
	align-content: center;
}
.navLeft img
{
	height: 60px;
	width: auto;
	margin: 12px 40px 0;
}
.navCenter 
{
	display: flex;
	gap: 80px;
}
.navLink 
{
	position: relative;
	color: var(--white);
	text-align: center;
	cursor: pointer;
	letter-spacing: 2px;
	font-size: 2rem;
	z-index: 2;
	transition: all .4s var(--easeTiming);
}
.navLink::before 
{
	content: '';
	position: absolute; 
	bottom: 10px;
	right: 0;
	width: 0;
	height: 1px;
	background-color: var(--orange);
	
	transform-origin: 100% 50%;
	transition: all .5s var(--easeTiming);
	z-index: -1;
}
.navLink:hover::before,
.navLink:focus::before,
.navLink:active::before 
{
	left: 0;
	right: auto;
	width: 100%;
}
.navLink::after 
{
	position: absolute; 
	bottom: 6px;
	right: -9px;
	font-size: 0.8rem;
	content: '\25A0';
	color: var(--orange);
	opacity: 1;
	transition: all .5s var(--easeTiming);
}
.navLink:hover::after
{
	opacity: 0;
}

/*----------------------------------------- Contact Button */
.navRight
{
	position: relative;
	margin-right: 40px;
}
.letsTalk
{
	position: relative;
	color: var(--white);
	font-size: 2.2rem;
}
.letsTalk a
{
	position: relative;
	height: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 12px;
	padding-top: 0px;
	transition: all .5s var(--easeTiming);
}
.letsTalk a::after
{
 	content: '';
	position: absolute;
	right: 34px;
	bottom: 0;
	width: 0px;
	height: 2px;
	background-color: var(--orange);
	transition: all 0.45s var(--easeTiming);
}
.linkArrow
{
	position: relative;
	display: inline-block;
	width: 36px;
	height: 36px;
	margin-left: 8px;
	background-color: var(--white);
	color: var(--black);
	
	transition: all 0.45s var(--easeTiming);
	overflow: hidden;
}
.linkArrowLines
{
	width: 20px;
	height: 20px;
	position: absolute; 
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.45s var(--easeTiming);
}
.linkArrowLines polyline
{
	stroke: var(--black);
	stroke-width: 2px;
	fill: none;
}
.linkArrowLines.into
{
	transform: translate(-250%, -50%);
}
.letsTalk a:hover .linkArrow
{
	background-color: var(--orange);
}
.letsTalk a:hover .linkArrowLines polyline
{
	stroke: var(--white);
}
.letsTalk a:hover .linkArrowLines.away
{
	animation: flyOutHorizontal .6s var(--easeTiming) forwards;
}
@keyframes flyOutHorizontal 
{ 
	to 
	{
		transform: translate(250%, -50%); 
	}
}
.letsTalk a:hover .linkArrowLines.into
{
	animation: flyInHorizontal .6s var(--easeTiming) forwards;
}
@keyframes flyInHorizontal 
{ 
	to 
	{
		transform: translate(-50%, -50%); 
	}
}

/*----------------------------------------- Menu Button */
#menuButton 
{
	width: 0px;
	height: 0px;
	overflow: hidden;
	background-color: var(--white);
	color: var(--black);
	cursor: pointer;
	transition: all .6s var(--easeTiming);
	text-align: center;
	
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: space-between;
}
#menuIcons
{
	width: 36px;
	height: 36px;
	stroke: var(--black);
	stroke-width: 2px;
	fill: none;
	flex-shrink: 0;
}
	.line 
	{
		transition: all .6s var(--easeTiming);
	}
	#menuButton.clearLines #menuIcons .line 
	{ 
		transform: translateX(40px); 
	}
	#menuIcons .l2 
	{ 
		transition-delay: 0.15s; 
	} 
	#menuIcons .l3 
	{
		transition-delay: 0.25s;
	}
	.l4, .l5 
	{ 
		stroke-dasharray: 34; 
		stroke-dashoffset: 34; 
		transition: stroke-dashoffset 0.3s var(--easeTiming); 
	}
	#menuButton.clearLines #menuIcons .l4, 
	#menuButton.clearLines #menuIcons .l5
	{
		stroke-dashoffset: 0;
	}	
	#menuButton.clearLines #menuIcons .l4
	{
		transition-delay: 0.6s;
	}	
	#menuButton.clearLines #menuIcons .l5
	{
		transition-delay: 0.8s;
	}	
#menuWords
{
	position: relative;
	font-size: 1.8rem;
	width: 100%;
	height: 28px;
	overflow: hidden;
}
.word 
{
	position: absolute; 
	left: 50%;
	transform: translateX(-50%);
	bottom: 0;
	transition: all .6s var(--easeTiming);
	
	opacity: 0;
}
.word.menu
{
	animation: slideIn 0.6s var(--easeTiming) forwards;
}
.word.close
{
	opacity: 0;
}

#menuButton.clearLines #menuWords .menu
{
	animation: slideOut 0.6s var(--easeTiming) forwards;
}
 #menuButton.clearLines #menuWords .close
{
	animation: slideIn 0.6s var(--easeTiming) forwards;
} 
@keyframes slideIn 
{
	from { transform: translateX(-250%);
			opacity: 0; } 
	to { transform: translateX(-50%);
			opacity: 1; }
}
@keyframes slideOut 
{ 
	from { transform: translateX(-50%);
			opacity: 1; } 
	to { transform: translateX(250%); 
			opacity: 0; } 
}
	
@media (max-width: 1840px) 
{ 	
	.navCenter
	{
		gap: 40px;
	}
}
@media (max-width: 1500px) 
{ 
	.navBar
	{
		width: 100%;
	}
	.navLeft img
	{
		height: 60px;
		margin: 12px 20px 0;
	}
	.navRight
	{
		margin: 0 20px;
	}
 	.navRight .letsTalk
	{
		position: absolute; 
		top: 400px;
		right: 20px;
		height: 0;
		overflow: hidden;
		transition: height .6s var(--easeTiming);
	}
	.navRight .letsTalk.opened
	{
		height: 36px;
	}
	.navCenter
	{		
		position: absolute; 
		top: 80px;
		left: 0;
		width: 100%;
		height: 0;
		overflow: hidden;
		flex-direction: column;
		background-color: var(--black);	
		padding: 0;
		gap: 30px;
		transition: all .6s var(--easeTiming);
	}
	.navCenter.opened
	{
		height: 400px;	
	}
	.navLink
	{
		margin: 20px auto 20px 30px;
		text-align: right;
		max-width: 100px;		
	}
	
	#menuButton 
	{
		height: 60px;
		width: 60px;
	}
}


/*----------------------------------------- body holder --*/
section
{
	z-index: 2;
	position: relative;
}

/*----------------------------------------- Footer --*/
footer 
{
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: var(--black);
	color: var(--white);
	display: flex;
	flex-direction: column;
	justify-content: center;
	font-size: 2.0rem;
	padding-bottom: 20px;
	gap: 80px;
}
footer h2 
{
	font-size: 6rem;
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: 60px;
	text-wrap: balance;
	align-items: center;
	justify-content: center;
	letter-spacing: -1px;
}
footer h2 img
{
	max-height: 100px;
	width: auto;
}

.footerInfo
{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: space-around;
}
footer .contactLinks address 
{
	font-style: normal;
	margin-bottom: 40px;
}
footer .contactLinks a 
{
	position: relative;
	font-size: 3.0rem;
	transition: all .6s var(--easeTimimg);
}
footer .contactLinks a::after
{
	content: '';
	position: absolute;
	bottom: 0;
	left: -12px;
	width: 0%;
	height: 2px;
	background-color: var(--orange);
	transition: all .6s var(--easeTiming);
}
footer .contactLinks a:hover::after
{
	width: 100%;
}
footer .letsTalk
{
	font-size: 3.6rem;
	width: 600px;
}
#copyRight
{
	position: absolute; 
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	font-size: 1.6rem;
}
@media (max-width: 1500px) 
{
	.footerInfo 
	{
		max-width: 100%;
	}
}
@media (max-width: 1433px) 
{
	footer h2 
	{
		max-width: 60%;
		margin: auto;
	}
	.footerInfo 
	{
		max-width: 90%;
		margin: auto;
	}
}
@media (max-width: 871px) 
{
	footer
	{
		padding-bottom: 0;
		gap: 20px;
	}
	footer h2 
	{
		font-size: 4rem;
		max-width: 94%;
		flex-direction: column;
		line-height: 1.1;
		gap: 12px;
		text-align: center;
	}
	.footerInfo 
	{
		flex-direction: column;
		padding-bottom: 40px;
		font-size: 1.8rem;
	}
	#emailLink 
	{
		font-size: 2.6rem;
	}
}