/* ==================== Import Fonts ==================== */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");
/* ==================== Common Reset ==================== */

* {
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  box-sizing: border-box;
}

html {
  font-size: 1rem;
  scroll-behavior: smooth !important;
}

body {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--bg-black);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  position: relative;
  top: 0 !important;
  background-color: #fff;
}

.overflow-hidden {
  overflow: hidden;
  height: 100vh;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  display: inline-block;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.4s ease-in-out;
}

*:focus {
  outline: none;
}

button[type="button"]:focus {
  outline: none;
}

input:focus,
.form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: inherit;
  resize: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Lora", serif;
}

/* ==================== Common style ==================== */
.wrapper {
  display: block;
  overflow: hidden;
  min-height: 100vh;
  position: relative;
}

.post-template-default .wrapper {

  overflow: inherit;
}

.container {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0;
}

.body-fixed {
  overflow: hidden;
}

.common-sec {
  padding-block: 120px 120px;
  position: relative;
  z-index: 1;
}

.icon {
  display: inline-block;
  height: 1em;
  width: 1em;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  transition: all 0.4s ease;
}

p {
  font-size: 18px;
  line-height: 1.66;
}

p:last-child {
  margin-bottom: 0;
}

a {
  display: inline-block;
}

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

.shadow-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 99;
}

body.nav-open .shadow-overlay {
  opacity: 1;
  visibility: visible;
}

/* ==================== Common Classes ==================== */

:root {
  --primary-color: #c9a362;
  --secondary-color: #af9777;
  --bg-black: #1f1f1f;
  --black: #000000;
  --white: #ffffff;
  --gray: #555555;
  --transition: all 0.3s ease-in-out;
}

.sec-title {
  font-size: 48px;
  color: var(--bg-black);
  margin-bottom: 34px;
  font-weight: 500;
}

/* slick-dot */

/* Slick dots rectangle style */
.slick-dots {
  text-align: center;
  margin-top: 62px;
}

.slick-dots li {
  display: inline-block;
  margin: 0 7px;
}

.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e0d8c6;

  padding: 0;
  font-size: 0;
}

.slick-dots li.slick-active button {
  background-color: #c9a362;
}

/* slick-arrow */
.slick-prev,
.slick-next {
  font-size: 0;
  position: absolute;
  width: 40px;
  height: 50px;
  border: 1px solid var(--primary-color);
  background: none;
  bottom: -100px;
  transition: var(--transition);
}

.slick-prev:hover,
.slick-next:hover {
  opacity: 0.5;
}

.slick-next {
  left: 50px;
}

.slick-prev::before,
.slick-next::before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 14px;
  background: url("../img/svg/chevron-right.svg") no-repeat center center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.slick-prev::before {
  transform: translate(-50%, -50%) scale(-1);
  /* flip for left arrow */
}

/* slick slider height 100% */
.slider-wrapper,
.slick-slider,
.slick-list,
.slick-track,
.slick-slide>div {
  height: 100%;
}

/* ==================== btn style ==================== */

.btn {
  display: inline-block;
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  text-align: center;
  padding: 12px 20px;

  border-radius: 4px;

  transition: var(--transition);
}

.btn.btn-big {
  padding: 16px 30px;
}

