*{ box-sizing: border-box; }

body, h1, h2, h3, h4, h5, h6, p, ul, ol {
	padding: 0;
	margin: 0;
}

/* Responsive */
img {
	max-width: 100%;
	height: auto;
}

/* Typography */
body,
button,
input,
textarea {
	-webkit-font-smoothing:antialiased;
	font-size: 100%;
}

.small { font-size: 0.833rem; }

.big {
	font-size: 1.2rem;
	line-height: 1.75rem;
}

.bigger {
	font-size: 1.44rem;
}

p {
	line-height: 1.5rem;
	margin-bottom: 1rem;
}

/* Forms */
input:focus,
textarea:focus { outline: none; }

input,
textarea {
	font-size: 15px;
	padding: 0.75rem;
	width: 100%;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: #444;
	margin-bottom: 0.5rem;
}

input[type="submit"] {
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;
	border: 0;
	margin: 0;
}

/* Structure */
.wrap {
	padding: 0 5%;
}

section {
	padding: 3rem 0;
}

/* Flex */
.flex-mobile {
	display: flex;
	justify-content: space-between;
}

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

/* Site Header */
.site-header {
	padding: 1rem 0;
}

/* Menu Responsive */
.menuIcon {
	font-size: 1.728rem;
}

#menuMobile {
	display: none;
}

/* Headings */
h2 {
	margin-bottom: 1rem;
}

/* Colors */
.white { color: white; }
.white-87 { color: rgba(255, 255, 255, 0.87); }

.text-center { text-align: center; }
.uppercase { text-transform: uppercase; }

/* Site Footer */
.site-footer { padding: 2rem 0; }
.site-footer p:last-of-type { margin-bottom: 0; }

/* Backgrounds */
.bg-gray {
	background-color: rgba(0, 0, 0, 0.05);
}