/*==================================================
                GOOGLE FONT
==================================================*/

@font-face {
    font-family: "American Captain";
    src: url("../fonts/American-Captain.otf");
}

@font-face {
    font-family: "Cintarini";
    src: url("../fonts/Cintarini.ttf");
}

.video-box{
    position:relative;
    overflow:hidden;
    /* border:2px solid #d4a63a; */
    border-radius:10px;
    cursor:pointer;
    /* background:#000; */
}

.video-box video{
    width:100%;
    display:block;
}

.video-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.35);
    display:flex;
    align-items:center;
    justify-content:center;
    transition:.4s;
}

.video-overlay i{
    font-size:75px;
    color:#d4a63a;
    transition:.4s;
}

.video-box:hover .video-overlay{
    background:rgba(0,0,0,.15);
}

.video-box:hover .video-overlay i{
    transform:scale(1.15);
}

/* Animated Border */

.video-box::before{
    content:'';
    position:absolute;
    inset:-2px;
    border-radius:10px;
    /* background:linear-gradient(90deg,transparent,#d4a63a,transparent); */
    /* background-size:250% 100%; */
    /* animation:borderMove 3s linear infinite; */
    z-index:-1;
}

@keyframes borderMove{

0%{
background-position:0%;
}

100%{
background-position:250%;
}

}


/* Popup */

.video-modal{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:none;
    justify-content:center;
    align-items:center;
    background:rgba(0,0,0,.95);
    z-index:999999999;
    overflow:hidden;
}

.video-content{
    position:relative;
    width:90%;
    max-width:auto;
    z-index:999999999;
}

.video-content video{
    width:100%;
    display:block;
    border:2px solid #d4a63a;
    border-radius:8px;
}

.close-video{
    position:absolute;
    top:-40px;
    right:0;
    color:#fff;
    font-size:35px;
    cursor:pointer;
    z-index:999999999;
}
/*==================================================
                ROOT
==================================================*/

:root{
    font-family: "Berlin Sans FB";
    --primary:#d6a64f;
    --secondary:#f6c46d;

    --black:#080808;
    --dark:#111111;
    --light:#f5f5f5;
    --white:#ffffff;

    --text:#d8d8d8;

    --transition:.4s ease;

    --radius:12px;

    --shadow:0 15px 35px rgba(0,0,0,.35);

}

/*==================================================
                RESET
==================================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--black);

    color:var(--white);

  font-family: "Gentium Book Plus", serif;

    overflow-x:hidden;

}

img{

    max-width:100%;
    display:block;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;
    margin:0;
    padding:0;

}

.section-padding{

    padding:120px 0;

}

/*==================================================
                SCROLLBAR
==================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#111;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:30px;

}

/*==================================================
                PRELOADER
==================================================*/

#preloader{

    position:fixed;

    inset:0;

    background:#000;

    z-index:99999;

    display:flex;

    justify-content:center;

    align-items:center;

}

#preloader span{

    width:70px;

    height:70px;

    border-radius:50%;

    border:5px solid rgba(255,255,255,.1);

    border-top:5px solid var(--primary);

    animation:spin 1s linear infinite;

}

@keyframes spin{

    100%{

        transform:rotate(360deg);

    }

}

/*==================================================
                TYPOGRAPHY
==================================================*/

h1,
h2,
h3,
h4,
.logo{

    font-family:"American Captain";

    letter-spacing:2px;

}

.section-heading{

    margin-bottom:70px;

}

.section-heading span{

    color:var(--primary);

    letter-spacing:3px;

    text-transform:uppercase;

    font-size:14px;

}

.section-heading h2{

    font-size:70px;

    margin-top:10px;

}

/*==================================================
                BUTTON
==================================================*/

.btn-main{

background:linear-gradient(45deg,#c9942d,#f2c063);

color:#000;

padding:15px 35px;

border-radius: 10px;

font-weight:700;

transition:.4s;

position:relative;

overflow:hidden;

border:none;
}

.btn-main:hover{

    transform:translateY(-5px);

    color:#000;

    box-shadow:0 15px 30px rgba(214,166,79,.45);

}

.btn-main::before{

content:"";

position:absolute;

top:0;

left: -109%;

width:100%;

height:100%;

background:rgba(255,255,255,.3);

transform:skewX(-30deg);

transition:.6s;
}

.btn-main:hover::before{

    left:120%;

}

/* outline */

.btn-outline-custom{

border:2px solid var(--primary);

color:var(--white);

padding: 14px 26px;

font-size: 18px;

border-radius: 10px;

transition:.4s;
}

.btn-outline-custom:hover{

    background:var(--primary);

    color:#000;

}

/*==================================================
                NAVBAR
==================================================*/

.header{

    position:absolute;

    width:100%;

    top:0;

    left:0;

    z-index:999;

}

.navbar{

    padding:22px 0;

    transition:.4s;

}

.navbar.scrolled{

    background:#0b0b0b;

    padding:15px 0;

    box-shadow:var(--shadow);

}

.logo img{

    height:70px;

}

.nav-link{

    color:#fff;

    margin:0 14px;

    font-weight:600;

    position:relative;

    transition:.4s;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary);

    transition:.4s;

}

