* {
    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: 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;
}

.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;
}

.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;
}

.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: 1080px;
    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: 0px 30px 30px 30px;
    height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    border-radius: 0px 0px 25px 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: 17px;
    text-align: center;
    font-weight: 700;
    margin-bottom: 30px;
}

.story-corner-box {
    border-radius: 25px;
}

/* story corner sec end */