@charset "UTF-8";
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/**
  Slider
*/
/*=================================
  Previous and Next icon buttons
==================================*/
.slick-prev,
.slick-next {
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  height: 20px;
  width: 20px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  border: none;
  transform: translate(0, -50%);
}

.slick-prev:hover .slick-prev-icon,
.slick-prev:hover .slick-next-icon,
.slick-prev:focus .slick-prev-icon,
.slick-prev:focus .slick-next-icon,
.slick-next:hover .slick-prev-icon,
.slick-next:hover .slick-next-icon,
.slick-next:focus .slick-prev-icon,
.slick-next:focus .slick-next-icon {
  opacity: 1;
}

.slick-prev:focus,
.slick-next:focus {
  top: calc(50% - 1px);
}

.slick-prev:focus .slick-prev-icon,
.slick-prev:focus .slick-next-icon,
.slick-next:focus .slick-prev-icon,
.slick-next:focus .slick-next-icon {
  color: orange;
  font-size: 28px;
  margin-left: -2px;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  cursor: default;
}

.slick-prev.slick-disabled .slick-prev-icon,
.slick-prev.slick-disabled .slick-next-icon,
.slick-next.slick-disabled .slick-prev-icon,
.slick-next.slick-disabled .slick-next-icon {
  opacity: 0.25;
}

.slick-prev .slick-prev-icon,
.slick-prev .slick-next-icon,
.slick-next .slick-prev-icon,
.slick-next .slick-next-icon {
  display: block;
  color: black;
  opacity: 0.75;
  font-family: "slick";
  font-size: 24px;
  line-height: 1;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev .slick-prev-icon:before {
  content: "←";
}

[dir=rtl] .slick-prev .slick-prev-icon:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next .slick-next-icon:before {
  content: "→";
}

[dir=rtl] .slick-next .slick-next-icon:before {
  content: "←";
}

/*==========================
  Slide navigation dots
===========================*/
.slick-slider {
  margin-bottom: 30px;
}

.slick-slider.slick-dotted {
  margin-bottom: 60px;
}

.slick-dots {
  position: absolute;
  bottom: -30px;
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}

.slick-dots li button {
  display: block;
  height: 20px;
  width: 20px;
  margin-top: -4px;
  margin-left: -4px;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.slick-dots li button:hover .slick-dot-icon,
.slick-dots li button:focus .slick-dot-icon {
  opacity: 1;
}

.slick-dots li button:focus .slick-dot-icon:before {
  color: orange;
}

.slick-dots li button .slick-dot-icon {
  color: black;
  opacity: 0.25;
}

.slick-dots li button .slick-dot-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  font-family: "slick";
  font-size: 12px;
  line-height: 1;
  text-align: center;
  transition: all 0.05s linear;
}

.slick-dots li.slick-active button:focus .slick-dot-icon {
  color: orange;
  opacity: 1;
}

.slick-dots li.slick-active button .slick-dot-icon {
  color: black;
  opacity: 1;
}

.slick-dots li.slick-active button .slick-dot-icon:before {
  margin-top: -3px;
  margin-left: -2px;
  font-size: 18px;
}

/**
 Improved .sr-only class by ffoodd: https://gist.github.com/ffoodd/000b59f431e3e64e4ce1a24d5bb36034
 */
.slick-sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

/*===========================
  Pause/play icon button
============================*/
.slick-autoplay-toggle-button {
  position: absolute;
  left: 5px;
  bottom: -32px;
  z-index: 10;
  opacity: 0.75;
  background: none;
  border: 0;
  cursor: pointer;
  color: black;
}

.slick-autoplay-toggle-button:hover,
.slick-autoplay-toggle-button:focus {
  opacity: 1;
}

.slick-autoplay-toggle-button:focus {
  color: orange;
}

.slick-autoplay-toggle-button .slick-pause-icon:before {
  content: "⏸";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 18px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
}

.slick-autoplay-toggle-button .slick-play-icon:before {
  content: "▶";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 18px;
  font-weight: normal;
  line-height: 20px;
  text-align: center;
} 
/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover .slick-prev-icon:before,
.slick-prev:hover .slick-next-icon:before,
.slick-prev:focus .slick-prev-icon:before,
.slick-prev:focus .slick-next-icon:before,
.slick-next:hover .slick-prev-icon:before,
.slick-next:hover .slick-next-icon:before,
.slick-next:focus .slick-prev-icon:before,
.slick-next:focus .slick-next-icon:before {
  opacity: 1;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  cursor: default;
}

.slick-prev.slick-disabled .slick-prev-icon:before,
.slick-prev.slick-disabled .slick-next-icon:before,
.slick-next.slick-disabled .slick-prev-icon:before,
.slick-next.slick-disabled .slick-next-icon:before {
  opacity: 0.25;
}

.slick-prev .slick-prev-icon:before,
.slick-prev .slick-next-icon:before,
.slick-next .slick-prev-icon:before,
.slick-next .slick-next-icon:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev .slick-prev-icon:before {
  content: "←";
}

[dir=rtl] .slick-prev .slick-prev-icon:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next .slick-next-icon:before {
  content: "→";
}

[dir=rtl] .slick-next .slick-next-icon:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover .slick-dot-icon,
.slick-dots li button:focus .slick-dot-icon {
  opacity: 1;
}

.slick-dots li button .slick-dot-icon {
  color: black;
  opacity: 0.25;
}

.slick-dots li button .slick-dot-icon:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
}

