@charset "UTF-8";
/*#############################################################
## GENERAL
/*###########################################################*/
/*-------------------------------
# FONT : External
--------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap");
/*-------------------------------
# SASS: Mixin
--------------------------------*/
/*-------------------------------
# SASS: Breakpoints
--------------------------------*/
/*#############################################################
## Reset
/*###########################################################*/
/*-------------------------------
# Default Variables
--------------------------------*/
/*-------------------------------
# Body
--------------------------------*/
body {
  font-family: "Jost", sans-serif;
  color: #000000;
  background-color: #E5E5E5;
  font-size: 32px;
  font-weight: normal;
  font-style: normal;
  line-height: 1.4;
}
@media only screen and (max-width: 1100px) {
  body {
    font-size: 24px;
  }
}
body p {
  margin-bottom: 0.5em;
}
body p:last-child {
  margin-bottom: 0;
}

/*-------------------------------
# Header
--------------------------------*/
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: "Jost", sans-serif;
  color: #001B1D;
  font-weight: Medium;
  display: block;
  margin: 0 0 15px 0;
}
h1:last-child,
.h1:last-child,
h2:last-child,
.h2:last-child,
h3:last-child,
.h3:last-child,
h4:last-child,
.h4:last-child,
h5:last-child,
.h5:last-child,
h6:last-child,
.h6:last-child {
  margin: 0 0 0 0;
}

h1,
.h1 {
  font-size: 24px;
}

h2,
.h2 {
  font-size: 42px;
}
@media only screen and (max-width: 1100px) {
  h2,
.h2 {
    font-size: 30px;
  }
}

h3,
.h3 {
  font-size: 32px;
}

h4,
.h4 {
  font-size: 18px;
}

h5,
.h5 {
  font-size: 18px;
}

h6,
.h6 {
  font-size: 18px;
}

/*-------------------------------
# Label
--------------------------------*/
label {
  font-size: 90%;
  user-select: none;
}

/*-------------------------------
# Link
--------------------------------*/
a:link, a:focus, a:hover, a:visited, a:active,
button:link,
button:focus,
button:hover,
button:visited,
button:active, a,
button {
  color: #E32726;
  text-decoration: none;
  outline: none;
}

/*-------------------------------
# Bold
--------------------------------*/
b,
strong {
  font-weight: 600;
}

/*-------------------------------
# Ialic
--------------------------------*/
i,
em {
  font-style: italic;
}

/*-------------------------------
# Bullet
--------------------------------*/
ul,
ol {
  margin: 0 0 1rem 0;
  padding: 0 0 0 1rem;
  display: block;
}
ul li,
ol li {
  margin-bottom: 5px;
}
ul li:last-child,
ol li:last-child {
  margin-bottom: 0;
}

/*-------------------------------
# Blockquote
--------------------------------*/
blockquote {
  margin-left: 0;
  margin-right: 0;
}
blockquote > *:first-child:before {
  content: "'";
  display: inline-block;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  margin-right: 0;
}
blockquote > *:last-child:after {
  content: "'";
  display: inline-block;
  font-family: inherit;
  color: inherit;
  font-size: inherit;
  margin-left: 0;
}

/*-------------------------------
# Fieldset
--------------------------------*/
fieldset {
  padding-left: 0;
  padding-right: 0;
}

/*#############################################################
## Image
/*###########################################################*/
img {
  height: auto;
  max-width: 100%;
}

/*#############################################################
## Forms
/*###########################################################*/
/*-------------------------------
# Inputs
--------------------------------*/
input[type=text],
input[type=email],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=tel],
input[type=range],
input[type=date],
input[type=month],
input[type=week],
input[type=time],
input[type=datetime],
input[type=datetime-local],
input[type=color],
select,
textarea {
  padding: 15px !important;
  bottom: 0;
  width: 100%;
  border: 1px solid #E32726 !important;
  font-family: Jost;
  font-style: normal;
  font-weight: normal;
  letter-spacing: 0.02em;
}

/*-------------------------------
# Placeholder
--------------------------------*/
::-webkit-input-placeholder {
  color: #000000;
  opacity: 0.9;
  font-family: inherit;
}

:-moz-placeholder {
  color: #000000;
  opacity: 0.9;
  font-family: inherit;
}

::-moz-placeholder {
  color: #000000;
  opacity: 0.9;
  font-family: inherit;
}

:-ms-input-placeholder {
  color: #000000;
  opacity: 0.9;
  font-family: inherit;
}

:focus::placeholder {
  opacity: 0.5;
}

:focus::-webkit-input-placeholder {
  opacity: 0.5;
}

:focus:-moz-placeholder {
  opacity: 0.5;
}

:focus::-moz-placeholder {
  opacity: 0.5;
}

:focus:-ms-input-placeholder {
  opacity: 0.5;
}

/*#############################################################
## Custom Button
/*###########################################################*/
/*-------------------------------
# Custom Button | button-primary
--------------------------------*/
.button.button-primary:hover, .button.button-primary:link, .button.button-primary:focus, .button.button-primary:visited, .button.button-primary:active, .button.button-primary {
  background-color: #E32726 !important;
  background-image: none;
  color: #ffffff !important;
  border: 1px solid #E32726 !important;
  border-radius: 12px !important;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: normal;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-weight: Bold;
  font-family: "Jost";
  cursor: pointer;
  letter-spacing: 0.12em;
  display: inline-block;
  padding: 20px 35px;
  margin: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.button.button-primary:hover {
  opacity: 0.8;
}

/*-------------------------------
# Custom Button | button-secondary
--------------------------------*/
.button.button-download:hover, .button.button-download:link, .button.button-download:focus, .button.button-download:visited, .button.button-download:active, .button.button-download {
  background-color: #ffffff !important;
  background-image: none;
  color: #000000 !important;
  border: 1px solid #ffffff !important;
  border-radius: 12px !important;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: normal;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  font-weight: Bold;
  font-family: "Jost";
  cursor: pointer;
  max-width: 220px;
  width: 100%;
  height: 64px;
  letter-spacing: 0.12em;
  display: inline-block;
  padding: 15px 30px;
  margin: 0;
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
  background-size: 100px auto;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.button.button-download:hover {
  opacity: 0.8;
}

/*#############################################################
## Wordpress
/*###########################################################*/
#wpadminbar {
  z-index: 9999;
  position: fixed;
}
#wpadminbar * {
  color: #fff;
}

.post,
.page {
  margin: 0;
}

.widget:last-child {
  margin-bottom: 0;
}

/*#############################################################
## Bootstrap Styling
/*###########################################################*/
/*-------------------------------
# Bootstrap Container
--------------------------------*/
.container-fluid {
  max-width: 2000px;
}

.container {
  max-width: 1140px;
}