.nav-link:hover{

    color:var(--primary);

}

.nav-link:hover::after,

.nav-link.active::after{

    width:100%;

}

.navbar-toggler{

    border:none;

    color:#fff;

    font-size:28px;

}

.navbar-toggler:focus{

    box-shadow:none;

}

/*==================================================
                HERO
==================================================*/

.hero{

height: 940px;

background-attachment: fixed !important;

position:relative;

background:url("../images/banner1.png") center center/cover;

/* min-height:100vh; */

display:flex;

align-items:center;

padding: 150px 0 60px;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.70);

}

.hero .container{

    position:relative;

    z-index:5;

}

.hero-book{

width:420px;

margin:auto;

/* animation:floatBook 4s ease-in-out infinite; */

filter:drop-shadow(0 25px 45px rgba(0,0,0,.45));

transition:.5s;
}

.hero-book:hover{

    transform:rotateY(10deg) scale(1.05);

}

@keyframes floatBook{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-20px);

    }

}

.top-title{

/* color:var(--primary); */

font-size: 86px;

letter-spacing: 4px;

font-family: "American Captain";

line-height: 32px;
}

.hero-content h1{

    font-size:120px;

    line-height:.9;

}

.hero-content h1 span{

    color:var(--primary);

}

.hero-content h4{

margin: 14px 0;

letter-spacing:3px;

color:#ddd;

font-size: 32px;

font-weight: 500;
}

.hero-content p{

max-width: 70%;

color: #fff;

line-height:1.9;

font-weight: 500;

margin-bottom:40px;

margin: auto;

padding-bottom: 30px;

font-size: 17px;
}

.hero-btn{

display:flex;

gap:20px;

flex-wrap:wrap;

justify-content: center;
}

/* Floating football */

.football{

    position:absolute;

    right:5%;

    top:20%;

    width:90px;

    animation:rotateBall 8s linear infinite;

}

@keyframes rotateBall{

    from{

        transform:rotate(0deg);

    }

    to{

        transform:rotate(360deg);

    }

}

/* Beer */

.beer-left{

    position:absolute;

    left:3%;

    bottom:10%;

    width:90px;

    animation:floatBeer 5s ease-in-out infinite;

}

@keyframes floatBeer{

    50%{

        transform:translateY(-15px);

    }

}


/*==================================================
                AVAILABLE STORES
==================================================*/

.brands{

    background:#111;

    padding:45px 0;

    border-top:1px solid rgba(255,255,255,.08);
    border-bottom:1px solid rgba(255,255,255,.08);

}

.brands h5{

color:var(--primary);

font-family:"American Captain";

letter-spacing:2px;

font-size: 25px;

margin:0;
}

.brands img{

    max-height:40px;

    opacity:.75;

    transition:var(--transition);

    filter:grayscale(100%);

}

.brands img:hover{

    opacity:1;

    filter:none;

    transform:translateY(-8px) scale(1.05);

}

/*==================================================
                ABOUT AUTHOR
==================================================*/

.about-author{z-index: 1;background-position: center;background-repeat: no-repeat;background: url('../images/author.png');position:relative;padding:130px 0;/* background:#0d0d0d; */overflow:hidden;background-size: cover;background-attachment: fixed !important;}

.about-author::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    background:radial-gradient(circle,
    rgba(214,166,79,.15),
    transparent 70%);

    left:-150px;
    top:-150px;

}

.about-author::after{

content:"";

position:absolute;

width: 100%;

height: 100%;

background: #010101bf;

right: 0;

bottom: 0;

z-index: -1;
}

.author-img{

    position:relative;

    text-align:center;

}

.author-img img{

border-radius:18px;

border: 6px solid transparent;

transition:.5s;

box-shadow:0 25px 50px rgba(0,0,0,.4);
}

.author-img:hover img{

    transform:scale(1.03);

    border-color:var(--primary);

}

