@import url('https://fonts.googleapis.com/css2?family=Marcellus+SC&display=swap');
@import url('https://fonts.googleapis.com/css2?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: Belgiano;
  src: url("../fonts/belgiano_serif/Belgiano\ Serif\ 2.ttf");
}

:root {
  --f1: "Marcellus SC", serif;
  --f2: "Belgiano";
  --c1: #2b1812;
  --c2: #990012;
  --c3: #000;
}

ul {
  padding: 0 !important;
  margin: 0 !important;
}

::-moz-selection {
  background-color: transparent;
}

::selection {
  background-color: var(--c2);
  color: #fff;
}

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: 90vh;
  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: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

ul,
ol,
dl {
  margin-bottom: 0;
  padding: 0;
}

img {
  width: 100%;
}

h1 {
  font-size: 100vh;
  text-align: center;
}

.top_header {
  background: #5f4d48;
  padding: 6px;
}

.top_main_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top_main_head p {
  font-family: sans-serif;
  font-weight: 600;
  color: #ffff;
  font-size: 12px;
  margin: 0;
}

.top_links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  position: relative;
}

.top_links li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  font-size: 12px;
  font-family: sans-serif;
  font-weight: 500;
  color: #fff;
}

.top_links li a span {
  font-size: 18px;
}

.main_logo {
  width: 275px;
  height: 35px;
  overflow: hidden;
}

.main_logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main_head_inner {
  padding: 18px 0px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

ul.header_nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 37px;
}

ul.header_nav li a {
  font-size: 13px;
  font-family: 'Poppins';
  position: relative;
  text-transform: capitalize;
  font-weight: 500;
  color: #000;
}

ul.header_nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #2b1712;
  transition: all 500ms;
}

ul.header_nav li a.active::after {
  width: 100%;
  left: 0;
}

ul.header_nav li a:hover::after {
  width: 100%;
  left: 0;
}

ul.header_nav li a:hover {
  color: #2b1712;
}

ul.header_nav li a.active {
  color: #2b1712;
}

.double_button {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.themebtn {
  padding: 11px 25px;
  text-transform: uppercase;
  font-size: 13px;
  color: #fff;
  background: #2b1812;
  border-radius: 7px;
  font-family: 'Poppins';
  font-weight: 500;
  border: 2px solid transparent;
}

.themebtn.trans {
  background: transparent;
  color: #2b1812;
  border: 2px solid #2b1812;
  padding: 10px 24px;
}

.top_links::before {
  position: absolute;
  content: '';
  background: #fff;
  width: 2px;
  height: 25px;
  top: 0;
  left: 40%;
}

.footer__logo {
  width: 275px;
  height: 40px;
  overflow: hidden;
  position: relative;
}

.footer__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main_footer p {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 14px;
}

.main_footer ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 15px;
  margin: 35px 0px 0px !important;
}

.main_footer ul li a {
  background: #2B1812;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-size: 30px;
  color: #fff;
}

.main_footer ul li a:hover {
  background: #fff;
  color: #2B1812;
  box-shadow: 1px 1px 8px 4px #2B1812;
  transform: scale(1.2);
}

.footer_links h3 {
  font-family: var(--f2);
  font-weight: 600;
  font-size: 24px;
  position: relative;
}

.footer__logo::before {
  position: absolute;
  content: '';
  width: 45px;
  height: 4px;
  background: #2B1812;
  bottom: 0px;
  left: 0;
}

.footer_links ul li a {
  color: #000;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.3;
  font-family: sans-serif;
}

.footer_links ul {
  line-height: 1.5;
  margin: 20px 0 0 !important;
  padding-left: 18px !important;
}

.footer_links ul li a span {
  display: block;
}

.footer_links h3::before {
  position: absolute;
  content: '';
  background: #2B1812;
  width: 35px;
  height: 4px;
  bottom: -8px;
  left: 0;
}

.footer_links ul li {
  margin: 0 0 12px;
  list-style-type: disc;
}

.newsletter {
  margin: 23px 0 0 !important;
}

.newsletter p {
  margin: 0;
  font-family: sans-serif;
  font-weight: 600;
  font-size: 15px;
}

