@charset "UTF-8";
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("/assets/fonts/Inter-ExtraBold.woff2?v=3.11") format("woff2"), url("/assets/fonts/Inter-ExtraBold.woff?v=3.11") format("woff");
}

:root {
  --font-family-serif: 'Source Serif Pro', serif;
  --font-family-sans: 'Inter', sans-serif;
  --color-text: rgba(20, 20, 20, 1);
  --color-link: rgba(20, 20, 20, 1);
  --color-background: #fff;
  --color-text-dark-mode: rgba(152, 152, 152, 1);
  --color-link-dark-mode: rgba(152, 152, 152, 1);
  --color-background-dark-mode: rgb(0, 0, 0);
  --color-green: #c3ef91;
  --type-base: 16px;
  --type-xxx-small: 45%;
  --type-xx-small: 51%;
  --type-x-small: 64%;
  --type-small: 80%;
  --type-medium: 100%;
  --type-large: 113%;
  --type-x-large: 156%;
  --type-xx-large: 195%;
  --type-xxx-large: 244%;
  --type-xxxx-large: 305%;
  --aside-width: 280px;
}

@media (min-width: 50em) {
  :root {
    --type-base: 18px;
  }
}

@media (min-width: 100em) {
  :root {
    --type-base: 18px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-text: 152, 152, 152;
    --color-background: 0, 0, 0;
    --color-link: 152, 152, 152;
  }
}

.toc {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 30em;
  overflow-y: auto;
  visibility: hidden;
  padding: 1em 2em;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  transform: translate(-100%, 0);
  box-shadow: 0 0 1em 0 rgba(0, 0, 0, 0.1);
  z-index: 1100;
  background-color: white;
  box-sizing: border-box;
}

.toc ol li,
.toc ul li {
  font-size: var(--type-medium);
  font-weight: 700;
  margin-bottom: 1em;
  padding-left: 0;
  line-height: 1.3;
}

.toc ol li:before,
.toc ul li:before {
  display: none;
}

.toc ol li ul li,
.toc ul li ul li {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-style: italic;
  font-size: var(--type-small);
}

.toc ol li ul li a,
.toc ul li ul li a {
  display: block;
  padding: .5em 0 .5em 0;
  margin-left: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.3);
}

.toc ol li ul li a:hover,
.toc ul li ul li a:hover {
  background: rgba(0, 0, 0, 0.02);
}

.toc ol li a,
.toc ul li a {
  text-decoration: none;
}

.toc ol li a:before,
.toc ul li a:before {
  display: none;
}

.toc ol li a.active,
.toc ul li a.active {
  font-style: normal;
  color: #041156;
  background: rgba(219, 219, 230, 0.2);
}

@media (min-width: 768px) {
  .toc {
    width: 30em;
  }
}

.toc--show {
  visibility: visible;
  opacity: 1;
  transform: translate(0, 0);
}

.toc__close {
  position: absolute;
  top: 13px;
  right: 15px;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  color: #000;
  opacity: .5;
  line-height: 1;
  text-decoration: none;
}

.toggle_toc {
  opacity: 0.5;
}

.toggle_toc:hover {
  cursor: pointer;
  opacity: 1;
}

.toggle_toc__image {
  width: 20px;
  height: 14px;
}

.toggle_toc__image--light {
  display: block;
}

.toggle_toc__image--dark {
  display: none;
}

.toc__header {
  margin-top: 0.5em;
  margin-bottom: 1em;
}

a {
  transition: color 0.6s ease-in-out, color 0.6s ease-in-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 1.5em 0 0 0;
  padding: 0;
  align-items: center;
  font-size: var(--type-large);
  font-family: var(--font-family-sans);
  font-weight: 900;
  line-height: 1.2;
}

h1:hover .anchor-link,
h2:hover .anchor-link,
h3:hover .anchor-link,
h4:hover .anchor-link,
h5:hover .anchor-link,
h6:hover .anchor-link {
  opacity: 1;
}