.slick-dots li.slick-active button .slick-dot-icon {
  color: black;
  opacity: 0.75;
}

/**
 Improved .sr-only class by ffoodd: https://gist.github.com/ffoodd/000b59f431e3e64e4ce1a24d5bb36034
 */
.slick-sr-only {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important; /* 1 */
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important; /* 2 */
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; /* 3 */
}

.slick-autoplay-toggle-button {
  position: absolute;
  left: 5px;
  bottom: -25px;
  z-index: 10;
  opacity: 0.75;
  background: none;
  border: 0;
  cursor: pointer;
}

.slick-autoplay-toggle-button:hover,
.slick-autoplay-toggle-button:focus {
  outline: none;
  opacity: 1;
}

.slick-autoplay-toggle-button .slick-pause-icon:before {
  content: "⏸";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 16px;
  line-height: 20px;
  text-align: center;
}

.slick-autoplay-toggle-button .slick-play-icon:before {
  content: "▶";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 16px;
  line-height: 20px;
  text-align: center;
} 
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
} 
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
     ========================================================================== */
/**
   * Remove the margin in all browsers.
   */
body {
  margin: 0;
}

/**
   * Render the `main` element consistently in IE.
   */
main {
  display: block;
}

/**
   * Correct the font size and margin on `h1` elements within `section` and
   * `article` contexts in Chrome, Firefox, and Safari.
   */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
     ========================================================================== */
/**
   * 1. Add the correct box sizing in Firefox.
   * 2. Show the overflow in Edge and IE.
   */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
     ========================================================================== */
/**
   * Remove the gray background on active links in IE 10.
   */
a {
  background-color: transparent;
}

/**
   * 1. Remove the bottom border in Chrome 57-
   * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
   */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
   * Add the correct font weight in Chrome, Edge, and Safari.
   */
b,
strong {
  font-weight: bolder;
}

/**
   * 1. Correct the inheritance and scaling of font size in all browsers.
   * 2. Correct the odd `em` font sizing in all browsers.
   */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
   * Add the correct font size in all browsers.
   */
small {
  font-size: 80%;
}

/**
   * Prevent `sub` and `sup` elements from affecting the line height in
   * all browsers.
   */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
     ========================================================================== */
/**
   * Remove the border on images inside links in IE 10.
   */
img {
  border-style: none;
}

