:root {
  --grey-900: #131520;
  --depth-line: #e9e9e9;
  --depth-off-white: #f4f2ec;
  --grey-100: #ecedf3;
  --primary-700: #6c2bd9;
  --primary-900: #4a1d96;
  --white: white;
  --body-background: #f9f8f4;
  --black: black;
  --grey-901: #838181;
  --primary-100: #edebfe;
  --primary-50: #f6f5ff;
  --green-500: #0e9f6e;
  --orange-500: #c27803;
  --red-500: #f05252;
  --grey-700: #404668;
  --grey-500: #5d6598;
  --grey-50-501: #f9f9fb;
  --grey-300: #a6abc9;
  --primary-200: #dcd7fe;
  --primary-25: #fafaff;
  --grey-25: #fcfcfd;
  --primary-800: #5521b5;
  --primary-600: #7e3af2;
  --primary-400: #ac94fa;
  --grey-800: #30354f;
  --grey-600: #4a5078;
  --grey-400: #7a81ae;
  --grey-200: #cccfe0;
  --green-50-501: #f3faf7;
  --orange-50-501: #fff8f1;
  --red-50-501: #fdf2f2;
}

.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(--grey-900);
  background-color: #f9f8f4;
  font-family: Neue Haas Display, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

h1 {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.25;
}

h2 {
  color: var(--grey-900);
  margin-top: 1em;
  margin-bottom: .5em;
  font-size: 3em;
  font-weight: 400;
  line-height: 1.25;
}

h3 {
  color: var(--grey-900);
  margin-top: 1em;
  margin-bottom: .5em;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.25;
}

h4 {
  color: var(--grey-900);
  margin-top: 1em;
  margin-bottom: .5em;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.25;
}

h5 {
  color: var(--grey-900);
  margin-top: 1em;
  margin-bottom: .75em;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.25;
}

h6 {
  color: var(--grey-900);
  margin-top: 1em;
  margin-bottom: .75em;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.25;
}

p {
  margin-top: 15px;
  margin-bottom: 1em;
  font-size: 1.125em;
}

a {
  color: var(--grey-900);
  text-decoration: underline;
  transition: opacity .2s;
}

img {
  max-width: 100%;
  display: inline-block;
}