.btn:has(.icon) {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.btn .icon {
  font-size: 24px;
}

.btn:hover .icon {
  transform: scale(1.1);
}

.btn-gold {
  color: var(--white);
  background-color: var(--primary-color);
}

.btn-gold:hover {
  color: var(--white);
  background-color: var(--bg-black);
}

.btn-border {
  background-color: transparent;
  border: 1px solid var(--bg-black);
  color: var(--bg-black);
}

.btn-border:hover {
  background-color: var(--bg-black);
  border: 1px solid var(--bg-black);
  color: var(--white);
}

.btn-black {
  background-color: var(--bg-black);
  color: var(--white);
}

.btn-black:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.calander-icon {
  mask-image: url(../img/svg/calendar.svg);
}

/* ====================  header style ==================== */
.header {
  background-color: #fcfaf8;
  padding: 18px 0;
}

.sticky-header .header {
  position: fixed;
  padding: 12px 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateY(-100%);
  animation: slideDown 0.8s ease forwards;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.sticky-header .header-logo {
  height: 60px;
}

.header-logo {
  height: 80px;
}

.header-logo a,
.header-logo img {
  height: 100%;
}

.main-nav ul li {
  position: relative;
  display: inline-block;
  margin-right: 30px;
}

.main-nav ul {
  margin-left: 30px;
}

.main-nav ul li:last-child {
  margin-right: 0;
}

.main-nav ul li a {
  position: relative;
  z-index: 2;
  font-size: 17px;
  color: var(--gray);
}

.main-nav ul li a:hover,
.main-nav ul li.current-menu-item a {
  color: var(--primary-color);
}

.menu-bar {
  aspect-ratio: 1/1;
  width: 28px;
  display: flex;
  align-items: center;
}

.main-nav {
  margin-right: 20px;
}

/* ======Hero-sec========= */
.hero-sec,
.exp-sec {
  background-color: #fcfaf8;
}

.hero-image img {
  max-width: 189%;
  transform: translate(-23%, -47px);
}

.hero-title {
  font-size: 55px;
  color: var(--bg-black);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 32px;
}

.hero-con p {
  font-size: 17px;
  line-height: 1.74;
  font-weight: 400;
}

.hero-con p i {
  font-weight: 500;
}

.hero-con .btn-wrap {
  margin-top: 70px;
}

.hero-con {
  max-width: 720px;
  margin-left: auto;
  padding-bottom: 47px;
  position: relative;
  z-index: 1;
}

.hero-con .btn-wrap .btn {
  margin-right: 8px;
}

.hero-con .btn-wrap .btn:last-child {
  margin-right: 0;
}

/* exp-sec */
.th-title {
  font-size: 60px;
  line-height: 1;
  color: var(--bg-black);
  font-weight: 400;
  margin-bottom: 0;
}

.exp-sec .center-img {
  margin-bottom: 55px;
}

.ab-sec .img {
  border: 1px solid #ddd9d3;
  padding: 30px;
  max-width: 655px;
  margin-left: auto;
  width: auto;
}

.cms-con p {
  font-size: 16px;
  line-height: 1.875;
  color: #5f5f5f;
  font-weight: 400;
  margin-bottom: 30px;
}

.cms-con p:last-child {
  margin-bottom: 0;
}

.ab-sec .btn {
  margin-top: 60px;
  min-width: 175px;
}

.ab-sec .cms-con {
  max-width: 650px;
}

.story-sec {
  background-image: url(../img/bg-story.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  aspect-ratio: 16/10;
  padding-top: 105px;
  position: relative;
  z-index: 1;
}

.story-sec .story-des {
  max-width: 735px;
  color: var(--white);
}

.story-sec .story-des .sec-title,
.story-sec .story-des p {
  color: var(--white);
  position: relative;
}

.story-sec .story-des .btn {
  margin-top: 125px;
}

.story-sec .story-des p::before {
  content: "";
  width: 1px;
  height: 66px;
  background-color: #fafaf8;
  position: absolute;
  bottom: -85px;
}

.gallery-sec .gallery-slider {
  padding-top: 30px;
}

.gallery-sec .g-slide {
  padding: 0 12px;
}

.footer {
  background-color: #fcfaf8;
  padding: 100px 0 115px;
}

.footer-grid {
  grid-template-columns: 49fr 47fr 45fr;
}

.footer-logo {
  height: 90px;
  margin-bottom: 90px;
}

.footer-logo img {
  height: 100%;
}

.social-links ul li {
  display: inline-block;
  line-height: 0;
  margin-right: 5px;
}

.social-links ul li:last-child {
  margin: 0;
}

.social-links ul li a {
  color: #1e1e1e;
  font-size: 24px;
  border-radius: 50%;
  padding: 10px;
}

.social-links ul li a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.insta-icon {
  mask-image: url(../img/svg/instagram.svg);
}

.twitter-icon {
  mask-image: url(../img/svg/twitter.svg);
}

.facebook-icon {
  mask-image: url(../img/svg/facebook.svg);
}

.search-icon{
	 mask-image: url(https://www.jeffreyhollender.net/wp-content/uploads/2026/02/search.svg);
}

:-webkit-autofill,
:-webkit-autofill:hover,
:-webkit-autofill:focus,
:-webkit-autofill:active {
    -webkit-text-fill-color: #000 !important;
    transition: background-color 5000000s ease-in-out 0s !important;
}

.foot-links {
  max-width: 340px;
}

.foot-links ul {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
}

.foot-links ul li a {
  font-size: 16px;
  line-height: 1.875;
  color: var(--bg-black);
  font-weight: 400;
}

.foot-title {
  font-size: 18px;
  color: var(--bg-black);
  font-weight: 600;
  font-family: "Inter";
  margin-bottom: 14px;
  padding-top: 24px;
}

.foot-newsletter p {
  font-size: 16px;
  margin-bottom: 22px;
}

.foot-newsletter form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.foot-newsletter form input#email-inp {
  height: 100%;
  flex: 1;
  border-radius: 4px;
  background-color: #ffffff;
  padding: 18px 14px;
  border: 1px solid transparent;
  font-size: 16px;
  line-height: 1.25;
  color: #6e6e6e;
  font-weight: 400;
  transition: var(--transition);
}

.foot-newsletter form .btn {
  padding: 18px 39px;
  white-space: nowrap;
}

.btm-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 100px;
}

.btm-foot p {
  font-size: 15px;
}

.btm-foot p a {
  font-size: inherit;
  color: inherit;
}

.btm-foot .workwith {
  display: flex;
  gap: 20px;
  align-items: center;
}

.foot-newsletter p i {
  font-weight: 600;
}

.gallery-sec .slick-list.draggable {
  margin: 0px -12px;
}

.foot-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.icon-close {
  mask-image: url(../img/svg/close-icon.svg);
}

/* transition */
.main-nav ul li a:hover {
  color: var(--primary-color);
}

.footer a:hover,
.footer ul li.current-menu-item a {
  color: var(--primary-color);
}

.foot-newsletter form input#email-inp:focus {
  border: 1px solid var(--primary-color);
}

/* inner-banner */
.inner-banner-sec {
  background-color: #fcfaf8;
  padding-top: 90px;
  padding-bottom: 65px;
}

.breadcrumb-list li {
  font-size: 17px;
  line-height: 1.74;
  color: var(--bg-black);
  font-weight: 400;
  display: inline-block;
  position: relative;
  z-index: 1;
  margin-right: 24px;
}

.breadcrumb-list li a {
  font-size: inherit;
  color: inherit;
}

.breadcrumb-list li a:hover {
  color: var(--primary-color);
}

.breadcrumb-list li:last-child {
  margin-right: 0;
}

.breadcrumb-list li::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -17px;
  width: 6px;
  height: 1px;
  background-color: var(--bg-black);
  transform: translateY(-50%);
}