/* Forms
     ========================================================================== */
/**
   * 1. Change the font styles in all browsers.
   * 2. Remove the margin in Firefox and Safari.
   */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
   * Show the overflow in IE.
   * 1. Show the overflow in Edge.
   */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
   * Remove the inheritance of text transform in Edge, Firefox, and IE.
   * 1. Remove the inheritance of text transform in Firefox.
   */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
   * Correct the inability to style clickable types in iOS and Safari.
   */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
   * Remove the inner border and padding in Firefox.
   */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
   * Restore the focus styles unset by the previous rule.
   */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
   * Correct the padding in Firefox.
   */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
   * 1. Correct the text wrapping in Edge and IE.
   * 2. Correct the color inheritance from `fieldset` elements in IE.
   * 3. Remove the padding so developers are not caught out when they zero out
   *    `fieldset` elements in all browsers.
   */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
   * Add the correct vertical alignment in Chrome, Firefox, and Opera.
   */
progress {
  vertical-align: baseline;
}

/**
   * Remove the default vertical scrollbar in IE 10+.
   */
textarea {
  overflow: auto;
}

/**
   * 1. Add the correct box sizing in IE 10.
   * 2. Remove the padding in IE 10.
   */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
   * Correct the cursor style of increment and decrement buttons in Chrome.
   */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
   * 1. Correct the odd appearance in Chrome and Safari.
   * 2. Correct the outline style in Safari.
   */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
   * Remove the inner padding in Chrome and Safari on macOS.
   */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
   * 1. Correct the inability to style clickable types in iOS and Safari.
   * 2. Change font properties to `inherit` in Safari.
   */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
     ========================================================================== */
/*
   * Add the correct display in Edge, IE 10+, and Firefox.
   */
details {
  display: block;
}

/*
   * Add the correct display in all browsers.
   */
summary {
  display: list-item;
}

/* Misc
     ========================================================================== */
/**
   * Add the correct display in IE 10+.
   */
template {
  display: none;
}

/**
   * Add the correct display in IE 10.
   */
[hidden] {
  display: none;
}

body {
  background-color: #fafafa;
}

main {
  padding-top: 4rem;
  max-width: 100%;
}

p,
a {
  font-family: "Roboto", arial, sans-serif;
  color: #4c5270;
}

a {
  text-decoration: none;
}

h1 {
  font-size: 3.75rem;
  color: #4c5270;
  margin: 0 auto;
}

h2 {
  font-size: 2.5rem;
  letter-spacing: 4px;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", arial, sans-serif;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem;
}

a:visited {
  color: #4c5270;
}
a:hover {
  color: #f652a0;
}

form label {
  display: block;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 0.25em;
}
form input[type=text],
form input[type=email],
form textarea {
  width: calc(100% - 1rem);
  padding: 8px;
  border: 1px solid #777771;
  border-radius: 10px !important;
  font-size: 1rem;
}
form input[type=text].mce_inline_error,
form input[type=email].mce_inline_error,
form textarea.mce_inline_error {
  border-color: #d80c00 !important;
}

.mce_inline_error,
.forminator-error-message {
  background-color: transparent !important;
  color: #d80c00 !important;
  font-size: 12px;
  font-family: inherit;
  font-weight: 400 !important;
  padding: 2px 10px !important;
  line-height: 2em;
}

.forminator-error-message {
  margin: 0 0 1em 0;
}

.hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.books-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.slider-container {
  max-width: 60rem;
  width: 100%;
  margin: 0 auto;
}

