/*INITIAL SETTINGS*/
*{
	box-sizing: border-box;
}

body{
  overflow-x: hidden;
	height: 100%;
	width: 100%;
}

.spacer{
	float: left;
	height:40px;
	padding:0px;
}

.row{
	margin-left: 0;
	margin-right: 0;
}

.dataRow .row {
  justify-content: center;
}

.row-full {
  width: 100vw;
  left: -84px;
  position: relative;
}

.centerRow{
	align-items: center;
}

.alternateRow{
	align-items: center;
}

div.centerRow:nth-of-type(odd){
	flex-direction: row-reverse;
}

.container-fluid{
	padding-left: 0;
	padding-right: 0;
}

ul{
	list-style: none;
}

.navigation, .homeHeading{
	padding: 35px 84px 35px 94px;
}

.homeHeading{
	margin-top: 125px;
}

.content{
	padding: 35px 84px;
}

.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
	margin-left: auto;
  margin-right: auto;
}

footer{
	padding-top: 80px;
	padding-bottom: 80px;
	padding: 35px 91px;
}

::selection{
	background: #001be7;
	color: white;
	text-shadow: none;
}

::-moz-selection {
	background: #001be7;
	color: white;
	text-shadow: none;
}

.left{
	float:left;
	padding: 0;
}

.right{
	float:right;
	padding: 0;
}

/*TEXT AND FONT*/
h1{
	font-family: 'Poppins', sans-serif;
	font-weight: 800;
	font-size: 48px;
	color: #414141;
	text-align: left;
	margin-top: 70px
}
.h2,
h2{
	font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 30px;
  color: #2A2A2A;
  text-align: left;
  letter-spacing: 0.01em;
  line-height: 44px;
  padding-bottom: 16px;
}
.h2 {
  margin-top: 0;
}
h3{
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #FFF;

}
h4{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #FFF;

}
h5{
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 16px;
	color: #2A2A2A;
	line-height: 5px;
}
.strong {
	font-family: 'Poppins', sans-serif;
 	font-weight: 600;
 	font-size: 16px;
 	color: #575757;
}
h6{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 13px;
	color: #515151;

}

.aboutText{
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 20px;
	color: #575757;
	text-align: left;
	line-height: 26px;
	padding-bottom: 24px;
}

.pullquote{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #575757;
	line-height: 26px;
	margin-top: 24px;
	margin-bottom: 24px;
	background-color: #F6F6F6;
	border-radius: 12px;
	padding: 28px 38px 28px 38px;
}
.userdescription{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 20px;
	line-height: 28px;
	color: #515151;
}

.stronguserdescription{
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 20px;
	line-height: 28px;
	color: #515151;
}

.caption{
	font-family: 'Poppins', sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #575757;
	line-height: 24px;
	text-align:center;
}
p{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #575757;
	line-height: 26px;
	margin-bottom: 24px;
}

li p{
	margin-bottom: 10px;
}

a, a:hover, a:active, a:focus{
	color: inherit;
	text-decoration: none;
}

p a{
	text-decoration: underline;
	color: inherit;
}

.subTitle{
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
	font-size: 18px;
	color: #515151;
	text-align: left;
	line-height: 22px;
	padding-bottom: 6px;
}

.homeTitle h1{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 40px;
	margin-top: 0;
	color: #292929;
	text-align: left;
	line-height: 58px;
}

i{
	font-size: 24px;
	color: #272727;
}

.subText{
	font-weight: 400 !important;
	color: #949494 !important;
}

/*NAV AND UNDERLINE EFFECTS*/

.navigation{
	width: 100%;
	height: 98px;
	top: 0;
	display: flex;
	position: fixed;
	background-color: white;
	z-index: 1000;
}

.menu{
	justify-content: flex-end;
}

.logo{
	text-align: left;
	padding: 0;
	float: left;
}

.logoImg{
	height: 55px;
	width: 55px;
}

.navItem{
	padding-left: 30px;
}

.navLink{
	width: auto;
}

.navLink:focus{
	outline: 0;
}

.navText{
	letter-spacing: 0.05em;
}

.ulNav{
	opacity: 0;
	margin: auto;
	width: 0px;
	border: #001be7 solid 1px;
	transition: ease-in-out 0.1s;
}

.navItem a:hover .ulNav, .navItem a:active .ulNav, .navItem a:focus .ulNav{
	opacity: 1;
	width: 18px;
	transition: ease-in-out 0.1s;
}

.hero{
	position: relative;
	top: 98px;
}

.work-page .hero{
	position: relative;
	overflow: hidden;
	height: 550px;
	margin-top: 98px;
	top: 0;
	z-index: 1;
}