.breadcrumb-list li:last-child:before {
  display: none;
}

.ab-sec.about-sec .img {
  margin-left: inherit;
}

.ab-sec.about-sec .img img {
  transform: scaleX(-1);
}

.ab-sec.about-sec .cms-con {
  margin-left: auto;
}

.lookInside-sec {
  background-image: url(../img/Book_Mockup.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  aspect-ratio: 22/8.4;
}

.lookInside-sec .in-wraper {
  display: flex;
  align-items: center;
}

.lookInside-sec .container,
.lookInside-sec .in-wraper {
  height: 100%;
}

.lookInside-sec .left {
  max-width: 600px;
}

.lookInside-sec .left .sec-head {
  margin-bottom: 40px;
}

.lookInside-sec .left .btn {
  line-height: 1.3;
}

.arrowTop-icon {
  mask-image: url(../img/svg/arrow-up.svg);
}

.back-to-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(201, 163, 98, 0.3);
  z-index: 1000;
  overflow: hidden;
}

.arrowTop-icon {
  color: var(--white);
  font-size: 30px;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  background: var(--secondary-color);
  box-shadow: 0 6px 20px rgba(201, 163, 98, 0.4);
}

.back-to-top-btn:active {
  transform: translateY(0);
}

.back-to-top-btn:hover .icon {
  animation: arrowSlideUp 0.6s ease-in-out;
}