.books-slider {
  margin: 0 auto;
  position: relative;
}
.books-slider__card {
  position: relative;
  padding: 2rem;
}
.books-slider__card:hover__card__card-image img, .books-slider__card:focus-within__card__card-image img {
  transform: scale(1.05);
}
.books-slider__card__card-image {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 2rem); /* One post per row */
  margin-bottom: 1rem;
  border: 1px solid #eaeaea;
  border-radius: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  margin-bottom: 1rem;
}
.books-slider__card__card-image img {
  max-width: 60rem;
  width: 100%;
}
.books-slider__btn-primary {
  background-color: #4c5270;
  border-radius: 2rem;
  border: none;
  padding: 0.6rem 1rem;
  color: #fafafa;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.books-slider__btn-primary:hover {
  text-decoration: none;
  background-color: rgba(188, 236, 224, 0.87);
  color: #4c5270;
}
.books-slider__btn-primary:visited {
  color: white;
}
.books-slider__card-tabs p {
  border-radius: 16px;
  background: rgba(33, 33, 33, 0.08);
  display: inline-flex;
  padding: 0.5rem 0.7rem;
  margin: 0.5rem;
  border-radius: 16px;
}

.slick-next-icon:before,
.slick-prev-icon:before {
  color: #4c5270 !important;
  font-size: 1.5rem !important;
}

.slick-next,
.slick-next-icon:before {
  position: absolute;
  right: 50%;
  top: 40% !important;
}

.slick-prev,
.slick-prev-icon:before {
  position: absolute;
  left: 50%;
  top: 40% !important;
}

.slick-dots {
  position: relative;
  bottom: auto;
  display: block;
  width: 100%;
  max-width: 50rem;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 5px;
  padding: 0;
  border-radius: 50%;
  background-color: #4c5270;
  cursor: pointer;
}
.slick-dots li button {
  display: none;
}
.slick-dots li.slick-active {
  top: 0;
  width: 8px;
  height: 8px;
  background-color: #4c5270;
}

@media screen and (min-width: 720px) {
  .books-slider {
    width: 100%;
  }
  .books-slider__card {
    max-width: 30rem;
    width: 100%;
  }
  .books-slider__card-title {
    font-size: 1.4rem;
  }
  .slick-next,
  .slick-next-icon:before {
    right: 0;
    z-index: 99;
  }
  .slick-prev,
  .slick-prev-icon:before {
    left: 0;
    z-index: 99;
  }
}
/* Testimonial Blocks */
.testimonials-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 1rem;
}

.testimonial {
  width: 100%;
  padding: 0.5rem;
  margin-bottom: 1rem;
  color: #4c5270;
  background: #bcece0;
  border-radius: 1.5rem;
  box-sizing: border-box;
  font-family: "Playfair Display", arial, sans-serif;
}
.testimonial blockquote {
  margin: 1.5rem 0;
  padding: 2.5rem;
  position: relative;
  border: none;
  font-style: italic;
}
.testimonial blockquote:before, .testimonial blockquote:after {
  content: "“";
  position: absolute;
  font-size: 80px;
  line-height: 1;
  color: #4c5270;
  font-style: normal;
}
.testimonial blockquote:before {
  top: 0;
  left: 10px;
}
.testimonial blockquote:after {
  content: "”";
  right: 10px;
  bottom: -0.5em;
}
.testimonial__stars {
  display: block;
  margin: 1.5rem autO;
}

/* Testimonials Mobile Styles */
@media screen and (min-width: 768px) {
  .testimonial {
    width: calc(33.33% - 20px);
  }
}
/* Styles for Newsletter Sign-Up form */
.newsletter-signup {
  max-width: 80%;
  margin: 0 auto;
  padding: 40px 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
}
.newsletter-signup h2 {
  font-size: 2rem;
  margin: 0 0 2rem;
}
.newsletter-signup .mc-field-group {
  margin-bottom: 20px;
}
.newsletter-signup .indicates-required {
  margin-bottom: 10px;
  font-size: 12px;
}
.newsletter-signup .asterisk {
  color: red;
}

.submit-btn {
  background-color: #4c5270;
  border-radius: 2rem;
  border: none;
  padding: 0.6rem 1rem;
  color: #fafafa;
  cursor: pointer;
}
.submit-btn:hover {
  text-decoration: none;
  background-color: rgba(188, 236, 224, 0.87);
  color: #4c5270;
}
.submit-btn:visited {
  color: white;
}