h1 {
  font-size: var(--type-xxxx-large);
}

h2 {
  font-size: var(--type-xxx-large);
}

h3 {
  font-size: var(--type-xx-large);
}

h4 {
  font-size: var(--type-large);
}

p {
  margin: 1em 0 0 0;
  font-size: var(--type-medium);
  line-height: 1.5;
  /* These are technically the same, but use both */
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-word;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-word;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  -ms-hyphens: auto;
  -webkit-hyphens: auto;
  hyphens: auto;
}

strong {
  font-weight: 600;
}

ul,
ol {
  margin: 1em 0 0 1em;
  padding: 0;
  line-height: 1.5;
}

ul li,
ol li {
  line-height: 1.6;
  margin-bottom: 1rem;
}

ol ul,
ul ul {
  margin-top: 0;
}

blockquote {
  margin: 1em 0 0 0;
  font-size: var(--type-medium);
  border-left: 3px solid #d8d8d8;
  font-style: italic;
}

blockquote p {
  margin-top: 0;
  padding-left: 1em;
}

ul {
  position: relative;
  list-style-type: none;
  list-style-position: inside;
  margin-left: 0;
}

ul li {
  position: relative;
  padding-left: 1em;
  line-height: 1.6;
  margin-bottom: 1rem;
}

ul li:before {
  position: absolute;
  left: 0;
  content: "⟡";
  /* em dash + space*/
}

hr {
  border: dotted 4px #d8d8d8;
  border-bottom: none;
  margin: 3em 0;
}

.text-small {
  font-size: var(--type-small);
}

.text-x-small {
  font-size: var(--type-x-small);
}

.text-xx-small {
  font-size: var(--type-xx-small);
}

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

form {
  margin-top: 1em;
}

.form-group {
  margin-top: 1em;
  position: relative;
}

.form-group label {
  display: block;
  font-size: var(--type-small);
  position: absolute;
  left: 13px;
  top: 14px;
  color: #999;
  background-color: #fff;
  z-index: 10;
  transition: transform 150ms ease-out, font-size 150ms ease-out;
}

.focused.form-group label {
  transform: translateY(-130%);
  font-size: .65em;
  padding: 0px 8px;
  left: 5px;
}

.form-group input,
.form-group textarea {
  display: block;
  width: 100%;
  padding: 0.75em .5em .5em 13px;
  outline: 0;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  font-size: var(--type-medium);
  font-family: var(--font-family-serif);
  transition: box-shadow 150ms ease-out;
  background: #fff;
}

.form-group input:focus,
.form-group textarea:focus {
  border: 1px solid blue;
}

.form-group input.filled,
.form-group textarea.filled {
  border: 1px solid lightgreen;
}

.form-group select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  border: 1px solid #e5e5e5;
  padding: .5em .5em .5em 13px;
  height: 48px;
  background: #fff;
  font-family: var(--font-family-serif);
}

.form-group select option {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  color: red;
}

.post-title {
  font-family: var(--font-family-sans);
  font-size: var(--type-xxxx-large);
  letter-spacing: -0.25px;
  line-height: 1;
}

.post-intro {
  font-size: var(--type-large);
}

.post-image {
  box-shadow: none;
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
}

.post-image-caption {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 0.875em;
  font-style: italic;
}

@media (max-width: 767px) {
  .post-title {
    font-size: var(--type-x-large);
  }
  .post-intro {
    font-size: var(--type-medium);
  }
}

.btn {
  padding: 16px 20px;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  display: block;
  width: auto;
  margin: 0 auto;
  box-shadow: 3px 3px 0px 0px #fff, 6px 6px 0px 0px #d8d8d8;
  font-size: var(--type-medium);
  font-family: var(--font-family-serif);
  font-weight: 900;
}

.btn-primary,
.btn-primary:visited {
  background-color: #c3ef91;
  color: #000 !important;
}

