/* ==========================================================================
    
    Index:
    
    1. BASE STYLES
      - Variables and Macros
      - Base
      - Typography
        
    2. COS STRUCTURE
      - Content Structure
      - Helpers
      - Cards
      - Forms
      - Dropdowns
      - Switch
      - Buttons
      - Carousel
      - Header
      - Footer
    
    3. Pages
      - Landing Page
      
    4. MEDIA QUERIES
    
   ========================================================================== */



/* ==========================================================================
   #Variables and macros
   ========================================================================== */

















                                            







 

 








/* ==========================================================================
   #Base
   ========================================================================== */

html {
    box-sizing: border-box;
    color: #383838;
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    line-height: 1.5;
}

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

body {
    margin: 0;
    padding-top: 60px;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block;
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

a {
    background-color: transparent;
    color: #48b1e1;
    cursor: pointer;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

a:hover {
    color: #48b1e1;
    text-decoration: underline;
}

a:active,
a:focus {
    color: #48b1e1;
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

dfn {
    font-style: italic;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img,
video {
    border: 0;
    max-width: 100%;
    height: auto;
}

svg:not(:root) {
    display: inline-block;
    overflow: hidden;
    stroke-width: 0;
}

figure {
    margin: 1em 40px;
}

hr {
    box-sizing: content-box;
    height: 0;
}

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="search"] {
    -webkit-appearance: textfield;
    box-sizing: border-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

td,
th {
    padding: 0;
}

.valign-wrapper {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
         -ms-flex-align: center;
            align-items: center;
}

.valign-wrapper .valign {
    display: block;
}

ul {
    list-style-type: none;
    padding: 0;
}

ul li {
    list-style-type: none;
}

table, th, td {
    border: none;
}

table {
    width: 100%;
    display: table;
}

table.bordered > thead > tr,
table.bordered > tbody > tr {
    border-bottom: 1px solid #d0d0d0;
}

table.striped > tbody > tr:nth-child(odd) {
    background-color: #f2f2f2;
}

table.striped > tbody > tr > td {
    border-radius: 0;
}

table.highlight > tbody > tr {
    transition: background-color .25s ease;
}

table.highlight > tbody > tr:hover {
    background-color: #f2f2f2;
}

table.centered thead tr th, table.centered tbody tr td {
    text-align: center;
}

thead {
    border-bottom: 1px solid #d0d0d0;
}

td, th {
    padding: 15px 5px;
    display: table-cell;
    text-align: left;
    vertical-align: middle;
    border-radius: 2px;
}
   
   
/* ==========================================================================
   #Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.3;
}

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
    font-weight: inherit;
}

h1 {
    font: 400 4em/100% 'Amatic SC', cursive;
    margin: 2.1rem 0 1.68rem 0;
    text-transform: capitalize;
}

h2 {
    font: 400 3em/100% 'Amatic SC', cursive;
    line-height: 130%;
    margin: 1.78rem 0 1.424rem 0;
}

h3 {
    font-size: 2.5em;
    line-height: 130%;
    margin: 1.46rem 0 1.168rem 0;
}

h4 {
    font-size: 2em;
    font-weight: 700;
    line-height: 130%;
    margin: 1.14rem 0 0.912rem 0;
}

h5 {
    font-size: 1.5em;
    line-height: 130%;
    margin: 0.82rem 0 0.656rem 0;
}

h6 {
    font-size: 1.125em;
    line-height: 130%;
    margin: 0.5rem 0 0.4rem 0;
}

em {
    font-style: italic;
}

b,
strong {
    font-weight: 700;
}

small {
    font-size: 75%;
}

p {
    margin: 0 0 1.5em;
}

p.footnote {
    font-size: 0.875em;
    margin: 0;
}

.section-title {
    margin-bottom: 20px;
    text-align: center;
}

.section-title h1 {
    margin-bottom: 10px;
}

.section-title h2 {
    margin: 0 0 10px;
}

.section-title h5,
.section-title h6 {
    color: #b5b5b5;
    font-family: 'Roboto', sans-serif;
    margin-top: 0;
}

.green-cta-section .section-title h6 {
    color: #f7f7f7;
}



/* ==========================================================================
   #Content Structure
   ========================================================================== */

.container {
    float: none !important;
    margin: 0 auto !important;
    max-width: 1280px;
    padding: 0 10px;
    margin: 0 auto;
    max-width: 1280px;
    width: 90%;
}

.container .row {
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.section {
    padding: 60px 0;
}

.section.no-pad {
    padding: 0;
}

.section.no-pad-bot {
    padding-bottom: 0;
}

.section.no-pad-top {
    padding-top: 0;
}

.row {
    margin-left: auto;
    margin-right: auto;
}

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

.row .col {
    float: left;
    box-sizing: border-box;
    padding: 0 0.75rem;
}

.row .col[class*="push-"], .row .col[class*="pull-"] {
    position: relative;
}

.row .col.s1,
.row .col.s2,
.row .col.s3,
.row .col.s4,
.row .col.s5,
.row .col.s6,
.row .col.s7,
.row .col.s8,
.row .col.s9,
.row .col.s10,
.row .col.s11,
.row .col.s12 {
    margin-left: auto;
    left: auto;
    right: auto;    
}

.row .col.s1 {
    width: 8.3333333333%;
}

.row .col.s2 {
    width: 16.6666666667%;
}

.row .col.s3 {
    width: 25%;
}

.row .col.s4 {
    width: 33.3333333333%;
}

.row .col.s5 {
    width: 41.6666666667%;
}

.row .col.s6 {
    width: 50%;
}

.row .col.s7 {
    width: 58.3333333333%;
}

.row .col.s8 {
    width: 66.6666666667%;
}

.row .col.s9 {
    width: 75%;
}

.row .col.s10 {
    width: 83.3333333333%;
}

.row .col.s11 {
    width: 91.6666666667%;
}

.row .col.s12 {
    width: 100%;
}

.row .col.offset-s1 {
    margin-left: 8.3333333333%;
}

.row .col.pull-s1 {
    right: 8.3333333333%;
}

.row .col.push-s1 {
    left: 8.3333333333%;
}

.row .col.offset-s2 {
    margin-left: 16.6666666667%;
}

.row .col.pull-s2 {
    right: 16.6666666667%;
}

.row .col.push-s2 {
    left: 16.6666666667%;
}

.row .col.offset-s3 {
    margin-left: 25%;
}

.row .col.pull-s3 {
    right: 25%;
}

.row .col.push-s3 {
    left: 25%;
}

.row .col.offset-s4 {
    margin-left: 33.3333333333%;
}

.row .col.pull-s4 {
    right: 33.3333333333%;
}

.row .col.push-s4 {
    left: 33.3333333333%;
}

.row .col.offset-s5 {
    margin-left: 41.6666666667%;
}

.row .col.pull-s5 {
    right: 41.6666666667%;
}

.row .col.push-s5 {
    left: 41.6666666667%;
}

.row .col.offset-s6 {
    margin-left: 50%;
}

.row .col.pull-s6 {
    right: 50%;
}

.row .col.push-s6 {
    left: 50%;
}

.row .col.offset-s7 {
    margin-left: 58.3333333333%;
}

.row .col.pull-s7 {
    right: 58.3333333333%;
}

.row .col.push-s7 {
    left: 58.3333333333%;
}

.row .col.offset-s8 {
    margin-left: 66.6666666667%;
}

.row .col.pull-s8 {
    right: 66.6666666667%;
}

.row .col.push-s8 {
    left: 66.6666666667%;
}

.row .col.offset-s9 {
    margin-left: 75%;
}

.row .col.pull-s9 {
    right: 75%;
}

.row .col.push-s9 {
    left: 75%;
}

.row .col.offset-s10 {
    margin-left: 83.3333333333%;
}

.row .col.pull-s10 {
    right: 83.3333333333%;
}

.row .col.push-s10 {
    left: 83.3333333333%;
}

.row .col.offset-s11 {
    margin-left: 91.6666666667%;
}

.row .col.pull-s11 {
    right: 91.6666666667%;
}

.row .col.push-s11 {
    left: 91.6666666667%;
}

.row .col.offset-s12 {
    margin-left: 100%;
}

.row .col.pull-s12 {
    right: 100%;
}

.row .col.push-s12 {
    left: 100%;
}


/* ==========================================================================
   #Helpers
   ========================================================================== */

.clearfix {
    clear: both;
}

.z-depth-0 {
    box-shadow: none !important;
}

.z-depth-1, nav, .card-panel, .card, .toast, .btn, .btn-large, .btn-floating, .dropdown-content, .collapsible, .side-nav, .faq-list, .team-message, .blog-listing-post, input[type=submit], .ebook-screenshots img {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.z-depth-1-half, .btn:hover, .btn-large:hover, .btn-floating:hover, input[type=submit]:hover, .ebook-screenshots img:hover {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18), 0 4px 15px 0 rgba(0, 0, 0, 0.15);
}

.z-depth-2 {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-3 {
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

.z-depth-4, .modal {
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.z-depth-5 {
    box-shadow: 0 27px 24px 0 rgba(0, 0, 0, 0.2), 0 40px 77px 0 rgba(0, 0, 0, 0.22);
}

.hoverable {
    transition: box-shadow .25s;
    box-shadow: 0;
}

.hoverable:hover {
    transition: box-shadow .25s;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.divider {
    height: 1px;
    overflow: hidden;
    background-color: #e0e0e0;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hide {
    display: none !important;
}

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

.right-align {
    text-align: right;
}

.center, .center-align {
    text-align: center;
}

.left {
    float: left !important;
}

.right {
    float: right !important;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.truncate {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.no-padding {
    padding: 0 !important;
}

.bg-lightgray {
    background-color: #f7f7f7;
}

.bg-darkgray {
    background-color: #383838;
    color: white;
}

.bg-white {
    background-color: white;
}

.green-cta-section {
    background: #7Cae29 url('//cdn2.hubspot.net/hubfs/513577/v2/home/post-planner-green-cta.jpg') no-repeat center center;
    color: white;
    padding: 50px 0;
    text-align: center;
}

.green-cta-section .hero-img {
    margin-bottom: 40px;
}

.overlap-padding {
    padding-bottom: 70px;
}

.overlap {
    margin-top: -60px !important;
}

.pt10 { padding-top:10px;}
.pt30 { padding-top:30px;}
.pt50 { padding-top:50px;}
.pt70 { padding-top:70px;}

.pb10 { padding-bottom:10px;}
.pb30 { padding-bottom:30px;}
.pb50 { padding-bottom:50px;}
.pb70 { padding-bottom:70px;}

.mt10 { margin-top:10px;}
.mt30 { margin-top:30px;}
.mt50 { margin-top:50px;}
.mt70 { margin-top:70px;}

.mb10 { margin-bottom:10px;}
.mb30 { margin-bottom:30px;}
.mb50 { margin-bottom:50px;}
.mb70 { margin-bottom:70px;}

.waves-effect {
    position: relative;
    cursor: pointer;
    display: inline-block;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    vertical-align: middle;
    z-index: 1;
    will-change: opacity, transform;
    transition: all .3s ease-out;
}

.waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    margin-left: -10px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: all 0.7s ease-out;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-transform: scale(0);
          transform: scale(0);
    pointer-events: none;
}

.waves-effect.waves-light .waves-ripple {
    background-color: rgba(255, 255, 255, 0.45);
}

.waves-effect input[type="button"], .waves-effect input[type="reset"], .waves-effect input[type="submit"] {
    border: 0;
    font-style: normal;
    font-size: inherit;
    text-transform: inherit;
    background: none;
}

.waves-notransition {
    transition: none !important;
}

.waves-circle {
    -webkit-transform: translateZ(0);
          transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%);
}

.waves-input-wrapper {
    border-radius: 0.2em;
    vertical-align: bottom;
}

.waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
}

.waves-circle {
    text-align: center;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5em;
    border-radius: 50%;
    -webkit-mask-image: none;
}

.waves-block {
    display: block;
}

a.waves-effect .waves-ripple {
    z-index: -1;
}

.collapsible {
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
    border-left: 1px solid #ddd;
    margin: 0.5rem 0 1rem 0;
}

.collapsible-header {
    display: block;
    cursor: pointer;
    min-height: 3rem;
    line-height: 3rem;
    padding: 0 1rem;
    background-color: #fff;
    border-bottom: 1px solid #ddd;
}

.collapsible-body {
    display: none;
    border-bottom: 1px solid #ddd;
    box-sizing: border-box;
}

.collapsible-body p {
    margin: 0;
    padding: 2rem;
}

.hero-img {
    display: block;
    margin: 0 auto;
}

.materialboxed {
    display: block;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
    position: relative;
    transition: opacity .4s;
}

.materialboxed:hover {
    will-change: left, top, width, height;
}

.materialboxed.active {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

#materialbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(56, 56, 56, 0.8);
    z-index: 1000;
    will-change: opacity;
}


/* ==========================================================================
   #Cards
   ========================================================================== */

.card-panel {
    transition: box-shadow .25s;
    padding: 20px;
    margin: 0.5rem 0 1rem 0;
    border-radius: 2px;
    background-color: #fff;
}

.card {
    position: relative;
    margin: 0.5rem 0 1rem 0;
    background-color: #fff;
    transition: box-shadow .25s;
    border-radius: 2px;
}

.card .card-title {
    font-size: 24px;
    font-weight: 400;
}

.card .card-title.activator {
    cursor: pointer;
}

.card.small, .card.medium, .card.large {
    position: relative;
}

.card.small .card-image, .card.medium .card-image, .card.large .card-image {
      max-height: 60%;
      overflow: hidden;
}

.card.small .card-content, .card.medium .card-content, .card.large .card-content {
      max-height: 40%;
      overflow: hidden;
}

.card.small .card-action, .card.medium .card-action, .card.large .card-action {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.card.small {
    height: 300px;
}

.card.medium {
    height: 400px;
}

.card.large {
    height: 500px;
}

.card .card-image {
    position: relative;
}

.card .card-image img {
    display: block;
    border-radius: 2px 2px 0 0;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100%;
}

.card .card-image .card-title {
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
}

.card .card-content {
    padding: 20px;
    border-radius: 0 0 2px 2px;
}

.card .card-content p {
    margin: 0;
    color: inherit;
}

.card .card-content .card-title {
    line-height: 48px;
}

.card .card-action {
    position: relative;
    background-color: inherit;
    border-top: 1px solid rgba(160, 160, 160, 0.2);
    padding: 20px;
    z-index: 2;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-floating) {
    color: #ffab40;
    margin-right: 20px;
    transition: color .3s ease;
    text-transform: uppercase;
}

.card .card-action a:not(.btn):not(.btn-large):not(.btn-floating):hover {
    color: #ffd8a6;
}

.card .card-action + .card-reveal {
    z-index: 1;
    padding-bottom: 64px;
}

.card .card-reveal {
    padding: 20px;
    position: absolute;
    background-color: #fff;
    width: 100%;
    overflow-y: auto;
    top: 100%;
    height: 100%;
    z-index: 3;
    display: none;
}

.card .card-reveal .card-title {
    cursor: pointer;
    display: block;
}


/* ==========================================================================
   #Forms
   ========================================================================== */

.hs-form fieldset {
    max-width: none !important;
}

.hs-form-field {
    margin-bottom: 3rem;
}

.hs-form-field > label {
    display: none;
}

.hs-form-field > label.active {
    top: 0;
    font-size: 1rem;
}

.hs-input.error {
    border-color: #ef7408 !important;
    box-shadow: none;
}

.hs-error-msgs {
    margin: 0;
    position: absolute;
}

.hs-error-msgs label {
    display:inline-block;
    color: #ef7408;
    font-size: .5rem;
}

.hs-form input[type="text"],
.hs-form input[type="password"], 
.hs-form input[type="datetime"], 
.hs-form input[type="datetime-local"], 
.hs-form input[type="date"], 
.hs-form input[type="month"], 
.hs-form input[type="time"], 
.hs-form input[type="week"], 
.hs-form input[type="number"], 
.hs-form input[type="email"], 
.hs-form input[type="url"], 
.hs-form input[type="search"], 
.hs-form input[type="tel"], 
.hs-form input[type="color"],
.hs-form input[type="file"] {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #b5b5b5;
    border-radius: 0;
    box-shadow: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    height: 2rem;
    margin: 0;
    outline: none;
    padding: 0; 
    width: 100% !important;
     
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  -ms-transition: all 0.3s;
  transition: all 0.3s;
;
}

.hs_message > div {
    line-height: 0;
}

.hs-form textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #b5b5b5;
    border-radius: 0;
    box-shadow: none;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;    
    height: 3rem;    
    line-height: 1.5;
    margin: 0;
    outline: 0;
    padding: 0;
    resize: none;
    width: 100% !important;
     
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
;   
}

.hs-form input[type="text"]:focus,
.hs-form input[type="password"]:focus, 
.hs-form input[type="datetime"]:focus, 
.hs-form input[type="datetime-local"]:focus, 
.hs-form input[type="date"]:focus, 
.hs-form input[type="month"]:focus, 
.hs-form input[type="time"]:focus, 
.hs-form input[type="week"]:focus, 
.hs-form input[type="number"]:focus, 
.hs-form input[type="email"]:focus, 
.hs-form input[type="url"]:focus, 
.hs-form input[type="search"]:focus, 
.hs-form input[type="tel"]:focus, 
.hs-form input[type="color"]:focus,
.hs-form input[type="file"]:focus,
.hs-form textarea:focus,
.hs-form select:focus {
    border-bottom: 1px solid #81b32e;
}

.hs-form select {
    background: transparent url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz48IURPQ1RZUEUgc3ZnIFBVQkxJQyAiLS8vVzNDLy9EVEQgU1ZHIDEuMS8vRU4iICJodHRwOi8vd3d3LnczLm9yZy9HcmFwaGljcy9TVkcvMS4xL0RURC9zdmcxMS5kdGQiPjxzdmcgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMTYiIGhlaWdodD0iMTYiIHZpZXdCb3g9IjAgMCAyMCAyMCI+PHBhdGggZmlsbD0iIzM4MzgzOCIgZD0iTTUuODMzIDguMzMzbDQuMTY3IDQuMTY3IDQuMTY3LTQuMTY3eiI+PC9wYXRoPjwvc3ZnPg==) no-repeat right center;
    border: none;
    border-bottom: 1px solid #b5b5b5;
    border-radius: 0;
    color: #383838;
    height: 2rem;
    padding: 0;
    width: 100% !important;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.hs-form select:focus {
    outline: none;
}

.hs_submit {
    text-align: center;
}

.hs-form input[type="submit"] {
    background-color: #ef7408;
    border: none;
    border-radius: 2px;
    color: white;
    cursor: pointer;
    display: inline-block;
    font-family: 'Roboto', sans-serif;
    height: 54px;
    letter-spacing: .5px;
    line-height: 54px;
    outline: 0;
    overflow: visible;
    padding: 0 2rem;
    text-transform: uppercase;
    vertical-align: middle;    
    text-decoration: none;
    text-align: center;
     
  -webkit-transition: .2s ease-out;
  -moz-transition: .2s ease-out;
  -o-transition: .2s ease-out;
  -ms-transition: .2s ease-out;
  transition: .2s ease-out;
;
    -webkit-appearance: button;
    -webkit-tap-highlight-color: transparent;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

::-webkit-input-placeholder { color: #383838; }
:-moz-placeholder { color: #383838; opacity: 1; }
::-moz-placeholder { color: #383838; opacity: 1; }
:-ms-input-placeholder { color: #383838; }

:focus::-webkit-input-placeholder { color: transparent; }
:focus:-moz-placeholder { color: transparent; }
:focus::-moz-placeholder { color: transparent; }
:focus:-ms-input-placeholder { color: transparent; } 

/* Checkboxes */
.hs-form-booleancheckbox [type="checkbox"]:not(:checked),
.hs-form-booleancheckbox [type="checkbox"]:checked {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.hs-form-booleancheckbox [type="checkbox"] + span:not(.hs-form-required) {
    cursor: pointer;
    display: inline-block;
    font-size: 0.75rem;
    height: 20px;
    line-height: 20px;
    padding-left: 30px;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.hs-form-booleancheckbox [type="checkbox"] + span:not(.hs-form-required):before {
    border: 2px solid #b5b5b5;
    border-radius: 1px;
    content: '';
    height: 18px;
    left: 0;
    margin-top: 3px;
    position: absolute;
    top: 0;
    width: 18px;
    z-index: 0;
     
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
;
}

.hs-form-booleancheckbox [type="checkbox"]:checked + span:not(.hs-form-required):before {
    border-bottom: 2px solid #81b32e;
    border-left: 2px solid transparent;
    border-right: 2px solid #81b32e;
    border-top: 2px solid transparent;
    height: 22px;
    left: -5px;
    top: -4px;
    width: 12px;
    -webkit-transform: rotate(40deg);
            transform: rotate(40deg);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
}

.hs-form-booleancheckbox [type="checkbox"] + span:not(.hs-form-required):after {
    border-radius: 2px;
}

.hs-form-booleancheckbox [type="checkbox"] + span:not(.hs-form-required):before,
.hs-form-booleancheckbox [type="checkbox"] + span:not(.hs-form-required):after {
    content: '';
    left: 0;
    position: absolute;
     
  -webkit-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  -moz-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  -o-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  -ms-transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
  transition: border .25s, background-color .25s, width .20s .1s, height .20s .1s, top .20s .1s, left .20s .1s;
;
    z-index: 1;
}

.hs-form-booleancheckbox [type="checkbox"]:not(:checked) + span:not(.hs-form-required):before {
    border: 3px solid transparent;
    height: 0;
    left: 6px;
    top: 10px;
    width: 0;
    -webkit-transform: rotateZ(37deg);
            transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
}

.hs-form-booleancheckbox [type="checkbox"]:not(:checked) + span:not(.hs-form-required):after {
    background-color: transparent;
    border: 2px solid #b5b5b5;
    height: 20px;
    top: 0px;
    width: 20px;
    z-index: 0;
}

.hs-form-booleancheckbox [type="checkbox"]:checked + span:not(.hs-form-required):before {
    border-bottom: 2px solid white;
    border-left: 2px solid transparent;
    border-right: 2px solid white;
    border-top: 2px solid transparent;
    height: 13px;
    left: 1px;
    top: 0;
    width: 8px;
    -webkit-transform: rotateZ(37deg);
            transform: rotateZ(37deg);
    -webkit-transform-origin: 100% 100%;
            transform-origin: 100% 100%;
}

.hs-form-booleancheckbox [type="checkbox"]:checked + span:not(.hs-form-required):after {
    background-color: #81b32e;
    border: 2px solid #81b32e;
    height: 20px;
    top: 0;
    width: 20px;
    z-index: 0;
}

.hs-form-booleancheckbox .hs-form-required {
    display: none;
}

.main-signup-form {
    text-align: center;
}

.main-signup-form .hs-form-field {
    margin-bottom: 1.5rem;
}

.main-signup-form .hs-form input[type=email] {
    background-color: white !important;
    border-bottom-color: white;
    border-radius: 2px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    height: 54px;
    line-height: 54px;
    padding: 0 1em;
    -webkit-appearance: none;
}

.main-signup-form .hs-form input[type=email]::-webkit-input-placeholder { color: #a1a1a1; }
.main-signup-form .hs-form input[type=email]:-moz-placeholder { color: #a1a1a1; opacity: 1; }
.main-signup-form .hs-form input[type=email]::-moz-placeholder { color: #a1a1a1; opacity: 1; }
.main-signup-form .hs-form input[type=email]:-ms-input-placeholder { color: #a1a1a1; }

.main-signup-form .hs-form input[type=email]:focus::-webkit-input-placeholder { color: transparent; }
.main-signup-form .hs-form input[type=email]:focus:-moz-placeholder { color: transparent; }
.main-signup-form .hs-form input[type=email]:focus::-moz-placeholder { color: transparent; }
.main-signup-form .hs-form input[type=email]:focus:-ms-input-placeholder { color: transparent; } 

.main-signup-form .hs-form input[type=email]:focus {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    outline: none;
}

.main-signup-form input[type=email].error {
    border-color: #ef7408 !important;
}

.main-signup-form .hs_submit {
    vertical-align: top;
}

.main-signup-form input[type=submit] {
    background: #ef7408;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    color: white;
    margin-bottom: 20px;
    padding: 0 16px;
    text-shadow: none;
    text-transform: uppercase;
    min-width: 100%;
}

.main-signup-form input[type=submit]:hover {
    background-color: #ff6f00;
    color: white;
}

.main-signup-form .submitted-message {
    color: #81b32e;
    margin-bottom: 1.5rem;
}

.hs-form .inputs-list {
    margin: 0;
}

.legal-consent-container {
  	color: #b5b5b5;
  	font-size: 0.75rem;
  	margin-bottom: 1.5rem;
  	text-align: left;
}


/* ==========================================================================
   #Dropdown
   ========================================================================== */

.dropdown-content {
    background-color: #fff;
    margin: 0;
    display: none;
    min-width: 100px;
    max-height: 650px;
    overflow-y: auto;
    opacity: 0;
    position: absolute;
    z-index: 999;
    will-change: width, height;
}

.dropdown-content li {
    clear: both;
    color: rgba(0, 0, 0, 0.87);
    cursor: pointer;
    min-height: 50px;
    line-height: 1.5rem;
    width: 100%;
    text-align: left;
    text-transform: none;
}

.dropdown-content li:hover, .dropdown-content li.active, .dropdown-content li.selected {
    background-color: rgba(143, 91, 166, 0.1);
}

.dropdown-content li.active.selected {
    background-color: rgba(143, 91, 166, 0.1);
}

.dropdown-content li.divider {
    min-height: 0;
    height: 1px;
}

.dropdown-content li > a {
    font-size: 0.875rem;
    color: #383838;
    display: block;
    line-height: 22px;
    padding: 14px 16px;
    text-transform: uppercase;
}

.dropdown-content li > a:hover {
    color: #383838;
    text-decoration: none;
}



/* ==========================================================================
   #Switch
   ========================================================================== */
   
.switch,
.switch * {
    -webkit-user-select: none;
    -moz-user-select: none;
    -khtml-user-select: none;
    -ms-user-select: none;
}

.switch label {
    cursor: pointer;
}

.switch label input[type=checkbox] {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch label input[type=checkbox]:checked + .lever {
    background-color: #84c7c1;
}

.switch label input[type=checkbox]:checked + .lever:after {
    background-color: #26a69a;
    left: 24px;
}

.switch label .lever {
    content: "";
    display: inline-block;
    position: relative;
    width: 40px;
    height: 15px;
    background-color: #818181;
    border-radius: 15px;
    margin-right: 10px;
    transition: background 0.3s ease;
    vertical-align: middle;
    margin: 0 16px;
}

.switch label .lever:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 21px;
    height: 21px;
    background-color: #f1f1f1;
    border-radius: 21px;
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4);
    left: -5px;
    top: -3px;
    transition: left 0.3s ease, background .3s ease, box-shadow 0.1s ease;
}

input[type=checkbox]:checked:not(:disabled) ~ .lever:active::after,
input[type=checkbox]:checked:not(:disabled).tabbed:focus ~ .lever::after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(38, 166, 154, 0.1);
}

input[type=checkbox]:not(:disabled) ~ .lever:active:after,
input[type=checkbox]:not(:disabled).tabbed:focus ~ .lever::after {
    box-shadow: 0 1px 3px 1px rgba(0, 0, 0, 0.4), 0 0 0 15px rgba(0, 0, 0, 0.08);
}

.switch input[type=checkbox][disabled] + .lever {
    cursor: default;
}

.switch label input[type=checkbox][disabled] + .lever:after,
.switch label input[type=checkbox][disabled]:checked + .lever:after {
    background-color: #bdbdbd;
}


/* ==========================================================================
   #Buttons
   ========================================================================== */

.btn, .btn-large {
    border: none;
    border-radius: 2px;
    background-color: #ef7408;
    color: white;
    display: inline-block;
    height: 36px;
    line-height: 36px;
    outline: 0;
    padding: 0 2rem;
    text-transform: uppercase;
    vertical-align: middle;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    text-align: center;
    letter-spacing: .5px;
    transition: .2s ease-out;
    cursor: pointer;
}

.btn-large {
    height: 54px;
    line-height: 54px;
}

.btn-large:hover, .btn:hover {
    background-color: #ff6f00;
    color: white;
    text-decoration: none;
}

.btn-large:focus, .btn:focus {
    background-color: #ef7408;
    color: white;
}


/* ==========================================================================
   #Carousel
   ========================================================================== */

.pp-carousel-wrap .owl-item {
    padding: 0 5px;
}

.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    
    100% {
        opacity: 0;
    }
}

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}
.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel.owl-loaded {
    display: block;
}
.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}
.owl-carousel.owl-hidden {
    opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
    display: none;
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;  
}

.owl-carousel .owl-item > div {
    opacity: 0.4;
}

.owl-carousel .owl-item.center > div {
    opacity: 1;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}
.owl-carousel.owl-rtl {
    direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
    transform-style: preserve-3d;
}
 
.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}
.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}

.owl-controls {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
}

.owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    margin: 5px 7px;
    background: white;
    border: 2px solid #dfd9e4;
    display: block;
    -webkit-backface-visibility: visible;
     
  -webkit-transition: opacity 200ms ease;
  -moz-transition: opacity 200ms ease;
  -o-transition: opacity 200ms ease;
  -ms-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
;
     
  -webkit-border-radius: 50%;
  -moz-border-radius:    50%;
  -o-border-radius:      50%;
  border-radius:         50%;
;
}

.owl-dots .owl-dot.active span,
.owl-dots .owl-dot:hover span {
    background: #dfd9e4;
}


/* ==========================================================================
   #Header
   ========================================================================== */

.main-header {
    background: rgba(255, 255, 255, 0.94);
    font-family: 'Roboto', sans-serif;
    margin: 0;
    left: 0;
    position:fixed;
    right: 0;
    top: 0;
    z-index: 3;  
}

.main-header .header-elements {
    margin-bottom: 0;
    padding: 0;
    min-height: 60px;
}

.main-header .logo {
    font-size: 0;
}

.pp-logo-header {
    display: inline-block;
    height: 47px;
    margin-left: -6px;
    width: 180px;
}

.pp-logo-text {
    display: none;
}

.main-header .nav {
    text-align:right;
    font-size: 0;
    padding:0 !important;
}

.main-header .nav .hamburger-menu {
    display: inline-block;
}

#main-nav {
    min-width: 150px;
}

.header-cta-v2 {
    text-align: center;
}

.header-cta-v2 .btn {
    font-size: 0.75em;
    padding: 0 1.5em;
}

.svg-menu {
    display: inline-block;
    fill: #b5b5b5;
    height: 48px;
    stroke: #b5b5b5;
    stroke-width: 0;
    width: 48px;
}


/* ==========================================================================
   #Footer
   ========================================================================== */

.prefooter {
    background: #f7f7f7;
    color: #b5b5b5;
    padding-bottom: 0 !important;
    text-align: center;
}

.main-footer {
    background-color: #f7f7f7;
    color: #b5b5b5;
    font-family: 'Roboto', sans-serif;
    padding: 80px 0 25px;
    text-align: center;
}

.no-prefooter {
    padding-top: 80px;
}

.footer-social {
    margin: 0 0 40px;
}

.footer-social li {
    display: inline-block;
    margin: 0 4px;
}

.footer-social li a {
    display: inline-block;
    height: 28px;
    width: 28px; 
}

.svg-social {
    display: inline-block;
    fill: #b5b5b5;
    height: 28px;
    stroke: #b5b5b5;
    stroke-width: 0;
    width: 28px;
     
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
;
}

.svg-social:hover {
    fill: #81b32e;
    stroke: #81b32e;
    stroke-width: 0;
}

.footer-nav > li {
    display: inline-block;
    margin: 0 0 10px 10px;
}

.footer-nav > li a {
    color: #b5b5b5;
    font-size: 0.875em;
    text-decoration: none;
    text-transform: uppercase;
     
  -webkit-transition: .3s ease-in-out;
  -moz-transition: .3s ease-in-out;
  -o-transition: .3s ease-in-out;
  -ms-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
;
}

.footer-nav > li a:hover {
    color: #81b32e;
}

.footer-nav > li > a:after {
    content: '•';
    margin-left: 15px;
}

.footer-nav > li:last-child > a:after {
    display: none;
}

.footer-nav > li a:hover:after {
    color: #b5b5b5;
}

.footer-dropdown {
    display: inline-block;
    padding-right: 20px;
    position: relative;
}

.footer-dropdown svg {
    fill: #b5b5b5;
    height: 16px;
    position: absolute;
    right: 0;
    top: 2px;
    width: 16px;
}

.footer-subnav {
    width: auto !important;
}

.footer-subnav.dropdown-content li a {
    color: #383838;
}

.footer-logo {
    display: inline-block;
    margin-top: 1em;
}

.pp-logo-footer {
    display: inline-block;
    fill: #b5b5b5;
    height: 47px;
    stroke-width: 0;
    stroke: #b5b5b5;
    width: 180px;
}

.main-footer .copyright {
    font-size: 0.875em;
}


/* ==========================================================================
   #Landing Page
   ========================================================================== */

.landing-page {
    font-family: 'Roboto', sans-serif;
}

.landing-hero {
    padding: 1rem 0 3.5rem;
}

.landing-form {
    text-align: center;
}

.landing-form form {
    text-align: center;
}

.landing-form form div {
    display: inline-block;
}

.landing-form h3 {
    display: none;
}

.landing-form .hs-form-field {
    margin-bottom: 0;
}

.landing-form .hs-form input[type=email],
.landing-form .hs-form input[type=text],
.landing-form .hs-form select {
    background-color: white !important;
    background-image: none;
    border-bottom-color: white;
    border-radius: 2px 0 0 2px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    color: #383838;
    font-size: 0.75rem;
    height: 32px;
    line-height: 32px;
    padding: 0 1em;
    -webkit-appearance: none;
}

.landing-form .hs-form input::-webkit-input-placeholder { color: #a1a1a1; }
.landing-form .hs-form input:-moz-placeholder { color: #a1a1a1; opacity: 1; }
.landing-form .hs-form input::-moz-placeholder { color: #a1a1a1; opaicty: 1; }
.landing-form .hs-form input:-ms-input-placeholder { color: #a1a1a1; }

.landing-form .hs-form input:focus::-webkit-input-placeholder { color: transparent; }
.landing-form .hs-form input:focus:-moz-placeholder { color: transparent; }
.landing-form .hs-form input:focus::-moz-placeholder { color: transparent; }
.landing-form .hs-form input:focus:-ms-input-placeholder { color: transparent; } 

.landing-form .hs-form input:focus {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    outline: none;
}

.landing-form .hs_submit {
    vertical-align: top;
}

.landing-form .hs-form input[type=submit] {
    background: #ef7408;
    border-radius: 0 2px 2px 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    color: white;
    font-size: 0.75rem;
    height: 32px;
    line-height: 32px;
    padding: 0 16px;
    text-shadow: none;
    text-transform: uppercase;
}

.landing-form .hs-form input[type=submit]:hover {
    background-color: #ff6f00;
    color: white;
}

.landing-main,
.landing-details {
    padding: 40px 0 60px;
}

.ebook-screenshots-title {
    font-size: 0.75rem;
    margin: 0 0 2rem;
    text-align: center;
    text-transform: uppercase;
}

.ebook-screenshots {
    margin-bottom: 3rem;
    text-align: center;
}

.ebook-screenshots img {
    margin: 0 auto 1rem;
    width: 100%;
    max-width: 300px;
}

.ebook-screenshots img.active {
    max-width: none;
}

.landing-copy {
    font-size: 1.125rem;
}

.landing-copy h1,
.landing-copy h2,
.landing-copy h3,
.landing-copy h4,
.landing-copy h5,
.landing-copy h6 {
    color: #383838;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    margin: 3em 0 1em;
}

.landing-copy h1,
.landing-copy h2 {
    font-size: 2rem;
    line-height: 1.2;
    margin: 2em 0 1em;
}

.landing-copy h3 {
    font-size: 1.5rem;
}

.landing-copy h4 {
    font-size: 1.25rem;
}

.landing-copy h5 {
    font-size: 1.125rem;
}

.landing-copy h6 {
    font-size: 1rem;
}

.landing-copy blockquote {
    font-size: 1.5em;
    font-weight: 400;
    border-left: 6px solid #81b32e;
    padding: .5rem 0 .5rem 1.5rem;
    margin: 4rem 0;
}

.landing-copy blockquote p {
    margin: 0;
}

.landing-copy ul,
.landing-copy ol {
    padding: 0 0 0 1.5em;
}

.landing-copy ul li {
    list-style:square outside none;
    margin-bottom: 0.5em;
}

.landing-copy ol li {
    margin-bottom: 0.5em;
}

.landing-testimonial {
    align-items: center;
    display: -webkit-flex;
    display: -ms-flex;
    display: flex;
    height: auto;
}

.landing-testimonial img {
    display: none;
}

.landing-testimonial blockquote {
    border: none;
    font-size: 0.875rem;
    margin: 0;
    padding: 20px;
    width: 100%;
}

.landing-testimonial blockquote p {
    margin: 0 0 10px;
}

.landing-testimonial cite {
    font-style: normal;
    font-weight: 700;
    text-transform: uppercase;
}

.landing-details li {
    margin-bottom: 1.5rem;
}

.landing-details form {
    margin-top: 3rem;
}


/* ==========================================================================
   #Media Queries
   ========================================================================== */

@media only screen and (min-width: 0) {
    html {
        font-size: 14px;
    }
}

@media only screen and (min-width: 601px) {
    body {
        padding-top: 85px;    
    }
    
    .container {
        width: 85%;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .row .col.m1,
    .row .col.m2,
    .row .col.m3,
    .row .col.m4,
    .row .col.m5,
    .row .col.m6,
    .row .col.m7,
    .row .col.m8,
    .row .col.m9,
    .row .col.m10,
    .row .col.m11,
    .row .col.m12 {
        margin-left: auto;
        left: auto;
        right: auto;        
    }
    
    .row .col.m1 {
        width: 8.3333333333%;
    }
    
    .row .col.m2 {
        width: 16.6666666667%;
    }
    
    .row .col.m3 {
        width: 25%;
    }
    
    .row .col.m4 {
        width: 33.3333333333%;
    }
    
    .row .col.m5 {
        width: 41.6666666667%;
    }
    
    .row .col.m6 {
        width: 50%;
    }
    
    .row .col.m7 {
        width: 58.3333333333%;
    }
    
    .row .col.m8 {
        width: 66.6666666667%;
    }
    
    .row .col.m9 {
        width: 75%;
    }
    
    .row .col.m10 {
        width: 83.3333333333%;
    }
    
    .row .col.m11 {
        width: 91.6666666667%;
    }
    
    .row .col.m12 {
        width: 100%;
    }
    
    .row .col.offset-m1 {
        margin-left: 8.3333333333%;
    }
    
    .row .col.pull-m1 {
        right: 8.3333333333%;
    }
    
    .row .col.push-m1 {
        left: 8.3333333333%;
    }
    .row .col.offset-m2 {
        margin-left: 16.6666666667%;
    }
    
    .row .col.pull-m2 {
        right: 16.6666666667%;
    }
    
    .row .col.push-m2 {
        left: 16.6666666667%;
    }
    
    .row .col.offset-m3 {
        margin-left: 25%;
    }
    
    .row .col.pull-m3 {
        right: 25%;
    }
    
    .row .col.push-m3 {
        left: 25%;
    }
    .row .col.offset-m4 {
        margin-left: 33.3333333333%;
    }
    
    .row .col.pull-m4 {
        right: 33.3333333333%;
    }
    
    .row .col.push-m4 {
        left: 33.3333333333%;
    }
    
    .row .col.offset-m5 {
        margin-left: 41.6666666667%;
    }
    
    .row .col.pull-m5 {
        right: 41.6666666667%;
    }
    
    .row .col.push-m5 {
        left: 41.6666666667%;
    }
    
    .row .col.offset-m6 {
        margin-left: 50%;
    }
    
    .row .col.pull-m6 {
        right: 50%;
    }
    
    .row .col.push-m6 {
        left: 50%;
    }
    
    .row .col.offset-m7 {
        margin-left: 58.3333333333%;
    }
    
    .row .col.pull-m7 {
        right: 58.3333333333%;
    }
    
    .row .col.push-m7 {
        left: 58.3333333333%;
    }
    
    .row .col.offset-m8 {
        margin-left: 66.6666666667%;
    }
    
    .row .col.pull-m8 {
        right: 66.6666666667%;
    }
    
    .row .col.push-m8 {
        left: 66.6666666667%;
    }
    
    .row .col.offset-m9 {
        margin-left: 75%;
    }
    
    .row .col.pull-m9 {
        right: 75%;
    }
    
    .row .col.push-m9 {
        left: 75%;
    }
    
    .row .col.offset-m10 {
        margin-left: 83.3333333333%;
    }
    
    .row .col.pull-m10 {
        right: 83.3333333333%;
    }
    
    .row .col.push-m10 {
        left: 83.3333333333%;
    }
    
    .row .col.offset-m11 {
        margin-left: 91.6666666667%;
    }
    
    .row .col.pull-m11 {
        right: 91.6666666667%;
    }
    
    .row .col.push-m11 {
        left: 91.6666666667%;
    }
    
    .row .col.offset-m12 {
        margin-left: 100%;
    }
    
    .row .col.pull-m12 {
        right: 100%;
    }
    
    .row .col.push-m12 {
        left: 100%;
    }

    .hide-on-med-and-up {
        display: none !important;
    }
    
    .show-on-medium-and-up {
        display: block !important;
    }

    h1 {
        font-size: 5.5em;
        margin-top: 0;
    }
    
    h2 {
        font-size: 3.5em;
    }
    
    .overlap-padding {
        padding-bottom: 80px;
    }

    .main-header {
        background: none;
        box-shadow: none;
         
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
;
    }
    
    .main-header .header-cta-v2 {
        opacity: 0;
         
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
;
    }
    
    .main-header.fixed {
        background: rgba(255,255,255,0.94);
        box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    }
    
    .main-header.fixed .header-cta-v2 {
        opacity: 1;
    } 
    
    .main-header .header-elements {
        min-height: 85px;
    }

    .pp-logo-text {
        display: inline;
    }

    .header-cta-v2 {
        text-align: right;
    }
    
    .header-cta-v2 .btn {
        font-size: 0.875em;
        padding: 0 2em;
    }

    .section-title {
        margin-bottom: 50px;
    }
    
    .landing-form .hs-form input[type=email],
    .landing-form .hs-form input[type=text],
    .landing-form .hs-form select {
        font-size: 1rem;
        height: 54px;
        line-height: 54px;
        width: 380px !important;
    }
    
    .landing-form .hs-form input[type=submit] {
        font-size: 1rem;
        height: 54px;
        line-height: 54px;
        padding: 0 32px;
        width: 160px;
    }
    
    .hs-error-msgs label {
        font-size: 0.75rem;
    }
    
    .landing-testimonial img {
        display: block;
    }
    
    .ebook-screenshots > div {
        display: inline-block;
        position: relative;
        width: 33.333333%;
         
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  -o-transition: all .3s;
  -ms-transition: all .3s;
  transition: all .3s;
;
    }
    
    .ebook-screenshots > div:nth-child(1) {
        margin-right: -2%;
    }
    
    .ebook-screenshots > div:nth-child(2) {
        margin-bottom: -1.5%;
    }
    
    .ebook-screenshots > div:nth-child(3) {
        margin-left: -2%;
    }
    
    .ebook-screenshots > div:nth-child(1) img {
        z-index: 2;
    }
    
    .ebook-screenshots > div:nth-child(2) img {
        z-index: 1;
    }
    
    .ebook-screenshots > div:nth-child(3) img {
        z-index: 0;
    }
    
    .ebook-screenshots > div:hover img {
        z-index: 2;
    }
  
  	.main-signup-form form {
        display: table;
        margin: 0 auto 5rem;
        position: relative;
    }
    
    .main-signup-form form div {
        display: inline-block;
    }
    
    .main-signup-form .hs-form input[type=email] {
        font-size: 1rem;
        height: 54px;
        line-height: 54px;
        width: 380px !important;
    }
    
    .main-signup-form input[type=submit] {
        border-radius: 0 2px 2px 0;
        font-size: 1rem;
        height: 54px;
        line-height: 54px;
        margin: 0;
        padding: 0 32px;
        min-width: 160px;
    }
    
    .hs-error-msgs label {
        font-size: 0.75rem;
    }  
  
  	.legal-consent-container {
      	bottom: -5rem;
      	left: 0;
      	position: absolute;
  	}
}

@media only screen and (min-width: 993px) {
    .container {
        width: 80%;
    }
    
    .row .col.l1,
    .row .col.l2,
    .row .col.l3,
    .row .col.l4,
    .row .col.l5,
    .row .col.l6,
    .row .col.l7,
    .row .col.l8,
    .row .col.l9,
    .row .col.l10,
    .row .col.l11,
    .row .col.l12 {
        margin-left: auto;
        left: auto;
        right: auto;    
    }
  
    .row .col.l1 {
        width: 8.3333333333%;
    }
    
    .row .col.l2 {
        width: 16.6666666667%;
    }
    
    .row .col.l3 {
        width: 25%;
    }
    
    .row .col.l4 {
        width: 33.3333333333%;
    }
    
    .row .col.l5 {
        width: 41.6666666667%;
    }
    
    .row .col.l6 {
        width: 50%;
    }
    
    .row .col.l7 {
        width: 58.3333333333%;
    }
    
    .row .col.l8 {
        width: 66.6666666667%;
    }
    
    .row .col.l9 {
        width: 75%;
    }
    
    .row .col.l10 {
        width: 83.3333333333%;
    }
    
    .row .col.l11 {
        width: 91.6666666667%;
    }
    
    .row .col.l12 {
        width: 100%;
    }
    
    .row .col.offset-l1 {
        margin-left: 8.3333333333%;
    }
    
    .row .col.pull-l1 {
        right: 8.3333333333%;
    }
    
    .row .col.push-l1 {
        left: 8.3333333333%;
    }
    
    .row .col.offset-l2 {
        margin-left: 16.6666666667%;
    }
    
    .row .col.pull-l2 {
        right: 16.6666666667%;
    }
    
    .row .col.push-l2 {
        left: 16.6666666667%;
    }
    
    .row .col.offset-l3 {
        margin-left: 25%;
    }
    
    .row .col.pull-l3 {
        right: 25%;
    }
    
    .row .col.push-l3 {
        left: 25%;
    }
    
    .row .col.offset-l4 {
        margin-left: 33.3333333333%;
    }
    
    .row .col.pull-l4 {
        right: 33.3333333333%;
    }
    
    .row .col.push-l4 {
        left: 33.3333333333%;
    } 
    
    .row .col.offset-l5 {
        margin-left: 41.6666666667%;
    }
    
    .row .col.pull-l5 {
        right: 41.6666666667%;
    }
    
    .row .col.push-l5 {
        left: 41.6666666667%;
    }
    
    .row .col.offset-l6 {
        margin-left: 50%;
    }
    
    .row .col.pull-l6 {
        right: 50%;
    }
    
    .row .col.push-l6 {
        left: 50%;
    }
    
    .row .col.offset-l7 {
        margin-left: 58.3333333333%;
    }
    
    .row .col.pull-l7 {
        right: 58.3333333333%;
    }
    
    .row .col.push-l7 {
        left: 58.3333333333%;
    }
    
    .row .col.offset-l8 {
        margin-left: 66.6666666667%;
    }
    
    .row .col.pull-l8 {
        right: 66.6666666667%;
    }
    
    .row .col.push-l8 {
        left: 66.6666666667%;
    }
    
    .row .col.offset-l9 {
        margin-left: 75%;
    }
    
    .row .col.pull-l9 {
        right: 75%;
    }
    
    .row .col.push-l9 {
        left: 75%;
    }
    
    .row .col.offset-l10 {
        margin-left: 83.3333333333%;
    }
    
    .row .col.pull-l10 {
        right: 83.3333333333%;
    }
    
    .row .col.push-l10 {
        left: 83.3333333333%;
    }
    
    .row .col.offset-l11 {
        margin-left: 91.6666666667%;
    }
    
    .row .col.pull-l11 {
        right: 91.6666666667%;
    }
    
    .row .col.push-l11 {
        left: 91.6666666667%;
    }
    
    .row .col.offset-l12 {
        margin-left: 100%;
    }
    
    .row .col.pull-l12 {
        right: 100%;
    }
    
    .row .col.push-l12 {
        left: 100%;
    }
    
    .hide-on-large-only {
        display: none !important;
    }
    
    .show-on-large {
        display: block !important;
    }
    
    .svg-menu {
        margin-right: 4px;
    }
    
    .landing-hero .landing-form .hs-form-field {
        position: relative;
    }
    
    .landing-hero .landing-form .hs-form-field:before {
        background: url(https://cdn2.hubspot.net/hubfs/513577/v2/landing/ebook/pp-landing-arrow.png) no-repeat 0 0;
        content: '';
        display: block;
        height: 123px;
        left: -50px;
        position: absolute;
        top: 24px;
        width: 35px;
    }
    
    .landing-form .hs-form input[type=email],
    .landing-form .hs-form input[type=text],
    .landing-form .hs-form select {
        width: 420px !important;
    }
    
    .landing-details ul,
    .landing-details ol {
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        -webkit-column-gap: 4em;
        -moz-column-gap: 4em;
        column-gap: 4em;
        font-size: 0.875em;
      	margin-bottom: 3rem;
    }
  
  	.main-signup-form .hs-form input[type=email] {
        width: 420px !important;
    }
  
  	.landing-hero .main-signup-form .hs-form-field {
      	position: relative;
  	}
  
  	.landing-hero .main-signup-form .hs-form-field:before {
        background: url(https://cdn2.hubspot.net/hubfs/513577/v2/landing/ebook/pp-landing-arrow.png) no-repeat 0 0;
        content: '';
        display: block;
        height: 123px;
        left: -50px;
        position: absolute;
        top: 24px;
        width: 35px;
    }
}

@media only screen and (min-width: 1200px) {
    html {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .hide-on-small-only, .hide-on-small-and-down {
        display: none !important;
    }
    
    .show-on-small {
        display: block !important;
    }

    .center-on-small-only {
        text-align: center;
    }
}


@media only screen and (min-width: 600px) and (max-width: 992px) {
    .hide-on-med-only {
        display: none !important;
    }

    .show-on-medium {
        display: block !important;
    }
}

@media only screen and (max-width: 992px) {
    .hide-on-med-and-down {
        display: none !important;
    }
  
    .show-on-medium-and-down {
        display: block !important;
    }
}