.author-img h3{

    margin-top:25px;

    color:var(--primary);

    font-size:42px;
      font-family: "Cintarini";

}

.author-content span{

    color:var(--primary);

    letter-spacing:3px;

    font-size:15px;

    text-transform:uppercase;

}

.author-content h2{

    font-size:72px;

    margin:15px 0 30px;

}

.author-content p{

color:#cfcfcf;

line-height:1.9;

margin-bottom:22px;

font-size: 18px;
}

.author-player{

    text-align:right;

}

.author-player img{

    max-height:560px;

    animation:floatPlayer 5s ease-in-out infinite;

}

@keyframes floatPlayer{

    50%{

        transform:translateY(-20px);

    }

}

/*==================================================
            WHY READ BOOK
==================================================*/

.why-book{

background:url('../images/bg.png');

padding: 60px 0 80px;

position:relative;

background-position: right;

background-size: contain;

background-repeat: no-repeat;

background-attachment: fixed;
}

.book-content span{

    color:var(--primary);

    letter-spacing:3px;

    text-transform:uppercase;

}

.book-content h2{font-size: 45px;margin:18px 0 35px;line-height:.95;}

.book-content p{

    color:#d0d0d0;

    line-height:1.9;

    margin-bottom:20px;

}

.book-image{

    text-align:center;

}

.book-image img{

    width:450px;

    transition:.6s;

    filter:drop-shadow(0 30px 45px rgba(0,0,0,.45));

}

.book-image:hover img{

    transform:rotateY(-12deg)
               scale(1.05);

}

/*==================================================
                PRICE BUTTONS
==================================================*/

.price-buttons{

display:flex;

flex-wrap:wrap;

gap: 15px;

margin-top:45px;

width: 75%;

justify-content: start;
}

.price-buttons .btn{

min-width: 210px;
}

/*==================================================
            GLASS CARD
==================================================*/

.chapter-card,
.testimonial-card{

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    transition:.45s;

}

.chapter-card:hover,
.testimonial-card:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:0 25px 45px rgba(214,166,79,.15);

}

/*==================================================
            SECTION SPACING
==================================================*/

.about-author,
.why-book,
.chapters,
.trailer,
.testimonials,
.contact{

    overflow:hidden;

}

/*==================================================
            DECORATIVE GLOW
==================================================*/

.gold-glow{

    position:absolute;

    width:250px;
    height:250px;

    border-radius:50%;

    background:rgba(214,166,79,.15);

    filter:blur(120px);

    pointer-events:none;

}

/*==================================================
                    CHAPTERS
==================================================*/
/*==============================
        JOURNEY
===============================*/

.journey{

background-attachment: fixed !important;

position:relative;

padding:70px 0;

background:url(../images/Banner-4.jpg) center/cover;

overflow:hidden;

background-position: right;

background-repeat: no-repeat;

background-size: cover;
}

.journey::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.55);

}

.journey .container{

    position:relative;

    z-index:2;

}

.section-title{

    text-align:center;

    margin-bottom:45px;

}

.section-title span{

    color:#d7a33b;

    font-size:14px;

    letter-spacing:3px;

    text-transform:uppercase;

}

.section-title h2{

    margin-top:10px;

    font-size:68px;

    color:#fff;

}

.journey-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

}

.journey-card{

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(3px);

    border:1px solid rgba(215,163,59,.45);

    border-radius:12px;

    padding:28px 22px;

    text-align:center;

    transition:.35s;

}

.journey-card:hover{

    transform:translateY(-10px);

    border-color:#d7a33b;

    box-shadow:0 0 30px rgba(215,163,59,.2);

}

.journey-card .icon{

    width:55px;

    margin:auto;

    margin-bottom:18px;

}

.journey-card span{

    color:#d7a33b;

    font-size:15px;

}

.journey-card h3{

    margin:12px 0;

    color:#fff;

    font-size:34px;

    line-height:1.1;

}

.journey-card p{

    color:#ddd;

    font-size:15px;

    line-height:1.7;

}

/* Decorations */

.football-left{

    position:absolute;

    left:-20px;

    bottom:10px;

    width:170px;

    z-index:2;

}

.stadium-light{

    position:absolute;

    right:0;

    top:0;

    width:140px;

    z-index:2;

}

/* Responsive */

