* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --stage-dark: #080a12;
    --stage-glow: #1c2440;
    --velvet-1: #7a0c14;
    --velvet-2: #4a0509;
    --velvet-3: #2a0305;
    --gold: #cda349;
    --gold-light: #f0d78c;
    --bulb: #ffe9a8;
    --theme-color: #B84564;
    --white-color: #ffffff;
    --black-color: #000000;
    --light-theme-color: #E89DB9;
}

body {
    font-family: "Inter", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Noto Serif", serif;
}

.same-btn {
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 30px;
    border: none;
    cursor: pointer;
    background-color: var(--theme-color);
    box-shadow: 10px 10px 0px 0px var(--light-theme-color);
    transition: all 0.2s ease-in-out;
    text-decoration: none;
}

.same-btn:hover {
    transform: translate(3px, 3px);
    box-shadow: 7px 7px 0px 0px var(--light-theme-color);
}

.same-heading {
    font-size: 50px;
    font-weight: 500;
    color: var(--theme-color);
}

.para {
    color: var(--black-color);
    font-weight: 400;
    font-size: 16px;
    line-height: 29px;
}

/* header start */
.header {
    background-color: var(--theme-color);
}

.header .navbar-brand {
    color: var(--white-color);
    font-size: 40px;
    font-weight: 500;
}

.header .nav-item .nav-link {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    padding: 0;
}

.header .navbar-nav {
    gap: 30px;
}