@keyframes arrowSlideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  50% {
    transform: translateY(-30px);
    opacity: 0;
  }

  51% {
    transform: translateY(30px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* speaking */
.speaking-sec.ab-sec img {
  max-width: 650px;
  width: 100%;
  border-radius: 20px;
  border: 1px solid #11171c;
  aspect-ratio: 6.5 /7;
  transform: none !important;
  object-position: top;
}

.ab-sec img {
  object-fit: cover;
}

.speaking-sec.ab-sec .img {
  border: none;
  padding: 0;
  max-width: 655px;
  margin-left: inherit;
  width: auto;
}

.speaking-sec.ab-sec .cms-con {
  max-width: 680px;
  margin-left: inherit;
}

.cms-con h4 {
  font-size: 20px;
  line-height: 1.5;
  color: var(--bg-black);
  font-weight: 400;
  font-style: italic;
  font-family: "Inter";
}

.speaking-sec.ab-sec .sec-head .sec-title {
  margin-bottom: 22px;
}

.speaking-sec.ab-sec .btn {
  margin-top: 36px;
}

.speaking-topic-sec {
  background-color: #f8f5f2;
}

.speak-topic-box {
  text-align: center;
}

.speak-topic-box .icon-wrap {
  height: 120px;
  width: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
  margin: 0 auto;
}

.speak-topic-box .icon-wrap img {
  aspect-ratio: 1/1;
  min-width: 55%;
  max-width: 55%;
}

.speaking-topic-sec .row {
  gap: 105px 0;
  margin-top: 90px;
}

.speaking-topic-sec .sec-title {
  margin-bottom: 0;
}

.sp-title {
  font-size: 24px;
  margin-top: 24px;
  margin-bottom: 0;
}

.tagline-banner {
  background-color: #7f9786;
  padding: 34px 0;
  text-align: center;
}

.tagline-banner .sec-title {
  margin: 0;
  color: var(--white);
  line-height: 1.5;
}

.speak-format-sec ul li,
.cms-con ul li {
  position: relative;
  padding-left: 20px;
  font-size: 24px;
  line-height: 1.25;
  color: #5f5f5f;
  font-weight: 400;
  margin-bottom: 30px;
}

.speak-format-sec ul li::before,
.cms-con ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  height: 7px;
  width: 7px;
  border-radius: 50%;
  background-color: var(--bg-black);
}

.speak-format-sec .sec-title {
  margin-bottom: 64px;
}

.quote-box {
  position: relative;
  padding: 8px 45px 8px 36px;
  background: #fff;
  border: 2px solid #c9a362;
  font-size: 20px;
  line-height: 1.6;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 34px;
}

.quote-box p {
  margin-bottom: 0;
}

.quote-box:before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 14px;
  border-width: 18px 18px 0 0;
  border-style: solid;
  border-color: #c9a362 transparent transparent transparent;
}

.quote-box:after {
  content: "";
  position: absolute;
  bottom: -13px;
  left: 16px;
  border-width: 13px 13px 0 0;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.list-wrap {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.list-wrap .left-column {
  min-width: 34%;
}

.blog-detailV1-sec .blog-img img {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 22 / 9;
  object-fit: cover;
  object-position: center;
  margin-bottom: 80px;
}

.blog-detailV1-sec .sec-head {
  margin-bottom: 74px;
}

.blog-detailV1-sec .sec-head .sec-title {
  margin-bottom: 27px;
}

.blog-detailV1-sec .sec-head p {
  margin-bottom: 0;
  font-style: italic;
}

.blog-detailV1-sec .sec-head span {
  color: #7f9786;
  font-size: 18px;
  font-style: italic;
}

.blog-detailV1-sec.new-style .blog-detail-wrap {
  display: flex;
  gap: 30px;
  align-items: flex-end;
  position: relative;
}

.blog-detailV1-sec.new-style .right-column {
  min-width: 27%;
  position: sticky;
  bottom: 30px;
}

.blog-detailV1-sec.new-style .right-column .bookimg img {
  margin: 0 auto;
  filter: drop-shadow(-11px 0 8px rgba(63, 59, 55, 0.18));
  position: relative;
  z-index: 1;
  max-width: 234px;
}

.blog-detailV1-sec.new-style .right-column .bookimg {
  position: relative;
  display: block;
}

.blog-detailV1-sec.new-style .right-column .bookimg::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #e5d7ca;
  position: absolute;
  left: 0;
  bottom: 0px;
  z-index: -1;
}

.blog-detailV1-sec.new-style .left-column {
  position: relative;
  background: #faf7f2;
  padding: 95px;
  padding-bottom: 70px;
  border-radius: 12px;
  overflow: hidden;
  z-index: 2;
}

.blog-detailV1-sec.new-style .left-column::before {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 143px;
  height: 215px;
  background: url("../img/leaf.png") no-repeat center/contain;
  z-index: -1;
}

.blog-detailV1-sec.new-style .left-column::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  width: 172px;
  height: 84px;
  background: url("../img/leaf1.png") no-repeat center/contain;
  z-index: -1;
}

