/* branding *******************************/

:root {
	--color-yellow: #fdfc03;
	--color-dark: #212021;
	--color-gold: #c1a349;
	--color-gray: #d8d5d5;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}

/* tags *******************************/

body {
	position: relative;
	background: #fff;
	color: var(--color-dark);
	font-family: "Libre Franklin";
	font-size: 1rem;
	font-weight: 300;
}

h1, h2, h3 {
	font-family: Merriweather;
	font-weight: 700;
	letter-spacing: .25px;
}

h1 {
	margin-bottom: 20px;
	font-size: 2.5rem;
	text-transform: uppercase;
}

h2 {
	font-size: 1.5rem;
	text-transform: uppercase;
}

h3 {
	font-size: 1.5rem;
}

p {
	margin: 0;
	padding: 0;
}

strong {
	font-weight: 700;
}

/* layout *******************************/

.canvas {
	position: relative;
	z-index: 1;
	width: 100vw;
	max-width: 100%;
	background-color: var(--color-dark);
}

.bg {
	position: fixed;
	z-index: -1;
	width: 100vw;
	height: 100vh;
	background: #fff url("../images/wood-background.jpg") center center / cover fixed no-repeat;
}

.hero {
	width: 100%;
	padding: 40px;
	background: #fff url("../images/grip-textures.jpg") center center / cover no-repeat;
	color: #fff;
}

.content {
	z-index: 2;
	display: inline-block;
	width: 100%;
	background-color: #fff;
}

@media (min-width: 992px) {

	.hero {
		position: fixed;
		width: 40%;
		height: 100vh;
		margin-left: 10%;
	}

	.content {
		width: 40%;
		margin-left: 50%;
	}
}

/* elements *******************************/

.hero .logo {
	text-align: center;
}

.hero img {
	width: 300px;
}

.hero ul {
  list-style: none;
	margin-top: 40px;
	font-size: 1.25rem;
	text-shadow: 1px 1px 2px #000000;
}

.hero ul li {
	line-height: 1.46;
	margin-bottom: 4px;
}

.hero ul li span {
	padding: 3px 5px 3px 0;
	background-color: rgb(0,0,0,.5);
}

.hero ul li::before {
  content: "\2022";
  font-weight: bold;
  display: inline-block;
  width: 1rem;
	font-size: 1.5rem;
  margin-left: -1rem;
  color: var(--color-yellow);
}

.steps {
	margin: 20px 0 20px;
	font-weight: 100;
	text-transform: uppercase;
}

.steps img {
	width: 80px;
	margin: 20px 0 10px 0;
}

.lead {
	padding: 40px;
}

.testimonial {
	padding: 40px;
	background-color: var(--color-gray);
	font-family: Merriweather;
	font-size: 1.25rem;
	font-style: italic;
	line-height: 1.5;
}

.testimonial h3 {
	margin-bottom: 10px;
}

.testimonial p {
	text-indent: 50px;
}

.author {
	margin-top: 10px;
	font-weight: 700;
	text-align: right;
}

.callout {
	padding: 40px;
	background-color: var(--color-dark);
	color: #fff;
	text-align: center;
}

.btn {
	padding: 5px 20px;
	border: 1px solid var(--color-yellow);
	font-size: 1.25rem;
	font-weight: 300;
}

.btn-primary {
	background-color: var(--color-yellow);
	border-color: var(--color-yellow);
	color: var(--color-dark);
	transition: all 0.3s ease;
}

.btn-primary:hover {
	background-color: #fff;
	border-color: var(--color-gold);
	color: var(--color-dark);
}

@media (min-width: 992px) {

	.hero .logo {
		text-align: left;
	}

	.hero ul {
		margin-top: 100px;
	}
}