.work-page .hero__image{
	position: fixed;
	display: block;
	height: 550px;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.work-page .hero__image-outer{
	position: absolute;
	height: 550px;
	width: 100vw;
	z-index: -1
}

.work-page .hero__content{
	height: 100%;
	width: 100%;
	position: relative;
	z-index: 50;
}

.microsoft-articles .hero__image-outer{
	background-color: #0078D4;
}
.sync-app .hero__image-outer{
	background-color: #A4D7D9;
}
.touchbistro-menu-management .hero__image-outer{
	background-color: #63B4BC;
}
.microsoft-publisher .hero__image-outer{
	background-color: #f8d894;
}
.q4-touch .hero__image-outer{
	background-color: #C4C9CF;
}
.scheduled-reports .hero__image-outer{
	background-color: #63B4BC;
}

/*CONTENT - HOME*/

.content{
	margin-top: 25px;
}

.project{
	float:left;
	padding: 0;
}

.imgBorder{
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	border: 7px solid white;
	z-index: 100;
}

.imgContainer{
	padding: 0;
}

.projectImg{
	width: 100%;
}

.projectOverlay{
	background-color: #001be7;
	opacity: 0;
	top: 0;
	left: 0;
	position: absolute;
	width: 100%;
	height: 100%;
	transition: ease-in-out 0.3s;
}

.project:hover .projectOverlay{
	opacity: 0.85;
	transition: ease-in-out 0.3s;
}

.projectInner{
	opacity: 0;
	position: absolute;
	bottom: 50px;
	right: 60px;
	text-align: right;
	color: white;
	transition: ease-in-out 0.3s;
	z-index: 100;
}

.project:hover .projectInner{
	opacity: 1;
	transition: ease-in-out 0.3s;
}

.typeText{
	float: right;
}

.line{
	float: right;
	height: 1px;
	width: 14px;
	background-color: #FFF;
	margin: 8px 10px 0 0;
}

/*CONTENT - WORK*/
.work-page .content{
	position: relative;
	padding-top: 60px;
	background: white;
	margin-top: 0;
	z-index: 10;
}

.dataSquareContainer {
  margin: 40px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 768px;
  width: 100%;
}

.dataSquare {
  width: 32%;
  min-width: 150px;
}

p.dataPoint {
  font-family: 'Rubik', 'sans-serif';
  font-size: 40px;
  line-height: 1.2;
  margin: 0;
  color: black;
}

p.dataDesc {
  font-family: 'Poppins', 'sans-serif';
  color: black;
  line-height: 26px;
}

/*CONTENT - ABOUT ME*/

.subText{
	padding-left: 10px;
	line-height: 18px;
}

.expContent{
	padding-bottom: 10px;
}

/*CONTENT - CONTACT*/

#contactform{
	margin-top: 27px;
}

#formContainer, #dirContainer, #name, #email{
	float: left;
}

#formContainer, #dirContainer{
	margin-top: 90px;
}

#formContainer{
	padding: 0;
}

#dirContainer{
	padding-left: 50px;
}

.form-group{
	float: left;
	height: 50px;
	padding: 0;
}

.form-control:focus {
  border-color: black;
  -webkit-box-shadow: none;
  box-shadow: none;
}


#name, #email{
	font-size: 16px;
}

#message{
	padding-bottom: 5px;
	font-size: 16px;
	height: 30px;
}

#formBtn, input[type="submit"]{
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

#formBtn{
	letter-spacing: 1px;
}

/* LOGIN */

.form-page {
  min-height: calc(100vh - 208px);
}

