/*-------------------------MAIN*/
body {
	background-color: #404040;
	margin: 0;
	padding: 0;
}
a{
	color: #fff;
	text-decoration: none;
}
a:hover{
	color: #FFD0FA;
}
footer{
	margin: 0 auto;
}
hr{
	width: 100%;
	margin: 0 0 10px 0;
}

/*-------------------------FOOTER/HEADER*/
#homeHeader{
	margin-top: -20px;
	position: relative;
	display: flex;
  align-items: center;
	overflow: hidden;
}
#projHeader{
	display: flex;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: -20px;
}
.footerText{
	font-family: 'Josefin Sans', sans-serif;
	color: #ffd6f3;
	font-size: 13px;
	text-align: right;
}
.footerRow{
	margin: auto;
	padding-bottom: 20px;
}
.footerSocials{
	max-width: 1em;
}
.socialsHeader{
	position: absolute;
	z-index: 1;
	top: 5%;
	left: 50%;
	transform: translate(-50%, 0%);
}
#socials{
	text-align: left;
}

/*-------------------------TEXT*/
.title{
	font-family: 'Josefin Sans', sans-serif;
	text-align: center;
	color: #ffd6f3;
	font-size: 55px;
}
.titleTwo{
	font-family: 'Josefin Sans', sans-serif;
	text-align: center;
	color: #ffd6f3;
	font-size: 40px;
}
.bodyText{
	font-family: 'Josefin Sans', sans-serif;
	text-align: left;
	color: #fff;
	font-size: 25px;
	width: 100%;
	max-width: 720px;
	padding-left: 10px;
}
.bodyTextTwo{
	font-family: 'Josefin Sans', sans-serif;
	text-align: left;
	color: #fff;
	font-size: 25px;
	width: 100%;
	max-width: 690px;
	padding-left: 10px;
}
.bodyTextThree{
	font-family: 'Josefin Sans', sans-serif;
	text-align: left;
	color: #fff;
	font-size: 15px;
	width: 100%;
	margin: 10px;
}
.buttonText{
	font-family: 'Josefin Sans', sans-serif;
	text-align: center;
	color: #ffd6f3;
	font-size: 20px;
}
.formText{
	font-family: 'Josefin Sans', sans-serif;
	text-align: left;
	color: #fff;
	font-size: 20px;
}

/*-------------------------OTHER*/
.sections{
	padding: 10px 30px 30px 30px;
}
.sectionGrad{
	background-color: #000;
}
#midVid{
	padding-bottom: 25px;
}
#mobileNav{
	display: none;
}
button{
	background-color: #101010;
	border: none;
	padding: 10px;
}
button:hover{
	background-color: #ffd6f3;
	color: #000;
}
.formWidth{
	max-width: 500px;
	padding: 0 50px;
}

/*-------------------------IMAGES/VIDEO*/
video{
  overflow: hidden;
}
.videoLoop{
  object-fit: cover;
  pointer-events: none;
  margin-left: 50%;
	transform: translateX(-50%);s
}
#homeLogo{
	z-index: 1;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	max-width: 450px;
	width: 40%;
}
#projLogo{
	max-width: 200px;
}
.serviceImage{
	width: 100%;
	pointer-events: none;
}
.clientImage{
	max-width: 100px;
	margin: 50px;
	-webkit-filter: grayscale(100%);
}
.clientImage:hover{
	-webkit-filter: grayscale(0%);
	max-width: 110px;
}
#experienceImageOne{
	display: inherit;
}
#experienceImageTwo{
	display: none;
}
.socialImage{
	z-index: 1;
	max-width: 23px;
	padding: 0 5px;
	-webkit-filter: grayscale(100%);
}
.socialImage:hover{
	-webkit-filter: grayscale(0%);
}
#clientPadding{
	margin-top: -50px;
}
.projectImage{
	width: 100%;
	margin: auto;
}

/*-------------------------FLEX*/
#services{
	align-items: flex-start;
}
.row{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.col{
	flex-grow: 1;
	padding: 10px .5%;
	text-align: center;
	margin-left: auto;
	margin-right: auto;
	height: 100%;
}
.oneSixth{
	flex-grow: 0;
	width: 15.667%;
}
.twoSixth{
	flex-grow: 0;
	width: 32.333%;
}
.threeSixth{
	flex-grow: 0;
	width: 49%;
}
.fourSixth{
	flex-grow: 0;
	width: 65.667%;
}
.fiveSixth{
	flex-grow: 0;
	width: 82.333%;
}
.sixSixth{
	flex-grow: 0;
	width: 99%;
}

/*-------------------------MOBILE*/
@media only screen and (max-width: 650px){
	#mobileNav{
		display: inline;
		margin: -10px 0;
	}
	.mobileHalf{
		flex-grow: 0;
		width: 49%;
	}
	.mobileFull{
		flex-grow: 0;
		width: 99%;
	}
	.footerRow{
		padding: 0 25px;
	}
	#experienceImageOne{
		display: none;
	}
	#experienceImageTwo{
		display: inherit;
	}
}