:root {
  --primary-color: #5c1a1a;
  --secondary-color: #fdf7e8;
  --text-color: #7d3c3c;
  --accent-color: #8f4747;
  --white-color: #ffffff;
  --divider-color: #8f474740;
  --dark-divider-color: #5c1a1a1a;
  --error-color: #d9534f;
  --default-font: "Poppins", sans-serif;
  --box-shadow: 0 10px 30px rgba(92, 26, 26, 0.08);
  --box-shadow-hover: 0 15px 40px rgba(143, 71, 71, 0.3);
}
body {
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6em;
  color: var(--text-color);
  background-color: var(--white-color);
}
p {
  line-height: 1.8em;
  margin-bottom: 1.6em;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 700;
  line-height: 1.2em;
  color: var(--primary-color);
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover,
a:focus {
  text-decoration: none;
  outline: 0;
}
html,
body {
  width: 100%;
  overflow-x: clip;
}
.container {
  max-width: 1300px;
}
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  padding-right: 15px;
  padding-left: 15px;
}
.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgb(255 255 255 / 0.3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: #fff0;
}
.reveal {
  position: relative;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.row.no-gutters > * {
  padding-right: 0;
  padding-left: 0;
}
.btn-default {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--white-color);
  background: var(--accent-color);
  text-transform: capitalize;
  padding: 14px 50px 14px 20px;
  border-radius: 99px;
  border: none;
  transition: all 0.5s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-default:hover {
  background-color: #fff0;
}
.btn-default::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white-color);
  background-image: url(../images/arrow.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px auto;
  transform: translate(-10px, -50%);
  transition: all 0.4s ease-in-out;
}
.btn-default:hover:before {
  transform: translate(-10px, -50%) rotate(45deg);
  background-size: 10px auto;
}
.btn-default::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  border-radius: 99px;
  background: var(--primary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-default:hover::after {
  width: 100%;
}
.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-default.btn-highlighted:hover:before {
  background-color: var(--primary-color);
}
.btn-default.btn-highlighted::after {
  background-color: var(--white-color);
}
#magic-cursor {
  position: absolute;
  width: 10px !important;
  height: 10px !important;
  pointer-events: none;
  z-index: 1000000;
}
#ball {
  position: fixed;
  display: block;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  width: 8px !important;
  height: 8px !important;
  background: var(--accent-color);
  margin: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 1 !important;
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background-color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-container,
.loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}
.loading-container {
  margin: 40px auto;
}
.loading {
  border: 1px solid #fff0;
  border-color: #fff0 var(--white-color) #fff0 var(--white-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}
.loading-container:hover .loading,
.loading-container .loading {
  transition: all 0.5s ease-in-out;
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}
.main-menu ul li a.active {
  color: var(--accent-color) !important;
  font-weight: 600;
}
.main-menu ul li a.active::after {
  width: 100%;
}
.section-row {
  margin-bottom: 60px;
}
.section-row .section-title {
  text-align: center;
  margin-bottom: 0;
}
.section-title {
  margin-bottom: 40px;
}
.section-title h3 {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
  padding-left: 20px;
  margin-bottom: 10px;
}
.section-title h3::before {
  content: "✦";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-54%);
  background: none;
  color: var(--accent-color);
  font-size: 16px;
  line-height: 1;
  width: auto;
  height: auto;
}
.section-title h1 {
  font-size: 54px;
  font-weight: 700;
  margin-bottom: 0;
}
.section-title h2 {
  font-size: 44px;
  font-weight: 700;
  margin-bottom: 0;
}
.section-title h1 span,
.section-title h2 span {
  color: var(--accent-color);
}
.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
}
header.main-header {
  background-color: var(--white-color);
  border-bottom: 1px solid var(--dark-divider-color);
  position: relative;
  z-index: 100;
}
header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}
header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}
header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--secondary-color);
  border-bottom: 1px solid var(--dark-divider-color);
  backdrop-filter: blur(30px);
}
.navbar {
  padding: 30px 0;
  align-items: center;
}
.navbar-brand {
  padding: 0;
  margin: 0;
}
.quote-block {
  max-width: 700px;
  margin: 60px auto;
  position: relative;
}

.quote-mark {
  font-size: 80px;
  opacity: 0.1;
  line-height: 0;
}

.quote-text {
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
}

