* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #822D00;
    --green-color: #3DAD32;
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: "Poppins", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
}

.green-btn {
    color: var(--white-color);
    background-color: var(--green-color);
    padding: 15px 30px;
    border-radius: 100px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0px 0px 10px 0px #00000080;
}

.brown-btn {
    color: var(--white-color);
    background-color: var(--theme-color);
    padding: 12px 20px;
    border-radius: 100px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0px 0px 10px 0px #00000080;
    font-size: 14px;
}

.same-heading {
    color: var(--green-color);
    font-size: 42px;
    font-weight: 600;
}

/*top header start*/
.top-header {
    background-color: var(--theme-color);
    padding: 12px 0px;
    border-bottom: 1px solid var(--white-color);
}

.top-header-right ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.top-header-right ul li a {
    color: var(--white-color);
    font-size: 18px;
    text-decoration: none;
}

.top-header-left a {
    color: var(--white-color);
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
}

/*top header end*/

/* header start */
.header .nav-item .nav-link {
    color: var(--white-color);
    padding: 0px;
    font-size: 16px;
    font-weight: 600;
    transition: all ease 0.4s;
}

.header .nav-item .nav-link:hover {
    color: var(--green-color);
}

.header {
    background-color: var(--theme-color);
}

.header .navbar-nav {
    gap: 30px;
}

.header .navbar {
    padding: 0;
}

.header .navbar-brand {
    padding: 0;
}

/* header end */

/* home banner start */
.home-banner {
    background-image: url("../images/home-banner.png");
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 200px 0px;
    position: relative;
    z-index: 1;
}

.home-banner::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/banner-roots.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 168px;
}

.home-banner-right {
    display: flex;
    justify-content: flex-end;
}

.home-banner-content h1 {
    font-size: 50px;
    font-weight: 600;
    color: var(--white-color);
    margin-bottom: 20px;
}

.top-header-left {
    display: flex;
    justify-content: flex-start;
}

.home-banner-content p {
    color: var(--green-color);
    font-size: 16px;
    font-weight: 400;
}

.home-banner-btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* home banner end */