/*-------------------------------
# Social Links
--------------------------------*/
.social-icons {
  display: inline-block;
  white-space: nowrap;
}
.social-icons ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: inline-block;
}
.social-icons ul li {
  display: inline-block;
  margin: 0;
}
.social-icons .social-icons-label {
  display: none;
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #001B1D;
}
.social-icons a {
  outline: 0;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.social-icons a:hover {
  opacity: 0.8;
}
.social-icons a .fab {
  padding: 9px;
  display: inline-block;
  background-color: #dedede;
  margin-right: 15px;
  width: 36px;
  text-align: center;
  height: 36px;
  vertical-align: middle;
  border-radius: 50%;
  color: #FFF;
  font-size: 17px;
}
.social-icons a .fab[class*=facebook] {
  background: #3b5998;
  background: #3A589B;
}
.social-icons a .fab[class*=twitter] {
  background: #48c4d2;
  background: #598DCA;
}
.social-icons a .fab[class*=google] {
  background: #d94a39;
}
.social-icons a .fab[class*=linked] {
  background: #007AB9;
}
.social-icons a .fab[class*=pinterest] {
  background: #cb2027;
}
.social-icons a .fab[class*=youtube] {
  background: #f45750;
}
.social-icons a .fab[class*=instagram] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  background: #d6249f;
  background: #5A5192;
}
.social-icons a .fab[class*=instagram]:before {
  font-size: 24px;
  position: relative;
  top: -3px;
  left: -1.5px;
}
.social-icons a:last-child .fab {
  margin-right: 0;
}
.social-icons.vertical .social-icons-label {
  display: inline-block;
}
.social-icons.vertical ul li {
  display: block;
  margin-bottom: 15px;
}
.social-icons.vertical ul li:last-child {
  margin-bottom: 0;
}
.social-icons.vertical a .fab {
  display: inline-block;
  width: 48px;
  height: 48px;
  padding: 10px;
  font-size: 30px;
}
.social-icons.vertical a .fab[class*=instagram]:before {
  font-size: 32px;
  top: -2px;
  left: 0.5px;
}