@media(max-width:991px){

.journey-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:576px){

.journey-grid{

grid-template-columns:1fr;

}

.section-title h2{

font-size:42px;

}

}
/*==================================================
                    TRAILER
==================================================*/
.trailer:after{
    position: absolute;
    content: "";
    background: #000000db;
    height: 100%;
    right: 0;
    top: 0;
    width: 100%;
    z-index: -1;
}
.trailer{background-attachment: fixed !important;z-index: 1;position: relative;padding: 0 0;background: url('../images/Banner5.png');position:relative;background-position: center;background-size: cover;background-repeat: no-repeat;}

.trailer-content span{

    color:var(--primary);

    letter-spacing:3px;

    text-transform:uppercase;

}

.trailer-content h2{

    font-size:75px;

    line-height:.95;

    margin:25px 0 40px;

}

.video-box{position:relative;border-radius:20px;overflow:hidden;/* box-shadow:0 30px 50px rgba(0,0,0,.45); */}

.video-box img{

    transition:.6s;

}

.video-box:hover img{

    transform:scale(1.08);

}

.video-box::after{content:"";/* position:absolute; */inset:0;/* background:rgba(0,0,0,.25); */}

.play-btn{

    position:absolute;

    left:50%;
    top:50%;

    transform:translate(-50%,-50%);

    width:95px;
    height:95px;

    border-radius:50%;

    background:var(--primary);

    color:#000;

    display:flex;

    justify-content:center;
    align-items:center;

    font-size:30px;

    z-index:5;

    transition:.4s;

}

.play-btn:hover{

    transform:translate(-50%,-50%) scale(1.15);

    color:#000;

}

.play-btn::before{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    border-radius:50%;

    border:2px solid var(--primary);

    animation:pulse 2s infinite;

}

@keyframes pulse{

    from{

        transform:scale(1);

        opacity:1;

    }

    to{

        transform:scale(1.8);

        opacity:0;

    }

}

/*==================================================
                TESTIMONIALS
==================================================*/

.testimonials{

    padding:130px 0;

    background:#101010;

}

.testimonial-card{

    padding:40px;

    text-align:center;

    height:100%;

}

.quote{

    font-size:45px;

    color:var(--primary);

    margin-bottom:20px;

}

.testimonial-card p{

    color:#d4d4d4;

    line-height:1.9;

    margin-bottom:30px;

}

.stars{

    color:#f9b300;

    margin-bottom:20px;

}

.testimonial-card h5{

    font-family:"American Captain";

    font-size:34px;

    margin-bottom:5px;

}

.testimonial-card span{

    color:#999;

}

/*==================================================
                    CONTACT
==================================================*/
.contact{

padding:90px 0;

background:url('../images/Banner-cn.png');

border-top:1px solid #8c6825;

border-bottom:1px solid #8c6825;

background-attachment: fixed;

background-position: bottom;

background-size: cover;
}

.contact-wrapper{

    display:grid;

    grid-template-columns:330px 1fr;

    gap:50px;

    align-items:center;

}

.contact-left h2{

    font-size:68px;

    margin:10px 0 20px;

}

.contact-left span{

    color:#D4A03A;

    letter-spacing:3px;

}

.contact-left p{

    color:#c9c9c9;

    line-height:1.9;

}

.contact-right{

    background:url(images/contact-bg.jpg);

    background-size:cover;

    background-position:center;

    padding:30px;

}

.contact-right form{

    display:grid;

    grid-template-columns:280px 1fr;

    gap:15px;

}

.left-inputs{

    display:flex;

    flex-direction:column;

    gap:15px;

}

.contact input{

    height:55px;

}

.contact textarea{

width: 68% !important;

height:195px;

resize:none;
}

.contact input,
.contact textarea{

width: 100%;

background:rgba(0,0,0,.45);

border:1px solid #6f5121;

color:#fff;

padding:15px;
}

.contact button{

    width:280px;

    height:55px;

    background:#D4A03A;

    border:none;

    margin-top:15px;

    font-weight:700;

}

/*==================================================
                    FOOTER
==================================================*/
.footer{

background:#090909;

padding:70px 0 20px;

border-top:2px solid #9b7431;

}

.footer-grid{

display:grid;

grid-template-columns:1.3fr 1fr 1fr 1.3fr;

gap:50px;

padding-bottom:40px;

border-bottom:1px solid rgba(255,255,255,.08);

}

.footer-col{

padding:0 35px;

position:relative;

}

.footer-col:not(:last-child)::after{

content:"";

position:absolute;

right:0;

top:0;

height:100%;

width:1px;

background:#8f6c2b;

opacity:.5;

}

.footer-logo{

width:170px;

margin-bottom:20px;

}

.footer-col h3{

font-size:22px;

color:#d9a743;

margin-bottom:20px;

}