/* about sec start */
.about-sec {
    background-image: url("../images/about-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.about-content-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: left;
    margin-top: 40px;
}

.about-content p {
    line-height: 20px;
    color: var(--black-color);
    font-size: 16px;
    font-weight: 400;
}

.about-content h3 {
    color: var(--black-color);
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.about-content h2 {
    margin-bottom: 20px;
}

/* about sec end */

/* partner sec start */
.partner-sec {
    background-color: var(--green-color);
    padding: 14px 0px;
}

.partner-img img {
    width: 100%;
}

/* partner sec end */

/* about the book sec start */
.about-the-book {
    background-image: url("../images/about-the-book-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.about-the-book-image {
    text-align: end;
}

.about-the-book-content h2 {
    color: var(--white-color);
}

.about-the-book-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
}

.about-the-book-content p {
    color: var(--white-color);
}

.about-the-book-content h2 {
    margin-bottom: 40px;
}

/* about the book sec end */

/* about the brand sec start */
.about-brand-sec {
    background-image: url("../images/about-brand-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 170px 0px;
    position: relative;
    z-index: 1;
    margin-bottom: 160px;
}

.about-brand-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/banner-roots.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 168px;
    left: 0;
    bottom: -167px;
    transform: rotate(180deg);
}

.about-brand-content {
    text-align: center;
}

.about-brand-content h2 {
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 40px;
}

.about-brand-content p {
    color: var(--white-color);
    font-size: 18px;
    margin-bottom: 10px;
}

/* about the brand sec end */

/* video sec start */
.video-sec {
    height: 700px;
    background-color: var(--black-color);
    margin-top: 162px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-box {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* video sec end */

/* review sec end */
.review-sec {
    padding: 100px 0px;
}

.review-content {
    text-align: center;
    margin-bottom: 60px;
}

.review-slides .review-box {
    box-shadow: 0px 4px 4px 0px #00000040;
    background-color: var(--white-color);
    padding: 22px 50px;
    border-radius: 25px;
    margin: 5px;
}

.review-box-client-main {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 20px;
}

.review-box-client-main img {
    width: unset !important;
}

.review-box-client-main .review-box-client h4 {
    margin-bottom: 0px;
    font-size: 18px;
    font-weight: 600;
    color: var(--black-color);
}

.review-box-client-main .review-box-client span {
    color: var(--green-color);
    font-size: 14px;
    font-weight: 400;
}

.review-slides .review-box p {
    color: var(--black-color);
}

.review-slides .owl-nav {
    display: block !important;
}

.review-slides .owl-prev {
    background: var(--black-color) !important;
    width: 43px;
    height: 43px;
    border-radius: 100px !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    left: -660px;
    top: -140px;
}

.review-slides .owl-prev span {
    display: none;
}

.review-slides .owl-prev::before {
    content: "\f053";
    position: absolute;
    z-index: 0;
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    color: var(--white-color);
    top: 10px;
    left: 0;
    right: 0;
}


.review-slides .owl-next {
    background: var(--black-color) !important;
    width: 43px;
    height: 43px;
    border-radius: 100px !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 660px;
    top: -140px;
}

.review-slides .owl-next span {
    display: none;
}

.review-slides .owl-next::before {
    content: "\f054";
    position: absolute;
    z-index: 0;
    font-weight: 700;
    font-family: 'Font Awesome 5 Free';
    color: var(--white-color);
    top: 10px;
    left: 0;
    right: 0;
}

/* review sec end */

/* blog sec start */
.blogs-sec {
    padding-bottom: 100px;
}

.blog-content {
    text-align: center;
    margin-bottom: 60px;
}

.blog-box-top img {
    width: 100%;
}

.blog-box {
    border-radius: 40px;
    background-color: var(--white-color);
    box-shadow: 0px 0px 10px 0px #00000026;
    overflow: hidden;
}

.blog-box-content {
    padding: 40px;
}

.blog-box-content {
    text-align: center;
}

.blog-box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.blog-box-content h4 {
    color: var(--black-color);
    font-size: 36px;
}

.blog-box-top {
    position: relative;
}

.blog-box-top span {
    position: absolute;
    right: 20px;
    top: 20px;
    background-color: var(--green-color);
    padding: 7px 18px;
    border-radius: 100px;
    color: var(--white-color);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
}

.blog-more-btn {
    margin-top: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-more-btn a {
    border: 1px solid var(--green-color);
    color: var(--green-color);
    text-decoration: none;
    padding: 16px 30px;
    border-radius: 100px;
    font-weight: 600;
    text-transform: uppercase;
}

/* blog sec end */

/* form sec start */
.form-sec {
    background-image: url("../images/contact-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px 150px;
    position: relative;
    z-index: 1;
}

.form-sec-content-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    padding: 50px 0px;
    width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    gap: 20px;
}

.form-sec-content-box a {
    color: var(--black-color);
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.form-sec-content-box i {
    color: var(--green-color);
    font-size: 50px;
}

.form-sec-content form input {
    width: 800px;
    margin-bottom: 15px;
    height: 50px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-family: 'Poppins', sans-serif;
}

.form-sec-content form {
    margin-top: 20px;
    text-align: center;
}

.form-sec-content form textarea {
    width: 800px;
    margin-bottom: 15px;
    height: 126px;
    padding: 15px;
    border-radius: 10px;
    border: none;
    outline: none;
    resize: none;
    font-family: 'Poppins', sans-serif;
}

.form-sec-content form button {
    background-color: var(--green-color);
    color: var(--white-color);
    width: 800px;
    height: 50px;
    border-radius: 10px;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.form-sec-content form label {
    display: flex;
    align-items: baseline;
    width: 800px;
    margin: 0 auto;
    color: var(--white-color);
}

.form-sec-content form label input[type="checkbox"] {
    width: unset;
    height: unset;
    margin: 0;
}

.form-sec-content form label a {
    color: var(--white-color);
    text-decoration: underline;
}

.form-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background: #0000007a;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* form sec end */

/*footer sec start*/
.footer {
    background-image: url("../images/footer-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px 0px;
    position: relative;
}

.footer-logo {
    text-align: center;
}

.footer-link ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-top: 20px;
}

.footer-link ul li {
    margin-bottom: 10px;
}

.footer-link ul li a {
    color: var(--white-color);
    text-decoration: none;
}

.footer-link h3 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 500;
}

.footer-contact h3 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-contact ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
    margin-top: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-contact ul li a {
    color: var(--white-color);
    text-decoration: none;
    border: 1px solid #fff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
}

.footer-contact a {
    color: var(--white-color);
    text-decoration: none;
}

.copyright-content {
    padding: 20px 0px;
    border-top: 1px solid #A7A7A73B;
    margin-top: 60px;
    text-align: center;
}

.copyright-content p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
}

/*footer sec end*/

/* newsletter sec start */
.newsletter-sec {
    position: absolute;
    z-index: 11;
    left: 0;
    right: 0;
    margin-top: -100px;
}

.newsletter-sec-box {
    border: 3px solid #3DAD32;
    border-radius: 25px;
    background: #3DAD32B5;
    padding: 40px;
}

.newsletter-sec-box-content h3 {
    font-size: 32px;
    color: var(--white-color);
    font-weight: 700;
    margin-bottom: 10px;
}

.newsletter-sec-box-content p {
    color: var(--white-color);
    width: 400px;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}

.newsletter-sec-box form input {
    width: 100%;
    height: 60px;
    border-radius: 100PX;
    padding: 0 15px;
    outline: none;
    border: none;
}

.newsletter-sec-box form button {
    background-color: var(--black-color);
    width: 100%;
    height: 100%;
    border-radius: 100px;
    outline: none;
    border: none;
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
}

/* newsletter sec end */

.about-the-book-content h4 {
    font-size: 25px;
    font-weight: 500;
    color: var(--white-color);
    margin-bottom: 20px;
}

.about-the-book-content ul {
    margin: 0;
}

.about-the-book-content ul li {
    color: var(--white-color);
    margin-bottom: 10px;
}

.about-brand-sec-page {
    margin-bottom: 160px;
}

/* story corner sec start */
.story-corner-sec {
    padding: 100px 0px;
    background-color: var(--theme-color);
}

.story-corner-img {
    text-align: end;
}

.story-corner-content h2 {
    color: var(--white-color);
    margin-bottom: 15px;
}

.story-corner-content h4 {
    color: var(--white-color);
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 15px;
}

.story-corner-content p {
    color: var(--white-color);
    margin-bottom: 15px;
}

.story-corner-boxes {
    margin-top: 50px;
}

.story-corner-box .story-corner-box-content {
    background-color: var(--white-color);
    padding: 30px 30px 30px 30px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 25px;
}

.story-corner-box img {
    width: 100%;
    border-radius: 25px 25px 0px 0px;
}

.story-corner-box-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-corner-box-btn a {
    font-size: 14px;
    padding: 10px 20px;
}

.story-corner-box .story-corner-box-content h3 {
    font-size: 15px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.story-corner-box {
    border-radius: 25px;
}

/* story corner sec end */

/* book1 style */
.book {
    width: min(600px, 95vw);
    height: min(400px, 70vw);

    position: relative;
    margin: auto;

    perspective: 1500px;
    user-select: none;
}

.page {
    width: 49%;
    height: 98%;
    padding: clamp(10px, 2vw, 20px);
    position: absolute;
    top: 1%;
    left: 50%;
    font-size: clamp(12px, 1.6vw, 16px);
    line-height: 1.4;
    background-color: blanchedalmond;
    transition: transform .5s;
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: left center;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    overflow: hidden;
}

.page:nth-of-type(2n) {
    left: 1px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 10%);
    transform-origin: right center;
    transform: rotateY(0);
}

.page:nth-of-type(2n):not(.cover) {
    left: calc(1% + 1px);
}

.page h2 {
    text-align: center;
    font-size: clamp(16px, 3vw, 22px);
    margin-bottom: 0.5em;
}

.page h2+p::first-letter {
    font-size: 44px;
    float: left;
    height: 44px;
    line-height: 36px;
    vertical-align: baseline;
    margin-right: 6px;
    border-radius: 5px;
}

.page p {
    font-size: clamp(12px, 2.8vw, 16px);
    margin-bottom: 1em;
    flex-shrink: 0;
}

.page p:last-child {
    margin-bottom: 0;
}

.page>* {
    flex-shrink: 0;
}

input[type=radio] {
    display: none;
}

input:checked~.page {
    transform: rotateY(0);
}

input:checked~.page:nth-of-type(2n) {
    transform: rotateY(180deg);
}

input:checked~.page:nth-of-type(2n-1) {
    z-index: 3;
}

input:checked~.page:nth-of-type(2n-1)~.page:nth-of-type(2n-1) {
    z-index: 1;
}

input:checked+.page+.page+input+.page {
    z-index: 2 !important;
}

.cover {
    width: 50%;
    height: 100%;
    top: 0;
    border-radius: 0 3px 3px 0;
    background-color: var(--theme-color);
}

.cover h1 {
    color: #fff;
    text-align: center;
    text-shadow: -1px -1px 2px rgba(0, 0, 0, 0.5);
    margin-top: 0;
    position: relative;
    font-size: clamp(22px, 5vw, 32px);
}

.cover+.cover {
    border-radius: 3px 0 0 3px;
}

.cover:first-of-type,
.cover:last-of-type {
    background-image: none;
}

.cover:first-of-type::before,
.cover:last-of-type::before {
    content: "";
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border: 2px dashed rgba(0, 0, 0, 0.2);
    position: absolute;
    top: 9px;
    left: 9px;
}

.page-content {
    display: inline-block;
    max-width: 100%;
}

/* book1 style */

/* book2 style */
.book2 {
    width: min(600px, 95vw);
    height: min(450px, 80vw);
    position: relative;
    margin: auto;
    perspective: 1500px;
    user-select: none;
    box-sizing: border-box;
}

.book2 .page {
    width: 49%;
    height: 98%;
    padding: clamp(12px, 2vw, 22px);
    position: absolute;
    top: 1%;
    left: 50%;
    background-color: blanchedalmond;
    transition: transform 0.5s;
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: left center;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
}

.book2 .page:nth-of-type(2n) {
    left: 1px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 10%);
    transform-origin: right center;
    transform: rotateY(0);
}

.book2 .page-content {
    width: 100%;
    height: auto;
}

.book2 .page h2 {
    font-size: clamp(13px, 1.8vw, 16px);
    margin-top: 0;
    margin-bottom: 8px;
    color: var(--theme-color);
}

.book2 .page h3 {
    font-size: clamp(12px, 1.6vw, 15px);
    color: var(--theme-color);
}

.book2 .page p {
    font-size: clamp(10px, 1.2vw, 13px);
    line-height: 1.55;
    margin-bottom: 7px;
    text-align: justify;
}

.book2 .cover {
    overflow: hidden;
    background-color: var(--theme-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.book2 .cover h1 {
    font-size: clamp(16px, 3.5vw, 26px);
    margin: 0;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.book2 .back-cover {
    background-color: var(--theme-color);
    cursor: pointer;
}

/* Page flip logic */
.book2 input[type="radio"] {
    display: none;
}

.book2 #b2-page-1:checked~label:nth-of-type(1),
.book2 #b2-page-3:checked~label:nth-of-type(3),
.book2 #b2-page-5:checked~label:nth-of-type(5),
.book2 #b2-page-7:checked~label:nth-of-type(7),
.book2 #b2-page-9:checked~label:nth-of-type(9),
.book2 #b2-page-11:checked~label:nth-of-type(11),
.book2 #b2-page-13:checked~label:nth-of-type(13),
.book2 #b2-page-15:checked~label:nth-of-type(15),
.book2 #b2-page-17:checked~label:nth-of-type(17),
.book2 #b2-page-19:checked~label:nth-of-type(19),
.book2 #b2-page-21:checked~label:nth-of-type(21),
.book2 #b2-page-23:checked~label:nth-of-type(23) {
    transform: rotateY(0deg);
    z-index: 10;
}

.book2 #b2-page-23:checked~#b2-back-cover {
    transform: rotateY(0deg);
    z-index: 11;
}

/* book2 style */

.modal-body {
    display: flex;
    align-items: center;
    justify-content: center;
}

.book .page.cover.page-1 {
    background-image: url("../images/book-cover1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 400px;
    width: 300px;
}

.book2 .page.cover.bookimage-2 {
    background-image: url("../images/book-cover3.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 441px;
    width: 294px;
}

.book3 .page.cover.bookimage-3 {
    background-image: url("../images/book-cover2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 441px;
    width: 294px;
}

/*book 3 style*/
.book3 {
    width: min(600px, 95vw);
    height: min(450px, 80vw);
    position: relative;
    margin: auto;
    perspective: 1500px;
    user-select: none;
    box-sizing: border-box;
}

.book3 .page {
    width: 49%;
    height: 98%;
    padding: clamp(12px, 2vw, 22px);
    position: absolute;
    top: 1%;
    left: 50%;
    background-color: blanchedalmond;
    transition: transform 0.5s;
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: left center;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
}

.book3 .page:nth-of-type(2n) {
    left: 1px;
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0) 10%);
    transform-origin: right center;
    transform: rotateY(0);
}

.book3 .page-content {
    width: 100%;
    height: auto;
}

.book3 .page h3 {
    font-size: clamp(12px, 1.6vw, 15px);
    color: var(--theme-color);
}

.book3 .page p {
    font-size: clamp(10px, 1.2vw, 13px);
    line-height: 1.55;
    margin-bottom: 7px;
    text-align: justify;
}

.book3 .cover {
    overflow: hidden;
    background-color: var(--theme-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.book3 .cover h1 {
    font-size: clamp(16px, 3.5vw, 26px);
    margin: 0;
    padding: 10px;
    color: #fff;
    text-align: center;
}

.book3 input[type="radio"] {
    display: none;
}

/* Page flip states */
.book3 #b3-page-1:checked~label:nth-of-type(1) {
    transform: rotateY(0deg);
    z-index: 10;
}

.book3 #b3-page-3:checked~label:nth-of-type(3) {
    transform: rotateY(0deg);
    z-index: 10;
}

.book3 #b3-page-5:checked~label:nth-of-type(5) {
    transform: rotateY(0deg);
    z-index: 10;
}

.book3 #b3-page-7:checked~label:nth-of-type(7) {
    transform: rotateY(0deg);
    z-index: 10;
}

.book3 #b3-page-9:checked~label:nth-of-type(9) {
    transform: rotateY(0deg);
    z-index: 10;
}

.book3 #b3-page-11:checked~label:nth-of-type(11) {
    transform: rotateY(0deg);
    z-index: 10;
}

.book3 #b3-page-13:checked~label:nth-of-type(13) {
    transform: rotateY(0deg);
    z-index: 10;
}

.book3 #b3-page-15:checked~label:nth-of-type(15) {
    transform: rotateY(0deg);
    z-index: 10;
}