/*-------------------------------
# Burger Menu
--------------------------------*/
.hamburger-menu .hamburger-menu-line:after, .hamburger-menu .hamburger-menu-line:before, .hamburger-menu .hamburger-menu-line {
  height: 2px;
  width: 100%;
  background-color: #EC8266;
  position: absolute;
  display: block;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.hamburger-menu {
  position: relative;
  width: 36px;
  height: 22px;
  display: inline-block;
  cursor: pointer;
}
.hamburger-menu .hamburger-menu-line {
  top: 50%;
  -moz-transform: translatey(-50%);
  -o-transform: translatey(-50%);
  -ms-transform: translatey(-50%);
  -webkit-transform: translatey(-50%);
  transform: translatey(-50%);
}
.hamburger-menu .hamburger-menu-line:before {
  content: "";
  top: 10px;
}
.hamburger-menu .hamburger-menu-line:after {
  content: "";
  bottom: 10px;
}
.hamburger-menu:hover .hamburger-menu-line:before {
  top: 12px;
}
.hamburger-menu:hover .hamburger-menu-line:after {
  bottom: 12px;
}

/*-------------------------------
# OWL CSS: Default
--------------------------------*/
/*-------------------------------
# Default OWL
--------------------------------*/
.owl-theme .owl-nav {
  text-align: left !important;
}
.owl-theme .owl-dots {
  text-align: left !important;
}
.owl-theme .owl-dots .owl-dot {
  outline: none;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #E7174A !important;
  background-color: #E7174A !important;
}
.owl-theme .owl-dots .owl-dot span {
  background: #dedede !important;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 25px !important;
}

/*-------------------------------
## Remodal : Overlay Colour
--------------------------------*/
.remodal-overlay.remodal-navigation {
  background: rgba(250, 250, 250, 0.8);
  z-index: 3001;
}

/*-------------------------------
## Remodal : Settings
--------------------------------*/
.remodal.remodal-navigation:after,
.remodal-wrapper.remodal-navigation:after {
  max-width: 100%;
  padding: 0;
}

.remodal-wrapper.remodal-navigation {
  text-align: center;
  padding: 0;
  overflow-x: hidden;
  background-color: transparent;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation {
  min-height: auto;
  margin: 0;
  padding: 0;
  max-width: 100%;
  background-color: transparent;
  overflow-x: hidden;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-bg-left {
  background-color: #001B1D;
  width: 500%;
  right: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 5;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content {
  position: relative;
  z-index: 10;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content * {
  color: #FFF;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content .remodal-close-icon {
  color: #E32726;
  font-size: 40px;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content .footer-navigation a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content .footer-navigation span {
  font-size: 24px;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav {
  /*-------------------------------
  # Mobile Menu | Reset
  --------------------------------*/
  /*-------------------------------
  # Mobile Menu | Main Menu
  --------------------------------*/
  /*-------------------------------
  # Mobile Menu | Sub Menu
  --------------------------------*/
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul {
  list-style-type: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
  display: block;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul li {
  display: block;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul li:last-child {
  margin-bottom: 0;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul li a {
  display: block;
  padding: 15px 5px;
  margin: 0;
  font-size: 24px;
  color: #ffffff;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav > ul > li:not(.current-menu-item) > a {
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav > ul > li:not(.current-menu-item) > a:hover {
  color: rgba(255, 255, 255, 0.5);
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav > ul > li.current-menu-ancestor > a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav > ul > li.current-menu-parent > a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav > ul > li.current_page_parent > a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav > ul > li.current_page_ancestor > a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav > ul > li.current-menu-item > a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav > ul > li.current_page_item > a {
  text-decoration: underline;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul.sub-menu {
  background-color: rgba(85, 166, 255, 0.5);
  padding: 15px 0px;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul.sub-menu > li > a:hover {
  background-color: rgba(221, 221, 221, 0.5);
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul.sub-menu > li.current-menu-ancestor a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul.sub-menu > li.current-menu-parent a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul.sub-menu > li.current_page_parent a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul.sub-menu > li.current_page_ancestor a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul.sub-menu > li.current-menu-item a,
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-content nav ul.sub-menu > li.current_page_item a {
  text-decoration: underline;
}
.remodal-wrapper.remodal-navigation .remodal.remodal-navigation .remodal-bg-right {
  background-color: transparent;
  width: 500%;
  left: 0;
  position: absolute;
  top: 0;
  bottom: 0;
  cursor: pointer;
}

@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: none;
    transform: none;
    left: -200px;
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    left: 0;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: none;
    transform: none;
    left: 0;
    opacity: 1;
  }
  to {
    -webkit-transform: none;
    transform: none;
    left: -200px;
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
.message-post-upgrade {
  max-width: 500px;
  display: inline-block;
}
.message-post-upgrade h1 {
  font-size: 32px;
}

/*-------------------------------
# WP Pagination
--------------------------------*/
.pagination {
  display: inline-block;
  text-align: left;
}
.pagination .page-numbers {
  display: inline-block;
  padding: 5px 5px;
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 0;
  color: #E32726;
  font-weight: bold;
  font-size: 24px;
  text-transform: uppercase;
}
.pagination .page-numbers.current {
  background-color: transparent;
  border: 2px solid transparent;
  color: #000000;
}

/*-------------------------------
# Comment
--------------------------------*/
.comment-list .each-comment-li {
  margin-bottom: 50px;
}
.comment-list .children {
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .comment-list .children {
    margin-left: 0;
    padding-left: 0;
  }
}
.comment-list .each-comment-wrapper {
  overflow: hidden;
}
.comment-list .each-comment-wrapper .each-comment-image {
  float: left;
  width: 64px;
}
@media only screen and (max-width: 768px) {
  .comment-list .each-comment-wrapper .each-comment-image {
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }
}
.comment-list .each-comment-wrapper .each-comment-image .each-comment-image-bg {
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
  background-size: cover;
  border-radius: 50%;
  height: 64px;
  width: 64px;
  display: inline-block;
}
.comment-list .each-comment-wrapper .each-comment-content {
  float: right;
  margin-left: 15px;
  width: calc(100% - 94px);
}
@media only screen and (max-width: 768px) {
  .comment-list .each-comment-wrapper .each-comment-content {
    width: 100%;
    text-align: center;
  }
}
.comment-list .title-content-wrapper {
  margin-bottom: 10px;
}
.comment-list .title-content-wrapper .custom-comment-title {
  display: inline;
}
.comment-list .title-content-wrapper p:nth-of-type(1) {
  display: inline;
}
.comment-list .title-content-wrapper p:nth-of-type(2) {
  margin-top: 10px;
}

/*-------------------------------
# JinCo Logo
--------------------------------*/
.jinco-logo {
  height: 48px;
  width: 48px;
  border-radius: 6px;
}
.jinco-logo .jinco-bg {
  fill: #E32726;
}
.jinco-logo .jinco-text {
  fill: #ffffff;
}

/*#############################################################
## Formidable
/*###########################################################*/
.frm_forms {
  margin: 0 0;
  /*-------------------------------
  # Validations
  --------------------------------*/
  /*-------------------------------
  # Fields
  --------------------------------*/
}
.frm_forms .frm_message,
.frm_forms .frm_error_style {
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.frm_forms .frm_message {
  background-color: #ffffff;
  color: #001B1D;
}
.frm_forms .frm_error_style {
  background-color: #E32726;
  color: #ffffff;
  font-size: 18px;
}
.frm_forms .frm_form_field {
  margin-bottom: 1rem;
}
.frm_forms .frm_form_field .frm_primary_label {
  font-family: Karla;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 135%;
  color: #2E1A12;
}
.frm_forms .frm_form_field input,
.frm_forms .frm_form_field textarea {
  background-color: #F2F2F2;
  border: 1px solid #F2F2F2;
}
.frm_forms .frm_form_field .frm_error {
  color: #C65468;
  font-size: 18px;
}

.consent-form p {
  font-family: Jost;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #001B1D;
}

/*#############################################################
## START
/*###########################################################*/
/*#############################################################
## Fixed to Top
/*###########################################################*/
body {
  padding-top: 0.1px;
}

.flex-wrapper {
  display: flex;
  flex-flow: row wrap;
}
.flex-wrapper > div {
  height: 100%;
  width: 50%;
}

#single-book-banner {
  background-color: rgba(0, 22, 24, 0.8);
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 180px 0;
  margin-bottom: 200px;
}
@media only screen and (max-width: 1100px) {
  #single-book-banner {
    padding: 80px 0;
  }
}

/*#############################################################
## Homepage Banner
/*###########################################################*/
#homepage-banner {
  background-color: rgba(0, 22, 24, 0.8);
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 60px;
  margin-bottom: 140px;
}
@media only screen and (max-width: 767px) {
  #homepage-banner {
    margin-bottom: 110px;
  }
}
#homepage-banner .homepage-banner-wrapper .homepage-banner-content {
  width: calc(100% - 635px);
  align-self: center;
}
@media only screen and (max-width: 1200px) {
  #homepage-banner .homepage-banner-wrapper .homepage-banner-content {
    order: 2;
    width: 100%;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
#homepage-banner .homepage-banner-wrapper .homepage-banner-book {
  width: 420px;
  height: 100%;
  margin-left: 155px;
  margin-right: 60px;
}
@media only screen and (max-width: 1200px) {
  #homepage-banner .homepage-banner-wrapper .homepage-banner-book {
    order: 1;
    width: 100%;
    text-align: center;
    margin-left: 100px;
    margin-right: 100px;
  }
}
#homepage-banner .homepage-banner-wrapper .homepage-banner-book .homepage-banner-book-img {
  display: inline-block;
  position: relative;
}
#homepage-banner .homepage-banner-wrapper .homepage-banner-book .homepage-banner-book-img .homepage-banner-book-img-coming-soon {
  background-color: #F9D021;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  position: absolute;
  top: 30px;
  right: 90%;
  -moz-transform: rotate(-12deg);
  -o-transform: rotate(-12deg);
  -ms-transform: rotate(-12deg);
  -webkit-transform: rotate(-12deg);
  transform: rotate(-12deg);
}
@media only screen and (max-width: 767px) {
  #homepage-banner .homepage-banner-wrapper .homepage-banner-book .homepage-banner-book-img .homepage-banner-book-img-coming-soon {
    width: 80px;
    height: 80px;
  }
}
#homepage-banner .homepage-banner-wrapper .homepage-banner-book .homepage-banner-book-img .homepage-banner-book-img-coming-soon span {
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #001B1D;
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  #homepage-banner .homepage-banner-wrapper .homepage-banner-book .homepage-banner-book-img .homepage-banner-book-img-coming-soon span {
    font-size: 14px;
  }
}
#homepage-banner p {
  color: #fff;
}

.icon-people {
  position: absolute;
}
.icon-people.icon-peolple-home-a {
  bottom: -35px;
  left: 40px;
}
.icon-people.icon-peolple-home-b {
  bottom: -120px;
  right: 120%;
}
@media only screen and (max-width: 1200px) {
  .icon-people.icon-peolple-home-b {
    display: none;
  }
}
.icon-people.icon-peolple-home-c {
  bottom: -80px;
  left: 20%;
}
@media only screen and (max-width: 1200px) {
  .icon-people.icon-peolple-home-c {
    display: none;
  }
}
.icon-people.icon-peolple-home-d {
  bottom: -62px;
  right: 160%;
}
@media only screen and (max-width: 1200px) {
  .icon-people.icon-peolple-home-d {
    display: none;
  }
}
.icon-people.icon-peolple-home-e {
  bottom: -130px;
  right: -15px;
}
@media only screen and (max-width: 1200px) {
  .icon-people.icon-peolple-home-e {
    display: none;
  }
}
.icon-people.icon-peolple-book-a {
  top: 98%;
  left: 58px;
}
@media only screen and (max-width: 767px) {
  .icon-people.icon-peolple-book-a {
    display: none;
  }
}
.icon-people.icon-peolple-book-b {
  bottom: -73px;
  left: 35%;
}
@media only screen and (max-width: 767px) {
  .icon-people.icon-peolple-book-b {
    left: 20px;
  }
}
.icon-people.icon-peolple-book-c {
  bottom: -115px;
  left: 55%;
}
.icon-people.icon-peolple-book-d {
  bottom: -70px;
  left: 69%;
}
@media only screen and (max-width: 767px) {
  .icon-people.icon-peolple-book-d {
    left: 160px;
  }
}
.icon-people.icon-peolple-book-e {
  bottom: -50px;
  right: 50px;
}
.icon-people.icon-peolple-home-f {
  bottom: -105px;
  right: 50px;
}
.icon-people.icon-people-worsheet-3 {
  bottom: 0;
  right: 110%;
}
@media only screen and (max-width: 1100px) {
  .icon-people.icon-people-worsheet-3 {
    display: none;
  }
}
.icon-people.icon-people-button-workbook {
  bottom: -15px;
  left: 130%;
}
@media only screen and (max-width: 767px) {
  .icon-people.icon-people-button-workbook {
    display: none;
  }
}
.icon-people.icon-people-see-book-content {
  bottom: 110%;
  right: 20%;
}
@media only screen and (max-width: 767px) {
  .icon-people.icon-people-see-book-content {
    display: none;
  }
}
.icon-people.icon-peolple-newsletter-tell-me-more {
  left: 105%;
  bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .icon-people.icon-peolple-newsletter-tell-me-more {
    display: none;
  }
}

body .site-content {
  padding: 80px 0 80px 0;
}
@media only screen and (max-width: 767px) {
  body .site-content {
    padding: 50px 0 50px 0;
  }
}

body.home .site-content,
body.single-book .site-content {
  padding: 0 0;
}

.text-above-header {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E32726;
  display: inline-block;
  margin-bottom: 35px;
}
.text-above-header .text-above-header-date {
  color: #000000;
}

.container-download-button {
  margin-top: 30px;
}
.container-download-button .button-download {
  margin-right: 15px !important;
}
.container-download-button .button-download:last-child {
  margin-right: 0 !important;
}

.button-download[title*=Amazon] {
  background-position: 50% 21px !important;
}
.button-download[title*=Audible] {
  background-position: 52% 10px !important;
}

.lead-content p {
  font-size: 42px;
  line-height: 1.3;
}
.lead-content p i,
.lead-content p em {
  font-weight: 400;
}
@media only screen and (max-width: 1100px) {
  .lead-content p {
    font-size: 30px;
  }
}

#form-download-workbook h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E32726;
}

#homepage-download-workbook .download-workbook-container .download-workbook-content {
  align-self: center;
}
@media only screen and (max-width: 1100px) {
  #homepage-download-workbook .download-workbook-container .download-workbook-content {
    width: 100%;
  }
}
#homepage-download-workbook .download-workbook-container .download-workbook-graph {
  text-align: right;
}
@media only screen and (max-width: 1100px) {
  #homepage-download-workbook .download-workbook-container .download-workbook-graph {
    margin-top: 40px;
    width: 100%;
  }
}
#homepage-download-workbook .homepage-download-workbook-boxes {
  height: 500px;
  width: 480px;
  position: relative;
  display: inline-block;
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  -webkit-transform: scale(1);
  transform: scale(1);
  -moz-transform-origin: right top;
  -o-transform-origin: right top;
  -ms-transform-origin: right top;
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 1350px) {
  #homepage-download-workbook .homepage-download-workbook-boxes {
    -moz-transform: scale(0.8);
    -o-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 1200px) {
  #homepage-download-workbook .homepage-download-workbook-boxes {
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -ms-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform: scale(0.7);
  }
}
@media only screen and (max-width: 1100px) {
  #homepage-download-workbook .homepage-download-workbook-boxes {
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    -webkit-transform: scale(1);
    transform: scale(1);
    height: auto;
    width: 100%;
  }
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes {
  width: 220px;
  height: 220px;
  background-color: #54A5BB;
  border-radius: 29.4378px;
  position: absolute;
  display: block;
  padding: 30px 25px;
  text-align: left;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
@media only screen and (max-width: 1100px) {
  #homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes {
    position: static;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    width: 49%;
    margin: 5px 0;
    display: inline-block;
  }
}
@media only screen and (max-width: 767px) {
  #homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes {
    width: 100%;
    display: block;
    margin: 10px 0;
  }
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes .top-title {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #000000;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes h3 {
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0.02em;
  color: #FFFFFF;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes.w-box-1 {
  background-color: #54A5BB;
  top: 50px;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes.w-box-1:hover {
  top: 45px;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes.w-box-2 {
  background-color: #FF9473;
  left: 260px;
  top: 0;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes.w-box-2:hover {
  top: -5px;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes.w-box-3 {
  background-color: #46C7BA;
  top: 290px;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes.w-box-3:hover {
  top: 285px;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes.w-box-4 {
  background-color: #9C432C;
  left: 260px;
  top: 240px;
}
#homepage-download-workbook .homepage-download-workbook-boxes .workbook-boxes.w-box-4:hover {
  top: 235px;
}

#homepage-introduction {
  margin-top: 80px;
}

/*#############################################################
## Homepage Testimonials
/*###########################################################*/
#homepage-testimonials {
  margin-bottom: 100px;
}
@media only screen and (max-width: 768px) {
  #homepage-testimonials {
    margin-bottom: 50px;
  }
}
#homepage-testimonials .homepage-testimonials-container {
  justify-content: space-between;
}
#homepage-testimonials .homepage-testimonials-container .homepage-testimonials-container-each {
  width: 49%;
}
@media only screen and (max-width: 1250px) {
  #homepage-testimonials .homepage-testimonials-container .homepage-testimonials-container-each {
    width: 100%;
  }
}
#homepage-testimonials .homepage-testimonials-wrapper .homepage-testimonials-image {
  width: 182px;
}
@media only screen and (max-width: 767px) {
  #homepage-testimonials .homepage-testimonials-wrapper .homepage-testimonials-image {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}
#homepage-testimonials .homepage-testimonials-wrapper .homepage-testimonials-image .homepage-testimonials-bg {
  width: 182px;
  height: 182px;
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
  background-size: cover;
  border-radius: 24px;
  display: inline-block;
}
#homepage-testimonials .homepage-testimonials-wrapper .homepage-testimonials-content {
  width: calc(100% - 212px);
  margin-left: 30px;
  padding: 0 10px;
}
@media only screen and (max-width: 767px) {
  #homepage-testimonials .homepage-testimonials-wrapper .homepage-testimonials-content {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
#homepage-testimonials .homepage-testimonials-wrapper .homepage-testimonials-content p {
  font-family: Jost;
  font-style: italic;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: #000000;
}
#homepage-testimonials .homepage-testimonials-wrapper .homepage-testimonials-content .homepage-testimonials-name {
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: #E32726;
}
#homepage-testimonials .homepage-testimonials-wrapper .homepage-testimonials-content .homepage-testimonials-label {
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: #000000;
}