.sub-title {
  font-size: 16px;
  line-height: 1;
  color: #c9a362;
  font-weight: 400;
  font-family: "Inter";
  margin-bottom: 10px;
}

.blog-detailV1-sec .left-column .title {
  font-size: 24px;
  margin-bottom: 34px;
  font-weight: 600;
  font-family: "inter";
}

.blog-detailV1-sec .left-column .btn-wrap {
  margin-top: 42px;
}

.blog-detailV1-sec .left-column .btn-wrap .btn {
  line-height: 1.5;
}

.blog-title {
  font-size: 24px;
  margin-bottom: 14px;
  transition: var(--transition);
}

.blog-card .img img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}

.blog-card .img {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.blog-card {
  height: 100%;
}

.blog-card .box {
  border-radius: 4px;
  background-color: #fcfaf8;
  color: var(--bg-black);
  overflow: hidden;
  height: 100%;
}

.blog-card .blog-info {
  padding: 30px 20px 40px;
}

.blog-card .blog-info span {
  font-size: 15px;
  color: #7f9786;
  font-weight: 400;
  line-height: 1;
  margin-bottom: 10px;
  display: block;
}

.blog-card .blog-info p {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card:hover .img img {
  transform: scale(1.05);
}

.blog-card:hover .blog-title {
  color: #7f9786;
}

.blogList-sec .row {
  --bs-gutter-x: 24px;
  --bs-gutter-y: 24px;
}

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

.pagination ul li,
.nav-links .page-numbers {
  display: inline-block;
  margin-right: 15px;
}

.pagination ul li:last-child,
.nav-links .page-numbers:last-child {
  margin-right: 0;
}

.pagination ul li a,
.nav-links .page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1.67;
  color: #5f5f5f;
  background-color: #fcfaf8;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-links .page-numbers.next,
.nav-links .page-numbers.prev {
  width: auto;
  height: auto;
  background-color: transparent !important;
}

.nav-links .page-numbers.next:hover,
.nav-links .page-numbers.prev:hover {
  color: #000000;
}

.pagination ul li a.active,
.pagination ul li a:hover,
.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  background-color: #eae6e3;
}

.post-pagination{
  margin-top: 50px;
  position: relative;
}

.pagination {
  justify-content: center;
}

.pagination ul {
  margin: 0px auto;
  text-align: center;
}

.pastInsights {
  font-size: 17px;
  line-height: 1.875;
  text-decoration: underline;
  color: #5f5f5f;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  right: 0;
}

.press-sec .img img {
  max-width: 600px;
  width: 100%;
  margin-left: auto;
  aspect-ratio: 12/11;
  border-radius: 20px;
  background-color: #11171c;
  object-fit: cover;
  object-position: top;
}

.asSeen-box img {
  aspect-ratio: 11/5;
  width: 100%;
  max-width: 330px;
  object-fit: contain;
  border-radius: 12px;
}

.asSeen-sec {
  background-color: #f8f5f2;
}

.asSeen-sec .row {
  padding-top: 30px;
  gap: 70px 0;
}

.asSeen-box .cms-con {
  margin-top: 20px;
  max-width: 320px;
}

.asSeen-sec .btn-wrap {
  margin-top: 64px;
}

.cms-con h3 {
  font-size: 22px;
  color: #1f1f1f;
  font-weight: 400;
}

.featured-sec .row {
  padding-top: 22px;
  gap: 70px 0;
}

.feat-title {
  font-size: 22px;
  color: #1f1f1f;
  font-weight: 400;
  margin-bottom: 26px;
  max-width: 395px;
}

.feat-title a {
  font-size: inherit;
  font-weight: 400;
  color: inherit;
}

.feature-box {
  border-radius: 4px;
  background-color: #fcfaf8;
  border: 2px solid #fcfaf8;
  overflow: hidden;
  height: 100%;
}

.feature-box .img {
  max-width: 450px;
  width: 100%;
}

.feature-box .img img {
  width: 100%;
}

.feature-box .featured-info {
  padding: 20px;
}

.feature-box .featured-info .cms-con {
  max-width: 370px;
}

.feature-box .featured-info .underline {
  color: var(--bg-black);
  font-size: 17px;
  text-decoration: underline;
  text-underline-offset: 3px;
  padding-top: 5px;
}

.podcast-sec .row {
  padding-top: 28px;
}

.podcast-sec {
  background-color: #f8f5f2;
}

.podcast-sec .cms-con {
  margin-top: 20px;
}

.coverd-speech .row {
  padding-top: 8px;
  --bs-gutter-x: 30px;
  --bs-gutter-y: 30px;
}

.coverd-speech .yt-wrap {
  width: 100%;
  height: 100%;
}

.coverd-speech .yt-wrap iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

/* hover */
.feature-box:hover .feat-title,
.feature-box .underline:hover {
  color: var(--primary-color);
}

/*  */
.art-sec.hero-sec .hero-image img {
  width: auto;
  max-width: 100%;
  transform: none;
}

.art-sec.hero-sec .container {
  max-width: 1130px;
}

.art-sec.hero-sec .hero-title {
  margin-bottom: 23px;
}

.art-sec.hero-sec .hero-con .btn-wrap {
  margin-top: 50px;
}

.art-sec.hero-sec .hero-con {
  padding: 0;
}

.art-sec.hero-sec {
  padding-bottom: 55px;
}

.otherBook-sec .row {
  padding-top: 55px;
}

.Oth-books-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 16px;
}