.btn-form {
  margin: 1em 0 0 0;
  width: 100% !important;
}

@media (min-width: 768px) {
  .btn {
    width: 60%;
  }
}

.get-started {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  transition: height 0.8s ease-in-out;
}

.get-started.in {
  min-height: 390px;
}

.get-started__section {
  position: absolute;
  top: 0;
  left: 1500px;
  width: 98%;
  z-index: 1;
}

.get-started__heading {
  text-align: center;
  font-weight: 700;
}

.get-started__button {
  display: block;
  position: relative;
  width: calc(100% - 12px) !important;
  margin: 16px auto;
  padding: 16px 20px;
  text-align: center;
  text-decoration: none;
  border-bottom: 1px solid rgba(120, 120, 120, 0.15);
  border-right: 1px solid rgba(120, 120, 120, 0.15);
  border-radius: 4px;
}

.get-started__button:active {
  box-shadow: none;
  left: 3px;
  top: 3px;
  background: #c3ef91;
}

.get-started__select {
  width: 100%;
}

.get-started__button--main {
  background: #c3ef91;
  margin-bottom: 6px;
  font-weight: 700;
  z-index: 2;
}

.get-started__button--choice {
  background: #c8f09a;
  font-weight: 700;
}

.get-started__button--choice:hover {
  background: #b0ea6d;
}

.get-started__caption {
  display: block;
  text-align: center;
  margin-top: 1rem;
}

