@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@font-face {
  font-family: "Betterlett";
  src: url('../fonts/betterlett/Betterlett.ttf');
}

:root {
  --f1: "Marcellus SC", serif;
  --f2: "Poppins", serif;
  --f3: "Betterlett", serif;
  --c1: rgba(71, 92, 108, 1);
  --c2: #CD8B62;
}

ul {
  padding: 0 !important;
  margin: 0 !important;
}

::-moz-selection {
  background-color: transparent;
}

::selection {
  background-color: transparent;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden !important;
}

.img__contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.img__cover {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: 500ms all;
}

.banner {
  height: 100%;
  width: 100%;
  min-height: 93vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.banner__img {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  inset: 0;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  text-decoration: none !important;
  list-style-type: none;
  font-family: "Poppins", sans-serif;
}

a {
  display: inline-block;
  text-decoration: none;
  color: #000;
  transition: all 300ms ease-in-out;
}

a:hover {
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}

img {
  width: 100%;
}

.main_topHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topCont {
  margin: 0;
  font-size: 16px;
  font-family: var(--f2);
  font-weight: 600;
  color: #fff;
}

.mail {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--f2);
  color: #fff;
  font-weight: 300;
}

.mail i {
  font-size: 19px;
  height: 21px;
}

.top_header {
  padding: 7.5px 0;
  background: var(--c1);
}

.mail b {
  font-weight: 500;
}

.mainHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid var(--c1);
  padding: 20px 0;
}

.social_icons {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 370px;
}

.social_icons li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  aspect-ratio: 1/1;
  background: var(--c1);
  border-radius: 100%;
  color: #fff;
}

.logo {
  width: 390px;
  height: 40px;
}

.top_search {
  display: flex;
  align-items: center;
  background: #4444;
  border-radius: 50px;
  justify-content: space-between;
  width: 300px;
  padding: 0 15px;
}

.top_search input {
  padding: 10px 0;
  font-size: 14px;
  color: #000;
  border: none;
  outline: none;
  background: transparent;
}

.top_search button {
  background: transparent;
  border: none;
  outline: none;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header_nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px 0 !important;
}

.header_nav li a {
  font-size: 14px;
  font-family: var(--f2);
  text-transform: uppercase;
  font-weight: 600;
  color: #2d2d2d;
  position: relative;
}

