:root {
  --darkergrey: #111;
  --white: white;
  --black: black;
  --midgrey: #666;
  --ixblue: #1c299b;
  --dim-grey: #494949;
  --burlywood: #dfab82;
  --dark-slate-blue: #4a5899;
  --50-white: #ffffff80;
  --light-steel-blue: #9aa7df;
  --silver: #b5b5b5;
  --light-coral: #ed8590;
  --medium-turquoise: #59c3c3;
  --darkestgrey: black;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

body {
  color: var(--darkergrey);
  font-family: Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1 {
  text-transform: uppercase;
  margin-top: 30px;
  margin-bottom: 30px;
  font-family: 'Roboto Condensed', Roboto, sans-serif;
  font-size: 80px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.02em;
}

h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: 'Roboto Condensed', Roboto, sans-serif;
  font-size: 70px;
  font-weight: 700;
  line-height: 1.1em;
  letter-spacing: -0.02em;
}

h3 {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: 'Roboto Condensed', Roboto, sans-serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15em;
  letter-spacing: -0.01em;
}

h4 {
  margin-top: 0;
  margin-bottom: 30px;
  font-family: 'Roboto Condensed', Roboto, sans-serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2em;
  letter-spacing: -0.01em;
}

h5 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2em;
}

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1.2em;
}

p {
  max-width: 710px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.8em;
}

a {
  color: #0a2161;
  font-family: Roboto, sans-serif;
  text-decoration: underline;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 30px;
}

li {
  padding-top: 10px;
  padding-bottom: 10px;
  font-weight: 700;
}

blockquote {
  z-index: 2;
  border-left: 5px #e2e2e2;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 80px;
  padding: 0;
  font-family: EB Garamond;
  font-size: 30px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.2em;
  position: relative;
}

.herosection {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 85vh;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
}

.herosection.support-hero {
  background-color: var(--white);
  color: var(--black);
  min-height: auto;
  padding-top: 80px;
}

.navigation {
  justify-content: space-between;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  font-family: Roboto, sans-serif;
  display: flex;
}

.logo-wrap {
  text-decoration: none;
  overflow: hidden;
}

.logo-wrap.w--current {
  font-family: Inconsolata, monospace;
}

.nav-links {
  align-items: center;
  display: flex;
}

.nav-links.footer-copyright {
  flex-grow: 1%;
  flex-basis: 100%;
  justify-content: flex-end;
  margin-top: 50px;
  font-size: 10px;
}

.nav-links.footer-navs {
  flex: 1;
  justify-content: center;
}

.page-container {
  text-align: left;
  width: 90%;
  max-width: 1370px;
  font-family: Roboto, sans-serif;
  position: relative;
}

.page-container.book-hero {
  z-index: 5;
  perspective: 1300px;
  display: flex;
  position: relative;
}

