@charset "UTF-8";
/* CSS Document */

/* LAYOUT */
body {
	font-family: "proxima-nova", sans-serif;
	font-weight:300;
	background-color: #FFF;
	margin: 0px;
	color: #333;
}
.container100percent {
	width: 100%;
	max-width: 100%; 
	margin: auto;
}
.grid_left { width: 20%; } /*200px*/
.grid_middle { width: 60%; } /*600px*/
.grid_right { width: 20%; } /*200px*/
.grid_half { width: 49%; }
.grid_index { width: 80%; } 
.grid_left,
.grid_middle,
.grid_right,
.grid_half,
.grid_index {
	float: left;
	display: block;
}
.alpha{margin-left:0px;}
.omega{margin-right:0px;}
.clear{clear:both;display:block;overflow:hidden;visibility:hidden;width:0;height:0}
.clearfix:after{clear:both;content:' ';display:block;font-size:0;line-height:0;visibility:hidden;width:0;height:0}
* html .clearfix,*:first-child+html .clearfix{zoom:1}

h1 {
	font-size: 40px !important;
	font-weight: 700;
	font-family: "freight-text-pro", serif;
	color: #333;
	line-height: 1.3em;
	padding-top: 30px;
}
h2 {
	font-family: "proxima-nova", sans-serif;	
	font-size: 1.7em;
	font-weight: 400;
	color: #FF86A1;
	line-height: 1.3em;
}
h3 {
	font-family: "proxima-nova", sans-serif;
	font-size: 1.5em;
	font-weight: 700;
	color: #333;
	line-height: 1.3em;
}
p, ul {
	font-family: "proxima-nova", sans-serif;
	font-weight: 300;
	line-height: 1.8em;
	font-size: 1.2em;
	color: #333;
	text-align: justify;
}
blockquote {
	text-align:center;
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 30px 0px;
	font-style: italic;
	color: #555;
	display:block;
	font-size: 1.6em;
	line-height: 1.4em;
	margin-left: 0px;
	width: 100%;
}
.padding30 {
	padding: 30px;
}
.desktop-hide {
	display: none;
}



