* {
	border:0;
	font:inherit;
	font-size:100%;
	margin:0;
	padding:0;
	vertical-align:baseline;
	box-sizing: border-box;
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
	display:block;
}

html, body {
	background: #191416;
	font-family: 'Lato', Helvetica, Arial, sans-serif;
	font-size: 16px;
	color: #191416;
}

p, ul {
	font-size: 0.9em;
	line-height: 1.4em;
	color: #444;
	margin-bottom: 0.4rem;
}

p:last-child, ul:last-child {
	margin-bottom: 0;
}

p {
	margin-bottom: 0.4rem;
}

a {
	color: #ffaf5c;
	text-decoration: none;
	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

a:hover {
	text-decoration: underline;
}

article {
	margin-bottom: 1.25rem;
}

article ul {
	padding-left: 1rem;
}

#cv {
	width: 90%;
	max-width: 800px;
	background: #f3f3f3;
	margin: 30px auto;
}

.mainDetails {
	padding: 1.5rem 2.1rem;
	border-bottom: 2px solid #ffaf5c;
	background: #ededed;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row;
}

#name h1 {
	font-size: 2.5em;
	font-weight: 700;
	font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
	margin-bottom: -6px;
}

#name h2 {
	font-size: 2em;
	margin-left: 2px;
	font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
}

#name h2 i {
	color: #ffaf5c;
}

#mainArea {
	padding: 0 2.5rem;
}


#contactDetails ul {
	list-style-type: none;
	font-size: 0.9em;
	margin-top: 2px;
}

#contactDetails ul li {
	margin-bottom: 3px;
	color: #ffaf5c;
}

section {
	border-top: 1px solid #dedede;
	padding: 1.25rem 0 0 0;
}

section:first-child {
	border-top: 0;
}

section:last-child {
	padding: 1.25rem 0 0.625rem 0;
}

.cv-section {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row;
}

.projects {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row;
}

.sectionTitle {
	width: 22.5%;
}

.sectionContent {
	width: 75%;
}

.sectionTitle h1 {
	font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
	font-style: italic;
	font-size: 1.5em;
	color: #191416;
}

.sectionContent h2 {
	font-family: 'Rokkitt', Helvetica, Arial, sans-serif;
	font-size: 1.3em;
	margin-bottom: -2px;
}

.sectionContent h2 span{
	font-weight: bold;
}
.sectionContent .meta {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row;
}

.subDetails {
	font-size: 0.8em;
	font-style: italic;
	margin-bottom: 3px;
}

@media all and (min-width: 602px) and (max-width: 800px) {
}

@media screen and (max-width: 601px) {
	#cv {
		width: 95%;
		margin: 10px auto;
		min-width: 280px;
	}

	#name, #contactDetails {
		float: none;
		width: 100%;
		text-align: center;
	}

	.sectionTitle, .sectionContent {
		float: none;
		width: 100%;
	}

	.sectionTitle {
		margin-left: -2px;
		font-size: 1.25em;
	}
}

@media screen and (max-width: 480px) {
	.mainDetails {
		padding: 15px 15px;
	}

	section {
		padding: 15px 0 0;
	}

	#mainArea {
		padding: 0 25px;
	}

	#name h1 {
		line-height: .8em;
		margin-bottom: 4px;
	}
}

@media print {
	html, body {
		font-size: 91%;
	}

	#cv {
		width: 100%;
		margin: 0 auto;
		padding: 0 2%;
	}

	.mainDetails {
		align-items: flex-start;
		padding: 0 0 0.9rem 0;
		margin-top: 0;
	}

	#mainArea {
		padding: 0;
	}

	section, section:last-child {
		padding: 1rem 0 0 0;
	}

	article {
		margin-bottom: 1rem;
	}

	section:last-child article:last-child {
		margin-bottom: 0;
	}

	.sectionTitle {
		width: 17.5%;
	}

	.sectionContent {
		width: 80%;
	}

	#name h2 i, a , #contactDetails li{
		-webkit-print-color-adjust: exact;
	}
}

@-webkit-keyframes reset {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@-webkit-keyframes fade-in {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-moz-keyframes reset {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@-moz-keyframes fade-in {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes reset {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 0;
	}
}

@keyframes fade-in {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

.instaFade {
		-webkit-animation-name: reset, fade-in;
		-webkit-animation-duration: 1.5s;
		-webkit-animation-timing-function: ease-in;

	-moz-animation-name: reset, fade-in;
		-moz-animation-duration: 1.5s;
		-moz-animation-timing-function: ease-in;

	animation-name: reset, fade-in;
		animation-duration: 1.5s;
		animation-timing-function: ease-in;
}

.quickFade {
		-webkit-animation-name: reset, fade-in;
		-webkit-animation-duration: 2.5s;
		-webkit-animation-timing-function: ease-in;

	-moz-animation-name: reset, fade-in;
		-moz-animation-duration: 2.5s;
		-moz-animation-timing-function: ease-in;

	animation-name: reset, fade-in;
		animation-duration: 2.5s;
		animation-timing-function: ease-in;
}

.delayOne {
	-webkit-animation-delay: 0, .5s;
	-moz-animation-delay: 0, .5s;
	animation-delay: 0, .5s;
}

.delayTwo {
	-webkit-animation-delay: 0, 1s;
	-moz-animation-delay: 0, 1s;
	animation-delay: 0, 1s;
}

.delayThree {
	-webkit-animation-delay: 0, 1.5s;
	-moz-animation-delay: 0, 1.5s;
	animation-delay: 0, 1.5s;
}

.delayFour {
	-webkit-animation-delay: 0, 2s;
	-moz-animation-delay: 0, 2s;
	animation-delay: 0, 2s;
}

.delayFive {
	-webkit-animation-delay: 0, 2.5s;
	-moz-animation-delay: 0, 2.5s;
	animation-delay: 0, 2.5s;
}

@media print {
	.no-print, .no-print * {
		display: none !important;
	}
}