.page-container.about-container {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-container.book-slider {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
  display: block;
}

.page-container.chapter-brakedown {
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.page-container.testimonial-container {
  z-index: 3;
  background-color: var(--white);
  color: var(--black);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 550px;
  padding: 80px;
  display: flex;
  position: relative;
  box-shadow: 0 0 50px #00000014;
}

.page-container.why-read {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1.2fr 1fr 1fr;
  display: grid;
}

.page-container.free-sample-container {
  z-index: 2;
  background-color: var(--white);
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1000px;
  min-height: 250px;
  padding: 80px;
  display: flex;
  position: relative;
  box-shadow: 0 0 50px #00000014;
}

.page-container.footer-container {
  border-top: 1px solid #ffffff1a;
  flex-wrap: wrap;
  justify-content: space-between;
  align-self: center;
  align-items: center;
  width: 100%;
  padding-top: 0;
  display: flex;
}

.page-container.about-author-container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.page-container.faq-cointainer {
  text-align: center;
}

.page-container.book-guarantee {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-top: -23px;
  margin-bottom: -69px;
  padding-top: 0;
  display: grid;
}

.page-container.footer-free-download {
  justify-content: space-between;
  margin-bottom: 50px;
  display: flex;
}

.page-container.buy-container {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.page-container.support-hero {
  z-index: 5;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  perspective: 1300px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  margin-bottom: 100px;
  display: grid;
  position: relative;
}

.page-container.changelog-container {
  margin-bottom: 100px;
}

.book-hero-heading {
  max-width: 50%;
  margin-top: 0;
  margin-bottom: 20px;
  line-height: 1em;
}

.book-hero-heading.line-1 {
  float: left;
  color: var(--darkergrey);
  text-transform: uppercase;
  max-width: 700px;
  margin-top: -12px;
  margin-bottom: 28px;
  margin-left: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-size: 92px;
  line-height: 1em;
  position: relative;
}

.label {
  z-index: 4;
  color: var(--midgrey);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: -18px;
  padding-top: 0;
  font-family: 'Roboto Condensed', Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.label.dark-label {
  color: #353535;
  margin-bottom: -20px;
}

.hero-paragraph {
  z-index: 2;
  color: var(--darkergrey);
  max-width: 750px;
  margin-top: -13px;
  margin-right: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Roboto, sans-serif;
  line-height: 1.8em;
  position: relative;
}

.buttons-sideflex {
  align-items: center;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
}

.button {
  z-index: 3;
  opacity: 1;
  color: var(--white);
  letter-spacing: 1px;
  cursor: pointer;
  background-color: #fff;
  border: 2px solid #000;
  border-radius: 0;
  flex: none;
  margin-right: 20px;
  padding: 20px 40px;
  font-family: EB Garamond;
  font-size: 20px;
  line-height: 20px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.button:hover {
  border-color: var(--ixblue);
  background-color: var(--ixblue);
  color: var(--white);
}

.button.inverted {
  background-color: var(--dim-grey);
  opacity: 1;
  color: var(--white);
}

.button-transparent {
  color: var(--burlywood);
  padding-bottom: 10px;
  font-family: EB Garamond;
  font-size: 20px;
  position: relative;
  overflow: hidden;
}

.button-transparent.inverted-2 {
  color: var(--white);
}

.spacer-60-px {
  flex: none;
  width: 60px;
  height: 60px;
}

.button-line {
  background-color: var(--burlywood);
  width: 20%;
  height: 2px;
  margin-top: 8px;
  position: absolute;
  left: 0;
}

.button-line.white-line {
  background-color: var(--white);
}

.button-overlay {
  z-index: 1;
  background-color: #7a7a7a;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 100%;
}

.button-text {
  z-index: 2;
  color: var(--black);
  letter-spacing: 0;
  margin-right: 0;
  padding-right: 0;
  font-family: Roboto, sans-serif;
  font-weight: 600;
  position: relative;
}

.button-text:hover {
  color: var(--white);
}

.nav-link {
  color: var(--dim-grey);
  margin-left: 20px;
  margin-right: 0;
  padding-bottom: 0;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2em;
  text-decoration: none;
  transition: color .5s;
}

.nav-link:hover {
  color: var(--darkergrey);
  text-decoration: underline;
}

.hero-content {
  z-index: 2;
  margin-left: -65px;
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.book-cover {
  opacity: 1;
  background-color: #eed474bf;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40vw;
  max-width: 750px;
  height: 90vh;
  max-height: 700px;
  margin-top: -100px;
  margin-bottom: 6px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: absolute;
  top: 0;
  right: 0;
}

.contactsection {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 32px;
  display: block;
}

.contactsection.testimonial-section {
  text-align: center;
  padding-top: 300px;
  padding-bottom: 300px;
  position: relative;
}

.contactsection.learn {
  z-index: 2;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding-top: 200px;
  position: relative;
}

.contactsection.book-section {
  color: var(--white);
  text-align: center;
  background-color: #9c717180;
  padding-top: 300px;
  padding-bottom: 200px;
}

.contactsection.book-reselers {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #f1f1f1;
  grid-template-rows: 330px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.contactsection.free-sample-section {
  text-align: center;
  padding-bottom: 200px;
  position: relative;
}

.contactsection.about-the-author {
  background-color: #d9e0e6;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.contactsection.footer-section {
  background-color: var(--white);
  text-align: center;
  margin-top: 0;
  padding-top: 32px;
  padding-bottom: 32px;
}

.site-footer {
  border-top: 1px solid #e0e0e0;
  padding: 24px 32px;
  font-family: Roboto, sans-serif;
  font-size: 13px;
  color: var(--silver);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links-left .footer-link {
  font-size: 13px;
  padding: 0;
  margin: 0;
}

.footer-separator {
  color: var(--silver);
  font-size: 13px;
}

.footer-copyright {
  color: var(--silver);
  font-size: 13px;
}

.contactsection.color-section {
  background-color: var(--dark-slate-blue);
  color: var(--white);
}

.contactsection.form-section {
  background-color: var(--white);
}

.contactsection.value-1 {
  padding-top: 200px;
}

.contactsection.faq-section {
  text-align: center;
  padding-bottom: 200px;
}

.contactsection.die-getriebenen {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.contactsection.buy-section {
  text-align: center;
}

.bookimg {
  object-fit: cover;
  width: auto;
  max-width: none;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
}

.bookimg.big-book {
  z-index: 2;
  height: 400px;
  position: relative;
  left: auto;
  box-shadow: 0 1px 50px #00000014;
}

.book-desc {
  color: var(--50-white);
  letter-spacing: 2px;
  text-transform: uppercase;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 20px 40px;
  font-family: Muli;
  font-size: 12px;
  display: flex;
  position: absolute;
  bottom: 0;
}

.book-light-box {
  z-index: 3;
  background-color: #000c;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: absolute;
}

.listen-on {
  color: #000;
  margin-right: -19px;
  font-family: Muli;
  position: absolute;
  top: 20px;
  right: 40px;
}

.listen-on-links {
  color: var(--50-white);
  text-decoration: underline;
}

.testimonial-author-name {
  color: var(--light-steel-blue);
  letter-spacing: 2px;
  font-family: EB Garamond;
  font-weight: 800;
}

.testimonial-author-role {
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: Muli;
  font-size: 12px;
}

.learn-grid {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  width: 100%;
  max-width: 1370px;
  min-height: 500px;
  margin-bottom: -30vh;
  padding-left: 10px;
  padding-right: 10px;
}

.learn-paragraph {
  color: var(--50-white);
  max-width: 700px;
}

.learn-item {
  background-color: var(--dark-slate-blue);
  text-align: left;
  cursor: pointer;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding: 40px;
  transition: box-shadow .5s;
  display: flex;
  position: relative;
  box-shadow: 0 5px 50px #0000001a;
}

.learn-item:hover {
  box-shadow: 0 10px 50px #0006;
}

.spacer-30-px {
  width: 30px;
  height: 30px;
}

.feature-paragrapg {
  color: var(--50-white);
  max-width: 510px;
  margin-top: 300px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 30px;
}

.feature-heading {
  position: absolute;
  top: 80px;
  left: 40px;
  right: 40px;
}

.learn-number {
  background-color: var(--white);
  color: var(--dark-slate-blue);
  text-align: center;
  border-radius: 20px;
  width: 30px;
  height: 30px;
  font-family: Muli;
  font-weight: 700;
  line-height: 30px;
  position: absolute;
  top: 40px;
  left: 40px;
}

.book-slider {
  background-color: #0000;
  min-height: 70vh;
}

.book-slider-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 70vh;
  display: flex;
}

.right-arrow, .left-arrow {
  color: var(--black);
  font-size: 12px;
}

.slide-nav {
  color: var(--black);
  font-size: 8px;
  display: none;
}

.chapter-heading {
  max-width: 550px;
}

.email-us {
  color: var(--white);
  text-decoration: underline;
}

.chapter-brakedown-wrap {
  align-self: center;
  width: 90%;
  max-width: 550px;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.see-all-chapters-trigger {
  background-image: linear-gradient(to bottom, #ed859000, var(--light-coral));
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 100px;
  font-weight: 600;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}

.author-image {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: #94877d;
  background-image: url('../images/17244_XXL.jpg');
  background-position: 50%;
  background-size: 682px;
  border-radius: 0;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 45vw;
  max-width: 750px;
  height: 700px;
  margin-top: 69px;
  display: grid;
  position: absolute;
  top: -250px;
  right: 0;
}

.order-after-chapter {
  align-self: center;
  align-items: center;
  margin-top: 30px;
  display: flex;
}

.page-wrapper {
  padding-left: 32px;
  padding-right: 32px;
  position: relative;
  overflow: hidden;
}

.page-wrapper.style-guide-wrap {
  color: var(--darkergrey);
  background-color: #0000;
  padding-top: 110px;
  padding-bottom: 0;
  display: block;
}

.page-wrapper.licencing-wrap {
  color: var(--black);
  background-color: #0000;
  padding-top: 110px;
  padding-bottom: 0;
  display: block;
}

.hero-words-wrap {
  max-width: 760px;
  padding-bottom: 5px;
  overflow: hidden;
}

.book-reseler-wrap {
  border: 1px solid #f1f1f1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.book-reseler-logo {
  filter: grayscale();
  max-width: 40%;
}

.book-reseler-cta {
  background-color: var(--dark-slate-blue);
  color: var(--white);
  letter-spacing: 1px;
  padding: 10px 30px;
  font-family: EB Garamond;
  font-size: 14px;
  line-height: 20px;
  display: none;
  position: absolute;
  overflow: hidden;
}

.testimonial-author-img {
  background-image: url('../images/pexels-photo-1239291.jpeg');
  background-position: 50%;
  background-size: cover;
  width: 300px;
  position: absolute;
  top: 80px;
  bottom: 80px;
  right: 80px;
}

.testimonial-author-img.author-2 {
  z-index: 1;
  background-image: url('../images/pexels-photo-774909.jpeg');
}

.testimonial-bg-image {
  width: 80%;
  height: 70%;
  min-height: 640px;
  position: absolute;
  right: 0;
  overflow: hidden;
}

.testimonial-bg-image.left-bg-image {
  left: 0;
  right: auto;
}

.text-block {
  color: var(--silver);
  letter-spacing: 4px;
  font-family: Muli;
  font-size: 10px;
  position: absolute;
  top: 145px;
  right: -10px;
  transform: rotate(90deg);
}

.who-should-grab-h-wrap {
  align-self: center;
}

.who-should-grab-item {
  background-color: var(--white);
  min-height: 300px;
  margin: 20px;
  box-shadow: 1px 1px 50px #00000014;
}

.who-should-grab-img {
  background-image: url('../images/pexels-photo-1308625.jpeg');
  background-position: 50%;
  background-size: cover;
  height: 200px;
}

.who-should-grab-img.who-grab-2 {
  background-image: url('../images/person-woman-apple-hotel.jpg');
}

.who-should-grab-img.who-grab-3 {
  background-image: url('../images/pexels-photo-374085.jpeg');
  background-position: 50% 100%;
}

.who-should-grab-info-wrap {
  padding: 30px;
}

.no-margin {
  margin-bottom: 0;
}

.free-sample-form-block {
  width: 100%;
  margin-bottom: 0;
}

.free-sample-form-block.half-block {
  width: 50%;
  min-width: 600px;
}

.input {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--silver);
  height: 60px;
  margin-bottom: 0;
  padding: 0 20px;
  font-size: 18px;
}

.input.transparent-input {
  border-bottom-color: var(--50-white);
  color: var(--white);
  background-color: #0000;
}

.input.transparent-input::placeholder {
  color: var(--50-white);
}

.form {
  align-items: center;
  display: flex;
}

.free-sample-heading {
  position: absolute;
  top: -40px;
}

.small-paragraph {
  color: var(--black);
  max-width: none;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8em;
  text-decoration: none;
}

.small-paragraph.free-explainer {
  padding-left: 20px;
  padding-right: 20px;
}

.small-paragraph.no-margin {
  margin-right: 20px;
}

.small-paragraph._15-margin {
  margin-bottom: 15px;
}

.bg-image-overlay {
  z-index: 2;
  background-color: var(--dark-slate-blue);
  display: none;
  position: absolute;
  inset: 0;
}

.bg-image {
  z-index: 1;
  background-color: var(--dark-slate-blue);
  background-image: url('../images/pexels-photo-590493.jpeg');
  background-position: 50%;
  background-size: cover;
  position: absolute;
  inset: 0;
}

.bg-image.bg-image-2 {
  background-image: url('../images/pexels-photo-459265.jpeg');
}

.bg-image.bg-image-4 {
  background-image: url('../images/pexels-photo.jpg');
}

.bg-image.bg-image-3 {
  background-image: url('../images/pexels-photo-946343.jpeg');
}

.book-cover-img {
  height: 60vh;
}

.navigation-wrap {
  z-index: 3;
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.style-guide-wrap {
  background-color: var(--dark-slate-blue);
  color: var(--white);
  flex-direction: column;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.style-guide-label {
  color: var(--silver);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 40px;
  font-size: 11px;
  line-height: 11px;
}

.style-guide-label.cc-box {
  justify-content: space-between;
  display: flex;
}

.style-colors {
  background-color: #ebebeb;
  border-radius: 4px;
  height: 70px;
  margin-top: 30px;
}

.style-colors.grey-cc {
  background-color: var(--silver);
}

.style-colors.dark-cc {
  background-color: var(--black);
}

.style-colors.white-tr-cc {
  background-color: var(--50-white);
}

.style-colors.light-cc {
  background-color: var(--white);
}

.style-colors.brand-1-cc {
  border: 1px solid var(--50-white);
  background-color: var(--dark-slate-blue);
}

.style-colors.brand-2-cc {
  background-color: var(--medium-turquoise);
}

.style-colors.brand-3-cc {
  background-color: var(--burlywood);
}

.style-colors.brand-4-cc {
  background-color: var(--light-coral);
}

.success-message {
  color: #20ce7b;
  background-color: #20ce7b1a;
  border-radius: 4px;
}

.style-guide-divider {
  background-color: var(--silver);
  width: 100%;
  height: 1px;
  margin-top: 20px;
  margin-bottom: 10px;
}

.error-message {
  color: #ec3872;
  text-align: center;
  background-color: #ec38721a;
  border-radius: 4px;
}

.button-small {
  background-color: var(--dark-slate-blue);
  color: var(--white);
  letter-spacing: 1px;
  padding: 10px 30px;
  font-family: EB Garamond;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  position: static;
}

.button-small.white-small {
  background-color: var(--white);
  color: var(--dark-slate-blue);
}

.powered-text {
  color: var(--50-white);
  letter-spacing: 1px;
  margin-right: 5px;
  padding-bottom: 5px;
}

.colors-grid {
  grid-template-rows: auto;
  margin-bottom: 30px;
}

.textarea-input {
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--silver);
  min-height: 100px;
  margin-bottom: 0;
  padding: 15px 20px 0;
  font-size: 18px;
}

.form-block {
  margin-bottom: 0;
}

.value-proposal-grid {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1.4fr;
}

.value-proposal-grid.reversed {
  grid-template-columns: 1.4fr 1fr;
}

.image-wrap {
  z-index: 2;
  background-image: url('../images/pexels-photo-212286.jpeg');
  background-position: 0 0;
  background-size: cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 600px;
  display: flex;
  position: relative;
}

.image-wrap.image-2 {
  background-image: url('../images/pexels-photo-847483.jpeg');
}

.image-rectangle-overlay {
  z-index: 2;
  border: 2px solid var(--burlywood);
  width: 100%;
  height: 600px;
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.image-rectangle-overlay.reversed-rectangle {
  left: auto;
  right: 20px;
}

.image-rectangle-overlay.buy-rectangle {
  height: 550px;
}

.order-book-sideflex {
  z-index: 1;
  background-color: var(--burlywood);
  color: var(--white);
  justify-content: space-between;
  align-items: center;
  width: 70%;
  min-width: 850px;
  margin-top: -60px;
  padding: 80px 60px;
  display: flex;
  position: relative;
}

.bookinfo {
  z-index: 2;
  position: relative;
}

.value-list {
  flex-wrap: wrap;
  display: flex;
}

.value-list-item {
  flex-basis: 50%;
  padding-right: 20px;
}

.text-max-420 {
  margin-bottom: 20px;
  font-family: Roboto, sans-serif;
}

.cta-text {
  max-width: 400px;
  margin-bottom: 0;
  margin-right: 120px;
}

.faq-wrap {
  border: 1px solid var(--burlywood);
  background-color: var(--white);
  flex-direction: column;
  margin-bottom: 40px;
  display: flex;
  box-shadow: 0 0 50px #0000000a;
}

.faq-question-wrap {
  color: var(--burlywood);
  text-align: left;
  flex: none;
  justify-content: space-between;
  align-items: center;
  padding: 40px;
  display: flex;
}

.faq-answer {
  text-align: left;
  flex: none;
  max-width: 100%;
  margin-bottom: 40px;
  margin-left: 40px;
  margin-right: 40px;
}

.social-icons-wrap {
  align-items: center;
  display: flex;
}

.social-icon {
  opacity: .5;
  height: 20px;
  margin-left: 20px;
  transition: opacity .2s;
}

.social-icon:hover {
  opacity: 1;
}

.social-icon-img {
  height: 100%;
  display: block;
}

.book-image-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.book-image-bg {
  background-color: var(--dark-slate-blue);
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 40px;
  right: 60px;
}

.footer-link {
  color: var(--silver);
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 0;
  font-size: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--darkergrey);
  text-decoration: underline;
}

.footer-link.creator {
  color: var(--burlywood);
  margin-left: 0;
}

.faq-question {
  margin-bottom: 0;
  margin-right: 40px;
}

.max-size-320 {
  max-width: 320px;
}

.success-message-2 {
  background-color: var(--burlywood);
  color: var(--white);
  padding: 40px;
}

.error-message-2 {
  background-color: var(--light-coral);
  color: var(--white);
  margin-top: 20px;
  padding: 40px;
}

.text-block-2 {
  display: none;
}

.paragraph-max-400 {
  max-width: 400px;
  margin-right: 20px;
}

.author-name {
  z-index: 2;
  padding-top: 0;
  font-family: Roboto, sans-serif;
  font-size: 52px;
  position: relative;
}

.buy-the-book {
  grid-template: ". . Area"
  / .5fr .5fr 1fr 1fr;
  width: 80%;
  margin-bottom: 30px;
}

.buy-the-book-column {
  flex-direction: column;
  align-items: center;
  padding: 40px;
  display: flex;
  position: relative;
  box-shadow: 1px 1px 50px #00000014;
}

.paperback {
  z-index: 3;
  height: 250px;
  margin-bottom: 30px;
  position: relative;
}

.available-on-sideflex {
  z-index: 3;
  align-items: center;
  margin-bottom: 30px;
  display: flex;
  position: relative;
}

.ebook {
  border: 1px solid var(--silver);
  border-radius: 6px;
  height: 250px;
  margin-bottom: 30px;
}

.buy-the-book-available {
  grid-template-rows: 200px;
  grid-template-columns: 1fr 1fr 1fr;
  width: 80%;
  margin-bottom: 60px;
}

.support-image-wrap {
  flex: 1;
  width: 550px;
  height: 500px;
  overflow: hidden;
}

.image-3 {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.changelog-hero {
  background-color: var(--dark-slate-blue);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 150px;
  padding-bottom: 100px;
  display: flex;
}

.changelog-hero.support-hero {
  background-color: var(--white);
  color: var(--black);
}

.changelog-div {
  grid-column-gap: 40px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1.4fr;
  display: block;
}

.changelog-div.reversed {
  grid-template-columns: 1.4fr 1fr;
}

.text-block-3 {
  color: #000;
  font-family: Roboto, sans-serif;
  font-size: 24px;
  font-weight: 300;
}

.bold-text {
  font-family: Roboto;
  font-weight: 400;
  overflow: visible;
}

.text-block-4 {
  background-color: #777;
}

.text-block-5 {
  color: var(--silver);
  padding-top: 18px;
  font-family: Roboto, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
}

.cards-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.centered-container {
  text-align: center;
  flex: 1;
  margin-bottom: 52px;
}

.cards-grid-container {
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  text-align: left;
  grid-template: ". . . Area"
  / 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.cards-image-mask {
  border-radius: 0%;
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.cards-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  max-width: none;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bold-text-2 {
  font-style: normal;
}

.heading {
  color: #333;
  text-align: center;
  margin-bottom: 82px;
  font-family: Roboto, sans-serif;
  font-size: 52px;
}

.text-block-6 {
  color: var(--dim-grey);
  font-family: Roboto, sans-serif;
}

.link-2 {
  color: #ffd500;
  text-decoration: none;
}

.subtitle {
  font-size: 24px;
  line-height: 1.2em;
}

.grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template: "."
  / 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: start stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.bockblock {
  border: 0 solid #000;
  max-width: 1200px;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.bookbg {
  background-color: #f0f0f0;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 64px;
  display: flex;
  position: absolute;
  inset: 0%;
}

.bookcover {
  width: 100%;
  padding-top: 100%;
  position: relative;
  overflow: hidden;
}

.ratiobox {
  width: 100%;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.bookwrap {
  background-color: #5150aa;
  justify-content: center;
  align-items: center;
  display: flex;
}

.imgcont {
  background-image: url('../images/Foto-15.07.16-15-44-37.jpg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  padding-top: 0%;
  position: absolute;
  inset: 0%;
}

.body {
  color: var(--darkergrey);
  font-family: Roboto, sans-serif;
  font-size: 18px;
  line-height: 1.5em;
}

.heroblock {
  border: 0 solid #000;
  width: 100%;
  max-width: 1200px;
  margin: 80px auto 52px;
}

.aboutblock {
  border: 0 solid #000;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-left: 0;
  padding-right: 0;
}

.aboutinfo {
  z-index: 2;
  position: relative;
}

.aboutviz {
  width: 100%;
  padding-top: 125%;
  position: relative;
  overflow: hidden;
}

.about-image {
  object-fit: cover;
  width: 100%;
  flex: 1;
  min-height: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.about-image.big-book {
  z-index: 2;
  height: 400px;
  position: relative;
  left: auto;
  box-shadow: 0 1px 50px #00000014;
}

.aboutbg {
  background-color: transparent;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  inset: 0%;
}

.aboutwrap {
  background-color: transparent;
  justify-content: center;
  align-items: center;
  display: flex;
}

.paragraph {
  color: var(--darkergrey);
}

.paragraph-2 {
  margin-bottom: 24px;
}

.heroinfo {
  z-index: 2;
  flex: 1;
  margin-top: -50vh;
  position: relative;
}

.herocover {
  flex: 0 auto;
  width: 100%;
  padding-top: 100%;
  display: block;
  position: relative;
  overflow: visible;
}

.herowrap {
  background-color: #5150aa;
  justify-content: center;
  align-items: center;
  display: flex;
}

.herobg {
  background-color: #bcdbdf;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  position: absolute;
  inset: 0%;
}

.heroimg {
  object-fit: cover;
  width: auto;
  max-width: none;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  top: 0%;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.heroimg.big-book {
  z-index: 2;
  height: 400px;
  position: relative;
  left: auto;
  box-shadow: 0 1px 50px #00000014;
}

.fotocredits {
  color: var(--white);
  width: 100%;
  padding: 8px 12px;
  font-size: 12px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.twitterblock {
  border: 0 solid #000;
  max-width: 1200px;
  margin-bottom: 52px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.twitterinfo {
  z-index: 2;
  position: relative;
}

.tweet {
  width: 100%;
  padding-top: 0%;
  position: relative;
  overflow: hidden;
}

.paragraph-4 {
  margin-bottom: 0;
}

.herogrid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-direction: row;
  grid-template: ". ."
                 "Area Area"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: center stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.herop {
  width: 50%;
  padding-right: 24px;
}

.herop-press {
  font-size: 13px;
  line-height: 1.8;
  opacity: 0.75;
  margin-top: 8px;
}

.herop-press a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.herop-press a:hover {
  opacity: 0.7;
}

.heading-3 {
  margin-bottom: 32px;
}

.heading-3.abouthead {
  margin-bottom: 20px;
}

.heading-4 {
  font-family: Roboto, sans-serif;
}

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

.navheading {
  color: #0e1631;
  margin-top: 0;
  margin-bottom: 0;
  font-family: 'Roboto Condensed', Roboto, sans-serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-decoration: none;
}

.navheading:hover {
  text-decoration: underline;
}

.navheading:active, .homelink, .homelink.w--current {
  text-decoration: none;
}

.bookssection {
  padding-top: 64px;
  padding-left: 32px;
  padding-right: 32px;
}

.aboutsection {
  background-color: #b2c3d3;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 32px;
  display: flex;
}

.aboutsection.testimonial-section {
  text-align: center;
  padding-top: 300px;
  padding-bottom: 300px;
  position: relative;
}

.aboutsection.learn {
  z-index: 2;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding-top: 200px;
  position: relative;
}

.aboutsection.book-section {
  color: var(--white);
  text-align: center;
  background-color: #9c717180;
  padding-top: 300px;
  padding-bottom: 200px;
}

.aboutsection.book-reselers {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #f1f1f1;
  grid-template-rows: 330px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.aboutsection.free-sample-section {
  text-align: center;
  padding-bottom: 200px;
  position: relative;
}

.aboutsection.about-the-author {
  background-color: #d9e0e6;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.aboutsection.footer-section {
  background-color: var(--white);
  text-align: center;
  margin-top: 0;
  padding-top: 32px;
  padding-bottom: 32px;
}

.aboutsection.color-section {
  background-color: var(--dark-slate-blue);
  color: var(--white);
}

.aboutsection.form-section {
  background-color: var(--white);
}

.aboutsection.value-1 {
  padding-top: 200px;
}

.aboutsection.faq-section {
  text-align: center;
  padding-bottom: 200px;
}

.aboutsection.die-getriebenen {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.aboutsection.buy-section {
  text-align: center;
}

.stdbutton {
  color: var(--darkergrey);
  background-color: #fff;
  border: 2px solid #000;
  margin-bottom: 20px;
  margin-right: 20px;
  padding: 14px 24px;
  font-family: 'Roboto Condensed', Roboto, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.8em;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.stdbutton:hover {
  color: var(--white);
  background-color: #1c2e61;
  border-color: #1c2e61;
}

.stdbutton.abouttwitter {
  background-color: #fff0;
  margin-top: 20px;
}

.stdbutton.abouttwitter:hover {
  background-color: #1c2e61;
  border-color: #1c2e61;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.heading-6 {
  font-size: 42px;
}

.section {
  justify-content: flex-start;
  display: flex;
}

.text-block-7 {
  padding-left: 168px;
  padding-right: 170px;
}

.textsection {
  background-color: #ececec;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 70px;
  padding: 0 32px 32px;
  display: flex;
}

.textsection.testimonial-section {
  text-align: center;
  padding-top: 300px;
  padding-bottom: 300px;
  position: relative;
}

.textsection.learn {
  z-index: 2;
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  padding-top: 200px;
  position: relative;
}

.textsection.book-section {
  color: var(--white);
  text-align: center;
  background-color: #9c717180;
  padding-top: 300px;
  padding-bottom: 200px;
}

.textsection.book-reselers {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  border-bottom: 1px solid #f1f1f1;
  grid-template-rows: 330px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-top: 0;
  padding-bottom: 0;
  display: grid;
}

.textsection.free-sample-section {
  text-align: center;
  padding-bottom: 200px;
  position: relative;
}

.textsection.about-the-author {
  background-color: #d9e0e6;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
}

.textsection.footer-section {
  background-color: var(--white);
  text-align: center;
  margin-top: 0;
  padding-top: 32px;
  padding-bottom: 32px;
}

.textsection.color-section {
  background-color: var(--dark-slate-blue);
  color: var(--white);
}

.textsection.form-section {
  background-color: var(--white);
}

.textsection.value-1 {
  padding-top: 200px;
}

.textsection.faq-section {
  text-align: center;
  padding-bottom: 200px;
}

.textsection.die-getriebenen {
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.textsection.buy-section {
  text-align: center;
}

.textinfo {
  z-index: 2;
  position: relative;
}

.textblock {
  border: 0 solid #000;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-left: 0;
  padding-right: 0;
}

.gridnone {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template: "."
  / 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-content: center;
  place-items: start stretch;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.plainbottomspacer {
  height: 32px;
}

.bold-text-3, .bold-text-4, .bold-text-5, .paragraph-5, .bold-text-6 {
  font-weight: 400;
}

.tweetwrapsingle {
  display: none;
}

.text-span-2 {
  float: left;
  color: var(--darkergrey);
}

.text-span-1 {
  float: left;
  color: var(--darkergrey);
  padding-right: 3px;
}

.bockblock-copy {
  border: 0 solid #000;
  max-width: 1200px;
  margin-bottom: 120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 991px) {
  blockquote {
    margin-bottom: 40px;
  }

  .herosection {
    padding-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }

  .herosection.allsection {
    padding-top: 80px;
  }

  .page-container.book-hero {
    flex-wrap: wrap;
  }

  .page-container.why-read {
    grid-template-rows: auto auto auto auto;
  }

  .page-container.about-author-container {
    flex-wrap: wrap;
  }

  .page-container.book-guarantee {
    grid-row-gap: 40px;
    grid-template-rows: auto auto;
  }

  .page-container.footer-free-download {
    flex-wrap: wrap;
  }

  .page-container.support-hero {
    flex-wrap: wrap;
    grid-template-columns: 1fr;
  }

  .book-hero-heading {
    max-width: 100%;
    font-size: 72px;
  }

  .book-hero-heading.line-1 {
    font-size: 60px;
  }

  .book-cover {
    width: 500px;
    height: 550px;
    margin-top: 60px;
    position: relative;
  }

  .contactsection {
    padding-left: 24px;
    padding-right: 24px;
  }

  .contactsection.testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .contactsection.learn {
    padding-top: 100px;
  }

  .contactsection.book-reselers {
    grid-template-rows: 200px;
  }

  .contactsection.value-1, .contactsection.changelog-section {
    padding-top: 100px;
  }

  .bookimg {
    height: 100%;
  }

  .learn-grid {
    grid-template-rows: auto auto auto auto;
    height: auto;
  }

  .feature-paragrapg {
    margin-top: 0;
  }

  .feature-heading {
    position: static;
  }

  .learn-number {
    margin-bottom: 10px;
    position: static;
  }

  .author-image {
    width: 450px;
    height: 600px;
    margin-top: 60px;
    position: relative;
    top: 0;
  }

  .book-reseler-logo {
    max-width: 50%;
  }

  .testimonial-author-img {
    width: 100px;
    height: 100px;
    margin-bottom: 40px;
    position: static;
  }

  .free-sample-form-block.half-block {
    width: 100%;
    min-width: auto;
    margin-bottom: 40px;
  }

  .value-proposal-grid {
    grid-template-rows: auto auto auto;
  }

  .order-book-sideflex {
    width: 100%;
    min-width: auto;
    margin-top: 0;
  }

  .text-max-420 {
    line-height: 1.4em;
  }

  .cta-text {
    margin-right: 60px;
  }

  .social-icons-wrap {
    flex: 1;
    justify-content: flex-end;
  }

  .block-quote {
    margin-bottom: 40px;
  }

  .buy-the-book {
    grid-row-gap: 20px;
    grid-template-rows: auto auto;
    width: 100%;
  }

  .buy-the-book-available {
    width: 100%;
  }

  .changelog-hero {
    padding-top: 150px;
  }

  .changelog-div {
    grid-template-rows: auto auto auto;
  }

  .cards-grid-container {
    grid-column-gap: 20px;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .ratiobox {
    width: 100%;
    overflow: hidden;
  }

  .imgcont {
    width: 100%;
  }

  .heroblock {
    margin-top: 50px;
  }

  .aboutblock {
    padding-top: 0;
  }

  .about-image {
    height: 100%;
  }

  .heroinfo {
    margin-top: 0;
  }

  .heroimg {
    height: 100%;
    position: static;
  }

  .herogrid {
    grid-template-columns: 1fr;
    grid-template-areas: ".";
  }

  .herop {
    width: 100%;
  }

  .bookssection {
    padding-left: 24px;
    padding-right: 24px;
  }

  .aboutsection.testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .aboutsection.learn {
    padding-top: 100px;
  }

  .aboutsection.book-reselers {
    grid-template-rows: 200px;
  }

  .aboutsection.value-1, .aboutsection.changelog-section {
    padding-top: 100px;
  }

  .textsection.testimonial-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .textsection.learn {
    padding-top: 100px;
  }

  .textsection.book-reselers {
    grid-template-rows: 200px;
  }

  .textsection.value-1, .textsection.changelog-section {
    padding-top: 100px;
  }

  .textblock {
    padding-top: 24px;
  }

  .gridnone {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 80px;
  }

  h2 {
    font-size: 55px;
  }

  blockquote {
    margin-bottom: 40px;
  }

  .navigation {
    display: flex;
  }

  .nav-links {
    flex: 0 auto;
    display: none;
  }

  .nav-links.footer-navs {
    display: block;
  }

  .book-hero-heading {
    font-size: 60px;
  }

  .button.full-width-mobile {
    text-align: center;
    width: 100%;
  }

  .nav-link {
    margin-left: 20px;
    margin-right: 0;
    font-size: 16px;
    line-height: 1.2em;
  }

  .contactsection {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .contactsection.free-sample-section {
    padding-bottom: 100px;
  }

  .contactsection.about-the-author {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .page-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .book-reseler-logo {
    max-height: 80%;
  }

  .testimonial-bg-image {
    width: 85%;
    height: 90%;
  }

  .input.transparent-input, .input.free-chapter-input {
    margin-bottom: 30px;
  }

  .form, .order-book-sideflex {
    flex-wrap: wrap;
  }

  .value-list-item {
    flex-basis: 100%;
  }

  .cta-text {
    margin-bottom: 30px;
    margin-right: 0;
  }

  .buy-the-book-available {
    grid-template-rows: 100px 100px 100px;
    grid-template-columns: 1fr;
  }

  .cards-section {
    padding: 40px 20px;
  }

  .cards-grid-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
    align-self: stretch;
    max-width: none;
  }

  .subtitle {
    flex: 1;
    text-align: right;
    font-size: 20px;
  }

  .grid {
    flex-direction: column-reverse;
  }

  .bookbg {
    padding: 24px;
  }

  .ratiobox {
    width: 100%;
    overflow: hidden;
  }

  .imgcont {
    width: 100%;
    padding-top: 0%;
    position: absolute;
    inset: 0%;
  }

  .heroblock {
    margin-top: 45px;
  }

  .herogrid {
    grid-column-gap: 0px;
    flex-direction: column-reverse;
  }

  .navheading {
    font-size: 20px;
  }

  .homelink.w--current {
    flex: 0 auto;
  }

  .aboutsection {
    padding: 24px;
  }

  .aboutsection.free-sample-section {
    padding-bottom: 100px;
  }

  .aboutsection.about-the-author {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .textsection {
    padding: 24px;
  }

  .textsection.free-sample-section {
    padding-bottom: 100px;
  }

  .textsection.about-the-author {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .textinfo {
    width: 100%;
  }

  .textblock {
    padding-top: 0;
  }

  .gridnone {
    flex-direction: column-reverse;
  }

  .tweetwrapsingle {
    display: block;
  }

  .tweetwrapmulti {
    display: none;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 60px;
  }

  h2 {
    font-size: 40px;
    line-height: 1.2em;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 25px;
  }

  blockquote {
    margin-bottom: 40px;
    font-size: 20px;
  }

  .herosection.allsection {
    padding-left: 0;
    padding-right: 0;
  }

  .navigation {
    flex-direction: row;
    align-items: center;
  }

  .subtitle {
    flex: 1;
    text-align: right;
    font-size: 18px;
  }

  .logo-wrap {
    margin-bottom: 0;
  }

  .nav-links {
    display: none;
  }

  .nav-links.footer-copyright {
    justify-content: center;
    margin-top: 30px;
  }

  .nav-links.footer-navs {
    justify-content: center;
    margin-top: 0;
  }

  .page-container.testimonial-container {
    padding: 60px 40px;
  }

  .page-container.why-read {
    grid-row-gap: 40px;
  }

  .page-container.free-sample-container {
    text-align: center;
    padding-left: 40px;
    padding-right: 40px;
  }

  .page-container.footer-container {
    justify-content: center;
  }

  .book-hero-heading {
    font-size: 40px;
  }

  .book-hero-heading.line-1 {
    font-size: 38px;
  }

  .buttons-sideflex {
    flex-wrap: wrap;
  }

  .button-transparent.inverted-2._30-top-margin {
    margin-top: 30px;
  }

  .button-transparent.nav-menu-btn {
    width: 100%;
    margin-top: 10px;
    display: none;
  }

  .button-transparent._30-margin-top {
    margin-top: 30px;
  }

  .nav-link {
    text-align: left;
    flex: 0 auto;
    align-items: center;
    margin-right: 0;
    margin-left: 16px;
    font-size: 14px;
  }

  .book-cover {
    text-align: center;
    width: 100%;
    height: 450px;
    margin-top: 30px;
    padding-top: 40px;
    padding-bottom: 20px;
  }

  .contactsection {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .contactsection.book-section {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .contactsection.book-reselers {
    grid-template-rows: 200px 200px;
    grid-template-columns: 1fr 1fr;
  }

  .contactsection.faq-section {
    padding-bottom: 100px;
  }

  .contactsection.die-getriebenen {
    padding-top: 100px;
  }

  .contactsection.buy-section {
    padding-bottom: 100px;
  }

  .bookimg.big-book {
    height: 300px;
  }

  .book-desc {
    justify-content: center;
  }

  .listen-on {
    left: 10px;
    right: 10px;
  }

  .right-arrow, .left-arrow {
    width: 20px;
  }

  .author-image {
    object-fit: fill;
    border-radius: 0;
    width: 100%;
    height: 300px;
  }

  .order-after-chapter {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .testimonial-bg-image {
    width: 90%;
  }

  .text-block {
    top: 100px;
    right: -30px;
  }

  .who-should-grab-item.grab-1 {
    margin: 0;
  }

  .who-should-grab-item.grab-2 {
    align-self: center;
    margin: 0;
  }

  .who-should-grab-item.grab-3 {
    margin: 0;
  }

  .input {
    font-size: 16px;
  }

  .free-sample-heading {
    padding-left: 40px;
    padding-right: 40px;
    left: 0;
  }

  .small-paragraph {
    font-size: 16px;
  }

  .book-cover-img {
    height: 250px;
  }

  .navigation-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .powered-text {
    margin-left: 20px;
  }

  .textarea-input {
    font-size: 16px;
  }

  .image-wrap, .image-rectangle-overlay {
    height: 350px;
  }

  .order-book-sideflex {
    padding: 60px 40px;
  }

  .faq-question-wrap {
    text-align: left;
  }

  .social-icons-wrap {
    justify-content: center;
  }

  .social-icon {
    margin-left: 10px;
    margin-right: 10px;
  }

  .footer-link {
    text-align: left;
    flex: 0 auto;
    align-items: center;
    margin-right: 20px;
  }

  .support-image-wrap {
    width: 100%;
    height: 300px;
  }

  .centered-container {
    text-align: center;
    margin-bottom: 32px;
  }

  .cards-grid-container {
    grid-template-columns: 1fr;
    margin-left: 0;
    margin-right: 0;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .bockblock {
    margin-bottom: 32px;
  }

  .ratiobox {
    width: 100%;
    position: relative;
    overflow: hidden;
  }

  .bookwrap {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .imgcont {
    width: 100%;
    padding-top: 0%;
    position: absolute;
    inset: 0%;
  }

  .body {
    font-size: 16px;
  }

  .heroblock {
    margin-bottom: 32px;
  }

  .about-image.big-book {
    height: 300px;
  }

  .aboutwrap {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .paragraph-2 {
    font-size: 16px;
  }

  .herowrap {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .heroimg.big-book {
    height: 300px;
  }

  .paragraph-4 {
    font-size: 18px;
  }

  .herop {
    font-size: 16px;
  }

  .bookssection {
    padding-top: 32px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .aboutsection {
    padding: 16px;
  }

  .aboutsection.book-section {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .aboutsection.book-reselers {
    grid-template-rows: 200px 200px;
    grid-template-columns: 1fr 1fr;
  }

  .aboutsection.faq-section {
    padding-bottom: 100px;
  }

  .aboutsection.die-getriebenen {
    padding-top: 100px;
  }

  .aboutsection.buy-section {
    padding-bottom: 100px;
  }

  .textsection {
    padding: 16px;
  }

  .textsection.book-section {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .textsection.book-reselers {
    grid-template-rows: 200px 200px;
    grid-template-columns: 1fr 1fr;
  }

  .textsection.faq-section {
    padding-bottom: 100px;
  }

  .textsection.die-getriebenen {
    padding-top: 100px;
  }

  .textsection.buy-section {
    padding-bottom: 100px;
  }

  .textblock {
    padding-top: 16px;
  }

  .bockblock-copy {
    margin-bottom: 32px;
  }
}

#w-node-ea32c7fe-af05-010f-efef-1d3bbf7f5b50-2f47a103 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-ea32c7fe-af05-010f-efef-1d3bbf7f5b43-2f47a103 {
  grid-area: 2 / 1 / 3 / 3;
}

#w-node-df13be1e-b450-cb7c-1e65-64af8f4086cb-2f47a103 {
  order: -9999;
}

#w-node-d9bee957-c96b-321f-4d01-3dd938a8b3fc-2f47a103 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4e96c19f-202d-89b2-c16d-634f1865d8cb-2f47a103, #w-node-c7ae3392-01f2-49e5-e870-927357c1ac12-2f47a103, #w-node-_3d0dea96-6ea1-953a-3b07-24088af06eac-2f47a103, #w-node-_36301fd5-c59d-571e-af85-e26c8194eb33-2f47a103, #w-node-_388bc3ea-54e1-e721-deab-3482642a6692-2f47a103, #w-node-aa96320b-318d-a2b1-f88a-738dc6a56017-2f47a103 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_7486579c-1b5b-4927-bd9e-9e053c1c8d98-2f47a103 {
  grid-area: 1 / 1 / 2 / 2;
  justify-self: stretch;
}

#w-node-_7486579c-1b5b-4927-bd9e-9e053c1c8da5-2f47a103 {
  align-self: center;
}

#w-node-_8f52e7ce-ad9d-369b-6990-d53f5d361df3-7f47a105 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-ea32c7fe-af05-010f-efef-1d3bbf7f5b50-2f47a103 {
    order: -9999;
    grid-column: 1 / 2;
  }

  #w-node-ea32c7fe-af05-010f-efef-1d3bbf7f5b52-2f47a103 {
    order: -9999;
  }

  #w-node-ea32c7fe-af05-010f-efef-1d3bbf7f5b43-2f47a103 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-df13be1e-b450-cb7c-1e65-64af8f4086cb-2f47a103, #w-node-df13be1e-b450-cb7c-1e65-64af8f4086cd-2f47a103 {
    order: -9999;
  }

  #w-node-d9bee957-c96b-321f-4d01-3dd938a8b3fc-2f47a103, #w-node-_4e96c19f-202d-89b2-c16d-634f1865d8cb-2f47a103 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_4e96c19f-202d-89b2-c16d-634f1865d8ef-2f47a103, #w-node-_4e96c19f-202d-89b2-c16d-634f1865d8f1-2f47a103 {
    order: -9999;
  }

  #w-node-c7ae3392-01f2-49e5-e870-927357c1ac12-2f47a103 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-c7ae3392-01f2-49e5-e870-927357c1ac56-2f47a103, #w-node-c7ae3392-01f2-49e5-e870-927357c1ac58-2f47a103 {
    order: -9999;
  }

  #w-node-_3d0dea96-6ea1-953a-3b07-24088af06eac-2f47a103 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_3d0dea96-6ea1-953a-3b07-24088af06ef0-2f47a103, #w-node-_3d0dea96-6ea1-953a-3b07-24088af06ef2-2f47a103 {
    order: -9999;
  }

  #w-node-_36301fd5-c59d-571e-af85-e26c8194eb33-2f47a103 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_36301fd5-c59d-571e-af85-e26c8194eb49-2f47a103, #w-node-_36301fd5-c59d-571e-af85-e26c8194eb4b-2f47a103 {
    order: -9999;
  }

  #w-node-_388bc3ea-54e1-e721-deab-3482642a6692-2f47a103 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_388bc3ea-54e1-e721-deab-3482642a669f-2f47a103, #w-node-_388bc3ea-54e1-e721-deab-3482642a66a1-2f47a103 {
    order: -9999;
  }

  #w-node-aa96320b-318d-a2b1-f88a-738dc6a56017-2f47a103 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-aa96320b-318d-a2b1-f88a-738dc6a5602f-2f47a103, #w-node-aa96320b-318d-a2b1-f88a-738dc6a56031-2f47a103 {
    order: -9999;
  }

  #w-node-_7486579c-1b5b-4927-bd9e-9e053c1c8d98-2f47a103 {
    order: -9999;
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_7486579c-1b5b-4927-bd9e-9e053c1c8da5-2f47a103 {
    order: -9999;
  }

  #w-node-_8f52e7ce-ad9d-369b-6990-d53f5d361df3-7f47a105 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7486579c-1b5b-4927-bd9e-9e053c1c8d98-2f47a103 {
    order: -9999;
  }
}

/* Lazy fade-in animation for sections */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-section {
  opacity: 0;
  animation: fadeInUp 0.25s ease-out forwards;
  animation-play-state: paused;
}

.fade-in-section.is-visible {
  animation-play-state: running;
}

/* Soziale Medien – compact, light gray */
.social-section {
  padding: 28px 32px;
  text-align: center;
}

.social-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-label {
  font-family: Roboto, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #b0b0b0;
  text-transform: uppercase;
}

.social-text {
  font-family: Roboto, sans-serif;
  font-size: 14px;
  color: #a0a0a0;
}

.social-link {
  font-family: Roboto, sans-serif;
  font-size: 13px;
  color: #999;
  text-decoration: none;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  padding: 6px 16px;
  transition: color 0.2s, border-color 0.2s;
}

.social-link:hover {
  color: #555;
  border-color: #999;
}