#mc_embed_signup div.mce_inline_error {
  font-weight: 400 !important;
  width: calc(100% - 20px);
}

@media screen and (min-width: 720px) {
  .newsletter-signup {
    max-width: 60%;
  }
}
body {
  font-family: "Roboto", arial, sans-serif;
  font-weight: 400;
  background: #fafafa;
}

h2 {
  letter-spacing: 1px;
}

.homepage-hero {
  background: rgba(188, 236, 224, 0.87);
  margin-top: 2rem;
}
.homepage-hero__inner {
  padding: 0;
}
@media screen and (min-width: 720px) {
  .homepage-hero__inner {
    display: flex;
  }
}
.homepage-hero__intro {
  font-family: "Playfair Display", arial, sans-serif;
  letter-spacing: 2px;
  font-size: 1.2rem;
}
.homepage-hero__content {
  padding-block: 2rem;
}
.homepage-hero__content-inner {
  padding-inline: 2rem;
}
@media screen and (min-width: 720px) {
  .homepage-hero__content-inner {
    border-left: 1px solid black;
  }
}
.homepage-hero__link {
  display: flex;
  align-items: center;
  column-gap: 0.5em;
  text-transform: uppercase;
  font-size: 1.125rem;
  letter-spacing: 1.25px;
  margin-top: 1rem;
}
.homepage-hero__link .plus {
  position: relative;
  font-size: 0.8rem;
  height: 1em;
  width: 1em;
  max-height: 1em;
  max-width: 1em;
  display: grid;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease-in-out;
}
.homepage-hero__link .plus::before, .homepage-hero__link .plus::after {
  content: "";
  grid-area: 1/-1;
  height: 2px;
  width: 1em;
  background-color: #4c5270;
  transition: transform 0.2s ease-in-out;
}
.homepage-hero__link .plus::after {
  transform: rotate(90deg);
}
.homepage-hero__link:hover .plus {
  transform: rotate(90deg);
}
.homepage-hero__link:hover .plus::before, .homepage-hero__link:hover .plus::after {
  background-color: #f652a0;
}

