/*
	Name: PPC Mode Home Page
	Version: 1.1
	Author: Chris Hufnagel
	Author Site: https://chrishufnagel.com
*/

/* # HTML5 Reset
---------------------------------------------------------------------------------------------------- */

/* ## Baseline Normalize
--------------------------------------------- */
/* normalize.css v3.0.1 | MIT License | git.io/normalize */

html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:0 0}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#333}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}

/* ## Box Sizing
--------------------------------------------- */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing:    border-box;
	box-sizing:         border-box;
}

/* ## Float Clearing
--------------------------------------------- */

.clearfix:before {
	content: " ";
	display: table;
}

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

/* # Defaults
---------------------------------------------------------------------------------------------------- */
body.updo {
	color: #333;
	font-family: 'Open Sans', sans-serif;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.65;
}

.updo p {
	margin: 0 0 20px 0;
}

.updo strong {
	font-weight: 700;
}

.updo a {
	color: #A142F4;
  text-decoration: underline !important;
}

a.nav-link {
    color: white!important;
}

.updo h1,
.updo h2,
.updo h3,
.updo h4,
.updo h5,
.updo h6 {
	font-weight: 700;
	line-height: 1.25;
	margin: 0 0 20px 0;
	padding: 0;
}

.updo li {
	padding-bottom: 10px;
}

.updo img {
	max-width: 100%;
	height: auto;
}

.updo .wrap {
	max-width: 960px;
	margin: 0 auto;
}

.updo .button {
	background-color: #CAFF42;
	border-radius: 5px;
	color: #333;
	display: inline-block;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 1px;
	padding: 10px 30px;
	text-decoration: none;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
	-webkit-transition: all 250ms;
 	-moz-transition: all 250ms;
 	transition: all 250ms;
}

.updo .button:hover {
	background-color: #d4fd6b;
	color: #222;
	-webkit-transform: translateY(-5px);
	-moz-transform: translateY(-5px);
	transform: translateY(-5px);
	box-shadow: 0 14px 28px rgba(0,0,0,0.25), 0 10px 10px rgba(0,0,0,0.22);
}

/* # Hero
---------------------------------------------------------------------------------------------------- */


.updo .nav {
	padding: 20px 0 150px;
}

.updo .nav-logo {
	float: left;
	text-align: left;
	width: 30%;
}

.updo .nav-items {
	float: left;
	text-align: right;
	width: 70%;
}

.updo ul.header-nav {
	padding: 0;
	margin: 0;
}

.updo .header-nav li {
	display: inline-block;
	list-style: none;
}

.updo .header-nav li a {
	color: #aaa;
	font-weight: 700;
	font-size: 18px;
	text-transform: uppercase;
	text-decoration: none;
	padding: 10px 20px;
}

.updo .header-nav li a:hover {
	color: #fff;
}

.updo .hero h1 {
	color: #fff;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.25;
	text-shadow: 0px 2px 4px rgba(0,0,0,0.50);
}

.updo .hero h3 {
	color: #fff;
	font-size: 32px;
	font-weight: 300;
	text-shadow: 0px 2px 4px rgba(0,0,0,0.50);

}

.updo .hero h3 span {
	color: #CAFF42;
	font-weight: 700;
}

.updo .hero-sub-title {
	margin: 0 auto 60px;
	max-width: 700px;
}

.updo .hero .disclaimer {
	text-align: center;
	color: #fff;
	font-weight: 300;
	margin-top: 50px;
}

/* # Social Proof
---------------------------------------------------------------------------------------------------- */

.updo .social-proof {
    background-color: rgba(0,0,0,0.75);
    color: #ccc;
    padding: 20px 0 10px;
    text-align: left;
    margin-top: -125px;
    border-bottom: 5px solid #000;
}

.updo .social-proof h3 {
	font-size: 24px;
	margin: 0;
}