#homepage-download-workbook {
  margin-bottom: 80px;
}
@media only screen and (max-width: 767px) {
  #homepage-download-workbook {
    margin-bottom: 0;
  }
}

#form-download-workbook {
  margin-bottom: 50px;
}

#tell-me-more-newsletter {
  padding: 120px 0 100px 0;
}
#tell-me-more-newsletter h2 {
  margin-bottom: 30px;
}

body.home #tell-me-more-newsletter {
  margin-bottom: 200px;
}
@media only screen and (max-width: 1100px) {
  body.home #tell-me-more-newsletter {
    margin-bottom: 0;
  }
}

#book-author-introduction {
  margin-bottom: 80px;
  margin-top: 80px;
}
#book-author-introduction .book-author-height {
  margin-bottom: 30px;
}

.book-author-introduction-wrapper .book-author-introduction-wrapper-image {
  width: 220px;
}
@media only screen and (max-width: 1100px) {
  .book-author-introduction-wrapper .book-author-introduction-wrapper-image {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .book-author-introduction-wrapper .book-author-introduction-wrapper-image {
    text-align: center;
  }
}
.book-author-introduction-wrapper .book-author-introduction-wrapper-content {
  margin-left: 100px;
  width: calc(100% - (220px + 100px));
}
@media only screen and (max-width: 1100px) {
  .book-author-introduction-wrapper .book-author-introduction-wrapper-content {
    width: 100%;
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .book-author-introduction-wrapper .book-author-introduction-wrapper-content {
    text-align: center;
  }
}

.person-profile-wrapper {
  display: inline-block;
  text-align: center;
}
.person-profile-wrapper .person-profile-circle {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
  background-size: cover;
  margin-bottom: 20px;
}
.person-profile-wrapper .person-profile-content {
  text-align: center;
}
.person-profile-wrapper .person-profile-content .person-profile-title {
  color: #E32726;
  font-size: 24px;
}

#header-wrapper {
  background-color: #001B1D;
}
#header-wrapper .header-wrapper-main {
  padding: 20px 0;
  background-color: #001B1D;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
#header-wrapper .header-wrapper-main.scroll-to-fixed-fixed {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.header-button-wrapper {
  position: relative;
  z-index: 5;
  display: inline-block;
}
.header-button-wrapper .header-all-buttons {
  margin-top: 10px;
  position: absolute;
  display: none;
}

