@font-face {
    font-family: 'MyWebFont';
    /* overflow-x: hidden; */
    src: url('../fonts/MyDearWatson-Regular.otf');
}

@font-face {
    font-family: 'Cambria';
    /* overflow-x: hidden; */
    src: url('../fonts/Cambria.ttf');
}

body {
    color: #444444;

    font-family: "MyWebFont" !important;
}

.pageFace p {

    font-family: "Cambria" !important;
}

a {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 996;
    background: #dfc9a9;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.back-to-top i {
    font-size: 28px;
    color: #000;
    line-height: 0;
}

.back-to-top:hover {
    background: #dfc9a9;
    color: #000;
}

.back-to-top.active {
    visibility: visible;
    opacity: 1;
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}


/*-------------------------------------------------------------- # Header --------------------------------------------------------------*/

div.scroll {
    overflow-x: hidden;
    overflow-y: auto;
}

#header {
    transition: all 0.5s;
    z-index: 997;
    padding: 20px 0;
    background: #694937;
}

#header.header-scrolled {
    padding: 12px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#header .logo {
    font-size: 30px;
    margin: 0;
    padding: 0;
    font-weight: 600;
}

#header .logo a {
    color: #dfc9a9;
}

#header .logo a span {
    color: #dfc9a9;
    margin-left: 4px;
    display: none;
}

.backto-all span {
    display: none;
}

#header .logo img {
    max-height: 40px;
}


/*--------------------------------------------------------------
# Get Startet Button
--------------------------------------------------------------*/

.get-started-btn {
    margin-left: 30px;
    background: #e03a3c;
    color: #fff;
    border-radius: 4px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.get-started-btn:hover {
    background: #111111;
    color: #fff;
}

@media (max-width: 992px) {
    .get-started-btn {
        margin: 0 15px 0 0;
        padding: 6px 18px;
    }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/


/**
* Desktop Navigation 
*/

.navbar {
    padding: 0;
}

.navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
}

.navbar li {
    position: relative;
}

.navbar a,
.navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-size: 15px;
    font-weight: 600;
    color: #111111;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
    color: #e03a3c;
}

.navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 30px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
}

.navbar .dropdown ul li {
    min-width: 200px;
}

.navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 14px;
}

.navbar .dropdown ul a i {
    font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
    color: #e03a3c;
}

.navbar .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
}

@media (max-width: 1366px) {
    .navbar .dropdown .dropdown ul {
        left: -90%;
    }

    .navbar .dropdown .dropdown:hover>ul {
        left: -100%;
    }
}


/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
    color: #111111;
    font-size: 28px;
    cursor: pointer;
    display: none;
    line-height: 0;
    transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
    color: #fff;
}

@media (max-width: 991px) {
    .mobile-nav-toggle {
        display: block;
    }

    .navbar ul {
        display: none;
    }
}

.navbar-mobile {
    position: fixed;
    overflow: hidden;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    transition: 0.3s;
    z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
    position: absolute;
    top: 15px;
    right: 15px;
}

.navbar-mobile ul {
    display: block;
    position: absolute;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    padding: 10px 0;
    background-color: #fff;
    overflow-y: auto;
    transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
    padding: 10px 20px;
    font-size: 15px;
    color: #111111;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
    color: #e03a3c;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
    margin: 15px;
}

.navbar-mobile .dropdown ul {
    position: static;
    display: none;
    margin: 10px 20px;
    padding: 10px 0;
    z-index: 99;
    opacity: 1;
    visibility: visible;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
    min-width: 200px;
}

.navbar-mobile .dropdown ul a {
    padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
    font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
    color: #e03a3c;
}

.navbar-mobile .dropdown>.dropdown-active {
    display: block;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
    width: 100%;
    height: 100vh;
    background: url(../img/cover-1.png) top center no-repeat;
    position: relative;
    padding-top: 82px;
    background-position: center;
    background-size: cover;
}

#hero h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
}

.bg-hero-mobile img {
    width: 100%;
    height: calc(100vh - 80px);
    object-fit: unset;
}

#hero h2 {
    color: #fff;
    margin: 10px 0 0 0;
    font-size: 24px;
}