.news_input {
  border: 1px solid gainsboro;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 12px !important;
  margin: 15px 0;
}

.news_form input {
  border: none;
  outline: none;
  font-size: 14px;
  padding: 12px 4px;
}

.news_input span {
  color: gainsboro;
  font-size: 22px;
}

.news_form input::placeholder {
  font-family: sans-serif;
  font-size: 14px;
}

footer {
  padding: 70px 0px;
}

section.about_book {
  background: url(../images/about-book-back.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: auto;
  padding: 65px 0px;
}

.about_book_img {
  width: 460px;
  height: 485px;
  overflow: hidden;
  margin: 0 auto;
}

.about_book_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book_cont h5 {
  color: #fff;
  font-weight: 500;
  font-family: sans-serif;
  font-size: 18px;
  position: relative;
  width: fit-content;
}

.book_cont h3 {
  color: #fff;
  font-family: var(--f2);
  text-transform: capitalize;
  font-size: 42px;
}

.book_cont p {
  color: #fff;
  font-family: sans-serif;
  font-size: 15px;
  width: 88%;
}

.book_cont .double_button {
  justify-content: flex-start;
}

.book_cont .double_button .themebtn.trans {
  border: 2px solid #fff;
  color: #fff;
}

.themebtn:hover {
  border: 2px solid #fff;
  background: transparent;
  color: #fff;
}

.book_cont h5::before {
  position: absolute;
  content: '';
  background: url(../images/head-bef.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 175px;
  height: 60px;
  top: -18px;
  right: -190px;
}

.author_img {
  width: 95%;
  height: 560px;
  overflow: hidden;
}

.author_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.about_author {
  padding: 70px 0px;
  position: relative;
}

.author_cont h5 {
  font-weight: 500;
  font-family: sans-serif;
  font-size: 18px;
  position: relative;
  width: fit-content;
}

.author_cont h3 {
  font-family: var(--f2);
  text-transform: capitalize;
  font-size: 42px;
}

.author_cont p {
  font-family: sans-serif;
  font-size: 15px;
  width: 88%;
}

.author_cont h5::before {
  position: absolute;
  content: '';
  background: url(../images/head-bef.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 175px;
  height: 60px;
  top: -18px;
  right: -190px;
  filter: invert(1);
}

.about_author::before {
  position: absolute;
  content: '';
  right: -65px;
  bottom: 70px;
  background: url(../images/sec-bef.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 185px;
  height: 185px;
}

section.main_banner {
  background: url(../images/banner-img.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  padding: 68px 0px;
}

.banner_img {
  width: 85%;
  height: 480px;
  overflow: hidden;
  margin: 0 auto;
}

.banner_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.banner_cont h5 {
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  font-family: sans-serif;
  font-weight: 500;
}

.banner_cont .double_button {
  justify-content: flex-start;
}

.banner_cont h3 {
  font-family: var(--f2);
  color: #fff;
  font-weight: 500;
  font-size: 65px;
  text-transform: capitalize;
  line-height: 1.1;
  text-shadow: 6px 0px #2B1812;
}

.banner_cont p {
  font-family: sans-serif;
  color: #fff;
  font-size: 18px;
}

.banner_cont .themebtn.trans {
  border: 2px solid #fff;
  color: #fff;
}

.testimonials {
  background: url(../images/testi-back.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 70px 0px;
  height: auto;
}

.section_title h5 {
  font-weight: 500;
  font-family: sans-serif;
  font-size: 18px;
  position: relative;
  width: fit-content;
  color: #fff;
}

.section_title h3 {
  font-family: var(--f2);
  text-transform: capitalize;
  font-size: 42px;
  color: #fff;
}

.section_title h5::before {
  position: absolute;
  content: '';
  background: url(../images/head-bef.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 175px;
  height: 60px;
  top: -18px;
  right: -190px;
}

.main_head_inner .themebtn:hover {
  box-shadow: 0px 0px 0px 2px #2B1812;
  color: #2B1812;
}

.author_cont .themebtn:hover {
  box-shadow: 0 0 0 2px #2B1812;
  color: #2B1812;
}

.footer_links ul li a:hover {
  transform: translateX(10px);
}

.banner_cont h5::before {
  position: absolute;
  content: '';
  background: url(../images/head-bef.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 175px;
  height: 60px;
  top: -18px;
  right: -190px;
}

.testi_img {
  width: 420px;
  height: 400px;
  overflow: hidden;
  margin: 0 auto;
}

.testi_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main_testi {
  background: url(../images/testi-main-back.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 515px;
  padding: 50px;
  position: relative;
}

.testi_cont ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin: 0px 0 12px !important;
}

.testi_cont ul li {
  color: #fdca42;
  font-size: 18px;
}

.testi_cont p {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 17px;
  width: 90%;
  margin: 0 0 34px;
}

.testi_cont h3 {
  font-family: var(--f2);
  font-weight: 500;
  font-size: 35px;
}

.testi_cont ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
  margin: 0px 0 12px !important;
}

.testi_cont ul li {
  color: #fdca42;
  font-size: 18px;
}

.testi_cont p {
  font-family: sans-serif;
  font-weight: 500;
  font-size: 17px;
  width: 90%;
  margin: 0 0 34px;
}

.testi_cont h3 {
  font-family: var(--f2);
  font-weight: 500;
  font-size: 35px;
}

.main_testi::before {
  position: absolute;
  content: '';
  background: url(../images/testi-object.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 175px;
  height: 175px;
  bottom: 20px;
  right: 75px;
}

.main_testi::after {
  position: absolute;
  content: '';
  background: url(../images/testi-vect.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 45px;
  height: 55px;
  top: 30px;
  right: 70px;
}

.testi_slider .slick-arrow {
  top: -25%;
  transform: translateY(50%);
  right: 40px;
  background: none !important;
}

.testi_slider .slick-prev {
  right: 10%;
}

.testi_slider .slick-prev:before {
  position: absolute;
  content: "\e9b4";
  font-family: 'boxicons';
  color: #fff;
  font-size: 28px;
}

.testi_slider .slick-next:before {
  position: absolute;
  content: "\e9b4";
  font-family: 'boxicons';
  transform: rotate(180deg);
  color: #fff;
  font-size: 28px;
}

.themebtn.trans:hover {
  background: #2b1812;
  border-color: transparent !important;
}

.section_title--middel h5 {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-family: 'Poppins';
  text-transform: uppercase;
  font-size: 20px;
  margin: 0;
}

.line {
  width: 230px;
  height: 26px;
  filter: invert(1);
}

.lineleft {
  transform: rotate(180deg);
}

.section_title--middel h3 {
  font-size: 55px;
  font-family: var(--f2);
  margin: 10px 0 0;
}

.JourneyCrd {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px;
  position: relative;
}

.JournyImg {
  width: 43%;
  position: relative;
  height: 292.6px;
  margin-right: 30px;
}

.journyCont {
  width: 70%;
  padding: 25px;
  border: 1px solid #4444;
  position: relative;
  z-index: 9;
  background: #fff;
}

.contTop {
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2b1812;
  width: fit-content;
  position: relative;
  padding: 0 0 13px;
}

.contTop i {
  font-size: 21px;
}

.contTop:before {
  position: absolute;
  width: 150px;
  height: 5px;
  background: #2b1812;
  content: '';
  bottom: 0;
  border-radius: 0 20px 20px 0px;
  left: -26px;
}

.journyCont h5 {
  font-size: 24px;
  font-family: var(--f2);
  margin: 10px 0;
}

.journeyBot {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 20px 0 0;
}

.price {
  font-size: 20px;
  color: #000;
  font-weight: 400;
}

ul.ratting {
  display: flex;
  align-items: center;
  gap: 3px;
}

.ratting li {
  color: #FDCD37;
}

.rattingMain p {
  margin: 0;
  font-size: 14px;
  color: #444;
}

.journeyBtns {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 30px 0 0;
}



.journeySlider .slick-list {
  padding: 45px 0px;
}

.themebtn.trans img {
  height: 22px;
}

.journeyBtns .themebtn.trans {
  background: transparent;
}


.journeySlider {
  margin: 40px 0 0;
}

.journey {
  padding: 70px 0;
  position: relative;
}

.journeyBtns .themebtn {
  font-size: 14px;
}

.JournyImg img {
  scale: 1;
}

.JourneyCrd:before {
  position: absolute;
  width: 52%;
  height: 100%;
  content: '';
  background: #EDECEB;
  left: 10px;
  border: 1px solid #4444;
}

.JourneyCrd:after {
  position: absolute;
  width: 52%;
  height: 100%;
  content: '';
  background: #2b1812;
  left: 0;
  z-index: -1;
  top: -10px;
}

.flower {
  position: absolute;
  bottom: 30px;
  right: -60px;
  width: 150px;
  aspect-ratio: 1/1;
  animation: spin 10s linear infinite;
}

.journeyBtns .themebtn:hover {
  color: #2b1812;
  border-color: #2b1812;
}

.topLEft {
  display: flex;
  align-items: center;
  gap: 5px;
}

.topLEft p {
  margin: 0;
  font-size: 12px;
}

.mediaTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid #4444;
  margin: 0 0 10px;
}

.topRight {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topRight a {
  color: #000 !important;
}

.mediaContent {
  padding: 10px 10px;
}

.mediaCrd {
  box-shadow: 0 0 15px 1px #4444;
}

.mediaContent h5 {
  font-size: 18px;
  margin: 0 0 10px;
}

.mediaContent>p {
  font-size: 14px;
  line-height: 24px;
}

.mediaContent>a {
  text-decoration: underline !important;
  color: #000;
  font-size: 14px;
}

.mainMediaCrds {
  margin: 40px 0 0;
}

.media {
  padding: 70px 0;
}

.mediaBtn {
  margin: 40px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mediaBtn a:hover {
  border-color: #2b1812;
  color: #2b1812;
}

.mediaImg {
  width: 100%;
  height: 200px;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 70px 0;
}

.contactBg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.contactMAinFromm {
  background: #fff;
  padding: 40px;
  position: relative;
}

.contactMAinFromm h5 {
  font-family: var(--f2);
  font-size: 50px;
  text-align: center;
  color: #000;
  margin: 0 auto 20px;
  width: 391px;
}

.contfeild :is(input, textarea) {
  width: 100%;
  padding: 10px;
  border: none;
  border-bottom: 1px solid #000;
  outline: none;
  font-size: 14px;
}

.contfeild {
  margin: 0 0 20px;
}

.contfeild textarea {
  height: 200px;
}

.tape {
  position: absolute;
  width: 100px;
  aspect-ratio: 1/1;
}

.contFlowerImg {
  position: absolute;
}

.tape.--top {
  top: -25px;
  right: -25px;
}

.tape.--bottom {
  left: -25px;
  bottom: -25px;
}

.contFlowerImg {
  width: 70px;
  top: 20px;
  left: 20px;
  animation: spin 10s linear infinite;
}

.contBtn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid #fff;
  border-radius: 50px;
  width: 100%;
  margin: 10px 0;
}

.contBtnImg {
  width: 60px;
}

a.contBtn p {
  color: #fff;
  font-size: 14px;
  margin: 0;
}

a.contBtn p span {
  display: block;
  font-size: 12px;
  color: #ffffffb8;
  margin: 0 0 3px;
}

.contactmainBtns {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contBtn--alt {
  margin: 0;
  display: grid;
  padding: 30px;
}

.contactBTns {
  width: 50%;
}

.map {
  width: 100%;
  height: 295px;
  border-radius: 10px;
  overflow: hidden;
}

.innerBanner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: relative;
  padding: 180px 0;
}

.innerBannerImg {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  z-index: -1;
}

.innerBAnnerContent h1 {
  font-size: 60px;
  font-family: var(--f1);
  color: #fff;
  text-align: left;
}

.botContent p {
  width: 100%;
}

.banner.--inner {
  padding: 113px 0
}

.InnerbannerBooks {
  width: 550px;
  margin: 40px 0 0
}

.bookcrdImg {
  width: 100%;
  height: 320px;
  padding: 30px;
  border: 1px solid var(--c1)
}

.bookCrd {
  width: 100%;
  margin: 0 0 20px
}

.cardConetent {
  text-align: center;
  padding: 20px 0;
  background: var(--c2);
  transition: 300ms all
}

.cardConetent p {
  font-size: 14px;
  margin: 0 0 10px;
  color: #fff
}

.cardConetent h6 {
  font-size: 18px;
  color: #fff;
  font-family: var(--f2)
}

.ratting {
  display: flex;
  justify-content: center;
  margin: 5px 0 !important;
  gap: 8px
}

.ratting li {
  font-size: 18px;
  color: var(--c1);
  transition: 300ms all
}

.price {
  font-size: 20px;
  margin: 0 0 5px;
  color: #fff
}

.bookcrdBtn {
  font-size: 14px;
  color: #fff;
  text-decoration: underline !important
}

.bookCrd:hover .cardConetent {
  background: var(--c1)
}

.bookCrd:hover .ratting li {
  color: #D77118
}

.ourBooks {
  padding: 70px 0
}

.qttyBox {
  display: inline-flex;
  align-items: center;
  margin: 10px 0 0;
  background: var(--c1);
  padding: 10px;
  color: #fff;
  border-radius: 10px;
}

.qttyBox .label {
  font-size: 14px;
  margin-right: 15px
}

.controls {
  display: flex;
  align-items: center;
  gap: 8px
}

.qty-btn {
  background: #fff0;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  padding: 0 5px
}

.qty {
  font-size: 16px;
  min-width: 12px;
  text-align: center
}

.detailCont {
  font-size: 14px;
  margin: 10px 0
}

.priceDetail {
  font-size: 30px;
  font-family: var(--f1);
  font-weight: 700;
  color: var(--c1);
  display: flex;
  align-items: center;
  gap: 10px
}

.priceDetail span {
  font-size: 16px;
  color: #444;
  font-weight: 700;
  text-decoration: line-through !important
}

.detailContent .ratting {
  justify-content: flex-start;
  margin: 0 !important
}

.detailContent h2 {
  font-size: 42px;
  font-family: 'Montserrat';
  font-weight: 600;
  color: #000;
  margin: 0 0 7px
}

.detailContent h2 span {
  font-family: 'Montserrat';
  font-weight: 600;
  color: var(--c1)
}

.detailTags {
  display: flex;
  align-items: center;
  gap: 60px;
  margin: 30px 0 60px
}

.detailTag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-family: var(--f3);
}

.detailTag span {
  font-weight: 700;
  color: #000;
  font-family: var(--f1);
}

.bookSlideImg {
  width: 100%;
  height: 490px;
  padding: 50px;
  background: #c3c3c35e;
}

.innerbookSlideImg {
  padding: 18px;
  width: 100%;
  height: 140px;
  background: #c3c3c35e;
}

.InnerbookSlider {
  margin: 30px 0 0
}

.formFeild :is(input, textarea) {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid #0000008f
}

.formFeild {
  margin: 9px 0
}

.formFeild textarea {
  height: 200px;
  border-radius: 10px;
}

.reviewBox {
  padding: 40px;
  border: 1px solid #00000080;
  border-radius: 20px;
  margin: 50px 0 0 !important;
}

.reviewHead {
  font-size: 20px;
  margin: 0 0 10px;
  font-family: var(--f2);
  font-weight: 600;
  color: #000
}

.reviewBot .ratting {
  justify-content: flex-start
}

.reviewBot {
  margin: 20px 0 0
}

.bookDetail {
  padding: 70px 0
}
.reviewBox {
    margin: 40px   0 0;
}

.innerbookItem {
    cursor: pointer;
}


/* cart page css start */
.cart_box p {
  font-size: 17px;
  font-family: var(--f3);
  color: #ffffff;
  font-weight: 500;
}

.price h5 {
  font-size: 17px;
  text-transform: capitalize;
  font-weight: 600;
  font-family: var(--f3);
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.box_heading h3 {
  font-size: 40px;
  margin-bottom: 36px;
  font-weight: 300;
  text-transform: uppercase;
  font-family: var(--f2);
  color: #ffffff;
  text-align: center;
}

.cart_box {
  padding: 48px 53px;
  width: 100%;
  background: var(--c1);
}

section.cart_product {
  padding: 70px 0px;
  border-bottom: 1px solid #e3e3e3;
}


td.cart_img {
  width: 40%;
  text-align: left;
}

.cart_pro_img {
  display: flex;
  align-items: center;
  padding-right: 0;
  gap: 9px;
}

.cart-icons input {
  border: none;
  width: 50%;
  text-align: center;
  outline: 0;
  height: 100%;
  /* border-top: 1px solid #d9d9d9; */
  /* border-bottom: 1px solid #d9d9d9; */
  padding: 3px 0px;
}

.cart-icons button {
  border: none;
  background: transparent;
  width: 20px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
}

.cart-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  width: 51%;
}

tr.cart_data td p {
  color: #000;
  font-size: 17px;
  font-family: var(--f3);
  font-weight: 400;
  margin: 0;
  color: #8B8B8B;
}

td.cart_img {
  width: 40%;
  text-align: left;
}

tr.cart_headings th h5 {
  font-size: 17px;
  font-weight: 600;
  font-family: var(--f1);
  text-transform: capitalize;
  margin: 0;
  padding: 16px 0px;
  color: #fff;
}

tr.cart_headings th {
  width: 20%;
}

.cart_table {
  height: auto;
  overflow: auto;
  margin-bottom: 20px;
}

.cart_pro_img h5 {
  font-weight: 400;
  font-size: 15px;
  font-family: var(--f3);
  text-transform: uppercase;
  width: 100%;
  color: #8B8B8B;
  margin: 0;
}

.shop_btn a i {
  font-size: 23px;
}

.shop_btn a {
  margin-top: 31px;
  color: #fff;
  font-size: 13px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 10px;
  width: fit-content;
}

.cart_btns input {
  width: 28%;
  padding: 9px;
  border-radius: 50px;
  border: none;
  border: 1px solid gray;
  outline: 0;
}

.cart_btns {
  display: flex;
  align-items: center;
  gap: 30px;
}

.shop_btn a i {
  font-size: 23px;
}

.cart_btns a {
  font-weight: 200;
  background: var(--c3);
}

.cart_btns a:hover {
  color: var(--c3);
  border-color: var(--c3);
}

tr.cart_data {
  height: 98px;
  border-bottom: 1px solid lightgray;
}

.cart_btn {
  text-align: -webkit-center;
  margin-top: 27px;
}

.cart_btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 400;
  padding: 9px 30px;
  border-radius: 10px;
  box-shadow: 0px 0px 2px 2px var(--c1);
  background: var(--c2);
}

.inner_banner_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.inner_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.inner_banner {
  width: 100%;
  height: 100%;
  min-height: 45vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

h3.inner_banner_cont {
  position: relative;
  font-size: 49px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.cart_pro_img img {
  width: 75px;
  height: auto;
  object-fit: contain;
}

.cart_pro_img img {
  width: 13%;
}

tr.cart_headings th:nth-child(1) h5 {
  margin-left: 35px;
}

select.shipp {
  border: 0 !important;
  font-size: 20px;
  background: transparent;
  outline: 0;
}

select.shipp option {
  font-size: 14px;
  font-family: var(--f2);
}

.rate {
  font-size: 14px !important;
  font-family: var(--f3) !important;
  margin-top: 10px;
}

.rate span {
  display: block;
}

.shop_btn {
  display: flex;
  align-items: center;
  gap: 40px;
}

.shop_btn .coupen {
  font-size: 14px;
  color: #000;
  font-family: var(--f3);
  border: 1px solid var(--c2);
  padding: 10px 20px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 220px;
}

.goshiping {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 16px;
  color: #000;
  margin-top: 20px;
}

.goshiping i {
  font-size: 20px;
}


tr.cart_headings {
  padding: 10px 10px;
  background: var(--c1);
}

.sub_total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sub_total a {
  font-size: 24px;
  color: #000;
}

.sub_total a:hover {
  color: var(--c2);
}

.cart_pro_img a i {
  font-size: 28px;
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sub_total p {
  color: #000 !important;
}


/* cart page css end */


/* check out css start*/

section.my-cart {
  margin: 50px 0;
}

.my-cart-box h3 {
  font-size: 32px;
  font-family: var(--f2);
  text-transform: uppercase;
  color: #000;
}

.order-detail-box-item {
  display: flex;
  margin: 20px 0;
}

.order-detail-line {
  flex: 0 0 50%;
  max-width: 50%;
}

.order-detail-line h4 {
  font-size: 20px;
}

.order-detail-line {
  flex: 0 0 50%;
  max-width: 50%;
}

.order-detail-line h4 {
  font-size: 19px;
  color: #000;
  font-weight: 500;
}

.order-detail-line p {
  font-size: 15px;
}

form.payment {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 30px;
  margin-top: 30px;
}

form.payment label {
  font-size: 21px;
  font-weight: 500;
  margin-left: 10px;
}

.payment-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
  width: 91%;
  margin: 30px auto;
}

.pay-card-item-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.pay-card-item img {
  width: 100px;
}

.order-detail-line h5 {
  font-size: 17px;
  font-weight: 400;
}

.check-out-btn {
  text-align: right;
  margin: 17px 0px;
}

hr.hr {
  height: 1px;
  background: #000;
}


.order-grand-total {
  display: flex;
  align-items: center;
}

.order-detail-line h4 span {
  color: #959595;
}

h4.total {
  color: #959595;
  font-family: var(--f4);
  font-weight: 600;
}

.my-cart-box h3 span {
  color: #959595;
  font-size: 21px;
  font-family: var(--f4);
  font-weight: 600;
}

.peyment_radio {
  margin-bottom: 30px;
}

.Payment_method form {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.peyment_radio label {
  font-family: var(--f1);
  font-size: 16px;
}


/* check out css end*/



.form_field {
    display: flex;
    align-items: center;
    box-shadow: 0px 0px 1px 1px #7b7b7b;
    border-radius: 4px;
    margin-bottom: 15px;
    padding: 0px 16px;
}

.form_field input {
    width: 100%;
    height: 46px;
    background: transparent;
    border: none;
    outline: 0;
}

.login_sec {
    padding: 70px 0px;
}

.login_form {
    padding: 70px 60px;
    box-shadow: 0px 17px 30px 0px #cbcbcb;
    border-radius: 12px;
}

.form_field a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    color: var(--c1);
}

h3.form_title {
    text-align: center;
    font-size: 50px;
    font-family: var(--f2);
    text-transform: uppercase;
    margin-bottom: 50px;
}

.login_form button {
    width: 100%;
    text-align: center;
    border: none;
    justify-content: center;
    font-size: 16px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.login_form form p {
    margin: 0;
    text-align: center;
    font-size: 15px;
}

.login_form form p a {
    font-weight: bold;
}

.login_form form p a:hover {
    color: var(--c2);
}

.form-group label {
    font-size: 16px;
    font-family: var(--f1);
    text-transform: capitalize;
    margin-bottom: 10px;
}


.login_bottom{
  margin-bottom: 6rem;
}

.mb-3rem {
    margin-bottom: 3rem;
}



.mediaCrd {
    margin-bottom: 30px;
}

.blog_det_img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.blog_detail {
    padding: 70px 0px;
    border-bottom: 1px solid #dddddd;
}

.bloge_dtae {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid;
    padding: 5px 0px;
    margin-bottom: 20px;
}

.bloge_dtae p {
    margin: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-family: var(--f3);
    font-weight: 500;
}

.bloge_dtae p i {
    font-size: 20px;
}

.date_cont {
    display: flex;
    align-items: center;
    gap: 14px;
}

.date_cont a {
    font-size: 21px;
    color: #000;
}

.blogr_detail_cont h3 {
    font-size: 50px;
    font-family: var(--f2);
    margin-bottom: 13px;
}

.blogr_detail_cont p {
    font-size: 15px;
    margin-bottom: 13px;
}