.quote-author {
  margin-top: 20px;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.7;
}
.quote-divider {
  text-align: center;
  margin: 80px auto;
  max-width: 600px;
  position: relative;
}

.quote-divider p {
  font-size: 22px;
  font-weight: 500;
}

.quote-divider span {
  display: block;
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.7;
}

.quote-divider::before,
.quote-divider::after {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background: #8c5b4f;
  margin: 25px auto;
}
.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
}
.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}
.main-menu ul li {
  margin: 0 9px;
  position: relative;
}
.main-menu ul li a {
  font-size: 16px;
  font-weight: 500;
  padding: 14px 15px !important;
  color: var(--primary-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.main-menu ul li a:hover,
.main-menu ul li a:focus {
  color: var(--accent-color);
}
.responsive-menu,
.navbar-toggle {
  display: none;
}
.slicknav_btn {
  background: var(--primary-color);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin: 0;
  border-radius: 8px;
}
.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 22px;
  height: 3px;
  background-color: var(--white-color);
  border-radius: 6px;
  margin: 4px auto !important;
  transition: all 0.1s ease-in-out;
}
.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
}
.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle
  a.slicknav_btn.slicknav_open
  .slicknav_icon
  span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
}
.slicknav_menu {
  position: absolute;
  width: 100%;
  padding: 0;
  background: var(--primary-color);
}
.slicknav_nav li a {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 10px 20px;
  color: var(--white-color);
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.slicknav_nav a:hover,
.slicknav_nav a:focus {
  background-color: #fff0;
  color: var(--accent-color);
}
.slicknav_arrow {
  font-size: 0 !important;
}
.slicknav_arrow:after {
  content: "\f107";
  font-family: "FontAwesome";
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: var(--white-color);
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.3s ease-out;
}
.slicknav_open > a .slicknav_arrow:after {
  transform: rotate(-180deg);
  color: var(--accent-color);
}
.hero.bg-image.hero-video {
  position: relative;
  overflow: hidden;
  padding: 0;
}
.hero.bg-image.hero-video::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 10%;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-video .hero-bg-video {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}
.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.floating-info-box {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(-100px);
  background-color: var(--white-color);
  box-shadow: 0 0 40px 0 #00000021;
  border-radius: 14px;
  display: flex;
  align-items: center;
  padding: 10px;
  animation: floatMove 3s infinite linear alternate;
  z-index: 2;
}
@keyframes floatMove {
  50% {
    left: 50px;
  }
}
.floating-info-box .icon-box {
  margin-right: 10px;
}
.floating-info-box .icon-box img {
  max-width: 78px;
  border-radius: 14px;
}
.floating-info-content {
  width: calc(100% - 88px);
}
.floating-info-content h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
}
.floating-info-content p {
  font-size: 14px;
  color: var(--primary-color);
  margin: 0;
}
.about-section {
  padding: 100px 0;
}
.about-image {
  background-position: center center;
  background-size: auto;
  position: relative;
  margin-right: 50px;
  padding-bottom: 150px;
}
.about-img-1 {
  width: 500px;
}
.about-img-2 figure,
.about-img-1 figure {
  display: block;
}
.about-img-1 img {
  aspect-ratio: 1 / 0.96;
  object-fit: cover;
  border-radius: 40px;
}
.about-img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
}
.about-img-2 img {
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
  border: 7px solid var(--white-color);
  border-radius: 40px;
}
.about-body {
  margin-bottom: 40px;
}
.about-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.about-body ul li {
  position: relative;
  width: calc(50% - 10px);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: capitalize;
  padding-left: 30px;
}
.about-body ul li:before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 20px;
  color: var(--accent-color);
  display: inline-block;
  line-height: normal;
  position: absolute;
  top: 3px;
  left: 0;
}