.btn-get-started {
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 1px;
    display: inline-block;
    padding: 10px 30px;
    border-radius: 4px;
    transition: 0.5s;
    margin-top: 30px;
    color: #000;
    border: 2px solid #000 !important;
    background: #dfc9a9;
    /* border     : 2px solid #dfc9a9; */
    text-transform: uppercase;
    position: absolute;
    bottom: 13%;
}

.btn-get-started:hover {
    color: #000;
}

@media (max-width: 768px) {
    #hero {
        text-align: center;
        padding-top: 58px;
    }

    #hero h1 {
        font-size: 28px;
    }

    #hero h2 {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-height: 500px) {
    #hero {
        height: 120vh;
    }
}


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/

section {
    padding: 60px 0;
    overflow: hidden;
    position: relative;
    padding-bottom: 0px;
}

.section-title {
    text-align: center;
    padding-bottom: 4px;
    position: relative;
}

.section-title h2 {
    font-size: 32px;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2::after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: #dfc9a9;
    bottom: 0;
    left: calc(50% - 25px);
}

.section-title p {
    margin-bottom: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
    color: #fff;
    font-size: 14px;
    /* background: #694937;*/
}

.footer-inner #footer .footer-top {
    padding: 60px 0 30px 0;
    background: #1b1b1b;
}

#footer .footer-top .footer-contact {
    margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
    font-size: 26px;
    line-height: 1;
    font-weight: 700;
}

#footer .footer-top .footer-contact h3 span {
    color: #e03a3c;
}

#footer .footer-top .footer-contact p {
    font-size: 14px;
    line-height: 24px;
    margin-bottom: 0;
}

#footer .footer-top h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-top h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: #e03a3c;
    bottom: 0;
    left: 0;
}

#footer .footer-top .footer-links {
    margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#footer .footer-top .footer-links ul i {
    padding-right: 2px;
    color: white;
    font-size: 18px;
    line-height: 1;
}

#footer .footer-top .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
    padding-top: 0;
}

#footer .footer-top .footer-links ul a {
    color: #aaaaaa;
    transition: 0.3s;
    display: inline-block;
    line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
    text-decoration: none;
    color: #fff;
}

#footer .footer-newsletter {
    font-size: 15px;
}

#footer .footer-newsletter h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

#footer .footer-newsletter form {
    margin-top: 30px;
    background: #fff;
    padding: 5px 10px;
    position: relative;
    border-radius: 4px;
    text-align: left;
}

#footer .footer-newsletter form input[type=email] {
    border: 0;
    padding: 4px 8px;
    width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type=submit] {
    position: absolute;
    top: 0;
    right: -1px;
    bottom: 0;
    border: 0;
    background: none;
    font-size: 16px;
    padding: 0 20px;
    background: #e03a3c;
    color: #fff;
    transition: 0.3s;
    border-radius: 0 4px 4px 0;
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type=submit]:hover {
    background: #e35052;
}

#footer .credits {
    padding-top: 5px;
    font-size: 13px;
}

#footer .social-links .icons-blog {
    font-size: 25px;
    display: flex;
    background: #dfc9a9;
    color: #000;
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 43px;
    transition: 0.3s;
    justify-content: center;
    align-items: center;
}

#footer .social-links .icons-blog:hover {
    background: #bbb9a7;
    color: #000;
    text-decoration: none;
}