#general-banner {
  background-color: #dedede;
}

#footer-wrapper {
  background-color: #001B1D;
}
#footer-wrapper .footer-copyright,
#footer-wrapper .footer-privacy {
  color: #fff;
  font-size: 18px;
  margin-right: 15px;
}
@media only screen and (max-width: 767px) {
  #footer-wrapper .footer-copyright,
#footer-wrapper .footer-privacy {
    display: block;
    margin-right: 0;
    margin-bottom: 25px;
  }
}
#footer-wrapper .footer-copyright a,
#footer-wrapper .footer-privacy a {
  color: inherit;
}

.custom-newsletter-wrapper {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}
@media only screen and (max-width: 767px) {
  .custom-newsletter-wrapper {
    max-width: 100%;
  }
}
.custom-newsletter-wrapper .custom-newsletter-field {
  width: calc(100% - 200px);
}
@media only screen and (max-width: 767px) {
  .custom-newsletter-wrapper .custom-newsletter-field {
    width: 100%;
  }
}
.custom-newsletter-wrapper .custom-newsletter-button {
  width: 200px;
}
@media only screen and (max-width: 767px) {
  .custom-newsletter-wrapper .custom-newsletter-button {
    width: 100%;
    margin-top: 20px;
  }
}
.custom-newsletter-wrapper .custom-newsletter-response {
  width: 100%;
}
.custom-newsletter-wrapper .custom-newsletter-response .mc4wp-response {
  font-size: 70%;
  margin-top: 20px;
}
.custom-newsletter-wrapper .custom-newsletter-field,
.custom-newsletter-wrapper .custom-newsletter-button,
.custom-newsletter-wrapper .custom-newsletter-response {
  float: left;
}
.custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:hover, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:link, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:focus, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:visited, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:active, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit],
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:hover,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:link,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:focus,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:visited,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:active,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit],
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:hover,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:link,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:focus,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:visited,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:active,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit] {
  font-family: Jost;
  font-style: normal;
  font-weight: bold;
  background-color: #E32726 !important;
  background-image: none;
  color: #ffffff !important;
  border-radius: 0px 12px 12px 0px !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
@media only screen and (max-width: 767px) {
  .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:hover, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:link, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:focus, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:visited, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:active, .custom-newsletter-wrapper .custom-newsletter-field input[type=submit],
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:hover,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:link,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:focus,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:visited,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:active,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit],
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:hover,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:link,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:focus,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:visited,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:active,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit] {
    border-radius: 0px 0px 0px 0px !important;
  }
}
.custom-newsletter-wrapper .custom-newsletter-field input,
.custom-newsletter-wrapper .custom-newsletter-button input,
.custom-newsletter-wrapper .custom-newsletter-response input {
  width: 100%;
  padding: 15px !important;
  border: 0 solid transparent;
  margin: 0;
  display: block;
  border: 1px solid #E32726;
}
.custom-newsletter-wrapper .custom-newsletter-field input[type=submit]:hover,
.custom-newsletter-wrapper .custom-newsletter-button input[type=submit]:hover,
.custom-newsletter-wrapper .custom-newsletter-response input[type=submit]:hover {
  opacity: 0.8;
}

