/* @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&family=Quattrocento:wght@400;700&display=swap'); */

@font-face {
  font-family: 'Selna Regular';
  src: url('../fonts/Selna Regular.otf') format('opentype');
}

@font-face {
  font-family: 'Selna Oblique';
  src: url('../fonts/Selna Oblique.otf') format('opentype');
}

@font-face {
  font-family: 'Selna ObliqueOutline';
  src: url('../fonts/Selna ObliqueOutline.otf') format('opentype');
}

@font-face {
  font-family: 'Selna Outline';
  src: url('../fonts/Selna Outline.otf') format('opentype');
}

body {
  box-sizing: border-box;
  font-family: "Selna Regular", sans-serif;
  margin: 0px;
  padding: 0px;
}
body::-webkit-scrollbar {
  width: 0.3em;
}
body::-webkit-scrollbar-track {
  box-shadow: inset 0 0 3px #999;
}
body::-webkit-scrollbar-thumb {
  background-color: var(--secondary-color);
  outline: 1px solid var(--secondary-color);
}
html {
  scroll-behavior: smooth;
}
:root {
  --primary-color: #343516;
  --secondary-color:#b88e61;
  --dark-color:#55422e
}
*,
*::after,
*::before,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
  padding: 0;
}
p {
  font-size: 15px;
  color: #000;
}
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}
a,
button {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}
a:hover {
  text-decoration: none;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
a:hover {
  outline: none;
  box-shadow: none;
}
section {
  padding: 90px 0 90px;
}
.inlineHeader {
  display: flex;
  padding: 0px 0;
  align-items: center;
}
.large_heading {
  font-size: clamp(4rem, 5vw, 5.5rem);
}
.heading {
  font-size: clamp(1.4rem, 2.8vw, 3rem);
}
.sub_heading {
  font-size: clamp(1.2rem, 2vw, 2.2rem);
}
.heading2{
  font-size: clamp(1.4rem, 2.8vw, 2.7rem);
}
.small_heading {
  font-size: clamp(1rem, 1.5vw, 1.7rem)
}
.title {
  font-size: 18px;
}
.fontWeight300 {
  font-weight: 300;
}
.fontWeight400 {
  font-weight: 400;
}
.fontWeight500 {
  font-weight: 500;
}
.fontWeight600 {
  font-weight: 600;
}
.fontWeight700 {
  font-weight: 700;
}
.fontWeight800 {
  font-weight: 800;
}
.fontWeight900 {
  font-weight: 900;
}
@-webkit-keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
  100% {
    margin-top: 0;
  }
}
@keyframes menu_sticky {
  0% {
    margin-top: -150px;
  }
  50% {
    margin-top: -130px;
  }
}
h1,
h2,
h3,
h4,
h5,
h6,
.fontHeading{
  font-family: "Selna Oblique", sans-serif;
}
.text_secondary{
  color: var(--secondary-color);
}
.text_primary{
  color: var(--primary-color);
}
.bgPrimary{
  background: var(--primary-color);
}
.bgSecondary{
  background: var(--secondary-color);
}
.leftLogo{
  width: 80px;
}
.leftLogo img{
  max-width: 100%;
}
.centerMenu ul{
  display: flex;
}
.centerMenu ul li a{
  display: inline-block;
  padding: 15px 25px;
  margin: 0 25px;
  font-size: clamp(.7rem, 1vw, 1rem);
  color: #fff;
  position: relative;
  text-transform: uppercase;
}
.centerMenu ul li a:after{
  content: '';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: url('../images/icons/menu-icon.svg') no-repeat;
  background-size: 100%;
}
.centerMenu ul li.active a:after, .centerMenu ul li:hover a:after{
   background: url('../images/icons/active-menu.svg') no-repeat;
  background-size: 100%;
}
.centerMenu{
  margin-left: 1vw;
}
.heroInner{
  border:1px solid var(--secondary-color);
}
.heroInner img{
  width: 100%;
}
.heroSlider{
  border-bottom:1px solid var(--secondary-color);
  padding-bottom: 2rem !important;
  margin-bottom:2rem;
}
.header{
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  z-index: 9;
  transition: all 0.5s linear;
  -webkit-transition: all 0.5s linear;
  -moz-transition: all 0.5s linear;
  -ms-transition: all 0.5s linear;
  -o-transition: all 0.5s linear;
}
.innerHeader{
  background: #493B3B;
  padding: 0;
  padding-left: 7vw;
  height: 100vh;
  display: flex;
  align-items: center;
}
.btnMenu{
  width: 70px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  right: 100%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.btnMenu img{
  max-width: 100%;
}
.openMenu{
  display: none;
}
.header.active{
  right: 0;
}
.header.active .btnMenu{
  right: auto;
  left: 0;
}
.header.active .btnMenu .openMenu{
  display: block;
}
.header.active .btnMenu .closeMenu{
  display: none;
}
.heroBanner{
  background: url('../images/bg/banner.jpg');
  background-repeat:repeat ;
  height: 100vh;
  display: flex;
  align-items: center;
}
.leftHeroLogo{
  width: 230px;
  position: absolute;
  top: 5vh;
}
.leftHeroLogo img{
  max-width: 100%;
}
.text_dark{
  color: var(--dark-color);
}
.bannerText{
  display: flex;
  justify-content: center;
  margin-top: 8vh;
}
.centerBanner{
  width: 15vw;
}
.centerBanner img{
  max-width: 100%;
}
.rightSimple{
  position: relative;
  top: 19vh;
}
.lineShape{
  position: absolute;
  top: 54%;
  left:0;
  width: 0;
  height: 2px;
  transform: translateY(-50%);
  background: var(--secondary-color);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  opacity: 1;
  transition: none;
}
.zoomIn{
  transform: scale(0) translateX(-60%);
  -webkit-transform: scale(0) translateX(-60%);
  -moz-transform: scale(0) translateX(-60%);
  -ms-transform: scale(0) translateX(-60%);
  -o-transform: scale(0) translateX(-60%);
  transition: all 0.5s ease-in-out;
  transition-delay: .7s;
  opacity: 0;
}
.animateItem{
  transform: translateX(-100vw);
  -webkit-transform: translateX(-100vw);
  -moz-transform: translateX(-100vw);
  -ms-transform: translateX(-100vw);
  -o-transform: translateX(-100vw);
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
}
.animateItem:nth-child(1){
  transition-delay: 1s;
}
.animateItem:nth-child(2){
  transition-delay: 0.5s;
}
.animateItem:nth-child(3){
  transition-delay: 0.1s;
}
.bannerText.active .animateItem{
  transform: translateX(0);
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
}
.active .lineShape{
  width: 41.5%;
  transition-delay: .7s;

}
.active .zoomIn{
  transform: scale(1) translateX(0);
  -webkit-transform: scale(1) translateX(0);
  -moz-transform: scale(1) translateX(0);
  -ms-transform: scale(1) translateX(0);
  -o-transform: scale(1) translateX(0);
  opacity: 1;
}
/* @keyframes rotate {
  from{
    transform: rotate(0);
    -webkit-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
}
to{
    transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
  }
} */
.rightImg img{
  max-width: 100%;
}
.leftManisha{
  padding: 10vh 0 0 0;
}
.extraLarge{
  font-size: clamp(177px, calc(177px + (103 * ((100vw - 1440px) / 160))), 206px);
  color: #d7b18d;
  opacity: .3;
}
.textManisha{
  font-size: clamp(1rem, 3.9vw, 3.9rem);
  position: relative;
  z-index: 2;
  left: 8%;
  text-align: center;
  top: 15px;
}

.leftLogoLine{
  margin-top: -100px;
}
.lineLogo{
  width: 8.9vw;
  position: relative;
  left: 0;
  margin-top: -15px;
  overflow: hidden;
}
.lineLogo img{
  width: 100%;
}
.lineShape2{
  width: 0;
  height: 2px;
  background: #E3D9C8;
  right: -20%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
   transition: width 0.3s ease;
}
.liner{
  position: absolute;
  top: 84%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  width: 100%;
}
.overFrame{
  position: relative;
  z-index: 2;
  transition: all 0.3s ease-in-out;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
}
.overFrame.active{
  margin-top: -60%;
}
.sectionBg{
  background: #e3d9c8;
}
.textBrown{
  color: #615550;
}
.centerLogo img{
  width: 90px;
  background: #E3D9C8;
}
.centerLogo{
  position: relative;
  z-index: 1;
}
.centerLogo:before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0%;
  height: 2px;
  background: var(--secondary-color);
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transition: width 0.7s ease-in-out;
  -webkit-transition: width 0.7s ease-in-out;
  -moz-transition: width 0.7s ease-in-out;
  -ms-transition: width 0.7s ease-in-out;
  -o-transition: width 0.7s ease-in-out;
  z-index: -1;
}
.centerLogo.active:before{
  width: 100%;
}
.spaceTop{
  margin-top: 4rem;
}
.iconCenter{
  width: 20px;
  height: 20px;
  border-radius: 1px;
  -webkit-border-radius: 1px;
  -moz-border-radius: 1px;
  -ms-border-radius: 1px;
  -o-border-radius: 1px;
  background: var(--secondary-color);
  margin: 0 auto;
  transform:rotate(45deg);
  -webkit-transform:rotate(45deg);
  -moz-transform:rotate(45deg);
  -ms-transform:rotate(45deg);
  -o-transform:rotate(45deg);
}
.testimonial img{
  max-width: 100%;
}
.iconQoute{
  width: 125px;
  margin: 0 auto;
}
.bgBook{
  background: #7c6f3b;
  position: relative;
  z-index: 1;
}
.bookBox{
  box-shadow: 83px 0px 84px #7c6f3b;
  background: #fff;
}
.leftBook{
  position: absolute;
  top: 47%;
  transform: translateY(-50%);
  left: 110px;
  z-index: 2;
  width: 350px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  pointer-events: auto;
}
.leftBook h3{
  font-size: calc(4rem + 2.2vw);
  font-family: 'Selna Regular', sans-serif;
  line-height: 85px;
  padding: 9px 0;
}
.btnTheme{
  background: #000;
  padding: 20px 60px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  color: #fff;
  display: inline-block;
  font-size: 22px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.leftBook h3{
  background-image:url(../images/bg/pattern-bg.svg);
  background-size: cover;
  background-position: center;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  padding: 9px 0;
}
.pointerEvents{
  pointer-events: none;
}
.bgBook:before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 100%;
  background: url('../images/bg/book-icon.png') no-repeat;
  background-size: cover;
  z-index: -1;
}
.footer{
  background: var(--primary-color);
  padding: 50px 0;
  padding-bottom: 30px;
}
.footerLogo{
  width: 300px;
  margin: 0 auto;
}
.footerLogo img{
  max-width: 100%;
}
.footerText{
  color: #eee9d6;
}
.itemFooter{
  display: flex;
  height: 190px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.itemFooter a i{
  font-size: 70px;
  color: #cfc1a7;
}
.itemFooter p{
  color: #cfc1a7;
  font-size: 18px;
  margin-top: 20px;
}
.footerMenu{
  display: flex;
  margin-top: 40px;
  justify-content: space-between;
}
.footerMenu ul.leftFooter{
  display: flex;
}
.footerMenu ul.leftFooter li a{
  display: inline-block;
  font-size: 15px;
  padding: 0 3rem;
  color:#cfc1a7 ;
}
.footerMenu ul.leftFooter li {
    display: inline-block;
    font-size: 15px;
    color: rgb(207, 193, 167);
}
.footerMenu ul.leftFooter li a:first-child{
  padding-left: 0;
}
.rightFooter li{
  color:#cfc1a7;
  font-size: 18px;
}
.heroSlider .item{
  padding: 0px 5px;
}
.cursor {
  position: fixed;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 15px solid #000;
  transition: transform 0.3s ease;
  transform-origin: center center;
  pointer-events: none;
  z-index: 1000;
  top:50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
.cursor.active {
  transform:translate(-50%, -50%) scale(2);
  background: white;
  mix-blend-mode: exclusion;
  border: none;
  -webkit-transform:translate(-50%, -50%) scale(2);
  -moz-transform:translate(-50%, -50%) scale(2);
  -ms-transform:translate(-50%, -50%) scale(2);
  -o-transform:translate(-50%, -50%) scale(2);
}
.cursor.blend{
  background: white;
  mix-blend-mode: exclusion; 
  border:none;
}
.authorBg{
  background: #cfc1a7;
  padding-top: 180px;
  padding-bottom: 100px;
}
.autherBanner{
  display: flex;
  justify-content: center;
  gap: 10px;
}
.itemAbout img{
  width: 100%;
}
.itemAbout{
  position: relative;
  z-index: 1;
}
.itemAbout:nth-child(1) img{
  transform: translateY(120px);
  -webkit-transform: translateY(120px);
  -moz-transform: translateY(120px);
  -ms-transform: translateY(120px);
  -o-transform: translateY(120px);
}
.itemAbout:nth-child(2) img{
  transform: translateY(200px);
  -webkit-transform: translateY(200px);
  -moz-transform: translateY(200px);
  -ms-transform: translateY(200px);
  -o-transform: translateY(200px);
}
.itemAbout:nth-child(3) img{
  transform: translateY(0px);
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
}
.itemAbout:nth-child(4) img{
  transform: translateY(100px);
  -webkit-transform: translateY(100px);
  -moz-transform: translateY(100px);
  -ms-transform: translateY(100px);
  -o-transform: translateY(100px);
}
.itemAbout:nth-child(5) img{
  transform: translateY(20vh);
  -webkit-transform: translateY(20vh);
  -moz-transform: translateY(20vh);
  -ms-transform: translateY(20vh);
  -o-transform: translateY(20vh);
}
.itemAbout h5{
  font-size: clamp(125px, calc(120px + (103 * ((100vw - 1440px) / 160))), 160px);
  position: absolute;
  color: var(--secondary-color);
  top:58%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}
 .textAuthor{
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  bottom: 0;
  font-size: 22px;
  text-transform: uppercase;
  color: #fff;
  font-style: italic;
}
.itemAbout:nth-child(1) .textAuthor{
  bottom: 10%;
}
.itemAbout:nth-child(2) .textAuthor{
  bottom: -6%;
}
.itemAbout:nth-child(3) .textAuthor{
  bottom: 3%;
}
.itemAbout:nth-child(4) .textAuthor{
  bottom: -8%;
}
.itemAbout:nth-child(5) .textAuthor{
  bottom: 10%;
}
.bgSec{
 background: #cfc1a7; 
}
.text_dark{
  color: #615550;
}
.significationBox{
  padding: 60px;
  background: url('../images/bg/box-bg.jpg');
  background-size: cover;
  border:2px solid #b88e61;
  margin-top: 100px;
  border-top: none;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 6px 16px 23px rgb(53 46 18 / 33%);
}
.brownLogo{
  width: 90px;
  margin: 0 auto;
  margin-top: -104px;
}
.mt-lg-6{
  margin-top: 4rem !important;
}
.mt-lg-7{
  margin-top: 4rem !important;
}
.significationBox p{
  margin-bottom: 30px;
}
.bookBoxInner p{
  margin-bottom: 20px;
}
.significationBox:before{
  content: '';
  position: absolute;
  top: 0;
  right:0;
  width: 42%;
  height: 2px;
  background: #b88e61;
}
.significationBox:after{
  content: '';
  position: absolute;
  top: 0;
  left:0;
  width: 42%;
  height: 2px;
  background: #b88e61;
}
.bgLight{
  background: #7c6f3b;
  padding-top: 300px;
  padding-bottom: 120px;
  margin-top: -100px;
  position: relative;
  z-index:1 ;
}
.bgLight:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 28%;
  height: 100%;
  background: url('../images/about-manisha.jpg') no-repeat;
  background-size: cover;
  z-index: -1;
  opacity: 40%;
  background-position-x: center;
}
.lightText{
  color: #cfc1a7;
}
.leftSinifcation p{
  font-size: 20px;
  margin-bottom: 20px;
}
.rightSignification{
  padding: 0px;
}
.rightSignification img{
  width: 100%;
}
.aboutBg{
  background: #e3d9c8;
}
.aboutFirst{
  padding: 200px 0 50px;
}
.item1 img{
  max-width: 100%;
}
.item1 h1{
  position: absolute;
  top: 0;
  left: -40%;
}
.leftColumn1{
  height: 100%;
} 
.leftColumn1 h1{
  position: relative;
  left: 37%;
  top: 6%;
}
.rightColumn2{
  height: 100%;
  display: flex;
  align-items: flex-end;
  position: relative;
  right: 36%;
  bottom: 0;
}
.boxBorder{
  border: 4px solid #7c6f3b;
  padding: 10px;
  position: relative;
}
.innerBox{
  padding: 70px;
  border: 1px solid #7c6f3b;
  text-align: center;
}
.innerBox .heading{
  font-size:clamp(1.4rem, 2.8vw, 2.7rem) ;
}
.centerLogoAbout{
  color: #7c6f3b;
  text-align: center;
  width: 130px;
  height: 80px;
  background: #e3d9c8;
  position: absolute;
  top: -46px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  z-index: 99;
}
.centerLogoAbout svg{
  max-width: 100%;
}
.centerLogoAbout svg .cls-1{
  fill: currentColor;
}
.leftLogoIconPage{
  width: 22%;

}
.leftLogoIconPage img{
  width: 100%;
}
.leftLogoIconPage{
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.spaceBlank{
  height: 90px;
}
.centerTextNew .small_heading{
  font-size: clamp(1rem, 1.3vw, 1.7rem);
}
.textColor{
  color: #7c6f3b;
}
.rightLogoIconPage{
  width: 22%;

}
.rightLogoIconPage img{
  width: 100%;
}
.rightLogoIconPage{
  position: absolute;
  top: 35%;
  right: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.signImg {
  margin-top: -20px;
}
.bottomFooter{
  width: 133px;
}
.bottomFooter img{
  max-width: 100%;
}
.height1{
  height: 65vh;
}
.height1 img, .height2 img{
  height: 100%;
  object-fit: cover;
}
.height2{
  height: 32vh;
}
.heroInner{
  height: 100%;
}
.twoColumn{
  width: calc(100% / 2);
}
.w-70{
  width: 70%;
}
.w-30{
  width: 30%;
}
.w-60{
  width: 70%;
}
.w-40{
  width: 30%;
}
.bgImg{
  background: url(../images/bg/about-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 300px;
  padding-bottom: 120px;
  margin-top: -100px;
  position: relative;
  z-index:1 ;
}
.shadowImg{
  box-shadow: 120px 130px 128px rgb(57 48 14 / 60%);
}
.aboutBook{
  background: url(../images/bg/bg-book.jpg) no-repeat;
}
.bookBannertext{
  padding-top: 29vh;
}
.bookBoxInner{
  box-shadow:-59px 51px 73px rgb(14 13 6 / 47%);
}
.bookBoxInner .small_heading2{
  font-size: clamp(1rem, 1.5vw, 1.5rem);
}
.iconQoute2{
  width: 110px;
  margin: 5rem auto 2.5rem;
}
.iconQoute2 img{
  max-width: 100%;
}
.bookText{
  color: #eee9d6;
}
.innerHeadingBox{
  margin: 3rem 0;
}
.iconLine{
  margin-top: 1rem;
  position: relative;
}
.iconCenter{
  width: 15px;
  height: 15px;
  background: var(--secondary-color);
}
.iconLine:before{
  content: '';
  width: 47%;
  position: absolute;
  left: 0;
  top: 50%;
  height: 2px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: linear-gradient(to right,  rgba(0,0,0,0) 0%,rgba(184,142,97,1) 100%);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.iconLine:after{
  content: '';
  width: 47%;
  position: absolute;
  right: 0;
  top: 50%;
  height: 2px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background: linear-gradient(to right,  rgba(184,142,97,1) 0%,rgba(0,0,0,0) 100%);
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
}
.boxLogo{
  margin-top: 3rem;
}
.boxLogo img{
  max-width: 100%;
}
.edition img{
  max-width: 100%;
}
.rightImgManisha{
  position: relative;
  z-index: 1;
  height: 100vh;
}
.rightImgManisha:after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background: url(../images/manisha-right.jpg) no-repeat;
  background-size: cover;
}
.bookBoxInner{
  border:2px solid #b88e61;
  margin-top: -2px;
}
.bookBoxInner:after, .bookBoxInner:before{
  display: none;
}
.leftBookCover .heading2{
  font-size: clamp(1.4rem, 2.2vw, 2.2rem)
}
.leftBookCover{
  padding-top: 22%;
}
.pb-large{
  padding-bottom: 13rem;
}
.itemTestimonial{
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.itemTestimonial iframe{
  height: 500px;
  width: 100%;
  border:5px solid var(--primary-color);
  border-radius: 15px;
}
.testimonial iframe{
    height:360px;
}