.header-right ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header-right ul li a {
    width: 30px;
    height: 30px;
    background-color: var(--black-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    text-decoration: none;
    color: var(--white-color);
}

/* header end */

/*banner start*/
.banner-sec {
    background-image: url("../images/banner.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 400px 0px 170px;
}

.inner-banner .banner-content {
    padding: 180px 75px;
}

.inner-banner .banner-content h1 {
    font-size: 60px;
    text-transform: uppercase;
}

.banner-content {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    padding: 28px 32px;
    border-radius: 20px;
    text-align: center;
    background: #D9D9D903;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0px 4px 4px 0px #FFFFFF40 inset;
}

.banner-anchor {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
}

.banner-content h3 {
    font-weight: 600;
    font-size: 20px;
    text-align: center;
    color: var(--theme-color);
    margin-bottom: 20px;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 500;
    color: var(--white-color);
}

.banner-book {
    text-align: center;
}

/*banner end*/

/* about start */
.about-sec {
    background-image: url("../images/about-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.about-book-content h2 {
    margin-bottom: 40px;
}

.about-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 40px;
}

.about-book {
    position: relative;
    z-index: 1;
}

.about-book::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-image: url("../images/vector-before.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 263px;
    height: 108px;
    bottom: -4rem;
    left: 6rem;
}

/* about end */

/* cta qoute start */
.cta-qoute-sec {
    background-image: url("../images/cta-qoute.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 130px;
}

.cta-qoute-content {
    text-align: center;
}

.cta-qoute-content h3 {
    font-family: "Oleo Script Swash Caps", system-ui;
    font-size: 80px;
    font-weight: 400;
    margin-bottom: 0;
}

/* cta qoute end */

/* about the author start */
.about-the-author {
    background-image: url("../images/about-author-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.about-author-image {
    text-align: center;
}

.about-the-author-content h2 {
    margin-bottom: 40px;
}

/* about the author end */

/*testimonial start*/
.testimonial-sec {
    background-image: url("../images/testimonial-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.review-box {
    padding: 54px 34px;
    background: var(--light-theme-color);
    border: 1px solid var(--light-theme-color);
    border-radius: 20px;
    height: 450px;
}

.review-box h4 {
    color: var(--theme-color);
    font-weight: 500;
    font-size: 22px;
    line-height: 28px;
    margin-bottom: 25px;
}

.review-box p {
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: #000000;
}

.review-client {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-client-content h6 {
    color: var(--theme-color);
    font-weight: 500;
    font-size: 22px;
    line-height: 26.4px;
    margin: 0;
}

.review-client-content p {
    color: #000000;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 0;
}

.testimonial-content {
    text-align: center;
    margin-bottom: 40px;
}

.review-client img {
    width: 50px !important;
    border-radius: 100px;
}

/*testimonial end*/

/* pre order start */
.pre-order-sec {
    background-image: url("../images/book-promo-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.pre-order-content h4 {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

.pre-order-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--black-color);
}

.pre-order-btn {
    display: flex;
    align-items: center;
    margin-top: 40px;
}

/* pre order end */

/* blog sec start */
.blog-sec {
    background-image: url("../images/testimonial-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.blogs-btn {
    display: flex;
    justify-content: flex-end;
}

.blog-content h4 {
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 400;
}

.blog-content h2 {
    font-size: 40px;
    font-weight: 500;
    margin: 0;
    color: var(--black-color);
}

.blog-box img {
    width: 100%;
}

.blog-box-content {
    margin-top: 20px;
}

.blog-box-content span {
    color: var(--theme-color);
    font-size: 13px;
    font-weight: 500;
}

.blog-box-content a {
    color: var(--black-color);
    margin: 10px 0px;
    text-decoration: none;
    font-size: 24px;
    font-weight: 400;
    display: block;
}

.blog-box-content p {
    color: #000000B0;
}

.blog-box {
    margin-top: 40px;
}

/* blog sec end */

/*newsletter sec start*/
.newsletter-sec {
    background-image: url("../images/newsletter-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.newsletter-sec form button {
    font-size: 16px;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 18px 30px;
    border: none;
    cursor: pointer;
    background-color: var(--theme-color);
    box-shadow: 10px 10px 0px 0px var(--light-theme-color);
    transition: all 0.2s ease-in-out;
}

.newsletter-sec form button:hover {
    transform: translate(3px, 3px);
    box-shadow: 7px 7px 0px 0px var(--light-theme-color);
}

.newsletter-sec form input {
    height: 60px;
    width: 100%;
    border: 1px solid var(--theme-color);
    padding: 0px 15px;
    outline: none;
}

.form-flex {
    display: flex;
    align-items: center;
    gap: 10px;
}

.newsletter-content h2 {
    margin-bottom: 0;
}

/*newsletter sec end*/

/*footer sec start*/
.footer {
    background-color: #B84564;
    padding: 100px 0px 40px;
}

.contact-info h3 {
    font-size: 26px;
    font-weight: 400;
    color: var(--white-color);
}

.contact-info-box {
    margin-top: 25px;
}

.contact-info-box h4 {
    font-size: 18px;
    color: var(--white-color);
    font-weight: 400;
}

.contact-info-box a {
    color: #FFFFFFB5;
    text-decoration: none;
}

.nav-info {
    text-align: end;
}

.nav-info ul {
    list-style-type: none;
    margin-top: 25px;
}

.nav-info ul li {
    margin-bottom: 10px;
}

.nav-info ul li a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFFB5;
    text-decoration: none;
}

.footer-content {
    text-align: center;
}

.footer-content h2 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 400;
}

.footer-content p {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}

.footer-content ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style-type: none;
}

.footer-content ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--white-color);
    width: 50px;
    height: 50px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--black-color);
    font-size: 20px;
}

.copyright-content p {
    text-align: center;
    margin-bottom: 0;
    color: var(--white-color);
}

.copyright-content {
    border-top: 1px solid #BC3455;
    margin-top: 60px;
    padding-top: 40px;
}

/*footer sec end*/

/* video sec start */
.video-sec-content {
    text-align: center;
}

.video-sec {
    background-color: #D9D9D9;
    padding: 20rem 0px;
}

/* video sec end */

/*loading start*/
#loader {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.stage {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.spot {
    position: absolute;
    top: -10%;
    width: 140px;
    height: 140%;
    background: linear-gradient(to bottom, rgba(255, 244, 214, 0.16), rgba(255, 244, 214, 0) 70%);
    transform-origin: top center;
    filter: blur(2px);
    animation: sway 4.5s ease-in-out infinite;
}

.spot:nth-child(1) {
    left: 18%;
    transform: rotate(-10deg);
    animation-delay: 0s;
}

.spot:nth-child(2) {
    left: 38%;
    transform: rotate(-3deg);
    animation-delay: .6s;
}

.spot:nth-child(3) {
    left: 58%;
    transform: rotate(4deg);
    animation-delay: 1.2s;
}

.spot:nth-child(4) {
    left: 78%;
    transform: rotate(11deg);
    animation-delay: 1.8s;
}

@keyframes sway {

    0%,
    100% {
        opacity: .55;
    }

    50% {
        opacity: 1;
    }
}

.floor {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 22%;
    background:
        repeating-linear-gradient(90deg, #3a2416 0 26px, #33200f 26px 52px);
    box-shadow: inset 0 40px 60px -20px rgba(0, 0, 0, .85);
}

.marquee {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--gold-light);
}

.marquee h1 {
    font-size: clamp(2rem, 6vw, 3.6rem);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--bulb);
    text-shadow:
        0 0 6px rgba(255, 233, 168, .9),
        0 0 22px rgba(255, 200, 90, .55);
    animation: flicker 2.6s infinite;
}

@keyframes flicker {

    0%,
    19%,
    21%,
    55%,
    57%,
    100% {
        opacity: 1;
    }

    20%,
    56% {
        opacity: .65;
    }
}

.bulbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.bulbs span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--bulb);
    box-shadow: 0 0 8px 2px rgba(255, 233, 168, .8);
    animation: chase 1.2s linear infinite;
}

.bulbs span:nth-child(1) {
    animation-delay: 0s;
}