.footer-col p{

color:#cfcfcf;

font-size:15px;

line-height:1.8;

}

.footer-col ul{

padding:0;

margin:0;

list-style:none;

}

.footer-col li{

margin-bottom:10px;

}

.footer-col a{

color:#ddd;

transition:.35s;

}

.footer-col a:hover{

color:#d9a743;

padding-left:5px;

}

.footer-social{

display:flex;

gap:12px;

margin-top:25px;

}

.footer-social a{

width:42px;

height:42px;

border:1px solid #9b7431;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

color:#d9a743;

}

.footer-social a:hover{

background:#d9a743;

color:#000;

}

.footer input{

width:100%;

height:48px;

background:transparent;

border:1px solid #6f6f6f;

padding:0 15px;

color:#fff;

margin:18px 0;

}

.footer button{

width:100%;

height:48px;

background:#d9a743;

border:none;

font-weight:700;

letter-spacing:1px;

cursor:pointer;

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

padding-top:18px;

font-size:14px;

color:#999;

}

.footer-bottom a{

color:#999;

}

.footer-bottom a:hover{

color:#d9a743;

}

@media(max-width:991px){

.footer-grid{

grid-template-columns:1fr;

}

.footer-col{

padding:0;

}

.footer-col::after{

display:none;

}

.footer-bottom{

flex-direction:column;

gap:10px;

text-align:center;

}

}

/*==================================================
                BACK TO TOP
==================================================*/

#backToTop{

    position:fixed;

    right:30px;

    bottom:30px;

    width:55px;

    height:55px;

    border-radius:50%;

    background:var(--primary);

    color:#000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:22px;

    z-index:999;

    transition:.4s;

    opacity:0;

    visibility:hidden;

}

#backToTop.active{

    opacity:1;

    visibility:visible;

}

#backToTop:hover{

    transform:translateY(-8px) rotate(360deg);

}

/*==================================================
                UTILITIES
==================================================*/

.text-gold{
    color:var(--primary);
}

.bg-dark{
    background:#0b0b0b;
}

.rounded-xl{
    border-radius:20px;
}

.shadow-gold{
    box-shadow:0 20px 40px rgba(214,166,79,.15);
}

/*==================================================
            IMAGE HOVER EFFECTS
==================================================*/

img{
    transition:all .5s ease;
}

img:hover{
    transform:scale(1.02);
}

.author-img img:hover,
.book-image img:hover,
.hero-book:hover{

    filter:drop-shadow(0 30px 40px rgba(214,166,79,.25));

}

/*==================================================
            SECTION ANIMATION
==================================================*/

section{

    position:relative;

}

section::after{

    content:"";

    display:block;

    clear:both;

}

/*==================================================
            TEXT SELECTION
==================================================*/

::selection{

    background:var(--primary);

    color:#000;

}

/*==================================================
            INPUT PLACEHOLDER
==================================================*/

::placeholder{

    color:#9a9a9a;

    opacity:1;

}

/*==================================================
            TRANSITIONS
==================================================*/

a,
button,
.btn,
.card,
img{

    transition:.4s ease;

}

/*==================================================
            RESPONSIVE
==================================================*/

@media (max-width:1400px){

.hero-content h1{

font-size:100px;

}

.section-heading h2{

font-size:60px;

}

.author-content h2,
.book-content h2,
.contact-content h2{

font-size:60px;

}

.trailer-content h2{

font-size:60px;

}

}

@media (max-width:1200px){

.hero-book{

width:340px;

}

.hero-content h1{

font-size:85px;

}

.author-player{

display:none;

}

}

@media (max-width:991px){

.navbar{

background:#111;

padding:15px 0;

}

.navbar-collapse{

background:#111;

padding:25px;

margin-top:15px;

border-radius:12px;

}

.nav-link{

margin:12px 0;

}

.hero{height: unset;padding: 191px 0 93px;text-align:center;}

.hero-book{

width:280px;

margin-bottom:50px;

}

.hero-content h1{

font-size:70px;

}

.hero-content h4{

font-size:18px;

}

.hero-btn{

justify-content:center;

}

.author-content{

margin-top:50px;

text-align:center;

}

.book-content{

text-align:center;

margin-bottom:50px;

}

.book-image{

margin-top:40px;

}

.trailer{

text-align:center;

}

.trailer-content{

margin-bottom:50px;

}

.contact{

text-align:center;

padding-bottom: 5px;
}

.contact-content{

margin-bottom:50px;

}

.footer{

text-align:center;

}

.social-links{

justify-content:center;

margin-top:20px;

}

.price-buttons{

justify-content:center;

}

}