.banner_img {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.sub_head {
  font-size: 30px;
  font-family: var(--f3);
  color:
    #fff;
  position: relative;
  text-transform: capitalize;
}

.sub_head:before {
  position: absolute;
  width: 50px;
  height: 3px;
  background: #fff;
  content: '';
  top: 50%;
  right: 60px;
  transform: translatey(-50%);
}

.sub_head:after {
  content: '';
  background: #fff;
  width: 14px;
  height: 14px;
  border-radius: 100%;
  right: 60px;
  top: 50%;
  transform: translatey(-50%);
  position: absolute;
}

.banner_content h1 {
  font-family: var(--f1);
  font-size: 35px;
  color: #fff;
  text-transform: uppercase;
}

.banner_content h3 {
  font-family: var(--f1);
  font-size: 56px;
  color: #fff;
  position: relative;
}

.banner_content h3:before {
  position: absolute;
  content: '';
  height: 100%;
  width: 210%;
  background: var(--c1);
  z-index: -1;
  right: 20px;
  border-radius: 0px 50px 50px 0px;
}

.banner_content p {
  margin: 15px 0;
  font-family: var(--f2);
  font-size: 17px;
  color: #fff;
}

.banner_btn {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
}

.themebtn {
  background: var(--c2);
  border: 1px solid transparent;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  border-radius: 5px;
}

.themebtn:hover {
  border-color: #fff;
  background: transparent;
  color: #fff;
  scale: 0.9;
}

.themebtn--alt {
  background: transparent;
  border-color: #fff;
}

.themebtn--alt:hover {
  background: var(--c2);
  border-color: transparent;
}

.banner_bookImg {
  height: auto;
  width: 100%;
  transition: 500ms all;
}

.banner_bookImg:hover {
  scale: 0.9;
}

.about {
  padding: 70px 0;
}

.content_subHead span {
  display: inline-block;
  width: 50px;
  height: 14px;
  position: relative;
}

.content_subHead span:before {
  position: absolute;
  width: 100%;
  height: 3px;
  background: var(--c1);
  content:
    '';
  top: 50%;
  right: 0;
  transform: translatey(-50%);
}

.content_subHead span:after {
  background: var(--c1);
  width: 14px;
  height: 14px;
  right: 0;
  content: '';
  position: absolute;
  border-radius: 100%;
}

.content_subHead {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 32px;
  font-family: var(--f3);
  text-transform: capitalize;
  color: var(--c1);
}

.content_head {
  font-size: 40px;
  font-family: var(--f1);
  text-transform: uppercase;
  line-height: 44px;
  color: #000;
}

.about_content p {
  margin: 15px 0 25px;
  font-family: var(--f2);
  font-size: 15px;
  line-height: 29px;
}

.about_btn .themebtn:hover {
  background: var(--c1);
}

.about_img {
  transition: 500ms all;
  width: 100%;
  height: 630px;
}

.about_img:hover {
  scale: 0.9;
}

.pub_collections {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 70px 0;
  position: relative;
}

.pub_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.pub_crd {
  padding: 30px 30px;
  text-align: -webkit-center;
  background: #fff;
  border-radius: 160px;
  height: 380px;
}

.pub_icon {
  width: 100px;
  margin: -70px 0 15px;
}

.pub_content h5 {
  font-family: var(--f1);
  font-size: 22px;
}

.pub_content p {
  font-family: var(--f2);
  font-size: 14px;
  line-height: 26px;
  margin: 0;
}

.linealt:after {
  left: 0;
}

.content_subHead.alt span:before {
  background: #000 !important;
}

.content_subHead.alt span:after {
  background: #000;
}

.content_subHead.alt {
  color: #000;
}

.pub_crdsMain {
  margin: 80px 0 0;
}

.about_content h4 {
  font-family: var(--f2);
  font-style: italic;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  color: #000;
}

.book_sec {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  min-height: 100vh;
}

.fade_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.circle_bg {
  position: absolute;
  right: 0;
  z-index: -1;
  top: 50%;
  transform: translatey(-50%);
  width: 50%;
  height: 100vh;
}

.book_img {
  width: 500px;
  height: auto;
  transition: 500ms all;
}

.book_img:hover {
  scale: 0.9;
}

.testimonials {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 70px 0;
  position: relative;
}

.test_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.test_head .content_subHead {
  color: #fff;
}

.test_head .content_subHead span:before {
  background: #fff !important;
}

.test_head .content_subHead span:after {
  background: #fff !important;
}

.test_head .content_head {
  color: #fff !important;
}

.test_crd {
  background: #fff;
  position: relative;
  padding: 30px;
  border-radius: 20px;
  overflow: hidden;
}

.test_logos {
  position: absolute;
  width: 40px;
  right: 7px;
  top: 50%;
  transform: translatey(-50%);
}

.mainInnertest {
  width: 100%;
}

.test_content h5 {
  font-family: var(--f1);
  font-size: 20px;
  font-weight: 600;
  color: #000;
}

.test_content p {
  font-size: 14px;
  font-family: var(--f2);
  margin: 10px 0;
}

.ratting {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 21px;
  color: #ffaa00;
}

.main_test {
  margin: 30px 0 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 70px 0;
}

.contact_mainBg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
}

.input_feild :is(input, textarea) {
  width: 100%;
  padding: 12px 20px;
  font-size: 14px;
  border: none;
  outline: none;
}

.input_label {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--f2);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 20px;
}

.input_label span {
  font-size: 12px;
  color: #a60000;
  font-weight: 300;
  font-style: italic;
}

.input_feild {
  margin: 10px 0;
}

.input_feild textarea {
  height: 110px;
}

.input_feild .themebtn {
  width: 100%;
  border-radius: 0;
  transition: 500ms all;
}

.input_feild .themebtn:hover {
  scale: 1 !important;
}

.main_innerContact {
  margin: 40px 0 0;
}

