@font-face {
    font-family: "NovaKlasse-Thin";
    src: url(../fonts/NovaKlasse-Thin.ttf);
}

@font-face {
    font-family: "NovaKlasse";
    src: url(../fonts/NovaKlasse.ttf);
}


@font-face {
    font-family: "NovaKlasse-Medium";
    src: url(../fonts/NovaKlasse-Medium.ttf);
}

@font-face {
    font-family: "NovaKlasse-Regular";
    src: url(../fonts/NovaKlasse-Regular.ttf);
}

@font-face {
    font-family: "NovaKlasse-Semibold";
    src: url(../fonts/NovaKlasse-Semibold.ttf);
}

@font-face {
    font-family: "NovaKlasse-bold";
    src: url(../fonts/NovaKlasse-bold.ttf);
}

html {
    scroll-behavior: smooth;
}


h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "NovaKlasse-Regular";
}

p,
ul {
    font-family: "NovaKlasse";
    margin: 0;
    padding: 0;
    list-style: none;
}

input,
textarea {
    font-family: "NovaKlasse";
    margin: 0;
    padding: 0;
}

span,
a,
button {

    margin: 0;
    padding: 0;
}

a:hover {
    color: inherit;
}



body {
    overflow-x: hidden;
    background: #fff;

}

main {
    overflow: hidden;
}

a,
button,
input,
textarea:focus {
    outline: none;
    box-shadow: none;
    text-decoration: none;
}

.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.form-group input[type=number] {
    appearance: textfield;
    -moz-appearance: textfield;
}


::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #000;
    border: 1px solid #fff
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background-color: #ebebeb;
    -webkit-border-radius: 10px;
    border-radius: 10px
}


.heading-one {
    font-size: 46px;
    line-height: 52px;
}

.heading-two {
    font-size: 50px;
    line-height: 56px;
}

.heading-three {
    font-size: 30px;
    line-height: 36px;
}

.heading-four {
    font-size: 24px;
    line-height: 30px;
}

.heading-five {
    font-size: 22px;
    line-height: 28px;
}

.heading-six {
    font-size: 20px;
    line-height: 26px;
}

.heading-seven {
    font-size: 16px;
    line-height: 22px;
}

p {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 10px;
    /* text-transform: capitalize; */
}

li {
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 5px;

}

.website-main-buttons {
    margin: 30px 0 0;
    display: flex;
    align-items: center;
}

.website-main-buttons a.read-more-btn,
.website-main-buttons button.popup-btn,
.website-main-buttons button.chat-btn,
.website-main-buttons button.submit-btn,
.website-main-buttons a.call-btn {
    font-family: "NovaKlasse";
    font-size: 16px;
    width: 375px;
    height: 82px;
    border-radius: 0;
    border: none;
    padding: 5px 5px;
    margin: 0 10px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-transform: capitalize; */
    transition: all .3s ease-in-out;
    position: relative;
}

#button_top i {
    color: #fff;
    line-height: 47px;
}

#button_top.show {
    visibility: visible;
    right: 51px;
}

#button_top {
    background: #3568FB;
    width: 48px;
    height: 48px;
    border-radius: 82px;
    position: fixed;
    transition: 0.4s ease-in-out;
    opacity: 1;
    visibility: hidden;
    z-index: 1016;
    bottom: 81px;
    right: -70px;
    cursor: pointer;
    text-align: center;
}


.container-fluid {
    padding: 0 100px;
}


.hvr-sweep-to-right {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

.hvr-sweep-to-right:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}


.hvr-sweep-to-right:hover,
.hvr-sweep-to-right:focus,
.hvr-sweep-to-right:active {
    color: #fff !important;
}

.hvr-sweep-to-right:hover:before,
.hvr-sweep-to-right:focus:before,
.hvr-sweep-to-right:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
    transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}



header {
    background: transparent;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    transition: all .3s ease-in-out;
}

header.sticky {
    box-shadow: 0 10px 40px -25px #1c1c1c52;
    background: #F2F2F2;
}

header nav.navbar {
    padding: 30px 0 20px;
    align-items: center;
    position: relative;
}

header nav.navbar .navbar-brand {
    width: 250px;
    padding: 0;
    margin: 0;
}

.navbar-brand img {
    width: 374px;
    height: 55px;
}

header .navbar-toggler {
    width: 40px;
    height: 40px;
    border: none;
    background: #FA401B;
    padding: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

header .navbar-toggler:focus {
    box-shadow: none;
}

header .navbar-collapse .navbar-main-nav {
    display: flex;
    align-items: center;
    width: 100%;
}

header .navbar-main-nav .navbar-main-center {
    width: 100%;
    margin: 0 10px;
}

header .navbar-main-center ul.navbar-nav {
    justify-content: end;
    margin: 0 10px 0;
}

header .navbar-main-center ul.navbar-nav li.nav-item {
    margin: 0 20px;
}

header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
    line-height: 22px;
    padding: 15px 0px;
    position: relative;
    transition: all .3s ease-in-out;
    color: #000;
    font-weight: 400;
    text-transform: capitalize;
}


header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link:hover {
    color: #3568fb;
}

header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link::before {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    background: #3568FB;
    width: 0%;
    height: 3px;
    border-radius: 10px;
    display: block;
    transition: all .3s ease-in-out;
}

header .navbar-main-center ul.navbar-nav li.nav-item:hover a.nav-link::before {
    width: 100%;
}


header ul.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    content: "\f078";
    font-family: "Font Awesome 6 Pro";
    font-size: 12px;
    font-weight: 600;
    margin: 0 0 0 5px;
    border: none;
    transition: all .3s ease-in-out;
}

header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a {
    text-transform: capitalize;
    padding: 8px 8px;
}

header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a i {
    color: #fe2039;
    font-size: 20px;
    font-weight: 700;
    margin: 0 2px 0 0;
}

header ul.dropdown-menu {
    padding: 15px 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 20px;
    border: none;


}

.navbar-main-center li.nav-item.dropdown:hover ul.dropdown-menu {
    display: block;
    transition: all 0.10s ease-in-out;
    transform: scale(1);
}



header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a:hover {
    background: #1B4CD9;
    color: #fff;
}


.sec-home-banner {
    padding: 130px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 9;
    background: #fff;
}

.banner-mobile-image {
    display: none;
}

.sec-home-banner .website-main-buttons a.read-more-btn {
    background: #3568FB;
    color: #FFF;
}


.sec-home-banner .banner-main-details .heading-one {
    font-size: 60px;
    line-height: 80px;
}

.sec-home-banner .banner-main-details p {
    color: #8D8D8D;
    font-weight: 300;
    width: 95%;
}


.banner-main-image img {
    width: 100%;
    min-height: 700px;
    max-height: 700px;
    object-fit: contain;
    object-position: center;
    position: relative;
    z-index: -1;
}




.banner-inner-image img.img-fluid.thumb1 {
    position: absolute;
    top: 25%;
    right: 43%;
    width: 130px;
    height: 150px;
    object-fit: contain;
}

.banner-inner-image img.img-fluid.thumb2 {
    position: absolute;
    top: 18%;
    right: 16%;
}

.banner-inner-image img.img-fluid.thumb3 {
    position: absolute;
    top: 42%;
    right: 13%;
}

.banner-inner-image img {
    width: 100px;
    height: 100px;
}

.banner-inner-bottom img {
    width: 100px;
    height: 100px;
}

.banner-inner-bottom {
    position: absolute;
    width: 600px;
    height: 600px;
    margin: 0 auto;
    top: 20%;
    right: 17%;
}

.banner-inner-bottom img.img-fluid.circle1 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    object-fit: contain;
    z-index: -1;
    transform-origin: center;
    animation: moveInCircle1 15s linear infinite;
}

.banner-inner-bottom img.img-fluid.circle2 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 74px;
    height: 74px;
    object-fit: contain;
    z-index: -1;
    transform-origin: center;
    animation: moveInCircle2 15s linear infinite;
}

.banner-inner-bottom img.img-fluid.circle3 {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    object-fit: contain;
    z-index: -1;
    transform-origin: center;
    animation: moveInCircle3 15s linear infinite;
}



@keyframes moveInCircle1 {
    0% {
        transform: translate(0%, -50%) rotate(0deg) translateX(320px) rotate(0deg);
    }

    100% {
        transform: translate(0%, -50%) rotate(360deg) translateX(320px) rotate(-360deg);
    }
}