/* Back cover - standalone, NOT .page class */
.book3 .b3-back-cover {
    width: 49%;
    height: 98%;
    position: absolute;
    top: 1%;
    left: 50%;
    background-color: var(--theme-color);
    transition: transform 0.5s;
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: left center;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
    cursor: pointer;
}

/* Back cover standalone - no page class so nth-of-type won't affect it */
.book3 .b3-back-cover {
    width: 49%;
    height: 98%;
    position: absolute;
    top: 1%;
    left: 50%;
    background-color: var(--theme-color);
    transition: transform 0.5s;
    transform: rotateY(-180deg);
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transform-origin: left center;
    overflow: hidden;
    display: block;
    box-sizing: border-box;
    cursor: pointer;
}

.book3 #b3-page-17:checked~#b3-back-cover {
    transform: rotateY(0deg) !important;
    z-index: 11;
}

/*book 3 style*/

.about-the-book.story-corner-bg {
    background-image: url("../images/story-corner-bg.jpg");
}

.inner-home-banner-right img {
    width: 100%;
}

.home-banner-content h4 {
    color: var(--green-color);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.more-story {
    display: none;
}

button.green-btn {
    border: none;
    outline: none;
}

h4.green-heading {
    color: var(--green-color);
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.more-story ul li::marker {
    color: #fff;
}

.more-story ul li {
    color: #fff;
}

.story-corner-box-contentXtra h3 {
    margin-bottom: 60px !important;
}

/* cart css */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    /* hidden */
    width: 350px;
    height: 100%;
    background: var(--theme-color);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease;
    z-index: 9999;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
    /* show */
}

.cart-header,
.cart-footer {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

.cart-footer {
    border-top: 1px solid #ddd;
}

.span-cart {
    position: relative;
    cursor: pointer;
}

.span-cart i {
    color: #fff;
    font-size: 16px;
}

.span-cart #cart-count {
    color: #fff;
    position: absolute;
    top: -10px;
    background-color: red;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    right: -10px;
    font-size: 13px;
    font-weight: 400;
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-header h3 {
    color: #fff;
    margin: 0;
}

.cart-header button {
    background-color: unset;
    border: none;
    outline: none;
    color: #fff;
    font-size: 18px;
}

#cart-items h4 {
    color: #fff;
}

#cart-items p {
    color: #fff;
    margin-top: 20px;
}

#cart-total {
    color: #fff;
}

#overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    display: none;
    z-index: 9998;
}

#overlay.active {
    display: block;
}

.remove-item-btn {
    background-color: var(--green-color);
    color: #fff;
    padding: 10px 30px;
    border-radius: 100px;
    border: none;
    outline: none;
}

.increase-quantity {
    background-color: var(--green-color);
    padding: 2px 20px;
    border: none;
    outline: none;
    font-size: 20px;
    color: #fff;
}

.decrease-quantity {
    background-color: var(--green-color);
    padding: 2px 20px;
    border: none;
    outline: none;
    font-size: 20px;
    color: #fff;
}

/* cart css */