.contact-auther-name {
    color: #000;
    background: #dfc9a9;
    font-size: 24px;
    font-weight: 500;
    margin-right: 30px;
    border-radius: 4px;
    padding: 4px 20px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-auther-name:hover {
    color: #000;
}


/* about page start */

.portfolio-wrap {
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.portfolio-wrap::before {
    content: "";
    background: rgba(255, 255, 255, 0.5);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    transition: all ease-in-out 0.3s;
    z-index: 2;
    opacity: 0;
}

.portfolio-wrap .portfolio-links {
    opacity: 1;
    left: 0;
    right: 0;
    z-index: 3;
    position: absolute;
    transition: all ease-in-out 0.3s;
    display: flex;
    justify-content: center;
}

.portfolio-wrap .portfolio-links button {
    color: #fff;
    font-size: 26px;
    text-transform: capitalize;
    text-align: center;
    background: #694937;
    transition: 0.3s;
    width: auto;
    padding: 0 20px;
    border: none;
}

.portfolio-wrap .portfolio-links button:hover {
    background: #694937;
}

.content-big-right-inner p {
    margin-bottom: 0 !important;
    margin-left: 10px !important;
}

.portfolio-wrap .portfolio-links button {
    border-left: 1px solid #37b3ed;
}

.portfolio-wrap:hover::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 1;
}

.portfolio-wrap:hover .portfolio-links {
    opacity: 1;
    bottom: 0;
    top: 0;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
}

.portfolio-wrap img {
    object-fit: cover;
    width: 100%;
}


/* about page end */


/* chapter start css*/

.bookWrapper {
    width: 1000px;
    height: 700px;
    margin: 0 auto;
}

.bookBg {
    position: relative;
    background-color: #3a2419;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

.pageBg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 0px;
}

.pageWrapper {
    position: absolute;
    width: 50%;
    height: 100%;
    float: left;
    -webkit-font-smoothing: antialiased;
}

.page {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to top, #ebf8fe, #ebf8fe, #ebf8fe, #ebf8fe, #ebf8fe);

}

.pageFace {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding: 20px 42px 42px 42px;
}

.front {
    background-image: linear-gradient(to top, #ebf8fe, #ebf8fe, #ebf8fe, #ebf8fe, #ebf8fe);
    box-shadow: 0px 5px 3px #000;
}

.back {
    background-image: linear-gradient(to top, #ebf8fe, #ebf8fe, #ebf8fe, #ebf8fe, #ebf8fe);
    box-shadow: 0px 5px 3px #000;
}

.pageFoldRight {
    position: absolute;
    width: 0px;
    height: 0px;
    top: 0;
    right: 0;
    border-left-width: 1px;
    border-left-color: #DDDDDD;
    border-left-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #DDDDDD;
    border-bottom-style: solid;
    box-shadow: -5px 5px 10px #dddddd;
}

.pageFoldLeft {
    position: absolute;
    width: 0px;
    height: 0px;
    top: 0;
    left: 0;
    border-right-width: 1px;
    border-right-color: #DDDDDD;
    border-right-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #DDDDDD;
    border-bottom-style: solid;
    box-shadow: 5px 5px 10px #dddddd;
}

.pageFace p {
    font-size: 18px;
}

.capital-letter {
    color: #d5f5ff;
    background-image: repeating-linear-gradient(5deg, #795548 0%, #795548 23%, #795548 31%);
    font-family: auto;
    transform: scale(1);
    line-height: 0;
    background-clip: text;
    -webkit-background-clip: text;
    font-weight: 900;
    font-size: 147px;
    vertical-align: middle;
    grid-area: overlap;
    letter-spacing: 1px;
    -webkit-text-stroke: 7px transparent;
}

.content-big-left {
    display: flex;
    align-items: center;
}

.content-inner {
    display: flex;
    justify-content: center;
    height: 100%;
    flex-direction: column;
    text-align: center;
}

.title-blog {
    width: 90px;
}

.page-flow {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    width: 100%;
    text-align: center;
}

/*.book-read-blog {
    padding-left: 10rem;
    padding-right: 10rem;
}
*/

/* chapter end book */


/*home page start */

.conatiner-inner-blog {
    position: absolute;
    bottom: 5%;
    left: 0;
    right: 0;
}

.book-read-blog .card {
    margin-bottom: 30px;
}

.pages-container .shadow {
    box-shadow: none;
}

.backto-all a {
    color: #000;
    text-decoration: unset !important;
}

.backto-all a:hover {
    color: #000;
    text-decoration: unset !important;
}

.backto-all {
    margin: 30px 0;
}

.chapter-section {
    padding-top: 0 !important;
}


/*home page end */


/* media query start */

/*@media (min-width: 1366px) and (max-width: 1449.98px) {
    .book-read-blog {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
*/

/* @media (min-width: 768px) and (max-width: 881.98px) {
    .footer-inner {
        position: absolute;
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
    }
} */

@media (min-width: 0px) and (max-width: 575px) {
    #mobile_view_none {
        display: none;
    }

    #iphone_view {
        display: none;
    }
}

@media (min-width: 800px) and (max-width: 801.98px) {
    .footer-inner {
        position: absolute;
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
    }
}

@media (min-width: 768px) and (max-width: 769.98px) {
    .footer-inner {
        position: absolute;
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
    }
}

@media (min-width: 820px) and (max-width: 821.98px) {
    .footer-inner {
        position: absolute;
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
    }
}

@media (min-width: 912px) and (max-width: 913.98px) {
    .footer-inner {
        position: absolute;
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
    }
}

@media (min-width: 1024px) and (max-width: 1025.98px) {
    .footer-inner {
        position: absolute;
        width: 100%;
        right: 0;
        left: 0;
        bottom: 0;
    }
}

@media (max-width: 1440px) {
    .bookWrapper {
        width: 1000px;
        height: 470px;
        margin: 0 auto;
    }

    .pageFace {
        padding: 16px 20px;
    }

    .pageFace p {
        margin-bottom: 12px;
        font-size: 16.5px;
        margin-top: 0 !important;
    }

    .content-big-right img {
        width: 80px;
        height: 80px;
    }

    .backto-all {
        margin: 5px 0;
    }

    .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 22px;
    }
}

/*@media (min-width: 768px) and (max-width: 1280.98px) {
    .book-read-blog {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}
*/
/*@media (min-width: 320px) and (max-width: 767.98px) {
    .book-read-blog {
        padding-left: 0;
        padding-right: 0;
    }
}
*/
/*@media (min-width: 320px) and (max-width: 767.98px) {
    .book-read-blog {
        padding-left: 0;
        padding-right: 0;
    }
}
*/
@media (min-width: 375px) and (max-width: 575.98px) {
    .content-big-right img {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 320px) and (max-width: 375.98px) {
    .content-big-right img {
        width: 32px;
        height: 32px;
    }
}

@media (min-width: 720px) and (max-width: 767.98px) {
    .pageFace p {
        font-size: 13.9px;
        line-height: 20px;
    }
}

@media (min-width: 700px) and (max-width: 719.98px) {
    .pageFace p {
        font-size: 13px;
        line-height: 20px;
    }
}

@media (min-width: 575px) and (max-width: 699.98px) {
    .pageFace p {
        font-size: 12.5px;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 565px) and (max-width: 574.98px) {
    .bookWrapper {
        width: 1000px;
        height: 520px;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }

    .pageFace p {
        font-size: 16.2px;
    }


}

@media (min-width: 556px) and (max-width: 564.98px) {
    .pageFace p {
        margin-bottom: 12px;
        font-size: 12px !important;
        margin-top: 0 !important;
    }

    .bookWrapper {
        height: 583px;
        margin-bottom: 4px;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 540px) and (max-width: 555.98px) {
    .pageFace p {
        margin-bottom: 6px;
        font-size: 12px !important;
        margin-top: 0 !important;
    }

    .bookWrapper {
        height: 460px;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 520px) and (max-width: 539.98px) {
    .bookWrapper {
        height: 500px;
    }

    .pageFace p {
        margin-bottom: 6px;
        font-size: 12px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 500px) and (max-width: 519.98px) {
    .bookWrapper {
        width: 1000px;
        height: 504px;
        margin: 0 auto;
    }

    .pageFace p {
        margin-bottom: 6px;
        font-size: 11px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }

    .pageFace p {
        margin-bottom: 5px;
        font-size: 8.5px;
    }
}

@media (min-width: 480px) and (max-width: 500.98px) {
    .bookWrapper {
        height: 500px;
    }

    .pageFace p {
        margin-bottom: 5px;
        font-size: 8.5px;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 460px) and (max-width: 479.98px) {
    .bookWrapper {
        width: 1000px;
        height: 535px;
        margin: 0 auto;
    }

    .pageFace p {
        margin-bottom: 4px;
        font-size: 11.5px;
        margin-top: 0 !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 450px) and (max-width: 459.98px) {
    .pageFace p {
        margin-bottom: 4px;
        font-size: 11.5px;
        margin-top: 0 !important;
    }

    .bookWrapper {
        width: 1000px;
        height: 532px;
        margin: 0 auto;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 440px) and (max-width: 450.98px) {
    .bookWrapper {
        width: 1000px;
        height: 530px;
        margin: 0 auto;
    }

    .pageFace p {
        margin-bottom: 6px;
        font-size: 12.5px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .content-big-right-inner p {
        margin-bottom: 6px !important;
        margin-left: 10px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 430px) and (max-width: 439.98px) {
    .pageFace p {
        margin-bottom: 6px;
        font-size: 12.4px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .bookWrapper {
        height: 530px;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 420px) and (max-width: 429.98px) {
    .bookWrapper {
        height: 530px;
        margin: 0 auto;
    }

    .pageFace p {
        margin-bottom: 12px;
        font-size: 15.4px;
        margin-top: 0 !important;
        line-height: normal;
        margin-bottom: 6px;
    }

    .pageFace p {
        margin-bottom: 12px;
        font-size: 15.4px;
        margin-top: 0 !important;
        line-height: normal;
        margin-bottom: 6px;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 410px) and (max-width: 419.98px) {
    .bookWrapper {
        width: 1000px;
        height: 524px;
        margin: 0 auto;
    }

    .content-big-right-inner p {
        margin-bottom: 6px !important;
        margin-left: 10px !important;
    }

    .pageFace p {
        margin-bottom: 6px;
        font-size: 13.5px;
        margin-top: 0 !important;
        line-height: normal;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 384px) and (max-width: 392.98px) {
    .pageFace p {
        margin-bottom: 6px;
        font-size: 13px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .content-big-right-inner p {
        margin-bottom: 6px !important;
        margin-left: 10px !important;
    }

    .bookWrapper {
        width: 1000px;
        height: 512px;
        margin: 0 auto;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 393px) and (max-width: 409.98px) {
    .pageFace p {
        margin-bottom: 6px;
        font-size: 14px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .content-big-right-inner p {
        margin-bottom: 6px !important;
        margin-left: 10px !important;
    }

    .bookWrapper {
        height: 530px;
        margin: 0 auto;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 375px) and (max-width: 383.98px) {
    .pageFace p {
        margin-bottom: 4px;
        font-size: 12.4px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
        margin-left: 10px !important;
    }

    .bookWrapper {
        width: 1000px;
        height: 497px;
        margin: 0 auto;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 365px) and (max-width: 374.98px) {
    .bookWrapper {
        width: 1000px;
        height: 500px;
        margin: 0 auto;
    }

    .pageFace p {
        margin-bottom: 6px;
        font-size: 13px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .content-big-right-inner p {
        margin-bottom: 6px !important;
        margin-left: 10px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 350px) and (max-width: 364.98px) {
    .bookWrapper {
        width: 1000px;
        height: 510px;
        margin: 0 auto;
    }

    .pageFace p {
        margin-bottom: 6px;
        font-size: 12px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .content-big-right-inner p {
        margin-bottom: 6px !important;
        margin-left: 10px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 328px) and (max-width: 335.98px) {
    .pageFace p {
        margin-bottom: 6px;
        font-size: 12.4px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .bookWrapper {
        width: 1000px;
        height: 520px;
        margin: 0 auto;
    }

    .content-big-right-inner p {
        margin-bottom: 6px !important;
        margin-left: 6px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 336px) and (max-width: 340.98px) {
    .bookWrapper {
        width: 1000px;
        height: 536px;
        margin: 0 auto;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
        margin-left: 6px !important;
    }

    .pageFace p {
        margin-bottom: 4px;
        font-size: 12.5px;
        margin-top: 0 !important;
        line-height: normal;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 341px) and (max-width: 349.98px) {
    .bookWrapper {
        width: 1000px;
        height: 520px;
        margin: 0 auto;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
        margin-left: 6px !important;
    }

    .pageFace p {
        margin-bottom: 4px;
        font-size: 12.5px;
        margin-top: 0 !important;
        line-height: normal;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 320px) and (max-width: 327.98px) {
    .pageFace p {
        margin-bottom: 4px;
        font-size: 9.4px;
        margin-top: 0 !important;
        line-height: normal;
    }

    .bookWrapper {
        width: 1000px;
        height: 530px;
        margin: 0 auto;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
        margin-left: 10px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }
}

@media (min-width: 700px) and (max-width: 2560px) {
    #mobile_view {
        display: none;
    }

    #iphone_view {
        display: none;
    }
}

@media (min-width: 850px) and (max-width: 896.98px) {
    .bookWrapper {
        width: 1000px;
        height: 260px !important;
        margin: 0 auto;
    }

    .pageFace p {
        font-size: 10.4px !important;
        line-height: normal !important;
        margin-bottom: 4px !important;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
    }

    /* .backto-all {
        margin: 5px 0;
        font-size: 12px;
        line-height: normal;
    }
    .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 14px;
    } */
    .content-big-right img {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 812px) and (max-width: 844.98px) {
    .bookWrapper {
        width: 1000px;
        height: 270px !important;
        margin: 0 auto;
    }

    .pageFace p {
        font-size: 11.6px !important;
        line-height: normal !important;
        margin-bottom: 4px !important;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
    }

    /* .backto-all {
        margin: 5px 0;
        font-size: 12px;
        line-height: normal;
    }
    .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 14px;
    } */
    .content-big-right img {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 720px) and (max-width: 786.98px) {
    .bookWrapper {
        width: 1000px;
        height: 254px !important;
        margin: 0 auto;
    }

    .pageFace p {
        font-size: 9.5px !important;
        line-height: normal !important;
        margin-bottom: 4px !important;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
    }

    /* .backto-all {
        margin: 5px 0;
        font-size: 12px;
        line-height: normal;
    }
    .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 14px;
    } */
    .content-big-right img {
        width: 44px;
        height: 44px;
    }

    .pageFace {
        padding: 14px 20px;
    }

    .content-big-right img {
        width: 36px;
        height: 36px;
    }

    .page-flow {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 640px) and (max-width: 667.98px) {
    .bookWrapper {
        width: 1000px;
        height: 343px !important;
        margin: 0 auto;
    }

    .pageFace p {
        font-size: 15.4px;
        line-height: normal !important;
        margin-bottom: 4px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
    }

    /* .backto-all {
        margin: 3px 0;
        font-size: 12px;
        line-height: normal;
    }
    .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 14px;
    } */
    .content-big-right img {
        width: 44px;
        height: 44px;
    }

    .pageFace {
        padding: 8px 20px;
    }

    .content-big-right img {
        width: 36px;
        height: 36px;
    }

    .page-flow {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 604px) and (max-width: 605.98px) {
    .bookWrapper {
        width: 1000px;
        height: 270px !important;
        margin: 0 auto;
    }

    .pageFace p {
        font-size: 13.5px !important;
        line-height: normal !important;
        margin-bottom: 4px !important;
    }

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
    }

    /* .backto-all {
        margin: 5px 0;
        font-size: 12px;
        line-height: normal;
    }
    .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 14px;
    } */
    .content-big-right img {
        width: 44px;
        height: 44px;
    }

    .pageFace {
        padding: 8px 20px;
    }

    .content-big-right img {
        width: 36px;
        height: 36px;
    }

    .page-flow {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 480px) and (max-width: 568px) {
    .bookWrapper {
        width: 1000px;
        height: 270px !important;
        margin: 0 auto;
    }

    /* .pageFace p {
        font-size: 11.2px;
        line-height: normal !important;
        margin-bottom: 4px !important;
    } */

    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: block;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
    }

    /* .backto-all {
        margin: 5px 0;
        font-size: 12px;
        line-height: normal;
    }
    .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 14px;
    } */
    .content-big-right img {
        width: 44px;
        height: 44px;
    }

    .pageFace {
        padding: 14px 20px;
    }

    .content-big-right img {
        width: 36px;
        height: 36px;
    }

    .page-flow {
        position: absolute;
        bottom: 0px;
        left: 0;
        right: 0;
        width: 100%;
        text-align: center;
    }
}

@media (min-width: 914px) and (max-width: 915px) {
    .bookWrapper {
        width: 1000px;
        height: 318px !important;
        margin: 0 auto;
    }

    .pageFace p {
        font-size: 13.4px !important;
        line-height: normal !important;
        margin-bottom: 4px !important;
    }

    .content-big-right-inner p {
        margin-bottom: 4px !important;
    }

    /* .backto-all {
        margin: 5px 0;
        font-size: 12px;
        line-height: normal;
    }
    .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 14px;
    } */
}

@media (min-width: 665px) and (max-width: 667px) {
    #mobile_view_none {
        display: none;
    }

    #mobile_view {
        display: none;
    }

    #iphone_view {
        display: block;
    }
}

@media (min-width: 668px) and (max-width: 700px) {

    #mobile_view_none {
        display: block;
    }

    #mobile_view {
        display: none;
    }

    #iphone_view {
        display: none;
    }
}

@media (min-width: 575px) and (max-width: 664.98px) {

    #mobile_view_none {
        display: none;
    }

    #iphone_view {
        display: none;
    }
}

@media (min-width: 768px) and (max-width: 1024.98px) {
    .pageFace p {
        font-size: 14.4px;
    }
}

@media (max-width: 667.98px) {
    .book-read-blog .col {
        flex: 1 0 100%;
    }
}

@media (max-width: 767.98px) {
    .contact-to-auther-person {
        flex-direction: column;
    }

    .contact-auther-name {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (min-width: 575px) and (max-width: 740px) {
    .bg-hero-mobile img {
        width: 100%;
        height: calc(98vh - 80px);
        object-fit: cover;
    }
}

@media (max-width: 575.98px) {
    .hero-mobile {
        background: url(../img/Mobile-Cover-1.png) !important;
        background-repeat: no-repeat;
        height: 81vh !important;
        background-position: center;
        background-size: 100% 100% !important;
    }

    .btn-get-started {
        top: 9%;
        bottom: unset;
    }

    .bg-hero-mobile img {
        width: 100%;
        height: calc(100vh - 180px);
        object-fit: unset !important;
    }

    .hero-desktop {
        display: none;
    }

    .hero-mobile-inner {
        display: block !important;
    }

    /* .backto-all {
        margin: 5px 0;
        font-size: 12px;
        line-height: normal;
    } */
    .content-big-left {
        align-items: baseline;
    }

    /* .backto-all a {
        color: #000;
        text-decoration: unset !important;
        font-size: 14px;
    } */
}

@media (max-width: 1200px) {
    .bookWrapper {
        width: auto;
    }
}

@media (max-width: 1920px) {
    .backto-all {
        margin: 10px 0;
        font-size: 18px;
        line-height: normal;

    }
}

@media (min-width: 1440px) and (max-width: 1920.98px) {
    .bookWrapper {
        height: 640px;
    }

    .pageFace p {
        margin-bottom: 8px;
        font-size: 17.6px;
    }
}

/* media query end */


/*--------------------------------------------------------------
# Contact page start
--------------------------------------------------------------*/

.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 30px 0 32px 0;
    border-radius: 4px;
}

.contact .info-box i {
    font-size: 32px;
    color: #e03a3c;
    border-radius: 50%;
    padding: 8px;
    border: 2px dotted #f8d4d5;
}

.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
}

.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
}

.contact .php-email-form {
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
    padding: 20px;
    border-radius: 4px;
}

.contact .php-email-form .error-message {
    display: none;
    color: #fff;
    background: #ed3c0d;
    text-align: left;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .error-message br+br {
    margin-top: 25px;
}

.contact .php-email-form .sent-message {
    display: none;
    color: #fff;
    background: #18d26e;
    text-align: center;
    padding: 15px;
    font-weight: 600;
}

.contact .php-email-form .loading {
    display: none;
    background: #fff;
    text-align: center;
    padding: 15px;
}

.contact .php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid #18d26e;
    border-top-color: #eee;
    -webkit-animation: animate-loading 1s linear infinite;
    animation: animate-loading 1s linear infinite;
}

.contact .php-email-form .form-group {
    margin-bottom: 25px;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
    box-shadow: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
    border-color: #111111;
}

.contact .php-email-form input {
    padding: 10px 15px;
}

.contact .php-email-form textarea {
    padding: 12px 15px;
}

.contact .php-email-form button[type=submit] {
    background: #dfc9a9;
    border: 0;
    font-weight: 500;
    font-size: 20px;
    padding: 8px 26px;
    color: #000;
    transition: 0.4s;
    border-radius: 4px;
}

.contact .php-email-form button[type=submit]:hover {
    background: #dfc9a9;
}

@-webkit-keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes animate-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.contact {
    display: flex;
    justify-content: center;
    /*align-items: center;*/
}

.contact .php-email-form input:focus {
    border: 1px solid #ced4da;
}

.contact .php-email-form textarea:focus {
    border: 1px solid #ced4da;
}

.book-read-blog {
    height: 100%;
}

.hero-mobile-inner {
    display: none;
}

.row-inner-child {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-second-blog {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
}


/* contact page end */

.priv-inner {
    background: #fff;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    color: #000;
    border: 2px solid #3a2419;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.6;
    line-height: normal;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1px;
}

.priv-inner:hover {
    color: #000;
}

/*.privious-blog{
    margin: 0 auto 10px auto;
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    }*/
.next-blog {
    position: absolute;
    bottom: 50%;
    display: flex;
    right: -4%;
    transform: translate(0, 50%);
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.privious-blog {
    position: absolute;
    bottom: 50%;
    display: flex;
    left: -4%;
    z-index: 1;
    transform: translate(0, 50%);
    justify-content: center;
    align-items: center;
}

@media (min-width: 992px) and (max-width: 1200.98px) {
    .privious-blog {

        left: -2%;
    }

    .next-blog {

        right: -2%;

    }

    .priv-inner {

        width: 46px;
        height: 46px;

        font-size: 10px;

    }
}

@media (min-width: 767px) and (max-width: 991.98px) {
    .privious-blog {

        left: -2%;
    }

    .next-blog {

        right: -2%;

    }

    .priv-inner {

        width: 46px;
        height: 46px;

        font-size: 10px;

    }
}

@media (min-width: 484px) and (max-width: 767.98px) {
    .privious-blog {

        left: -3%;
    }

    .next-blog {

        right: -3%;

    }

    .priv-inner {

        width: 46px;
        height: 46px;

        font-size: 10px;

    }
}

@media (min-width: 480px) and (max-width: 483.98px) {
    .privious-blog {

        left: -3%;
    }

    .next-blog {

        right: -3%;

    }

    .priv-inner {

        width: 46px;
        height: 46px;

        font-size: 10px;

    }
}

@media (min-width: 320px) and (max-width: 479.98px) {
    .privious-blog {

        left: -6%;
    }

    .next-blog {

        right: -6%;
        position: absolute;

    }

    .priv-inner {

        width: 46px;
        height: 46px;

        font-size: 10px;

    }
}

.chapter-first-section-inner {
    background-image: url(../img/1st-TheGrandOakTree.png) !important;

}

.chapter-fixed-blog {
    width: 48%;
    height: 100%;
    position: absolute;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
}

.chapter-second-inner {
    background-image: url(../img/2nd-Time-for-the-Chicks.png) !important;
}

.chapter-third-inner {
    background-image: url(../img/3rd-Mr-Snack.png) !important;
}

.chapter-fourth-inner {
    background-image: url(../img/4th-1.png) !important;
}

.chapter-fifth-inner {
    background-image: url(../img/5th-Fibh.png) !important;
}

.chapter-six-inner {
    background-image: url(../img/6th-The-Parties.png) !important;

}

.chapter-seven-inner {
    background-image: url(../img/7th-Renew.png) !important;

}

.chapter-eight-inner {
    background-image: url(../img/8th-Renew-1.png) !important;

}

.chapter-nine-inner {
    background-image: url(../img/9th-The-jurney.png) !important;
}

.chapter-ten-inner {
    background-image: url(../img/10th-A-Large-Lady-Holding-a-Torch.png) !important;
}

.chapter-eleven-inner {
    background-image: url(../img/11th-Centralpark.png) !important;
}

.chapter-twelve-inner {
    background-image: url(../img/12th-Charlie.png) !important;

}

.chapter-thirteen-inner {
    background-image: url(../img/13th-Home.png) !important;

}

@media (min-width: 768px) and (max-width: 1200.98px) {
    .portfolio-wrap .portfolio-links a {
        font-size: 12px;
        padding: 0 10px;
    }
}

@media (max-width: 767.98px) {
    .portfolio-wrap .portfolio-links a {
        font-size: 26px;
        padding: 1px 24px;
    }
}

@media (max-width: 768.98px) {
    .backto-all {
        margin: 2px 0 !important;
        font-size: 12px !important;
    }

    .backto-all a {
        font-size: 12px !important;
    }

}

@media (max-width: 991.98px) {
    .title-blog {
        width: 60px;
    }
}