@keyframes moveInCircle2 {
    0% {
        transform: translate(-50%, -50%) rotate(120deg) translateX(320px) rotate(-120deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(480deg) translateX(320px) rotate(-480deg);
    }
}

@keyframes moveInCircle3 {
    0% {
        transform: translate(-50%, -50%) rotate(240deg) translateX(320px) rotate(-240deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(600deg) translateX(320px) rotate(-600deg);
    }
}


section.sec-clients-wrap {
    padding: 120px 0 80px;
    background: #F2F2F2;
    position: relative;
    z-index: 9;
}



.sec-clients-wrap .clients-details {
    text-align: center;
    margin: 0 0 50px;
}


.sec-clients-wrap .clients-details .heading-two {
    font-size: 60px;
    line-height: 68px;
    color: #000;
    margin: 0 0 15px;
}


.sec-clients-wrap .clients-details p {
    color: #8D8D8D;
    font-weight: 300;
}



.client-inner-info {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    margin: 12px 12px 20px;
}

.celebrity-image {
    object-fit: cover;
    transition: transform 0.3s ease;
    width: 100%;
    margin: 20px 0 0 0;
}

.celebrity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #000 100%);
    color: white;
    padding: 5rem 2rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.client-inner-info:hover .celebrity-info {
    transform: translateY(0);
}

.client-inner-info:hover .celebrity-image {
    transform: scale(1.05);
}

.celebrity-info .heading-five span {
    color: #B8B8B8;
    font-size: 12px;
}

.inner-price {
    display: flex;
    align-items: start;
}

.client-inner-info .price {
    font-weight: 400;
    font-family: "NovaKlasse";
    margin: 0 15px 0 0;
}



.sec-clients-wrap .website-main-buttons {
    justify-content: center;
}


.sec-clients-wrap .website-main-buttons a.read-more-btn {
    background: #FA401B;
    color: #FFF;
    margin: 30px 0 0;
}


.celebrity-image-wrapper {
    position: relative;
    overflow: hidden;
}

.top-rating {
    position: absolute;
    top: 30px;
    left: 30px;
    background: #fff;
    padding: 5px 13px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
    z-index: 99;
}

.top-rating .star-icon {
    width: 15px;
    height: 15px;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-rating .heading-six {
    font-size: 12px;
    color: #000;
    font-weight: 400;
    padding: 0;
    margin: 0;
    font-family: "NovaKlasse";
}

.top-rating .heading-six span {
    font-size: 12px;
    color: #000;
}

.celebrity-image-wrapper:hover .top-rating {
    opacity: 1;
    transform: translateY(0);
}


section.calendly_Intergrate {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    margin: 35px 0;
}


section.calendly_Intergrate h3 {
    color: #0a2840;
    margin: 0 0 20px;
    font-size: 3rem;
    font-weight: 600;
}

section.calendly_Intergrate p {
    color: #0a2840;
    font-size: 17px;
    line-height: 27px;
}

section.calendly_Intergrate span {
    display: block;
    color: #3568fb;
    font-size: 33px;
    margin: 39px 0 0 0;
    font-family: "NovaKlasse";
}

section.calendly_Intergrate ul {
    color: #fff;
    padding: 13px 0 0 0;
}

section.calendly_Intergrate ul li {
    list-style: circle;
    line-height: 2;
    font-size: 17px;
    color: #0a2840;
}

.calendly-inline-widget {
    height: 785px;
}

section.calendly_Intergrate img {
    width: 206px;
    margin: 0 0 20px 0;
}




section.banner-bottom-wrap {
    padding: 30px 0px;
    background: #FA401B;
}

.banner-bottom-wrap .banner-bottom-slider {
    margin: 0 20px 0;
}

.banner-bottom-slider .slick-arrow {
    top: 25%;
    position: absolute;
    background: none;
    border: none;
    font-size: 0;
    z-index: 9;
    display: none !important;
}

.banner-bottom-slider .slick-prev {
    left: -15px;
}

.banner-bottom-slider .slick-prev:before {
    content: '\f104';
    position: absolute;
    font-family: 'Font Awesome 6 Pro';
    font-size: 32px;
    color: #000;
}

.banner-bottom-slider .slick-next {
    right: -25px;
}

.banner-bottom-slider .slick-next:before {
    content: '\f105';
    position: absolute;
    font-family: 'Font Awesome 6 Pro';
    font-size: 32px;
    color: #000;
    right: 10px;
}

.banner-bottom-slider .banner-bottom-box {
    margin: 0 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-bottom-box img {
    width: 175px;
    height: 100px;
    object-fit: contain;
    margin: 0 auto;
}

.banner-bottom-box .dot-image img {
    width: 20px;
    height: 20px;
}



.sec-financing-wrap {
    padding: 80px 0;
    background: #fff;
    position: relative;
    z-index: 9;
    margin: 0;
    overflow: hidden;
}

.sec-financing-wrap .financing-header {
    text-align: center;
    margin-bottom: 50px;
}

.sec-financing-wrap .financing-header .heading-two {
    font-size: 55px;
    line-height: 65px;
    margin: 0 0 15px;
}

.financing-header p {
    margin: 0 auto 20px;
    color: #4D4C4C;
    font-weight: 400;
}


.sec-financing-wrap .package-card {
    padding: 45px 45px;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease;
    margin: 0 16px 30px;
    border-radius: 22px;
    background: #EAEAEA;
}

.sec-financing-wrap .package-card:hover {
    transform: translateY(20px);
}

.sec-financing-wrap .package-title {
    font-size: 24px;
    font-weight: 600;
    margin: 0 0 40px;
    color: #333;
    line-height: 32px;
}

.sec-financing-wrap .price-label {
    margin: 0 0 5px;
    color: #000;
    text-align: center;
    font-size: 16px;
    line-height: 26px;
}

.sec-financing-wrap .price-amount .heading-four {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.sec-financing-wrap .price-amount span {
    font-size: 1rem;
    font-weight: normal;
}

.sec-financing-wrap .price-note {
    margin: 35px 0 0;
    color: #4D4C4C;
    font-size: 10px;
}

.package-info {
    padding: 12px 12px;
    border-radius: 13px;
    background: #F5F5F5;
    margin: 25px 0 0 0;
}

.package-info p {
    font-size: 10px;
    color: #4D4C4C;
    line-height: 22px;
    text-transform: capitalize;
    font-weight: 400;
}

.sec-financing-wrap.new .package-card {
    position: relative;
    border-radius: 0;
    background: #ECECEC;
    padding: 30px 30px;
    margin: 0 0 45px;
}

.sec-financing-wrap.new .package-title {
    background: #3568FB;
    color: #fff;
    position: absolute;
    top: -3%;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 20px 15px;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    max-width: 400px;
    border-radius: 12px;
}
.sec-financing-wrap.new .package-card ul {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 400px;
}
.sec-financing-wrap.new .package-card ul li {
    font-weight: 300;
    text-align: left;
    list-style: disc;
    color: #4D4C4C;
    font-size: 19px;
    line-height: 29px;
    margin: 0 20px 5px;
}


.sec-financing-wrap.new .price-label {
    margin: 25px 0 5px;
}

.sec-financing-wrap.new .price-note {
    color: #FA401B;
    margin: 0 0 30px;
}

.sec-financing-wrap.new .package-card:hover {
    transform: translateY(0);
}


.sec-financing-wrap.new .package-card .website-main-buttons a.read-more-btn {
    background: #FA401B;
    color: #fff;
    width: 100%;
}


section.sec-home-cta.social.inner.explore {
    background: url(../images/explore-bg.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 90vh;
    padding: 100px 0;
}


.sec-home-cta.social.inner.explore .cta-inner-details .heading-two {
    color: #fff;
}

.sec-home-cta.social.inner.explore .cta-inner-logos img {
    height: 65px;
}




section.sec-blog-news {
    padding: 50px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
}

.sec-blog-news .blog-title {
    text-align: center;
    margin: 0 0 60px;
}

.sec-blog-news .blog-title p {
    color: #8D8D8D;
}


.sec-blog-news .blog-inner-info {
    margin: 40px 20px;
    padding: 0;
}

.sec-blog-news .blog-inner-info .heading-four {
    margin: 0 0 15px;
}

.sec-blog-news .blog-inner-info p {
    color: #8D8D8D;
    font-size: 20px;
    font-weight: 200;
    text-transform: lowercase;
    line-height: 26px;
}


.sec-blog-news .blog-inner-image img {
    width: 100%;
}

.sec-blog-news .blog-inner-info.two,
.sec-blog-news .blog-inner-info.four {
    text-align: right;
}

.sec-blog-news .border-main {
    width: 100%;
    margin: 55px 0 70px;
    border-bottom: 1px solid #000;
}



.sec-home-cta {
    position: relative;
    background: url(../images/book-bg.webp) no-repeat;
    background-size: 100% 100%;
    background-position: bottom;
    height: 100vh;
    padding: 100px 0;
}


.sec-home-cta .website-main-buttons {
    justify-content: center;
}


.sec-home-cta .website-main-buttons a.read-more-btn {
    color: #fff;
    background: #FA401B;
}


.cta-inner-details {
    text-align: center;
}

.cta-inner-details p {
    color: #8D8D8D;
    font-weight: 300;
    margin: 0 0 25px;
}

.cta-inner-details .heading-two {
    font-size: 50px;
    line-height: 60px;
    margin: 0 0 25px;
    color: #000;
}


.review-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.review-inner img {
    height: 30px;
    width: 200px;
    object-fit: contain;
    object-position: center;
}

.reviews-counts .heading-four {
    margin: 10px 0 0 12px;
    font-size: 20px;
}


.sec-home-cta.social {
    background: url(../images/social-bg.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 100vh;
    padding: 100px 0;
}

.sec-home-cta.social .cta-inner-details {
    text-align: left;
    margin: 150px 120px;
}

.sec-home-cta.social .cta-inner-details .heading-two {
    color: #fff;
}


.sec-home-cta.social .website-main-buttons {
    justify-content: left;
}

.sec-home-cta.social .website-main-buttons a.read-more-btn {
    margin: 0;
}

section.sec-home-cta.social.inner {
    background: url(../images/social-inner.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 90vh;
    padding: 100px 0;
}

.sec-home-cta.social.inner .cta-inner-details .heading-two {
    color: #000;
}

.sec-home-cta.social.inner .cta-inner-logos img {
    margin: 0 10px 0 0;
    width: 100%;
    height: 40px;
    object-fit: contain;
}

.sec-home-cta.social.inner .cta-inner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px 0;
}


.section.sec-home-cta.social.inner.inner-two .cta-inner-logos img {
    margin: 0 10px;
    width: 100%;
    height: 40px;
    object-fit: contain;
}

section.sec-home-cta.social.inner .section.sec-home-cta.social.inner.inner-two .cta-inner-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 35px 0;
}




section.sec-home-cta.social.inner.inner-two {
    background: url(../images/cta-inner.webp) no-repeat;
    background-size: cover;
    background-position: bottom;
    height: 90vh;
    padding: 100px 0;
}


.sec-home-cta.social.inner.inner-two .cta-inner-logos img {
    height: 65px;
}

.sec-testimonials-inner-wrap {
    padding: 115px 0;
    position: relative;
    z-index: 9;
    background: #F5F5F5;
    overflow: hidden;
    margin: 60px 0;
}

.container-fluid.new {
    padding: 0 0 0 100px;
}

.sec-testimonials-inner-wrap .testimonials-header {
    text-align: center;
    margin: 0 0 55px;
}

.sec-testimonials-inner-wrap .testimonial-inner-box {
    border-radius: 20px;
    padding: 60px 40px 60px 40px;
    background: #FFF;
    position: relative;
    z-index: 1;
    margin: 60px 15px 30px;
    text-align: center;
}

.sec-testimonials-inner-wrap .testimonial-author {
    margin-bottom: 20px;
}

.sec-testimonials-inner-wrap .author-image {
    width: 165px;
    height: 165px;
    margin: -140px auto 20px;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.sec-testimonials-inner-wrap .author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sec-testimonials-inner-wrap .test-icon {
    margin: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sec-testimonials-inner-wrap .testimonial-content {
    text-align: left;
}

.sec-testimonials-inner-wrap .testimonial-content .heading-four {
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 24px;
    font-family: "NovaKlasse";
}

.sec-testimonials-inner-wrap .testimonial-content p {
    color: #4D4C4C;
    font-weight: 300;
    margin: 5px 0 35px;
    overflow-y: auto;
    min-height: 130px;
    max-height: 130px;
    padding: 0 35px 0 0;
}

.sec-testimonials-inner-wrap .author-info {
    text-align: left;
    margin-top: 20px;
}

.sec-testimonials-inner-wrap .author-info .heading-four {
    font-size: 26px;
    line-height: 30px;
    font-weight: 400;
    margin-bottom: 5px;
    font-family: "NovaKlasse";
}

.sec-testimonials-inner-wrap .author-info p {
    font-size: 16px;
    color: #8A8A8A;
    font-family: "NovaKlasse";
}

.sec-testimonials-inner-wrap .quote-marks {
    position: absolute;
    bottom: -41px;
    right: 30px;
}

.sec-testimonials-inner-wrap .quote-marks img {
    width: 140px;
}

.sec-testimonials-inner-wrap .testimonials-slider-inner {
    display: block;
    padding: 0 0 30px;
    overflow: hidden !important;
    margin: 0 auto;
    width: 100%;
}

.sec-testimonials-inner-wrap .testimonials-slider-inner .slick-track {
    display: flex;
    gap: 30px;
    padding: 35px 0 30px;
}

.sec-testimonials-inner-wrap .testimonials-slider-inner .slick-list {
    overflow: hidden !important;
    padding-bottom: 20px !important;
}

.sec-testimonials-inner-wrap .slick-slide {
    flex-shrink: 0;
}


.slider-progress {
    width: calc(100% - 130px);
    margin: 20px auto 0;
    height: 12px !important;
    background: #ebebeb !important;
    border-radius: 10px !important;
    position: relative;
}

.slider-progress .progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background-color: #000 !important;
    border-radius: 10px !important;
    border: 3px solid #ebebeb;
    transition: width 0.3s ease-in-out;
}


.sec-home-cta.paperback {
    background: url(../images/paperback-book-bg.webp) no-repeat;
    height: 120vh;
}


.sec-home-cta.paperback .cta-inner-details {
    position: absolute;
    bottom: 5%;
    left: 5%;
    right: 5%;
}



section.sec-about-book {
    background: #3568FB;
    padding: 100px 0;
    position: relative;
    overflow: hidden;

}

section.sec-about-book.marketing {
    margin: 50px 50px 50px 50px;
    border-radius: 41px;
}


.about-book-info {
    text-align: center;
}

.about-book-info .heading-two {
    color: #fff;
    text-align: center;
    font-size: 60px;
    font-weight: 400;
    line-height: 80px;
    margin: 0 0 40px;
}

.about-details-box {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 15px 0;
    position: relative;
    z-index: 1;
    padding: 15px 15px;
}


.about-inner-image {
    width: 20%;
}

.about-box-info {
    width: 80%;
}


.about-details-box .about-box-info .heading-six {
    font-size: 17px;
    line-height: 28px;
    color: #fff;
    font-weight: 400;
}

.about-details-box .about-box-info p {
    color: #fff;
    font-weight: 300;
    font-size: 12px;
}



section.sec-contact-wrap {
    background: #3568FB;
    padding: 25px 0;
    margin: 0;
    overflow: hidden;
}


.contact-main {
    border-radius: 34px;
    background: #1B4CD9;
    padding: 0 12px;
    margin: 0 40px;
}

.contact-inner-form p {
    font-size: 12px;
    color: #4D4C4C;
    font-weight: 400;
    line-height: 26px;
}


.contact-inner-form {
    padding: 25px 40px 20px 40px;
    border-radius: 0px 34px 34px 0px;
    background: #fff;
}

.contact-inner-form .contact-title p {
    font-size: 20px;
    color: #4D4C4C;
}

.contact-inner-form .contact-title p span {
    color: #3568FB;
    font-weight: 400;
    line-height: 26px;
    text-transform: capitalize;
}

.contact-inner-form .form-group {
    margin: 0 0 30px;
}

.contact-inner-form .form-group.btn {
    margin: 0 0 20px;
    padding: 0;
    width: 100%;
}


.contact-inner-info {
    padding: 15px 0 0 140px;
}

.contact-inner-info .heading-two {
    font-size: 50px;
    line-height: 75px;
    font-weight: 400;
    color: #fff;
}

.contact-inner-info p {
    font-size: 20px;
    color: #fff;
    font-weight: 200;
    line-height: 30px;
}

.contact-title {
    margin: 0 0 40px;
}

.contact-title .heading-two {
    font-size: 60px;
    color: #000;
    font-weight: 400;
    line-height: 80px;
}


.contact-inner-form .form-group input {
    font-size: 12px;
    padding: 10px 15px 12px;
    width: 100%;
    border-radius: 10px;
    height: 60px;
    border: none;
    outline: none;
    background: #EEE;
    color: #818181;
    font-weight: 300;
    text-transform: capitalize;
}

.contact-inner-form .form-group input::placeholder {
    color: #818181;
}

.contact-inner-form .form-group textarea {
    font-size: 12px;
    border: none;
    width: 100%;
    height: 200px;
    padding: 20px 15px;
    outline: none;
    box-shadow: none;
    resize: none;
    border-radius: 10px;
    background: #EEE;
    color: #818181;
    text-transform: capitalize;
    font-weight: 300;
}

.contact-inner-form .form-group textarea::placeholder {
    color: #818181;
}

.contact-inner-form .form-group button.submit-btn {
    color: #fff;
    border-radius: 0;
    height: 82px;
    padding: 5px 5px;
    width: 100%;
    margin: 0;
    display: block;
    align-items: center;
    text-transform: capitalize;
    transition: all .3s ease-in-out;
    position: relative;
    border: 0;
    background: #FA401B;
    font-size: 16px;
    font-family: "NovaKlasse";
}


section.sec-contact-wrap.contact-page {
    background: #FFC200;
}


.sec-contact-wrap.contact-page .contact-main {
    background: #F90;
}


.sec-contact-wrap.contact-page .contact-main .contact-inner-info {
    padding: 15px 150px 0 0;
}


.sec-contact-wrap.contact-page .contact-inner-form {
    border-radius: 34px 0 0 34px;
    background: #fff;
}

.sec-contact-wrap.contact-page .contact-inner-form .form-group button.submit-btn {
    background: #FF9736;
}


.form-check-new {
    margin: 10px 0;
    display: flex;
    align-items: start;
}

.form-check-new .form-check-check {
    border: 1px solid #E9E7E7;
    padding: 8px;
    border-radius: 3px;
    outline: none;
    box-shadow: none;
    margin: 5px 8px 0 0;
    cursor: pointer;
}

.form-check-new .form-check-label {
    color: #8D8D8D;
    font-size: 10px;
    line-height: 20px;
    cursor: pointer;
    font-family: "NovaKlasse";
    font-weight: 300;
    opacity: 0.6;
}

.form-check-new .form-check-label a {
    color: #e6323c;
}

.form-check-new.form-check-new-white .form-check-label {
    color: #fff;
}

.sec-contact-wrap.paperback {
    background: #4CE265;
}

.sec-contact-wrap.paperback .contact-main {
    background: #2FC047;
}

.sec-contact-wrap.paperback .contact-inner-form .form-group button.submit-btn {
    background: #3568FB;
}



section.sec-home-cta.ebook {
    background: url(../images/ebook-cta.webp) no-repeat;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 100px 0;
}

.sec-home-cta.ebook .cta-inner-details {
    text-align: left;
}

.sec-home-cta.ebook .cta-inner-details .review-inner {
    justify-content: left;
}


.sec-contact-wrap.ebook {
    background: #FFC200;
    position: relative;
}

.sec-contact-wrap.ebook .contact-main {
    background: #E5A500;
}

.sec-contact-wrap.ebook .ebook-image img {
    position: absolute;
    bottom: 3%;
    left: 33%;
    content: "";
    z-index: 4;
}


.sec-home-banner.ebook .website-main-buttons a.read-more-btn {
    background: #FA401B;
}

section.sec-home-banner.marketing {
    background: url(../images/marketing-bg.webp);
    margin: 130px 50px 50px 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 350px 0 120px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 41px;
}

.sec-home-banner.marketing .banner-main-details .heading-one {
    color: #fff;
}

.sec-home-banner.marketing .website-main-buttons a.read-more-btn {
    background: #fff;
    color: #FA401B;
}

section.sec-home-cta-inner.marketing {
    background: url(../images/marketing-cta.webp) no-repeat;
    background-size: cover;
    background-position: center center;
    height: 90vh;
    padding: 160px 0;
}

.sec-home-cta-inner.marketing .cta-inner-details .heading-two {
    color: #FFF;
}

.sec-home-cta-inner.marketing .cta-inner-details p {
    color: #FFF;
    font-size: 20px;
    line-height: 28px;
    font-weight: 200;
}


.sec-home-cta-inner.marketing .review-inner {
    justify-content: left;
}



section.sec-contact-wrap.marketing {
    background: #FA401B;
}


.sec-contact-wrap.marketing .contact-main {
    background: #D23010;
}


.marketing-pr-logos {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 15px 0 0 115px;
    margin: 0;
}

.marketing-pr-logos img {
    width: 145px;
    object-fit: scale-down;
    height: 80px;
    margin: 0 0 0 35px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(73deg) brightness(103%) contrast(103%);
}



.sec-contact-wrap.marketing .form-group button.submit-btn {
    background: #3568FB;
}



section.sec-home-banner.audiobook .website-main-buttons a.read-more-btn {
    background: #FA401B;
}


section.sec-home-cta.audiobook {
    background: url(../images/bg-audio-book-1.webp)no-repeat;
    position: relative;
    background-size: 100% 100%;
    background-position: center;
    padding: 100px 0;
}


.sec-home-cta.audiobook .cta-inner-details {
    text-align: left;
}

.sec-home-cta.audiobook .cta-inner-details .review-inner {
    justify-content: left;
}


.sec-home-banner .audiobook-img {
    position: relative;
    right: -15%;
}

.sec-home-banner .audiobook-img img {
    width: 80%;
    object-fit: cover;
    object-position: center;
}



section.sec-testimonials-inner-wrap.audiobook {
    background: #FFF;
}


.sec-testimonials-inner-wrap.audiobook .testimonial-inner-box {
    border-radius: 20px;
    background: #F2F2F2;
}


.sec-audio-info-wrap {
    background: #2FC047;
    padding: 40px 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    z-index: 9;
}

.sec-audio-info-wrap .audio-info-title {
    text-align: center;
    margin: 0 0 35px;
}

.sec-audio-info-wrap .audio-info-title .heading-two {
    color: #fff;
}

.sec-audio-info-wrap .audio-inner-info {
    text-align: center;
}

.sec-audio-info-wrap .audio-inner-info .heading-two {
    color: #fff;
}

.sec-audio-info-wrap .audio-inner-info p {
    color: #fff;
    font-weight: 200;
}

section.sec-home-cta.audiobook.inner {
    background: url(../images/bg-audio-book-2.webp) no-repeat;
    background-size: contain !important;
    padding: 135px 0 281px;
    background-position: left;
}


.sec-home-cta.audiobook.inner .cta-inner-details {
    text-align: end;
}

.sec-home-cta.audiobook.inner .cta-inner-details .review-inner {
    justify-content: end;
}


section.sec-home-banner.hardcover {
    background: url(../images/bg-hardcover.webp)no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
    z-index: 9;
    padding: 345px 0;
}

.sec-home-banner.hardcover .website-main-buttons a.read-more-btn {
    background: #FA401B;
}


section.sec-about-book.hardcover {
    background: #2FC047;
}

section.sec-home-cta.hardcover {
    background: url(../images/hardcover-cta.webp)no-repeat;
    margin: 0;
}

.sec-home-cta.hardcover .cta-inner-details {
    text-align: left;
}

.sec-home-cta.hardcover .review-inner {
    justify-content: left;
}


.sec-home-cta.hardcover .review-inner-logos {
    display: flex;
}

.sec-home-cta.hardcover .review-inner-logos img {
    margin: 0 15px 0 0;
    padding: 25px 5px 0 0;
}


section.sec-home-cta.about {
    background: url(../images/about-cta.webp)no-repeat;
    background-position: center;
    background-size: cover;
}

section.sec-home-banner.about {
    padding: 250px 0;
    margin: 130px 50px 50px 50px;
    position: relative;
    overflow: hidden;
    border-radius: 41px;
    background: #3568FB;
}


.sec-home-banner.about .banner-bottom-slider {
    margin: 40px 0 0;
}


.sec-home-banner.about .banner-main-details {
    text-align: center;
}


.sec-home-banner.about .banner-main-details .heading-one {
    color: #fff;

}

.sec-home-banner.about .banner-main-details p {
    color: #fff;
}

.sec-home-banner.about .website-main-buttons {
    justify-content: center;
}

.sec-home-banner.about .website-main-buttons a.read-more-btn {
    color: #3568FB;
    background: #fff;
}


.sec-home-banner.tv-interviews {
    background: url(../images/tv-interveiw-bg.jpg) no-repeat;
    padding: 340px 0 420px;
    background-position: center center;
    background-size: cover;
}


.sec-home-banner.tv-interviews .website-main-buttons a.read-more-btn {
    background: #FA401B;

}

.sec-about-book.hardcover.tv-interviews {
    background: #FA401B;
}


.sec-home-cta.tv-interviews .website-main-buttons {
    justify-content: end;

}

.sec-home-cta.tv-interviews .website-main-buttons a.read-more-btn {
    background: #FA401B;
    color: #fff;
}


.sec-home-cta.tv-interviews .cta-inner-details {
    text-align: right;
    width: 80%;
    margin: 0 0 auto auto;
}




.sec-home-cta.tv-interviews {
    background: url(../images/tv-interveiw-cta.webp)no-repeat;
    background-size: cover;
    background-position: 25% 25%;
    height: 1083px;
}


.sec-home-banner.hardcover.print-placement {
    background: url(../images/print-placement-bg.webp) no-repeat;
    padding: 320px 0;
}



.sec-home-banner.hardcover.print-placement .banner-main-details .heading-one {
    color: #FFF;
}


.sec-home-cta.hardcover.print-placement {
    background: url(../images/print-placement-cta.webp) no-repeat;
    background-size: cover;
    margin: 0;
}


.sec-home-banner.hardcover.article-publications {
    background: url(../images/article-publications-bg.webp)no-repeat;
    padding: 370px 0;
    background-size: cover;
    background-position: center;
}

.sec-home-cta.hardcover.article-publications {
    background: url(../images/article-cta.webp)no-repeat;
    background-size: cover;
    background-position: center;
    padding: 100px 0 160px;
    margin: 0;
}

.sec-home-banner.hardcover.podcast {
    background: url(../images/podcast-bg.webp) no-repeat;
    background-position: center;
    background-size: cover;
}


.sec-home-banner.hardcover.podcast .banner-main-details .heading-one {
    color: #fff;
}


section.sec-about-book.podcast {
    background: #0F0F0F;
}


.sec-home-cta.hardcover.podcast {
    background: url(../images/podcast-cta.webp) no-repeat;
    margin: 0;
    background-size: cover;
    background-position: bottom;
}


.sec-inner-blog {
    padding: 50px 0;
}

.sec-inner-blog .inner-blog {
    position: relative;
    overflow: hidden;
}
.sec-inner-blog .inner-blog>img {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    z-index: 0;
    object-fit: cover;
    object-position: top center;
}
.sec-inner-blog .inner-blog-one {
    background: url(../images/blogs/blog5.webp) no-repeat;
    background-size: cover;
    object-position: 100% 100%;
    height: 55vh;
}

.sec-inner-blog .blog-main {
    padding: 35px 35px;
    background: #ECECEC;
    margin: 0 0 30px;
}


.sec-inner-blog .inner-blog-two {
    background: url(../images/blogs/blog6.webp) no-repeat;
    background-size: cover;
    object-position: 100% 100%;
    height: 55vh;
}

.sec-inner-blog .inner-blog-three {
    background: url(../images/blogs/blog7.webp) no-repeat;
    background-size: cover;
    object-position: 100% 100%;
    height: 55vh;
}

.sec-inner-blog .inner-blog-four {
    background: url(../images/blogs/blog5.webp) no-repeat;
    background-size: cover;
    object-position: 100% 100%;
    height: 55vh;
}

.sec-inner-blog .inner-blog-five {
    background: url(../images/blogs/blog6.webp) no-repeat;
    background-size: cover;
    object-position: 100% 100%;
    height: 55vh;
}




.sec-inner-blog .inner-blog-details {
    padding: 60px 60px;
    z-index: 1;
    position: relative;
    width: calc(100% - 50%);
}


.sec-inner-blog .inner-blog-details .heading-three {
    color: #FFF;
    font-size: 26px;
    font-weight: 400;
    line-height: 48px;
    text-transform: lowercase;
}

.sec-inner-blog .inner-blog-details .heading-four {
    color: #FFF;
    font-size: 50px;
    font-weight: 400;
    line-height: 52px;
    text-transform: lowercase;
}

.sec-inner-blog .inner-blog-details .heading-four span {
    font-size: 20px;
    line-height: 30px;
}


.sec-inner-blog .inner-blog-details .heading-five {
    color: #FFF;
    font-size: 30px;
    font-weight: 400;
    line-height: 50px;
    text-transform: lowercase;
}


.sec-inner-blog .blog-inner-info {
    margin: 50px 0 0;
}

.sec-inner-blog .blog-inner-info ul li {
    list-style: disc;
    margin: 0 20px 0;
    color: #4D4C4C;
    font-size: 19px;
    line-height: 29px;
    font-weight: 300;
    text-transform: lowercase;
}

.sec-inner-blog .blog-ideal-area {
    margin: 10px 0 0 0;
}


.sec-inner-blog .blog-inner-info .heading-five {
    text-transform: lowercase;
    color: #000;
    font-weight: 400;
    font-size: 22px;
    line-height: 28px;
    margin: 0 0 20px;
}


.sec-inner-blog .website-main-buttons a.read-more-btn {
    width: 100%;
    background: #FA401B;
    color: #fff;
}



section.banner-bottom-wrap.podcast {
    background: #2FC047;
}


section.sec-contact-wrap.podcast {
    background: #4CE265;
}


.sec-contact-wrap.podcast .contact-main {
    background: #2FC047;
}

section.sec-testimonials-inner-wrap.podcast,
.sec-testimonials-inner-wrap.paperback,
.sec-testimonials-inner-wrap.ebook,
.sec-testimonials-inner-wrap.contact,
.sec-testimonials-inner-wrap.about,
.sec-testimonials-inner-wrap.tv-interveiw,
.sec-testimonials-inner-wrap.print,
.sec-testimonials-inner-wrap.article,
.sec-testimonials-inner-wrap.news {
    margin: 0;
    padding: 80px 0;
}

section.sec-testimonials-inner-wrap.home {
    margin: 60px 0 0;
}




section.sec-home-banner.hardcover.article-publications.seo {
    background: url(../images/seo-bg.webp)no-repeat;
    padding: 410px 0;
    background-size: cover;
    background-position: center;
}


section.sec-home-cta.hardcover.article-publications.seo {
    background: url(../images/seo-cta.webp)no-repeat;
    background-size: cover;
    background-position: center;
}


.sec-home-banner.hardcover.print-placement.news-publication {
    background: url(../images/news-bg.webp);
    background-size: cover;
    background-position: bottom;
}


section.sec-home-cta.hardcover.news {
    background: none;
}


section.sec-home-banner.orm {
    background: url(../images/orm-bg.webp) no-repeat;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 350px 0;
    position: relative;
    z-index: 1;
    overflow: hidden;

}



.sec-home-banner.orm .website-main-buttons a.read-more-btn {
    background: #FA401B;
}


section.sec-home-cta.hardcover.orm {
    background: url(../images/orm-cta.webp)no-repeat;
    margin: 0;
    background-size: cover;
    background-position: right;
}

.sec-home-cta.hardcover.orm .cta-inner-details {
    text-align: left;
}


section.sec-testimonials-inner-wrap.orm {
    margin: 0;
}


section.sec-testimonials-inner-wrap.hardcover {
    margin: 0 0 60px;
}



section.sec-home-cta.orm {
    background: url(../images/orm-cta-1.webp) no-repeat;
    background-size: contain;
    background-position: left;
    padding: 120px 0;
}


.sec-home-cta.orm .cta-inner-details {
    text-align: right;
}


.sec-home-cta.orm .cta-inner-details .website-main-buttons {
    justify-content: end !important;
}

.sec-home-cta.orm .cta-inner-details .website-main-buttons a.read-more-btn {
    background: #FA401B;
    color: #FFF;
}


section.sec-home-banner.hardcover.influencer {
    background: url(../images/influencer-bg.webp) no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 360px 0;
}


section.sec-home-cta.hardcover.influencer {
    background: url(../images/influencer-cta1.webp) no-repeat;
    background-size: cover;
    background-position: right;
    height: 90vh;
}


section.sec-home-cta.hardcover.influencer .website-main-buttons,
.sec-home-cta.hardcover.influencerone .website-main-buttons {
    justify-content: left;
}

.sec-home-cta.hardcover.influencer .cta-inner-details .heading-two {
    color: #FFF;
}

.sec-home-cta.hardcover.influencer .cta-inner-details p {
    color: #FFF;
}


.sec-home-cta.hardcover.influencer .cta-inner-details .website-main-buttons a.read-more-btn {
    background: #FA401B;
    color: #FFF;
}


section.sec-testimonials-inner-wrap.influencer {
    margin: 0;
    background: #fff;
}

.sec-testimonials-inner-wrap.influencer .testimonial-inner-box {
    background: #F2F2F2;
}



.sec-home-cta.hardcover.influencerone {
    background: url(../images/influencer-cta.webp);
    background-size: cover;
    background-position: bottom;
}


.sec-home-cta.hardcover.influencerone .cta-inner-details .website-main-buttons a.read-more-btn {
    background: #FA401B;
    color: #FFF;
}



section.step-works-wrap {
    padding: 50px 0;
    background: #ECECEC;
    position: relative;
    z-index: 9;
}

.step-works-wrap .step-works-head {
    margin: 0 auto 30px;
    text-align: center;
    width: 80%;
}

.step-works-head .heading-two {
    margin: 0 0 20px;
    color: #000;
}

.step-works-head p {
    color: #4D4C4C;
    font-weight: 300;
}

.step-works-head p span {
    font-weight: 400;
}

.step-works-inner .step-works-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px 0;
    border-top: 2px solid #343434;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease-in-out;
}


.step-works-inner .step-works-box:first-child {
    border-top: none;
}

.step-works-inner .step-works-box:last-child {
    border-bottom: 1px solid #000;
}

.step-works-box span.step-count {
    font-size: 26px;
    margin: 0;
    transition: all 0.3s ease-in;
    color: #000;
    font-family: "NovaKlasse-Regular";
    border: 2px solid #B7B7B7;
    border-top: 0px solid transparent;
    padding: 7px 15px;
    border-bottom: 0px solid transparent;
    border-left: 0px solid transparent;
}

.step-works-box .works-box-content {
    margin: 0 20px;
    width: 70%;
}

.works-box-content .heading-five {
    margin: 0 0 10px;
    color: #000;
}

.works-box-content p {
    color: #000;
    font-weight: 200;
    font-size: 14px;
}

.works-box-content ul {
    color: #000;
    font-weight: 200;
    font-size: 14px;
    list-style: disc;
}

.works-box-content ul li {
    padding: 5px 0;
}

.step-works-inner .step-works-box .step-read-items {
    /* position: absolute;
    right: 0; */
    display: flex;
    flex-direction: column;
    min-width: 300px;
}

.works-box-content p::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
    border-radius: 0px;
}

.works-box-content p::-webkit-scrollbar {
    width: 3px;
    background: #b2b2b2;
    border-radius: 0px;
}

.works-box-content p::-webkit-scrollbar-thumb {
    background-color: #f91421;
    border-radius: 0px;
}


.step-works-box span.step-price {
    font-size: 26px;
    margin: 0;
    transition: all 0.3s ease-in;
    color: #000;
    font-family: "NovaKlasse-Regular";
    border: 2px solid #B7B7B7;
    border-top: 0px solid transparent;
    padding: 7px 15px;
    border-bottom: 0px solid transparent;
}

.step-works-box span.step-time {
    font-size: 14px;
    margin: 0;
    transition: all 0.3s ease-in;
    color: #000;
    font-family: "NovaKlasse-Regular";
    border: 2px solid #B7B7B7;
    border-top: 0px solid transparent;
    padding: 7px 15px;
    border-bottom: 0px solid transparent;
}

.step-works-box .step-read-items .links-container a {
        font-size: 12px;
    margin: 0;
    transition: all 0.3s ease-in;
    color: #000;
    font-family: "NovaKlasse-Regular";
    border: 2px solid #B7B7B7;
    border-top: 0px solid transparent;
    padding: 7px 15px;
    border-bottom: 0px solid transparent;
}

.step-works-wrap #text {
    display: none;
    border-top: 1px solid black;
}

.step-works-wrap #text .step-works-box:nth-last-child(1) {
    border-bottom: none !important;
}

.step-works-wrap .step-works-inner .website-main-buttons {
    justify-content: center;
}

.step-works-wrap .step-works-inner .website-main-buttons a.read-more-btn {
    border-radius: 14px;
    background: #FFF;
    color: #000;
    font-size: 22px;
    font-weight: 400;
    line-height: 25px;
    text-transform: lowercase;
    width: 285px;
    height: 65px;
    position: absolute;
    z-index: 2;
    bottom: 50px;
}

.step-works-wrap .step-works-inner .website-main-buttons a.read-more-btn i {
    margin: 0 0 0 15px;
}


.step-works-wrap::after {
    position: absolute;
    content: "";
    bottom: 0;
    width: 100%;
    height: calc(100vh - 3%);
    z-index: 0;
    background: linear-gradient(180deg, rgba(217, 217, 217, 0.00) 0%, #D9D9D9 100%);
}


section.banner-bottom-wrap.tv-interveiw {
    background: #FFF;
}


.main-footer {
    padding: 60px 0 15px;
    color: #fff;
    background: #2B2B2B;
}

.main-footer .main-footer-head {
    text-align: left;
}


.main-footer-head .heading-two {
    font-weight: 600;
    margin: 15px 0;
}

.main-footer .main-footer-head p {
    font-size: 16px;
    margin: 0 0 45px;
    color: #D7D7D7;
    font-weight: 300;
}


.search-input-group {
    display: flex;
    max-width: 790px;
    width: 100%;
    margin: 0;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    padding: 0;
}

.search-input-group .form-control {
    border: none;
    box-shadow: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 16px;
}

.search-input-group .form-control:focus {
    outline: none;
    box-shadow: none;
}

.search-input-group .website-main-buttons button.submit-btn {
    background: #4169E1;
    border: none;
    border-radius: 50px;
    padding: 12px 12px;
    font-size: 16px;
    font-weight: 300;
    width: 180px;
    height: 60px;
    color: #fff;
    margin: 0;
}

.search-bar-wrapper .website-main-buttons {
    margin: 0;
    padding: 0;
}

.social_links {
    display: flex;
    padding: 0;
    margin: 0;
}

.social_links li {
    margin: 0 15px 0 0;
    padding: 0;
    width: 45px;
    height: 45px;
    background: #3568fb;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;

}

.social_links li a {
    margin-bottom: -5px;
}

.social_links li i {
    color: #fff;
    font-size: 20px;
    padding: 0;
    margin: 0;
}

.social_links li:hover {
    background: #FA401B;
}

.footer-mail-contact {
    margin: 0 0 15px;
}

.footer-mail-contact a {
    font-size: 20px;
    line-height: 30px;
    color: #fff;
    text-transform: capitalize;
    font-weight: 300;
    font-family: "NovaKlasse";

}


.footer-links {
    margin: 50px 0;
    padding: 20px 0;
    border-top: 2px solid #555;
    border-bottom: 2px solid #555;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links .nav-link {
    color: #fff;
    padding: 10px 20px;
    font-size: 14px;
    transition: color 0.3s ease;
    text-transform: capitalize;
    font-weight: 300;
}

.footer-links .nav-link:hover {
    color: #4169E1;
}

.trusted-logo {
    height: 50px;
    margin-left: 20px;
    width: 120px;
    object-fit: cover;
    object-position: center;
}

.term-condition-inner {
    display: flex;
    justify-content: end;
    align-items: center;
}

.term-condition-inner ul {
    display: flex;
}

.term-condition-inner ul li {
    margin: 0 8px;
}


.copyright p {
    font-size: 12px;
}

.footer-bottom {
    font-size: 14px;
    color: #999;
}

.footer-bottom a {
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "NovaKlasse";
    font-size: 12px;
}

.footer-bottom a:hover {
    color: #4169E1;
}


.footer-logo img {
    margin: 0 0 25px;
}


section.terms-conditions-banner {
    padding: 175px 0 200px;

}

.terms-conditions-banner .terms-banner-content {
    text-align: center;
}

.terms-banner-content .heading-one {
    font-size: 75px;
    line-height: 80px;
    color: #3568FB;
    position: relative;
}

section.terms-privacy-wrap {
    padding: 30px 0;
    position: relative;
    margin: 20px 20px 12px 25px;
    border-radius: 18px;
    background: #ECECEC;
}

.terms-privacy-content .heading-two {
    color: #181223;
    margin: 0 0 20px;
    font-size: 40px;
    line-height: 50px;
}

.terms-privacy-content p {
    color: #181223;
    padding: 0;
    font-weight: 200;
}

.terms-privacy-content p strong {
    color: #3568FB;
}

.terms-privacy-content span {
    color: #181223;
    font-size: 18px;
    line-height: 24px;
    margin: 10px 0 10px 0;
    display: block;
}

.terms-privacy-content .heading-four {
    color: #181223;
    margin: 0 0 15px;
}

.terms-privacy-content ul {
    margin: 0 0 20px;
    padding: 0 0 0 20px;
}

.terms-privacy-content li {
    color: #000;
    margin: 15px 10px 25px;
    list-style: disc;
    font-weight: 200;
}

.terms-privacy-content li strong {
    margin: 0 5px;
}

.terms-privacy-content li::marker {
    color: #211930;
    font-size: 30px;
}

.terms-privacy-content a {
    color: #3568fb;
    transition: all .3s ease-in-out;
    font-weight: 300;
}

.terms-privacy-content a:hover {
    color: #3568FB;
}


section.thankyou-page-wrap {
    padding: 150px 0 100px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    background: #000;
}

.thankyou-page-wrap .thankyou-page-content {
    padding: 50px 18px;
    border-radius: 20px;
    text-align: center;
}

.thankyou-page-content .heading-one {
    font-size: 100px;
    line-height: 100px;
    color: transparent;
    margin: 0 auto 30px;
    width: 75%;
    letter-spacing: 30px;
    position: relative;
    -webkit-text-stroke: 0.3vw #fff;
}

.thankyou-page-content .heading-one::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 100%;
    color: #fff;
    margin: 0 auto 30px;
    border-right: 2px solid #000;
    -webkit-text-stroke: 0vw #080731;
    overflow: hidden;
    animation: animate 6s linear infinite;
}

@keyframes animate {

    0%,
    10%,
    100% {
        width: 0;
    }

    70%,
    90% {
        width: 100%;
    }
}

.thankyou-page-content a.back-home-btn {
    font-family: "NovaKlasse";
    background: #fa401b;
    color: #fff;
    background-size: 200% 100%;
    border: 2px solid #ff6634;
    font-size: 25px;
    width: 300px;
    height: 70px;
    border-radius: 0;
    padding: 8px 10px;
    margin: 20px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: capitalize;
    font-weight: 200;
}

.thankyou-page-content a.back-home-btn:hover {
    color: #fccb29;
    background: transparent;
}


@media only screen and (min-width: 1600px) and (max-width: 1799px) {

    .heading-one {
        font-size: 35px;
        line-height: 45px;
    }

    .heading-two {
        font-size: 30px;
        line-height: 38px;
    }

    .heading-three {
        font-size: 24px;
        line-height: 30px;
    }

    .heading-four {
        font-size: 20px;
        line-height: 26px;
    }

    .heading-five {
        font-size: 18px;
        line-height: 22px;
    }

    .heading-six {
        font-size: 16px;
        line-height: 22px;
    }

    .heading-seven {
        font-size: 16px;
        line-height: 22px;
    }

    p {
        font-size: 15px;
        line-height: 25px;
    }

    li {
        font-size: 14px;
        line-height: 20px;
    }


    .website-main-buttons {
        flex-wrap: wrap;
    }

    .website-main-buttons a.read-more-btn,
    .website-main-buttons button.popup-btn,
    .website-main-buttons button.chat-btn,
    .website-main-buttons a.call-btn {
        font-size: 14px;
        margin: 0 5px 20px;
        width: 280px;
        height: 60px;
    }

    .container-fluid,
    .container-fluid.new {
        padding: 0 20px;
    }

    .navbar-brand img {
        width: 200px;
        height: 40px;
        object-fit: contain;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
        font-size: 12px;
    }



    .sec-home-banner {
        padding: 130px 0 50px;
    }


    .banner-inner-bottom {
        right: 10%;
    }


    .banner-bottom-box img {
        width: 130px;
        height: 40px;
    }

    .sec-home-banner .banner-main-details .heading-one {
        font-size: 40px;
        line-height: 50px;
    }

    .sec-home-cta.social .cta-inner-details {
        margin: 120px 60px;
    }

    section.calendly_Intergrate h3 {
        font-size: 2rem;
    }


    section.sec-home-banner.about {
        padding: 80px 0;
        margin: 130px 30px 50px 30px;
    }

    .sec-home-banner .banner-main-details p {
        font-size: 13px;
    }

    .sec-clients-wrap .clients-details {
        margin: 0 0 12px;
    }

    .sec-clients-wrap .clients-details .heading-two {
        font-size: 40px;
        line-height: 42px;
    }



    section.sec-clients-wrap {
        padding: 50px 0;
    }



    .sec-testimonials-inner-wrap {
        padding: 50px 0;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-list {
        padding-bottom: 0 !important;
    }

    .sec-testimonials-inner-wrap .slick-slide {
        flex-shrink: 1;
    }

    .sec-testimonials-inner-wrap .testimonials-header {
        margin: 0 0 25px;

    }

    .sec-testimonials-inner-wrap .testimonial-inner-box {
        margin: 47px 0 20px;
    }

    .sec-testimonials-inner-wrap .author-image img {
        width: 100%;
        height: 100%;
    }

    .sec-testimonials-inner-wrap .author-image {
        width: 120px;
        height: 120px;
        border: 0;
        box-shadow: none;
    }

    .sec-testimonials-inner-wrap .testimonial-content .heading-four {
        font-size: 20px !important;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-track {
        gap: 30px;
    }

    .sec-testimonials-inner-wrap .author-info p {
        font-size: 13px;
    }

    .sec-testimonials-inner-wrap .test-icon img {
        width: 180px;
    }

    .sec-testimonials-inner-wrap .quote-marks img {
        width: 115px;
    }

    .sec-testimonials-inner-wrap .testimonials-header .heading-two {
        font-size: 35px;
        line-height: 42px;
    }

    .sec-home-cta,
    section.sec-home-cta.ebook,
    .sec-home-cta.paperback {
        padding: 50px 0;
        height: 100vh;
        background-size: cover !important;
    }

    .cta-inner-details .heading-two {
        font-size: 40px;
        line-height: 43px;
    }

    .search-input-group .website-main-buttons button.submit-btn {
        width: 120px;
        height: 50px;
    }

    .search-input-group .form-control {
        padding: 10px 10px;
    }

    .sec-clients-wrap .website-main-buttons a.read-more-btn {
        margin: 0;
    }


    .sec-financing-wrap {
        padding: 50px 0;
    }

    .sec-financing-wrap .financing-header .heading-two {
        font-size: 30px;
        line-height: 38px;
    }

    .sec-financing-wrap .package-title {
        font-size: 13px;
        margin: 0 0 20px;
        left: 25% !important;
    }

    .sec-financing-wrap .price-amount .heading-four {

        font-size: 20px;
    }

    .sec-financing-wrap .package-card {
        padding: 20px 20px;
    }

    .sec-financing-wrap .package-card:hover {
        transform: none !important;
    }

    .sec-financing-wrap.new .package-card {
        margin: 35px 0;
    }

    .sec-financing-wrap .price-note {
        font-size: 10px;
        margin: 25px 0 0;
    }

    .celebrity-info .heading-five {
        font-size: 15px !important;
    }


    .marketing-pr-logos img {
        margin: 0 0 0 10px;
    }

    .marketing-pr-logos {
        margin: 0 0 15px;
        padding: 15px 0 0 40px;
    }

    .main-footer {
        padding: 35px 0 15px;
    }

    .main-footer-head .heading-two {
        font-weight: 300;
        font-size: 45px;
        line-height: 52px;
    }

    .main-footer .main-footer-head p {
        line-height: 28px;
    }

    .footer-links .nav-link {
        font-size: 14px;
    }

    .footer-links {
        margin: 25px 0;
    }

    .main-footer .main-footer-head p {
        font-size: 14px;
    }

    .contact-inner-info {
        padding: 15px 0 0 50px;
    }

    .contact-inner-info .heading-two {
        font-size: 50px;
        line-height: 70px;
    }

    section.sec-home-banner.marketing {
        margin: 150px 20px 50px 20px;
        padding: 230px 0 120px;
    }

    section.sec-home-cta-inner.marketing {
        padding: 50px 0;
    }

    .contact-title .heading-two {
        font-size: 50px;
        line-height: 60px;
    }


    .about-book-info .heading-two {
        font-size: 40px;
        line-height: 50px;
    }

    .sec-contact-wrap.ebook .ebook-image img {
        display: none;
    }



    .contact-main {
        margin: 0 15px;
    }

    section.sec-home-cta.hardcover {
        height: 100vh;
    }

    .sec-financing-wrap.new .package-card ul li {
        font-size: 17px
    }

    .terms-banner-content .heading-one {
        font-size: 55px;
        line-height: 65px;
    }

    .thankyou-page-content .heading-one {
        font-size: 76px;
        line-height: 80px;
        letter-spacing: 20px;
    }



}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {

    section.calendly_Intergrate h3 {
        font-size: 35px;
        line-height: 45px;
    }

    section.calendly_Intergrate span {
        font-size: 25px;
        line-height: 35px;
    }

    .heading-one {
        font-size: 35px;
        line-height: 45px;
    }

    .heading-two {
        font-size: 30px;
        line-height: 38px;
    }

    .heading-three {
        font-size: 24px;
        line-height: 30px;
    }

    .heading-four {
        font-size: 20px;
        line-height: 26px;
    }

    .heading-five {
        font-size: 18px;
        line-height: 22px;
    }

    .heading-six {
        font-size: 16px;
        line-height: 22px;
    }

    .heading-seven {
        font-size: 16px;
        line-height: 22px;
    }

    p {
        font-size: 15px;
        line-height: 25px;
    }

    li {
        font-size: 14px;
        line-height: 20px;
    }


    .website-main-buttons {
        flex-wrap: wrap;
    }




    .website-main-buttons a.read-more-btn,
    .website-main-buttons button.popup-btn,
    .website-main-buttons button.chat-btn,
    .website-main-buttons a.call-btn {
        font-size: 12px;
        margin: 0 5px 20px;
        width: 250px;
        height: 60px;
    }

    .container-fluid,
    .container-fluid.new {
        padding: 0 20px;
    }

    .navbar-brand img {
        width: 240px;
        height: 40px;
        object-fit: contain;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
        font-size: 13px;
    }

    .sec-home-banner {
        padding: 130px 0 50px;
    }

    .banner-main-image img {
        display: none;
    }

    .banner-mobile-image {
        display: block;
    }

    .banner-mobile-image img {
        width: 80%;
    }

    .banner-bottom-box img {
        width: 130px;
        height: 50px;
    }

    .sec-home-banner .banner-main-details .heading-one {
        font-size: 40px;
        line-height: 50px;
    }

    .banner-inner-bottom {
        display: none;
    }


    .banner-inner-bottom img.img-fluid.circle1,
    .banner-inner-bottom img.img-fluid.circle2,
    .banner-inner-bottom img.img-fluid.circle3 {
        display: none;
    }


    .banner-inner-image img.img-fluid.thumb1,
    .banner-inner-image img.img-fluid.thumb2,
    .banner-inner-image img.img-fluid.thumb3 {
        display: none;
    }

    .marketing-pr-logos img {
        margin: 0 0 0 10px;
    }

    .marketing-pr-logos {
        margin: 0 0 15px;
        padding: 15px 0 0 40px;
    }


    .sec-home-banner.about .banner-main-details p {
        font-size: 13px;
    }


    .sec-clients-wrap .clients-details {
        margin: 0 0 12px;
    }

    .sec-clients-wrap .clients-details .heading-two {
        font-size: 40px;
        line-height: 42px;
    }



    section.sec-clients-wrap {
        padding: 50px 0;
    }


    .sec-testimonials-inner-wrap {
        padding: 50px 0;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-list {
        padding-bottom: 0 !important;
    }

    .sec-testimonials-inner-wrap .slick-slide {
        flex-shrink: 1;
    }

    .sec-testimonials-inner-wrap .testimonials-header {
        margin: 0 0 25px;


    }

    .sec-testimonials-inner-wrap .testimonial-inner-box {
        margin: 47px 0 20px;
    }

    .sec-testimonials-inner-wrap .author-image img {
        width: 100%;
        height: 100%;
    }

    .sec-testimonials-inner-wrap .author-image {
        width: 120px;
        height: 120px;
        border: 0;
        box-shadow: none;
    }

    .sec-testimonials-inner-wrap .testimonial-content .heading-four {
        font-size: 20px !important;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-track {
        gap: 30px;
    }

    .sec-testimonials-inner-wrap .author-info p {
        font-size: 13px;
    }

    .sec-testimonials-inner-wrap .test-icon img {
        width: 150px;
    }

    .sec-testimonials-inner-wrap .quote-marks img {
        width: 115px;
    }

    .sec-testimonials-inner-wrap .testimonials-header .heading-two {
        font-size: 30px;
        line-height: 38px;
    }


    .cta-inner-details .heading-two {
        font-size: 35px;
        line-height: 42px;
    }

    .search-input-group .website-main-buttons button.submit-btn {
        width: 120px;
        height: 50px;
    }

    .search-input-group .form-control {
        padding: 10px 10px;
    }

    .sec-clients-wrap .website-main-buttons a.read-more-btn {
        margin: 0;
    }


    .sec-home-cta.social.inner .cta-inner-logos img {
        height: 30px;
    }


    .review-inner img {
        height: 25px;
    }

    .sec-financing-wrap {
        padding: 50px 0;
    }

    .sec-financing-wrap .financing-header .heading-two {
        font-size: 35px;
        line-height: 45px;
    }

    .sec-financing-wrap .package-title {
        font-size: 15px !important;
        ;
        margin: 0 0 20px;
        left: 20% !important;
    }

    .sec-financing-wrap .price-amount .heading-four {

        font-size: 20px;
    }

    .sec-financing-wrap .package-card {
        padding: 20px 20px !important;
        margin: 40px 0 !important;
    }

    .sec-financing-wrap .package-card:hover {
        transform: none !important;
    }

    .sec-financing-wrap .price-note {
        font-size: 10px;
        margin: 25px 0 0;
    }

    .celebrity-info .heading-five {
        font-size: 15px !important;
    }


    .sec-home-banner.hardcover.tv-interviews,
    .sec-home-banner.hardcover.print-placement,
    .sec-home-banner.hardcover.article-publications,
    .sec-home-banner.hardcover.podcast {
        padding: 300px 0;
    }

    .sec-home-cta.hardcover.podcast {

        height: 80vh;
    }

    .sec-home-cta.hardcover.print-placement {
        height: 100vh;
        padding: 50px 0;
    }

    .sec-home-cta.hardcover.article-publications {
        padding: 100px 0;
    }


    .sec-home-cta.hardcover.article-publications .cta-inner-details p {
        color: #000;
    }


    section.sec-home-banner.about {
        padding: 100px 0;
        margin: 130px 20px 50px 20px;
    }


    .main-footer {
        padding: 35px 0 15px;
    }

    .main-footer-head .heading-two {
        font-weight: 300;
        font-size: 45px;
        line-height: 52px;
    }

    .main-footer .main-footer-head p {
        line-height: 28px;
    }

    .footer-links .nav-link {
        font-size: 14px;
    }

    .footer-links {
        margin: 25px 0;
    }

    .main-footer .main-footer-head p {
        font-size: 16px;
    }

    .contact-inner-info {
        padding: 15px 0 0 50px !important;
    }

    .contact-inner-info .heading-two {
        font-size: 38px;
        line-height: 59px;
    }

    section.sec-home-banner.marketing {
        margin: 150px 20px 50px 20px;
        padding: 230px 0 120px;
    }

    section.sec-home-cta-inner.marketing {
        padding: 50px 0;
    }

    .contact-title .heading-two {
        font-size: 50px;
        line-height: 60px;
    }

    .about-book-info .heading-two {
        font-size: 40px;
        line-height: 50px;
    }

    .sec-contact-wrap.ebook .ebook-image img {
        display: none;
    }

    .contact-main {
        margin: 0 15px;
    }



    .terms-banner-content .heading-one {
        font-size: 55px;
        line-height: 65px;
    }

    .contact-inner-info p {
        font-size: 17px;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        margin: 0 20px 0 0;
    }

    .sec-home-cta.social .cta-inner-details {
        margin: 100px 100px 0 0;
    }

    .sec-home-cta.social {
        height: 80vh;
    }


    .thankyou-page-content .heading-one {
        font-size: 76px;
        line-height: 80px;
        letter-spacing: 20px;
    }



}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {



    .heading-one {
        font-size: 35px;
        line-height: 45px;
    }

    .heading-two {
        font-size: 30px;
        line-height: 38px;
    }

    .heading-three {
        font-size: 24px;
        line-height: 30px;
    }

    .heading-four {
        font-size: 20px;
        line-height: 26px;
    }

    .heading-five {
        font-size: 18px;
        line-height: 22px;
    }

    .heading-six {
        font-size: 16px;
        line-height: 22px;
    }

    .heading-seven {
        font-size: 16px;
        line-height: 22px;
    }

    p {
        font-size: 15px;
        line-height: 25px;
    }

    li {
        font-size: 14px;
        line-height: 20px;
    }


    .website-main-buttons {
        flex-wrap: wrap;
    }




    .website-main-buttons a.read-more-btn,
    .website-main-buttons button.popup-btn,
    .website-main-buttons button.chat-btn,
    .website-main-buttons a.call-btn {
        font-size: 12px;
        margin: 0 5px 20px;
        width: 250px;
        height: 60px;
    }

    .container-fluid,
    .container-fluid.new {
        padding: 0 20px;
    }

    .navbar-brand img {
        width: 240px;
        height: 40px;
        object-fit: contain;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
        font-size: 13px;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item {
        margin: 0 10px;
    }

    .sec-home-banner {
        padding: 130px 0 50px;
    }

    .banner-main-image img {
        display: none;
    }

    .banner-mobile-image {
        display: block;
    }

    .banner-mobile-image img {
        width: 80%;
    }

    .banner-bottom-box img {
        width: 130px;
        height: 50px;
    }

    .sec-home-banner .banner-main-details .heading-one {
        font-size: 40px;
        line-height: 50px;
    }

    .banner-inner-bottom {
        display: none;
    }


    .banner-inner-bottom img.img-fluid.circle1,
    .banner-inner-bottom img.img-fluid.circle2,
    .banner-inner-bottom img.img-fluid.circle3 {
        display: none;
    }


    .banner-inner-image img.img-fluid.thumb1,
    .banner-inner-image img.img-fluid.thumb2,
    .banner-inner-image img.img-fluid.thumb3 {
        display: none;
    }


    .sec-home-banner.about .banner-main-details p {
        font-size: 13px;
    }


    .sec-clients-wrap .clients-details {
        margin: 0 0 12px;
    }

    .sec-clients-wrap .clients-details .heading-two {
        font-size: 40px;
        line-height: 42px;
    }

    section.calendly_Intergrate h3 {
        font-size: 30px;
        line-height: 37px;
    }

    section.calendly_Intergrate span {
        font-size: 20px;
        line-height: 27px;
    }

    section.sec-clients-wrap {
        padding: 50px 0;
    }


    .sec-testimonials-inner-wrap {
        padding: 50px 0;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-list {
        padding-bottom: 0 !important;
    }

    .sec-testimonials-inner-wrap .slick-slide {
        flex-shrink: 1;
    }

    .sec-testimonials-inner-wrap .testimonials-header {
        margin: 0 0 25px;


    }

    .sec-testimonials-inner-wrap .testimonial-inner-box {
        margin: 47px 0 20px;
    }

    .sec-testimonials-inner-wrap .author-image img {
        width: 100%;
        height: 100%;
    }

    .sec-testimonials-inner-wrap .author-image {
        width: 120px;
        height: 120px;
        border: 0;
        box-shadow: none;
    }

    .sec-testimonials-inner-wrap .testimonial-content .heading-four {
        font-size: 20px !important;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-track {
        gap: 30px;
    }

    .sec-testimonials-inner-wrap .author-info p {
        font-size: 13px;
    }

    .sec-testimonials-inner-wrap .test-icon img {
        width: 150px;
    }

    .sec-testimonials-inner-wrap .quote-marks img {
        width: 115px;
    }

    .sec-testimonials-inner-wrap .testimonials-header .heading-two {
        font-size: 30px;
        line-height: 38px;
    }


    .cta-inner-details .heading-two {
        font-size: 35px;
        line-height: 42px;
    }

    .search-input-group .website-main-buttons button.submit-btn {
        width: 120px;
        height: 50px;
    }

    .search-input-group .form-control {
        padding: 10px 10px;
    }

    .sec-clients-wrap .website-main-buttons a.read-more-btn {
        margin: 0;
    }


    .sec-home-cta.social.inner .cta-inner-logos img {
        height: 30px;
    }


    .review-inner img {
        height: 25px;
    }

    .sec-financing-wrap {
        padding: 50px 0;
    }

    .sec-financing-wrap .financing-header .heading-two {
        font-size: 35px;
        line-height: 45px;
    }

    .sec-financing-wrap .package-title {
        font-size: 15px !important;
        ;
        margin: 0 0 20px;
        left: 20% !important;
    }

    .sec-financing-wrap .price-amount .heading-four {

        font-size: 20px;
    }

    .sec-financing-wrap .package-card {
        padding: 20px 20px !important;
        margin: 40px 0 !important;
    }

    .sec-financing-wrap .package-card:hover {
        transform: none !important;
    }

    .sec-financing-wrap .price-note {
        font-size: 10px;
        margin: 25px 0 0;
    }

    .celebrity-info .heading-five {
        font-size: 15px !important;
    }


    .sec-home-banner.hardcover.tv-interviews,
    .sec-home-banner.hardcover.print-placement,
    .sec-home-banner.hardcover.article-publications,
    .sec-home-banner.hardcover.podcast {
        padding: 200px 0;
    }

    .sec-home-cta.hardcover.podcast {

        height: 80vh;
    }

    .sec-home-cta.hardcover.print-placement {
        height: 100vh;
        padding: 50px 0;
    }

    .sec-home-cta.hardcover.article-publications {
        padding: 100px 0;
    }


    .sec-home-cta.hardcover.article-publications .cta-inner-details p {
        color: #000;
    }


    section.sec-home-banner.about {
        padding: 100px 0;
        margin: 130px 20px 50px 20px;
    }


    .main-footer {
        padding: 35px 0 15px;
    }

    .main-footer-head .heading-two {
        font-weight: 300;
        font-size: 45px;
        line-height: 52px;
    }

    .main-footer .main-footer-head p {
        line-height: 28px;
    }

    .footer-links .nav-link {
        font-size: 14px;
    }

    .footer-links {
        margin: 25px 0;
    }

    .main-footer .main-footer-head p {
        font-size: 16px;
    }

    .contact-inner-info {
        padding: 15px 0 0 50px !important;
    }

    .contact-inner-info .heading-two {
        font-size: 38px;
        line-height: 59px;
    }

    section.sec-home-banner.marketing {
        margin: 150px 20px 50px 20px;
        padding: 230px 0 120px;
    }

    section.sec-home-cta-inner.marketing {
        padding: 50px 0;
    }

    .contact-title .heading-two {
        font-size: 50px;
        line-height: 60px;
    }


    .about-book-info .heading-two {
        font-size: 40px;
        line-height: 50px;
    }

    .sec-contact-wrap.ebook .ebook-image img {
        display: none;
    }

    .contact-main {
        margin: 0 15px;
    }


    .marketing-pr-logos {
        margin: 0 0 15px;
        padding: 15px 0 0 40px;
    }


    .marketing-pr-logos img {
        margin: 0 0 0 10px;
    }


    .terms-banner-content .heading-one {
        font-size: 55px;
        line-height: 65px;
    }

    .contact-inner-info p {
        font-size: 17px;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        margin: 0 20px 0 0;
    }

    .sec-home-cta.social .cta-inner-details {
        margin: 100px 100px 0 0;
    }

    .sec-home-cta.social {
        height: 80vh;
    }


    .thankyou-page-content .heading-one {
        font-size: 76px;
        line-height: 80px;
        letter-spacing: 20px;
    }



}

@media only screen and (min-width: 992px) and (max-width: 1199px) {

    html {
        overflow-x: hidden;
    }

    .heading-one {
        font-size: 30px;
        line-height: 38px;
    }

    .heading-two {
        font-size: 28px;
        line-height: 32px;
    }

    .heading-three {
        font-size: 24px;
        line-height: 30px;
    }

    .heading-four {
        font-size: 20px;
        line-height: 26px;
    }

    .heading-five {
        font-size: 18px;
        line-height: 22px;
    }

    .heading-six {
        font-size: 16px;
        line-height: 22px;
    }

    .heading-seven {
        font-size: 16px;
        line-height: 22px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    li {
        font-size: 14px;
        line-height: 20px;
    }



    .website-main-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }

    .website-main-buttons a.read-more-btn,
    .website-main-buttons button.popup-btn,
    .website-main-buttons button.chat-btn,
    .website-main-buttons a.call-btn {
        font-size: 13px;
        margin: 0 5px 20px;
        width: 270px;
        height: 50px;
    }

    .container-fluid,
    .container-fluid.new {
        padding: 0 20px;
    }


    header {
        background: #fff;
    }

    header nav.navbar .navbar-brand {
        width: 180px;
    }


    header nav.navbar .navbar-brand {
        width: 180px;
    }

    .navbar-brand img {
        width: 170px;
        height: 40px;
        object-fit: contain;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link,
    header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a {
        font-size: 13px;
        padding: 8px 0px;
        line-height: 22px;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item {
        margin: 0 10px;
    }

    .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(595%) hue-rotate(138deg) brightness(108%) contrast(101%);
    }

    header .navbar-main-center ul.navbar-nav li.nav-item {
        border-bottom: 1px solid #000;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item:nth-child(8) {
        border-bottom: none;
    }

    header .navbar-main-center ul.navbar-nav {
        background: #f1f1f1;
        margin: 12px 0 0 0;
    }

    .sec-home-banner {
        padding: 200px 0 100px !important;
    }

    /* .banner-main-details {
        text-align: center;
    } */

    .banner-main-details .website-main-buttons {
        justify-content: left !important;
    }

    .sec-home-banner .banner-main-details .heading-one {
        font-size: 30px;
        line-height: 40px;
    }

    .banner-main-image img {
        min-height: auto;
        width: 70%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner-bottom-box img {
        width: 130px;
        height: 40px;
    }


    .banner-main-image,
    .banner-inner-image,
    .banner-inner-bottom {
        display: none;
    }

    .banner-mobile-image {
        display: block;
    }

    .sec-home-cta {
        height: 70vh;
    }


    .sec-clients-wrap .clients-details {
        margin: 0 0 12px;
    }



    section.sec-clients-wrap {
        padding: 50px 0;
    }

    .sec-clients-wrap .clients-details .heading-two {
        font-size: 30px;
        line-height: 40px;
    }


    .sec-testimonials-inner-wrap .author-info .heading-four {
        font-size: 18px;
        line-height: 26px;
    }

    .sec-testimonials-inner-wrap .testimonial-content .heading-four {
        font-size: 22px;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-track {
        gap: 12px;
    }

    .sec-testimonials-inner-wrap .author-info p {
        font-size: 13px;
    }

    .sec-testimonials-inner-wrap .test-icon img {
        width: 120px;
    }

    .sec-testimonials-inner-wrap .quote-marks img {
        width: 100px;
    }

    .sec-testimonials-inner-wrap .testimonial-content p {
        padding: 0 6px 0 0;
        min-height: 150px;
        max-height: 150px;
    }

    .sec-testimonials-inner-wrap .testimonial-inner-box {
        padding: 60px 15px 60px 15px;
    }


    section.sec-home-cta.audiobook {
        padding: 37px 0;
    }

    section.sec-home-cta.audiobook.inner {
        padding: 50px 0;
    }

    .search-input-group .website-main-buttons button.submit-btn {
        width: 120px;
        height: 50px;
    }

    .search-input-group .form-control {
        padding: 10px 10px;
    }

    .sec-clients-wrap .website-main-buttons a.read-more-btn {
        margin: 0;
    }

    .cta-inner-details .heading-two {
        font-size: 30px;
        line-height: 40px;
    }



    .reviews-counts .heading-four {
        font-size: 15px;
        margin: 0;
    }

    .sec-financing-wrap {
        padding: 30px 0 30px;
    }

    .review-inner img {
        height: 25px;
        width: 99px;
    }

    .sec-financing-wrap .package-card:hover {
        transform: none;
    }

    .slider-progress {
        width: calc(100% - 40px);
        margin: 12px auto 0;
    }

    .sec-financing-wrap .price-amount .heading-four,
    .sec-financing-wrap .package-title {
        font-size: 14px;
        line-height: 23px;
        margin: 0 0 15px;
    }

    .sec-financing-wrap .package-card {

        padding: 20px 15px;
        margin: 0 5px 15px;

    }

    .sec-testimonials-inner-wrap .testimonial-content {
        text-align: center;
    }

    .sec-testimonials-inner-wrap .author-info {
        text-align: center;
    }

    .sec-financing-wrap .financing-header .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    .financing-header p {
        font-size: 12px;
    }

    .author-info {
        text-align: left;
    }


    .sec-contact-wrap.contact-page .contact-main .contact-inner-info,
    .contact-inner-info {
        padding: 25px 0 0 10px;
    }

    .contact-inner-info .heading-two {
        font-size: 35px;
        line-height: 45px;
    }


    .contact-inner-form {
        padding: 25px 15px 20px 15px;
    }

    .contact-inner-info p {
        font-size: 15px;
        line-height: 22px;
    }

    .contact-main {
        margin: 0 15px;
    }

    .contact-inner-form .contact-title p {
        font-size: 15px;
    }

    .contact-inner-form .form-group button.submit-btn {
        width: 200px;
        height: 60px;
    }

    .contact-inner-form p {
        font-size: 12px;
        line-height: 22px;
    }

    .contact-title .heading-two {
        font-size: 35px;
        margin: 0;
        line-height: 42px;
    }


    section.sec-home-banner.marketing {
        padding: 120px 0;
        margin: 130px 15px 50px 15px;
    }

    section.sec-about-book {
        padding: 50px 0;
    }

    .about-book-info .heading-two {
        font-size: 30px;
        line-height: 40px;
        margin: 0 0 20px;
    }

    .about-details-box {
        margin: 15px 0 0;
        align-items: start;
    }

    .about-details-box .about-box-info .heading-six {
        font-size: 14px;
        line-height: 24px;
    }

    .about-details-box .about-box-info p {
        font-size: 13px;
    }

    .sec-home-banner .banner-main-details p {
        width: 100%;
        font-size: 13px;
    }


    section.sec-home-cta.hardcover.news {
        background-position: center;
        height: 64vh;
    }



    section.sec-home-cta.hardcover {
        background-position: center;
        height: 80vh;
    }

    section.sec-home-cta.hardcover.influencer {
        height: 65vh;
    }

    .sec-blog-news .blog-inner-info .heading-four {
        font-size: 25px;
        line-height: 35px;
    }


    section.sec-home-cta.hardcover.influencer .website-main-buttons {
        justify-content: left;
    }

    .sec-home-cta.hardcover .cta-inner-details {
        background: transparent;
    }

    .sec-home-cta.ebook .cta-inner-details {
        text-align: center;
    }

    section.sec-home-cta.ebook {
        background-size: cover;
        background-position: right;
        padding: 60px 0;
        height: 65vh;
    }

    .sec-contact-wrap.ebook .ebook-image img {
        display: none;
    }



    section.sec-home-banner.about {
        padding: 75px 0 !important;
        margin: 120px 15px 50px 15px;
    }

    .sec-audio-info-wrap .audio-info-title .heading-two {
        font-size: 25px;
        line-height: 32px;
    }


    section.sec-home-cta.hardcover.print-placement,
    section.sec-home-cta.hardcover.article-publications {
        height: 80vh;
    }

    .sec-home-cta.hardcover.article-publications {
        padding: 50px 0 136px;
    }

    .form-check-new .form-check-label {
        font-size: 10px;

    }

    section.calendly_Intergrate {
        padding: 3rem 0;
    }

    section.calendly_Intergrate h3 {
        font-size: 2rem;
    }

    section.calendly_Intergrate p {
        font-size: 15px;
    }

    section.calendly_Intergrate span {
        font-size: 20px;
    }

    section.calendly_Intergrate ul {
        padding: 13px 0 0 15px;
    }

    section.calendly_Intergrate ul li {
        font-size: 15px;
    }


    .sec-home-cta.social {
        background-size: cover;
        background-position: left;
        height: 55vh;
        padding: 50px 0;
    }

    .sec-home-cta.social .website-main-buttons {
        justify-content: left;
    }


    section.sec-home-cta.social.inner,
    section.sec-home-cta.social.inner.inner-two {
        background-size: cover;
        background-position: center;
        height: 70vh;
        padding: 50px 0;
    }


    section.sec-home-cta.social.inner.explore {
        background-size: cover;
        background-position: right;
        height: 70vh;
        padding: 50px 0;
    }

    .sec-home-cta.social .cta-inner-details {
        margin: 60px 16px;
    }

    .sec-home-cta.social .cta-inner-details {
        background: transparent;
    }

    .sec-home-cta.social.inner .cta-inner-details .heading-two {
        font-size: 35px;
        line-height: 55px;
    }

    .sec-home-cta.social.inner.inner-two .cta-inner-logos img {
        margin: 20px 15px 0 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        width: 60px;
    }

    .sec-testimonials-inner-wrap .testimonials-header {
        margin: 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        margin: 30px 16px 0 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos {
        margin: 15px 0 0;
        padding: 30px 0;
    }

    .sec-financing-wrap.new .package-title {
        width: 240px;
        /* left: 20%; */
        padding: 15px 12px;
        font-size: 15px;
    }

    .sec-financing-wrap.new .package-card {
        padding: 15px 15px;
        margin: 20px 0 40px;
    }


    .sec-financing-wrap.new .package-card ul li {
        font-size: 14px;
        margin: 0 10px 5px;
        line-height: 24px;
    }



    .sec-home-cta.social.inner.explore .cta-inner-logos img {
        margin: 0;
    }

    .sec-blog-news .blog-inner-info p {
        font-size: 14px;
    }


    .sec-blog-news .blog-title .heading-two {
        font-size: 30px;
        line-height: 40px;
    }


    .sec-blog-news .blog-inner-info {
        margin: 20px 10px;
    }

    .sec-blog-news .blog-title {
        margin: 0 0 45px;
    }

    .step-works-inner .step-works-box {
        display: block;
    }

    .step-works-box span.step-count,
    .step-works-box span.step-price {
        border: none;
        padding: 0;
    }

    .works-box-content .heading-five {
        font-size: 20px;
    }

    .step-works-box span.step-price {
        font-size: 20px;
    }

    .step-works-inner .step-works-box .step-read-items {
        bottom: 5px;
    }

    .step-works-box .works-box-content {
        margin: 0;
        width: 100%;
    }

    .step-works-head .heading-two {
        font-size: 35px;
        line-height: 40px;
    }

    .step-works-wrap .step-works-head {
        width: 100%;
    }

    .step-works-wrap .step-works-inner .website-main-buttons a.read-more-btn {
        border-radius: 8px;
        width: 170px;
        height: 50px;
        font-size: 14px;
        bottom: 15px;
    }


    .step-works-wrap::after {
        height: 10%;
    }


    .sec-inner-blog .blog-main {
        padding: 15px 15px;
    }


    .sec-inner-blog .inner-blog-details {
        padding: 50px 20px;
    }


    .sec-inner-blog .inner-blog-details .heading-five {
        font-size: 30px;
        line-height: 50px;
    }


    .sec-inner-blog .inner-blog-one,
    .sec-inner-blog .inner-blog-two,
    .sec-inner-blog .inner-blog-three {
        height: 45vh;
        background-position: center;
    }

    .sec-inner-blog .blog-inner-info ul li {
        font-size: 15px;
    }

    .sec-inner-blog .inner-blog-details .heading-four {
        font-size: 40px;
    }



    section.sec-home-cta-inner.marketing {
        padding: 30px 0;
        background-position: right;
        height: 50vh;
    }

    .sec-home-cta-inner.marketing .cta-inner-details p {
        font-size: 15px;
        line-height: 25px;
    }

    section.sec-home-cta-inner.marketing .cta-inner-details {
        background: transparent;

    }

    section.sec-about-book.marketing {
        margin: 0;
        border-radius: 0;
    }

    .sec-home-cta.audiobook.inner .cta-inner-details .review-inner {
        display: none;
    }

    section.sec-home-cta.hardcover.orm {
        padding: 50px 0;
        height: 55vh;
    }

    section.sec-home-cta.orm {
        padding: 50px 0;
        height: 55vh;
    }



    .sec-testimonials-inner-wrap .testimonials-header .heading-two {
        font-size: 35px;
        line-height: 42px;
    }

    section.sec-home-cta.about {
        height: 70vh;
    }


    .sec-home-cta.hardcover .cta-inner-details p {
        color: #000000a8;
    }


    .review-inner {
        display: none;
    }


    section.sec-home-cta.hardcover.article-publications.seo {
        height: 70vh;
    }


    section.sec-home-cta.hardcover.orm .cta-inner-details {
        background: #efefef;
    }


    .main-footer {
        padding: 35px 0 15px;
    }

    .main-footer-head .heading-two {
        font-weight: 300;
        font-size: 40px;
        line-height: 50px;
    }

    .main-footer .main-footer-head p {
        line-height: 28px;
    }

    .footer-links .nav-link {
        font-size: 14px;
    }

    .footer-links {
        margin: 25px 0;
    }

    .main-footer .main-footer-head p {
        font-size: 14px;
    }

    .term-condition-inner ul {
        display: block;
    }

    .term-condition-inner ul li {
        margin: 0 8px 12px 0;
    }

    .about-book-info .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    .contact-main {
        margin: 0 12px;
    }



    .sec-contact-wrap.ebook .ebook-image img {
        width: 28%;
        left: 5%;
    }

    section.sec-about-book {
        padding: 50px 0;
    }

    .terms-banner-content .heading-one {
        font-size: 45px;
        line-height: 55px;
    }

    section.terms-conditions-banner {
        padding: 120px 0 50px;
    }


    .marketing-pr-logos {
        padding: 15px 0 0 0;
        margin: 0 0 15px;
    }


    .marketing-pr-logos img {
        width: 200px;
        object-fit: scale-down;
        height: 60px;
        margin: 0 0 0 10px;
    }




    .social_links li i,
    .footer-mail-contact a {
        font-size: 17px;
    }

    .copyright p {
        font-size: 11px;
    }


    .thankyou-page-wrap::before {
        width: 300px;
        height: 300px;
    }

    .thankyou-page-wrap::after {
        width: 300px;
        height: 300px;
    }

    .thankyou-page-content .heading-one {
        font-size: 60px !important;
        line-height: 70px !important;
        letter-spacing: 20px;
        width: 100%;
    }

    .thankyou-page-content .heading-one::before {
        width: 100%;
    }

    .thankyou-page-content a.back-home-btn {
        font-size: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {


    html {
        overflow-x: hidden;
    }

    .heading-one {
        font-size: 30px;
        line-height: 38px;
    }

    .heading-two {
        font-size: 28px;
        line-height: 32px;
    }

    .heading-three {
        font-size: 24px;
        line-height: 30px;
    }

    .heading-four {
        font-size: 20px;
        line-height: 26px;
    }

    .heading-five {
        font-size: 18px;
        line-height: 22px;
    }

    .heading-six {
        font-size: 16px;
        line-height: 22px;
    }

    .heading-seven {
        font-size: 16px;
        line-height: 22px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    li {
        font-size: 14px;
        line-height: 20px;
    }



    .website-main-buttons {
        flex-wrap: wrap;
    }

    .website-main-buttons a.read-more-btn,
    .website-main-buttons button.popup-btn,
    .website-main-buttons button.chat-btn,
    .website-main-buttons a.call-btn {
        font-size: 13px;
        margin: 0 5px 20px;
        width: 270px;
        height: 50px;
    }

    .container-fluid,
    .container-fluid.new {
        padding: 0 20px;
    }


    header {
        background: #fff;
    }

    header nav.navbar .navbar-brand {
        width: 180px;
    }

    header .navbar-main-center ul.navbar-nav {
        background: #f1f1f1;
        margin: 12px 0 0 0;
    }


    header nav.navbar .navbar-brand {
        width: 180px;
    }

    .navbar-brand img {
        width: 190px;
        height: 35px;
    }

    .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(595%) hue-rotate(138deg) brightness(108%) contrast(101%);
    }

    header .navbar-main-center ul.navbar-nav li.nav-item {
        border-bottom: 1px solid #000;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item:nth-child(8) {
        border-bottom: none;
    }

    .sec-home-cta.hardcover.orm .cta-inner-details {
        text-align: right;
    }

    .sec-home-banner {
        padding: 150px 0 100px !important;
    }

    .cta-inner-details p {
        color: #000;
    }

    .sec-home-banner .banner-main-details .heading-one {
        font-size: 30px;
        line-height: 40px;
    }

    .banner-main-image img {
        min-height: auto;
        width: 70%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner-bottom-box img {
        width: 140px;
        height: 50px;
    }



    .banner-main-image,
    .banner-inner-image,
    .banner-inner-bottom {
        display: none;
    }

    .banner-mobile-image {
        display: block;
    }



    .sec-clients-wrap .clients-details {
        margin: 0 0 12px;
    }



    section.sec-clients-wrap {
        padding: 50px 0;
    }

    .sec-clients-wrap .clients-details .heading-two {
        font-size: 30px;
        line-height: 40px;
    }


    .sec-testimonials-inner-wrap .author-info .heading-four {
        font-size: 18px;
        line-height: 26px;
    }

    .sec-testimonials-inner-wrap .testimonial-content .heading-four {
        font-size: 22px;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-track {
        gap: 12px;
    }

    .sec-testimonials-inner-wrap .author-info p {
        font-size: 13px;
    }

    .sec-testimonials-inner-wrap .test-icon img {
        width: 120px;
    }

    .sec-testimonials-inner-wrap .quote-marks img {
        width: 100px;
    }

    .sec-testimonials-inner-wrap .testimonial-content p {
        padding: 0 6px 0 0;
        min-height: 115px;
        max-height: 115px;
    }

    .sec-testimonials-inner-wrap .testimonial-inner-box {
        padding: 60px 30px 60px 29px;
    }

    .sec-testimonials-inner-wrap .author-image {
        width: 120px;
        height: 120px;
        border: none;
    }


    section.sec-home-cta.audiobook {
        padding: 37px 0;
        height: 55vh;
    }

    .sec-home-cta {
        padding: 37px 0;
        height: 65vh;
    }



    .sec-home-cta.audiobook.inner .cta-inner-details {
        text-align: center;
    }

    section.sec-home-cta.audiobook.inner {
        padding: 50px 0;
        height: 60vh;
    }

    .search-input-group .website-main-buttons button.submit-btn {
        width: 120px;
        height: 50px;
    }

    .search-input-group .form-control {
        padding: 10px 10px;
    }

    .sec-clients-wrap .website-main-buttons a.read-more-btn {
        margin: 0;
    }

    .cta-inner-details .heading-two {
        font-size: 24px;
        line-height: 34px;
    }


    .cta-inner-details {
        padding: 12px 7px;
        background: #e1e1df;
        border-radius: 12px;
    }

    .reviews-counts .heading-four {
        font-size: 15px;
        margin: 0;
    }

    .sec-financing-wrap {
        padding: 30px 0 30px;
    }

    .review-inner img {
        height: 25px;
        width: 99px;
    }

    .sec-financing-wrap .package-card:hover {
        transform: none;
    }

    .slider-progress {
        width: calc(100% - 40px);
        margin: 12px auto 0;
    }

    .sec-financing-wrap .price-amount .heading-four,
    .sec-financing-wrap .package-title {
        font-size: 14px;
        line-height: 23px;
        margin: 0 0 15px;
    }

    .sec-financing-wrap .package-card {

        padding: 20px 15px;
        margin: 0 5px 15px;

    }

    .sec-testimonials-inner-wrap .testimonial-content {
        text-align: center;
    }

    .sec-testimonials-inner-wrap .author-info {
        text-align: center;
    }

    .sec-financing-wrap .financing-header .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    .financing-header p {
        font-size: 12px;
    }

    .author-info {
        text-align: left;
    }


    .sec-contact-wrap.contact-page .contact-main .contact-inner-info,
    .contact-inner-info {
        padding: 25px 0 0 10px;
    }

    .contact-inner-info .heading-two {
        font-size: 30px;
        line-height: 40px;
    }


    .contact-inner-form {
        padding: 25px 15px 20px 15px;
    }

    .contact-inner-info p {
        font-size: 15px;
        line-height: 22px;
    }

    .contact-main {
        margin: 0 15px;
    }

    .contact-inner-form .contact-title p {
        font-size: 15px;
    }

    .contact-inner-form .form-group button.submit-btn {
        width: 200px;
        height: 60px;
    }

    .contact-inner-form p {
        font-size: 12px;
        line-height: 22px;
    }

    .contact-title .heading-two {
        font-size: 25px;
        margin: 0;
        line-height: 32px;
    }

    .sec-home-cta.social.inner.explore .cta-inner-logos img {
        height: 45px;
    }


    section.sec-home-cta.hardcover.influencer .website-main-buttons,
    .sec-home-cta.hardcover.influencerone .website-main-buttons {
        justify-content: center;
    }

    section.sec-home-banner.marketing {
        padding: 120px 0;
        margin: 130px 15px 50px 15px;
    }

    section.sec-about-book {
        padding: 50px 0;
    }

    .about-book-info .heading-two {
        font-size: 30px;
        line-height: 40px;
        margin: 0 0 20px;
    }

    .sec-home-cta-inner.marketing .cta-inner-details {
        text-align: left;
    }

    .about-details-box {
        margin: 15px 0 0;
        align-items: start;
    }

    .about-details-box .about-box-info .heading-six {
        font-size: 14px;
        line-height: 24px;
    }

    .about-details-box .about-box-info p {
        font-size: 13px;
    }

    .sec-home-banner .banner-main-details p {
        width: 100%;
        font-size: 13px;
    }



    section.sec-home-cta.hardcover.news {
        background-position: center;
        height: 50vh;
    }

    .news-inner-image img {
        display: none;
    }

    section.sec-home-cta.hardcover {
        background-position: center;
        height: 60vh;
    }

    section.sec-home-cta.hardcover.influencer {
        height: 65vh;
    }

    .sec-blog-news .blog-inner-info .heading-four {
        font-size: 25px;
        line-height: 35px;
    }

    .sec-home-cta.hardcover .cta-inner-details {
        text-align: center;
    }

    .sec-home-cta.ebook .cta-inner-details {
        text-align: center;
    }

    section.sec-home-cta.ebook {
        background-size: cover;
        background-position: right;
        padding: 60px 0;
        height: 65vh;
    }

    .sec-contact-wrap.ebook .ebook-image img {
        display: none;
    }

    .sec-home-cta.paperback {
        height: 50vh;
        padding: 50px 0;
    }

    .sec-home-cta.paperback .cta-inner-details {
        left: 5%;
        right: 5%;
        top: 5%;
    }

    section.sec-home-banner.about {
        padding: 75px 0 !important;
        margin: 110px 15px 50px 15px;
    }

    .sec-audio-info-wrap .audio-info-title .heading-two {

        font-size: 30px;
        line-height: 40px;

    }

    section.sec-home-cta.hardcover.podcast {
        height: 60vh;
    }

    section.sec-home-cta.hardcover.print-placement {
        height: 50vh;
    }

    section.sec-home-cta.hardcover.article-publications {
        height: 60vh;
    }

    .sec-home-cta.hardcover.article-publications {
        padding: 50px 0 136px;
    }

    .form-check-new .form-check-label {
        font-size: 10px;

    }

    section.calendly_Intergrate {
        padding: 3rem 0;
    }

    section.calendly_Intergrate h3 {
        font-size: 2rem;
    }

    section.calendly_Intergrate p {
        font-size: 15px;
    }

    section.calendly_Intergrate span {
        font-size: 20px;
    }

    section.calendly_Intergrate ul {
        padding: 13px 0 0 15px;
    }

    section.calendly_Intergrate ul li {
        font-size: 15px;
    }


    .sec-home-cta.social {
        background-size: cover;
        background-position: left;
        height: 55vh;
        padding: 50px 0;
    }

    .sec-home-cta.social .website-main-buttons {
        justify-content: left;
    }


    section.sec-home-cta.social.inner,
    section.sec-home-cta.social.inner.inner-two {
        background-size: cover;
        background-position: center;
        height: 60vh;
        padding: 50px 0;
    }


    section.sec-home-cta.social.inner.explore {
        background-size: cover;
        background-position: right;
        height: 50vh;
        padding: 50px 0;
    }

    .sec-home-cta.social .cta-inner-details {
        margin: 0;
    }

    .sec-home-cta.social .cta-inner-details {
        background: transparent;
    }


    .sec-home-cta.social.inner.inner-two .cta-inner-logos img {
        margin: 20px 15px 0 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        width: 60px;
    }

    .sec-testimonials-inner-wrap .testimonials-header {
        margin: 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        margin: 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos {
        margin: 15px 0 0;
        padding: 30px 0;
    }

    .sec-financing-wrap.new .package-title {
        width: 90%;
        /* left: 5%; */
        padding: 15px 12px;
        font-size: 15px;
    }

    .sec-financing-wrap.new .package-card {
        padding: 15px 15px;
        margin: 20px 0 40px;
    }


    .sec-financing-wrap.new .package-card ul li {
        font-size: 14px;
        margin: 0 10px 5px;
        line-height: 24px;
    }


    .sec-home-cta.social.inner.explore .cta-inner-logos img {
        margin: 0;
    }

    .sec-blog-news .blog-inner-info p {
        font-size: 16px;
    }


    .sec-blog-news .blog-title .heading-two {
        font-size: 30px;
        line-height: 40px;
    }


    .sec-blog-news .blog-inner-info {
        margin: 20px 10px;
    }

    .sec-blog-news .blog-title {
        margin: 0 0 45px;
    }

    .step-works-inner .step-works-box {
        display: block;
    }

    .step-works-box span.step-count,
    .step-works-box span.step-price {
        border: none;
        padding: 0;
    }

    .works-box-content .heading-five {
        font-size: 18px;
    }

    .step-works-box span.step-price {
        font-size: 20px;
    }

    .step-works-inner .step-works-box .step-read-items {
        bottom: 5px;
    }

    .step-works-box .works-box-content {
        margin: 0;
        width: 100%;
    }

    .step-works-head .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    .step-works-wrap .step-works-head {
        width: 100%;
    }

    .step-works-wrap .step-works-inner .website-main-buttons a.read-more-btn {
        border-radius: 8px;
        width: 170px;
        height: 50px;
        font-size: 14px;
        bottom: 15px;
    }


    .step-works-wrap::after {
        height: 10%;
    }


    .sec-inner-blog .blog-main {
        padding: 15px 15px;
    }


    .sec-inner-blog .inner-blog-details {
        padding: 50px 20px;
    }


    .sec-inner-blog .inner-blog-details .heading-three,
    .sec-inner-blog .inner-blog-details .heading-four {
        font-size: 30px;
        line-height: 40px;
    }

    .sec-inner-blog .inner-blog-details .heading-five {
        font-size: 20px;
        line-height: 30px;
    }


    .sec-inner-blog .inner-blog-one,
    .sec-inner-blog .inner-blog-two,
    .sec-inner-blog .inner-blog-three {
        height: 30vh;
        background-position: center;
    }

    .sec-inner-blog .blog-inner-info ul li {
        font-size: 15px;
    }


    .sec-home-cta.hardcover .cta-inner-details p,
    .sec-home-cta.tv-interviews .cta-inner-details p,
    .sec-home-cta.paperback .cta-inner-details p,
    .sec-home-cta.ebook .cta-inner-details p,
    .sec-home-cta.audiobook .cta-inner-details p,
    section.sec-home-cta.about .cta-inner-details p {
        overflow: auto;
        min-height: 200px;
        max-height: 200px;
        padding: 0 8px;
    }


    section.sec-home-cta.hardcover.podcast .cta-inner-details p {
        overflow: auto;
        min-height: 230px;
        max-height: 230px;
        padding: 0 8px;
    }

    .sec-home-cta.hardcover.influencer .cta-inner-details p {
        overflow: auto;
        min-height: 135px;
        max-height: 135px;
        padding: 0 8px;
        text-align: left;
    }


    section.sec-home-cta.orm .cta-inner-details p {
        overflow: auto;
        min-height: 185px;
        max-height: 185px;
        padding: 0 8px;
        text-align: right;
    }

    .sec-home-cta.tv-interviews {
        height: 60vh;
    }


    section.sec-home-cta-inner.marketing {
        padding: 30px 0;
        background-position: right;
        height: 50vh;
    }

    .sec-home-cta-inner.marketing .cta-inner-details p {
        font-size: 15px;
        line-height: 25px;
    }

    section.sec-home-cta-inner.marketing .cta-inner-details {
        background: transparent;

    }

    section.sec-about-book.marketing {
        margin: 0;
        border-radius: 0;
    }

    .sec-home-cta.audiobook.inner .cta-inner-details .review-inner {
        display: none;
    }

    section.sec-home-cta.hardcover.orm {
        padding: 50px 0;
        height: 55vh;
    }

    section.sec-home-cta.orm {
        padding: 50px 0;
        height: 55vh;
    }

    .sec-home-cta.hardcover.influencer .cta-inner-details {
        background: #1d93af;
    }


    .sec-testimonials-inner-wrap .testimonials-header .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    section.sec-home-cta.about {
        height: 50vh;
    }


    .sec-home-cta.hardcover .cta-inner-details p {
        color: #000000a8;
    }


    .review-inner {
        display: none;
    }

    .sec-home-cta.tv-interviews .cta-inner-details {
        width: 100%;
        text-align: center;
    }

    .sec-home-cta.tv-interviews .website-main-buttons {
        justify-content: center;
    }


    section.sec-home-cta.hardcover.article-publications.seo {
        height: 55vh;
    }


    section.sec-home-cta.hardcover.orm .cta-inner-details {
        background: #efefef;
    }


    .main-footer {
        padding: 35px 0 15px;
    }

    .main-footer-head .heading-two {
        font-weight: 300;
        font-size: 30px;
        line-height: 39px;
    }

    .main-footer .main-footer-head p {
        line-height: 28px;
    }

    .footer-links .nav-link {
        font-size: 14px;
    }

    .footer-links {
        margin: 25px 0;
    }

    .main-footer .main-footer-head p {
        font-size: 14px;
    }

    .term-condition-inner ul {
        display: block;
    }

    .term-condition-inner ul li {
        margin: 0 8px 12px 0;
    }

    .about-book-info .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    .contact-main {
        margin: 0 12px;
    }

    .sec-contact-wrap.ebook .ebook-image img {
        width: 28%;
        left: 5%;
    }

    section.sec-about-book {
        padding: 50px 0;
    }

    .terms-banner-content .heading-one {
        font-size: 45px;
        line-height: 55px;
    }

    section.terms-conditions-banner {
        padding: 120px 0 50px;
    }

    .about-inner-image {
        width: 15%;
    }

    .sec-home-cta.hardcover .review-inner-logos {
        justify-content: center;
        background: #ececec;
    }

    .sec-home-cta.hardcover .review-inner-logos img {
        width: 130px;
        object-fit: contain;
        height: 100px;
    }


    .marketing-pr-logos {
        padding: 15px 0 0 0;
        margin: 0 0 15px;
    }


    .marketing-pr-logos img {
        width: 200px;
        object-fit: scale-down;
        height: 60px;
        margin: 0 0 0 10px;
    }



    .footer-mail-contact a {
        font-size: 16px;
    }


    .thankyou-page-wrap::before {
        width: 300px;
        height: 300px;
    }

    .thankyou-page-wrap::after {
        width: 300px;
        height: 300px;
    }

    .thankyou-page-content .heading-one {
        font-size: 60px !important;
        line-height: 70px !important;
        letter-spacing: 20px;
        width: 100%;
    }

    .thankyou-page-content .heading-one::before {
        width: 100%;
    }

    .thankyou-page-content a.back-home-btn {
        font-size: 16px;
    }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {


    html {
        overflow-x: hidden;
    }

    .heading-one {
        font-size: 30px;
        line-height: 38px;
    }

    .heading-two {
        font-size: 28px;
        line-height: 32px;
    }

    .heading-three {
        font-size: 24px;
        line-height: 30px;
    }

    .heading-four {
        font-size: 20px;
        line-height: 26px;
    }

    .heading-five {
        font-size: 18px;
        line-height: 22px;
    }

    .heading-six {
        font-size: 16px;
        line-height: 22px;
    }

    .heading-seven {
        font-size: 16px;
        line-height: 22px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    li {
        font-size: 14px;
        line-height: 20px;
    }



    .website-main-buttons {
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .website-main-buttons a.read-more-btn,
    .website-main-buttons button.popup-btn,
    .website-main-buttons button.chat-btn,
    .website-main-buttons a.call-btn {
        font-size: 13px;
        margin: 0 5px 20px;
        width: 270px;
        height: 50px;
    }

    .container-fluid,
    .container-fluid.new {
        padding: 0 20px;
    }


    header {
        background: #fff;
    }

    header nav.navbar .navbar-brand {
        width: 180px;
    }

    header .navbar-main-center ul.navbar-nav {
        background: #f1f1f1;
        margin: 12px 0 0 0;
    }


    header nav.navbar .navbar-brand {
        width: 180px;
    }

    .navbar-brand img {
        width: 230px;
        height: 40px;
        object-fit: contain;
    }

    .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(595%) hue-rotate(138deg) brightness(108%) contrast(101%);
    }

    header .navbar-main-center ul.navbar-nav li.nav-item {
        border-bottom: 1px solid #000;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item:nth-child(8) {
        border-bottom: none;
    }


    .sec-home-banner {
        padding: 150px 0 100px !important;
    }

    .order-one {
        order: 1;
    }

    .order-two {
        order: 2;
    }

    .banner-main-details {
        text-align: center;
    }

    .sec-home-banner .banner-main-details .heading-one {
        font-size: 26px;
        line-height: 32px;
    }

    .banner-main-image img {
        min-height: auto;
        width: 70%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .banner-bottom-box img {
        width: 120px;
        height: 50px;
    }

    .banner-mobile-image {
        display: block;
    }

    .banner-main-image,
    .banner-inner-image,
    .banner-inner-bottom {
        display: none;
    }

    .banner-mobile-image img {
        width: 70%;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .about-inner-image {
        width: 15%;
        margin: 0 20px;
    }

    section.sec-home-cta.hardcover.influencer .website-main-buttons,
    .sec-home-cta.hardcover.influencerone .website-main-buttons {
        justify-content: center;
    }


    .sec-clients-wrap .clients-details {
        margin: 0 0 12px;
    }




    section.sec-clients-wrap {
        padding: 50px 0;
    }

    .sec-clients-wrap .clients-details .heading-two {
        font-size: 30px;
        line-height: 40px;
    }


    .sec-testimonials-inner-wrap .author-info .heading-four {
        font-size: 20px;
        line-height: 30px;
    }

    .sec-testimonials-inner-wrap .testimonial-content .heading-four {
        font-size: 20px;
        line-height: 30px;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-track {
        gap: 12px;
    }

    .sec-testimonials-inner-wrap .author-info p {
        font-size: 13px;
    }

    .sec-testimonials-inner-wrap .test-icon img {
        width: 120px;
    }

    .sec-testimonials-inner-wrap .quote-marks img {
        width: 100px;
    }

    .sec-testimonials-inner-wrap .testimonial-content p {
        padding: 0 6px 0 0;
        min-height: 180px;
        max-height: 180px;
    }


    .sec-testimonials-inner-wrap .author-image {
        width: 120px;
        height: 120px;
        border: none;
    }

    .sec-testimonials-inner-wrap .testimonial-inner-box {
        padding: 60px 15px 60px 15px;
    }


    section.sec-home-cta.audiobook {
        padding: 37px 0;
        height: 60vh;
    }

    .sec-home-cta {
        padding: 37px 0;
        height: 50vh;
    }

    .sec-home-cta.audiobook.inner .cta-inner-details {
        text-align: center;
    }

    section.sec-home-cta.audiobook.inner {
        padding: 50px 0;
        height: 55vh;
    }

    .search-input-group .website-main-buttons button.submit-btn {
        width: 120px;
        height: 50px;
    }

    .search-input-group .form-control {
        padding: 10px 10px;
    }

    .sec-clients-wrap .website-main-buttons a.read-more-btn {
        margin: 0;
    }

    .cta-inner-details .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    .cta-inner-details {
        padding: 12px 7px;
        background: #efefef;
        border-radius: 12px;
        text-align: center !important;
    }

    .reviews-counts .heading-four {
        font-size: 15px;
        margin: 0;
    }

    .sec-financing-wrap {
        padding: 30px 0 30px;
    }

    .review-inner img {
        height: 25px;
        width: 99px;
    }

    .sec-financing-wrap .package-card:hover {
        transform: none;
    }

    .slider-progress {
        width: calc(100% - 40px);
        margin: 12px auto 0;
    }

    .sec-financing-wrap .price-amount .heading-four,
    .sec-financing-wrap .package-title {
        font-size: 14px;
        line-height: 23px;
        margin: 0 0 15px;
    }

    .sec-financing-wrap .package-card {

        padding: 20px 15px;
        margin: 0 5px 15px;

    }

    .sec-testimonials-inner-wrap .testimonial-content {
        text-align: center;
    }

    .sec-testimonials-inner-wrap .author-info {
        text-align: center;
    }

    .sec-financing-wrap .financing-header .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    .financing-header p {
        font-size: 12px;
    }

    .author-info {
        text-align: left;
    }


    .sec-contact-wrap.contact-page .contact-main .contact-inner-info,
    .contact-inner-info {
        padding: 25px 0 0 10px;
    }

    .contact-inner-info .heading-two {
        font-size: 25px;
        line-height: 35px;
    }


    .contact-inner-form {
        padding: 25px 15px 20px 15px;
    }

    .contact-inner-info p {
        font-size: 15px;
        line-height: 22px;
    }

    .contact-main {
        margin: 0 15px;
    }

    .contact-inner-form .contact-title p {
        font-size: 17px;
        line-height: 27px;
    }

    .contact-inner-form .form-group button.submit-btn {
        height: 60px;
    }

    .contact-inner-form p {
        font-size: 12px;
        line-height: 22px;
    }

    .contact-title .heading-two {
        font-size: 35px;
        margin: 0 0 10px;
        line-height: 42px;
    }

    section.sec-home-banner.marketing {
        padding: 120px 0;
        margin: 130px 15px 50px 15px;
    }

    section.sec-about-book {
        padding: 50px 0;
    }

    .about-book-info .heading-two {
        font-size: 30px;
        line-height: 40px;
        margin: 0 0 20px;
    }

    .sec-home-cta-inner.marketing .cta-inner-details {
        text-align: left;
    }

    .about-details-box {
        margin: 15px 0 0;
        align-items: start;
    }

    .about-details-box .about-box-info .heading-six {
        font-size: 14px;
        line-height: 24px;
    }

    .about-details-box .about-box-info p {
        font-size: 13px;
    }

    .sec-home-banner .banner-main-details p {
        width: 100%;
        font-size: 13px;
    }


    section.sec-home-cta.hardcover.news {
        background-position: center;
        height: 50vh;
    }

    .news-inner-image img {
        display: none;
    }

    section.sec-home-cta.hardcover {
        background-position: center !important;
        height: 55vh;
    }

    section.sec-home-cta.hardcover.influencer {
        height: 65vh;
    }


    section.sec-home-banner.hardcover.influencer {
        background-size: auto;
        background-position: left;
    }


    .sec-home-cta.ebook .cta-inner-details {
        text-align: center;
    }

    section.sec-home-cta.ebook {
        background-size: cover;
        background-position: right;
        padding: 60px 0;
        height: 55vh;
    }

    .sec-contact-wrap.ebook .ebook-image img {
        display: none;
    }

    .sec-home-cta.paperback {
        height: 50vh;
    }

    section.sec-home-banner.about {
        padding: 75px 0;
        margin: 120px 15px 50px 15px;
    }


    .sec-audio-info-wrap .audio-info-title .heading-two {
        font-size: 30px;
        line-height: 40px;

    }

    section.sec-home-banner.orm {
        background-position: left;
    }



    section.sec-home-cta.hardcover.podcast,
    section.sec-home-cta.hardcover.article-publications {
        height: 70vh;
    }

    .sec-home-cta.hardcover.article-publications {
        padding: 50px 0 136px;
    }

    .form-check-new .form-check-label {
        font-size: 10px;

    }

    section.calendly_Intergrate {
        padding: 3rem 0;
    }

    section.calendly_Intergrate h3 {
        font-size: 25px;
        line-height: 32px;
    }

    section.calendly_Intergrate p {
        font-size: 15px;
    }

    section.calendly_Intergrate span {
        font-size: 20px;
    }

    section.calendly_Intergrate ul {
        padding: 13px 0 0 15px;
    }

    section.calendly_Intergrate ul li {
        font-size: 15px;
    }


    .sec-home-cta.social {
        background-size: cover;
        background-position: right;
        height: 45vh;
        padding: 50px 0;
        position: relative;
        z-index: 9;
    }

    .sec-home-cta.social::before {
        position: absolute;
        content: "";
        left: 0;
        right: 0;
        bottom: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.5) 100%);
    }



    section.sec-home-cta.social.inner,
    section.sec-home-cta.social.inner.inner-two {
        background-size: cover;
        background-position: center;
        height: 45vh;
        padding: 50px 0;
    }


    section.sec-home-cta.social.inner.explore {
        background-size: cover;
        background-position: right;
        height: 45vh;
        padding: 50px 0;
    }


    section.sec-home-cta.social.inner.explore .cta-inner-logos {
        background: transparent;
    }

    .sec-home-cta.social .cta-inner-details {
        margin: 0;
        text-align: center;
    }

    .sec-home-cta.social .cta-inner-details {
        background: #1b4cd9;
    }

    .sec-home-cta.social.inner .cta-inner-details .heading-two {
        color: #fff;
    }

    .sec-home-cta.social.inner.inner-two .cta-inner-logos img {
        margin: 0px 15px 0 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        width: 60px;
    }

    .sec-testimonials-inner-wrap .testimonials-header {
        margin: 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        margin: 0px 16px 0 0;
    }

    .sec-home-cta.social.inner .cta-inner-logos {
        margin: 15px 0 0;
        border-radius: 12px;
        padding: 12px 12px;
    }

    .sec-financing-wrap.new .package-title {
        width: 240px;
        /* left: 30%; */
        padding: 15px 12px;
        font-size: 15px;
    }

    .sec-financing-wrap.new .package-card {
        padding: 15px 15px;
        margin: 20px 0 40px;
    }


    .sec-financing-wrap.new .package-card ul li {
        font-size: 14px;
        margin: 0 10px 5px;
        line-height: 24px;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        width: 90px;
        object-fit: contain;
        height: 50px;
    }


    .sec-home-cta.social.inner.explore .cta-inner-logos img {
        margin: 0;
    }

    .sec-blog-news .blog-inner-info p {
        font-size: 16px;
    }


    .sec-blog-news .blog-title .heading-two {
        font-size: 25px;
        line-height: 35px;
    }


    .sec-blog-news .blog-inner-info {
        margin: 20px 10px;
    }

    .sec-blog-news .blog-title {
        margin: 0 0 45px;
    }

    .step-works-inner .step-works-box {
        display: block;
    }

    .step-works-box span.step-count,
    .step-works-box span.step-price {
        border: none;
        padding: 0;
    }

    .works-box-content .heading-five {
        font-size: 17px;
    }

    .step-works-box span.step-price {
        font-size: 25px;
    }

    .step-works-inner .step-works-box .step-read-items {
        bottom: 5px;
    }

    .step-works-box .works-box-content {
        margin: 0;
        width: 100%;
    }

    .step-works-head .heading-two {
        font-size: 25px;
        line-height: 32px;
    }

    .step-works-wrap .step-works-head {
        width: 100%;
    }

    .step-works-wrap .step-works-inner .website-main-buttons a.read-more-btn {
        border-radius: 8px;
        width: 170px;
        height: 50px;
        font-size: 14px;
        bottom: 15px;
    }


    .step-works-wrap::after {
        height: 10%;
    }


    .sec-inner-blog .blog-main {
        padding: 15px 15px;
    }


    .sec-inner-blog .inner-blog-details {
        padding: 50px 20px;
    }


    .sec-inner-blog .inner-blog-details .heading-three,
    .sec-inner-blog .inner-blog-details .heading-four {
        font-size: 19px;
        line-height: 33px;
    }

    .sec-inner-blog .inner-blog-details .heading-five {
        font-size: 15px;
        line-height: 29px;
    }


    .sec-inner-blog .inner-blog-one,
    .sec-inner-blog .inner-blog-two,
    .sec-inner-blog .inner-blog-three {
        height: 30vh;
        background-position: center;
    }

    .sec-inner-blog .blog-inner-info ul li {
        font-size: 15px;
    }


    .sec-home-cta.hardcover .cta-inner-details p,
    .sec-home-cta.tv-interviews .cta-inner-details p,
    .sec-home-cta.paperback .cta-inner-details p,
    .sec-home-cta.ebook .cta-inner-details p,
    .sec-home-cta.audiobook .cta-inner-details p,
    section.sec-home-cta.about .cta-inner-details p {
        overflow: auto;
        min-height: 200px;
        max-height: 200px;
        padding: 0 8px;
    }

    .sec-home-cta.hardcover.influencer .cta-inner-details p {
        overflow: auto;
        min-height: 200px;
        max-height: 200px;
        padding: 0 8px;
    }


    section.sec-home-cta.orm .cta-inner-details p {
        overflow: auto;
        min-height: 185px;
        max-height: 185px;
        padding: 0 8px;
        text-align: right;
    }

    .sec-home-cta.tv-interviews {
        height: 60vh;
    }


    section.sec-home-cta-inner.marketing {
        padding: 30px 0;
        background-position: right;
        height: 50vh;
    }

    .sec-home-cta-inner.marketing .cta-inner-details p {
        font-size: 15px;
        line-height: 25px;
    }

    section.sec-home-cta-inner.marketing .cta-inner-details {
        background: transparent;

    }

    section.sec-about-book.marketing {
        margin: 0;
        border-radius: 0;
    }

    .sec-home-cta.audiobook.inner .cta-inner-details .review-inner {
        display: none;
    }

    section.sec-home-cta.hardcover.orm {
        padding: 50px 0;
        height: 55vh;
    }

    section.sec-home-cta.orm {
        padding: 50px 0;
        height: 60vh;
    }

    .sec-home-cta.hardcover.influencer .cta-inner-details {
        background: #1d93af;
        text-align: center;
    }


    .sec-testimonials-inner-wrap .testimonials-header .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    section.sec-home-cta.about {
        height: 50vh;
    }


    .sec-home-cta.hardcover .cta-inner-details p {
        color: #000000a8;
    }


    .review-inner {
        display: none;
    }

    .sec-home-cta.tv-interviews .cta-inner-details {
        text-align: left;
        width: 100%;
    }

    .sec-home-cta.tv-interviews .website-main-buttons {
        justify-content: center;
    }


    section.sec-home-cta.hardcover.article-publications.seo {
        height: 70vh;
    }


    section.sec-home-cta.hardcover.orm .cta-inner-details {
        background: #efefef;
    }

    section.sec-home-cta.social.inner .cta-inner-logos {
        background: #ffffff;
    }

    section.sec-home-cta.social.inner.inner-two .cta-inner-logos {
        background: #ffffff;
    }

    .sec-home-cta.hardcover .cta-inner-details {
        text-align: center;
    }



    .sec-home-cta.social .website-main-buttons {
        justify-content: center;
    }


    .marketing-pr-logos {
        padding: 0;
        margin: 0 0 15px;
    }


    .marketing-pr-logos img {
        width: 200px;
        object-fit: scale-down;
        height: 60px;
        margin: 0 0 0 10px;
    }

    .sec-home-cta.paperback .cta-inner-details {
        bottom: 15%;
    }


    .sec-home-cta.hardcover .review-inner-logos {
        display: flex;
        justify-content: center;
        align-items: center;
    }


    .sec-home-cta.hardcover .review-inner-logos img {
        width: 80px;
        height: 80px;
        object-fit: contain;
    }

    .footer-mail-contact a {
        font-size: 16px;
    }

    .main-footer {
        padding: 35px 0 15px;
    }

    .main-footer-head .heading-two {
        font-weight: 300;
    }

    .main-footer .main-footer-head p {
        line-height: 28px;
    }

    .footer-links .nav-link {
        font-size: 12px;
        padding: 10px 8px;
    }

    .footer-links {
        margin: 25px 0;
        display: block;
    }

    ul.nav {
        display: grid;
        grid-template-columns: 50% 50%;
    }


    .trusted-logo {
        margin-left: 10px;
    }

    .main-footer .main-footer-head p {
        font-size: 18px;
    }

    .main-footer-head .heading-two {
        font-size: 30px;
        line-height: 40px;
    }

    .term-condition-inner {
        justify-content: left;
    }

    .term-condition-inner ul li {
        margin: 0 15px 0 0;
    }

    .terms-banner-content .heading-one {
        font-size: 35px;
        line-height: 40px;
    }

    .copyright p {
        text-align: left;
    }


    .terms-privacy-content .heading-two {
        font-size: 25px;
    }

    .thankyou-page-wrap::before {
        width: 300px;
        height: 300px;
    }

    .thankyou-page-wrap::after {
        width: 300px;
        height: 300px;
    }

    .thankyou-page-content .heading-one {
        font-size: 55px !important;
        line-height: 65px !important;
        letter-spacing: 10px;
        width: 100%;
    }

    .thankyou-page-content .heading-one::before {
        width: 100%;
    }

    .thankyou-page-content a.back-home-btn {
        font-size: 16px;
    }
}

@media only screen and (min-width: 300px) and (max-width: 575px) {


    html {
        overflow-x: hidden;
    }

    .heading-one {
        font-size: 30px;
        line-height: 38px;
    }

    .heading-two {
        font-size: 28px;
        line-height: 32px;
    }

    .heading-three {
        font-size: 24px;
        line-height: 30px;
    }

    .heading-four {
        font-size: 20px;
        line-height: 26px;
    }

    .heading-five {
        font-size: 18px;
        line-height: 22px;
    }

    .heading-six {
        font-size: 16px;
        line-height: 22px;
    }

    .heading-seven {
        font-size: 16px;
        line-height: 22px;
    }

    p {
        font-size: 14px;
        line-height: 20px;
    }

    li {
        font-size: 14px;
        line-height: 20px;
    }

    br {
        display: none !important;
    }


    .website-main-buttons {
        flex-wrap: wrap;
        justify-content: center !important;
    }

    .website-main-buttons a.read-more-btn,
    .website-main-buttons button.popup-btn,
    .website-main-buttons button.chat-btn,
    .website-main-buttons a.call-btn {
        font-size: 13px;
        margin: 0 5px 20px;
        width: 270px;
        height: 50px;
    }

    .container-fluid,
    .container-fluid.new {
        padding: 0 20px;
    }


    header .container-fluid {
        padding: 0 10px;
    }

    header ul.dropdown-menu {
        margin: 0 0 8px;
        padding: 10px 10px;
        border-radius: 0;
        width: 290px;
    }

    header {
        background: #fff;
    }

    header nav.navbar .navbar-brand {
        width: 180px;
    }

    header .navbar-main-center ul.navbar-nav {
        margin: 12px 0 0 0;
    }


    header nav.navbar .navbar-brand {
        width: 180px;
    }

    .navbar-brand img {
        width: 190px;
        height: 35px;
        object-fit: contain;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item {
        margin: 0;
    }

    .navbar-toggler-icon {
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(595%) hue-rotate(138deg) brightness(108%) contrast(101%);
    }

    header .navbar-main-center ul.navbar-nav li.nav-item {
        border-bottom: 1px solid #000;
    }

    header .navbar-main-center ul.navbar-nav li.nav-item:nth-child(8) {
        border-bottom: none;
    }

    .navbar-main-center li.nav-item.dropdown:hover ul.dropdown-menu {
        transition: none;
        transform: none;

    }

    header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a {
        align-items: center;
        font-size: 12px;
    }

    header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a i {
        font-size: 15px;
        margin: 0 2px 0 7px;
    }

    .sec-home-banner {
        padding: 130px 0 100px !important;
    }

    .banner-main-details {
        text-align: center;
    }

    .sec-home-banner .banner-main-details .heading-one {
        font-size: 20px;
        line-height: 30px;
    }

    .banner-main-image img {
        min-height: auto;
    }

    .banner-bottom-box img {
        width: 130px;
        height: 50px;
    }

    .order-one {
        order: 1;
    }

    .order-two {
        order: 2;
    }


    .banner-inner-image,
    .banner-inner-bottom,
    .banner-main-image {
        display: none;
    }


    .banner-mobile-image {
        display: block;
        margin: 0 0 25px;
    }


    .sec-clients-wrap .clients-details {
        margin: 0 0 12px;
    }


    section.sec-home-banner.hardcover.influencer {
        background-position: left;
    }



    section.sec-clients-wrap {
        padding: 50px 0;
    }

    .sec-clients-wrap .clients-details .heading-two {
        font-size: 25px;
        line-height: 32px;
    }


    .sec-testimonials-inner-wrap .author-info .heading-four {
        font-size: 18px;
        line-height: 26px;
    }

    .sec-testimonials-inner-wrap .testimonial-content .heading-four {
        font-size: 17px;
    }

    .sec-testimonials-inner-wrap .testimonials-slider-inner .slick-track {
        gap: 12px;
    }

    .sec-testimonials-inner-wrap .author-info p {
        font-size: 13px;
    }

    .sec-testimonials-inner-wrap .test-icon img {
        width: 120px;
    }

    .sec-testimonials-inner-wrap .quote-marks img {
        width: 100px;
    }

    .sec-testimonials-inner-wrap .testimonial-content p {
        padding: 0 6px 0 0;
        min-height: 200px;
        max-height: 200px;
    }

    .sec-testimonials-inner-wrap .testimonial-inner-box {
        padding: 60px 15px 60px 15px;
    }

    .sec-testimonials-inner-wrap .author-image {
        width: 120px;
        height: 120px;
        border: none;
    }


    section.sec-home-cta.audiobook {
        padding: 50px 0;
        height: 85vh;
    }

    .sec-home-cta {
        padding: 30px 0;
        height: 70vh;
    }

    .sec-home-cta.audiobook.inner .cta-inner-details {
        text-align: center;
    }

    section.sec-home-cta.audiobook.inner {
        padding: 50px 0;
        height: 85vh;
    }

    .search-input-group .website-main-buttons button.submit-btn {
        width: 120px;
        height: 50px;
    }

    .search-input-group .form-control {
        padding: 10px 10px;
    }

    .sec-clients-wrap .website-main-buttons a.read-more-btn {
        margin: 0;
    }

    .cta-inner-details .heading-two {
        font-size: 20px;
        line-height: 29px;
    }

    .cta-inner-details {
        padding: 12px 7px;
        background: #efefef;
        border-radius: 12px;
    }


    .sec-home-cta.orm .cta-inner-details {
        text-align: center;
    }

    .reviews-counts .heading-four {
        font-size: 15px;
        margin: 0;
    }

    .sec-financing-wrap {
        padding: 30px 0 30px;
    }

    .review-inner img {
        height: 25px;
        width: 99px;
    }

    .sec-financing-wrap .package-card:hover {
        transform: none;
    }

    .slider-progress {
        width: calc(100% - 40px);
        margin: 12px auto 0;
    }

    .sec-financing-wrap .price-amount .heading-four,
    .sec-financing-wrap .package-title {
        font-size: 14px;
        line-height: 23px;
        margin: 0 0 15px;
    }

    .sec-financing-wrap .package-card {

        padding: 20px 15px;
        margin: 0 5px 15px;

    }

    .sec-testimonials-inner-wrap .testimonial-content {
        text-align: center;
    }

    .sec-testimonials-inner-wrap .author-info {
        text-align: center;
    }

    .sec-financing-wrap .financing-header .heading-two {
        font-size: 20px;
        line-height: 30px;
    }

    .financing-header p {
        font-size: 12px;
    }

    .author-info {
        text-align: left;
    }


    .sec-contact-wrap.contact-page .contact-main .contact-inner-info,
    .contact-inner-info {
        padding: 25px 0 0 10px;
        margin: 0 0 25px;
    }

    .contact-inner-info .heading-two {
        font-size: 20px;
        line-height: 30px;
    }

    .marketing-pr-logos {
        padding: 0;
        margin: 0 0 15px;
    }

    .marketing-pr-logos img {
        width: 90px;
        object-fit: contain;
        height: 50px;
        margin: 0 0 0 10px;
    }



    .contact-inner-form {
        padding: 25px 15px 20px 15px;
    }

    .contact-inner-info p {
        font-size: 14px;
        line-height: 22px;
    }

    .contact-main {
        margin: 0 15px;
    }

    .contact-inner-form .contact-title p {
        font-size: 15px;
    }

    .contact-inner-form .form-group button.submit-btn {
        width: 200px;
        height: 60px;
    }

    .contact-inner-form p {
        font-size: 12px;
        line-height: 22px;
    }

    .contact-title .heading-two {
        font-size: 25px;
        margin: 0;
        line-height: 32px;
    }


    .contact-inner-form .form-group.btn {
        justify-content: center;
        display: flex;
    }

    section.sec-home-banner.marketing {
        padding: 120px 0;
        margin: 130px 15px 50px 15px;
    }

    section.sec-about-book {
        padding: 50px 0;
    }

    .about-book-info .heading-two {
        font-size: 20px;
        line-height: 28px;
        margin: 0 0 20px;
    }

    .sec-home-cta-inner.marketing .cta-inner-details {
        text-align: center;
    }

    .about-details-box {
        margin: 15px 0 0;
        align-items: start;
        padding: 8px 5px;
        display: block;
    }

    .about-details-box .about-box-info .heading-six {}

    .about-details-box .about-box-info p {}

    .sec-home-banner .banner-main-details p {
        width: 100%;
        font-size: 12px;
    }



    section.sec-home-cta.hardcover.news {
        background-position: center;
        height: 100%;
    }


    section.sec-home-cta.hardcover {
        background-position: center;
        height: auto;
    }

    .sec-home-cta.hardcover .cta-inner-details {
        text-align: center;
        margin: 0 0 25px;
    }

    .sec-home-cta.ebook .cta-inner-details {
        text-align: center;
    }

    section.sec-home-cta.ebook {
        background-size: cover;
        background-position: right;
        padding: 60px 0;
        height: 85vh;
    }

    .sec-contact-wrap.ebook .ebook-image img {
        display: none;
    }

    .sec-home-cta.paperback {
        height: 80vh;
    }


    .sec-home-cta.paperback .cta-inner-details {
        bottom: 10%;
    }


    section.sec-home-banner.about {
        padding: 60px 0 !important;
        margin: 130px 8px 50px 8px;
    }

    .about-inner-image {
        margin: 0 0 15px;
        width: 15%;
    }

    .sec-audio-info-wrap .audio-info-title .heading-two {

        font-size: 25px;
        line-height: 32px;
    }

    .sec-home-cta.audiobook .cta-inner-details {
        text-align: center;
    }


    section.sec-home-cta.hardcover.print-placement {
        height: 80vh;
    }

    section.sec-home-cta.hardcover.podcast {
        height: 80vh;
    }

    section.sec-home-cta.hardcover.article-publications {
        height: 85vh;
    }

    .sec-home-cta.hardcover.article-publications {
        padding: 50px 0 160px;
    }

    .form-check-new .form-check-label {
        font-size: 10px;

    }

    section.calendly_Intergrate {
        padding: 3rem 0;
    }

    section.calendly_Intergrate h3 {
        font-size: 25px;
        line-height: 32px;
    }

    section.calendly_Intergrate p {
        font-size: 13px;
        line-height: 23px;
    }

    section.calendly_Intergrate span {
        font-size: 20px;
    }

    section.calendly_Intergrate ul {
        padding: 13px 0 0 15px;
    }

    section.calendly_Intergrate ul li {
        font-size: 15px;
    }


    .sec-home-banner.tv-interviews {
        background-position: left;
    }


    .sec-home-cta.social {
        background-size: cover;
        background-position: right;
        height: 40vh;
        padding: 50px 0;
    }

    section.sec-home-banner.orm {
        background-position: left;
    }



    section.sec-home-cta.social.inner,
    section.sec-home-cta.social.inner.inner-two {
        background-size: cover;
        background-position: right;
        height: 50vh;
        padding: 50px 0;
    }


    section.sec-home-cta.social.inner.explore {
        background-size: cover;
        background-position: right;
        height: 50vh;
        padding: 50px 0;
    }

    .sec-home-cta.social .cta-inner-details {
        margin: 0;
    }

    .sec-home-cta.social .cta-inner-details {
        background: #1b4cd9;
        text-align: center;
    }

    .sec-home-cta.social.inner .cta-inner-details .heading-two {
        color: #fff;
    }



    .sec-testimonials-inner-wrap .testimonials-header {
        margin: 0;
    }


    .sec-home-cta.social.inner .cta-inner-logos {
        background: #fff;
        margin: 15px 0 0;
        padding: 10px 10px;
        border-radius: 12px;
    }

    .sec-financing-wrap.new .package-title {
        width: 90%;
        /* left: 5%; */
        padding: 15px 12px;
        font-size: 16px;
        right: 0;
    }

    .sec-financing-wrap.new .package-card {
        padding: 15px 15px;
        margin: 20px 0 40px;
    }


    .sec-financing-wrap.new .package-card ul li {
        font-size: 14px;
        margin: 0 10px 5px;
        line-height: 24px;
    }

    .sec-home-cta.social.inner .cta-inner-logos img {
        width: 60px;
        object-fit: scale-down;
    }

    .sec-home-cta.social.inner.explore .cta-inner-logos {
        background: #1b4cd9;
    }

    .sec-home-cta.social.inner.explore .cta-inner-logos img {
        height: 50px;
    }

    .sec-blog-news .blog-inner-info p {
        font-size: 14px;
        line-height: 22px;
    }


    .sec-blog-news .blog-title .heading-two {
        font-size: 20px;
        line-height: 30px;
    }


    .sec-blog-news .blog-inner-info,
    .sec-blog-news .blog-inner-info.two,
    .sec-blog-news .blog-inner-info.four {
        margin: 20px 10px;
        text-align: center;
    }

    .sec-blog-news .blog-title {
        margin: 0 0 45px;
    }

    .step-works-inner .step-works-box {
        display: block;
    }

    .step-works-box span.step-count,
    .step-works-box span.step-price {
        border: none;
        padding: 0;
    }

    .works-box-content .heading-five {
        font-size: 15px;
    }

    .step-works-box span.step-price {
        font-size: 20px;
        line-height: 30px;
    }


    .step-works-box .works-box-content {
        margin: 0;
        width: 100%;
    }

    .step-works-head .heading-two {
        font-size: 20px;
    }

    .step-works-wrap .step-works-head {
        width: 100%;
    }

    .step-works-wrap .step-works-inner .website-main-buttons a.read-more-btn {
        border-radius: 8px;
        width: 170px;
        height: 50px;
        font-size: 14px;
        bottom: 15px;
    }


    .step-works-wrap::after {
        height: 10%;
    }


    .sec-inner-blog .blog-main {
        padding: 15px 15px;
    }


    .sec-inner-blog .inner-blog-details {
        padding: 50px 20px;
    }


    .sec-inner-blog .inner-blog-details .heading-three,
    .sec-inner-blog .inner-blog-details .heading-four {
        font-size: 25px;
        line-height: 37px;
    }

    .sec-inner-blog .inner-blog-details {
            width: calc(100% - 0%);
    }

    .sec-inner-blog .inner-blog-details .heading-five {
        font-size: 19px;
        line-height: 35px;
    }


    .sec-inner-blog .inner-blog-one,
    .sec-inner-blog .inner-blog-two,
    .sec-inner-blog .inner-blog-three {
        height: 35vh;
    }

    .sec-inner-blog .blog-inner-info ul li {
        font-size: 15px;
        margin: 0 10px 0;
    }


    .sec-home-cta.hardcover .cta-inner-details p {
        overflow: auto;
        min-height: 450px;
        max-height: 450px;
        padding: 0 8px;
    }

    .sec-home-cta.hardcover.influencer {
        height: 80vh !important;
    }

    .sec-home-cta.hardcover.influencer .cta-inner-details p {
        overflow: auto;
        min-height: 360px;
        max-height: 360px;
        padding: 0 8px;
    }

    section.sec-home-cta.about .cta-inner-details p {
        overflow: auto;
        min-height: 300px;
        max-height: 300px;
        padding: 0 8px;
    }

    .sec-home-cta.tv-interviews .cta-inner-details p,
    .sec-home-cta.paperback .cta-inner-details p,
    .sec-home-cta.ebook .cta-inner-details p,
    .sec-home-cta.audiobook .cta-inner-details p {
        overflow: auto;
        min-height: 450px;
        max-height: 450px;
        padding: 0 8px;
    }

    section.sec-home-cta.orm .cta-inner-details p {
        overflow: auto;
        min-height: 250px;
        max-height: 250px;
        padding: 0 8px;
    }

    .sec-home-cta.tv-interviews {
        height: 86vh;
    }


    section.sec-home-cta-inner.marketing {
        padding: 30px 0;
        background-position: right;
        height: 80vh;
    }

    .sec-home-cta-inner.marketing .cta-inner-details p {
        font-size: 14px;
        line-height: 25px;
    }

    section.sec-home-cta-inner.marketing .cta-inner-details {
        background: transparent;

    }

    section.sec-about-book.marketing {
        margin: 0;
        border-radius: 0;
    }

    .sec-home-cta.audiobook.inner .cta-inner-details .review-inner {
        display: none;
    }

    section.sec-home-cta.hardcover.orm {
        padding: 50px 0;
        height: 60vh;
    }

    section.sec-home-cta.orm {
        padding: 50px 0;
    }

    .sec-home-cta.hardcover.influencer .cta-inner-details {
        background: #1b93ae;
    }

    .sec-inner-blog .blog-inner-info {
        margin: 35px 0 0;
    }

    section.sec-blog-news,
    .sec-inner-blog {
        padding: 30px 0;
    }


    .sec-testimonials-inner-wrap .testimonials-header .heading-two {
        font-size: 25px;
    }

    section.sec-home-cta.about {
        height: 60vh;
    }

    .sec-home-cta.tv-interviews .cta-inner-details {
        text-align: center;
        width: 100%;
    }

    .sec-blog-news .border-main {
        margin: 30px 0 35px;
    }

    .about-box-info {
        width: 100%;
    }


    .review-inner {
        display: none;
    }

    .sec-testimonials-inner-wrap {
        padding: 50px 0;
    }

    .sec-home-banner.hardcover.article-publications {
        background-position: left;
    }

    .sec-home-cta.hardcover .review-inner-logos {
        display: block;
        background: #fff;
        margin: 15px 0 0;
        padding: 10px 10px;
        border-radius: 12px;
    }


    .sec-home-cta.hardcover .review-inner-logos img {
        margin: 0;
        padding: 0 7px;
        width: 60px;
        object-fit: scale-down;
    }


    .sec-home-cta.hardcover.influencerone {
        height: 85vh;
    }



    .main-footer {
        padding: 35px 0 15px;
    }

    .main-footer-head .heading-two {
        font-weight: 300;
    }


    .footer-links .nav-link {
        font-size: 12px;
        padding: 8px 12px;
    }

    .footer-links {
        margin: 25px 0;
        flex-wrap: wrap;
        align-items: center;
    }

    ul.nav {
        display: block;
    }

    .social_links li {
        width: 40px;
        height: 40px;
    }


    .footer-bottom a {
        font-size: 11px;
    }

    .main-footer .main-footer-head p {
        font-size: 14px;
        line-height: 28px;
    }

    .term-condition-inner {
        justify-content: left;
    }

    .main-footer-head .heading-two {
        font-size: 20px;
        line-height: 30px;
    }


    .footer-mail-contact a {
        font-size: 13px;
    }


    section.terms-conditions-banner {
        padding: 125px 0 50px;
    }

    .terms-banner-content .heading-one {
        font-size: 20px;
        line-height: 30px;
    }

    .terms-privacy-content .heading-two {
        font-size: 15px;
        line-height: 22px;
    }

    .terms-privacy-content ul {
        padding: 0 0 0 5px;
    }

    .terms-privacy-content li::marker {
        font-size: 15px;
    }

    .terms-privacy-content a {
        font-size: 11px;
    }

    .terms-privacy-content .heading-four {
        font-size: 14px;
    }

    .thankyou-page-wrap::before {
        width: 200px;
        height: 200px;
    }

    .thankyou-page-wrap::after {
        width: 200px;
        height: 200px;
    }

    .thankyou-page-content .heading-one {
        font-size: 32px !important;
        line-height: 30px !important;
        letter-spacing: 5px;
        width: 100%;
    }

    .thankyou-page-content .heading-one::before {
        width: 100%;
    }

    .thankyou-page-content a.back-home-btn {
        font-size: 16px;
        width: 260px;
        height: 50px;
    }

    .thankyou-page-wrap .thankyou-page-content {
        padding: 25px 10px;
    }


}