.video-highlight-content {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.video-highlight-content .section-title h3 {
  color: var(--accent-color) !important;
  background: rgb(192 139 110 / 0.1);
  padding: 5px 15px;
  border-radius: 20px;
  display: inline-block;
}
.video-highlight-content .section-title h3::before {
  filter: sepia(1) saturate(300%) hue-rotate(320deg) brightness(0.9);
}
.video-highlight-content .section-title h2 {
  color: var(--primary-color) !important;
  margin-top: 15px;
}
.video-highlight-content p {
  color: var(--text-color) !important;
}
.video-highlight-btn .play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--white-color);
  background: var(--accent-color);
  text-transform: capitalize;
  padding: 15px 40px;
  border-radius: 50px;
  border: 2px solid var(--accent-color);
  transition: all 0.4s ease-in-out;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 10px 20px rgb(192 139 110 / 0.3);
}
.video-highlight-btn .play-btn:hover {
  background-color: #fff0;
  color: var(--accent-color);
  transform: translateY(-3px);
}
.video-highlight-btn .play-btn::before {
  content: "\f04b";
  font-family: "Font Awesome 6 Free";
  font-size: 14px;
  font-weight: 900;
  margin-right: 10px;
  position: static;
  transform: none;
  width: auto;
  height: auto;
  background: none;
  color: inherit;
  display: inline-block;
}
.video-highlight-btn .play-btn::after {
  display: none;
}
.quotes-section {
  position: relative;
  background: var(--divider-color);
  background-position: top center;
  background-size: auto;
  padding: 100px 0;
}
.quotes-box-1 {
  position: relative;
  z-index: 1;
}
.quotes-box-1 .quote-item {
  flex-direction: row-reverse;
}
.quotes-box-1 .quote-item .icon-box {
  margin-left: 15px;
  margin-right: 0;
}
.quotes-box-1 .quote-item .quote-content {
  text-align: right;
}
.quote-item {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.quote-item:last-child {
  margin-bottom: 0;
}
.quote-item .icon-box {
  margin-right: 15px;
}
.quote-item .icon-box img {
  max-width: 48px;
}
.quote-content {
  width: calc(100% - 63px);
}
.quote-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.quote-content p {
  margin: 0;
}
.quotes-image {
  position: relative;
  z-index: 1;
  margin-top: 50px;
}
.icon-star-image {
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(50%, 50%);
}
.icon-star-image img {
  max-width: 60px;
  animation: zoom 1s linear 1s infinite;
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
.quotes-section .icon-star-image {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(10px, -50%);
}
.books-section {
  position: relative;
  padding: 100px 0 70px;
  background-color: var(--secondary-color);
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}
.books-section .section-title h2 {
  color: var(--white-color);
}
.books-section .section-title p {
  color: var(--secondary-color);
}
.books-section .icon-star-image {
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  transform: translate(-20px, -50%);
}
.book-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  z-index: 1;
}
.book-image {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  margin-bottom: 20px;
  border: 2px solid var(--divider-color);
}
.book-image img {
  width: 100%;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}
.book-item:hover .book-image img {
  transform: scale(1.1);
}
.book-content {
  text-align: center;
}
.book-content h3 {
  font-size: 24px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
  color: var(--white-color) !important;
}
.book-content p {
  text-transform: capitalize;
  margin: 0;
  color: var(--accent-color);
}
.book-action-icon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  transform: translateY(101%);
  text-align: center;
  z-index: 1;
  transition: all 0.5s ease-in-out;
}
.book-item:hover .book-action-icon {
  transform: translateY(-20px);
}
.book-action-icon ul {
  display: inline-block;
  list-style: none;
  margin: 0;
  padding: 0;
}
.book-action-icon ul li {
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}
.book-action-icon ul li a {
  height: 38px;
  width: 38px;
  background-color: var(--white-color);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.book-action-icon ul li a i {
  color: var(--primary-color);
  font-size: 18px;
  transition: all 0.3s ease-in-out;
}
.book-action-icon ul li a:hover {
  background: var(--accent-color);
}
.book-action-icon ul li a:hover i {
  color: var(--white-color);
}
.reviews-section {
  padding: 100px 0;
  background-color: var(--secondary-color);
  position: relative;
  z-index: 1;
}
.reviews-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-image {
  position: relative;
  padding-bottom: 90px;
  margin-right: 20px;
}
.reviews-img img {
  aspect-ratio: 1 / 1.1;
  border-radius: 40px;
  object-fit: cover;
}
.reviews-rating-box {
  position: absolute;
  background: var(--accent-color);
  border: 6px solid var(--white-color);
  border-radius: 30px;
  right: 0;
  bottom: 0;
  padding: 30px;
  max-width: 450px;
}
.rating-counter-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--divider-color);
}
.rating-counter-item .rating-counter-number {
  min-width: 125px;
  margin-right: 20px;
}
.rating-counter-item .rating-counter-number h3 {
  color: var(--white-color);
  font-size: 44px;
}
.rating-counter-item .rating-counter-content {
  width: calc(100% - 145px);
}
.rating-counter-item .rating-counter-content p {
  color: var(--white-color);
  margin: 0;
}
.review-item .review-quote-image {
  margin-bottom: 30px;
}
.review-item .review-quote-image img {
  max-width: 50px;
}
.review-item .review-content {
  margin-bottom: 30px;
}
.review-content p {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}
.review-item .review-body {
  display: flex;
  align-items: center;
}
.review-body .author-image {
  margin-right: 10px;
}
.review-body .author-image img {
  max-width: 64px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
}
.review-body .author-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.review-body .author-content p {
  text-transform: capitalize;
  margin: 0;
}
.testimonial-btn {
  display: flex;
  align-items: center;
  justify-content: left;
  margin-top: 40px;
}
.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: var(--accent-color);
  border-radius: 6px;
  transition: all 0.4s ease-in-out;
}
.testimonial-slider .testimonial-button-next {
  margin-left: 20px;
}
.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
  background-color: var(--primary-color);
}
.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../images/arrow-white.svg) no-repeat center center;
  background-size: 12px auto;
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.testimonial-slider .testimonial-button-prev::before {
  transform: rotate(225deg);
}
.testimonial-box-item {
  background-color: var(--white-color);
  padding: 50px 40px;
  border-radius: 30px;
  box-shadow: 0 10px 30px rgb(92 26 26 / 0.03);
  margin-bottom: 30px;
  position: relative;
  transition: all 0.4s ease-in-out;
  border: 1px solid #fff0;
  overflow: hidden;
}
.testimonial-box-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgb(92 26 26 / 0.1);
  border-color: rgb(143 71 71 / 0.2);
}
.testimonial-box-header {
  position: relative;
  z-index: 2;
}
.testimonial-quote-img img {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 80px;
  opacity: 0.1;
  filter: grayscale(100%) sepia(1) hue-rotate(320deg) saturate(500%);
  transition: all 0.5s ease;
}
.testimonial-box-item:hover .testimonial-quote-img img {
  opacity: 0.2;
  transform: scale(1.1) rotate(-10deg);
}
.testimonial-box-content p {
  font-size: 17px;
  line-height: 1.8em;
  color: var(--text-color);
  font-style: italic;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.testimonial-box-body {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--divider-color);
  padding-top: 20px;
}
.author-box-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
}
.author-box-content p {
  font-size: 13px;
  text-transform: uppercase;
  color: var(--accent-color);
  font-weight: 600;
  letter-spacing: 1px;
  margin: 0 !important;
}
@media (min-width: 992px) {
  .col-lg-6:nth-child(even) .testimonial-box-item {
    margin-top: 50px;
  }
  .reviews-section .row {
    align-items: flex-start;
  }
}