.bulbs span:nth-child(2) {
    animation-delay: .1s;
}

.bulbs span:nth-child(3) {
    animation-delay: .2s;
}

.bulbs span:nth-child(4) {
    animation-delay: .3s;
}

.bulbs span:nth-child(5) {
    animation-delay: .4s;
}

.bulbs span:nth-child(6) {
    animation-delay: .5s;
}

.bulbs span:nth-child(7) {
    animation-delay: .6s;
}

@keyframes chase {

    0%,
    100% {
        opacity: .25;
        transform: scale(.8);
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
    }
}

.tagline {
    margin-top: 14px;
    font-size: .85rem;
    letter-spacing: .3em;
    text-transform: uppercase;
    color: #d8b96f;
    opacity: .8;
}

.curtain {
    position: absolute;
    top: 0;
    width: 52%;
    height: 100%;
    z-index: 5;
    background:
        repeating-linear-gradient(90deg,
            var(--velvet-1) 0px, var(--velvet-2) 22px, var(--velvet-1) 44px, var(--velvet-3) 66px),
        linear-gradient(180deg, var(--velvet-1) 0%, var(--velvet-2) 60%, var(--velvet-3) 100%);
    box-shadow: inset -40px 0 80px rgba(0, 0, 0, .55);
}

.curtain::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 110px;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55), rgba(0, 0, 0, 0));
}

.curtain::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 10px;
}

.curtain.left {
    left: 0;
    border-radius: 0 0 0 0;
    animation: openLeft 1.4s cubic-bezier(.77, 0, .18, 1) 2.4s forwards;
}

.curtain.left::after {
    right: 0;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.curtain.right {
    right: 0;
    animation: openRight 1.4s cubic-bezier(.77, 0, .18, 1) 2.4s forwards;
}

.curtain.right::after {
    left: 0;
    background: linear-gradient(90deg, var(--gold), transparent);
}

@keyframes openLeft {
    to {
        transform: translateX(-105%);
    }
}

@keyframes openRight {
    to {
        transform: translateX(105%);
    }
}

.curtain .swag {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 36%;
    background: radial-gradient(120% 100% at 50% 0%, transparent 60%, rgba(0, 0, 0, .35) 100%);
}

.curtain.left .swag {
    right: 0;
}

.curtain.right .swag {
    left: 0;
}

.tassel {
    position: absolute;
    bottom: 6%;
    width: 26px;
    z-index: 6;
}

.tassel .cord {
    width: 6px;
    height: 70px;
    margin: 0 auto;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    border-radius: 3px;
}

.tassel .fringe {
    width: 26px;
    height: 60px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 3px, var(--gold-light) 3px 5px);
    border-radius: 0 0 10px 10px;
    margin-top: -2px;
}

.curtain.left .tassel {
    right: 6%;
    animation: openLeft 1.4s cubic-bezier(.77, 0, .18, 1) 2.4s forwards;
}

.curtain.right .tassel {
    left: 6%;
    animation: openRight 1.4s cubic-bezier(.77, 0, .18, 1) 2.4s forwards;
}

.progress-wrap {
    margin-top: 26px;
    width: min(260px, 60vw);
    height: 6px;
    background: rgba(255, 255, 255, .08);
    border-radius: 4px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    box-shadow: 0 0 10px var(--gold-light);
    animation: load 2.3s ease-in-out forwards;
}

@keyframes load {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

@media (prefers-reduced-motion: reduce) {

    .curtain,
    .curtain .tassel,
    .spot,
    .marquee h1,
    .bulbs span,
    .progress-bar {
        animation: none !important;
    }

    .curtain.left {
        transform: translateX(-105%);
    }

    .curtain.right {
        transform: translateX(105%);
    }
}

/*loading end*/

/* help form section start */
.help-form-left h2 {
    font-size: 40px;
    font-weight: 400;

    color: #000;
    margin-bottom: 40px;
}

.help-form-left form input {
    width: 100%;
    padding: 22px 30px;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    font-size: 16px;
    border: none;
    outline: none;
}

.help-form-left form textarea {
    width: 100%;
    padding: 22px 30px;
    margin-bottom: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    height: 150px;
    font-size: 16px;
    border: none;
    resize: none;
    outline: none;
}

.help-form-left form button {
    width: 100%;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 18px;
    height: 60px;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    outline: none;
}

.help-form-sec {
    padding: 80px 0px;
    background-image: url("../images/testimonial-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.help-form-right img {
    width: 100%;
}

/* help form section end */

.cursor {
    position: fixed;
    background: var(--theme-color);
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border-radius: 50%;
    will-change: transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    z-index: 10000;
}

::-moz-selection {
    color: #fff;
    background: var(--theme-color);
}

::selection {
    color: #fff;
    background: var(--theme-color);
}

.video-sec-video video {
    height: 500px;
}