.Oth-books-wrap {
  text-align: center;
  margin-bottom: 105px;
}

.Oth-books-wrap .img img {
  aspect-ratio: 3/4;
  margin: 0 auto;
  max-width: 350px;
  width: 100%;
}

.Oth-books-wrap .Oth-books-info {
  max-width: 400px;
  margin: 45px auto 0;
}

.Oth-books-wrap .Oth-books-info p {
  font-size: 17px;
  margin-bottom: 30px;
}

.nav-inner-logo .icon-close {
  cursor: pointer;
}

.nav-inner-logo .icon-close:hover {
  color: #ca0b00;
  transform: rotate(90deg);
}

/* contact us */
.contactUs-sec {
  background-color: #fcfaf8;
}

.contactUs-sec .hero-title {
  margin-bottom: 20px;
}

.contactUs-sec .sec-head p {
  font-size: 17px;
  word-spacing: 0.03em;
  max-width: 900px;
}

.contactUs-sec .sec-head {
  margin-bottom: 36px;
}

.contactUs-sec .left {
  max-width: 960px;
}

.contactUs-sec::before {
  content: "";
  position: absolute;
  background-image: url(../img/bg-leaf.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 450px;
  height: 505px;
  top: 30px;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
}

.form__group {
  position: relative;
  padding: 20px 0 0;
  width: 100%;
}

.form__group::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--primary-color);
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.8s ease;
}

.form__group.textarea::before {
  bottom: 8px;
}

.form__group:focus-within::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.form__field {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--bg-black);
  background: transparent;
  outline: 0;
  padding: 7px 14px;
  font-size: 17px;
  color: var(--black);
  transition: var(--transition);
  resize: none;
}

.form__group.textarea {
  margin-top: 62px;
}