footer.main-footer {
  padding: 80px 0 50px;
  background: var(--primary-color);
  background-position: center center;
  background-size: auto;
}
.main-footer a {
  transition: color 0.3s ease;
}

.main-footer a:hover {
  color: #f0c9a0;
}
.footer-logo {
  margin-bottom: 35px;
}
.footer-logo img {
  width: 100%;
  max-width: 220px;
}
.about-footer-content p {
  color: var(--white-color);
  margin-bottom: 0;
  opacity: 0.85;
  line-height: 1.7;
}
.footer-links h3 {
  color: var(--white-color);
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  margin-bottom: 20px;
}
.footer-links ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links ul li {
  margin-bottom: 10px;
}
.footer-links ul li:last-child {
  margin-bottom: 0;
}
.footer-links ul li a {
  color: var(--white-color);
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}
.footer-links ul li:hover a {
  color: var(--accent-color);
}

.footer-links i {
  margin-right: 8px;
  opacity: 0.8;
}

.footer-quick-links,
.footer-social-links {
  margin-left: 50px;
}
.footercopyright {
  color: var(--secondary-color);
  border-top: 1px solid var(--divider-color);
  padding: 0px 0;
  text-align: center;
  margin-top: 60px;
}
.footercopyright-text p {
  opacity: 0.7;
  font-size: 13px;
}

.page-header {
  background: var(--secondary-color);
  background-position: center center;
  background-size: contain;
  padding: 100px 0;
}
.page-header-box h1 {
  font-size: 54px;
  font-weight: 700;
  text-align: center;
  color: var(--accent-color);
  margin-bottom: 20px;
}
.page-header-box h1 span {
  color: var(--primary-color);
}
.page-content-section {
  padding: 100px 0 50px;
}