/*#############################################################
## Header Navigation
/*###########################################################*/
.navigation-wrapper .navigation-wrapper-logo {
  width: 200px;
  text-align: left;
  align-self: center;
}
@media only screen and (max-width: 1350px) {
  .navigation-wrapper .navigation-wrapper-logo {
    order: 1;
    width: 50%;
  }
}
.navigation-wrapper .navigation-wrapper-menu {
  width: calc(100% - 430px);
  text-align: right;
  align-self: center;
}
@media only screen and (max-width: 1350px) {
  .navigation-wrapper .navigation-wrapper-menu {
    order: 3;
    width: 100%;
    text-align: left;
    margin-top: 10px;
    margin-left: -15px;
  }
}
@media only screen and (max-width: 850px) {
  .navigation-wrapper .navigation-wrapper-menu {
    display: none;
  }
}
.navigation-wrapper .navigation-wrapper-button {
  width: 220px;
  margin-left: 10px;
  align-self: center;
}
.navigation-wrapper .navigation-wrapper-button a.button {
  max-width: 220px;
}
@media only screen and (max-width: 850px) {
  .navigation-wrapper .navigation-wrapper-button a.button {
    display: none;
  }
}
.navigation-wrapper .navigation-wrapper-button .remodal-navigation-toggler {
  display: none;
}
@media only screen and (max-width: 850px) {
  .navigation-wrapper .navigation-wrapper-button .remodal-navigation-toggler {
    display: inline-block;
  }
}
@media only screen and (max-width: 1350px) {
  .navigation-wrapper .navigation-wrapper-button {
    order: 2;
    width: 50%;
    margin-left: 0;
    text-align: right;
  }
}

nav.menu-desktop {
  /*-------------------------------
  # Main Menu
  --------------------------------*/
  /*-------------------------------
  # Sub Menu
  --------------------------------*/
}
nav.menu-desktop > ul.main-menu {
  list-style-type: none;
  list-style-position: outside;
  margin: 0;
  padding: 0;
  display: inline-block;
  /*-------------------------------
   # Main Menu: Current Link
  --------------------------------*/
}
nav.menu-desktop > ul.main-menu > li {
  display: inline-block;
  position: relative;
  margin-bottom: 0;
}
nav.menu-desktop > ul.main-menu > li > a {
  padding: 5px 15px;
  display: inline-block;
  color: #ffffff;
  font-size: 24px;
  text-transform: uppercase;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  /*-------------------------------
   # Main Menu: Hover Link
  --------------------------------*/
}
nav.menu-desktop > ul.main-menu > li > a:hover {
  opacity: 0.6;
}
nav.menu-desktop > ul.main-menu > li.menu-item-has-children > a:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-left: 10px;
}
nav.menu-desktop > ul.main-menu > li.current-menu-ancestor > a,
nav.menu-desktop > ul.main-menu > li.current-menu-parent > a,
nav.menu-desktop > ul.main-menu > li.current_page_parent > a,
nav.menu-desktop > ul.main-menu > li.current_page_ancestor > a,
nav.menu-desktop > ul.main-menu > li.current-menu-item > a,
nav.menu-desktop > ul.main-menu > li.current_page_item > a {
  font-weight: bold;
}
nav.menu-desktop > ul.main-menu > li:hover ul.sub-menu {
  visibility: visible;
  opacity: 1;
  top: 100%;
}
nav.menu-desktop > ul.main-menu > li ul.sub-menu {
  list-style-type: none;
  list-style-position: outside;
  margin: 0;
  padding: 20px 0;
  display: inline-block;
  position: absolute;
  z-index: 100;
  background-color: #dedede;
  min-width: 200px;
  background-color: #ffffff;
  box-shadow: 0px 4px 15px rgba(105, 105, 105, 0.5);
  border: 0 solid transparent;
  border-radius: 2px;
  visibility: hidden;
  opacity: 0;
  right: 0;
  top: 150%;
  margin-top: 10%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  /*-------------------------------
   # Sub Menu: Current Link
  --------------------------------*/
}
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li {
  display: block;
  text-align: left;
  margin-bottom: 0.5em;
}
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li:last-child {
  margin-bottom: 0;
}
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li > a {
  padding: 5px 15px;
  display: block;
  margin: 0;
  /*-------------------------------
   # Sub Menu: Hover Link
  --------------------------------*/
}
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li > a:hover {
  text-decoration: none;
  color: #ffffff;
  background-color: rgba(52, 58, 64, 0.5);
}
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li.current-menu-ancestor > a,
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li.current-menu-parent > a,
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li.current_page_parent > a,
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li.current_page_ancestor > a,
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li.current-menu-item > a,
nav.menu-desktop > ul.main-menu > li ul.sub-menu > li.current_page_item > a {
  color: #ffffff;
  background-color: #343a40;
}

#book-about-author .book-about-author-container {
  padding: 80px 50px;
  background: #FFFFFF;
  border-radius: 29.4378px;
}
@media only screen and (max-width: 767px) {
  #book-about-author .book-about-author-container {
    padding: 50px 25px;
    text-align: center;
  }
}
#book-about-author .book-about-author-container .book-about-author-top-content .top-content-image {
  width: 120px;
}
@media only screen and (max-width: 767px) {
  #book-about-author .book-about-author-container .book-about-author-top-content .top-content-image {
    width: 100%;
  }
}
#book-about-author .book-about-author-container .book-about-author-top-content .top-content-image .top-content-image-circle {
  height: 120px;
  width: 120px;
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
  display: inline-block;
}
#book-about-author .book-about-author-container .book-about-author-top-content .top-content-content {
  width: calc(100% - 150px);
  margin-left: 30px;
}
@media only screen and (max-width: 767px) {
  #book-about-author .book-about-author-container .book-about-author-top-content .top-content-content {
    width: 100%;
    margin-left: 0;
  }
}

#book-the-testimonials h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E32726;
}