.getinTouch_Box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 40px 30px 77px;
  border-radius: 25px;
  overflow: hidden;
}

.get_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  inset: 0;
}

.get_content h4 {
  font-size: 40px;
  font-family: var(--f1);
  color: #fff;
}

.get_content p {
  font-size: 14px;
  font-family: var(--f2);
  color: #fff;
}

.cont_gemail {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #fff;
}

.cont_gemail i {
  width: 30px;
  height: 30px;
  background: #fff;
  color: var(--c1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}

.email {
  font-size: 12px;
  width: 80%;
  font-weight: 200;
}

.email span {
  font-weight: 500;
}

.cont_icons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 130px 0 0 !important;
}

.cont_icons li a {
  font-size: 38px;
  color: #fff;
}

.cont_book {
  width: 100%;
  height: 320px;
}

.cont_icons li a:hover {
  color: #000;
}

.cont_gemail:hover {
  color: #fff;
}


.cont_head .content_subHead {
  color: var(--c1);
}

.cont_head .content_subHead.alt span:before {
  background: var(--c1) !important;
}

.cont_head .content_subHead.alt span:after {
  background: var(--c1);
}

.header_nav li a:before {
  position: absolute;
  bottom: 0;
  content: '';
  left: 0;
  height: 2px;
  background: var(--c1);
  width: 0;
  transition: 500ms all;
}

.header_nav li a:hover:before {
  width: 100%;
}

.header_nav li a:hover {
  color: #565656;
}






/* book_css */
.book_mainImg {
  position: relative;
  width: 100%;
  height: 636px;
  cursor: pointer;
}

