@charset "utf-8";

html {
	font-family: "Inconsolata", serif;
	font-weight: 600;
}

body {
	background-color: rgb(245,245,245);
}

#mainLogo {
	display: flex;
	flex-flow: row wrap;
	background-image: radial-gradient(farthest-side, rgb(214,69,4), rgb(64,15,1));
	padding: 10px 0px;
}

#mainLogoContainer {
	position: relative;
	width: 70%;
}

#mainLogoNormal {
	display: block;
	width: 384px;
	height: 184px;
	margin: 0px auto;
}

.mainLogoSide {
	width: 15%;
}

.mainLogoSide img {
	width: 100%;
	height: 100%;
}

.brandLogo {
	display: block;
	width: 48px;
	height: 48px;
}

.headerText {
	width: auto;
	line-height: 1em;
	font-size: 22px;
	color: white;
}

#pNumberText {
	display: block;
	position: absolute;
	left: calc(50% + 10px);
	top: 25px;
}

#pNumberText a {
	color: white;
	text-decoration: none;
}

#pNumberText a:hover {
	color: white;
	text-decoration: underline;
}

#phoneIcon {
	display: block;
	position: absolute;
	left: calc(50% - 20px);
	top: 20px;
	font-size: 30px;
}

#facebookLogo {
	margin: 24px 32px 32px 40px;
}

#linkedInLogo {
	width: 56.4444444444444px;
	margin: 32px 32px 24px 40px;
}

#xLogo {
	float: right;
	margin: 24px 40px 32px 74.46791003%;
}

#xText {
	float: right;
}

#googleLogo {
	float: right;
	margin: 0px 40px 24px 74.46791003%;
}

#googleText {
	float: right;
}

#navContainer {
	background-image: linear-gradient(rgb(214,69,4), rgb(64,15,1));
	color: white;
}

header nav ul {
	display: flex;
	flex-flow: row wrap;
}

header nav ul li {
	flex: 1 1 auto;
	font-size: 1.5em;
	line-height: 1em;
	font-weight: 800;
	width: 33%;
}

header nav ul li a {
	display: block;
	text-align: center;
	padding: .5em 0px;
	width: 100%;
	height: 100%;
	color: white;
}

header nav ul li a:hover {
	background-image: linear-gradient(rgb(245,93,7), rgb(128,35,2));
}

@media only screen and (max-width: 580px) {
	
	#mainLogoContainer {
		width: 100%;
	}
	
	#mainLogoNormal {
		width: 320px;
		height: 153.33333333333333px;
	}
	
	#pNumberText {
		top: 10px;
	}
	
	#phoneIcon {
		top: 5px;
	}
	
	#mainSocialContainerLeft {
		order: 2;
		width: 50%;
		display: flex;
		flex-flow: row nowrap;
		justify-content: flex-end;
	}
	
	#mainSocialContainerRight {
		order: 3;
		width: 50%;
		display: flex;
		flex-flow: row nowrap;
	}
	
	#facebookLogo {
		float: right;
		margin: 24px;
	}

	#linkedInLogo {
		float: right;
		margin: 24px;
	}

	#xLogo {
		margin: 24px;
	}
	
	#googleLogo {
		margin: 24px;
	}
	
}

@media only screen and (max-width: 480px) {
	
	#mainSocialContainerLeft {
		flex-flow: row wrap;
	}
	
	#mainSocialContainerRight {
		flex-flow: row wrap;
	}
	
	.brandLogo {
		width: 40px;
		height: 40px;
	}
	
	#facebookLogo {
		margin: 16px;
	}

	#linkedInLogo {
		width: 47.037037037037px;
		margin: 16px;
	}

	#xLogo {
		margin: 16px;
	}
	
	#googleLogo {
		margin: 16px;
	}
}