.form__group.textarea textarea {
  height: 87px;
}

/* Remove placeholder text */
.form__field::placeholder {
  color: transparent;
}

/* Label default */
.form__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 16px;
  color: var(--secondary-color);
  transition: var(--transition);
  pointer-events: none;
}

/* Floating effect */
.form__field:placeholder-shown~.form__label {
  top: 22px;
  font-size: 17px;
  color: var(--gray);
  width: 100%;
  left: 14px;
}

.form__field:focus~.form__label {
  top: 0;
  left: 0;
  font-size: 15px;
  color: var(--primary-color);
  font-weight: 600;
}

.contactUs-sec .btn {
  margin-top: 45px;
}

.contactUs-sec .right .img img {
  margin: 0 auto;
  max-width: 260px;
  width: 100%;
}

/* contact info */
.contactInfo-sec.common-sec {
  background: var(--primary-color);
  padding: 87px 0 92px;
}

.contactInfo-sec .sec-title {
  color: var(--white);
}

.contactInfo-row {
  align-items: center;
  padding-top: 8px;
}

.contactInfo-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.contactInfo-box .icon-wrap {
  min-width: 120px;
  width: 120px;
  height: 120px;
  background-color: rgba(252, 250, 248, 0.25);
  border-radius: 50%;
  padding: 14px;
  font-size: 48px;
}

.contactInfo-box .icon-wrap .innicn-wrp {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-black);
  color: var(--primary-color);

  border-radius: 50%;
}

.contactInfo-box .coninfo-title {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
  word-spacing: 0.2em;
}

.contactInfo-box p {
  color: var(--white);
  opacity: 0.8;
  margin: 0;
}

.contactInfo-box a {
  color: var(--white);
  font-size: 18px;
  letter-spacing: 0.02em;
  opacity: 0.9;
  transition: var(--transition);
  position: relative;
  display: inline-block;
  padding-bottom: 4px;
}

.contactInfo-box a:hover {
  opacity: 1;
}

.contactInfo-box a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--white);
  transform-origin: bottom right;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.contactInfo-box a:hover::before {
  transform-origin: bottom left;
  transform: scaleX(1);
}

.caln_icon {
  mask-image: url(../img/svg/calendar01.svg);
}

.tel_icon {
  mask-image: url(../img/svg/telephone.svg);
}

.mail_icon {
  mask-image: url(../img/svg/email.svg);
}

/*  */
.form__field:-webkit-autofill {
  box-shadow: 0 0 0px 1000px white inset !important;
  -webkit-text-fill-color: var(--black) !important;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  position: absolute;
  right: 0;
  top: -21px;
  width: auto;
  height: auto;
  margin: 0;
  font-size: 12px !important;
  line-height: 12px !important;
  background: #fb0101;
  padding: 5px 5px 4px !important;
  color: #fff !important;
}

.wpcf7-form-control-wrap .wpcf7-not-valid-tip:after {
  border-color: #fb0101 transparent transparent;
  -o-border-image: none;
  border-image: none;
  border-right: 6px solid transparent;
  border-style: solid;
  border-width: 6px;
  content: "";
  height: 0;
  left: 5px;
  position: absolute;
  top: 100%;
  width: 0;
}

.wpcf7 form.invalid .wpcf7-response-output {
  border-color: #fb0101 !important;
  text-align: center !important;
  font-size: 14px;
  color: #fb0101;
}

.wpcf7-form-control-wrap {
  position: inherit !important;
}

.error-wrapper,
.thank-you-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 116px);
  text-align: center;
  flex-direction: column;
}

.error-title {
  font-size: clamp(4.375rem, 2.182rem + 9.357vw, 9.375rem);
  font-weight: 700;
  line-height: 1;
  color: var(--primary-color);
  margin-bottom: clamp(0.938rem, 0.526rem + 1.754vw, 1.875rem);
}


.error-sub-title {
  margin: 0;
  display: block;
  color: #555;
  font-size: 46px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 12px;
}

.thank-you-wrapper svg {
  height: clamp(6.25rem, 4.879rem + 5.848vw, 9.375rem);
  width: clamp(6.25rem, 4.879rem + 5.848vw, 9.375rem);
  margin-bottom: clamp(1.563rem, 0.877rem + 2.924vw, 3.125rem);
}