.updo .social-proof .proof-left {
	float: left;
	width: 74%;
	padding-top: 8px;
}

.updo .social-proof .proof-right {
	float: right;
	width: 26%;
}

.updo .social-proof .proof-right img {
	border-radius: 50%;
	border: 2px solid #ccc;
	float: left;
	text-align: left;
	margin: 0 10px 10px 0;
}

.updo .social-proof .proof-right span {
	display: block;
	line-height: 1.25;
	font-size: 14px;
}

.updo .social-proof .proof-right span.proof-author {
	font-weight: 700;
	font-size: 16px;
	padding-top: 5px;
}

/* # Steps
---------------------------------------------------------------------------------------------------- */

.updo .steps {
	background: #000 url('images/carbon2.png')repeat top center;
	background-size: auto;
	padding: 80px 0 80px;
	text-align: center;
}

.updo .steps h2 {
	color: #fff;
	font-size: 40px;
	margin-bottom: 10px;
}

.updo .steps h3 {
	color: #CAFF42;
	font-size: 30px;
	margin-bottom: 50px;
}

.updo .step-col {
	background-color: #fff;
	border-radius: 5px;
	padding: 30px;
}

.updo .step-number {
	margin-bottom: 20px;
	max-width: 50px;
	opacity: 0.7;
}

.updo .step-col:hover > .step-number {
	opacity: 1;
}

.updo .step-col p {
	font-size: 14px;
	font-weight: 400;
}