/* BUTTON */
.button {
	padding: 15px 20px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px; /* future proofing */
	-khtml-border-radius: 4px;
	background-color: transparent;
	border: 1px solid #FFF;
	color: #FFF;
	text-transform: uppercase;
	font-family: "proxima-nova", sans-serif;	
	font-size: 14px;
	font-weight: 400;
	text-align:center;
	letter-spacing: 0.07em;
	width: 175px;
	display: inline-block;
	margin: 0 auto;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 10px;
	outline: none;
	transition: all 0.3s ease;
}
.button.main {
	background-color: #FFF;
	color: #656B6F;
	border: 1px solid #FFF;
}
.button.green { background: #5ED699; border: 1px solid #5ED699 }
.button.green:hover { background: #66E9A8; border: 1px solid #66E9A8 }


.btn-cool {
	font-family: "proxima-nova", sans-serif;	
	padding: 15px 20px 15px 20px;
	width: 200px;
	text-align:center;
	font-size: 16px;
	text-transform:uppercase;
	font-weight:400;
	letter-spacing: 0.05em;
	text-decoration:none;
	margin: 0 auto;
	margin-bottom: 20px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-radius: 4px; /* future proofing */
	-khtml-border-radius: 4px;
	outline: none;
	border: none;
	display: inline-block;
	transition: all 0.3s ease;
	cursor: pointer;
}
/* proper white */
.properwhite {
	color: #888;
	background: #FFF;
	border: none;
}
.properwhite:hover {
	color: #777;
	border: none;
	opacity: 0.8;
}
.properwhite:active {
	border: none;
	opacity: 0.3;
}
/* green */
.green {
	color: #FFF;
	background: #63C684;
	border: none;
}
.green:hover {
	color: #FFF;
	border: none;
	opacity: 0.8;
}
.green:active {
	border: none;
	opacity: 0.3;
}


/* LEFT SIDEBAR */


.book-left-bar {
	background-color: #485059;
	background: -moz-linear-gradient(45deg,  #282B30 0%, #485059 100%);
	background: -webkit-linear-gradient(45deg,  #282B30 0%,#485059 100%);
	background: linear-gradient(45deg,  #282B30 0%,#485059 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#282B30', endColorstr='#485059',GradientType=1 );
	height:100vh;
	position: fixed;
	left: 0;
}
.nav {
	color: #FFF;
	padding: 0px 30px 30px 30px;
}
.nav-title {
	font-size: 3em;
	font-weight:700;
	color: #FFF;
	text-align:left;
	font-family: 'Open Sans Condensed', sans-serif;
	line-height: 0.9em;
	display:block;
	text-transform:uppercase;
	margin-top: 30px;
	margin-bottom: 30px;
}
.nav-link {
	margin-bottom: 20px;
	text-transform: uppercase;
	color: #FFF;
	cursor: pointer;
	border-left: 3px solid #fff;
	padding: 10px 10px 10px 20px;
	font-size: 22px;
	opacity: 0.5;
	transition: all 0.3s ease;
}
.nav-link:hover {
	opacity: 0.6;
}
.nav-link a {
	color: #FFF;
	text-decoration: none;
}
.active-page {
	color: #FFF;
	opacity: 1;
	border-left: 9px solid #fff;
}


/* CONTENT */


.book-content {
	background-color: #FFF;
	height:100vh;
	color: #666;
	margin-left: 20%;
}
.book-content-inner {
	width: 70%;
	margin: 0 auto;
}
.tall-block {
	background-color: #000;
	height:100vh;
	text-align:center;
	margin-top: 140px;
	margin-bottom: 140px;
	background-image: url(../book/img/PartCover.jpg);
	background-repeat:no-repeat;
	background-size: cover;
}
.chapter-header {
	font-size: 6em;
	font-weight: 700;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #FFF;
	text-align:center;
	line-height: 1.1em;
	display:block;
	padding-top: 50px;
}
.chapter-subheader {
	font-size: 3em;
	font-weight: 400;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #FFF;
	text-align:center;
	line-height: 1.1em;
	display:block;
	padding-top: 150px;
}
.video-frame {
	background-color: #7D8790;
	width: 100%;
	text-align:center;
	margin-bottom: 60px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px; /* future proofing */
	-khtml-border-radius: 3px;
}
.video-wrapper {
	position: relative; 
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.video-wrapper iframe {
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.caption {
	font-size: 0.8em;
	font-style: italic;
	opacity:0.5;
	color: #FFF;
	display:block;
	margin-top: 20px;
}
.image-full {
	margin: 30px 0px;
	width: 100%;
}
.bookmark {
	background-image: url(/book/img/bookmark.png);
	background-position: center center;
	background-size: 20px;
	width: 48px;
	height: 48px;
	border: 1px solid #000;
	background-repeat: no-repeat;
	margin-left: -70px;
	margin-top: 0px;
	-moz-border-radius: 40px;
	-webkit-border-radius: 40px;
	border-radius: 40px; /* future proofing */
	-khtml-border-radius: 40px;
	opacity: 0.2;
	float:left;
}
.bookmark:hover {
	opacity: 0.6;
	cursor: pointer;
}
.bookmark:active {
	opacity:0.1;
}
.startreading-down { 
	width: 60px; 
	opacity: 0.7;
	animation: startreading 2s infinite; 
}
@-webkit-keyframes startreading {
  0%   { transform: scale(1); }
  50% { transform: scale(0.7); }
  100% { transform: scale(1); }
}
@-moz-keyframes startreading {
  0%   { transform: scale(1); }
  50% { transform: scale(0.7); }
  100% { transform: scale(1); }
}
@-o-keyframes startreading {
  0%   { transform: scale(1); }
  50% { transform: scale(0.7); }
  100% { transform: scale(1); }
}
@keyframes startreading {
  0%   { transform: scale(1); }
  50% { transform: scale(0.7); }
  100% { transform: scale(1); }
}
.startreading-down { 
	width: 60px; 
	opacity: 0.7;
	animation: startreading 2s infinite; 
}
.startreading-down:hover { opacity: 1 }





/* RIGHT SIDEBAR */
.book-right-bar {
	background-color: #FFF;
	height:100vh;
	text-align: center;
	color: #000;
	position: fixed;
	right: 0;
	border-left: 1px solid #eee;
}
.author-logo {
	width: 150px;
	margin: 0 auto;
	margin-top: 40px;
	margin-bottom: 30px;
	display:block;
}
.author-head {
	width: 100px;
	margin: 0 auto;
	margin-top: 30px;
	margin-bottom: 10px;
	display:block;
	border: 3px solid #CCC;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	border-radius: 100px; /* future proofing */
	-khtml-border-radius: 100px;
}
.author-name {	
	font-family: "proxima-nova", sans-serif;
	font-weight: 700;
	color: #FFF;
	opacity:0.7;
	line-height: 4em;
	font-size: 1.3em;
	text-transform: uppercase;
	display:block;
}
.author-blurb {
	padding-left: 40px;
	padding-right: 40px;
	margin-bottom: 50px;
	font-family: "proxima-nova", sans-serif;
	font-weight: 300;
	color: #485059;
	line-height: 1.4em;
	font-size: 1em;
	opacity: 0.6;
}



/* INDEX CONTENT */


.pattern-block {
	background-color: #000;
	height:100vh;
	background-image: url(../book/img/PartCover.jpg);
	background-repeat:no-repeat;
	background-size: cover;
}
.index-block {
	background-color: #000;
	height:100vh;
	text-align:center;
}
.black-block {
	background-color: #000;
	border: 10px solid #FFF;
	width: 85%;
	height:85vh;
	margin: 0 auto;
	margin-top: 40px;
}
.index-title {
	font-size: 4.5em;
	font-weight:700;
	color: #FFF;
	text-align:left;
	font-family: 'Open Sans Condensed', sans-serif;
	line-height: 0.9em;
	display:inline-block;
	padding-top: 40px;
}
.index-subtitle {
	font-size: 2.5em;
	font-weight:400;
	color: #FFF;
	text-align:center;
	font-family: 'Open Sans Condensed', sans-serif;
	line-height: 1em;
	display:inline-block;
	margin-top: 40px;
	opacity:0.8;
	margin-bottom: 10px;
}
.bullets {
	color: #fff;
	line-height: 1.9em;
	font-size: 1.4em;
	font-family: "proxima-nova", sans-serif;
	font-weight:300;
	text-align:center;
	display:block;
}


/* ACCESS TO BOOK */

.access-block {
	text-align:center;
	overflow:auto;
	width: 100%;
}
.blog-cta-title {
	font-size: 2em;
	font-weight: 400;
	color: #fff;
	font-family: "proxima-nova", sans-serif;
	display:block;
	line-height: 30px;
	margin: 0 0 30px 0;
}
.form-textbox {
	font-family: "proxima-nova", sans-serif;
	font-weight: 400;
	font-size: 1em;
	text-align:center;
	padding: 10px;
	color: #444;
	border: 3px solid #CCC;
	width: 300px;
	margin-bottom: 15px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	border-radius: 3px; /* future proofing */
	-khtml-border-radius: 3px;
	outline: none;
}
.form-textbox:focus {
	border: 3px solid #63C684;
}
.microcopy {
	font-size: 0.8em;
	color: #FFF;
	opacity: 0.4;
}
.btn-access {
	width: 326px;
}
.border-error {
	border: 7px solid #e74c3c;
}


/* MEDIA QUERIES */

/* Smaller desktop screens */
@media screen and (min-width:1600px) {
.index-title {
	margin-top: 0px !important;
}
.nav-title {
	font-size: 4em;
	
}
}

/* Mobile devices */
@media screen and (max-width: 640px) and (max-width: 1136px) {
.grid_left,
.grid_middle,
.grid_right,
.grid_half,
.grid_index {
	width: 100%;
}
.mobile-hide { display: none; }
.desktop-hide { display: block; }
.mobile-header {
	width: 100%;
	height: 50px;
	background-color: #676B73;
	position: fixed;
	top: 0px;
}
.mobile-header-text {
	color: #FFF;
	font-size: 1.2em;
	font-weight: 700;
	float: left;
	padding-left: 20px;
	padding-top: 13px;
}
.shownav {
	background-image:url(/img/layout/shownav.png);
	background-size: 25px 25px;
	background-repeat: no-repeat;
	background-position: left center;
	float:right;
    width: 40px;
	height: 50px;
}
.shownav:hover { opacity: 1;}
.book-right-bar { position: relative;}
.book-content { margin-left: 0px; }
.book-content-inner { width: 90%; }
.tall-block { margin-bottom: 60px !important; }
.bookmark {
	margin-left: 0;
	margin-right: 10px;
	margin-top: -5px;
}
.chapter-header { font-size: 3.5em; }
.chapter-subheader { font-size: 2.8em !important; }
.index-block { height: 100%;}
.black-block {
	height:100%;
	margin-top: 30px;
	margin-bottom: 30px;
}
.form-textbox { width:90%;}
.btn-cta-pink { width: 100%;}
.index-title { font-size: 3em; }
.index-subtitle { font-size: 2em; }
}