@charset "utf-8";

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

html,
body,
#main {
	margin: 0;
	padding: 0;
	min-width: 320px;
	height: 100%;
}

body {
	font-family: Helvetica, Arial, sans-serif;
	font-size: 20px;
	min-width: 320px;
}

h1, h2,
h3, h4,
h5, h6 {
	margin-top: 0;
}

h1 {
	font-size: 1.5em;
	margin-bottom: .67em;
}
p {
	font-size: .8em;
}
img {
	max-width: 100%;
}

@media (min-width: 640px) {
	h1 {
		font-size: 2em;
	}
	p {
		font-size: 1em;
	}
}

.section {
	display: table;
	min-height: 100%;
	padding: 20px;
	width: 100%;
}
.section--image {
	padding: 40px;
}
.content--half {
	padding-top: 20px;
	padding-bottom: 20px;
}
@media (min-width: 640px) {
	.content--half {
		display: table-cell;
		position: relative;
		vertical-align: middle;
		width: 50%;
		height: 100%;
	}
	.content--ipad-up-left {
		padding: 0 20px;
		text-align: left;
	}
}
.bg-light-grey {
	background-color: #eee;
}
.align-center {
	text-align: center
}
.person {
	display: inline-block;
	overflow: hidden;
	width: 400px;
	max-width: 100%;
}
.round {
	border-radius: 50%;
}
.img-wrapper {
	position: relative;
	padding-bottom: 100%;
}
.img-wrapper > img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transform-origin: 50% 50%;
	transition: transform .4s ease-in-out;
}
.img-wrapper:hover > img {
	transform: translate(-50%, -50%) scale(1.05);
}