.book-the-testimonials-container .book-the-testimonials-container-each {
  padding: 5px;
  margin-bottom: 20px;
  width: 50%;
}
@media only screen and (max-width: 1250px) {
  .book-the-testimonials-container .book-the-testimonials-container-each {
    width: 100%;
  }
}
.book-the-testimonials-container .book-the-testimonials-container-each .book-testimonial-each {
  padding-left: 40px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.book-the-testimonials-container .book-the-testimonials-container-each:nth-of-type(2) .book-testimonial-each, .book-the-testimonials-container .book-the-testimonials-container-each:nth-of-type(3) .book-testimonial-each, .book-the-testimonials-container .book-the-testimonials-container-each:nth-of-type(5) .book-testimonial-each {
  background-color: #fff;
}
@media only screen and (max-width: 1250px) {
  .book-the-testimonials-container .book-the-testimonials-container-each:nth-child(2n+1) .book-testimonial-each {
    background-color: #fff !important;
  }
  .book-the-testimonials-container .book-the-testimonials-container-each:nth-child(2n+2) .book-testimonial-each {
    background-color: transparent !important;
  }
}
.book-the-testimonials-container .book-the-testimonials-container-each:nth-child(2n+1) .book-testimonial-each {
  margin-right: 10px;
}
@media only screen and (max-width: 1250px) {
  .book-the-testimonials-container .book-the-testimonials-container-each:nth-child(2n+1) .book-testimonial-each {
    margin-right: 0;
  }
}

#book-to-discover h2 {
  font-family: Jost;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E32726;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each {
  width: 50%;
}
@media only screen and (max-width: 1100px) {
  #book-to-discover .book-to-discover-container .book-to-discover-container-each {
    width: 100%;
  }
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each .book-to-discover-icon {
  width: 96px;
}
@media only screen and (max-width: 600px) {
  #book-to-discover .book-to-discover-container .book-to-discover-container-each .book-to-discover-icon {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each .book-to-discover-icon circle {
  fill: #54A5BB;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each .book-to-discover-icon g {
  background: #F4F4F4;
  mix-blend-mode: exclusion;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(1) .book-to-discover-icon circle {
  fill: #54A5BB;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(1) .book-to-discover-icon g {
  background: #F4F4F4;
  mix-blend-mode: exclusion;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(2) .book-to-discover-icon circle {
  fill: #FF9473;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(2) .book-to-discover-icon g {
  background: #F4F4F4;
  mix-blend-mode: exclusion;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(3) .book-to-discover-icon circle {
  fill: #46C7BA;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(3) .book-to-discover-icon g {
  mix-blend-mode: inherit;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(3) .book-to-discover-icon g path {
  color: #5CBEB7;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(4) .book-to-discover-icon circle {
  fill: #9C432C;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(4) .book-to-discover-icon g {
  mix-blend-mode: inherit;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(4) .book-to-discover-icon g path {
  color: #5CBEB7;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(5) .book-to-discover-icon circle {
  fill: #FF9473;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(5) .book-to-discover-icon g {
  mix-blend-mode: inherit;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(5) .book-to-discover-icon g path {
  color: #0B7C7D;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(6) .book-to-discover-icon circle {
  fill: #46C7BA;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(6) .book-to-discover-icon g {
  mix-blend-mode: inherit;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(6) .book-to-discover-icon g path {
  color: #A35242;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(7) .book-to-discover-icon circle {
  fill: #54A5BB;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(7) .book-to-discover-icon g {
  mix-blend-mode: inherit;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(7) .book-to-discover-icon g path {
  color: #976E42;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(8) .book-to-discover-icon circle {
  fill: #54A5BB;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(8) .book-to-discover-icon g {
  mix-blend-mode: inherit;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(8) .book-to-discover-icon g path {
  color: #976E42;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(9) .book-to-discover-icon circle {
  fill: #FF9473;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(9) .book-to-discover-icon g {
  mix-blend-mode: inherit;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(9) .book-to-discover-icon g path {
  color: #0B7C7D;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(10) .book-to-discover-icon circle {
  fill: #46C7BA;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(10) .book-to-discover-icon g {
  mix-blend-mode: inherit;
}
#book-to-discover .book-to-discover-container .book-to-discover-container-each:nth-of-type(10) .book-to-discover-icon g path {
  color: #5CBEB7;
}
#book-to-discover .book-to-discover-each {
  margin-bottom: 40px;
}
#book-to-discover .book-to-discover-each .book-to-discover-content {
  width: calc(100% - (96px + 30px));
  margin-left: 30px;
  align-self: center;
}
@media only screen and (max-width: 600px) {
  #book-to-discover .book-to-discover-each .book-to-discover-content {
    width: 100%;
    text-align: center;
    margin-left: 0;
  }
}

#book-the-testimonials .book-testimonial-each {
  border-radius: 29.4378px;
}
#book-the-testimonials .book-testimonial-each .book-testimonial-top {
  margin-bottom: 50px;
}
#book-the-testimonials .book-testimonial-each .book-testimonial-top blockquote p {
  font-style: italic;
}
#book-the-testimonials .book-testimonial-each .book-testimonial-bottom .book-testimonial-bottom-image {
  width: 220px;
}
@media only screen and (max-width: 768px) {
  #book-the-testimonials .book-testimonial-each .book-testimonial-bottom .book-testimonial-bottom-image {
    width: 100%;
  }
}
#book-the-testimonials .book-testimonial-each .book-testimonial-bottom .book-testimonial-bottom-image .book-testimonial-bottom-image-tag {
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: transparent;
  background-size: cover;
  width: 220px;
  height: 220px;
  border-radius: 24px;
}
#book-the-testimonials .book-testimonial-each .book-testimonial-bottom .book-testimonial-bottom-content {
  width: calc(100% - 250px);
  margin-left: 30px;
  align-self: center;
}
@media only screen and (max-width: 768px) {
  #book-the-testimonials .book-testimonial-each .book-testimonial-bottom .book-testimonial-bottom-content {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
}
#book-the-testimonials .book-testimonial-each .book-testimonial-bottom .book-testimonial-bottom-content h3 {
  color: #E32726;
  margin-bottom: 0;
}
#book-the-testimonials .book-testimonial-each .book-testimonial-bottom .book-testimonial-bottom-content h3,
#book-the-testimonials .book-testimonial-each .book-testimonial-bottom .book-testimonial-bottom-content p {
  font-family: Jost;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
}

/*#############################################################
## General Book Purchase
/*###########################################################*/
#general-feature-book {
  margin-bottom: 20px;
}

.general-feature-book-wrapper .general-feature-book-image {
  width: 220px;
}
@media only screen and (max-width: 1100px) {
  .general-feature-book-wrapper .general-feature-book-image {
    width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .general-feature-book-wrapper .general-feature-book-image {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
  }
}
.general-feature-book-wrapper .general-feature-book-image .general-feature-book-cover {
  width: 220px;
}
@media only screen and (max-width: 1100px) {
  .general-feature-book-wrapper .general-feature-book-image .general-feature-book-cover {
    width: 320px;
  }
}
@media only screen and (max-width: 767px) {
  .general-feature-book-wrapper .general-feature-book-image .general-feature-book-cover {
    width: auto;
  }
}
.general-feature-book-wrapper .general-feature-book-content {
  margin-left: 120px;
  width: calc(100% - (220px + 120px));
  align-self: center;
}
@media only screen and (max-width: 1100px) {
  .general-feature-book-wrapper .general-feature-book-content {
    margin-left: 50px;
    width: calc(100% - (300px + 50px));
  }
}
@media only screen and (max-width: 767px) {
  .general-feature-book-wrapper .general-feature-book-content {
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
@media only screen and (max-width: 1100px) {
  .general-feature-book-wrapper .general-feature-book-content a.button {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }
}

.main-blog-each {
  margin-bottom: 70px;
}
.main-blog-each .main-blog-each-content {
  padding-left: 80px;
}
.main-blog-each.content-image .main-blog-each-image {
  order: 2;
}
.main-blog-each.content-image .main-blog-each-content {
  padding-right: 80px;
  padding-left: 0;
  order: 1;
}
@media only screen and (max-width: 1250px) {
  .main-blog-each .main-blog-each-image {
    width: 100%;
    text-align: center;
    padding-right: 0 !important;
    padding-left: 0 !important;
    order: 1 !important;
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 1250px) {
  .main-blog-each .main-blog-each-content {
    width: 100%;
    text-align: center;
    padding-right: 0 !important;
    padding-left: 0 !important;
    order: 2 !important;
  }
}
.main-blog-each .main-blog-each-content {
  padding-left: 80px;
}

.blog-each-content p {
  font-family: Jost;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 35px;
  letter-spacing: 0.02em;
  color: #001B1D;
}
.blog-each-content h2 {
  font-family: Jost;
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  letter-spacing: 0.02em;
  color: #001B1D;
  margin-bottom: 30px;
}

.single-post .single-content h1 {
  font-style: normal;
  font-weight: 600;
  font-size: 42px;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
  display: inline;
}
@media only screen and (max-width: 767px) {
  .single-post .single-content h1 {
    font-size: 30px;
  }
}
.single-post .single-content hr {
  visibility: hidden;
  height: 30px;
  margin: 0;
}
.single-post .single-content p {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #001B1D;
}
@media only screen and (max-width: 767px) {
  .single-post .single-content p {
    font-size: 16px;
  }
}

/*#############################################################
## Single Post
/*###########################################################*/
#intro-content-image {
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  #intro-content-image {
    padding: 0 0;
  }
}
#intro-content-image h1 {
  font-family: Jost;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #001B1D;
  margin-bottom: 40px;
}
#intro-content-image h1 .intro-content-image-sub {
  color: #E32726;
}
#intro-content-image p {
  font-style: normal;
  font-weight: normal;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #001B1D;
}
@media only screen and (max-width: 767px) {
  #intro-content-image p {
    font-size: 28px;
  }
}
#intro-content-image .intro-content-image-bg {
  height: 600px;
  width: 600px;
  background-attachment: scroll;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-color: #f8f8f8;
  background-size: cover;
}