.thank-you-title {
  font-size: clamp(2.875rem, 1.395rem + 6.316vw, 6.25rem);
  font-weight: 700;
  line-height: 1;
  color: #555;
  margin-bottom: clamp(0.938rem, 0.526rem + 1.754vw, 1.875rem);
}

.blog-detailV1-sec .left-column .cms-con a {
  color: var(--black);
  font-size: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}

.blog-detailV1-sec .cms-con ul li,
.must-read-sec .cms-con ul li {
  font-size: 16px;
}

.blog-detailV1-sec .cms-con ul li::before,
.must-read-sec .cms-con ul li::before {
  top: 7px;
}

.blog-detailV1-sec .cms-con ol,
.must-read-sec .cms-con ol {
  list-style: auto;
  padding: 0 0 0 20px;
  margin-bottom: 20px;
  font-size: 16px;
}

.cms-con blockquote {
  padding: 5px 0 10px 20px;
  border-left: 3px solid var(--bg-black);
}

.cms-con a:has(img.alignright) {
  float: right;
}

.cms-con a:has(img.alignleft) {
  float: left;
}

.cms-con img.alignright {
  float: right;
  padding-left: 10px;
}

.cms-con img.alignleft {
  float: left;
  padding-right: 10px;
}

figure.alignright,
figure.alignleft {
  font-size: 12px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 6px;
}

figure.alignleft {
  float: left;
}


/* --------------------- */

.cms-con h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}

.cms-con p {
  word-spacing: 0.03em;
}

.bw-sec-sec.common-sec {
  padding-top: 35px;
  background-color: #fcfaf8;
}

.bw-sec-sec .img {
  position: relative;
  width: 100%;
  z-index: 1;
}

.bw-sec-sec .img img {
  max-width: 230px;
}

.bw-sec-sec .img::before {
  content: "";
  width: 100%;
  height: 2px;
  border-radius: 1px;
  background-color: #e5d7ca;
  position: absolute;
  left: 0;
  bottom: -1px;
  z-index: -1;
}

.bw-sec-sec .right {
  background-color: var(--white);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  max-width: 450px;
  border-radius: 30px;
  padding: 35px;
}

.speaking-sec.ab-sec.bw-i img {
  border: none;
}

.modal-header .btn-close {
  opacity: 0.6;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.modal-header .btn-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-content .form__group {
  margin-bottom: 20px;
}

.modal-content .btn {
  margin-top: 10px;
}

.cms-con ul li strong {
  color: var(--black);
}

p strong {
  color: var(--black);
}

.cms-con p a,
.cms-con ul li a {
  font-size: inherit;
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cms-con p a:hover,
.cms-con ul li a:hover {
  color: var(--primary-color)
}

.must-read-sec .sec-head {
  margin-bottom: 40px;
}

.mc4wp-success p {
  font-size: 12px;
  margin-top: 10px;
  border: 1px solid green;
  padding: 10px;
  text-align: center;
  color: green;
}

#mc-subscribe-form {
  position: relative;
}

#mc-message {
  position: absolute;
  bottom: -50px;
  margin-bottom: 0;
  left: 0;
  color: green;
  font-size: 14px;
  text-align: center;
  width: 100%;
}

.blog-search-box {
    max-width: 1000px;
    margin: 0 auto 40px;
    display: block;
}

.blog-search-box .search-form {
    border-bottom: 1px solid #d8d4d4;
    padding-bottom: 20px;
    margin-bottom: 0;
    position: relative;
}

.blog-search-box .form-control {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    width: 100%;
    padding-right: 50px;
    box-shadow: none;
    padding: 0 50px 0 10px;
    border-radius: 0;
    border: none;
    height: auto;
    background: transparent !important;
}

.blog-search-box .form-control::placeholder {
    font-size: 20px;
    font-weight: 400;
    line-height: normal;
    color: rgb(0 0 0 / 50%) !important;
}

.blog-search-box .search-submit {
    background-color: transparent;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    height: 60%;
    width: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
}