* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --theme-color: #62451E;
    --white-color: #fff;
    --black-color: #000;
}

body {
    font-family: "Poppins", sans-serif;
}

a {
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Inter", sans-serif;
}

.para {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}

.white-btn {
    background-color: var(--white-color);
    color: var(--theme-color);
    font-size: 16px;
    font-weight: 500;
    padding: 15px 30px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
}

.white-btn i {
    border: 1px solid var(--theme-color);
    border-radius: 100px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brown-btn {
    background-color: var(--theme-color);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 500;
    padding: 15px 20px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: capitalize;
}

.brown-btn i {
    border: 1px solid var(--white-color);
    border-radius: 100px;
    width: 20px;
    height: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.same-heading {
    color: var(--white-color);
    font-size: 50px;
    font-weight: 500;
}

/* header start */
.header .nav-item .nav-link {
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--black-color);
    font-family: "Poppins", sans-serif;
}

.mobile-screen-logo {
    display: none;
}

.big-screen-logo {
    display: block;
}

.header .nav-item .nav-link.active {
    border-bottom: 1px solid var(--black-color);
}

.header .navbar-nav {
    gap: 30px;
}

.header {
    position: relative;
    padding: 24px 0px;
}

.header .navbar-brand {
    position: absolute;
    top: -24px;
}

.header-right ul {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.header-right ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    background-color: var(--theme-color);
}

.header-right ul li a i {
    color: var(--white-color);
    font-size: 24px;
}

/* header end */

/* home banner start */
.home-banner {
    background-image: url("../images/banner-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 185px 0px;
}

.home-banner-image img {
    width: 100%;
}

.home-banner-content h1 {
    margin-bottom: 20px;
    font-size: 50px;
    font-weight: 600;
    color: var(--white-color);
}

.home-banner-btn {
    margin-top: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
}

/* home banner end */

/* partner sec start */
.partner-sec {
    background-color: var(--black-color);
    padding: 30px 0px;
}

.partner-logo-box {
    text-align: center;
}

/* partner sec end */

/* about sec start */
.about-sec {
    /* background-image: url("../images/about-bg.png");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat; */
    position: relative;
    z-index: 1;
}

.about-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    /* background-color: #a175468c; */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-the-author-sec {
    /* padding: 100px 0px; */
    padding-bottom: 100px;
}

.about-the-author-content h2 {
    color: var(--white-color);
    font-size: 60px;
    font-weight: 500;
    margin-bottom: 20px;
}

.about-the-author-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.author-image img {
    width: 100%;
}

.about-bg-large {
    background-image: url("../images/about-bg.png");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px 300px;
}

.about-the-book-sec {
    padding: 100px 0px 150px;
    position: relative;
    z-index: 1;
    /* margin-bottom: 300px; */
    background-image: url("../images/about-the-book-bg.png");
    background-position: top;
    background-size: cover;
    background-repeat: no-repeat;
}

/* .about-the-book-sec::before {
    content: "";
    position: absolute;
    z-index: -1;
    background-color: var(--black-color);
    width: 117rem;
    height: 100%;
    bottom: 0;
    left: -288px;
    border-radius: 30px;
}

.about-the-book-sec::after {
    content: "";
    position: absolute;
    z-index: -2;
    background-color: #EDD1CA8C;
    width: 119rem;
    height: 58rem;
    bottom: -22px;
    left: -19rem;
    border-radius: 30px;
} */

.about-the-book-btn {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
}

.about-the-book-image {
    text-align: center;
}

/* about sec end */

/* testimonial sec */
.testimonial-sec {
    background-color: var(--black-color);
    padding: 100px 0px;
}

.testi-box {
    background-color: var(--theme-color);
    padding: 30px;
    border-radius: 10px;
}

.testi-box img {
    width: unset !important;
}

.testi-box i {
    color: var(--white-color);
    font-size: 40px;
}

.testi-box-content {
    text-align: center;
}

.testi-box-content p {
    margin: 15px 0px 15px;
}

.reviews-star i {
    color: #FFC402;
    font-size: 14px;
}

.reviews-star {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.testi-client {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.testimonial-content h4 {
    color: var(--white-color);
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 400;
}

.testi-slides .owl-dots {
    margin-top: 30px !important;
}

/* testimonial sec */

/* blogs sec */
.blogs-sec {
    background-image: url("../images/blogs-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 100px 0px;
}

.blogs-content {
    text-align: center;
    margin-bottom: 40px;
}

.blogs-content h4 {
    color: var(--white-color);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

.blog-box {
    background-color: var(--black-color);
    padding: 20px 20px 50px 20px;
    border-radius: 30px;
}

.blog-box img {
    width: 100%;
}

.blog-box-content h3 {
    color: var(--white-color);
    text-align: center;
    margin: 30px 0px;
    font-size: 26px;
    font-weight: 600;
}

.blog-box-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* blogs sec */

/* form sec start */
.form-sec {
    background-image: url("../images/contact-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 150px 0px;
    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(--theme-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(--theme-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 end */

/*footer sec*/
.footer {
    background-color: var(--black-color);
}

.footer-logo {
    display: flex;
}

.footer-links {
    padding-top: 80px;
}

.footer-links h3 {
    color: var(--white-color);
    font-size: 26px;
    font-weight: 500;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white-color);
    font-size: 16px;
    font-weight: 400;
}

.footer-copyright {
    padding: 80px 0px 30px;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
}

/*footer sec*/

.about-author-bg {
    background-image: url("../images/about-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-author-bg.about-sec .about-the-author-sec {
    padding-top: 100px;
}

/*video-sec start*/
.video-sec {
    background-image: url("../images/video-sec-bg.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    padding: 70px 0px;
}

.video-sec-content {
    background-color: #000;
    height: 650px;
    border-radius: 20px;
    border: 10px solid var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-sec-content1 {
     background-image: url("../images/video1.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-sec-content2 {
     background-image: url("../images/video2.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.video-sec-content img {
    cursor: pointer;
}

.video-section {
    background-color: var(--theme-color);
    padding: 50px 0px;
}
/*video-sec end*/