.header {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.section {
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid var(--depth-line);
  background-color: var(--depth-off-white);
  padding-top: 9vh;
  padding-bottom: 9vh;
  display: block;
  position: relative;
}

.section.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.section-bottom-space-sm {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 0;
  display: grid;
}

.container {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  align-self: auto;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  position: relative;
}

.text-caps {
  letter-spacing: .25em;
  text-transform: uppercase;
}

.style-guide-title {
  background-color: var(--grey-100);
  border-radius: 10px;
  width: 336px;
  margin-right: 48px;
  padding: 36px;
  position: relative;
}

.btn {
  color: var(--grey-900);
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  align-items: center;
  margin: 20px 6px 6px;
  padding: 8px 2px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.btn:hover {
  text-decoration: none;
}

.btn.mobile-display-none {
  display: none;
}

.text-grey-900 {
  color: var(--grey-900);
}

.style-guide-content-item {
  margin-bottom: 12px;
  margin-right: 12px;
}

.sticky-top {
  position: sticky;
  top: 0;
}

.sticky-top.sticky-heading {
  top: 24px;
}

.style-guide-content {
  flex: 1;
}

.row {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

.row.style-guide-row {
  display: flex;
}

.row.row-justify-between {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: static;
}

.row.style-guide-content-row {
  margin-bottom: 12px;
}

.row.row-split-content {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.row.mb-16 {
  margin-bottom: 16px;
  display: none;
}

.row.row-header {
  grid-column-gap: 64px;
  grid-row-gap: 48px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.btn-circle {
  background-color: var(--primary-700);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: transform .2s;
  display: flex;
}

.btn-circle:hover {
  background-color: var(--primary-900);
  opacity: 1;
  transform: scale(1.1);
}

.btn-circle.bg-white:hover, .bg-white {
  background-color: var(--white);
}

.back-to-top-button-wrap {
  z-index: 99;
  position: fixed;
  bottom: 24px;
  right: 24px;
}

.section-title {
  text-align: center;
  max-width: 768px;
  margin-bottom: 64px;
  margin-left: auto;
  margin-right: auto;
}

.content {
  max-width: 560px;
}

.link-no-underline {
  text-decoration: none;
}

.link-no-hover:hover {
  opacity: 1;
}

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

.divider {
  background-color: var(--grey-100);
  height: 1px;
}

.row-btns {
  flex-flow: wrap;
  justify-content: flex-start;
  align-self: auto;
  align-items: stretch;
  margin: -6px;
  display: flex;
}

.btn-icon-l {
  width: 20px;
  height: 20px;
  margin-left: 0;
  margin-right: 8px;
}

.btn-2 {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  background-color: #1757c2;
  border: 2px solid #1757c2;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: 6px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.btn-2:hover {
  opacity: 1;
  color: #fff;
  background-color: #5d89d4;
  border-color: #5d89d4;
  text-decoration: none;
}

.btn-icon-r {
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-bottom: 2px;
  margin-left: 8px;
  margin-right: 0;
  display: flex;
}

.display-2xl {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 4.5rem;
  line-height: 1.25;
}

.display-2xl.mb-0 {
  margin-bottom: 0;
}

.display-xl {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1.25;
}

.display-xl.preload-text-top, .display-xl.preload-text-btm {
  margin-bottom: 0;
  font-weight: 400;
}

.display-lg {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 3rem;
  line-height: 1.25;
}

.display-md {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.25;
}

.display-sm {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 1.875rem;
  line-height: 1.25;
}

.display-xs {
  color: var(--grey-900);
  margin-top: 0;
  margin-bottom: .5em;
  font-size: 1.5rem;
  line-height: 1.25;
}

.text-xl {
  text-align: center;
  margin-top: 0;
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-xl.header-text {
  text-align: left;
  margin-bottom: 64px;
}

.text-lg {
  margin-top: 0;
  font-size: 1.125rem;
  line-height: 1.5;
}

.text-md {
  margin-top: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.text-sm {
  margin-top: 0;
  font-size: .875rem;
  line-height: 1.5;
}

.text-xs {
  margin-top: 0;
  font-size: .75rem;
  line-height: 1.5;
}

.text-normal {
  font-weight: 400;
}

.text-medium {
  font-weight: 500;
}

.text-medium.mb-32 {
  margin-bottom: 32px;
}

.navigation {
  z-index: 2;
  background-color: #0000;
  align-items: center;
  width: 100%;
  height: 96px;
  display: flex;
  position: sticky;
  top: 0;
}

.logo {
  z-index: 2;
  color: var(--grey-900);
  align-items: center;
  width: auto;
  text-decoration: none;
  display: flex;
  position: absolute;
}

.logo-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 2px;
  margin-right: 8px;
}

.hero-img {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0 0;
  background-size: auto;
  border-radius: 0;
  width: 100%;
}

.hero-img-content {
  perspective: 1000px;
  position: relative;
}

.image-light-accent {
  opacity: 1;
  transform-style: preserve-3d;
  width: 50%;
  max-width: none;
  display: none;
  position: absolute;
  inset: 330px 0% -55% -20%;
  transform: translate3d(0, 0, 40px);
}

.signature {
  max-width: 60%;
  height: auto;
  margin-top: 32px;
}

.footer {
  flex-direction: row;
  align-items: center;
  padding-top: 96px;
  padding-bottom: 48px;
  display: block;
  position: relative;
}

.footer-top {
  flex-flow: wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 72px;
  display: flex;
}

.page-wrap {
  overflow: hidden;
}

.preloader {
  z-index: 9999;
  background-color: #f9f8f4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 10vh;
  font-weight: 400;
  display: none;
  position: fixed;
  inset: 0%;
}

.preloader-text-wrap {
  margin-right: 5vw;
  display: flex;
  overflow: hidden;
}

.preloader-text-wrap.btm {
  margin-left: 5vw;
  margin-right: 0;
}

.hero-image-wrap, .header-text-wrap {
  overflow: hidden;
}

.header-text-wrap.btm {
  margin-bottom: 24px;
}

.line {
  min-width: 232px;
}

.line-wrap {
  width: 232px;
  position: absolute;
  inset: auto 0% -30% 20%;
}

.preloader-line-wrap {
  position: relative;
}

.line-wrap-inner {
  overflow: hidden;
}

.footer-btm {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  display: flex;
}

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

.image-light-accent-2, .image-light-accent-3 {
  z-index: -1;
  opacity: 1;
  filter: blur(30px);
  transform-style: preserve-3d;
  width: 70%;
  max-width: none;
  display: block;
  position: absolute;
  inset: 289px 0% -55% -25%;
  transform: translate3d(0, 0, 40px);
}

.image-light-accent-copy {
  z-index: -1;
  opacity: 1;
  filter: sepia() blur(30px);
  transform-style: preserve-3d;
  width: 70%;
  max-width: none;
  display: block;
  position: absolute;
  inset: -72px 0% -55% 56%;
  transform: translate3d(0, 0, 40px);
}

.utility-page-wrap {
  border-top: 1px solid var(--depth-line);
  border-bottom: 1px solid var(--depth-line);
  background-color: var(--depth-off-white);
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 90vh;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  overflow: visible;
}

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

.image {
  max-width: 50%;
}

.icon {
  font-size: 32px;
}

.menu-button {
  background-color: #0000;
  padding: 0;
}

.menu-button.w--open {
  color: var(--black);
  background-color: #0000;
}

.nav-menu {
  z-index: 9001;
  background-color: var(--white);
  color: var(--white);
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  height: auto;
  max-height: 100vh;
  display: flex;
  position: fixed;
  inset: 0%;
}

.nav-link {
  color: var(--black);
  background-color: #0000;
  align-self: stretch;
}

.nav-link-2 {
  color: var(--black);
}

.image-2 {
  max-width: 4%;
}

.nav {
  z-index: 999;
  background-color: #f9f8f4;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.link {
  order: 0;
  padding-top: 40px;
  font-size: 4vw;
  line-height: 4vw;
}

.lottie-animation {
  color: var(--black);
  background-color: #0000;
  width: 70px;
}

.lottie-animation-2 {
  max-width: 35px;
}

.lottie-animation-3 {
  width: 70px;
}

.menu-button-2 {
  z-index: 2;
  cursor: pointer;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: static;
  inset: 0% 0% auto auto;
}

.burger-line {
  background-color: #000;
  width: 40px;
  height: 2px;
  margin-top: 4px;
  margin-bottom: 4px;
}

.full-screen-menu {
  background-color: #f9f8f4;
  flex-direction: column;
  flex: 1;
  place-content: center;
  align-items: center;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.nav-link-3 {
  color: var(--black);
  text-transform: capitalize;
  margin-top: 10px;
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  text-decoration: none;
  display: flex;
}

.nav-link-3:hover {
  color: #5e5b5bbf;
}

.btn-3 {
  color: #131520;
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  align-items: center;
  margin: 6px;
  padding: 8px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
  position: relative;
}

.btn-3:hover {
  text-decoration: none;
}

.row-btns-2 {
  flex-wrap: wrap;
  align-items: stretch;
  margin: -6px;
  display: flex;
}

.logo-2 {
  color: #131520;
  align-items: center;
  width: auto;
  text-decoration: none;
  display: flex;
}

.body-2 {
  background-color: #f9f8f4;
}

.image-3 {
  max-width: 5%;
  margin-left: 0;
  display: inline-block;
  position: static;
  inset: 0%;
}

.heading {
  font-size: 3rem;
  line-height: 1.2;
  display: block;
}

.grid {
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  grid-template-areas: ".";
  grid-auto-flow: row;
}

.image-4 {
  max-width: 70%;
}

.heading-2 {
  font-family: Neue Haas Display, sans-serif;
}

.image-5 {
  max-width: 70%;
  margin-bottom: .5em;
}

.heading-3 {
  color: #797979;
  margin-top: .2em;
}

.book-title {
  align-self: flex-start;
  padding-top: 10px;
  font-size: 25px;
  font-weight: 400;
}

.image-6 {
  max-width: 80%;
}

.book-collection-container {
  flex-direction: column;
  align-items: center;
  display: block;
}

.collection-item {
  clear: none;
  flex-flow: column wrap;
  place-content: center space-between;
  align-items: center;
  min-height: 400px;
  margin: 20px 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  position: relative;
}

.book-wrapper {
  align-self: flex-start;
  width: 200px;
}

.book-cover-link {
  perspective: 1000px;
  background-image: url('../images/5e368ae8c62330119018504a_book-cover-overlay.png');
  background-position: 50%;
  background-size: cover;
  min-width: 200px;
  height: 300px;
  overflow: hidden;
  box-shadow: 0 10px 10px -5px #00000080;
}

.highlight {
  opacity: .1;
  filter: blur(20px);
  background-color: #fffc;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: visible;
}

.overlay-bc {
  opacity: .15;
  object-fit: fill;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.overlay-picture {
  max-height: 100%;
  display: inline-block;
}

.book-title-2 {
  color: #fff;
  text-align: center;
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 18px;
  line-height: 22px;
}

.collection-item-2 {
  place-content: flex-start;
  align-items: center;
}

.section-2 {
  width: 100%;
  height: 100%;
}

.collection-list-books {
  flex-wrap: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

.collection-list-wrapper {
  margin-left: 38%;
}

.heading-4 {
  position: static;
  top: 120px;
}

.div-block {
  position: sticky;
  top: 150px;
}

.text-block {
  color: #919191;
}

.link-block {
  text-decoration: none;
  display: flex;
}

.reading {
  padding-top: 9vh;
  display: block;
  position: relative;
}

.reading.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.reading.section-bottom-space-sm {
  padding-bottom: 0;
}

._2021 {
  padding-top: 9vh;
  display: block;
  position: relative;
}

._2021.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

._2021.section-bottom-space-sm {
  padding-bottom: 0;
}

._2020 {
  padding-top: 9vh;
  display: block;
  position: relative;
}

._2020.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

._2020.section-bottom-space-sm {
  padding-bottom: 0;
}

._2019 {
  padding-top: 9vh;
  display: block;
  position: relative;
}

._2019.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

._2019.section-bottom-space-sm {
  padding-bottom: 0;
}

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

.section-3 {
  display: block;
  position: static;
  inset: auto 0% 0%;
}

.body-3 {
  background-color: #f9f8f4;
}

.top-post {
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
  display: flex;
}

.top-post.homepage {
  border-top: 1px solid #e9e9e9;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: inline-block;
}

.container-2 {
  flex-wrap: wrap;
  place-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}

.container-2.cc-center {
  text-align: left;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.container-2.cc-post-image {
  flex: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.posts-wrapper {
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.posts-wrapper.cc-top-post {
  justify-content: space-between;
}

.top-post-item {
  perspective: 2000px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.top-post-image {
  width: 60%;
}

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

.top-post-text {
  flex-flow: column wrap;
  flex: 0 auto;
  width: 40%;
  padding-left: 50px;
  display: flex;
}

.category-link {
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  text-decoration: none;
}

.category-link:hover {
  text-decoration: underline;
}

.top-post-link-block {
  text-decoration: none;
}

.h2 {
  color: #000;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
}

.h2.post-title {
  text-transform: none;
  font-weight: 500;
}

.post-short-text {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.post-author-text {
  margin-top: 30px;
  display: flex;
}

.post-author-text.cc-center {
  align-items: center;
}

.post-author-text.cc-small-thumbnail {
  margin-top: 0;
  display: none;
}

.post-author {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  text-decoration: none;
}

.post-author:hover {
  text-decoration: underline;
}

.post-author.cc-top-margin {
  margin-right: 5px;
}

.body-4 {
  background-color: #f9f8f4;
}

.text-container {
  width: 65%;
}

.h1 {
  color: #000;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 54px;
  font-weight: 500;
  line-height: 60px;
}

.title-section {
  justify-content: center;
  align-items: center;
  padding: 100px 30px 90px;
  display: flex;
}

.section-title-text {
  color: #999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  text-decoration: none;
}

.section-title-text:hover {
  text-decoration: underline;
}

.author-image-wrapper {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  margin-right: 15px;
  display: flex;
  overflow: hidden;
}

.post-date-text {
  font-size: 10px;
}

.post-content {
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
  display: flex;
}

.post-content-wrapper {
  flex-wrap: wrap;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  max-width: 800px;
  display: block;
}

._3-posts {
  justify-content: center;
  align-items: center;
  padding-bottom: 90px;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.posts-collection-list-wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.posts-collection-list {
  flex-wrap: wrap;
  margin: -25px -10px;
  display: flex;
}

._3-collection-item {
  flex-wrap: wrap;
  align-content: stretch;
  align-items: stretch;
  width: 33.3333%;
  padding-top: 25px;
  padding-bottom: 25px;
}

.text-span {
  filter: saturate(65%);
  font-size: 3.5rem;
}

.reading-buttons {
  justify-content: center;
  align-items: center;
  padding-top: 20px;
  display: flex;
}

.letter-memo-buttons {
  justify-content: center;
  align-items: center;
  display: flex;
}

.memo-links {
  text-align: left;
  flex-flow: column wrap;
  place-content: center flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-top: 32px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 1.25rem;
  display: flex;
}

.memo-links-list {
  flex-flow: column wrap;
  place-content: flex-start;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 10px;
  padding-left: 32px;
  padding-right: 32px;
  font-size: 1.25rem;
  display: flex;
}

._2018 {
  padding-top: 9vh;
  display: block;
  position: relative;
}

._2018.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

._2018.section-bottom-space-sm {
  padding-bottom: 0;
}

.container-3 {
  flex-wrap: wrap;
  align-items: center;
  max-width: 30%;
  display: flex;
}

.section-4 {
  margin-top: 30px;
}

.bali {
  padding-bottom: 25px;
}

.capetown {
  padding-bottom: 15px;
}

.posts-image {
  margin-bottom: 20px;
}

.post-info-text {
  flex-flow: column wrap;
  align-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.post-title {
  margin-top: 15px;
  margin-bottom: 15px;
  text-decoration: none;
}

.h3 {
  color: #000;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.latest-posts {
  border-top: 1px solid var(--depth-line);
  justify-content: center;
  align-items: center;
  padding: 90px 30px;
  display: flex;
}

._2-collection-item {
  flex-wrap: wrap;
  align-items: flex-start;
  width: 50%;
  padding-top: 25px;
  padding-bottom: 25px;
}

.h3-2 {
  color: #000;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
}

.progress-wrapper {
  z-index: 1000;
  position: sticky;
  inset: 96px 0% auto;
}

.progress-bar {
  background-color: var(--black);
  height: 2px;
}

.search {
  display: flex;
}

.button {
  background-color: var(--black);
  margin-top: 15px;
  line-height: 2;
  display: flex;
}

.image-7 {
  position: relative;
}

.submit-button {
  background-color: var(--black);
}

.search-2 {
  flex-direction: row;
  flex: 0 auto;
  display: flex;
  position: absolute;
  inset: 0% 7% 0% auto;
}

.image-8 {
  z-index: 2;
  align-self: center;
  width: 30px;
  padding-top: 3px;
  display: block;
  position: absolute;
  inset: 0% 8% 0% auto;
}

.search-screen {
  z-index: 5;
  background-color: #f9f8f4;
  flex-direction: column;
  flex: 1;
  place-content: center;
  align-items: center;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.image-9 {
  width: 40px;
  position: absolute;
  inset: 2% 2% auto auto;
}

.search-input {
  background-color: #fff0;
  border-bottom: 1px solid #000;
}

.search-3 {
  position: static;
}

.div-block-2 {
  width: 60%;
}

.search-button {
  background-color: var(--black);
  position: absolute;
}

.home-quote {
  background-color: #f4f2ec;
  border-top: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  margin-top: 9vh;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 32px;
}

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

.quote {
  text-align: center;
  text-transform: none;
  white-space: normal;
  font-size: 35px;
  font-style: normal;
  font-weight: 400;
}

.image-10 {
  border-radius: 50%;
  max-width: 6%;
  margin-right: 10px;
  display: inline-block;
  position: static;
}

.quote-item {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: block;
}

.quote-name {
  color: #666;
  align-self: center;
  font-size: 20px;
  font-weight: 400;
  position: static;
}

.div-block-3 {
  flex-direction: row;
  justify-content: center;
  margin-top: 20px;
  transition: opacity .2s;
  display: flex;
}

.div-block-3:hover {
  filter: saturate(60%);
}

.div-block-4 {
  display: none;
}

._404-home {
  color: var(--white);
  letter-spacing: 1px;
  white-space: nowrap;
  cursor: pointer;
  background-color: #000;
  align-items: center;
  width: 100px;
  margin-top: 25px;
  margin-bottom: 6px;
  padding-top: 8px;
  padding-bottom: 8px;
  font-weight: 400;
  text-decoration: none;
  transition-property: none;
  display: flex;
  position: static;
}

._404-home:hover {
  text-decoration: none;
}

._404-home.mobile-display-none {
  display: none;
}

.lottie-animation-4 {
  max-width: 50%;
  margin-left: 40px;
  position: static;
  inset: 0% 0% auto;
}

.home-section {
  background-color: #0000;
  padding-top: 9vh;
  padding-bottom: 9vh;
  display: block;
  position: relative;
}

.home-section.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.home-section.section-bottom-space-sm {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 0;
  display: grid;
}

.home-about {
  padding-top: 9vh;
  padding-bottom: 9vh;
  display: block;
  position: relative;
}

.home-about.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

.home-about.section-bottom-space-sm {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 0;
  display: grid;
}

.text-block-3 {
  padding-left: 5px;
  padding-right: 5px;
}

.text-block-4 {
  text-transform: none;
}

.read-time {
  color: var(--black);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}

.into-text {
  margin-top: 15px;
}

.intro-text {
  font-size: 20px;
}

.social-icons {
  margin-bottom: 10px;
  display: none;
}

.image-11 {
  max-width: 30px;
}

.facebook {
  margin-right: 10px;
  padding-right: 0;
}

.twitter {
  margin-right: 10px;
}

.book {
  margin-top: 100px;
}

.column {
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 150px;
}

.columns {
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.image-12 {
  max-width: 50%;
}

.heading-5 {
  margin-bottom: 0;
  font-weight: 500;
}

.heading-6 {
  margin-bottom: 0;
}

.author {
  color: var(--grey-901);
  font-size: 1.5rem;
}

.image-13 {
  max-width: 100%;
}

.book-display {
  flex: 0 auto;
  align-self: flex-start;
  width: auto;
  max-width: 200%;
}

.share-button-item {
  border: 1px solid #000;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  display: flex;
}

.share-button-title {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 500;
}

.share-button {
  opacity: 1;
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-top: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.social-share-icon {
  color: var(--grey-900);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
  height: 30px;
  position: absolute;
}

.social-share-code {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.div-block-5 {
  display: flex;
}

.newsletter {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  inset: 0%;
}

.columns-2 {
  justify-content: center;
  display: flex;
  position: absolute;
  inset: 0%;
}

.container-5 {
  background-color: var(--black);
  flex-flow: row;
  flex: 0 auto;
  place-content: stretch center;
  align-self: center;
  align-items: center;
  max-width: 50%;
  max-height: 50%;
  display: flex;
  position: absolute;
  inset: 0%;
}

.book-cover-link---book-feauture {
  perspective: 1000px;
  background-image: url('../images/5e368ae8c62330119018504a_book-cover-overlay.png');
  background-position: 50%;
  background-size: cover;
  min-width: 333.3px;
  height: 500px;
  overflow: hidden;
  box-shadow: 0 10px 10px -5px #00000080;
}

.highlight-book-feature {
  opacity: .1;
  filter: blur(20px);
  background-color: #fffc;
  border-radius: 50%;
  width: 333.3px;
  min-width: 333.3px;
  height: 333.3px;
  position: absolute;
  inset: 0% auto auto 0%;
  overflow: hidden;
}

.link-block-3 {
  margin-top: 20px;
  margin-right: 20px;
}

.section-5 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.image-14 {
  border-radius: 100%;
  width: 50px;
  max-width: 20%;
  height: 50px;
  margin-right: 20px;
}

.collection-item-3 {
  align-items: center;
  display: block;
}

.heading-7 {
  align-self: auto;
}

.div-block-6 {
  align-items: center;
  display: flex;
}

._404-text {
  text-align: left;
  white-space: normal;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-top: auto;
  margin-bottom: auto;
  display: flex;
}

.column-3 {
  padding-left: 0;
  padding-right: 0;
  position: static;
  inset: 0%;
}

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

.column-4 {
  padding-left: 0;
  padding-right: 0;
  position: relative;
}

.image-15 {
  display: inline-block;
  box-shadow: 0 15px 20px -8px #000000b3;
}

.div-block-8 {
  position: static;
  inset: 0%;
}

.div-block-9 {
  background-color: var(--white);
  opacity: .15;
  filter: blur(20px);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  display: flex;
  position: absolute;
  inset: -11% 0% 0% 38%;
  overflow: hidden;
}

.text-block-6 {
  font-weight: 400;
}

.div-block-10 {
  background-color: #000;
  background-image: linear-gradient(135deg, #000, #2b2b2b);
  width: 75vw;
  max-width: 75vw;
  height: 75vh;
}

.popup-heading {
  color: #fff;
  flex-wrap: wrap;
  margin-top: .5em;
  margin-bottom: 15px;
  font-weight: 500;
  display: block;
}

.div-block-11 {
  border: 5px solid var(--white);
  width: 20%;
}

.container-6 {
  padding-left: 32px;
  padding-right: 32px;
}

.paragraph {
  color: #fff;
  margin-top: 25px;
  margin-right: 300px;
}

.field-label {
  color: #fff;
}

.field-label-2 {
  color: #fff;
  font-weight: 400;
}

.form {
  margin-top: 40px;
}

.form-block {
  margin-right: 300px;
}

.submit-button-2 {
  color: var(--black);
  background-color: #fff;
}

.popup-exit {
  color: var(--white);
  background-color: #0000;
  max-width: 5%;
  position: absolute;
  inset: 16% 0% auto 916.313px;
}

.div-block-12 {
  flex-direction: row;
  justify-content: space-between;
  display: flex;
}

.section-6 {
  max-width: 800px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: block;
}

.heading-8 {
  margin-top: auto;
  padding-right: 30px;
}

.rich-text-block {
  line-height: 2;
}

.footer-newsletter {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.button-2 {
  background-color: var(--depth-off-white);
  color: var(--black);
  border: 1px solid #000;
  margin-top: 15px;
}

.collection-list-wrapper-2 {
  flex-flow: row;
  align-items: stretch;
  margin-top: 20px;
  display: none;
}

.collection-list {
  margin-left: -10px;
  display: flex;
}

.collection-item-4 {
  padding-left: 10px;
  padding-right: 10px;
}

.button-3 {
  background-color: var(--depth-off-white);
  color: var(--black);
  border: 1px solid #000;
  padding: 5px 10px;
  font-size: 15px;
}

.button-3:hover {
  background-color: var(--body-background);
}

.share-button-facebook {
  width: 30px;
  height: 30px;
  margin-right: 10px;
}

.share-button-twitter, .share-button-linkedin {
  width: 30px;
  height: 30px;
}

.html-embed {
  display: block;
}

.link-block-4 {
  margin-right: 10px;
}

.link-block-5 {
  text-decoration: none;
}

.social-icon.twitter {
  margin-right: 0;
  text-decoration: none;
}

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

.link-block-6 {
  background-color: #fff;
  border-radius: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 150px;
  display: flex;
  overflow: hidden;
}

.heading-9 {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-left: 50px;
  text-decoration: none;
  display: block;
}

.div-block-13 {
  justify-content: space-between;
  margin-right: 50px;
  display: flex;
}

.image-17 {
  max-width: 30%;
  position: relative;
  left: 100px;
}

.div-block-14 {
  background-color: var(--white);
  border-radius: 20px;
}

.best-nonfiction-button {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 150px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  text-decoration: none;
  transition: all .2s, opacity .2s;
  display: flex;
  overflow: visible;
}

.best-nonfiction-button:hover {
  transform: translate(0, -5px);
  box-shadow: 0 10px 20px -15px #0009;
}

.heading-10 {
  margin-top: 0;
  margin-bottom: 0;
}

.image-18 {
  width: 100px;
  max-width: none;
  height: auto;
  position: static;
}

.div-block-15 {
  flex: 0 auto;
  justify-content: flex-end;
  width: auto;
  display: none;
  position: static;
}

.div-block-16 {
  background-color: var(--depth-off-white);
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  width: 50px;
  min-width: 50px;
  height: 50px;
  margin-right: 20px;
  display: flex;
  position: relative;
}

.image-19 {
  max-width: 60%;
}

.best-fiction-button {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 150px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  text-decoration: none;
  transition: all .2s, opacity .2s;
  display: flex;
  overflow: visible;
}

.best-fiction-button:hover {
  transform: translate(0, -5px);
  box-shadow: 0 10px 20px -15px #0009;
}

.wisdom-books-button {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 150px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  text-decoration: none;
  transition: all .2s, opacity .2s;
  display: flex;
  overflow: visible;
}

.wisdom-books-button:hover {
  transform: translate(0, -5px);
  box-shadow: 0 10px 20px -15px #000;
}

.best-selling-books-button {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 150px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  text-decoration: none;
  transition: all .2s, opacity .2s;
  display: flex;
  overflow: visible;
}

.best-selling-books-button:hover {
  transform: translate(0, -5px);
  box-shadow: 0 10px 20px -15px #0009;
}

.text-block-7 {
  margin-bottom: 1em;
}

.book-review-button {
  background-color: var(--white);
  border-radius: 20px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 150px;
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 50px;
  padding-right: 50px;
  text-decoration: none;
  transition: all .2s, opacity .2s;
  display: flex;
  overflow: visible;
}

.book-review-button:hover {
  transform: translate(0, -5px);
  box-shadow: 0 10px 20px -15px #0009;
}

.section-7 {
  max-width: 1280px;
  margin-top: 72px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
}

.div-block-17 {
  opacity: 1;
  background-image: linear-gradient(#0000 27%, #fff 96%);
  width: 500px;
  height: 500px;
  display: flex;
  position: absolute;
}

.body-5 {
  background-color: var(--white);
}

.html-embed-2 {
  z-index: 1;
  position: absolute;
  inset: 0% 0% 30%;
}

.div-block-18 {
  position: static;
}

.heading-11 {
  color: var(--white);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.div-block-19 {
  z-index: 5;
  margin-top: 30px;
  position: absolute;
}

.section-8 {
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-right: 100px;
}

.background {
  position: static;
}

.div-block-20 {
  z-index: 5;
  margin-top: 160px;
  position: absolute;
}

.heading-12 {
  color: var(--white);
  font-weight: 500;
}

.section-9 {
  margin-top: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-right: 100px;
}

.div-block-21 {
  background-image: url('../images/Rectangle-5.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
}

.image-21 {
  transform: translate(0);
}

.logos {
  flex: 1;
  max-width: 560px;
  margin-top: 30px;
  margin-left: 20px;
}

.grid-2 {
  grid-template-rows: auto auto auto;
  justify-items: stretch;
  padding-top: 0;
  padding-right: 0;
}

.image-22 {
  max-width: 80%;
}

.image-22:hover {
  filter: saturate(80%);
}

.image-23 {
  max-width: 80%;
}

.image-23:hover {
  filter: saturate(80%);
}

.image-24 {
  max-width: 80%;
}

.image-24:hover {
  filter: saturate(80%);
}

.image-25 {
  max-width: 80%;
}

.image-25:hover {
  filter: saturate(80%);
}

.image-26 {
  max-width: 80%;
}

.image-26:hover {
  filter: saturate(80%);
}

.div-block-22 {
  max-width: 560px;
}

.image-27 {
  max-width: 80%;
}

.email {
  flex-direction: column;
  justify-content: center;
  display: block;
  position: static;
}

.paragraph-4 {
  max-width: 500px;
}

.form-block-2 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  max-width: 500px;
  margin-bottom: 50px;
  display: block;
}

.form-2 {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-end;
  display: flex;
}

.text-field {
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: black black var(--grey-900);
  color: #fff;
  background-color: #0000;
  width: 500px;
  height: 48px;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
  font-size: 18px;
}

.text-field:focus {
  color: #fff;
}

.text-field::placeholder {
  color: var(--grey-900);
  text-align: left;
  font-size: 18px;
}

.submit-button-3 {
  z-index: 2;
  border-style: none none solid;
  border-width: 1px 1px 2px;
  border-color: #fff #fff var(--grey-900);
  background-color: #0000;
  background-image: url('../images/next-black.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: contain;
  width: 28px;
  padding-top: 5px;
  padding-bottom: 5px;
}

.success-message-2 {
  background-color: #0000;
  padding: 0;
}

.text-block-8 {
  display: flex;
}

.container-main {
  z-index: 1;
  flex-direction: row;
  justify-content: space-between;
  align-self: auto;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  position: relative;
}

.container-footer {
  z-index: 1;
  flex-direction: column;
  justify-content: space-between;
  align-self: auto;
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  display: flex;
  position: relative;
}

.section-10 {
  max-width: 1380px;
  margin-top: 50px;
  margin-left: 32px;
  margin-right: 32px;
}

.grid-3 {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 50px;
}

.search-result-item {
  justify-content: center;
  align-items: stretch;
  margin-bottom: 50px;
  display: flex;
}

.div-block-23 {
  flex-direction: column;
  justify-content: flex-start;
  display: flex;
}

.breadcrumbs {
  flex-wrap: nowrap;
  align-items: center;
  width: 100%;
  margin-top: 50px;
  font-size: 12px;
  display: flex;
}

.link-3 {
  font-size: 12px;
  text-decoration: none;
}

.text-block-9 {
  margin-left: 10px;
  margin-right: 10px;
}

.image-29 {
  width: 8px;
  margin-left: 5px;
  margin-right: 5px;
}

.link-4 {
  margin-right: 10px;
  text-decoration: none;
}

.section-11 {
  border-top: 1px solid var(--depth-line);
  border-bottom: 1px solid var(--depth-line);
  background-color: var(--depth-off-white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

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

.paragraph-6 {
  text-align: center;
  max-width: 500px;
}

.search-results-div {
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  padding: 30px;
  display: flex;
}

.link-5 {
  font-size: 1.25em;
  text-decoration: none;
}

.container-7 {
  max-width: 800px;
  margin-top: 50px;
}

.div-block-25 {
  margin-right: 20px;
  box-shadow: 0 8px 10px -5px #00000080;
}

.paragraph-7 {
  font-size: 1em;
}

.search-button-2 {
  background-color: #0000;
  background-image: url('../images/search.svg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: auto;
}

.search-results-header {
  border-top: 1px solid var(--depth-line);
  border-bottom: 1px solid var(--depth-line);
  background-color: var(--depth-off-white);
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 300px;
  padding-bottom: 0;
  display: flex;
}

.heading-14 {
  margin-top: auto;
  margin-bottom: auto;
}

.search-4 {
  border-bottom: 2px solid var(--depth-line);
  width: 500px;
  max-width: 800px;
  height: 50px;
  margin-bottom: 50px;
  display: flex;
  position: relative;
  inset: 50% 0% 0%;
}

.search-input-2 {
  color: var(--black);
  text-align: center;
  background-color: #0000;
  border: 0 solid #000;
  font-size: 18px;
}

.search-input-2:focus {
  border: 0 solid #000;
}

.image-30 {
  width: 20px;
}

.div-block-26 {
  width: auto;
  height: auto;
}

.full-screen-search {
  z-index: 10;
  background-color: var(--body-background);
  justify-content: center;
  align-items: stretch;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.search-page {
  border-bottom: 2px solid var(--depth-line);
  max-width: 800px;
  height: 50px;
  margin-bottom: 50px;
  display: flex;
  position: relative;
  inset: 50% 0% 0%;
}

.image-31 {
  width: 30px;
  height: 30px;
  margin-top: 30px;
  margin-right: 30px;
  position: absolute;
  inset: 0% 0% auto auto;
}

._2022 {
  padding-top: 9vh;
  display: block;
  position: relative;
}

._2022.section-divider {
  flex: 1;
  padding-top: 40px;
  padding-bottom: 40px;
}

._2022.section-bottom-space-sm {
  padding-bottom: 0;
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.reading-list_component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 3fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.arrow-icon_icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.page-padding {
  padding-left: 2vw;
  padding-right: 2vw;
}

.text-size-medium {
  letter-spacing: normal;
  font-size: 1rem;
  line-height: 1.5;
}

.reading-list_dot {
  background-color: #d6d6d6;
  border-radius: 50%;
  flex: none;
  justify-content: center;
  align-items: center;
  width: .5rem;
  height: .5rem;
  margin-top: .5rem;
  display: flex;
}

.reading-list_row {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-radius: .5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: flex-start start;
  width: 100%;
  padding: 1rem 1.25rem;
  transition: background-color .2s;
  display: flex;
  position: relative;
}

.reading-list_row:hover {
  background-color: #f5f5f5;
}

.text-style-link {
  text-decoration: underline;
}

.text-style-link:hover {
  color: #141414;
}

.arrow-icon_circle {
  border: 2px solid #141414;
  border-radius: 50%;
  width: 1.25rem;
  height: 1.25rem;
  position: absolute;
  inset: 0%;
}

.button-secondary {
  grid-column-gap: .375rem;
  grid-row-gap: .375rem;
  color: #141414;
  white-space: nowrap;
  justify-content: center;
  align-items: center;
  margin: -.5rem;
  padding: .5rem;
  font-weight: 600;
  display: flex;
  position: relative;
}

.section_reading {
  min-height: 100dvh;
}

.reading-list_year-wrapper {
  padding-top: 1rem;
}

.reading-list_wrapper {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  height: 28rem;
  margin-right: -2vw;
  padding-right: 2vw;
  display: grid;
  position: relative;
  overflow: hidden;
}

.arrow-icon_component {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  min-width: 1.25rem;
  height: 1.25rem;
  min-height: 1.25rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

.arrow-icon_component.is-pointing-down {
  transform: rotate(90deg);
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.padding-vertical.padding-custom {
  padding-top: 5rem;
  padding-bottom: 12rem;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.reading-list_wrapper-overlay {
  z-index: 1;
  cursor: pointer;
  background-image: linear-gradient(#fff0, #fff 65%);
  justify-content: flex-start;
  align-items: flex-end;
  height: 10.5rem;
  padding-bottom: 1rem;
  padding-left: 1.25rem;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.container-8 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.reading-list_title {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  width: 100%;
  display: flex;
}

@media screen and (min-width: 1280px) {
  .section {
    display: block;
  }

  .section.section-bottom-space-sm {
    display: none;
  }

  .main {
    display: block;
  }

  .row.row-split-content {
    display: none;
  }

  .display-xl.preload-text-top, .display-xl.preload-text-btm {
    font-weight: 400;
  }

  .hero-img-content {
    position: static;
    bottom: 30px;
  }

  .preloader {
    display: none;
  }

  .image-light-accent-copy {
    filter: sepia() blur(50px);
    width: 50%;
    top: -113px;
    left: 69%;
  }

  .full-screen-menu {
    display: none;
  }

  .collection-list-wrapper {
    justify-content: flex-end;
    margin-left: 300px;
  }

  .reading {
    display: block;
  }

  .reading.section-bottom-space-sm {
    display: none;
  }

  ._2021 {
    display: block;
  }

  ._2021.section-bottom-space-sm {
    display: none;
  }

  ._2020 {
    display: block;
  }

  ._2020.section-bottom-space-sm {
    display: none;
  }

  ._2019 {
    display: block;
  }

  ._2019.section-bottom-space-sm {
    display: none;
  }

  .top-post.homepage {
    display: block;
  }

  .container-2.cc-post-image {
    max-width: 1200px;
  }

  .posts-wrapper {
    align-content: stretch;
  }

  .memo-links, .memo-links-list {
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    display: flex;
  }

  ._2018 {
    display: block;
  }

  ._2018.section-bottom-space-sm, .search-screen {
    display: none;
  }

  .home-section {
    display: block;
  }

  .home-section.section-bottom-space-sm {
    display: none;
  }

  .home-about {
    display: block;
  }

  .home-about.section-bottom-space-sm {
    display: none;
  }

  .book {
    margin-top: 100px;
    margin-bottom: 45px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .column {
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    display: flex;
    position: sticky;
  }

  .columns {
    max-width: 1280px;
    padding-left: 32px;
    padding-right: 32px;
  }

  .newsletter {
    display: none;
  }

  .best-nonfiction-books-wrapper {
    justify-content: flex-end;
  }

  .best-fiction-books-wrapper, .wisdom-book-wrapper {
    justify-content: flex-end;
    margin-left: 300px;
  }

  .best-selling-book-wrapper, .book-page-wrapper {
    justify-content: flex-end;
  }

  .section-7 {
    max-width: 1280px;
  }

  .html-embed-2 {
    position: absolute;
  }

  .heading-12 {
    font-size: 5em;
  }

  .section-9 {
    margin-top: 615px;
  }

  .link-4 {
    margin-right: 10px;
  }

  ._2022 {
    display: block;
  }

  ._2022.section-bottom-space-sm {
    display: none;
  }

  .reading-list_component {
    grid-template-columns: 1fr 2fr;
  }
}

@media screen and (min-width: 1440px) {
  .reading-list_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (min-width: 1920px) {
  .reading-list_component {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
  }
}

@media screen and (max-width: 991px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.25em;
  }

  h3 {
    font-size: 1.875rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  h5 {
    font-size: 1.25rem;
  }

  .section.section-divider {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .container {
    display: block;
  }

  .style-guide-title {
    width: 100%;
    margin-bottom: 36px;
    margin-right: 0;
    padding: 24px;
  }

  .btn {
    padding-left: 2px;
    padding-right: 2px;
  }

  .style-guide-content {
    max-width: 100%;
  }

  .row.style-guide-row {
    flex-direction: column;
  }

  .row.row-split-content {
    grid-column-gap: 32px;
  }

  .row.row-header {
    grid-column-gap: 48px;
  }

  .section-title.mb-0 {
    margin-bottom: 0;
  }

  .btn-2 {
    margin: 4px;
  }

  .display-2xl {
    font-size: 3.75rem;
  }

  .display-xl {
    font-size: 3rem;
  }

  .display-lg {
    font-size: 2.25rem;
  }

  .display-md {
    font-size: 1.875rem;
  }

  .display-sm {
    font-size: 1.5rem;
  }

  .display-xs {
    font-size: 1.25rem;
  }

  .image-light-accent {
    top: 229px;
  }

  .line {
    min-width: 200px;
  }

  .line-wrap {
    width: 200px;
    bottom: -40%;
  }

  .collection-list-people {
    padding-left: 0;
    padding-right: 0;
  }

  .collection-item {
    min-height: 350px;
  }

  .book-cover-link {
    min-width: 150px;
    height: 225px;
  }

  .collection-list-books {
    flex-flow: wrap;
  }

  .collection-list-wrapper {
    margin-left: auto;
  }

  .div-block {
    position: static;
  }

  .reading.section-divider, ._2021.section-divider, ._2020.section-divider, ._2019.section-divider {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section-3 {
    position: static;
  }

  .container-2 {
    flex-flow: column;
    align-items: center;
  }

  .top-post-item {
    flex-wrap: wrap;
  }

  .top-post-image {
    width: 100%;
    margin-bottom: 30px;
  }

  .top-post-text {
    width: 100%;
    padding-left: 0;
  }

  .text-container {
    width: 100%;
  }

  .h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .reading-buttons {
    align-items: center;
  }

  ._2018.section-divider {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .container-3 {
    max-width: 90%;
  }

  .h3 {
    margin-bottom: 15px;
  }

  .image-8 {
    right: 12%;
  }

  .quote {
    text-align: center;
  }

  .home-section.section-divider, .home-about.section-divider {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .book {
    margin-top: 50px;
  }

  .author {
    font-size: 1.5rem;
  }

  .book-display {
    width: auto;
  }

  .book-cover-link---book-feauture {
    min-width: 195px;
    height: 292.5px;
  }

  .best-nonfiction-books-wrapper, .best-fiction-books-wrapper, .wisdom-book-wrapper, .best-selling-book-wrapper {
    margin-left: auto;
  }

  .logos {
    margin-top: 40px;
    margin-left: 0;
    display: block;
  }

  .form-2 {
    align-items: flex-end;
  }

  .submit-button-3 {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .container-main, .container-footer {
    display: block;
  }

  .section-10 {
    margin-top: 30px;
  }

  .breadcrumbs {
    display: none;
  }

  .search-results-div {
    flex-direction: column;
    width: auto;
  }

  .container-7 {
    max-width: none;
    padding-left: 32px;
    padding-right: 32px;
  }

  ._2022.section-divider {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .reading-list_component {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

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

  .reading-list_year-wrapper {
    padding-top: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-custom {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

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

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5em;
  }

  h4 {
    font-size: 1.25rem;
  }

  h5 {
    font-size: 1.125rem;
  }

  p {
    font-size: 1em;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn {
    padding-left: 2px;
    padding-right: 2px;
  }

  .btn.mobile-display-none {
    display: none;
  }

  .row.row-split-content {
    grid-row-gap: 32px;
    grid-template-columns: 1fr;
  }

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

  .section-title {
    margin-bottom: 48px;
  }

  .btn-2 {
    padding: 8px 14px;
  }

  .btn-2:hover {
    background-color: #1757c2;
    border-color: #1757c2;
  }

  .display-2xl {
    font-size: 3rem;
  }

  .display-xl {
    font-size: 2.25rem;
  }

  .display-lg {
    font-size: 1.875rem;
  }

  .display-md {
    font-size: 1.5rem;
  }

  .display-sm {
    font-size: 1.25rem;
  }

  .display-xs, .text-xl {
    font-size: 1.125rem;
  }

  .text-xl.header-text {
    margin-bottom: 32px;
  }

  .navigation {
    height: 80px;
  }

  .logo.logo-footer {
    margin-bottom: 24px;
  }

  .logo.logo-footer.w--current {
    margin-bottom: 16px;
  }

  .image-light-accent {
    top: -57px;
    left: 74%;
  }

  .footer {
    padding-top: 64px;
    padding-bottom: 40px;
  }

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 32px;
  }

  .line {
    min-width: 150px;
  }

  .line-wrap {
    width: 150px;
    bottom: -60%;
    left: 10%;
  }

  .footer-btm {
    flex-direction: column;
  }

  .utility-page-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }

  .btn-3 {
    padding-left: 2px;
    padding-right: 2px;
  }

  .logo-2.logo-footer {
    margin-bottom: 24px;
  }

  .logo-2.logo-footer.w--current {
    margin-bottom: 16px;
  }

  .book-collection-container {
    overflow: scroll;
  }

  .collection-list-people {
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    overflow: scroll;
  }

  .collection-item {
    padding-left: 10px;
    padding-right: 10px;
  }

  .book-cover-link {
    min-width: 200px;
    height: 300px;
  }

  .reading {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .reading.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  ._2021 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  ._2021.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  ._2020 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  ._2020.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  ._2019 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  ._2019.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .top-post {
    margin-top: 0;
    padding-top: 135px;
  }

  .h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .h1 {
    font-size: 30px;
    line-height: 36px;
  }

  .title-section {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  ._3-collection-item {
    width: 100%;
  }

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

  ._2018 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  ._2018.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .h3 {
    margin-bottom: 15px;
  }

  ._2-collection-item {
    width: 100%;
  }

  .image-8 {
    right: 14%;
  }

  .quote {
    text-align: center;
  }

  .image-10 {
    max-width: 8%;
  }

  ._404-home {
    margin-right: 0;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: 400;
    transition: all .2s;
  }

  ._404-home.mobile-display-none {
    display: none;
  }

  .home-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-section.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .home-about {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-about.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .book {
    margin-top: 50px;
  }

  .column {
    position: static;
  }

  .column-2 {
    padding-top: 25px;
  }

  .book-cover-link---book-feauture {
    min-width: 200px;
    height: 300px;
  }

  .column-3, .column-4 {
    padding-left: 0;
    padding-right: 0;
  }

  .logos {
    margin-top: 40px;
  }

  .form-2 {
    align-items: flex-end;
  }

  .submit-button-3 {
    padding-top: 0;
    padding-bottom: 10px;
  }

  .container-main, .container-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-10 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .search-result-item {
    flex-direction: column;
    align-items: center;
  }

  .div-block-23 {
    margin-top: 20px;
    margin-right: 0;
  }

  .search-results-div {
    flex-direction: column;
    width: auto;
  }

  .legal-links {
    margin-top: 10px;
  }

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

  .container-7 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .div-block-25 {
    width: 25%;
    margin-right: 0;
  }

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

  .search-4, .search-page {
    flex-direction: row;
    align-items: center;
    display: flex;
  }

  .image-31 {
    margin-right: 20px;
  }

  ._2022 {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  ._2022.section-divider {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .page-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .reading-list_row {
    border-top: 1px solid #e5e5e5;
    grid-template-columns: 1fr;
    padding: .75rem .75rem .75rem 0;
  }

  .reading-list_row:hover {
    background-color: #0000;
  }

  .reading-list_wrapper {
    margin-right: -1rem;
    padding-right: 1rem;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-vertical.padding-custom {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .reading-list_wrapper-overlay {
    padding-left: 0;
  }
}

@media screen and (max-width: 479px) {
  .header {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: block;
  }

  .section {
    position: static;
  }

  .container {
    display: block;
  }

  .style-guide-title {
    border-radius: 5px;
    margin-bottom: 24px;
  }

  .btn {
    flex-wrap: nowrap;
    flex: 0 auto;
    align-items: stretch;
    padding-left: 2px;
    padding-right: 2px;
    display: flex;
  }

  .section-title.mb-0 {
    text-align: center;
  }

  .btn-icon-r {
    margin-left: 4px;
  }

  .display-xl {
    font-weight: 500;
  }

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

  .text-xl.text-medium {
    display: block;
  }

  .text-xl.text-medium.text-grey-900 {
    display: flex;
  }

  .image-light-accent {
    display: block;
    top: -57px;
    left: 74%;
  }

  .signature {
    max-width: 100%;
  }

  .footer {
    padding-top: 48px;
  }

  .preloader {
    background-color: #f9f8f4;
    display: none;
  }

  .preloader-text {
    font-weight: 400;
  }

  .image-light-accent-copy {
    display: none;
    top: -57px;
  }

  .utility-page-wrap {
    width: auto;
    display: flex;
  }

  .utility-page-wrap:hover {
    color: var(--white);
  }

  .utility-page-content {
    box-shadow: none;
    align-items: center;
    display: flex;
  }

  .icon {
    font-size: 32px;
  }

  .image-2 {
    max-width: 15%;
  }

  .nav {
    background-color: #f9f8f4;
    display: none;
  }

  .link {
    padding-bottom: 40px;
    font-size: 10vw;
  }

  .lottie-animation-3 {
    width: 50px;
  }

  .menu-button-2 {
    width: 30px;
    height: 30px;
  }

  .burger-line {
    width: 30px;
  }

  .full-screen-menu, .logo-2.logo-footer {
    display: none;
  }

  .book-collection-container {
    overflow: scroll;
  }

  .collection-list-people {
    padding-left: 0;
    padding-right: 0;
  }

  .collection-item {
    align-items: flex-start;
  }

  .collection-list-books {
    flex-flow: column wrap;
    align-content: flex-start;
    align-items: flex-start;
    display: flex;
    overflow: visible;
  }

  .collection-list-wrapper {
    justify-content: center;
    margin-left: auto;
    display: flex;
  }

  .div-block {
    position: static;
  }

  .reading, ._2021, ._2020 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  ._2019 {
    display: block;
  }

  .top-post {
    padding-top: 105px;
    padding-bottom: 30px;
  }

  .top-post.homepage {
    max-width: 560px;
    padding: 50px 20px;
    display: block;
    position: relative;
  }

  .container-2.cc-post-image {
    padding-left: 0;
    padding-right: 0;
  }

  .post-short-text {
    display: block;
  }

  .h1 {
    font-size: 20px;
    line-height: 24px;
  }

  .title-section {
    padding-top: 60px;
  }

  .post-content {
    padding-top: 30px;
  }

  ._3-posts {
    padding-bottom: 60px;
  }

  .text-span {
    font-size: 2.5rem;
  }

  .reading-buttons {
    flex-flow: wrap;
    place-content: center;
    align-items: center;
    padding-top: 10px;
  }

  .letter-memo-buttons {
    flex-flow: wrap;
    place-content: center;
    align-items: stretch;
    margin-left: auto;
    margin-right: auto;
    padding-top: 10px;
    display: flex;
  }

  .memo-links {
    flex-flow: column wrap;
    place-content: flex-start;
    align-items: center;
    display: block;
  }

  .memo-links-list {
    flex-flow: column;
    place-content: flex-start;
    align-items: center;
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 10px;
    padding-left: 0;
    padding-right: 0;
    display: block;
  }

  .text-block-2, ._2018 {
    display: block;
  }

  .container-3 {
    max-width: 90%;
  }

  .h3 {
    margin-bottom: 15px;
  }

  .latest-posts {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .progress-wrapper {
    z-index: 9999;
    display: block;
    position: sticky;
    top: 80px;
  }

  .progress-bar {
    height: 2px;
  }

  .image-8 {
    padding-top: 0;
    right: 20%;
  }

  .quote {
    text-align: center;
    white-space: normal;
    font-size: 20px;
  }

  .image-10 {
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    border-radius: 50%;
    width: 15%;
    max-width: 50%;
    height: auto;
  }

  .quote-name {
    font-size: 15px;
  }

  .div-block-4 {
    display: none;
  }

  ._404-home {
    text-align: center;
    flex-wrap: nowrap;
    justify-content: center;
    align-self: flex-start;
    align-items: stretch;
    width: 100px;
    padding-left: 10px;
    padding-right: 10px;
    display: flex;
  }

  .lottie-animation-4 {
    max-width: 100%;
    margin-left: 0;
  }

  .home-section, .home-about {
    position: static;
  }

  .intro-text {
    font-size: 16px;
  }

  .book {
    margin-top: 50px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .column {
    align-items: center;
    position: static;
  }

  .columns {
    padding-left: 0;
    padding-right: 0;
  }

  .column-2 {
    padding-top: 25px;
  }

  .image-12 {
    max-width: 100%;
  }

  .author {
    font-size: 1.25rem;
  }

  .image-13 {
    align-self: flex-start;
  }

  .book-display {
    justify-content: center;
    align-self: flex-start;
    width: auto;
    display: flex;
  }

  .newsletter {
    z-index: 2000;
    position: absolute;
    inset: 0%;
  }

  .highlight-book-feature {
    display: none;
  }

  ._404-text {
    text-align: center;
    flex-direction: row;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
  }

  .column-3 {
    flex-flow: column;
    place-content: center;
    align-items: center;
    display: flex;
  }

  ._404 {
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    display: block;
  }

  .column-4 {
    object-fit: fill;
    padding-top: 20px;
    padding-left: 0;
    position: relative;
  }

  .image-15 {
    max-width: 60%;
  }

  .div-block-8 {
    object-fit: fill;
    justify-content: center;
    display: flex;
  }

  .div-block-9 {
    width: auto;
    height: 200px;
    position: absolute;
    inset: 0% 0% 0% 26%;
    overflow: hidden;
  }

  .div-block-10 {
    background-color: var(--black);
    width: 100vw;
    max-width: 100vw;
  }

  .best-nonfiction-books-wrapper, .best-fiction-books-wrapper, .wisdom-book-wrapper, .best-selling-book-wrapper {
    justify-content: center;
    margin-left: 0;
    display: flex;
  }

  .best-nonfiction-button {
    flex-flow: column wrap;
    place-content: center;
  }

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

  .image-18 {
    max-width: 80%;
  }

  .div-block-15 {
    display: none;
  }

  .div-block-16 {
    margin-bottom: 20px;
    margin-right: 0;
  }

  .best-fiction-button, .wisdom-books-button, .best-selling-books-button, .book-review-button {
    flex-flow: column wrap;
    place-content: center;
  }

  .book-page-wrapper {
    justify-content: center;
    margin-left: auto;
    display: flex;
  }

  .div-block-17 {
    box-shadow: inset 25px 0 20px -20px var(--white);
    background-image: none;
    max-width: 100%;
    max-height: 320px;
    display: inline-block;
  }

  .heading-11 {
    align-items: center;
    display: flex;
  }

  .div-block-19 {
    flex-flow: row;
    justify-content: space-between;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .section-8 {
    margin-left: 0;
    margin-right: auto;
    padding-left: 30px;
    padding-right: 30px;
  }

  .div-block-20 {
    flex-wrap: wrap;
    align-content: center;
    display: flex;
  }

  .heading-12 {
    flex-wrap: wrap;
    display: flex;
  }

  .section-9 {
    margin-top: 135%;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
  }

  .image-20 {
    margin-bottom: 20px;
    margin-left: -2px;
    padding-bottom: 0;
    padding-left: 0;
  }

  .column-5 {
    padding-left: 0;
    padding-right: 0;
  }

  .paragraph-2 {
    color: #888;
  }

  .heading-13 {
    color: #3a3a3a;
    margin-top: 0;
    font-weight: 500;
  }

  .button-4 {
    background-color: #0000;
    border: 2px solid #fff;
    border-radius: 20px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .div-block-21 {
    background-image: url('../images/Rectangle-5.png');
    background-position: 0 0;
    background-size: auto;
  }

  .image-21 {
    transform: none;
  }

  .columns-3 {
    z-index: 5;
    position: relative;
  }

  .logos {
    margin-top: 40px;
  }

  .image-22, .image-23, .image-24, .image-25, .image-26 {
    max-width: 100%;
  }

  .form-2 {
    border-radius: 0;
    align-items: flex-end;
  }

  .text-field {
    border-radius: 0;
  }

  .submit-button-3 {
    flex: 0 auto;
    padding: 5px 10px;
  }

  .container-main, .container-footer {
    display: block;
  }

  .section-10 {
    margin-left: 20px;
    margin-right: 20px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    margin-top: 50px;
  }

  .section-11 {
    padding-bottom: 0;
    display: block;
  }

  .search-results-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    padding: 30px;
    display: flex;
  }

  .legal-links {
    margin-top: 20px;
  }

  .div-block-25 {
    width: 40%;
    margin-right: 0;
  }

  .search-results-header {
    height: auto;
    padding-bottom: 0;
    display: block;
  }

  .search-4 {
    flex-direction: row;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
  }

  .full-screen-search {
    display: none;
  }

  .search-page {
    flex-direction: row;
    margin-left: 20px;
    margin-right: 20px;
    display: flex;
  }

  .div-block-27 {
    justify-content: center;
    display: flex;
  }

  ._2022 {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .reading-list_row {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }
}

#w-node-_9bac182b-3685-673d-7b95-b693cad7a965-ecd6ecfd {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center;
}

#w-node-_854ace28-9ba4-70f0-04da-c203bbc8c6e7-ecd6ecfd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2bd5014a-d3e0-efa5-e2b0-d552823b92eb-ecd6ecfd {
  align-self: center;
}

#w-node-_624fc46b-c974-3c15-8591-c9209abb25db-ecd6ecfd {
  place-self: center;
}


@font-face {
  font-family: 'Neue Haas Display';
  src: url('../fonts/NeueHaasDisplay-Mediu.woff') format('woff'), url('../fonts/NeueHaasDisplay-Mediu.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Display';
  src: url('../fonts/NeueHaasDisplay-Roman.woff') format('woff'), url('../fonts/NeueHaasDisplay-Roman.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display Medium';
  src: url('../fonts/NHaasGroteskTXPro-65Md.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display Bold';
  src: url('../fonts/NHaasGroteskTXPro-75Bd.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Neue Haas Grotesk Display Regular';
  src: url('../fonts/NHaasGroteskTXPro-55Rg.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}