body {
  font-family: "Source Serif 4", serif;
}

.container-max {
  max-width: 1400px;
  position: relative;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.no-margin {
  margin: 0;
}

p {
  font-weight: 300;
}

.section-head .section-title {
  font-size: 2.5rem;
  font-weight: 500;
  color: #1a1a1a;
}
.section-head .section-description {
  font-size: 16px;
  font-weight: 500;
  color: #444444;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 30px;
  background: #1a1a1a;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}
.theme-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.theme-btn:hover {
  background: #C0392B;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(192, 57, 43, 0.35);
}
.theme-btn:hover i {
  transform: translateX(2px);
}
.theme-btn.secondary-btn {
  background: #C0392B;
  padding: 15px 20px;
  font-size: 18px;
  border-radius: 30px 30px 0 0;
}
.theme-btn.secondary-btn i {
  font-size: 15px;
}
.theme-btn.secondary-btn:hover {
  background: rgb(158.6655319149, 47.1038297872, 35.5344680851);
}

.site-header {
  padding: 0;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #ffffff;
}
.site-header.scrolled {
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.12);
}
.site-header .header-wrapper {
  display: flex;
  align-items: center;
  height: 75px;
  width: 100%;
}
.site-header .header-wrapper .logo-left {
  flex-shrink: 0;
  margin-right: 30px;
}
.site-header .header-wrapper .logo-left a {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-header .header-wrapper .logo-left img {
  height: 50px;
  width: auto;
  display: block;
}
.site-header .header-wrapper .nav-center {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}
.site-header .header-wrapper .nav-center .nav-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item {
  position: relative;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  padding: 0 16px;
  font-size: 14px;
  font-weight: 600;
  font-family: "Source Serif 4", serif;
  color: #222222;
  text-decoration: none;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: all 0.2s ease;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item .nav-link:hover {
  color: #2D5EAA;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item .nav-link.active {
  color: #2D5EAA;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.nav-cta {
  margin-left: 15px;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.nav-cta .header-cta {
  border: 1.5px solid #2D5EAA;
  padding: 10px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.3;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.nav-cta .header-cta .cta-label {
  font-size: 12px;
  font-weight: 400;
  color: #2D5EAA;
  margin: 0;
  white-space: nowrap;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.nav-cta .header-cta .cta-number {
  font-size: 14px;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.nav-cta .header-cta .cta-number:hover {
  color: #2D5EAA;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.nav-hamburger {
  display: none;
  flex: 0 0 auto;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.nav-hamburger .menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  cursor: pointer;
  padding: 0;
}
.site-header .header-wrapper .nav-center .nav-menu .nav-item.nav-hamburger .menu-toggle i {
  font-size: 28px;
  color: #222222;
  transition: all 0.3s ease;
}

.offcanvas-menu {
  background: #ffffff;
  width: 300px;
}
.offcanvas-menu .offcanvas-header {
  padding: 18px 20px;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.offcanvas-menu .offcanvas-header .offcanvas-logo img {
  height: 35px;
  width: auto;
  display: block;
}
.offcanvas-menu .offcanvas-header .offcanvas-close {
  background: none;
  border: none;
  color: #222222;
  font-size: 20px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: opacity 0.3s ease;
}
.offcanvas-menu .offcanvas-header .offcanvas-close:hover {
  opacity: 0.6;
}
.offcanvas-menu .offcanvas-body {
  padding: 10px 0;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li {
  border-bottom: 1px solid #f0f0f0;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li a {
  display: block;
  padding: 14px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #222222;
  text-decoration: none;
  letter-spacing: 0.5px;
  font-family: "Source Serif 4", serif;
  transition: all 0.3s ease;
}
.offcanvas-menu .offcanvas-body .offcanvas-nav li a:hover, .offcanvas-menu .offcanvas-body .offcanvas-nav li a.active {
  color: #00C8E0;
  padding-left: 25px;
}
.offcanvas-menu .offcanvas-body .offcanvas-cta {
  padding: 20px;
  border: 1.5px solid #00C8E0;
  margin: 0 20px;
}
.offcanvas-menu .offcanvas-body .offcanvas-cta .cta-label {
  font-size: 11px;
  font-weight: 400;
  color: #00C8E0;
  margin-bottom: 4px;
}
.offcanvas-menu .offcanvas-body .offcanvas-cta .cta-number {
  font-size: 16px;
  font-weight: 700;
  color: #222222;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}
.offcanvas-menu .offcanvas-body .offcanvas-cta .cta-number:hover {
  color: #00C8E0;
}

.site-footer {
  background: linear-gradient(to bottom, #1a3a6e 0%, #0f2550 100%);
  padding: 0;
}
.site-footer .footer-newsletter-row {
  display: flex;
  align-items: center;
  padding: 70px 15px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  gap: 16px;
}
.site-footer .footer-newsletter-row .footer-newsletter-left {
  flex: 0 0 50%;
}
.site-footer .footer-newsletter-row .footer-newsletter-left .newsletter-label {
  font-size: 14px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.3px;
  margin: 0;
}
.site-footer .footer-newsletter-row .footer-newsletter-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
  margin: 0 30px;
}
.site-footer .footer-newsletter-row .footer-newsletter-right {
  flex: 1;
}
.site-footer .footer-newsletter-row .footer-newsletter-right .footer-newsletter-form {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 8px;
}
.site-footer .footer-newsletter-row .footer-newsletter-right .footer-newsletter-form .footer-newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  font-weight: 300;
  color: #ffffff;
  padding: 0;
}
.site-footer .footer-newsletter-row .footer-newsletter-right .footer-newsletter-form .footer-newsletter-input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-newsletter-row .footer-newsletter-right .footer-newsletter-form .footer-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.site-footer .footer-newsletter-row .footer-newsletter-right .footer-newsletter-form .footer-newsletter-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 1px;
  padding: 0;
  font-family: "Source Serif 4", serif;
  transition: color 0.3s ease;
  flex-shrink: 0;
}
.site-footer .footer-newsletter-row .footer-newsletter-right .footer-newsletter-form .footer-newsletter-btn:hover {
  color: #ffffff;
}
.site-footer .footer-bottom {
  padding: 28px 15px 28px;
}
.site-footer .footer-bottom .footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-footer .footer-bottom .footer-bottom-inner .footer-copyright {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.3px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}
.site-footer .footer-bottom .footer-bottom-inner .footer-policy-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer .footer-bottom .footer-bottom-inner .footer-policy-links li a {
  font-size: 14px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.site-footer .footer-bottom .footer-bottom-inner .footer-policy-links li a:hover {
  color: #ffffff;
}

.hero-section {
  padding: 0;
  min-height: 100vh;
  position: relative;
  padding-bottom: 355px;
  background: linear-gradient(to bottom, #0F2850, #2D5EAA);
}
.hero-section::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 275px;
  background: #ffffff;
  clip-path: polygon(0 0, 50% 35%, 100% 0, 100% 100%, 0 100%);
  z-index: 2;
}
.hero-section .hero-overlay-img {
  overflow: hidden;
  position: absolute;
  top: -70px;
  right: 0px;
  width: 50%;
  height: 100%;
  z-index: 0;
}
.hero-section .hero-overlay-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  opacity: 0.55;
}
.hero-section .hero-top {
  display: flex;
  justify-content: center;
  padding: 12px 0px;
  background-color: black;
}
.hero-section .hero-top .seller-tag img {
  height: 26px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero-section .hero-container {
  position: relative;
  z-index: 3;
}
.hero-section .hero-container .hero-content {
  text-align: center;
  padding: 0 20px;
  margin-bottom: 60px;
}
.hero-section .hero-container .hero-content .hero-author {
  font-size: 28px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 30px;
  margin-top: 55px;
}
.hero-section .hero-container .hero-content .hero-title {
  font-size: 8rem;
  font-weight: 400;
  color: #ffffff;
  line-height: 1;
  text-align: center;
  margin-bottom: 25px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
}
.hero-section .hero-container .hero-content .hero-subtitle {
  color: #fff;
  font-size: 20px;
  font-weight: 300;
  margin: 0;
  letter-spacing: 1px;
}
.hero-section .hero-container .hero-bottom {
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 80px;
  min-height: 360px;
}
.hero-section .hero-container .hero-bottom .hero-book-card {
  width: 650px;
  margin-bottom: -550px;
}
.hero-section .hero-container .hero-bottom .hero-book-card img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
  transform-origin: 50% 90%;
  animation: heroBookLoad 1s ease-out both;
}
@keyframes heroBookLoad {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.hero-section .hero-container .hero-bottom .review-card {
  width: 320px;
  justify-content: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero-section .hero-container .hero-bottom .review-card .review-stars {
  width: auto;
  height: 15px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  margin-bottom: 20px;
}
.hero-section .hero-container .hero-bottom .review-card .review-title {
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.hero-section .hero-container .hero-bottom .review-card .review-text {
  color: #fff;
  font-size: 17.5px;
  font-weight: 300;
  line-height: 1.42;
  margin-bottom: 20px;
}
.hero-section .hero-container .hero-bottom .review-card .review-author {
  color: #fff;
  font-size: 17.5px;
  font-weight: 500;
  margin: 0;
}

.book-purchase-section {
  padding: 0px 0px 100px;
  text-align: center;
}
.book-purchase-section .description-text {
  margin-bottom: 40px;
}
.book-purchase-section .description-text .description-content {
  color: #333;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 400;
  margin: 0;
  text-align: center;
  margin-top: 5px;
}
.book-purchase-section .buy-label {
  margin-bottom: 32px;
}
.book-purchase-section .buy-label .buy-title {
  color: #2d2d2d;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  margin-top: 60px;
}
.book-purchase-section .store-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.book-purchase-section .store-buttons .store-img {
  height: 45px;
  width: auto;
  border-radius: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}
.book-purchase-section .store-buttons .store-img:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.about-book-section {
  padding: 0;
  overflow: hidden;
  margin-bottom: 80px;
}
.about-book-section .about-img-col {
  padding: 0;
  margin-left: -20px;
  position: relative;
  background: #F3F8FF;
}
.about-book-section .about-img-col .about-img-wrap {
  height: 100%;
  margin-left: -25%;
  background-size: cover;
}
.about-book-section .about-img-col .about-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top left;
     object-position: top left;
  display: block;
}
.about-book-section .about-img-col .about-img-wrap .slick-list {
  overflow: visible;
}
.about-book-section .about-img-col .about-review-wrap {
  width: 500px;
  bottom: 35px;
  right: 0;
  z-index: 3;
  position: absolute;
  left: calc(50% - 250px);
  padding: 0px 35px 30px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(4px);
}
.about-book-section .about-img-col .about-review-wrap .review-top-img {
  position: relative;
  width: 110px;
  height: 110px;
  display: block;
  margin: -50px auto 25px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgb(255, 255, 255);
}
.about-book-section .about-img-col .about-review-wrap .review-top-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.about-book-section .about-img-col .about-review-wrap .about-review-slider .review-slide {
  outline: none;
}
.about-book-section .about-img-col .about-review-wrap .about-review-slider .review-slide .review-text {
  color: #D5D5D5;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 12px;
}
.about-book-section .about-img-col .about-review-wrap .about-review-slider .review-slide .review-author {
  margin-top: 30px;
}
.about-book-section .about-img-col .about-review-wrap .about-review-slider .review-slide .review-author .author-name {
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0px;
}
.about-book-section .about-img-col .about-review-wrap .about-review-slider .review-slide .review-author .author-title {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
}
.about-book-section .about-img-col .about-review-wrap .slick-dots {
  display: flex;
  gap: 8px;
  list-style: none;
  margin-top: 20px;
  justify-content: center;
}
.about-book-section .about-img-col .about-review-wrap .slick-dots li button {
  color: transparent;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  background: #ccc;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.about-book-section .about-img-col .about-review-wrap .slick-dots li button i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s ease;
}
.about-book-section .about-img-col .about-review-wrap .slick-dots li button:hover i, .about-book-section .about-img-col .about-review-wrap .slick-dots li button.slick-active i {
  color: #ffffff;
}
.about-book-section .about-content-col {
  display: flex;
  padding: 50px 0;
  flex-direction: column;
  background: #F3F8FF;
  justify-content: center;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, calc(100% - 80px) 0, 100% 50%, calc(100% - 80px) 100%, 0 100%);
}
.about-book-section .about-content-col .section-head {
  padding-left: 100px;
  padding-right: 160px;
}
.about-book-section .about-content-col .section-head .section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: "Anton", sans-serif;
}
.about-book-section .about-content-col .section-head .section-description {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
}
.about-book-section .about-content-col .section-head .section-description.primary-desc {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 35px;
}

.author-section {
  padding: 75px 0 30px;
  position: relative;
  margin-bottom: 5px;
}
.author-section .author-overlay-bg {
  position: absolute;
  top: 8px;
  left: -68px;
  height: 91%;
  z-index: 0;
  pointer-events: none;
}
.author-section .author-overlay-bg img {
  height: 100%;
  width: auto;
  display: block;
  opacity: 0.8;
}
.author-section .container {
  position: relative;
  z-index: 2;
}
.author-section .container .author-top {
  text-align: center;
  margin-bottom: 30px;
}
.author-section .container .author-top .author-prefix {
  color: #000;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.author-section .container .author-top .author-name {
  font-size: 5.1rem;
  font-weight: 400;
  margin: 0;
  font-family: "Anton", sans-serif;
}
.author-section .container .author-img-wrap {
  margin-top: 100px;
  width: 92%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.author-section .container .author-img-wrap img {
  width: 100%;
  height: 700px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
  display: block;
}
.author-section .container .author-content-wrap {
  margin-top: -180px;
  position: relative;
  overflow: hidden;
  z-index: 3;
  padding: 0 150px;
}
.author-section .container .author-content-wrap .author-content-inner {
  text-align: center;
  padding: 52px 82px 75px;
  background: rgba(255, 255, 255, 0.85);
}
.author-section .container .author-content-wrap .author-content-inner .author-lead {
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.35;
}
.author-section .container .author-content-wrap .author-content-inner .author-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 12px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.author-section .container .author-content-wrap .author-content-inner .author-desc:not(:has(~ .author-desc)) {
  margin-bottom: 52px;
}
.author-section .container .author-content-wrap .author-content-inner .author-highlight {
  color: #2D5EAA;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  font-family: "Anton", sans-serif;
}

.message-section {
  padding: 100px 0 40px;
  background: #F3F8FF;
}
.message-section .message-left-col {
  padding-right: 50px;
  margin-top: 20px;
}
.message-section .message-left-col .book-cards-img {
  margin-bottom: 40px;
  cursor: pointer;
}
.message-section .message-left-col .book-cards-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
  transform-origin: center center;
}
.message-section .message-left-col .book-cards-img.animated img {
  animation: bookCardsLoad 1s ease-out both;
}
.message-section .message-left-col .book-cards-img:hover img {
  transform: scale(1.06);
}
@keyframes bookCardsLoad {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.message-section .message-left-col .buy-book-wrap {
  margin-bottom: 62px;
  padding-left: 37px;
}
.message-section .message-left-col .buy-book-wrap .buy-label {
  padding-top: 24px;
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0px;
  margin-bottom: 20px;
  font-family: "Source Serif 4", serif;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}
.message-section .message-left-col .buy-book-wrap .buy-label::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 2px dashed #b0b6c0;
}
.message-section .message-left-col .buy-book-wrap .buy-logos {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}
.message-section .message-left-col .buy-book-wrap .buy-logos .buy-logo-item {
  display: block;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.message-section .message-left-col .buy-book-wrap .buy-logos .buy-logo-item img {
  height: 42px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.message-section .message-left-col .buy-book-wrap .buy-logos .buy-logo-item:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.message-section .message-left-col .autograph-wrap {
  padding-left: 37px;
}
.message-section .message-left-col .autograph-wrap .autograph-label {
  font-size: 16px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: 0px;
  margin-bottom: 15px;
  font-family: "Source Serif 4", serif;
  display: flex;
  align-items: center;
  gap: 20px;
  white-space: nowrap;
}
.message-section .message-left-col .autograph-wrap .autograph-label::after {
  content: "";
  flex: 1;
  height: 0;
  border-top: 2px dashed #b0b6c0;
}
.message-section .message-left-col .autograph-wrap .autograph-img {
  cursor: pointer;
}
.message-section .message-left-col .autograph-wrap .autograph-img img {
  height: 70px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: filter 0.4s ease;
}
.message-section .message-left-col .autograph-wrap .autograph-img:hover img {
  filter: grayscale(100%);
}
.message-section .message-right-col .section-head {
  margin-bottom: 35px;
}
.message-section .message-right-col .section-head .section-title {
  font-weight: 400;
  line-height: 1.35;
  font-family: "Anton", sans-serif;
}
.message-section .message-right-col .message-text-wrap {
  margin-bottom: 30px;
}
.message-section .message-right-col .message-text-wrap .section-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
}
.message-section .message-right-col .message-text-wrap .section-description:last-child {
  margin-bottom: 0;
}
.message-section .message-right-col .message-sign-img img {
  height: 62px;
  width: auto;
  display: block;
  margin: 55px 0 75px;
}

.posters-section {
  padding: 85px 0 150px;
}
.posters-section .section-head {
  text-align: center;
  max-width: 880px;
  margin: 0 auto 60px;
}
.posters-section .section-head .section-title {
  font-weight: 700;
  margin-bottom: 35px;
  text-transform: uppercase;
  font-family: "Anton", sans-serif;
}
.posters-section .section-head .section-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 20px;
  text-align: center;
}
.posters-section .section-head .posters-link {
  color: #1a1a1a;
  font-size: 17.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: color 0.3s ease;
}
.posters-section .section-head .posters-link strong {
  font-weight: 800;
}
.posters-section .section-head .posters-link i {
  font-size: 14px;
  color: #1a1a1a;
  transition: transform 0.3s ease;
}
.posters-section .section-head .posters-link:hover {
  color: #2D5EAA;
}
.posters-section .section-head .posters-link:hover i {
  color: #2D5EAA;
  transform: translate(2px, -2px);
}
.posters-section .posters-cards-row {
  justify-content: center;
}
.posters-section .posters-cards-row [class*=col-] {
  margin-bottom: 30px;
}
.posters-section .poster-card {
  padding: 0 65px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.posters-section .poster-card .poster-card-img {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  cursor: pointer;
}
.posters-section .poster-card .poster-card-img img {
  width: 100%;
  height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.posters-section .poster-card .poster-card-img:hover img {
  transform: scale(1.06);
}
.posters-section .poster-card .poster-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.posters-section .poster-card .poster-card-body .poster-card-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.1;
  max-width: 280px;
  margin-top: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 3.6em;
}

.get-copy-section {
  position: relative;
  overflow: visible;
  min-height: 100vh;
}
.get-copy-section .get-copy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.get-copy-section .get-copy-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}
.get-copy-section .get-copy-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}
.get-copy-section .container-full {
  position: relative;
  z-index: 2;
  padding: 62px 100PX 0;
  padding-bottom: 80px;
}
.get-copy-section .get-copy-left-col {
  display: flex;
  margin-top: -185px;
  flex-direction: column;
}
.get-copy-section .get-copy-left-col .book-card-img {
  cursor: pointer;
  overflow: visible;
}
.get-copy-section .get-copy-left-col .book-card-img img {
  width: 375px;
  height: auto;
  display: block;
  margin: 25px 0 50px;
  transition: transform 0.4s ease;
  transform-origin: center center;
}
.get-copy-section .get-copy-left-col .book-card-img:hover img {
  transform: scale(1.05);
}
.get-copy-section .get-copy-left-col .get-copy-testimonials {
  background: rgba(30, 30, 30, 0.85);
  padding: 35px 28px 20px 35px;
}
.get-copy-section .get-copy-left-col .get-copy-testimonials .testimonials-slider .testimonial-slide {
  outline: none;
}
.get-copy-section .get-copy-left-col .get-copy-testimonials .testimonials-slider .testimonial-slide .testimonial-stars {
  margin-bottom: 10px;
}
.get-copy-section .get-copy-left-col .get-copy-testimonials .testimonials-slider .testimonial-slide .testimonial-stars img {
  height: 21px;
  width: auto;
  display: block;
}
.get-copy-section .get-copy-left-col .get-copy-testimonials .testimonials-slider .testimonial-slide .testimonial-title {
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  font-family: "Source Serif 4", serif;
  text-transform: uppercase;
}
.get-copy-section .get-copy-left-col .get-copy-testimonials .testimonials-slider .testimonial-slide .testimonial-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  margin-bottom: 15px;
}
.get-copy-section .get-copy-left-col .get-copy-testimonials .testimonials-slider .testimonial-slide .testimonial-author {
  font-size: 18px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
}
.get-copy-section .get-copy-left-col .testimonial-dots {
  display: flex;
  justify-content: end;
  gap: 8px;
  margin-top: 18px;
}
.get-copy-section .get-copy-left-col .testimonial-dots .t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.get-copy-section .get-copy-left-col .testimonial-dots .t-dot.active, .get-copy-section .get-copy-left-col .testimonial-dots .t-dot.slick-active {
  background: #ffffff;
}
.get-copy-section .get-copy-right-col {
  padding-left: 85px;
  padding-top: 65px;
}
.get-copy-section .get-copy-right-col .section-head {
  margin-bottom: 140px;
}
.get-copy-section .get-copy-right-col .section-head .section-title {
  color: #ffffff;
  font-size: 4.3rem;
  font-weight: 400;
  margin-bottom: 50px;
  font-family: "Anton", sans-serif;
}
.get-copy-section .get-copy-right-col .section-head .section-description {
  color: #fff;
  font-size: 18.5px;
  font-weight: 300;
  line-height: 1.55;
  width: 96%;
  margin: 0;
}
.get-copy-section .get-copy-right-col .buy-book-wrap {
  margin-bottom: 57px;
}
.get-copy-section .get-copy-right-col .buy-book-wrap .buy-label {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.7px;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.get-copy-section .get-copy-right-col .buy-book-wrap .buy-label .buy-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  display: block;
}
.get-copy-section .get-copy-right-col .buy-book-wrap .buy-logos {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
  align-items: center;
}
.get-copy-section .get-copy-right-col .buy-book-wrap .buy-logos .buy-logo-item {
  display: block;
  text-decoration: none;
  border-radius: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.get-copy-section .get-copy-right-col .buy-book-wrap .buy-logos .buy-logo-item img {
  height: 44px;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
.get-copy-section .get-copy-right-col .buy-book-wrap .buy-logos .buy-logo-item:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.get-copy-section .get-copy-right-col .autograph-wrap .autograph-label {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1.2px;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.get-copy-section .get-copy-right-col .autograph-wrap .autograph-label .autograph-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  display: block;
}
.get-copy-section .get-copy-right-col .autograph-wrap .autograph-btn {
  display: inline-flex;
  align-items: center;
  background: #2D5EAA;
  color: #ffffff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  font-family: "Source Serif 4", serif;
  transition: all 0.3s ease;
}
.get-copy-section .get-copy-right-col .autograph-wrap .autograph-btn:hover {
  background: rgb(34.3255813953, 71.7023255814, 129.6744186047);
}
.get-copy-section .contact-float {
  position: absolute;
  bottom: 0;
  right: 205px;
  z-index: 5;
}

@media (max-width: 1299.98px) {
  .about-book-section .about-img-col .about-review-wrap {
    bottom: 100px;
  }
  .author-section .author-overlay-bg {
    height: auto;
  }
}
@media (max-width: 1199.98px) {
  .author-section .author-overlay-bg {
    left: -70px;
    height: auto;
  }
  .about-book-section .about-img-col .about-review-wrap {
    width: 400px;
    left: calc(50% - 200px);
  }
  .about-book-section .about-img-col .about-img-wrap {
    margin-left: -55%;
  }
  .author-section .container .author-content-wrap .author-content-inner {
    padding: 52px 25px 75px;
  }
  .posters-section .poster-card {
    padding: 0 15px;
  }
}
@media (max-width: 1099.98px) {
  .hero-section {
    padding-bottom: 200px;
  }
  .hero-section .hero-container .hero-content {
    margin-bottom: 28px;
  }
  .hero-section .hero-container .hero-content .hero-title {
    font-size: 6rem;
  }
  .hero-section .hero-container .hero-bottom .review-card {
    width: 400px;
  }
  .hero-section .hero-container .hero-bottom .hero-book-card {
    width: 598px;
    margin-bottom: -320px;
  }
  .author-section .author-overlay-bg img {
    height: auto;
    width: 100%;
  }
  .book-purchase-section {
    z-index: 5;
    position: relative;
    margin-top: -35px;
    padding: 0px 0px 80px;
  }
  .about-book-section .about-img-col .about-img-wrap {
    margin-left: -100%;
  }
  .about-book-section .about-content-col .section-head {
    padding-left: 50px;
    padding-right: 100px;
  }
  .book-purchase-section .description-text .description-content {
    font-size: 22px;
  }
  .get-copy-section .get-copy-bg {
    left: -32%;
  }
  .get-copy-section .get-copy-left-col .book-card-img img {
    width: 325px;
  }
  .get-copy-section .get-copy-right-col .section-head .section-title {
    font-size: 2.5rem;
    margin-bottom: 42px;
  }
  .get-copy-section .get-copy-right-col .buy-book-wrap .buy-logos .buy-logo-item img {
    height: 35px;
  }
  .get-copy-section .contact-float {
    right: 50px;
  }
}
@media (max-width: 991.98px) {
  .desktop-only {
    display: none !important;
  }
  .nav-hamburger {
    display: flex !important;
  }
  .hero-section .hero-container .hero-content .hero-author {
    font-size: 20px;
    margin-top: 30px;
  }
  .hero-section .hero-container .hero-content .hero-title {
    font-size: 4rem;
  }
  .hero-section .hero-container .hero-bottom {
    min-height: 275px;
  }
  .hero-section .hero-container .hero-bottom .review-card .review-title {
    font-size: 15px;
    line-height: 1.2;
  }
  .hero-section .hero-container .hero-bottom .review-card .review-text {
    font-size: 15.5px;
    line-height: 1.3;
  }
  .hero-section .hero-container .hero-bottom .hero-book-card {
    width: 480px;
    margin-bottom: -280px;
  }
  .book-purchase-section {
    background-color: #fff;
  }
  .about-book-section {
    margin-bottom: 20px;
    background: #f3f8ff;
  }
  .about-book-section .about-img-col {
    margin-left: 0;
    margin-top: 38px;
  }
  .about-book-section .about-img-col .about-review-wrap {
    width: 90%;
    left: 5%;
    bottom: 0;
    position: relative;
  }
  .about-book-section .about-img-col .about-img-wrap {
    margin-left: 0;
  }
  .author-section .container.author-section-container {
    max-width: 90%;
  }
  .author-section .container .author-content-wrap {
    padding: 0 70px;
  }
  .author-section .container .author-top .author-name {
    font-size: 4rem;
  }
  .message-section {
    margin-top: 50px;
    padding-bottom: 0px;
  }
  .message-section .message-left-col .book-cards-img img {
    max-width: 500px;
    margin: -20% auto 0;
  }
  .message-section .message-right-col {
    padding: 70px 50px 0;
  }
  .get-copy-section .get-copy-bg {
    left: -92%;
  }
  .get-copy-section .get-copy-right-col {
    padding-left: 10px;
    padding-top: 52px;
  }
  .get-copy-section .get-copy-right-col .section-head .section-title {
    font-size: 2.5rem;
    margin-bottom: 38px;
  }
  .get-copy-section .get-copy-right-col .section-head {
    margin-bottom: 55px;
  }
  .get-copy-section .contact-float {
    right: 35px;
  }
}
@media (max-width: 767.98px) {
  .hero-section .hero-container .hero-bottom {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }
  .hero-section .hero-container .hero-bottom .review-card {
    width: 100%;
    order: 1;
    margin-bottom: 20px;
  }
  .hero-section .hero-container .hero-bottom .hero-book-card {
    width: 100%;
    order: 2;
    max-width: 450px;
    margin: 0 auto -310px;
  }
  .about-book-section .about-content-col .section-head {
    padding-right: 50px;
  }
  .author-section {
    padding: 75px 0 30px;
  }
  .author-section .container .author-img-wrap {
    margin-top: 0px;
    width: 100%;
  }
  .author-section .container .author-top .author-prefix {
    font-size: 22px;
    margin-bottom: 5px;
  }
  .author-section .container .author-top .author-name {
    font-size: 3rem;
  }
  .author-section .container .author-content-wrap {
    padding: 0 20px;
  }
  .author-section .container .author-highlight br {
    display: none;
  }
  .message-section {
    margin-top: 0px;
  }
  .message-section .message-left-col {
    padding-right: 15px;
    margin-top: -58px;
    z-index: 5;
    position: relative;
  }
  .message-section .message-left-col .buy-book-wrap,
  .message-section .message-left-col .autograph-wrap {
    padding-left: 15px;
  }
  .get-copy-section .get-copy-bg {
    left: -115%;
  }
  .get-copy-section .container-full {
    padding: 62px 20px 0;
  }
  .get-copy-section .container-full .get-copy-left-col .book-card-img img {
    width: 325px;
    margin: 0 auto 30px;
  }
  .get-copy-section .container-full .get-copy-right-col {
    padding-bottom: 30px;
  }
  .get-copy-section .container-full .get-copy-right-col .section-head .section-title {
    font-size: 2rem;
    margin-bottom: 32px;
  }
  .site-footer .footer-newsletter-row {
    padding: 42px 15px 8px;
    flex-direction: column;
  }
  .site-footer .footer-bottom .footer-bottom-inner {
    flex-direction: column;
  }
  .site-footer .footer-bottom .footer-bottom-inner .footer-copyright {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .site-footer .footer-bottom .footer-bottom-inner .footer-policy-links {
    gap: 15px;
  }
}
@media (max-width: 575.98px) {
  .message-section .message-right-col {
    padding: 55px 35px 0;
  }
  .section-head .section-title {
    font-size: 2rem;
  }
}
@media (max-width: 479.98px) {
  .hero-section .hero-top {
    padding: 8px 0;
  }
  .hero-section .hero-top .seller-tag img {
    height: 20px;
  }
  .hero-section .hero-container .hero-content .hero-author {
    font-size: 15px;
    margin-top: 30px;
    margin-bottom: 15px;
  }
  .hero-section .hero-container .hero-content .hero-subtitle {
    font-size: 18px;
    letter-spacing: 0px;
  }
  .hero-section .hero-container .hero-content .hero-title {
    font-size: 3rem;
  }
  .hero-section .hero-container .hero-bottom .review-card .review-stars {
    margin-bottom: 10px;
  }
  .hero-section .hero-container .hero-bottom .review-card .review-text {
    margin-bottom: 12px;
  }
  .get-copy-section .contact-float {
    right: 10px;
  }
  .get-copy-section .contact-float .theme-btn.secondary-btn {
    padding: 8px 20px;
    font-size: 15px;
  }
  .book-purchase-section .description-text .description-content {
    font-size: 20px;
  }
  .about-book-section .about-content-col .section-head .section-title {
    font-size: 2rem;
  }
  .about-book-section .about-content-col .section-head .section-description.primary-desc {
    font-size: 18px;
    margin-bottom: 20px;
  }
  .about-book-section .about-content-col .section-head .section-description {
    font-size: 18px;
  }
  .author-section .container .author-top {
    margin-bottom: 0px;
  }
  .author-section .container .author-top .author-name {
    font-size: 2.5rem;
  }
  .author-section .container .author-content-wrap .author-content-inner {
    padding: 32px 15px 75px;
  }
  .author-section .container .author-content-wrap .author-content-inner .author-lead {
    font-size: 20px;
  }
  .book-purchase-section .store-buttons {
    gap: 10px 0;
  }
  .posters-section {
    padding: 55px 0 150px;
  }
  .posters-section .section-head .section-description {
    font-size: 18px;
  }
  .get-copy-section .container-full .get-copy-left-col .book-card-img img {
    width: 250px;
  }
  .get-copy-section .get-copy-right-col .section-head .section-description {
    width: 100%;
    font-size: 15px;
    line-height: 1.7;
  }
  .get-copy-section .get-copy-right-col .buy-book-wrap .buy-logos .buy-logo-item img {
    height: 42px;
  }
  .get-copy-section .get-copy-left-col .get-copy-testimonials .testimonials-slider .testimonial-slide .testimonial-text {
    font-size: 18px;
  }
  .get-copy-section .container-full .get-copy-right-col {
    padding-bottom: 70px;
  }
  .site-footer .footer-bottom .footer-bottom-inner .footer-policy-links {
    gap: 5px;
    order: 1;
    display: flex;
    flex-direction: column;
  }
  .site-footer .footer-bottom .footer-bottom-inner .footer-copyright {
    font-size: 15px;
    order: 2;
    margin-top: 20px;
    margin-bottom: 0;
  }
}