.cta-box {
  background-color: var(--primary-color);
  padding: 50px 0;
}
.cta-box-item {
  display: flex;
  align-items: center;
  border-right: 1px solid var(--divider-color);
  margin-right: 15px;
  padding-right: 15px;
}
.cta-box .col-lg-4:nth-child(2) .cta-box-item {
  border: none;
  padding-right: 0;
  margin-right: 0;
}
.cta-box-item .icon-box {
  margin-right: 20px;
}
.cta-box-item .icon-box img {
  max-width: 40px;
}
.cta-box-content {
  width: calc(100% - 60px);
}
.cta-box-content h3 {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--white-color);
  margin-bottom: 10px;
}
.cta-box-content p {
  color: var(--white-color);
  margin: 0;
}
.cta-box-btn {
  text-align: right;
}
.page-header-box ol li a {
  color: var(--primary-color) !important;
  font-weight: 600;
  transition: all 0.3s ease;
}
.page-header-box ol li a:hover {
  color: var(--accent-color) !important;
}
.page-header-box ol li.active {
  color: var(--accent-color) !important;
  font-weight: 600;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: var(--primary-color) !important;
  opacity: 0.5;
}
/* Ana görsel kapsayıcı: uzun görünüm */
.about-image--tall .image-frame--tall {
  width: 100%;
  height: 620px; /* masaüstü uzunluk */
  border-radius: 26px; /* daha premium */
  overflow: hidden;
}

/* img tam doldursun, kırparak uzun görünsün */
.about-image--tall .image-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* uzun görünüm için kritik */
  object-position: center; /* yüz ortada kalsın */
  display: block;
}

/* Eğer image-anime / reveal transform ile bozuluyorsa */
.about-image--tall figure.image-anime {
  margin: 0;
}

/* Responsive ayar */
@media (max-width: 1199px) {
  .about-image--tall .image-frame--tall {
    height: 520px;
  }
}

@media (max-width: 991px) {
  .about-image--tall .image-frame--tall {
    height: 460px;
  }
}

@media (max-width: 575px) {
  .about-image--tall .image-frame--tall {
    height: 360px;
    border-radius: 18px;
  }
}

@media only screen and (max-width: 1024px) {
  .navbar {
    padding: 20px 0;
  }
  .main-menu ul li {
    margin: 0;
  }
}