.flex-vertical {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-page {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-login-image-outer {
  overflow: hidden;
  max-width: 125px;
  max-height: 125px;
  margin-bottom: 30px;
}

.page-login-image-outer img {
  display: inline;
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.page-heading {
  margin-bottom: 10px;
}

.page-heading p {
  text-align: center;
}

.responsive-wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  height: 50px;
  max-width: 640px;
  width: 100%;
}

.form-btn {
  border: 3px solid #001be7;
  background-color: #001be7;
  color: #fff;
  height: 50px;
  padding: 2px 20px 0 20px;
  margin-left: 12px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 16px;
}

.errMsg {
	margin-top: 20px;
}

.form-control {
	display: block;
	width: 100%;
	height: 50px;
	padding: 12px;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #C1C1C1;
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	font-size: 16px;
}

/* END LOGIN */

/*FOOTER*/

.social{
	padding-left: 8px;
}

.socIcon{
	text-align: left;
	float: left;
	width: 55px;
	height: 30px;
}

.socIcon a{
	opacity: 1;
	transition: ease-in-out 0.1s;
}

.socIcon a:hover, .socIcon a:active, .socIcon a:focus {
	opacity: 0.7;
	transition: ease-in-out 0.1s;
}

.rights{
	text-align: right;
}

/*WORK FOOTER STYLES*/

.work-footer{
	padding-top: 40px;
	padding-bottom: 34px;
	background-color: #f2f2f2;
	z-index: 100;
	position: relative;
}

.work-footer h4{
	color: #3D3D3D;
	font-family: Poppins, serif;
	font-size: 22px;
	line-height: 28px;
	margin-bottom: 0;
	padding-bottom: 20px;
}

.work-footer p{
	color: #3D3D3D;
	font-size: 17px;
	line-height: 19px;
	margin: 0;
}

.work-footer__next-post{
	text-align: center;
	margin-bottom: 20px;

}

.work-footer__next-post-sub, .work-footer__next-post-text {
	width: 100%;
}

.work-footer__next-post-link {
	display: block;
	padding-top: 12px;
	padding-bottom: 15px;
}

.work-footer__arrow{
	height: 30px;
	width: 30px;
	border: solid thin #3D3D3D;
	border-radius: 30px;
	margin: auto;
	overflow: hidden;
}

.work-footer__next-post-link .work-footer__arrow-svg.animating{
	animation: swipe-fade-out;
	animation-duration: 250ms;
}

.work-footer__next-post-link:hover .work-footer__arrow-svg{
	animation: swipe-fade;
	animation-duration: 500ms;
}

/*WORK FOOTER STYLES*/

/*FOOTER*/

/*MEDIA QUERIES*/

@media screen and (max-width: 1350px) {
  .dataSquareContainer {
    max-width: 50%;
  }
}

@media screen and (max-width: 1200px){
	#dirContainer{
		padding: 0;
	}
}

@media screen and (max-width: 1078px){
  .dataSquareContainer {
    max-width: 68%;
  }

	#exp, #exp .aboutTitle{
		height: 500px;
	}
}

@media screen and (max-width: 1024px){
	.navLink{
		padding: 0;
	}

	.navigation{
		padding-top: 15px;
		padding-bottom: 15px;
	}

}

@media screen and (max-width: 991px){
	.navigation{
		padding-left: 0;
		padding-right: 0;
	}

	.homeHeading{
		padding: 0 50px;
	}

	.logo{
		padding-left: 50px;
	}

	.navbar-toggler{
		margin-right: 50px;
	}

	.menu{
		background-color: #FFF;
		z-index: 1000;
		text-align: center;
	}

	.navLink{
		padding-top: 15px;
		height: 50px;
	}

}

@media screen and (max-width: 951px){
	#exp, #exp .aboutTitle{
		height: 580px;
	}
	.centerRow{
		flex-direction: column;
	}
}

@media screen and (max-width: 890px){
	.content, footer{
		padding-left: 50px;
		padding-right: 50px;
	}

  .row-full {
    left: -50px;
  }
}

@media screen and (max-width: 768px){
	#aboutMe, #exp{
		height: auto;
	}

	#aboutMe .aboutTitle, #exp .aboutTitle{
		height: auto;
		margin-bottom: 30px;
	}

	.homeTitle h1{
		font-size: 35px;
		line-height: 1.2;
	}

	.homeSubtitle h2{
		font-size: 24px;
		line-height: 1.2;
	}

	#exp{
		margin-bottom: 20px;
	}
}

@media screen and (max-width: 667px){
	.rights{
		width: 100%;
		padding-top: 50px;
		text-align: center;
	}

	.socIcon{
		text-align: center;
		width: 20%;
		margin: auto;
	}

	.burger{
		padding-right: 21px;
	}

	.subText{
		display: block;
		width: 100%;
		padding: 0;
		margin-top: 8px;
	}

	.expContent p{
		margin-bottom: 24px;
	}
}

@media screen and (max-width: 465px){
  .dataSquareContainer {
    margin: 0 20px;
    max-width: 100%;
  }

  .dataSquare {
    width: 47%;
  }

	.content, footer{
		padding-left: 0;
		padding-right: 0;
	}

  .row-full {
    left: 0;
  }
}

@media screen and (max-width: 534px){
	.content, footer{
		padding-left: 0;
		padding-right: 0;
		margin-top: 0;
	}

	i{
		font-size: 22px;
		color: #272727;
	}

	.homeHeading{
		padding: 0 15px;
	}

	.homeTitle h1{
		font-size: 23px;
	}

	.homeSubtitle h2{
		font-size: 18px;
	}

	.logo{
		padding-left: 15px;
	}

	.navbar-toggler{
		margin-right: 15px;
	}

	.imgBorder{
		border-left: 15px solid white;
		border-right: 15px solid white;
	}

}

/*KEYFRAMES*/

@keyframes swipe-fade{
	0%,100%{transform: translateX(0);opacity: 1;}
	50%{transform: translateX(15px);opacity: 0;}
	50.01%{transform: translateX(-15px);opacity: 0;}
}

@keyframes swipe-fade-out{
	from{opacity: 0;}
	to{opacity:1;}
}

/*KEYFRAMES*/
