/* ________________________________ */
/* RESET                            */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*
  Simple Grid
  Project Page - http://thisisdallas.github.com/Simple-Grid/
  Author - Dallas Bass
  Site - http://ninenineteen.co
*/

*, *:after, *:before {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

body {
	margin: 0;
}

[class*='col-'] {
	float: left;
  min-height: 1px;
	padding-right: 20px; /* column-space */
}

.grid {
	width: 100%;
	max-width: 1140px;
	min-width: 748px; /* when using padded grid on ipad in portrait mode, width should be viewport-width - padding = (768 - 20) = 748. actually, it should be even smaller to allow for padding of grid containing element */
	margin: 0 auto;
	overflow: hidden;
}

.grid:after {
	content: "";
	display: table;
	clear: both;
}

.grid-pad {
	padding-top: 20px;
	padding-left: 20px; /* grid-space to left */
	padding-right: 0; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-20px=0 */
}

.push-right {
	float: right;
}

/* Content Columns */

.col-1-1 {
	width: 100%;
}
.col-2-3, .col-8-12 {
	width: 66.66%;
}

.col-1-2, .col-6-12 {
	width: 50%;
}

.col-1-3, .col-4-12 {
	width: 33.33%;
}

.col-1-4, .col-3-12 {
	width: 25%;
}

.col-1-5 {
	width: 20%;
}

.col-1-6, .col-2-12 {
	width: 16.667%;
}

.col-1-7 {
	width: 14.28%;
}

.col-1-8 {
	width: 12.5%;
}

.col-1-9 {
	width: 11.1%;
}

.col-1-10 {
	width: 10%;
}

.col-1-11 {
	width: 9.09%;
}

.col-1-12 {
	width: 8.33%
}

/* Layout Columns */

.col-11-12 {
	width: 91.66%
}

.col-10-12 {
	width: 83.333%;
}

.col-9-12 {
	width: 75%;
}

.col-5-12 {
	width: 41.66%;
}

.col-7-12 {
	width: 58.33%
}

/* Pushing blocks */

.push-2-3, .push-8-12 {
	margin-left: 66.66%;
}

.push-1-2, .push-6-12 {
	margin-left: 50%;
}

.push-1-3, .push-4-12 {
	margin-left: 33.33%;
}

.push-1-4, .push-3-12 {
	margin-left: 25%;
}

.push-1-5 {
	margin-left: 20%;
}

.push-1-6, .push-2-12 {
	margin-left: 16.667%;
}

.push-1-7 {
	margin-left: 14.28%;
}

.push-1-8 {
	margin-left: 12.5%;
}

.push-1-9 {
	margin-left: 11.1%;
}

.push-1-10 {
	margin-left: 10%;
}

.push-1-11 {
	margin-left: 9.09%;
}

.push-1-12 {
	margin-left: 8.33%
}

@media handheld, only screen and (max-width: 767px) {
	.grid {
		width: 100%;
		min-width: 0;
		margin-left: 0;
		margin-right: 0;
		padding-left: 20px; /* grid-space to left */
		padding-right: 10px; /* grid-space to right: (grid-space-left - column-space) e.g. 20px-10px=10px */
	}

	[class*='col-'] {
		width: auto;
		float: none;
		margin: 10px 0;
		padding-left: 0;
		padding-right: 10px; /* column-space */
	}

	/* Mobile Layout */

	[class*='mobile-col-'] {
		float: left;
		margin: 0 0 10px;
		padding-left: 0;
		padding-right: 10px; /* column-space */
		padding-bottom: 0;
	}

	.mobile-col-1-1 {
		width: 100%;
	}
	.mobile-col-2-3, .mobile-col-8-12 {
		width: 66.66%;
	}

	.mobile-col-1-2, .mobile-col-6-12 {
		width: 50%;
	}

	.mobile-col-1-3, .mobile-col-4-12 {
		width: 33.33%;
	}

	.mobile-col-1-4, .mobile-col-3-12 {
		width: 25%;
	}

	.mobile-col-1-5 {
		width: 20%;
	}

	.mobile-col-1-6, .mobile-col-2-12 {
		width: 16.667%;
	}

	.mobile-col-1-7 {
		width: 14.28%;
	}

	.mobile-col-1-8 {
		width: 12.5%;
	}

	.mobile-col-1-9 {
		width: 11.1%;
	}

	.mobile-col-1-10 {
		width: 10%;
	}

	.mobile-col-1-11 {
		width: 9.09%;
	}

	.mobile-col-1-12 {
		width: 8.33%
	}

	/* Layout Columns */

	.mobile-col-11-12 {
		width: 91.66%
	}

	.mobile-col-10-12 {
		width: 83.333%;
	}

	.mobile-col-9-12 {
		width: 75%;
	}

	.mobile-col-5-12 {
		width: 41.66%;
	}

	.mobile-col-7-12 {
		width: 58.33%
	}

	.hide-on-mobile {
		display: none !important;
		width: 0;
		height: 0;
	}
}

/* ------------- MC's CSS ------------------- */
/* ------------------------------------------ */

@font-face {
    font-family: 'belindaregular';
    src: url('belinda-webfont.eot');
    src: url('belinda-webfont.eot?#iefix') format('embedded-opentype'),
         url('belinda-webfont.woff') format('woff'),
         url('belinda-webfont.ttf') format('truetype'),
         url('belinda-webfont.svg#belindaregular') format('svg');
    font-weight: normal;
    font-style: normal;

}

body {
	color: #463437; 
	background-color: #EDE9E6; 
	text-align: center;
	font-family: Merriweather, "Helvetica Neue", Helvetica, Arial, sans-serif;
	font-size: 1.1em;
}

.main{
	background: transparent url('../img/mcpaccard-bg.jpg') no-repeat center top;
	width: 100%;
	height: 900px;
	text-align: center;
}
.gradient{
	background: transparent url('../img/gradient.png') no-repeat center top;
	width: 100%;
	height: 100%;
}

.claim{
	margin: 0 auto;
	width: 300px;
	text-align: right;
}

.claim p a:link{
	color: #157078;
}

.secondary{
	text-align: left;
	padding-bottom: 60px;
}

a {color: #5abcc4; text-decoration: none;}


.texcenter{
	text-align: center;
}

.textright{
	text-align: right;
}

p{
	margin: 0.5em 0 0.8em 0;
}

/* ________________________________ */
/* FONTS                            */

.medium{
	font-weight: 300;
}

.small{
	font-size: 0.7em;
	color: #9B8B8B;
}

.smalldark{
	font-size: 0.7em;
	color: #453633;
}

a:link, a:active{
	color: #58C5D2;
}

a:hover, a:visited{
	color: #836f71;
}

.beige{
	background-color: #e5d9ce;
}

.metanavigation{
	padding: 1em;
	background-color: #c7bec2;
	color: #9B8B8B;
}

.metanavigation a:link, .metanavigation a:active{
	color: #9B8B8B;
}

.metanavigation a:hover, .metanavigation a:visited{
	color: #836f71;
}

h1 {
	color: #453633;
	font-family: 'Abril Fatface', serif;
	font-weight: bold;
	font-size: 4em;
	margin: 1em 0 0.3em 0;
}

h1 span{
	/* color: #58C5D2; */
	font-size: 0.6em;
}

.moveup{
	-webkit-transition: top 0,5s ease-in-out;
	  -moz-transition: top 0,5s ease-in-out;
	  -o-transition: top 0,5s ease-in-out;
	  transition: top 0,5s ease-in-out;
}

.moveup:hover{
	top: -0.3em;
}

h2.slogan {
	color: #453633;
	font-family: Merriweather, Helvetica, sans-serif;
	font-weight: 400;
	font-size: 1.2em;
	margin: 0 0 2em 0;
}

h2 {
	color: #453633;
	font-family: 'Abril Fatface', Geneva, serif;
	font-weight: 700;
	font-size: 2em;
	margin: 1.5em 0 1em 0;
}

h3{
	font-family: 'Lato', Helvetica, sans-serif;
	color: #58C5D2;
	font-size: 1em;
}

p{
	margin: 0 1em 1em 0;
	line-height: 1.8em;
}

.skills{
	background-color: #EDE9E6;
	border-bottom: 5px solid #58C5D2;
}

.skills .whitebox{
	background-color: white;
	font-size: 0.9em;
	padding: 0.6em;
	margin: 1em 0 0 0;
}

.whitebox .smalldark{
	margin-top: 0.2em;
}

.skills .bluebox{
	background-color: #b4e4ea;
	font-size: 0.9em;
	padding: 0.6em;
	margin: 1em 0;
}

.skills .transparent{
	background-color: none;
}

.footer{
	background-color: #58C5D2;
	padding: 2em 0;
	font-size: 0.8em;
}

.footer a{
	color: #FBFAF8;
}

ul li{
	padding: 0 0 0.5em 0;
	margin-left: 2em;
}

.mint{
	background-color: #bad4d6;
}

.mint p a{
	color: #157078;
}

.sideproject{
	text-align: center;
	float: left;
	margin-right: 60px;
}

.sideproject img{
	padding: 0 0 0.8em 0;
}