.intro-content-image-container .intro-content-image-content {
  padding-right: 15px;
}
.intro-content-image-container .intro-content-image-content.make-this-fullwidth {
  width: 100%;
  padding-right: 0;
}
@media only screen and (max-width: 1250px) {
  .intro-content-image-container .intro-content-image-content {
    width: 100%;
    order: 2;
    padding-right: 0;
    margin-bottom: 50px;
  }
}
.intro-content-image-container .intro-content-image-image {
  padding-left: 15px;
}
@media only screen and (max-width: 1250px) {
  .intro-content-image-container .intro-content-image-image {
    width: 100%;
    order: 1;
    margin-bottom: 50px;
    padding-left: 0;
  }
}

.photo-with-credit {
  display: inline-block;
}
.photo-with-credit img {
  border-radius: 12px;
  max-height: 600px;
}
.photo-with-credit .photo-credit {
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  letter-spacing: 0.02em;
  color: #4E4B4E;
  margin-bottom: 30px;
  margin-top: 20px;
}

.photo-with-credit-container {
  float: right;
  margin-left: 50px;
}
@media only screen and (max-width: 1250px) {
  .photo-with-credit-container {
    margin-left: 0;
    width: 100%;
    text-align: center;
    float: none;
    margin-bottom: 30px;
  }
}

.single-content-bottom {
  overflow: hidden;
}
.single-content-bottom .single-content-bottom-text {
  float: left;
  width: calc(100% - (220px + 150px));
}
@media only screen and (max-width: 1000px) {
  .single-content-bottom .single-content-bottom-text {
    width: 100%;
    float: none;
  }
}
.single-content-bottom .single-content-bottom-text.no-purchase-section {
  width: calc(100%);
  float: none;
}
.single-content-bottom .single-content-bottom-purchase {
  width: 220px;
  float: left;
  margin-left: 150px;
}
@media only screen and (max-width: 1000px) {
  .single-content-bottom .single-content-bottom-purchase {
    width: 100%;
    float: none;
    margin-left: 0;
    margin-top: 50px;
  }
}
.single-content-bottom .single-content-bottom-purchase .single-content-bottom-purchase-container {
  z-index: 4;
}
@media only screen and (max-width: 800px) {
  .single-content-bottom .single-content-bottom-purchase .single-content-bottom-purchase-container {
    text-align: center;
  }
}
@media only screen and (max-width: 800px) {
  .single-content-bottom .single-content-bottom-purchase .single-content-bottom-purchase-container .button {
    width: 100%;
    max-width: 100%;
  }
}
.single-content-bottom .single-content-bottom-purchase h2 {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E32726;
}
.single-content-bottom .single-content-bottom-purchase h2 br {
  display: none;
}
.single-content-bottom .single-content-bottom-purchase h2 span {
  color: #001B1D;
}
.single-content-bottom .single-content-bottom-purchase p {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 35px;
  text-align: center;
  letter-spacing: 0.02em;
  color: #001B1D;
}

#back-to-all-post a {
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 64px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #E32726;
}

.blog-date-category {
  margin-bottom: 30px;
}
.blog-date-category span.blog-date-category-date {
  font-family: Jost;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #000000;
}
.blog-date-category a.blog-date-category-taxonomy {
  font-family: Jost;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  text-transform: uppercase;
  color: #E32726;
}

.steps-building-cultstatus .steps-building-cultstatus-each {
  padding: 80px 50px;
  background-color: #fff;
  border-radius: 29.4378px;
  margin-bottom: 50px;
}
.steps-building-cultstatus .steps-building-cultstatus-each .steps-step {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #E32726;
  display: block;
  margin-bottom: 20px;
}
.steps-building-cultstatus .steps-building-cultstatus-each h3 {
  font-family: Jost;
  font-style: normal;
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.02em;
  color: #001B1D;
}
.steps-building-cultstatus .steps-building-cultstatus-each p {
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #000000;
}
.steps-building-cultstatus .steps-building-cultstatus-each ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: block;
}
.steps-building-cultstatus .steps-building-cultstatus-each ul li {
  display: block;
  margin-bottom: 5px;
}
.steps-building-cultstatus .steps-building-cultstatus-each ul li h4 {
  font-family: Jost;
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: #000000;
  -webkit-transition: all 0.3s ease-in-out 0s;
  -moz-transition: all 0.3s ease-in-out 0s;
  -ms-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}
.steps-building-cultstatus .steps-building-cultstatus-each ul li h4 span {
  display: inline;
  position: relative;
  top: -4px;
}
.steps-building-cultstatus .steps-building-cultstatus-each ul li h4.exercises-hover:hover {
  margin-left: 8px;
}
.steps-building-cultstatus .steps-building-cultstatus-each ul li:last-child {
  margin-bottom: 0;
}

.blog-listing {
  padding: 50px 0;
}
@media only screen and (max-width: 767px) {
  .blog-listing {
    padding: 0 0;
  }
}

.tell-me-more-newsletter-mailmunch {
  overflow: hidden;
  width: 100%;
  max-width: 600px;
}

/*# sourceMappingURL=style-main.css.map */