@media (max-width:768px){

.hero-content h1{

font-size:58px;

}

.section-heading h2{

font-size:48px;

}

.author-content h2,
.book-content h2,
.contact-content h2{

font-size:48px;

}

.trailer-content h2{

font-size:48px;

}

.chapter-card{

padding:35px 25px;

}

.contact-form{

padding:30px;

}

.footer h3{

font-size:38px;

}

}

@media (max-width:576px){

.hero{

padding-top:120px;

}

.hero-content h1{

font-size:46px;

}

.hero-content p{

font-size:15px;

}

.section-heading h2{

font-size:38px;

}

.author-content h2,
.book-content h2,
.contact-content h2{

font-size:40px;

}

.trailer-content h2{

font-size:40px;

}

.btn-main,
.btn-outline-custom{

width:100%;

text-align:center;

}

.hero-btn{

flex-direction:column;

}

.price-buttons{

flex-direction:column;

}

.price-buttons .btn{

width:100%;

}

.hero-book{

width:230px;

}

#backToTop{

right:15px;

bottom:15px;

width:45px;

height:45px;

font-size:18px;

}

.brands img{

max-height:28px;

margin:15px auto;

}

.contact-form{

padding:20px;

}

.footer{

padding:60px 0 25px;

}

}

@media (max-width:400px){

.hero-content h1{

font-size:38px;

}

.section-heading h2{

font-size:32px;

}

.author-content h2,
.book-content h2,
.contact-content h2{

font-size:34px;

}

.trailer-content h2{

font-size:34px;

}

.logo img{

height:55px;

}

}

/*==================================================
            END
==================================================*/


/* Progress Bar */

#progress-bar{

position:fixed;

top:0;

left:0;

width:0;

height:4px;

background:linear-gradient(90deg,#d6a64f,#ffd46b);

z-index:999999;

}

/* Fade Animation */

.show-item{

animation:fadeUp .8s forwards;

}

@keyframes fadeUp{

from{

opacity:0;

transform:translateY(40px);

}

to{

opacity:1;

transform:translateY(0);

}

}

/* Floating Cards */

@keyframes floatCard{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}

.hero-content {
    text-align: center;
}
.chapters .section-heading {
    margin-bottom: 0px;
}


.reviews{

padding: 50px 0 50px;

background:#090909;
}

.review-slider{

    margin-top:50px;

}

.review-card{

    position:relative;

    height:300px;

    border:1px solid #9b7431;

    border-radius:12px;

    overflow:hidden;

    cursor:pointer;

}

.review-card img{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.7s;

}

.review-overlay{

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.60);

    backdrop-filter:blur(2px);

}

.review-content{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:25px;

    z-index:5;

}

.review-card:hover img{

    transform:scale(1.15);

}

.review-card:hover{

    border-color:#d8a646;

    box-shadow:0 0 30px rgba(216,166,70,.25);

}

.stars{

    color:#d8a646;

    font-size:22px;

    margin-bottom:18px;

}

.review-content p{

width: 80%;

color:#fff;

font-size: 17px;

line-height: 28px;
}

.review-content h4{

    margin-top:18px;

    color:#d8a646;

}

.review-content span{

    color:#d4d4d4;

}

.review-btn{

    text-align:center;

    margin-top:40px;

}


.swiper-slide:nth-child(1) .review-card{
    background:url("../images/nb1.png") center/cover;
}

.swiper-slide:nth-child(2) .review-card{
    background:url("../images/bg.png") center/cover;
}

.swiper-slide:nth-child(3) .review-card{
    background:url("../images/Banner-4.jpg") center/cover;
}

.swiper-slide:nth-child(4) .review-card{
    background:url("../images/Banner5.png") center/cover;
}


.swiper-slide:nth-child(5) .review-card{
    background:url("../images/bg.png") center/cover;
}

.swiper-slide:nth-child(6) .review-card{
    background:url("../images/Banner-4.jpg") center/cover;
}

.swiper-slide:nth-child(7) .review-card{
    background:url("../images/Banner5.png") center/cover;
}

.btn-outline-custom{

    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;

    padding:15px 35px;

    border:2px solid #d6a64f;

    border-radius:8px;

    background:transparent;

    color:#fff;

    font-weight:600;

    transition:.4s ease;

}

.btn-outline-custom:hover{

    background:#d6a64f;

    color:#000;

    border-color:#d6a64f;

}

.reviews .section-title {
    text-align: center;
    font-size: 57px;
    color: #d6a64f;
}