.updo .step-col h3 {
	color: #272727;
	font-size: 24px;
	font-weight: 700;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.updo .step-icon {
	max-width: 100px;
	margin-bottom: 20px;
}

.updo .step-col-1 {
	float: left;
	width: 30%;
}

.updo .step-col-2 {
	float: left;
	margin-left: 5%;
	width: 30%;
}

.updo .step-col-3 {
	float: right;
	width: 30%;
}

.updo .steps .button {
	font-size: 16px;
	padding: 10px 20px;
}

/* # Story
---------------------------------------------------------------------------------------------------- */

.updo .story .wrap {
	max-width: 700px;
	padding: 60px 0;
}

.updo .story .title {
	font-size: 30px;
	text-align: center;
}

.updo .author {
	margin-bottom: 30px;
	text-align: center;
	display: block;
}

.updo .author .wrap {
	display: table;
	margin: 0 auto;
	padding: 0;
	max-width: none;
}

.updo .author span {
	display: table-cell;
	font-size: 20px;
	font-weight: 300;
	padding-top: 10px;
	text-transform: uppercase;
	vertical-align: middle;
}

.updo .author-avatar {
	border-radius: 50%;
	margin-right: 20px;
	max-width: 60px;
	float: none;
	display: table-cell;
}

.updo .story .button-wrap {
	text-align: center;
	margin-top: 40px;
}

/* # Questions
---------------------------------------------------------------------------------------------------- */

.updo .questions {
	background-color: #333;
	padding: 40px 0;
	color: #fff;
	text-align: left;
}

.updo .questions .question-left {
	float: left;
	width: 17%;
}

.updo .questions .question-left img {
	border-radius: 50%;
	border: 4px solid #fff;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
}

.updo .questions .question-right {
	float: right;
	width: 79%;
}

.updo .questions a {
	color: #fff;
}

/* # Footer
---------------------------------------------------------------------------------------------------- */

.updo .footer {
	background-color: #212121;
	color: #ccc;
	font-size: 14px;
	padding: 30px 0;
}

.updo .footer .footer-left {
	float: left;
	width: 30%;
}

.updo .footer .footer-right {
	float: left;
	width: 70%;
	text-align: right;
}

.updo ul.footer-nav {
	padding: 0;
	margin: 0;
}

.updo .footer-nav li {
	display: inline-block;
	list-style: none;
}

.updo .footer-nav a {
	color: #ccc;
	text-decoration: none;
}

.updo .footer-nav a:hover {
	color: #fff;
	text-decoration: underline;
}

.updo .footer .credits {
	font-size: 14px;
	margin-bottom: 0;
}

/* # Media Queries
---------------------------------------------------------------------------------------------------- */

@media only screen and (max-width: 1023px) {

	.updo .wrap {
		max-width: 100%;
		padding-left: 5%;
		padding-right: 5%;
	}

	.updo .hero h1 {
		font-size: 50px;
	}

	.updo .hero h3 {
		font-size: 22px;
	}

	.updo .hero {
		padding: 0 0 160px 0;
	}

	.updo .social-proof h3 {
		font-size: 20px;
	}

	.updo .social-proof .proof-left {
		width: 68%;
	}

	.updo .social-proof .proof-right {
		width: 30%;
	}

}

@media only screen and (max-width: 768px) {

	.updo .hero h1 {
		font-size: 40px;
	}

	.updo .button {
		font-size: 16px;
	}

	.updo .hero h3 {
		font-size: 20px;
	}

	.updo .steps {
		padding: 40px 0 20px 0;
	}

	.updo .step-col-1,
	.updo .step-col-2,
	.updo .step-col-3 {
		float: none;
		margin: 30px 0;
		width: 100%;
	}

	.updo .steps h2 {
		font-size: 36px;
	}

	.updo .steps h3 {
		font-size: 24px;
	}

	.updo .step-col p {
		font-size: 16px;
	}

	.updo .story .wrap {
		max-width: 100%;
		padding: 10% 8%;
	}

	.updo .author .wrap {
		padding: 0;
	}

	.updo .story .title {
		font-size: 26px;
	}

	.updo .author span {
		font-size: 16px;
		padding-top: 12px;
	}

	.updo .footer-nav li a {
		padding: 5px 10px;
	}

	.updo .social-proof .proof-left {
		width: 100%;
		text-align: center;
	}

	.updo .social-proof .proof-right {
		width: 100%;
		text-align: center;
	}

	.updo .social-proof .proof-right img {
		float: none;
		margin: 15px auto 5px auto;
	}

	.updo .questions .question-left,
	.updo .questions .question-right,
	.updo .footer .footer-left,
	.updo .footer .footer-right {
		width: 100%;
		text-align: center;
	}

	.updo .questions .question-left {
		margin-bottom: 20px;
	}

	.updo .nav {
		padding: 10px 0 40px;
	}

	.updo .nav-logo,
	.updo .nav-items {
		float: none;
		text-align: center;
		width: 100%;
	}

	.updo .nav-logo {
		margin-bottom: 10px;
	}

	.updo .hero-sub-title {
		margin: 0 auto 30px;
	}

	.updo .footer-left {
		margin-bottom: 10px;
	}

	.updo .social-proof {
		margin: 0;
		background-color: #111;
		border-bottom: 2px solid #000;
		border-top: 2px solid #000;
	}

	.updo .hero {
		padding: 0 0 60px;
	}

	.updo .header-nav li a {
		font-size: 16px;
		font-weight: 600;
		background-color: rgba(0,0,0,0.85);
		margin: 0 5px;
		border-radius: 12px;
		letter-spacing: 0.1em;
	}

	.updo .nav-logo img {
		width: 170px;
		opacity: 0.7;
		margin-bottom: 10px;
	}

}

@media only screen and (max-width: 500px) {

	.updo .wrap,
	.updo .story .wrap {
		padding-left: 5%;
		padding-right: 5%;
	}

	body {
		font-size: 16px;
	}

	.updo .hero {
		padding: 8% 0;
	}

	.updo .hero h1 {
		font-size: 30px;
	}

	.updo .steps h2,
	.updo .steps h3 {
		font-size: 24px;
		margin-bottom: 20px;
	}

	.updo .story .title {
		font-size: 24px;
	}

	.updo .nav {
		display: none;
	}

}