.button-out {
  animation: button-out 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

.section-out {
  animation: section-out 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

.section-in {
  animation: section-in 0.4s cubic-bezier(0.455, 0.03, 0.515, 0.955) both;
}

/* ----------------------------------------------
 * Generated by Animista on 2019-12-10 21:46:41
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info.
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

@keyframes button-out {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1500px);
  }
}

@keyframes section-in {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-1500px);
  }
}

@keyframes section-out {
  0% {
    transform: translateX(-1500px);
    opacity: 0;
  }
  100% {
    transform: translateX(-3000px);
    opacity: 1;
  }
}

.content-upgrade {
  box-shadow: none;
  width: calc(100% + 50px);
  background: #333;
  color: #f1f1f1;
  margin-top: 2em;
  margin-bottom: 2em;
  margin-left: -25px;
  margin-right: -25px;
  padding: 25px;
}

.content-upgrade-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-upgrade-headline {
  margin-top: 0;
}

.content-upgrade-text {
  margin-bottom: 1em;
  margin-right: 0;
}

@media (min-width: 768px) {
  .content-upgrade-content {
    flex-direction: row;
  }
  .content-upgrade-text {
    margin-right: 2em;
  }
}

.content-upgrade-caption {
  margin-top: 0;
  margin-bottom: 1em;
  opacity: 0.4;
  font-family: Sans-Serif;
  font-size: var(--type-xx-small);
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5px;
}

.content-upgrade-button {
  width: 100%;
  box-shadow: 3px 3px 0px 0px #333, 6px 6px 0px 0px #d8d8da40;
  height: 70px;
  color: #333;
}

.content-upgrade-button:hover {
  cursor: pointer;
}

.content-upgrade-button:active {
  position: relative;
  top: 6px;
  left: 6px;
  box-shadow: none;
}

.dark-mode {
  opacity: 0.5;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.1s ease-in-out;
}

.dark-mode span {
  display: none;
  position: relative;
  top: 2px;
}

.dark-mode:hover {
  cursor: pointer;
  opacity: 1;
}

.dark-mode__image {
  width: 14px;
  height: 14px;
}

body .dark-mode--sun {
  display: none;
}

body .dark-mode--moon {
  display: block;
}

.body--dark-mode {
  color: var(--color-text-dark-mode);
  background-color: var(--color-background-dark-mode);
}

.body--dark-mode a, .body--dark-mode a:hover, .body--dark-mode a:active, .body--dark-mode a:visited {
  color: var(--color-text-dark-mode) !important;
}

.body--dark-mode main img {
  opacity: 0.55;
  box-shadow: 3px 3px 0px 0px #000000, 6px 6px 0px 0px #272727;
}

.body--dark-mode input {
  background: #616161 !important;
  border-color: #616161 !important;
}

.body--dark-mode button {
  background: #616161 !important;
  color: #222 !important;
}

.body--dark-mode .dark-mode {
  opacity: 0.8;
}

.body--dark-mode .dark-mode--sun {
  display: block;
  opacity: 1;
}

.body--dark-mode .dark-mode--moon {
  display: none;
}

.body--dark-mode .topnav {
  background-color: var(--color-background-dark-mode);
}

.body--dark-mode .toggle_toc__image--light {
  display: none;
}

.body--dark-mode .toggle_toc__image--dark {
  display: block;
}

.body--dark-mode .toc {
  color: var(--color-text-dark-mode);
  background-color: #141414;
}

.body--dark-mode .toc a, .body--dark-mode .toc a:hover, .body--dark-mode .toc a:active, .body--dark-mode .toc a:visited {
  color: var(--color-text-dark-mode) !important;
}

.body--dark-mode .toc a.active, .body--dark-mode .toc a:hover.active, .body--dark-mode .toc a:active.active, .body--dark-mode .toc a:visited.active {
  background-color: rgba(219, 219, 230, 0.05);
}

.body--dark-mode .prev_next,
.body--dark-mode blockquote {
  border-color: rgba(216, 216, 216, 0.25) !important;
}

* {
  box-sizing: border-box;
}

html, body {
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

html {
  font-size: 18px;
}

@supports (display: grid) {
  html {
    font-size: 10px;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-family-serif);
  font-size: var(--type-base);
  font-weight: 400;
  color: var(--color-text);
  background-color: var(--color-background);
}

.container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto auto;
  grid-template-rows: auto auto;
  -ms-grid-columns: 1;
  grid-template-columns: 1;
  grid-template-areas: "content" "aside" "footer";
  height: 100vh;
  margin: 10px auto 0;
  width: 90%;
}

.container:before {
  display: none;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .container {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-columns: 200px auto;
    grid-template-columns: 200px auto;
    grid-template-areas: "aside content" "footer footer";
    grid-gap: 70px;
    margin: 20px auto 0;
    width: 90%;
  }
  main {
    width: 100%;
  }
}

@media (min-width: 1025px) {
  .container {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    -ms-grid-columns: 200px auto;
    grid-template-columns: 200px auto;
    grid-template-areas: "aside content" "footer footer";
    grid-gap: 80px;
    margin: 80px auto 0;
    width: 760px;
  }
}

.topnav {
  height: 50px;
  display: flex;
  width: 90%;
  margin: 0 auto;
  top: 0;
  background: #fff;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .topnav {
    position: fixed;
    width: 100%;
    padding-left: 15px;
  }
}

footer {
  grid-area: footer;
  margin-bottom: 100px;
  font-size: var(--type-small);
  text-align: center;
}

aside {
  grid-area: aside;
  margin-bottom: 200px;
  font-size: var(--type-small);
}

.aside__avatar {
  display: block;
  width: 150px;
  border-radius: 10px 0 10px 0;
}

.aside__body {
  display: none;
}

.aside__social {
  display: none;
  margin-top: 1em;
}

.aside__social-image {
  margin: 0 .5em;
  opacity: 0.2;
}

.aside__social-image:hover {
  cursor: pointer;
  opacity: 1;
}

@media (max-width: 767px) {
  aside {
    margin-top: 80px;
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  aside {
    text-align: left;
  }
  aside div {
    position: fixed;
    width: 150px;
  }
  .aside__social {
    display: flex;
  }
  .aside__body {
    display: block;
  }
  body.default aside,
  body.podcast aside,
  body.newsletter aside {
    opacity: 0.65;
    transition: opacity .3s ease-in-out;
  }
  body.default aside:hover,
  body.podcast aside:hover,
  body.newsletter aside:hover {
    opacity: 1;
  }
}

main {
  grid-area: content;
  position: relative;
}

main > h1 {
  margin-top: 0;
  margin-bottom: 0.5em;
  line-height: 1;
}

main h3.tag {
  margin: 20px 0;
}

main img {
  position: relative;
  width: 100%;
  box-shadow: 3px 3px 0px 0px #fff, 6px 6px 0px 0px #d8d8d8;
}

main a {
  color: var(--color-text);
  position: relative;
  text-decoration: underline;
}

main a:hover, main a:active, main a:visited {
  color: #333;
}

@media (min-width: 768px) and (max-width: 1024px) {
  main {
    width: 100%;
  }
}

.prev_next {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  margin-bottom: 150px;
  padding-top: 70px;
  padding-bottom: 50px;
  border-top: 3px solid #d8d8d8;
  border-bottom: 3px solid #d8d8d8;
}

.continue {
  position: absolute;
  top: 20px;
  margin: 0;
  width: 100%;
  display: block;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.875em;
  color: #d8d8d8;
}

.prev,
.next {
  width: 40%;
  margin-top: 0;
}

.prev {
  margin-left: 30px;
}

.next {
  margin-right: 30px;
  text-align: right;
}

.prev__link:hover,
.next__link:hover {
  text-decoration: underline;
}

.prev__link:hover::before,
.next__link:hover::before {
  border: none;
}

.prev__link:before,
.next__link:before {
  position: absolute;
  display: block;
  border: none;
  top: 0;
}

.prev__link {
  position: relative;
}

.prev__link:before {
  content: '←';
  left: -30px;
}

.next__link {
  position: relative;
}

.next__link:before {
  content: '→';
  right: -30px;
}

.newsletter__ebook-description {
  display: flex;
}

.clients {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 0;
}

.clients__logo {
  border: none;
  box-shadow: none;
  width: 20%;
}

.container .ebook-cover {
  width: 200px;
  height: 100%;
  box-shadow: none;
  display: block;
  margin: 0 auto;
}

.testimonial {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 80px auto;
  padding: 40px 20px;
  text-align: center;
  border-top: 1px solid rgba(120, 120, 120, 0.15);
  border-left: 1px solid rgba(120, 120, 120, 0.15);
  border-radius: 10px;
  box-shadow: 3px 3px 0px 0px #fff, 6px 6px 0px 0px #d8d8d8;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1em;
  position: absolute;
  top: -55px;
  left: calc(50% - 35px);
}

.testimonial-avatar {
  box-shadow: none;
  border-radius: 100px;
  width: 70px;
}

.testimonial-name-wrap {
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: .5em;
}

.testimonial-name {
  margin-top: 0;
  line-height: 1;
}

.podcast-number {
  font-size: 0.825em;
  opacity: 0.5;
}

.podcast-details {
  margin-left: 0;
  margin-bottom: 3rem;
}

.podcast-title {
  display: block;
  margin-bottom: 1rem;
  font-weight: 600;
}

.podcast-description {
  display: block;
  opacity: 0.825;
}

@media (max-width: 767px) {
  .formkit-fields {
    display: flex !important;
    flex-direction: column !important;
  }
}

.article__cta {
  padding: 40px;
  background-color: rgba(75, 175, 80, 0.075);
  border-radius: 4px;
}

.article__cta h3 {
  margin-top: 0;
}

.cta {
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
  margin-top: 1.5em;
  padding: 4rem;
  background: #111;
  color: #fff;
}

.cta__accent {
  border-bottom: 3px solid #c3ef91;
}

@media (min-width: 1024px) {
  .cta {
    width: calc(100% + 130px);
    margin-left: -65px;
    margin-right: -65px;
  }
}

.w-100 {
  width: 100% !important;
}

/*# sourceMappingURL=brhea.css.map */