@media screen and (min-width: 720px) {
  .bookcover-image {
    margin-top: -2rem;
    padding-right: 2rem;
    padding-bottom: 2rem;
  }
}
.bookcover-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 720px) {
  .homepage-hero {
    display: flex;
    flex-direction: row;
    background: rgba(188, 236, 224, 0.87);
  }
}
.author-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.author-container h2 {
  position: relative;
  font-family: "Roboto", arial, sans-serif;
  font-weight: 500;
  z-index: 2;
}
.author-container img {
  object-fit: cover;
  width: 100%;
  padding: 1rem;
  margin-top: -2rem;
}
.author-container__paragraph, .author-container__explainer, .author-container__intro {
  position: relative;
  z-index: 2;
}
.author-container__explainer {
  padding: 2rem;
  flex: 1 1 100%; /* Take full width on smaller screens */
  text-align: center; /* Center content */
}
.author-container__intro {
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.author-container__callout {
  display: none; /* Hide the callout for mobile */
  position: absolute;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  text-transform: uppercase;
  top: 1rem;
  font-size: 6.9rem;
  color: #d1d1d6;
  font-weight: 700;
  z-index: 1;
}

.author-container-wrap {
  position: relative;
  width: 100%;
}
.author-container-wrap svg {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

.author-bio {
  display: flex;
  flex-wrap: wrap;
  background-color: rgb(243, 245, 246);
  max-width: 60rem;
  margin: 2rem auto;
}

.author-bio > * {
  flex: 1 1 100%; /* Take full width initially */
}

@media screen and (min-width: 768px) {
  .author-container__explainer {
    flex: 1 1 50%; /* Take 50% width on larger screens */
    text-align: left; /* Reset text alignment */
  }
  .author-container__callout {
    display: block;
    position: absolute; /* Maintain absolute positioning */
    top: 1rem;
  }
  .author-container img {
    padding: 0;
  }
  .author-bio > * {
    flex: 1 1 50%; /* Take 50% width on larger screens */
  }
}
.contact-section {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-section h1 {
  color: #4c5270;
}

.contact-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-form-container {
  max-width: 50rem;
  width: 100%;
}

.forminator-field label {
  border-radius: 1rem !important;
  color: #4c5270 !important;
}

.forminator-button-submit {
  background-color: #4c5270 !important;
  border-radius: 2rem !important;
  padding: 0.6rem 1rem !important;
  color: #fafafa !important;
}
.forminator-button-submit:hover {
  background-color: rgba(188, 236, 224, 0.87) !important;
  color: #4c5270 !important;
}

.blog-hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.blog-posts {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem; /* Adjust the gap between posts */
  justify-content: center;
  align-items: center;
}

.blog-post {
  position: relative;
  width: calc(100% - 2rem); /* One post per row */
  margin-bottom: 1rem;
  border: 1px solid #eaeaea;
  border-radius: 1rem;
  padding: 1rem;
  box-sizing: border-box;
  /* Style for the post excerpt */
  /* Style for the second blog's featured image to be taller */
}
.blog-post:hover .featured-image img, .blog-post:focus-within .featured-image img {
  transform: scale(1.05);
}
.blog-post .featured-image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 30rem;
  padding-bottom: 100%;
  margin-bottom: 15px;
  border-radius: 1rem;
  overflow: hidden;
}
.blog-post .featured-image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.blog-post h2 {
  color: #4c5270;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
}
.blog-post__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.blog-post .post-excerpt p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}
.blog-post:nth-child(4n+2) .featured-image img {
  max-height: 40rem;
}

@media screen and (min-width: 720px) {
  .blog-post {
    width: calc(40% - 2rem); /* Two posts per row */
  }
}
.books-hero h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
}

.books-wrapper {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.book {
  position: relative;
  display: flex;
  flex-direction: column;
  width: calc(100% - 2rem); /* One post per row */
  margin-bottom: 1rem;
  border: 1px solid #eaeaea;
  border-radius: 1rem;
  padding: 1rem;
  box-sizing: border-box;
}
.book h2 {
  font-size: 2rem;
}
.book:hover .book__image img, .book:focus-within .book__image img {
  transform: scale(1.05);
}
.book .book__image {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 30rem;
  padding-bottom: 100%;
  margin-bottom: 1rem;
  border-radius: 1rem;
  overflow: hidden;
  order: -1;
}
.book .book__image img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in-out;
}
.book .book__title a {
  text-decoration: none;
  color: #4c5270;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  display: block;
}
.book .book__excerpt p {
  font-size: 1rem;
  line-height: 1.5;
}
.book .book__link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

@media screen and (min-width: 720px) {
  .book {
    width: calc(40% - 2rem); /* Two books per row */
  }
  .books-wrapper {
    flex-direction: row;
  }
}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  font-family: "Playfair Display", arial, sans-serif;
  background: white;
  z-index: 98;
  padding: 1rem;
  min-height: auto;
  display: flex;
  align-items: center;
}
.site-header a {
  font-weight: 400;
  letter-spacing: 1px;
}
.site-header__title {
  display: none;
  visibility: none;
}
.site-header__title--mobile {
  text-transform: uppercase;
  z-index: 99;
  position: relative;
}
.site-header__title--mobile a {
  font-size: 1.6rem;
}

.main-navigation {
  z-index: 10;
}
.main-navigation ul {
  padding: 5rem 3rem;
}

#primary-menu {
  position: fixed;
  display: flex;
  transition: opacity 0.5s, ease-in-out 0.5s;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-direction: column;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  background-color: white;
}
.menu-open #primary-menu {
  left: 0;
  opacity: 1;
  visibility: visible;
}
#primary-menu ul {
  padding: 2rem;
}
#primary-menu li {
  list-style: none;
}
#primary-menu a {
  margin: 1.5rem;
}