html{

scroll-behavior:smooth;

}

body{

overflow-x:hidden;

}

.reveal{

will-change:transform,opacity;

}

.reveal{
    opacity:1;
}

.animate-section{
    overflow:hidden;
}

/* Cursor */

.cursor{

position:fixed;

width:20px;

height:20px;

border:2px solid #d6a64f;

border-radius:50%;

pointer-events:none;

z-index:99999;

transform:translate(-50%,-50%);

transition:transform .15s ease;

mix-blend-mode:difference;

}

.cursor-dot{

position:fixed;

width:6px;

height:6px;

background:#d6a64f;

border-radius:50%;

pointer-events:none;

z-index:99999;

transform:translate(-50%,-50%);

}

/* Spotlight */

.spotlight{

position:fixed;

width:450px;

height:450px;

border-radius:50%;

pointer-events:none;

background:radial-gradient(circle,
rgba(214,166,79,.12),
transparent 70%);

transform:translate(-50%,-50%);

z-index:0;

}

/* Shine */

.shine{

position:relative;

overflow:hidden;

}

.shine::before{

content:"";

position:absolute;

top:0;

left:-150%;

width:70%;

height:100%;

background:linear-gradient(
90deg,
transparent,
rgba(255,255,255,.35),
transparent);

transform:skewX(-25deg);

transition:.8s;

}

.shine:hover::before{

left:180%;

}

html.smooth-scroll {
  scroll-behavior: smooth;
}


.inner-banner{
    position: relative;
    padding: 180px 0 100px;
    background: url("../images/banner1.png") center center/cover no-repeat;
    overflow: hidden;
}

.inner-banner .overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.60);
}

.inner-banner-content{
    position:relative;
    z-index:2;
}

.inner-banner h1{
    color:#fff;
    font-size:60px;
    font-weight:700;
    margin-bottom:15px;
}

.breadcrumb{
    background:none;
    margin:0;
}

.breadcrumb-item,
.breadcrumb-item a{
    color: #fff !important;
    text-decoration:none;
}

.breadcrumb-item + .breadcrumb-item::before{
    color:#fff;
}

.navbar-nav .nav-link.active, .navbar-nav .nav-link.show{
    color: var(--primary);
}

.navbar .nav-link.active{
        color: var(--primary);
    position:relative;
}

.navbar .nav-link.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-6px;
    width:100%;
    height:2px;
    background:var(--primary);
}

.inner-testimonial .review-content {
    position: relative;
}


/*====================================
        CONTACT SECTION
====================================*/

.contact-section{
    position:relative;
    padding:120px 0;
    background:#080808;
    overflow:hidden;
}

.contact-section::before{
    content:"";
    position:absolute;
    inset:0;
    background:url("../images/contact-bg.jpg") center center/cover;
    opacity:.12;
}

.contact-section .container{
    position:relative;
    z-index:2;
}

/*=====================
      Heading
======================*/

.section-heading .section-subtitle{
    color:#D6A547;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
    text-transform:uppercase;
}

.section-heading h2{
    font-size:58px;
    color:#fff;
    font-weight: 500;
    margin:15px 0;
    line-height:1.15;
}

.section-heading h2 span{
    display:block;
    color:#D6A547;
}

.section-heading p{
    color:#bdbdbd;
    max-width:750px;
    margin:auto;
    line-height:1.9;
    font-size:16px;
}

/*========================
     Contact Cards
=========================*/

.contact-info-wrapper{
    display:flex;
    flex-direction:column;
    gap:25px;
}

.contact-card{
    display:flex;
    align-items:center;
    gap:22px;
    padding:28px;
    background:rgba(255,255,255,.05);
    border:1px solid rgba(214,165,71,.15);
    border-radius:20px;
    backdrop-filter:blur(18px);
    transition:.45s;
}

.contact-card:hover{
    transform:translateY(-8px);
    border-color:#D6A547;
    box-shadow:0 18px 45px rgba(214,165,71,.18);
}

.contact-card .icon{
    width:72px;
    height:72px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#D6A547;
    color:#111;
    font-size:24px;
    flex-shrink:0;
}

.contact-card span{
    color:#D6A547;
    font-size:13px;
    text-transform:uppercase;
    letter-spacing:2px;
}

.contact-card h5{
    color:#fff;
    margin-top:8px;
    font-size:20px;
    line-height:1.5;
}

/*========================
      Social
=========================*/

.social-box{
    margin-top:40px;
}

.social-box h4{
    color:#fff;
    margin-bottom:20px;
}