.book_Bg {
  position: absolute;
  width: 79%;
  height: 70%;
  z-index: -1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.book_img {}

.book_before {
  position: absolute;
  width: 70px;
  height: 70px;
  transition: 500ms all;
}



.book_mainImg:hover .book_img {
  transform: skewY(-5deg)
}

.book_mainImg:hover .book_img:before {
  transform: skewy(5deg) translatey(15px);
  width: 104%;
}

.book_secContent h5 {
  font-size: 20px;
  font-family: var(--f1);
  text-transform: uppercase;
}

.book_secContent h3 {
  font-size: 45px;
  font-family: var(--f1);
  text-transform: uppercase;
  line-height: 40px;
}

.book_secContent h4 {
  font-family: var(--f1);
  font-size: 23px;
}

.book_secContent p {
  margin: 10px 0;
  font-size: 13px;
  line-height: 26px;
}

.themebtn--alt:before {
  opacity: 0;
  visibility: hidden;
}


.themebtn--alt:hover:before {
  opacity: 1;
  visibility: visible;
}

.themebtn--alt:hover {
  border-color: transparent !important;
}

.book_btns .themebtn:hover {
  border-color: #000;
  color: #000;
}

.book_btns {
  margin: 20px 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  z-index: 999;
  background: #000000d1;
  opacity: 0;
  visibility: hidden;
  transition: 500ms all;
  backdrop-filter: blur(5px);
}

.main_bookSlider {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.main_bookSlider {
  padding: 10px;
  background: transparent;
  border-radius: 10px;
  transition: 500ms all;
  transform: translate(-50%, -50%) scale(0);
}

.hard {
  background: linear-gradient(311deg, #636363, #bfbebe) !important;
  box-shadow: inset 0 0 45p 14px #4444 !important;
}

.turn-page {
  background: linear-gradient(160deg, #fff, #dadada);
  box-shadow: inset 0 0 45px 14px #4444;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  z-index: 99;
  width: 100px;
  height: 100px;
  background: transparent;
  border: none;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 100px;
  cursor: pointer;
}

.next {
  right: -150px;
}

.prev {
  left: -150px;
}

.page_inner p {
  font-size: 13px;
  margin: 0px 0 7px;
  line-height: 17px;
}

.page_inner {
  padding: 22px 40px;
}

.last_img {
  transform: rotatey(180deg);
}

.book_form {
  height: 100%;
  display: grid;
  place-items: center;
}

.book_head {
  font-size: 47px;
  text-align: center;
  font-family: var(--f1);
  line-height: 57px;
  text-transform: uppercase;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

.main_bookSlider.active {
  transform: translate(-50%, -50%) scale(1);
}

.crs_btn {
  font-size: 70px;
  color: #ffffff5e;
  text-align: end;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 500ms all;
  position: absolute;
  right: 35px;
  top: 20px;
}

.crs_btn:hover {
  color: #fff;
  transform: rotate(180deg);
}

.page_inner--main {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  text-align: -webkit-center;
}


.right_align {
  text-align: right;
}

.page_inner h4 {
  text-align: center;
  margin: 58px 0;
  font-size: 18px;
  font-weight: 700;
}

.page_inner ul li {
  font-size: 11px;
  margin: 5px 0;
  line-height: 18px;
  list-style-type: disc;
}

.page_inner ul {
  direction: rtl;
}

.page_inner ul li a {
  direction: ltr;
  unicode-bidi: embed;
}

.english_left h4 {
  text-align: center;
}

.page_inner--diet p {
  font-size: 11px;
}

.by {
  font-weight: 700;
  font-family: var(--f2);
  font-size: 16px !important;
}

.writer {
  font-size: 20px !important;
  font-weight: 700;
  font-family: var(--f1);
}

.page_inner h5 {
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  margin: 0px 0px 10px;
}

.chapter_head {
  margin: 3px 0px !important;
}




/* noman css */


.footer {
  display: grid;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  min-height: 60vh;
  padding: 65px 0px;
}

.footer_img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.footer_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer_cont {
  color: #fff;
  z-index: 9999;
  position: relative;
}

.footer_links {
  position: relative;
  color: #fff;
  line-height: 2.2;
  display: grid;
  justify-content: center;
}

.footer_cont h3 {
  font-family: var(--f1);
  font-size: 38px;
  font-weight: 500;
  margin-bottom: 24px;
}

.footer_cont p {
  font-family: var(--f2);
  font-size: 13px;
  width: 91%;
  line-height: 1.7;
  margin-bottom: 26px;
}

.footer_icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.footer_icon li a {
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 24px;
  border-radius: 50px;
  color: #fff;
}

.footer_links h4 {
  font-size: 32px;
  font-family: var(--f1);
  font-weight: 500;
  margin-bottom: 16px;
}

.footer_links li a {
  font-size: 14px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  font-family: var(--f2);
  color: #fff;
}

.footer_links li a i {
  font-size: 20px;
}

.footer_links li a:hover {
  color: var(--c1);
}

.footer_icon li a:hover {
  background: #ffff;
  color: var(--c1);
  transform: translateY(10px);
}

.end_footer {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 0px;
  background: var(--c1);
  width: 100%;
  height: 55px;
}

.end_foot_para p {
  color: #fff;
  font-family: var(--f2);
  font-size: 14px;
  margin: 0;
}

.seller_card {
  padding: 35px;
  border-radius: 15px;
  transition: 500ms;
  border: 1px solid #afafaf44;
}

.seller_card:hover {
  box-shadow: 0px 0px 5px 1px #86868669;
}

.best_seller {
  padding: 70px 0px;
}

.seller_img {
  width: 100%;
  height: 455px;
  overflow: hidden;
}

.seller_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.seller_cont {
  padding: 19px 0px 0px;
}

.seller_cont h3 {
  font-family: var(--f1);
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
}

.seller_btn {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 270px;
}

.Innerbanner_content h3 {
  font-family: var(--f1);
  font-size: 50px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  color: #fff;
}

.inner_banner {
  padding: 70px 0;
  background: var(--c1);
}

.Innerbook_sec {
  padding: 70px 0;
}

.slick-dots li button:before {
  display: none;
}

.slick-dots li button {
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
}

.slick-dots li {
  width: 10px !important;
  height: 10px !important;
  border: 1px solid var(--c1) !important;
  border-radius: 100% !important;
}

.slick-dots li.slick-active {
  background: var(--c1) !important;
}
.main_test--slider {
    margin: 70px 0 0 !important;
}

.testimonials--alt {
    padding: 100px 0;
}