.menu-item {
  transition: opacity 0.2s ease-in-out 0.1s;
  font-weight: 400;
}

.hamburger {
  right: 1rem;
  margin: 0;
  padding: 0;
  position: fixed;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 99;
}
.hamburger__bar {
  display: block;
  width: 30px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: black;
}
.hamburger[aria-expanded=true] > .hamburger__bar:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded=true] > .hamburger__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.hamburger[aria-expanded=true] > .hamburger__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

#menu-item-28 li,
#menu-item-28 a {
  background-color: #4c5270;
  border-radius: 2rem;
  border: none;
  padding: 0.6rem 1rem;
  color: #fafafa;
}
#menu-item-28 li:hover,
#menu-item-28 a:hover {
  text-decoration: none;
  background-color: rgba(188, 236, 224, 0.87);
  color: #4c5270;
}
#menu-item-28 li:visited,
#menu-item-28 a:visited {
  color: white;
}

@media screen and (min-width: 720px) {
  #primary-menu {
    display: flex;
    flex-direction: row;
    position: relative;
    justify-content: flex-end;
    top: 0;
    left: 0;
    align-items: center;
    font-size: 1rem;
    opacity: 1;
    visibility: visible;
  }
  #primary-menu a {
    margin: 0 1.5rem;
  }
  .main-navigation ul {
    padding: 0;
  }
  .site-header {
    justify-content: flex-end;
    align-items: center;
    font-size: 1rem;
  }
  .site-header__title {
    text-transform: uppercase;
    visibility: visible;
    display: block;
    width: 15rem;
    margin-left: 1rem;
  }
  .site-header__title--mobile {
    display: none;
    visibility: none;
  }
  .hamburger {
    display: none;
    visibility: hidden;
  }
}
.page_item {
  text-decoration: none;
}

.footer-main {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.footer-main ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem auto;
}
.footer-main__site-info {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-inline: 2rem;
}
.footer-main li {
  list-style: none;
  padding-inline: 0.5rem;
}

.footer-name {
  padding-inline: 0.5rem;
}

@media screen and (min-width: 720px) {
  .footer-main {
    flex-direction: row;
  }
  .footer-main ul {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .footer-main__site-info {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.single-blog-post {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 80%;
  padding: 1rem;
  /* Style for the post content */
}
.single-blog-post img {
  max-width: 100%;
  margin: 0 auto;
  height: auto;
  display: block;
  border-radius: 1rem;
}
.single-blog-post h1 {
  padding: 2rem;
  width: 100%;
  text-align: center;
}
.single-blog-post__featured-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2rem;
  border-radius: 1rem;
}
.single-blog-post__post-content {
  /* Style for links within the post */
  /* Style for headings within the post */
  /* Style for blockquotes within the post */
}
.single-blog-post__post-content p {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}
.single-blog-post__post-content__a {
  color: #4c5270;
  text-decoration: underline;
}
.single-blog-post__post-content__ h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.single-blog-post__post-content__blockquote {
  /* Style for links within the post */
  /* Style for headings within the post */
  /* Style for blockquotes within the post */
  border-left: 3px solid #4c5270;
  padding-left: 15px;
  margin-left: 0;
  font-style: italic;
}
.single-blog-post__post-content__blockquote p .post-content p {
  margin-bottom: 1rem;
  line-height: 1.5rem;
}
.single-blog-post__post-content__blockquote .post-content a {
  color: #4c5270;
  text-decoration: underline;
}
.single-blog-post__post-content__blockquote .post-content h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 15px;
}
.single-blog-post__post-content__blockquote .post-content blockquote {
  border-left: 3px solid #4c5270;
  padding-left: 15px;
  margin-left: 0;
  font-style: italic;
}