.social-icons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.social-icons a{
    width:55px;
    height:55px;
    border-radius:50%;
    border:1px solid rgba(214,165,71,.3);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    transition:.4s;
    font-size:18px;
    text-decoration:none;
}

.social-icons a:hover{
    background:#D6A547;
    color:#111;
    transform:translateY(-6px) rotate(360deg);
}

/*==========================
        Form Wrapper
===========================*/

.contact-form-wrapper{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(214,165,71,.18);
    border-radius:28px;
    padding:55px;
    backdrop-filter:blur(22px);
    position:relative;
    overflow:hidden;
}

.contact-form-wrapper::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    background:#D6A547;
    filter:blur(170px);
    opacity:.08;
    right:-100px;
    top:-100px;
}

.form-top{
    margin-bottom:35px;
}

.form-top span{
    color:#D6A547;
    letter-spacing:3px;
    text-transform:uppercase;
    font-size:13px;
}

.form-top h3{
    color:#fff;
    font-size:38px;
    margin-top:10px;
}

/*===========================
      Floating Labels
============================*/

.form-group{
    position:relative;
    margin-bottom:28px;
}

.form-group input,
.form-group textarea{
    width:100%;
    background:transparent;
    border:none;
    border-bottom:2px solid rgba(255,255,255,.15);
    padding:18px 5px;
    color:#fff;
    font-size:16px;
    outline:none;
    transition:.35s;
}

.form-group textarea{
    resize:none;
}

.form-group label{
    position:absolute;
    left:5px;
    top:18px;
    color:#aaa;
    pointer-events:none;
    transition:.3s;
}

.form-group input:focus,
.form-group textarea:focus{
    border-color:#D6A547;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group textarea:focus + label,
.form-group textarea:valid + label{
    top:-12px;
    left:0;
    color:#D6A547;
    font-size:13px;
}

/*==========================
        Button
===========================*/

.contact-btn{
    width:100%;
    height:62px;
    border:none;
    background:#D6A547;
    color:#111;
    font-weight:700;
    letter-spacing:2px;
    border-radius:12px;
    transition:.4s;
    font-size:15px;
}

.contact-btn i{
    margin-left:10px;
}

.contact-btn:hover{
    background:#fff;
    transform:translateY(-4px);
    box-shadow:0 15px 35px rgba(214,165,71,.35);
}

/*===========================
     Decorative Shapes
============================*/

.contact-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(140px);
}

.shape-1{
    width:300px;
    height:300px;
    background:#D6A547;
    top:-120px;
    left:-120px;
    opacity:.10;
}

.shape-2{
    width:400px;
    height:400px;
    background:#D6A547;
    right:-150px;
    bottom:-180px;
    opacity:.08;
}

/*==========================
      Responsive
===========================*/

@media(max-width:991px){

.section-heading h2{
    font-size:42px;
}

.contact-form-wrapper{
    padding:35px;
    margin-top:50px;
}

}

@media(max-width:767px){

.contact-section{
    padding:80px 0;
}

.section-heading h2{
    font-size:34px;
}

.form-top h3{
    font-size:28px;
}

.contact-form-wrapper{
    padding:28px;
}

.contact-card{
    padding:20px;
}

.contact-card .icon{
    width:60px;
    height:60px;
    font-size:20px;
}

.contact-card h5{
    font-size:17px;
}

.social-icons{
    justify-content:center;
}

}

#response{

margin-top:25px;

}

.alert{

padding:18px;

border-radius:8px;

font-weight:600;

}

.alert-success{

background:#198754;

color:#fff;

}

.alert-danger{

background:#dc3545;

color:#fff;

}



.video-modal{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.95);
    display:none;
    justify-content:center;
    align-items:center;
    padding:20px;
    z-index:999999;
}

.video-content{
    width:100%;
    max-width:1000px;
    position:relative;
}

.video-content video{
    width:100%;
    height:auto;
    display:block;
    border-radius:10px;
}

.close-video{
    position:absolute;
    top:-45px;
    right:0;
    color:#fff;
    font-size:40px;
    cursor:pointer;
}

@media (max-width:768px){

    .video-content{
        max-width:100%;
    }

    .close-video{
        top:-35px;
        right:5px;
        font-size:30px;
    }

}

@media (max-width:576px){

    .video-modal{
        padding:15px;
    }

    .close-video{
        top:-30px;
        font-size:26px;
    }
    

}

@media (max-width: 991px) {
    .row.align-items-center.min-vh-100 {
        min-height: auto !important;
    }
}