@media only screen and (max-width: 991px) {
  #magic-cursor {
    display: none !important;
  }
  .slicknav_nav li,
  .slicknav_nav ul {
    display: block;
  }
  .responsive-menu,
  .navbar-toggle {
    display: block;
  }
  .section-row {
    margin-bottom: 40px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title h1 {
    font-size: 44px;
  }
  .section-title h2 {
    font-size: 36px;
  }
  .section-title p {
    margin-top: 15px;
  }
  .section-btn {
    text-align: left;
    margin-top: 20px;
  }
  .hero.bg-image.hero-video {
    height: auto !important;
    min-height: 400px;
    padding: 0;
  }
  .hero-video .hero-bg-video {
    position: relative;
    height: 400px;
  }
  .hero-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .hero-content-body {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .about-section {
    padding: 50px 0;
  }
  .about-image {
    max-width: 560px;
    margin-right: 0;
    margin: 0 auto;
    margin-bottom: 30px;
    padding-bottom: 150px;
  }
  .about-body {
    margin-bottom: 30px;
  }
  .book-buttons .btn-default {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 20px;
  }

  .video-highlight-content {
    max-width: 550px;
  }
  .quotes-section {
    padding: 50px 0;
    background-size: 100% auto;
  }
  .quotes-box-1 .quote-item {
    flex-direction: row;
  }
  .quotes-box-1 .quote-item .icon-box {
    margin-left: 0;
    margin-right: 15px;
  }
  .quotes-box-1 .quote-item .quote-content {
    text-align: left;
  }
  .books-section {
    padding: 50px 0 20px;
    background-size: 100% auto;
  }
  .reviews-section {
    padding: 50px 0;
  }
  .reviews-image {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 30px;
  }
  .reviews-rating-box {
    max-width: 420px;
    padding: 20px;
  }
  .rating-counter-item .rating-counter-number {
    min-width: 100px;
  }
  .rating-counter-item .rating-counter-number h3 {
    font-size: 34px;
  }
  .rating-counter-item .rating-counter-content {
    width: calc(100% - 120px);
  }
  .testimonial-btn {
    margin-top: 30px;
  }
  .about-footer {
    margin-bottom: 20px;
  }
  footer.main-footer {
    padding: 20px 0 10px;
  }
  .footer-logo img {
    max-width: 140px;
  }
  .footer-quick-links,
  .footer-social-links {
    margin-left: 0;
  }
  .footer-links h3 {
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .footer-social-links a {
    transition: all 0.3s ease;
  }
  .footer-social-links i {
    font-size: 16px;
    opacity: 0.9;
  }

  .footer-social-links a:hover {
    color: #f0c9a0;
    transform: translateX(3px);
  }

  .cta-box {
    padding: 25px 0;
  }
  .cta-box-btn {
    text-align: center;
    margin-top: 30px;
  }
  .cta-box-content h3 {
    font-size: 18px;
  }
  .cta-box-item {
    margin-right: 0;
    padding-right: 0;
    border: none;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .section-title h1 {
    font-size: 34px;
  }
  .section-title h2 {
    font-size: 28px;
  }
  .hero-video .hero-bg-video {
    height: 300px;
  }
  .about-image {
    max-width: 100%;
    background-size: contain;
    padding-bottom: 80px;
  }
  .about-img-1 {
    width: 100%;
  }
  .about-img-2 {
    width: 250px;
  }
  .about-experience {
    transform: translate(50px, -30px);
  }
  .about-body ul {
    display: block;
  }
  .about-body ul li {
    width: 100%;
    margin-bottom: 15px;
  }
  .quote-item {
    margin-bottom: 30px;
  }
  .reviews-rating-box {
    max-width: 300px;
    padding: 15px;
    left: 0;
    margin: 0 auto;
  }
  .rating-counter-item .rating-counter-number {
    min-width: 70px;
    margin-right: 10px;
  }
  .rating-counter-item .rating-counter-content {
    width: calc(100% - 80px);
  }
  .rating-counter-item .rating-counter-number h3 {
    font-size: 24px;
  }
  footer.main-footer {
    padding: 20px 0 10px;
  }
  .footer-quick-links,
  .footer-social-links {
    margin-bottom: 40px;
  }
  .about-footer {
    margin-bottom: 25px;
  }
  .book-buttons .btn-default {
    width: 100%;
    text-align: center;
    padding: 16px 0;
    font-size: 20px;
  }

  .footer-logo img {
    max-width: 140px;
  }
  .footer-links h3 {
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .footer-social-links a {
    transition: all 0.3s ease;
  }
  .footer-social-links i {
    font-size: 16px;
    opacity: 0.9;
  }
}

.video-item {
  margin-bottom: 30px;
}
.video-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: var(--box-shadow);
}
.video-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-item:hover .video-image img {
  transform: scale(1.1);
}
.video-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: var(--white-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 20px rgb(0 0 0 / 0.2);
}
.video-item:hover .video-play-icon {
  background-color: var(--accent-color);
  color: var(--white-color);
  transform: translate(-50%, -50%) scale(1.1);
}
.video-body h3 {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
  color: var(--primary-color);
}
.mobile-video {
  display: none !important;
}
.desktop-video {
  display: block !important;
}
@media only screen and (max-width: 768px) {
  .desktop-video {
    display: none !important;
  }
  .mobile-video {
    display: block !important;
  }
}
.mobile-center-logo {
  display: none;
}
@media only screen and (max-width: 991px) {
  header.main-header .navbar .container {
    position: relative;
  }
  .mobile-center-logo {
    display: block !important;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .mobile-center-logo img {
    max-height: 45px;
    width: auto;
  }
}
.typewriter-effect::after {
  content: "|";
  animation: blink 1s infinite;
  color: var(--primary-color);
}
@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.mobile-header-extras {
  display: none !important;
}
@media only screen and (max-width: 991px) {
  .mobile-header-extras {
    display: flex !important;
    align-items: center;
    flex-grow: 1;
  }
  header.main-header .navbar .container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding-right: 15px;
  }
  header.main-header .navbar-brand img {
    max-height: 35px !important;
    margin-right: 5px;
  }
  .mobile-signature-img img {
    height: 30px;
    width: auto;
    opacity: 0.9;
    display: block;
  }
  .mobile-lang-flags {
    display: flex;
    gap: 8px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #e0e0e0;
    align-items: center;
  }
  .mobile-lang-flags img {
    width: 24px;
    height: 24px;
    object-fit: cover;
    margin: 0 5px;
    box-shadow: none !important;
    border-radius: 50% !important;
    background: transparent !important;
    border: none !important;
    padding: 0;
  }
  .navbar-toggle {
    margin-left: auto;
  }
  .cb-cursor {
    display: none;
  }
}
.desktop-flag img {
  box-shadow: none !important;
  background: transparent !important;
  border: none !important;
  padding: 0;
  transition: transform 0.2s;
}
.desktop-flag:hover img {
  transform: scale(1.1);
}
@media only screen and (max-width: 380px) {
  .mobile-lang-flags {
    gap: 5px;
    margin-left: 8px;
    padding-left: 8px;
  }
  .mobile-lang-flags img {
    width: 20px;
    height: 20px;
  }
  .mobile-signature-img img {
    height: 18px;
  }
}
.desktop-flag img {
  width: 32px;
  height: auto;
  margin-left: 8px;
  margin-right: 12px;
  transition: 0.2s ease;
}
.desktop-flag img:hover {
  transform: scale(1.1);
}
.header-lang-flags {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 20px;
}
.lang-flag {
  width: 32px;
  height: 22px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.quotes-section .section-title h3 {
  margin-bottom: 10px;
}
.quotes-section .section-title h2 {
  margin-bottom: 40px;
}
.quote-item p {
  line-height: 1.7;
  color: var(--text-color);
  font-size: 16px;
}
.video-padding {
  padding: 80px 0;
}
.video-wrapper {
  margin-top: 30px;
  max-width: 900px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgb(0 0 0 / 0.3);
  border: 4px solid rgb(255 255 255 / 0.1);
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.featured-video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-description p {
  color: var(--text-color);
  font-size: 16px;
  max-width: 900px;
  margin: 30px auto 0 auto;
  opacity: 0.9;
  text-align: center;
}
.video-btn-wrapper {
  margin-top: 30px;
  text-align: center;
}
.youtube-icon {
  margin-right: 10px;
  font-size: 18px;
}
.book-image-wrapper img {
  width: 100%;
  max-width: 550px;
  border-radius: 15px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 30px 60px rgb(0 0 0 / 0.5);
}
.book-content-wrapper h4 {
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 15px;
}
.book-content-wrapper h2 {
  color: var(--primary-color);
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.book-content-wrapper h3 {
  color: var(--text-color);

  font-style: italic;
  font-size: 24px;
  margin-bottom: 25px;
  font-weight: 400;
}
.book-content-wrapper p {
  color: var(--text-color);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.book-features {
  margin-bottom: 40px;
  display: flex;
  gap: 30px;
}
.book-features i {
  color: var(--accent-color);
  margin-right: 8px;
}
.footer-social-links ul li a i {
  transition: 0.3s;
}
.footer-social-links ul li a:hover i {
  transform: translateY(-2px);
}
.footer-social-links a {
  transition: all 0.3s ease;
}

.footer-social-links a:hover {
  color: #f0c9a0;
  transform: translateX(3px);
}

.review-content p {
  font-size: 18px;
  font-weight: 500;
  color: var(--primary-color);
  margin: 0;
}
.author-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}
.author-content p {
  text-transform: capitalize;
  margin: 0;
  color: var(--accent-color);
}
.testimonial-button-prev,
.testimonial-button-next {
  cursor: pointer;
}
@media only screen and (max-width: 991px) {
  .book-content-wrapper h2 {
    font-size: 34px;
  }
  .video-container {
    border-radius: 15px;
  }
}
@media only screen and (max-width: 767px) {
  .book-features {
    flex-direction: column;
    gap: 10px;
  }
  .video-description p {
    padding: 0 20px;
  }
}

/* =========================================
   TABLET CİHAZLAR 
   (iPad, Tablet Yatay ve Dikey Görünüm)
   Min: 768px - Max: 1024px
   ========================================= */

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .hero.bg-image.hero-video {
    height: auto !important;
    min-height: 500px;
    padding: 80px 0;
  }

  .hero-title-visible {
    font-size: 2.5rem;
  }

  .about-section {
    padding: 60px 0;
  }

  .about-image {
    max-width: 70%;
    margin: 0 auto 50px auto;
    padding-bottom: 0;
  }

  .about-img-2 {
    width: 200px;
  }

  .book-image-wrapper img {
    max-width: 350px;
    margin-bottom: 40px;
  }

  .book-content-wrapper {
    text-align: center;
    padding-left: 0 !important;
  }

  .book-features {
    justify-content: center;
  }

  .book-buttons {
    justify-content: center;
    display: flex;
  }

  .quotes-image {
    display: none;
  }

  .quotes-box-1 .quote-item,
  .quotes-box-2 .quote-item {
    flex-direction: row;
    text-align: left;
    justify-content: flex-start;
  }

  .quotes-box-1 .quote-item .icon-box {
    margin-left: 0;
    margin-right: 15px;
  }

  .quotes-box-1 .quote-item .quote-content {
    text-align: left;
  }

  .reviews-section .row {
    flex-direction: column;
  }

  .reviews-image {
    max-width: 80%;
    margin: 0 auto 50px auto;
  }

  .testimonial-slider {
    text-align: center;
    padding: 0 30px;
  }

  .review-header {
    justify-content: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonial-btn {
    justify-content: center;
  }

  .video-highlight-content {
    max-width: 80%;
  }

  .footer-logo {
    text-align: center;
  }

  .footer-links {
    text-align: center;
    margin-bottom: 25px;
  }
  .about-footer {
    margin-bottom: 25px;
  }

  .footer-logo img {
    max-width: 140px;
  }

  .footer-quick-links,
  .footer-social-links {
    margin-left: 0;
  }
  .footer-social-links a {
    transition: all 0.3s ease;
  }

  .footer-social-links a:hover {
    color: #f0c9a0;
    transform: translateX(3px);
  }

  .footer-logo img {
    margin: 0 auto;
    display: block;
  }

  .about-footer-content {
    padding-left: 25px;
  }
}
.my-experience-box {
  margin-top: 60px;
}

.my-experience-box h2 {
  letter-spacing: -0.3px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
}

.experience-card {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  background: #fafafa;
  padding: 30px 35px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.experience-card h4 {
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.experience-list li {
  list-style: none;
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
}

.experience-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
}

.experience-quote {
  margin: 24px 0;
  padding-left: 18px;
  border-left: 3px solid var(--accent-color);
  font-style: italic;
  color: #6a4b3b;
}

.experience-signature {
  margin-top: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #6a6a6a;
}

/* =========================
   Books - Details Section
   ========================= */

.book-details-section {
  padding: 90px 0;
}

.book-detail-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 28px 26px;
  height: 100%;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

.book-detail-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--primary-color);
}

.book-detail-card p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: 14px;
  opacity: 0.92;
}

.book-detail-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.book-detail-list li {
  color: var(--text-color);
  opacity: 0.95;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.book-detail-list li i {
  color: var(--accent-color);
  margin-top: 4px;
}

.book-purchase-box {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 18px;
  padding: 22px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.book-purchase-text h3 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--primary-color);
}

.book-purchase-text p {
  margin: 0;
  color: var(--text-color);
  opacity: 0.9;
}

/* Disabled state (link yokken) */
.book-purchase-btn.is-disabled {
  pointer-events: none;
  opacity: 0.55;
  filter: grayscale(0.2);
}

@media (max-width: 991px) {
  .book-purchase-box {
    flex-direction: column;
    align-items: flex-start;
  }
  .book-purchase-btn {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .main-header .navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .main-header .navbar-brand img {
    max-height: 38px !important;
    width: auto;
    flex-shrink: 0;
  }

  .main-header .mobile-signature-img img {
    max-height: 25px;
    width: auto;
    opacity: 0.9;
  }

  .main-header .mobile-lang-flags {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .main-header .mobile-lang-flags img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 5px;
  }

  .main-header .navbar-toggle {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    border-radius: 0px;
  }
}

/* Extra küçük telefonlar */
@media (max-width: 420px) {
  .main-header .navbar-brand img {
    max-height: 34px !important;
  }

  .main-header .mobile-signature-img img {
    max-height: 20px;
  }

  .main-header .mobile-lang-flags img {
    width: 20px;
    height: 20px;
  }

  .main-header .navbar-toggle {
    width: 30px;
    height: 30px;
  }
}
