/*Main Css */
:root {
    --primary: #6768E6;
    --bg-light: #ffdecc;
    --bg-gray: #f4f9ff;
    --black: #000000;
    --white: #ffffff;
    --dark: #333333;
   
    --font-heading: "Cormorant Garamond" , sans-serif;
    --font-accent: "Inter" , sans-serif;
    --font-body: "Inter" , sans-serif;
  
    --icon: "Font Awesome 6 Pro", sans-serif;
}
::selection {
    background: #6768E6;
    color: #fff;
    text-shadow: none;
}

::-webkit-scrollbar {
    width: 5px;
    background-color: #f5f5f5;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    display: none;
}

::-webkit-scrollbar-track-piece {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #fff;
}

::-webkit-scrollbar-thumb:vertical {
    border-radius: 10px;
    background-color: #6768E6;
}

/* Tabbing CSS */

[class^="box-"] {
    display: none;
}

[class^="box-"].showfirst {
    display: block;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1;
    color: #212121;
    background: #FCFCFC;
}

body.inner-header {
    padding-top: 100px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    display: block;
    font-weight: 700;
    font-family: var(--font-heading);
    color: #212121;
}

*:hover,
*:focus,
* {
    outline: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

a,
input[type="submit"] {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

span {
    display: inline-block;
}

textarea,
select,
input[type],
textarea,
select,
button {
    font-family: var(--font-body);
    font-weight: 400;
}

::-webkit-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-ms-input-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

:-moz-placeholder {
    color: #a3a3a3;
    font-weight: 400;
}

::-moz-placeholder {
    opacity: 1;
}

/* Padding Classes */
.pad-zero {
    padding: 0px;
}
.pad-l-zero {
    padding-left: 0px;
}
.pad-r-zero {
    padding-right: 0px;
}
.ovr-hiddn {
    overflow: hidden;
}
.overlay:after {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}
.overlay {
    display: none;
}
.overlay.active {
    display: block;
}

/* Heading Classes */
.hding-1 h1 {
    font-size: 75px;
    font-weight: 700;
    line-height: 75px;
}
.highlighted {
    color: #ff5e14;
}

/* Custom Slick Css */
.slick-list {
    margin: 0 -15px;
}
.slick-slide {
    margin: 0 15px;
}
.slick-dots {
    padding: 0px 0 0;
    text-align: center;
}
.slick-dots li {
    margin: 0 10px 0 0px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    overflow: hidden;
    padding: 0px;
    border: none;
}
.slick-dots li button:before,
.slick-dots li button:before {
    color: #fff;
    opacity: 1;
    font-size: 20px;
}
.slick-dots li button {
    height: 11px;
    width: 11px;
    border-radius: 100px;
    padding: 0px;
    background: #DDDDDD;
    border: none;
    cursor: pointer;
    font-size: 0px;
    padding: 0px;
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    transition: all 0.4s ease-In-out;
    box-sizing: border-box;
}
.slick-dots li.slick-active button {
    background: rgba(190, 160, 105, 1);
    width: 11px;
}

/*header css*/



header {
    -webkit-transition: all 0.4s ease-In-out;
    -moz-transition: all 0.4s ease-In-out;
    -o-transition: all 0.4s ease-In-out;
    /* transition: all 0.4s ease-In-out; */
    /* position: fixed; */
    /* background: transparent; */
    /* z-index: 1; */
    /* left: 0; */
    /* right: 0; */
    /* top: 0; */
}
header.sticky{
    top: 0;
}
.menuWrap {
    display: flex;
    align-items: center;
    justify-content: end;
}
.logo {
    display: inline-block;
}
.logo img {
    display: block;
}

/* Hamburger Menu */
.menu-Bar {
    width: 30px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 0px;
    margin: auto;
    z-index: 22;
    display: none;
}
.menu-Bar span {
    display: block;
    height: 4px;
    width: 100%;
    background: #BEA069;
    position: absolute;
    transition: 0.6s all;
    border-radius: 100px;
}
.menu-Bar span:nth-child(1) {
    top: 0;
}
.menu-Bar span:nth-child(2) {
    top: 8px;
    transform-origin: left;
}
.menu-Bar span:nth-child(3) {
    top: 16px;
}
.menu-Bar.open span:nth-child(1) {
    transform: rotate(45deg);
    top: 12px;
    transform-origin: right-center;
}
.menu-Bar.open span:nth-child(2) {
    width: 0;
    opacity: 0;
}
.menu-Bar.open span:nth-child(3) {
    transform: rotate(-45deg);
    top: 12px;
    transform-origin: right-center;
}

/* Menu Css */
.menu {
    font-size: 0px;
    display: inline-block;
    vertical-align: middle;
}
.menu > li  {
    display: inline-block;
    vertical-align: middle;
    padding: 0 0 0 35px;
}
.menu > li > a {
    display: block;
    color: #000;
    font-family: Inter;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.header-btn {
    color: white !important;
    padding: 8px 8px 8px 31px;
    font-weight: 400 !important;
    border-radius: 7px;
    background: #6768E6;
    display: flex !important;
    align-items: center;
    gap: 10px;
}
.header-btn:hover{
    transform: scale(1.03);
}
.menu > li :hover > a,
.menu > li .active > a {
    color: #6768E6;
}

@keyframes scale-display {
    0% {
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
  }
  @keyframes scale-display--reversed {
    0% {
      display: inline-flex;
      opacity: 1;
      transform: scale(1);
      -webkit-transform: scale(1);
    }
    99% {
      display: inline-flex;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
    100% {
      display: none;
      opacity: 0;
      transform: scale(0);
      -webkit-transform: scale(0);
    }
  }

/* Menu Dropdown CSS */
.has-child {
  position: relative;
  z-index: 1;
}
.dropdown {
  position: absolute;
  top: 60px;
  width: 100vw;
  max-width: 747px;
  box-shadow: 0 10px 20px rgb(0 0 0 / 10%), 0 6px 6px rgb(0 0 0 / 10%);
  display: none;
  border-radius: 24px;
  background: #FB0;
}
.dropdown-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  padding: 20px;
  row-gap: 20px;
  column-gap: 10px;
}

@keyframes slide {
  0% {
    height: 0;
  }
  100% {
    height: auto;
  }
}
.dropdown .dropdown {
  left: 100%;
  top: 0;
  padding: 10px;
}
.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.dropdown ul li a {
  font-size: 14px;
  line-height: 1.4;
  color: #000;
  padding: 0;
}
.dropdown ul li a b {
  font-size: 18px;
  font-weight: 700;
}
.chev.rotate {
  transform: rotate(180deg);
}
.chev {
  transition: 0.5s ease;
  color: #d98922;
  font-size: 16px;
}
/* Dropdown CSS*/


@keyframes btotreverse {
    0% {
        top: 75px;
        opacity: 1;
    }
    100% {
        top: 115px;
        opacity: 0;
    }
}

@keyframes btot {
    0% {
        top: 115px;
        opacity: 0;
    }
    100% {
        top: 40px;
        opacity: 1;
    }
}

/* Main Banner CSS */
.mainBanner {
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    margin: 1rem;
    background-position: top;
    background-size: cover;
    border-radius: 50px;
}
.banner-content {
    padding: 40px 0 90px;
}
h1.banner-heading {
    padding: 20px 0;
    color: var(--H, #212121);
    font-family: "Cormorant Garamond";
    font-size: 72px;
    font-style: normal;
    font-weight: 500;
    line-height: 109.432%; /* 86.452px */
}
span.sub-heading {
    padding: 13.96px 13px;
    border-radius: 14px;
    border: 1px solid #E4E4E4;
    background: #F3F3FF;
    box-shadow: 0 2px 10.5px 0 rgba(0, 0, 0, 0.05);
    color: #686868;
    /* font-family: Lato; */
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 6px;
}
p.banner-text {
    margin-bottom: 20px;
    opacity: 0.7;
     /* 133.333% */
    color: #212121;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px; /* 150% */
}
.header-wrapper {
    border-radius: 21px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 3px 21.2px 0 rgba(0, 0, 0, 0.06);
    padding: 18px;
    margin-top: 30px;
}
.banner-img {
    text-align: end;
    position: absolute;
    top: 9vw;
    right: 7vw;
}
span.small-heading {
    padding: 13.96px 13px;
   border-radius: 14px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    box-shadow: 0 2px 10.5px 0 rgba(0, 0, 0, 0.05);
    color: #686868;
    /* font-family: Lato; */
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    display: flex;
    align-items: center;
    width: fit-content;
    gap: 6px;
    margin-bottom: 15px;
}
section.sec-1 {
    padding: 100px 0;
}

.sec-heading h2 span {
    color: var(--MZ, #BEA069);
    font-family: "Cormorant Garamond";
    font-size: 60px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}
.theme-btn.bordered2 {
    border-radius: 7px;
    border: 2px solid #BC9F69;
    background: #fff !important;
    color: #BC9F69 !important;
    font-size: 14px;
    padding: 16px 32px !important;
}
.sec-wrapper {
    background: #fff;
    border-radius: 50px 0 0 50px;
    padding: 57px 38px;
}
.cta-wrapper {
    padding: 52px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}
.sec-wrapper .sec-heading h2 {
    font-size: 44px;
}

.service-card {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: linear-gradient(0deg, rgba(255, 206, 115, 0.20) 0%, rgba(255, 206, 115, 0.20) 100%), linear-gradient(0deg, #FFF 0%, #FFF 100%), #FFF;
    padding: 22.19px;
    height: 100%;
}
.service-card h3 {
    color: var(--HEading, #1A1915);
    font-size: 32px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}
.service-card a {
    border-radius: 7px;
    background: linear-gradient(270deg, #BC9F69 0%, #D9AB56 100%);
    display: flex;
    width: 100%;
    padding: 16px 34px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    color: #FEF8EA;
    font-family: Inter;
    font-size: 16px;
    font-weight: 400;
    line-height: normal;
    margin-top: 20px;
}
.service-number {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 12.42px;
}
.service-number span {
    color: var(--MZ, #BEA069);
    text-align: right;
    font-family: "Cormorant Garamond";
    font-size: 70.072px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}
.service-card p {
    color: #141414;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    padding: 9px 0 20.18px;
}


.sec-wrapper.second {
    padding: 36.9px 31.81px;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    background: #FCFCFC;
     position: relative;
}
.sec-wrapper.second:before {
    content: "";
    display: block;
    position: absolute;
    left: 17px;
    top: -16px;
    border-radius: 40px;
    border: 1px solid #D9D9D9;
    background: #FFDD80;
    z-index: -1;
    width: 1008.666px;
    height: 506.645px;
}
.cat-image {
    position: absolute;
    top: 67px;
    left: 12vw;
}
.cat-image:before {
    content: "";
    display: block;
    position: absolute;
    right: 17px;
    top: -16px;
    border: 1px solid #D9D9D9;
    z-index: -1;
    width: 787.038px;
    height: 506.645px;
    border-radius: 45px;
    background: #E1DEFC;
}
.sec-4 {
    margin-top: -11vw;
    z-index: 1;
    position: relative;
}
section.sec-5 {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 2rem;
    border-radius: 50px;
    padding: 80px 0;
    /* margin: 0 2rem 2rem; */
    /* padding: 80px 0; */
    /* border-radius: 30px; */
    border: 1px solid #0000001f;
}
ul.overview-nav {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
}
ul.overview-nav a {
    font-weight: 500;
    font-size: 14px;
    border: 1px solid transparent;
    border-radius: 45px;
    color: #5B5B5B;
    width: 100%;
    padding: 16px 30px;
}
ul.overview-nav li.active a {
    color: white;
    border-color: var(--primary) !important;
    background: var(--primary);
}
.categories-wrapper {
    padding: 7px;
    border-radius: 40px;
    border: 1px solid rgba(27, 57, 129, 0.30);
    background: #FFF;
    margin-bottom: 50px;
}
.categories-wrapper h3 {
    color: var(--HEading, #1A1915);
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 10px;
    padding: 0 0 10px;
}
ul.overview-nav li {
    width: auto;
    display: inline-block;
    vertical-align: middle;
}
.book-card {
    border-radius: 10px;
    border: 0.701px solid #D9D9D9;
    background: #FFF;
    padding: 10.5px;
    display: flex;
    align-items: center;
    gap: 17.79px;
    height: 100%;
}
.book-card-image {
    flex-shrink: 0;
    width: 26%;
    /* height: 100%; */
}
.book-card-detail h3 {
    color: var(--HEading, #1A1915);
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}
.book-card-detail p {
    color: #141414;
    font-size: 14px;
    font-weight: 400;
    line-height: 19.156px; /* 136.826% */
    border-bottom: 1px solid #D9D9D9;
    padding: 11px 0;
    opacity: 0.7;
}
.review-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.review-div span {
    color: #1A1915;
    font-family: Inter;
    font-size: 14px;
    font-weight: 500;
    line-height: 18.232px; /* 130.227% */
}
.review-div p {
    border-bottom: 0;
    padding: 0;
}
.book-review {
    padding: 15.16px 0 0;
}
.book-card-detail a {
    display: flex;
    width: 100%;
    padding: 8px 8px 8px 20px;
    justify-content: space-between;
    align-items: center;
    gap: 7.982px;
    color: #6768E6;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
    border-radius: 10px;
    border: 1px solid rgba(103, 104, 230, 0.30);
    background: rgba(103, 104, 230, 0.14);
}
.book-card-detail span {
    border-radius: 14px;
    border: 1px solid rgba(103, 104, 230, 0.50);
    background: rgba(103, 104, 230, 0.20);
    padding: 5px 13px;
    font-weight: 400;
    line-height: normal;
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 10px;
}



ul.sec2-overview-nav {
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    width: 100%;
}
ul.sec2-overview-nav a {
    padding: 24px 12px 24px 14px;
    border-radius: 12.823px;
    border: 1.282px solid #D9D9D9;
    width: 100%;
    color: #646464ab;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
ul.sec2-overview-nav li.active a {
    color: white;
    border-color: var(--primary) !important;
    background: var(--primary);
}
.sec2-wrapper {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 5.129px 39.75px 0 rgba(0, 0, 0, 0.08);
    padding: 30px 20px;
    margin-top: 40px;
}
.sec2-overview-nav li {
    margin: 0 0 13px;
}
.sec-heading h3 {
    color: var(--H, #212121);
    font-size: 50px;
    font-weight: 500;
    line-height: 109.432%; /* 54.716px */
}


.scripting-page span.small-heading {
    margin: 0 auto 16px;
}

section.youtube-video-sec {
    padding: 80px 0;
}

.youtube-video-sec span.small-heading {
    margin: 0 auto 15px;
}
section.abt-sec {
    background-repeat: no-repeat;
    background-position: center;
}
.ebook-ghosting-sec span.small-heading {
    margin: 0 auto 15px;
}

.author-sec span.small-heading {
    margin: 0 auto 15px;
}
.four-card.crd2 {
    align-items: flex-start;
}
section.book-sec {
    background-repeat: no-repeat;
    background-position: center;
    border: 1px solid #00000026;
    border-radius: 30px;
    margin: 0 2rem;
}
.flexgrid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-top: 1px solid #D9D9D9;
}
.flexgrid-wrapper .whitebg-text {
    border-right: 1px solid #D9D9D9;
    border-left: 1px solid #D9D9D9;
}
section.contact-lastsec {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 2rem 2rem;
    padding: 80px 0;
    border-radius: 30px;
    border: 1px solid #0000001f;
}
span.small-heading.heading2 {
    margin: 0 auto 15px;
}
span.small-heading.heading2 {
    margin: 0 auto 15px;
}
















section.sec-6 {
    padding: 80px 0;
    background-repeat: no-repeat;
}
.sec6-list {
    margin-bottom: 25px;
}
.sec6-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    gap: 10px;
}
.sec6-list ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-right: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    border-radius: 14px;
    border: 1px solid #E4E4E4;
    background: #FFF;
    opacity: 0.67;
    font-size: 14px;
}
section.sec-8 {
    /* padding: 100px 0 202px; */
    background-repeat: no-repeat;
}


/* Accordian */
.accordion-list {
    position: relative;
}
.accordion-list li {
    padding: 21.6px;
    cursor: pointer;
    width: 100%;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-bottom: 14px;
    border-radius: 18px;
    border: 1.2px solid #D9D9D9;
    background: #FFF;
}
ul.accordion-list li span {
    display: flex;
    position: relative;
}
.accordion-list li h3 {
    color: var(--HEading, #1A1915);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 109.091% */
}
ul.accordion-list li h3:after {
    content: "\f078";
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    right: 0;
    right: 0;
    color: #000;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    font-weight: 600;
    top: 0;
    height: 24px;
    width: 24px;
    background: rgba(230, 230, 230, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
}
.accordion-list li.active h4::after {
    color: #9CA3AF;
    content: "\f077";
}
ul.accordion-list li.active h3:after {
    content: "\f077";
    background: var(--primary);
    color: #fff;
}
.answer p {
    margin-top: 12px;
    opacity: 0.7;
     /* 109.091% */
    color: #141414;
    font-size: 16px;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
}
.accordion-list>li.last {
    margin-bottom: 0;
}
.accordion-list>li.active .answer {
    display: block !important;
}
.answer {
    border-top: 1px solid #D9D9D9;
    margin-top: 20px;
}
ul.accordion-list li.active h3 {
    opacity: 1;
}
ul.accordion-list li.active .answer p {
    opacity: 1;
}

/* Accordian */

/* -------------------------contact us-------------------------- */
.input-field1 label {
    /* padding-left: 10px; */
    font-weight: 400;
    padding-bottom: 8px;
    opacity: 0.7;
    font-size: 14px;
    color: #1A1A1A;
}
.input-field1 input, .input-field1 textarea {
    cursor: pointer;
    width: 100%;
    font-size: 14px;
    color: #222222;
    padding: 15px 14px;
    outline: none !important;
    text-transform: capitalize;
    margin-bottom: 16px;
    border-radius: 6.004px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: #FDFDFD;
    height: 56.437px;
}
.input-field1 textarea {
    height: 184.922px;
    align-self: stretch;
}
.send {
    text-align: left;
    padding-top: 10px;
}
.send input[type="submit"] {
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
    cursor: pointer;
    transition: .4s ease;
    text-transform: capitalize;
    width: 100%;
    padding: 16px 34px;
    box-shadow: 0 1.7px 3.1px 0 rgba(11, 93, 81, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: 7px;
    background: #6768E6;
}
.details h5 {
    font-size: 18px;
    padding-bottom: 20px;
    color: #202529;
}
.details a {
     /* 125% */
     color: var(--HEading, #1A1915);
     text-align: center;
     font-family: "Cormorant Garamond";
     font-size: 24px;
     font-style: italic;
     font-weight: 700;
     line-height: normal;
     padding: 10px 0;
}
.details {
    padding: 0 31px;
    display: flex;
    margin-bottom: 1rem;
    gap: 10px;
}
.details.last {
    border-right: 0;
}
.social-icons li {
    display: inline-block;
    vertical-align: middle;
    margin-right: 18px;
    height: 40px;
    width: 40px;
    background: #008576;
    border-radius: 50px;
    text-align: center;
}
.social-icons li a {
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    text-align: center;
}
.details a i, .details p i {
    color: #e3942f;
    padding-right: 12px;
}
.form {
    padding: 20px 28px;
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 14px 5px 36.3px 0 rgba(0, 0, 0, 0.08);
}
.sec-heading h6 {
    color: var(--HEading, #1A1915);
    font-size: 34px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
}
.details p {
    color: #1A1A1A;
    font-size: 16px;
    line-height: 20px;
    letter-spacing: 0.1px;
    opacity: 0.7;
}
.contact-detail-wrap {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #F2F0FF;
    padding: 20px;
    margin-top: 35px;
}
/* -------------------------contact us-------------------------- */

.testi-card {
    border-radius: 11px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.07);
    padding: 15px;
    display: flex !important;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}
.client-image {
    flex-shrink: 0;
}
.client-name {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.client-name span.name {
    color: var(--HEading, #1A1915);
    text-align: left;
    font-family: Cormorant;
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px; /* 109.091% */
    display: block;
}
.client-name span.des {
    color: #141414;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
    opacity: 0.7;
}
.client-detail p {
    color: #141414;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 162.5% */
    opacity: 0.7;
    padding-top: 6px;
}
section.sec-7 {
    background-repeat: no-repeat;
    background-position: top center;
    margin: 0 2rem 2rem;
    padding: 80px 0 0;
    border-radius: 30px;
    border: 1px solid #0000001f;
}
.sec-5 span.small-heading {
    justify-content: center;
    margin: 0 auto;
}

.sec-heading ul li {
    color: #141414;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    opacity: 0.7;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}
.sec-heading ul li b {
    display: contents;
    font-weight: 500;
    color: #000;
}


/* Sec Headings */
.sec-heading {
    margin-bottom: 1rem;
}
.sec-heading.center {
    text-align: center;   
}
.sec-heading h2 {
     /* 54.716px */
      /* 52.56px */
     color: var(--H, #212121);
     font-family: "Cormorant Garamond";
     font-size: 40px;
     font-weight: 500;
     line-height: 131.4%; /* 52.56px */
}
.sec-heading.white h2{
    color:white
}
.sec-heading p {
    margin: 1rem 0;
     /* 150% */
    opacity: 0.7;
    color: #212121;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px; /* 155.556% */
}
.sec-heading .sub-heading {
    font-weight: 600;
    font-size: 18px;
    line-height: 29px;
    color: var(--primary);
    margin-bottom: 1rem;
}
/* Sec Headings */

/* sections */
section {
    padding: 4rem 0;
    position: relative;
}
.padding-2{
    padding: 1rem 0;
}
/* sections */ 

/* Theme Buttons */
.btn-wrap {
    display: flex;
    gap: 1rem;
    align-items: center;
    /* margin: 1rem 0; */
}
.btn-wrap .theme-btn {
    padding: 8px 8px 8px 31px;
    color: #fff;
    font-size: 16px;
    justify-content: space-between;
    font-weight: 400;
    border: 2px solid var(--primary);
    transition: .5s ease;
    border-radius: 7px;
    background: var(
    --primary);
    display: flex;
    align-items: center;
    gap: 10px;
}
.btn-wrap .theme-btn.bordered {
    color: #000;
    font-size: 14px;
    border: 2px solid #FB0;
    padding: 8px 8px 8px 31px;
    background: #FB0;
}
.btn-wrap .theme-btn:hover{
    transform: scale(1.03);
} 
/* Theme Buttons */

/* Country Code */
.newcountrycode {
    position: relative;
    display: flex;
    align-items: center;
    /* padding-left: 40px; */
    border: 1px solid #ddd;
    height: 45px;
    border-radius: 5px;
}
.newcountrycode select {
    width: 56px;
    border: 0;
    padding: 0px 19px;
    font-size: 16px;
    position: relative;
    z-index: 1;
    background: transparent;
}
.newcountrycode .countrycode {
    width: 70px;
    border: 0;
    background: #f9f9f9;
    text-align: center;
    padding: 5px;
    border-radius: 5px;
    margin: 0 10px;
}
.newcountrycode .phone-field {
    width: 100%;
}
.newcountrycode input {
    border: 0;
}
/* Country Code */

/* popup */
.overlay {
    background-color: rgb(197 197 197 / 32%);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 9999999;
    display: none;
    backdrop-filter: blur(10px);
  }
  .popupmain {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1000px;
    /* background: #fff; */
    box-shadow: 0 0 30px -9px #0000006e;
    z-index: 9999999;
    display: none;
    /* border-radius: 8px; */
    max-height: 90vh;
  }
  .mmpopup {
    background: url("../images/popup-bg.jpg");
    background-size: cover;
    background-position: center;
    border-radius: 33px;
    border: 5px solid var(--primary);
    padding: 12px;
  }
  .mmpopup .popup-content {
    padding: 50px 40px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 4px 52.4px 0px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(33.75px);
    overflow: hidden;
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #F2F0FF;
  }
  .mmpopup .formpop {
    width: 100%;
    margin-top: 60px;
  }
  .mmpopup .form-text {
    color: #000;
    font-family: var(--font-body);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.2;
    margin-top: 20px;
  }
  .mmpopup .form-text a {
    color: #659640;
    font-weight: 700;
  }
  .mmpopup .form-text a:hover {
    color: var(--secondary);
  }
  .mmpopup .form-group-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    align-items: center;
    gap: 0;
    column-gap: 20px;
    margin-bottom: 30px;
    width: 100%;
  }
  .mmpopup .fld-input {
    height: 50px;
    width: 100%;
    /* margin-bottom: 9px; */
    border-radius: 10px;
    margin-bottom: 1rem;
    border: 1px solid #d1d5db;
    overflow: hidden;
  }
  .mmpopup .centercont h3 {
    font-size: 38px;
    color: #141515;
    margin-bottom: 10px;
  }
  .mmpopup .centercont h4 {
    font-size: 20px;
    color: #566060;
    margin-bottom: 15px;
  }
  .mmpopup .centercont h4 span {
    color: #86cb92;
  }
  .mmpopup .centercont p {
    color: #333;
    font-size: 14px;
    margin-bottom: 120px;
    line-height: 20px;
  }
  .closeico {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 100px;
  }
  .closeico i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .closeico1 {
    position: absolute;
    top: 15px;
    right: 20px;
    z-index: 9999;
  }
  .closeico1 i {
    background: url(https://markfortify.com/lp4/assets/images/e-remove.png)
      no-repeat;
    width: 16px;
    height: 16px;
    display: block;
  }
  .mmpopup .centercont p {
    margin-bottom: 10px;
    line-height: 23px;
    color: #565656;
    max-width: 390px;
    margin: auto;
    display: block;
    position: relative;
  }
  .mmpopup .centercont ul {
    margin-bottom: 30px;
    display: inline-block;
    vertical-align: middle;
    text-align: left;
    padding: 27px 49px 27px 24px;
    background: #fff;
    border-radius: 10px;
    margin-right: 20px;
  }
  .mmpopup .centercont ul li {
    display: block;
    font-size: 15px;
    color: #000;
    padding-bottom: 12px;
  }
  .mmpopup .centercont ul li.last {
    padding-bottom: 0;
  }
  .mmpopup .centercont ul li i {
    color: #ff533e;
    border: 1px solid;
    border-radius: 100px;
    margin-right: 8px;
    font-size: 10px;
    padding: 3px;
  }
  .mmpopup .centercont h4 {
    font-size: 35px;
    color: var(--primary);
  }
  .mmpopup .centercont h3 {
    font-size: 50px;
    font-weight: 400;
    color: #0085ff;
  }
  .mmpopup .centercont h3 span {
    color: #000;
    font-family: var(--font-body);
    font-size: 40px;
    font-style: normal;
    font-weight: 500;
    line-height: 1;
  }
  .mmpopup .centercont h4 span {
    font-weight: 700;
    color: #000;
    font-size: 60px;
    font-family: auto;
  }
  .fld-input {
    border-style: solid;
    border-width: 1px;
    border-color: rgb(218 217 217);
    border-radius: 5px;
    background-color: #fff;
    width: 354px;
    height: 66px;
    margin-bottom: 20px;
  }
  .fld-input input {
    width: 100%;
    height: 100%;
    padding: 0 24px;
    font-size: 16px;
    letter-spacing: 0.2px;
    background: #eeeeee;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none;
    font-family: "Inter";
  }
  .fld-input input::placeholder {
    color: #737373;
    font-weight: 400;
  }
  .fld-btn button {
    border: 0;
  }
  .form-group field input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
}
.form-group input.form-field {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.30);
    font-size: 16px;
    width: 100%;
}
.fld-btn button.banner-btn {
    box-shadow: 0px 10px 21.1px 0px rgba(0, 0, 0, 0.15);
    padding: 18px 32px;
    color: #FEF8EA;
    font-size: 16px;
    border: 2px solid var(--primary);
    transition: .5s ease;
    border-radius: 7px;
    background: var(--primary);
}
.fld-btn.packageformsubmit {
    display: flex;
    align-items: center;
    gap: 1rem;
}
/* popup */

/* ---------------------------footer------------------------------- */
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* border-top: 1px solid #ffffff38; */
    padding: 15px 0;
}
.copyright p,.copyright a {
    color: white;
    font-size: 14px;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}
.footer-sec p {
    color: #fff;
    line-height: 21px;
    font-size: 16px;
    opacity: 0.7;
}
.footer-hdng h4 {
    margin-bottom: 20px;
    color: #FFF;
    font-family: 'Cormorant Garamond';
    font-size: 22px;
    font-weight: 400;
    line-height: 18px; /* 112.5% */
    padding: 15px 0;
    border-bottom: 1px solid #ffffff26;
}
.f-menu li a {
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    opacity: 0.5;
}
.footer-hdng p {
    color: #fff;
    line-height: normal;
    padding-bottom: 16px;
}
.hours {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hours p {
    color: #fff;
    font-size: 16px;
}
.f-menu li a i {
    color: var(--primary);
    margin-right: 10px;
}
.f-menu li {
    line-height: 2;
}
.copyright-sec {
    background: #121212;
}
.f-link li {
    width: 22px;
    height: 22px;
    background: #FB0;
    border-radius: 50px;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.footer-sec {
    /* display: flex; */
    /* align-items: center; */
    /* gap: 0; */
}
.f-link li a {
    font-size: 10px;
    color: #000;
}
ul.detail-menu {
    display: inline-block;
    vertical-align: middle;
}
ul.detail-menu li {
    display: inline-block;
    vertical-align: middle;
    padding: 16px 26px;
    border-left: 1px solid #ffffff42;
}
.ul.detail-menu li a {
    color: #FFF;
    font-family: Leelawadee;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.1px;
}
ul.detail-menu li a {
    color: #FFF;
    font-size: 14px;
    line-height: 20px; /* 142.857% */
    letter-spacing: 0.1px;
}
.our-reviews h4 {
    color: #FFF;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px; /* 112.5% */
}
.copyright ul {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-truspilot {
    text-align: end;
    padding: 21px 0;
}
.borderbottom {
    border-bottom: 1px solid #ffffff3b;
    padding: 60px 0 40px;
}
.footer-hdng {
    display: flex;
}
footer {
    margin: 0 2rem 2rem;
    border-radius: 30px;
    background: #121212;
}
.copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.copyright p,.copyright a {
    color: white;
}
ul.f-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
ul.f-menu:before {
    content: "";
    display: block;
    position: absolute;
    top: -55px;
    right: 8px;
    height: 288px;
    width: 2px;
    background: #ffffff1a;
}
ul.f-menu.first:after {
    content: "";
    display: block;
    position: absolute;
    top: -52px;
    right: 0px;
    height: 288px;
    width: 2px;
    background: #ffffff1a;
}
ul.f-menu.last:before {
    display: none;
}
ul.f-menu.first:before {
    display: none;
}
ul.f-menu {
    position: relative;
}
/* ----------------------------------footer---------------------- */

/* 404 */
.error-text {
    font-size: 96px;
    line-height: 68px;
    color: var(--accent);
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.error-heading {
    font-weight: 200;
    font-size: 42px;
    line-height: 42px;
}
.error-image {
    margin-top: 100px;
}
.thankyou-text{
    font-size: 20px;
    initial-letter: 30;
    line-height: 34px;
    margin-top: 20px;
}
/* 404 */

/* terms */
ul.terms-list {
    list-style: disc;
    margin-left: 22px;
}
.mainBanner.termpage {
    background: linear-gradient(277deg, #FEF8EA -6.24%, #FFE9B5 95.3%);
}
.banner-content2 {
    padding: 73px 0 100px;
}
.terms ul {
    line-height: 25px;
    font-size: 16px;
    color: #333;
}
.terms ul li {
    margin-bottom: 1rem;
}
.terms ul li::marker {
    font-size: 22px;
    font-weight: 500;
}
.terms h4 {
    font-size: 24px;
    margin: 2rem 0 1rem;
}
.terms p {
    margin-bottom: 1rem;
}
/* terms */


/* ----------------------inner pages-----------------  */
section.category-sec {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 2rem;
    border-radius: 30px;
    border: 1px solid #0000001c;
}
.category-sec span.small-heading {
    margin: 0 auto;
}
section.contactus-sec {
    padding: 80px 0;
}
section.faqs-sec {
    padding: 212px 0 90px;
}
section.sec-3.ghostwriting-page {
    margin-top: 0;
    padding: 212px 0 270px;
}
section.sec-1.ghostwriting-sec1 {
    padding: 80px 0;
}
.banner-content-inner {
    padding: 130px 0 96px;
}
.banner-content-inner h1.banner-heading {
    font-size: 68px;
}
.banner-img-inner {
    position: absolute;
    bottom: 0;
    right: 11vw;
    max-width: 32%;
    font-size: 0;
}
/* ----------------------------------------------------- */

.sixcard {
    border-radius: 20px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 22px 18px;
    margin-bottom: 18px;
    text-align: left;
}
.sixcard h3 {
    padding: 9px 0 9px;
    color: var(--H, #212121);
    font-size: 24px;
    font-weight: 500;
    line-height: 109.432%;
}
.sixcard p {
    color: #212121;
    font-size: 16px;
    line-height: 25px; 
    opacity: 0.7;
}
.sixcard-sec span.small-heading {
    margin: 0 auto;
}
/* ----------------------------------------------------------- */

h1#bookTitle {
    color: var(--HEading, #1A1915);
    font-family: "Cormorant Garamond";
    font-size: 50px;
    font-style: italic;
    font-weight: 700;
    line-height: 56px; /* 112% */
}
h3#bookSubTitle {
    color: var(--HEading, #1A1915);
    font-family: "Cormorant Garamond";
    font-size: 50px;
    font-style: normal;
    font-weight: 400;
    line-height: 56px;
    border-bottom: 1px solid #D9D9D9;
    padding: 0 0 20px;
    margin-bottom: 20px;
}
.book-detail h3 {
    color: var(--HEading, #1A1915);
    font-family: "Cormorant Garamond";
    font-size: 26px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    border-top: 1px solid #D9D9D9;
    padding: 20px 0 0;
    margin-top: 20px;
}
p#bookDescription {
    color: #141414;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 162.5% */
    opacity: 0.7;
}
.book-detail p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.book-detail p strong {
    color: #1A1915;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 18.232px; /* 113.949% */
}
.book-detail p span {
    color: #141414;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.232px; /* 113.949% */
    opacity: 0.7;
}
.slideitem h3 {
    color: var(--HEading, #1A1915);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 24px;
    text-align: center;
    padding: 10px 0 0;
}
.slideitem p {
    margin: 1rem 0;
    opacity: 0.7;
    color: #212121;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    text-align: center;
}
/* ------------------------------------------------------------------------ */

.chooseus-list h3 {
    border-bottom: 1px solid rgba(190, 160, 105, 1);
    padding: 0 0 10px;
    margin-bottom: 12px;
    color: var(--HEading, #1A1915);
    font-size: 30px;
    font-weight: 500;
    line-height: normal;
    width: fit-content;
}
.chooseus-list p {
    
     /* 137.5% */
    opacity: 0.7;
    color: #212121;
    font-size: 16px;
    line-height: 28px; /* 175% */
}
section.sec-6 {
    background-size: cover;
    margin: 0 2rem;
    border-radius: 30px;
    border: 1px solid #0000001f;
}




section.testimonial-sec {
    padding: 396px 0 111px;
    margin-top: -16vw;
    z-index: -1;
}
h1.banner-heading.innerpage {
    font-size: 60px;
}
.five-card {
  border-radius: 20px;
border: 1px solid #D9D9D9;
background: #FFF;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}
.five-card h3 {
    color: var(--HEading, #1A1915);
    /* text-align: center; */
    font-size: 26px;
    font-style: italic;
}
section.scripting-page {
    padding: 80px 0;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 30px;
    border: 1px solid #D9D9D9;
    margin: 0 2rem;
}


.video-slider .slide-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
  margin: 88px 0;
  width: 830.054px;
  /* height: 386.621px; */
}
.video-slider .slide-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  filter: grayscale(60%);
  transition: 0.4s;
}
.video-slider .slick-center img {
  filter: grayscale(0%) blur(0px);
  transform: scale(1.05);
}
.video-slider .slick-slide {
  opacity: 0.4;
  /* transform: scale(0.85); */
  transition: all 0.4s ease;
}
.video-slider .slick-center {
  opacity: 1;
  transform: scale(1) !important;
}
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(190, 160, 105, 1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  pointer-events: none;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.3);
  width: 106.582px;
  height: 106.582px;
}
.slide-item h3 {
  position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: #F6F6F6;
    text-align: center;
    font-size: 30px;
    font-style: italic;
}
.video-slider .slick-list.draggable {
    padding-left: 0% !important;
    padding-right: 0% !important;
}
.video-slider .slick-slide {
    margin: 0 !important;
}


.banner-content.banner2 {
    padding: 70px 0;
}
.service-card.ebook-writing {
    background: #fff;
}
.book-category-card {
    border-radius: 10px;
    background: #FFF;
    padding: 16px;
}
.book-category-card div {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
}
.book-category-card div h3 {
    color: var(--HEading, #1A1915);
    font-size: 26px;
    font-style: italic;
}
.book-category-card p {
    color: #141414;
    font-size: 16px;
    line-height: 26px; /* 162.5% */
    opacity: 0.7;
}
section.book-category {
    padding: 100px 0 200px;
    background-repeat: no-repeat;
    background-size: cover;
}

.ebook-ghostwriting-card {
    border-radius: 11px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 21px;
}
.ebook-ghostwriting-card img {
    flex-shrink: 0;
}
.ebook-ghostwriting-card h3 {
    color: var(--HEading, #1A1915);
    font-size: 22px;
    line-height: 24px; /* 109.091% */
    border-bottom: 1px solid #D9D9D9;
    padding: 0 0 10px;
    margin-bottom: 10px;
}
.ebook-ghostwriting-card p {
    color: #141414;
    font-size: 16px;
    line-height: 26px; /* 162.5% */
}
.five-card.scripting-page2 {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #FFF;
}
section.book-marketing-sec {
    padding: 366px 0 210px;
    background-repeat: no-repeat;
    margin-top: -13vw;
    background-size: cover;
}
.book-marketing-cta {
    z-index: 1;
    position: relative;
}
section.sec-6-bookmarketing {
    padding: 453px 0 124px;
    background-repeat: no-repeat;
    background-size: cover;
    margin-top: -18vw;
    z-index: -1;
}



.threecard span {
    border-radius: 20px;
    background: rgba(26, 145, 240, 0.10);
    padding: 24.02px 20.8px;
    color: var(--HEading, #1A1915);
    font-family: Cormorant;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 29.52px;
}
.threecard p {
    color: #141414;
    font-size: 16px;
    line-height: 26px; /* 162.5% */
    border-bottom: 1px solid #D9D9D9;
    padding: 0 0 21px;
    opacity: 0.7;
}
.threecard ul li {
    color: #141414ba;
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px; /* 185.714% */
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 21px 0 19px;
    border-bottom: 1px solid #D9D9D9;
}
.threecard ul li.last {
    border-bottom: 0;
}
.threecard {
    /* border-right: 1px solid #D9D9D9; */
    /* padding: 0 17.3px 0; */
    border-radius: 19.311px;
    border: 0.966px solid #D9D9D9;
    background: #FFF;
    padding: 19.28px;
}
.threecard.last {
    border-right: 0;
}
.threecard span.bg2 {
    background: rgba(251, 46, 0, 0.10);
}

.threecard span.bg3 {
    background: rgba(217, 171, 86, 0.10);
}
section.sec-6.author-website {
    padding: 196px 0 408px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right;
}
.book-marketing-cta.cta2 {
    margin-top: -15vw;
}
.whitebg-text {
    padding: 16px;
    border-bottom: 1px solid #D9D9D9;
}
.whitebg-text h3 {
    padding: 0 0 10px;
    color: var(--H, #212121);
    font-size: 18px;
    line-height: 109.432%; /* 19.698px */
    display: flex;
    align-items: center;
    gap: 10px;
}
.whitebg-text p {
    color: #141414;
    font-size: 14px;
    line-height: 22px; /* 157.143% */
    opacity: 0.7;
}


.four-card {
    border-radius: 10px;
    border: 1px solid #D9D9D9;
    background: #FFF;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 20px;
}
.four-card-text {
    display: flex;
    align-items: center;
    gap: 16px;
}
.four-card-text h3 {
    color: var(--HEading, #1A1915);
    font-size: 26px;
    font-style: italic;
    line-height: normal;
}
.four-card p {
    color: #141414;
    font-size: 16px;
    line-height: 26px; /* 162.5% */
    opacity: 0.7;
    padding: 8px 0;
}
.four-card ul li {
    color: #141414b3;
    font-family: Inter;
    font-size: 16px;
    line-height: 26px; /* 162.5% */
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 4px;
}
section.sec-6-ebook-publishing {
    padding: 80px 0;
}
.sec-2-ebook {
    margin-top: -10vw;
    z-index: 2;
    position: relative;
}
.sec-2 {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 80px 0;
    margin: 0 2rem;
    border: 1px solid #00000024;
    border-radius: 30px;
}
section.sec-9 {
    background-repeat: no-repeat;
    background-size: cover;
    margin: 0 2rem 2rem;
    padding: 80px 0;
    border-radius: 30px;
    border: 1px solid #0000001f;
}
img.number-line {
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    bottom: 10vw;
}
.sec-6 span.small-heading {
    margin: 0 auto;
}
.chooseus-list.marginright {
    margin-left: 5vw;
}



/* Book category */
#bookCategory {
    margin-bottom: 5px;
    color: var(--MZ, #BEA069);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
/* Book title */
#bookName {
    margin-bottom: 10px;
    color: var(--HEading, #1A1915);
    font-family: "Cormorant Garamond";
    font-size: 50px;
    font-weight: 400;
    line-height: 56px;
}
/* Small paragraph */
#bookSmallParagraph {
    color: #141414;
    font-family: Inter;
    font-size: 14px;
    line-height: 24px; /* 171.429% */
}
/* Book info list */
.book-info {
    list-style: none;
    padding: 0 0 20px;
    margin: 0 0 20px 0;
    border-bottom: 1px solid #D9D9D9;
}
.book-info li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    font-size: 15px;
    color: #333;
}
.book-info li strong {
    color: #1A1915;
    font-family: Inter;
    font-size: 16px;
    font-weight: 500;
    line-height: 18.232px; /* 113.949% */
}
/* Book description */
#bookDesc {
    color: #141414;
    font-family: Inter;
    font-size: 16px;
    line-height: 26px; /* 162.5% */
    opacity: 0.7;
}
/* Book image */
#bookImage {
    width: 60%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    object-fit: cover;
}
p#bookDesc {
    display: block;
}
p#bookDesc ul {
    margin: 2rem 0 0 1rem;
    list-style: disc;
}
.book-info li span {
    color: #141414;
    font-family: Inter;
    font-size: 16px;
    line-height: 18.232px; /* 113.949% */
    opacity: 0.7;
}
.book-detail.text-end {
    border-radius: 20px;
    width: 700px;
    /* height: 636.301px; */
    background: rgba(217, 217, 217, 1);
    text-align: center !important;
    margin: 0 auto;
    padding: 32px;
}
.book-review-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #D9D9D9;
    border-bottom: 1px solid #D9D9D9;
    margin-bottom: 20px;
}
/* Responsive */
@media (max-width: 991px) {
    .col-lg-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .book-detail {
        padding: 20px;
    }
}











@media (max-width: 1440px) {
    .banner-content {
        padding: 175px 0 100px;
    }
    span.sub-heading {
        margin-bottom: 0;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 48px;
        line-height: 64px;
        margin-bottom: 0;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 26px;
    }
    .banner-img {
        text-align: end;
        position: absolute;
        top: 14vw;
        right: -18vw;
        max-width: 68%;
    }
    .sec-heading h2 {
        /* font-size: 34px; */
        /* line-height: 46px; */
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 28px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    section.sec-1 {
        padding: 60px 0;
    }
    .sec-heading h2 span {
        font-size: 26px;
    }
    .cta-wrapper {
        background-size: cover;
    }
    .sec-wrapper .sec-heading h2 {
        font-size: 45px;
        line-height: 50px;
    }
    section.sec-3 {
        background-position: center;
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
    }
    section {
        padding: 2rem 0;
    }
    .book-card {
        flex-direction: column;
    }
    section.sec-6 {
        padding: 100px 0;
    }
    .sec6-list ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .sec6-list ul li {
        padding: 12px;
        font-size: 14px;
    }
    .client-detail p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-8 {
        padding: 50px 0;
    }
    .accordion-list li {
        padding: 14.6px;
    }
    .accordion-list li h3 {
        font-size: 22px;
        line-height: 22px;
        max-width: 90%;
    }
    .answer p {
        /* font-size: 16px; */
        /* line-height: 22px; */
    }
    .contact-detail-wrap {
        gap: 4rem;
    }
    .details {
        padding: 0;
        border-right: 0;
    }
    .sec-heading h6 {
        font-size: 28px;
    }
    .form {
        padding: 16px;
        margin-top: 16px;
    }
    ul.detail-menu li {
        padding: 8px 14px;
        border-left: 0;
    }
    .footer-sec p {
        line-height: 18px;
        font-size: 14px;
    }
    .borderbottom {
        padding: 26px 0 18px;
    }
    ul.f-menu.first:after, ul.f-menu:before{
        display: none;
    }
    .footer-hdng h4 {
        font-size: 18px;
    }
    ul.overview-nav a {
        padding: 16px 6px;
    }
    .categories-wrapper {
        margin-bottom: 14px;
    }
    .sec-4 {
        margin-top: 0;
    }

    .mmpopup .popup-content {
        padding: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
        line-height: 28px;
    }
    .mmpopup .formpop {
        width: 100%;
        margin-top: 26px;
    }
    section.category-sec {
        padding: 60px 0 60px;
    }
    section.contactus-sec {
        padding: 60px 0 60px;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.faqs-sec {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    h1.banner-heading.innerpage {
        /* font-size: 46px; */
    }
    section.scripting-page {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .five-card h3 {
        text-align: left;
        font-size: 24px;
    }
    .five-card {
        padding: 10px;
        gap: 10px;
    }
    .video-slider .slide-item {
        margin: 30px 0;
        width: auto;
    }
    section.sec-6.author-website {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .book-marketing-cta.cta2 {
        margin-top: 0;
        padding: 60px 0;
    }
    section.sec-1.ghostwriting-sec1 {
        padding: 60px 0;
    }
    .four-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .four-card ul li {
        font-size: 14px;
        line-height: 20px;
    }
    section.book-marketing-sec {
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.sec-6-ebook-publishing {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .sec-2-ebook {
        margin-top: 0;
        padding: 60px 0;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .mainBanner {
        background-position: center;
    }
    
#bookName {
    font-size: 28px;
    line-height: 30px;
}
.book-info li strong {
    font-size: 14px;
}
.book-info li span {
    font-size: 14px;
}
#bookDesc {
    font-size: 13px;
    line-height: 23px;
}
.book-detail.text-end {
    width: auto;
    padding: 8px;
}


.mainBanner {
    margin: 0;
}
.btn-wrap .theme-btn {
    justify-content: space-between;
    padding: 8px 8px 8px 8px;
}
.btn-wrap .theme-btn.bordered {
    padding: 8px 8px 8px 8px;
}
.sec-2 {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-position: center;
}
ul.sec2-overview-nav a {
    padding: 10px;
    font-size: 14px;
}
.sec-heading h3 {
    font-size: 40px;
    margin-top: 1rem;
}
section.sec-5 {
    margin: 0;
    border-radius: 0;
    padding: 50px 0;
    border: 0;
    background-position: center;
}
section.sec-7 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.client-name span.name {
    font-size: 18px;
}
section.contact-lastsec {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
footer {
    margin: 0;
    border-radius: 0;
}
ul.detail-menu {
    margin-top: 20px;
}
.banner-content-inner h1.banner-heading {
    font-size: 58px;
}
.banner-content-inner {
    padding: 120px 0 90px;
}
section.category-sec {
    padding: 50px 0;
    margin: 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.sec-wrapper.second:before {
    display: none;
}
.sec-wrapper.second {
    padding: 20px !important;
}
.sixcard p {
    font-size: 14px;
}
section.sec-6 {
    background-size: cover;
    margin: 0;
    border-radius: 0;
    border: 0;
}
.chooseus-list h3 {
    font-size: 35px;
}
.chooseus-list p {
    font-size: 16px;
    line-height: 28px;
}
img.number-line {
    display: none;
}
.chooseus-list.marginright {
    margin-left: 0;
}
.sec-heading ul li {
    font-size: 16px;
    line-height: 26px;
}
section.scripting-page {
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    margin: 0;
}
.ebook-ghostwriting-card {
    flex-direction: column;
    align-items: flex-start;
}
.ebook-ghostwriting-card p {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.7;
}
section.sec-9 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
section.youtube-video-sec {
    padding: 40px 0;
}
.whitebg-text {
    padding: 12px 0 22px;
    border-bottom: 1px solid #D9D9D9;
}
.four-card-text h3 {
    font-size: 21px;
}
section.book-sec {
    border: 0;
    border-radius: 0;
    margin: 0;
}
.flexgrid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    border-top: 0;
}
.flexgrid-wrapper .whitebg-text {
    border-right: 0;
    border-left: 0;
}
.threecard span {
    font-size: 18px;
    margin-bottom: 18.52px;
}
.threecard p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 0 21px;
}
.threecard ul li {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
}
.threecard {
    margin-bottom: 12px;
}
.threecard ul li svg {
    flex-shrink: 0;
    max-width: 4%;
}
.terms ul li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
}
.banner-img-inner {
    right: 2vw;
    max-width: 40%;
}
.cat-image {
    position: relative;
    top: 0;
    left: 0;
}
.cat-image:before{
    display: none;
}




}

@media (max-width: 1200px) {
    .btns{
        margin: 1.5rem 0;
    }
    .dropdown {
        position: unset;
        box-shadow: none;
        width: 100%;
        /*background: #f0f8ff80;*/
    }
    .menu > li > a {
        font-size: 14px;
    }
    .dropdown ul li a {
        padding: 0;
        line-height: 1rem;
        /* padding: 0; */
        /*padding: 1rem;*/
        font-weight: 500;
    }
    .form-head .form-heading{
        white-space: normal;
        font-size: 20px;
    }
    .form-head{
        padding: 1rem;
    }
    .btn-normal{
        padding: 10px 8px;
    }
    .sub-menu a {
        color: #333 !important;
        margin-bottom: 0 !important;
    }
    .sub-menu {
        left: auto !important;
        padding-top: 16px;
        top: 24px;
    }
    a.header-btn {
        padding: 15px 20px !important;
        margin-bottom: 0 !important;
        display: flex !important;
        gap: 5px !important;
        align-items: center;
    }
    .menuWrap .menu:first-child{
        padding-left: 0;
        width: 100%;
    }
    img {
        max-width: 100%;
        height: auto;
    }
    .menu-Bar {
        display: block;
        top: 0px;
    }
    .menuWrap.open {
        display: flex;
        left: 0px;
    }
    .menuWrap {
        position: fixed;
        left: -210%;
        /* right: 0; */
        top: 0;
        bottom: 0;
        margin: auto;
        background: #ffffff;
        height: 100vh;
        display: flex;
        align-items: center;
        /* justify-content: center; */
        flex-flow: column;
        transition: all 0.4s ease;
        z-index: 3;
        width: 70%;
        overflow-y: auto;
        box-shadow: 0px 4px 6px -1px rgb(0 0 0 / 10%), 0px 2px 4px -1px rgb(0 0 0 / 6%);
    }
    ul.menu > li  {
        display: flex;
        justify-content: center;
        gap: 5px;
        border-bottom: 1px solid #ddd;
        padding: 0;
        flex-direction: column;
    }
    ul.menu > li > a {
        margin-bottom: 10px;
        padding: 0;
        display: block;
        text-align: center;
        margin-bottom: 15px;
        padding-right: 0px;
        margin-right: 0px;
        color: #fff;
        font-size: 15px;
        text-transform: capitalize;
    }
    .container {
        position: relative;
    }
    header .main-header ul.menu>li > a {
        color: #333;
        width: 100%;
        text-align: left;
        margin: 0;
        display: flex;
        justify-content: space-between;
        padding: 1rem;
    }
    header .main-header ul.menu>li > a:before {
        display: none;
    }

    .banner-content {
        padding: 175px 0 100px;
    }
    span.sub-heading {
        margin-bottom: 0;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 48px;
        line-height: 64px;
        margin-bottom: 0;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 26px;
    }
    .banner-img {
        text-align: end;
        position: absolute;
        top: 14vw;
        right: -18vw;
        max-width: 68%;
    }
    .sec-heading h2 {
        font-size: 45px;
        line-height: 46px;
    }
    .sec-heading p {
        font-size: 16px;
        line-height: 26px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    section.sec-1 {
        padding: 60px 0;
    }
    .sec-heading h2 span {
        font-size: 26px;
    }
    .cta-wrapper {
        background-size: cover;
    }
    .sec-wrapper .sec-heading h2 {
        font-size: 34px;
        line-height: 38px;
    }
    section.sec-3 {
        background-position: center;
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
    }
    section {
        padding: 2rem 0;
    }
    .book-card {
        flex-direction: column;
    }
    section.sec-6 {
        padding: 100px 0;
    }
    .sec6-list ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .sec6-list ul li {
        padding: 14px;
        font-size: 14px;
    }
    .client-detail p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-8 {
        padding: 50px 0;
    }
    .accordion-list li {
        padding: 14.6px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
        max-width: 90%;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    .contact-detail-wrap {
        gap: 2rem;
    }
    .details {
        padding: 0;
        border-right: 0;
    }
    .sec-heading h6 {
        font-size: 28px;
    }
    .form {
        padding: 16px;
        margin-top: 16px;
    }
    ul.detail-menu li {
        padding: 8px 14px;
        border-left: 0;
    }
    .footer-sec p {
        line-height: 18px;
        font-size: 14px;
    }
    .borderbottom {
        padding: 26px 0 18px;
    }
    ul.f-menu.first:after, ul.f-menu:before{
        display: none;
    }
    .footer-hdng h4 {
        font-size: 18px;
    }
    ul.overview-nav a {
        padding: 16px 6px;
    }
    .categories-wrapper {
        margin-bottom: 14px;
    }
    .sec-4 {
        margin-top: 0;
    }

    .mmpopup .popup-content {
        padding: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
        line-height: 28px;
    }
    .mmpopup .formpop {
        width: 100%;
        margin-top: 26px;
    }
    section.category-sec {
        padding: 60px 0 60px;
        background-size: cover;
    }
    section.contactus-sec {
        padding: 60px 0 60px;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.faqs-sec {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    h1.banner-heading.innerpage {
        font-size: 36px;
    }
    section.scripting-page {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .five-card h3 {
        text-align: left;
        font-size: 20px;
    }
    .five-card {
        padding: 10px;
        gap: 10px;
    }
    .video-slider .slide-item {
        margin: 30px 0;
        width: auto;
    }
    section.sec-6.author-website {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .book-marketing-cta.cta2 {
        margin-top: 0;
        padding: 60px 0;
    }
    section.sec-1.ghostwriting-sec1 {
        padding: 60px 0;
    }
    .four-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .four-card ul li {
        font-size: 14px;
        line-height: 20px;
    }
    section.book-marketing-sec {
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.sec-6-ebook-publishing {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .sec-2-ebook {
        margin-top: 0;
        padding: 60px 0;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .mainBanner {
        background-position: center;
    }
    
     #bookName {
    font-size: 28px;
    line-height: 30px;
}
.book-info li strong {
    font-size: 14px;
}
.book-info li span {
    font-size: 14px;
}
#bookDesc {
    font-size: 13px;
    line-height: 23px;
}
.book-detail.text-end {
    width: auto;
    padding: 8px;
}


.mainBanner {
    margin: 0;
}
.btn-wrap .theme-btn {
    justify-content: space-between;
    padding: 8px 8px 8px 8px;
}
.btn-wrap .theme-btn.bordered {
    padding: 8px 8px 8px 8px;
}
.sec-2 {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-position: center;
}
ul.sec2-overview-nav a {
    padding: 10px;
    font-size: 14px;
}
.sec-heading h3 {
    font-size: 28px;
    margin-top: 1rem;
}
section.sec-5 {
    margin: 0;
    border-radius: 0;
    padding: 50px 0;
    border: 0;
    background-position: center;
}
section.sec-7 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.client-name span.name {
    font-size: 18px;
}
section.contact-lastsec {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
footer {
    margin: 0;
    border-radius: 0;
}
ul.detail-menu {
    margin-top: 20px;
}
.banner-content-inner h1.banner-heading {
    font-size: 40px;
}
.banner-content-inner {
    padding: 50px 0 40px;
}
section.category-sec {
    padding: 50px 0;
    margin: 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.sec-wrapper.second:before {
    display: none;
}
.sec-wrapper.second {
    padding: 20px !important;
}
.sixcard p {
    font-size: 14px;
}
section.sec-6 {
    background-size: cover;
    margin: 0;
    border-radius: 0;
    border: 0;
}
.chooseus-list h3 {
    font-size: 24px;
}
.chooseus-list p {
    font-size: 14px;
    line-height: 22px;
}
img.number-line {
    display: none;
}
.chooseus-list.marginright {
    margin-left: 0;
}
.sec-heading ul li {
    font-size: 14px;
    line-height: 22px;
}
section.scripting-page {
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    margin: 0;
}
.ebook-ghostwriting-card {
    flex-direction: column;
    align-items: flex-start;
}
.ebook-ghostwriting-card p {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.7;
}
section.sec-9 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
section.youtube-video-sec {
    padding: 40px 0;
}
.whitebg-text {
    padding: 12px 0 22px;
    border-bottom: 1px solid #D9D9D9;
}
.four-card-text h3 {
    font-size: 21px;
}
section.book-sec {
    border: 0;
    border-radius: 0;
    margin: 0;
}
.flexgrid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    border-top: 0;
}
.flexgrid-wrapper .whitebg-text {
    border-right: 0;
    border-left: 0;
}
.threecard span {
    font-size: 18px;
    margin-bottom: 18.52px;
}
.threecard p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 0 21px;
}
.threecard ul li {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
}
.threecard {
    margin-bottom: 12px;
}
.threecard ul li svg {
    flex-shrink: 0;
    max-width: 4%;
}
.terms ul li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
}
.banner-img-inner {
    right: 2vw;
    max-width: 40%;
}
.cat-image {
    position: relative;
    top: 0;
    left: 0;
}
.cat-image:before{
    display: none;
}




}

@media (max-width : 1199px) {

    .banner-content {
        padding: 115px 0 72px;
    }
    span.sub-heading {
        margin-bottom: 0;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 40px;
        line-height: 50px;
        margin-bottom: 0;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 17px;
        line-height: 26px;
    }
    .banner-img {
        text-align: end;
        position: absolute;
        top: 8vw;
        right: -8vw;
        max-width: 60%;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 46px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    section.sec-1 {
        padding: 60px 0;
    }
    .sec-heading h2 span {
        font-size: 26px;
    }
    .cta-wrapper {
        background-size: cover;
    }
    .sec-wrapper .sec-heading h2 {
        font-size: 34px;
        line-height: 38px;
    }
    section.sec-3 {
        background-position: center;
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
    }
    section {
        padding: 2rem 0;
    }
    .book-card {
        flex-direction: column;
        text-align: center;
    }
    section.sec-6 {
        padding: 100px 0;
    }
    .sec6-list ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .sec6-list ul li {
        padding: 12px;
        font-size: 14px;
    }
    .client-detail p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-8 {
        padding: 50px 0;
    }
    .accordion-list li {
        padding: 14.6px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
        max-width: 90%;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    .contact-detail-wrap {
        flex-direction: column;
        gap: 1rem;
    }
    .details {
        padding: 0;
        border-right: 0;
    }
    .sec-heading h6 {
        font-size: 28px;
    }
    .form {
        padding: 16px;
        margin-top: 16px;
    }
    ul.detail-menu li {
        padding: 8px 14px;
        border-left: 0;
    }
    .footer-sec p {
        line-height: 18px;
        font-size: 14px;
    }
    .borderbottom {
        padding: 26px 0 18px;
    }
    ul.f-menu.first:after, ul.f-menu:before{
        display: none;
    }
    .footer-hdng h4 {
        font-size: 18px;
    }
    ul.overview-nav a {
        padding: 16px 6px;
    }
    .categories-wrapper {
        margin-bottom: 14px;
    }
    .sec-4 {
        margin-top: 0;
    }
    
.mmpopup .popup-content {
        padding: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
        line-height: 28px;
    }
    .mmpopup .formpop {
        width: 100%;
        margin-top: 26px;
    }
    section.category-sec {
        padding: 60px 0 60px;
    }
    section.contactus-sec {
        padding: 60px 0 60px;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.faqs-sec {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    h1.banner-heading.innerpage {
        font-size: 36px;
    }
    section.scripting-page {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .five-card h3 {
        text-align: left;
        font-size: 20px;
    }
    .five-card {
        padding: 10px;
        gap: 10px;
    }
    .video-slider .slide-item {
        margin: 30px 0;
        width: auto;
    }
    section.sec-6.author-website {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .book-marketing-cta.cta2 {
        margin-top: 0;
        padding: 60px 0;
    }
    section.sec-1.ghostwriting-sec1 {
        padding: 60px 0;
    }
    .four-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .four-card ul li {
        font-size: 14px;
        line-height: 20px;
    }
    section.book-marketing-sec {
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.sec-6-ebook-publishing {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .sec-2-ebook {
        margin-top: 0;
        padding: 60px 0;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .mainBanner {
        background-position: center;
    }
    
     #bookName {
    font-size: 28px;
    line-height: 30px;
}
.book-info li strong {
    font-size: 14px;
}
.book-info li span {
    font-size: 14px;
}
#bookDesc {
    font-size: 13px;
    line-height: 23px;
}
.book-detail.text-end {
    width: auto;
    padding: 8px;
}


.mainBanner {
    margin: 0;
}
.btn-wrap .theme-btn {
    justify-content: space-between;
    padding: 8px 8px 8px 8px;
}
.btn-wrap .theme-btn.bordered {
    padding: 8px 8px 8px 8px;
}
.sec-2 {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-position: center;
}
ul.sec2-overview-nav a {
    padding: 10px;
    font-size: 14px;
}
.sec-heading h3 {
    font-size: 28px;
    margin-top: 1rem;
}
section.sec-5 {
    margin: 0;
    border-radius: 0;
    padding: 50px 0;
    border: 0;
    background-position: center;
}
section.sec-7 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.client-name span.name {
    font-size: 18px;
}
section.contact-lastsec {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
footer {
    margin: 0;
    border-radius: 0;
}
ul.detail-menu {
    margin-top: 20px;
}
.banner-content-inner h1.banner-heading {
    font-size: 40px;
}
.banner-content-inner {
    padding: 50px 0 40px;
}
section.category-sec {
    padding: 50px 0;
    margin: 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.sec-wrapper.second:before {
    display: none;
}
.sec-wrapper.second {
    padding: 20px !important;
}
.sixcard p {
    font-size: 14px;
}
section.sec-6 {
    background-size: cover;
    margin: 0;
    border-radius: 0;
    border: 0;
}
.chooseus-list h3 {
    font-size: 24px;
}
.chooseus-list p {
    font-size: 14px;
    line-height: 22px;
}
img.number-line {
    display: none;
}
.chooseus-list.marginright {
    margin-left: 0;
}
.sec-heading ul li {
    font-size: 14px;
    line-height: 22px;
}
section.scripting-page {
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    margin: 0;
}
.ebook-ghostwriting-card {
    flex-direction: column;
    align-items: flex-start;
}
.ebook-ghostwriting-card p {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.7;
}
section.sec-9 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
section.youtube-video-sec {
    padding: 40px 0;
}
.whitebg-text {
    padding: 12px 0 22px;
    border-bottom: 1px solid #D9D9D9;
}
.four-card-text h3 {
    font-size: 21px;
}
section.book-sec {
    border: 0;
    border-radius: 0;
    margin: 0;
}
.flexgrid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    border-top: 0;
}
.flexgrid-wrapper .whitebg-text {
    border-right: 0;
    border-left: 0;
}
.threecard span {
    font-size: 18px;
    margin-bottom: 18.52px;
}
.threecard p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 0 21px;
}
.threecard ul li {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
}
.threecard {
    margin-bottom: 12px;
}
.threecard ul li svg {
    flex-shrink: 0;
    max-width: 4%;
}
.terms ul li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
}
.banner-img-inner {
    right: 2vw;
    max-width: 40%;
}
.cat-image {
    position: relative;
    top: 0;
    left: 0;
}
.cat-image:before{
    display: none;
}





}

@media (max-width : 1023px){
    .btn-wrap .theme-btn {
        font-size: 14px;
    }
    .overlap-slider {
        /* width: 180%; */
        width: 100%;
        position: relative;
    }
}

@media (max-width : 992px) {
    .banner-content {
        padding: 100px 0 65px;
    }
    span.sub-heading {
        margin-bottom: 0;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 0;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
    .banner-img {
        text-align: end;
        position: absolute;
        top: 8vw;
        right: -6vw;
        max-width: 55%;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 46px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    section.sec-1 {
        padding: 60px 0;
    }
    .sec-heading h2 span {
        font-size: 26px;
    }
    .cta-wrapper {
        background-size: cover;
    }
    .sec-wrapper .sec-heading h2 {
        font-size: 34px;
        line-height: 38px;
    }
    section.sec-3 {
        background-position: center;
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
    }
    section {
        padding: 2rem 0;
    }
    .book-card {
        flex-direction: column;
        text-align: center;
    }
    section.sec-6 {
        padding: 40px 0;
        background-image: none !important;
    }
    .sec6-list ul {
        grid-template-columns: repeat(3, 1fr);
    }
    .sec6-list ul li {
        padding: 12px;
        font-size: 14px;
    }
    .client-detail p {
        font-size: 14px;
        line-height: 22px;
    }
    section.sec-8 {
        padding: 50px 0;
        background-image: none !important;
    }
    .accordion-list li {
        padding: 14.6px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
        max-width: 90%;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    .contact-detail-wrap {
        flex-direction: column;
        gap: 1rem;
    }
    .details {
        padding: 0;
        border-right: 0;
    }
    .sec-heading h6 {
        font-size: 28px;
    }
    .form {
        padding: 16px;
        margin-top: 16px;
    }
    ul.detail-menu li {
        padding: 8px 14px;
        border-left: 0;
    }
    .footer-sec p {
        line-height: 18px;
        font-size: 14px;
    }
    .borderbottom {
        padding: 26px 0 18px;
    }
    ul.f-menu.first:after, ul.f-menu:before{
        display: none;
    }
    .footer-hdng h4 {
        font-size: 18px;
    }
    ul.overview-nav a {
        padding: 16px 6px;
    }
    .categories-wrapper {
        margin-bottom: 14px;
    }
    .sec-4 {
        margin-top: 0;
    }

   .mmpopup .popup-content {
        padding: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
        line-height: 28px;
    }
    .mmpopup .formpop {
        width: 100%;
        margin-top: 26px;
    }
    section.category-sec {
        padding: 60px 0 60px;
    }
    section.contactus-sec {
        padding: 60px 0 60px;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.faqs-sec {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    h1.banner-heading.innerpage {
        font-size: 36px;
    }
    section.scripting-page {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .five-card h3 {
        text-align: left;
        font-size: 20px;
    }
    .five-card {
        padding: 10px;
        gap: 10px;
    }
    .video-slider .slide-item {
        margin: 30px 0;
        width: auto;
    }
    section.sec-6.author-website {
        padding: 60px 0;
    }
    .book-marketing-cta.cta2 {
        margin-top: 0;
        padding: 60px 0;
    }
    section.sec-1.ghostwriting-sec1 {
        padding: 60px 0;
    }
    .four-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .four-card ul li {
        font-size: 14px;
        line-height: 20px;
    }
    section.book-marketing-sec {
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.sec-6-ebook-publishing {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .sec-2-ebook {
        margin-top: 0;
        padding: 60px 0;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .mainBanner {
        background-position: left;
    }
    
     #bookName {
    font-size: 28px;
    line-height: 30px;
}
.book-info li strong {
    font-size: 14px;
}
.book-info li span {
    font-size: 14px;
}
#bookDesc {
    font-size: 13px;
    line-height: 23px;
}
.book-detail.text-end {
    width: auto;
    padding: 8px;
}


.mainBanner {
    margin: 0;
}
.btn-wrap .theme-btn {
    justify-content: space-between;
    padding: 8px 8px 8px 8px;
}
.btn-wrap .theme-btn.bordered {
    padding: 8px 8px 8px 8px;
}
.sec-2 {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-position: center;
}
ul.sec2-overview-nav a {
    padding: 10px;
    font-size: 14px;
}
.sec-heading h3 {
    font-size: 28px;
    margin-top: 1rem;
}
section.sec-5 {
    margin: 0;
    border-radius: 0;
    padding: 50px 0;
    border: 0;
    background-position: center;
}
section.sec-7 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.client-name span.name {
    font-size: 18px;
}
section.contact-lastsec {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
footer {
    margin: 0;
    border-radius: 0;
}
ul.detail-menu {
    margin-top: 20px;
}
.banner-content-inner h1.banner-heading {
    font-size: 40px;
}
.banner-content-inner {
    padding: 50px 0 40px;
}
section.category-sec {
    padding: 50px 0;
    margin: 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.sec-wrapper.second:before {
    display: none;
}
.sec-wrapper.second {
    padding: 20px !important;
}
.sixcard p {
    font-size: 14px;
}
section.sec-6 {
    background-size: cover;
    margin: 0;
    border-radius: 0;
    border: 0;
}
.chooseus-list h3 {
    font-size: 24px;
}
.chooseus-list p {
    font-size: 14px;
    line-height: 22px;
}
img.number-line {
    display: none;
}
.chooseus-list.marginright {
    margin-left: 0;
}
.sec-heading ul li {
    font-size: 14px;
    line-height: 22px;
}
section.scripting-page {
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    margin: 0;
}
.ebook-ghostwriting-card {
    flex-direction: column;
    align-items: flex-start;
}
.ebook-ghostwriting-card p {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.7;
}
section.sec-9 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
section.youtube-video-sec {
    padding: 40px 0;
}
.whitebg-text {
    padding: 12px 0 22px;
    border-bottom: 1px solid #D9D9D9;
}
.four-card-text h3 {
    font-size: 21px;
}
section.book-sec {
    border: 0;
    border-radius: 0;
    margin: 0;
}
.flexgrid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    border-top: 0;
}
.flexgrid-wrapper .whitebg-text {
    border-right: 0;
    border-left: 0;
}
.threecard span {
    font-size: 18px;
    margin-bottom: 18.52px;
}
.threecard p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 0 21px;
}
.threecard ul li {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
}
.threecard {
    margin-bottom: 12px;
}
.threecard ul li svg {
    flex-shrink: 0;
    max-width: 4%;
}
.terms ul li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
}
.banner-img-inner {
    right: 2vw;
    max-width: 40%;
}
.cat-image {
    position: relative;
    top: 0;
    left: 0;
}
.cat-image:before{
    display: none;
}


}


@media only screen and (min-width : 768px) and (max-width : 991px) {
    
    .banner-content {
        padding: 90px 0 80px;
    }
    span.sub-heading {
        margin-bottom: 0;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 36px;
        line-height: 48px;
        margin-bottom: 0;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 34px;
        line-height: 46px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    section.sec-1 {
        padding: 60px 0;
    }
    .sec1-image {
        display: none;
    }
    .sec-heading h2 span {
        font-size: 26px;
    }
    .cta-wrapper {
        background-size: cover;
        padding: 0;
        background-image: none !important;
    }
    .sec-wrapper {
        clip-path: none !important;
        padding: 0 !important;
    }
    .sec-wrapper .sec-heading h2 {
        font-size: 34px;
        line-height: 38px;
    }
    section.sec-3 {
        background-position: center;
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
    }
    section {
        padding: 2rem 0;
    }
    .book-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .sec6-image {
        display: none;
    }
    section.sec-6 {
        padding: 60px 0;
        background-image: none !important;
    }
    .sec6-list ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .sec6-list ul li {
        padding: 12px;
        font-size: 14px;
    }
    .testi-card{
        flex-direction: column;
    }
    .client-detail p {
        font-size: 14px;
        line-height: 22px;
    }
    .faq-image {
        display: none;
    }
    section.sec-8 {
        padding: 50px 0;
        background-image: none !important;
    }
    .accordion-list li {
        padding: 14.6px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
        max-width: 90%;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    .contact-detail-wrap {
        flex-direction: column;
        gap: 1rem;
    }
    .details {
        padding: 0;
        border-right: 0;
    }
    .sec-heading h6 {
        font-size: 28px;
    }
    .form {
        padding: 16px;
        margin-top: 16px;
    }
    ul.detail-menu li {
        padding: 8px 14px;
        border-left: 0;
    }
    .footer-sec p {
        line-height: 18px;
        font-size: 14px;
    }
    .borderbottom {
        padding: 26px 0 18px;
    }
    ul.f-menu.first:after, ul.f-menu:before{
        display: none;
    }
    .footer-hdng h4 {
        font-size: 18px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 46.437px;
    }
    .input-field1 textarea {
        height: 118.922px;
    }
    ul.overview-nav a {
        padding: 12px 18px;
    }
    .categories-wrapper {
        margin-bottom: 14px;
    }
    .sec-4 {
        margin-top: 0;
    }
    .mmpopup .popup-content {
        padding: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
        line-height: 28px;
    }
    .mmpopup .formpop {
        width: 100%;
        margin-top: 26px;
    }
    section.category-sec {
        padding: 60px 0 60px;
    }
    section.contactus-sec {
        padding: 60px 0 60px;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.faqs-sec {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    h1.banner-heading.innerpage {
        font-size: 28px;
    }
    section.scripting-page {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .five-card h3 {
        text-align: left;
        font-size: 20px;
    }
    .five-card {
        padding: 10px;
        gap: 10px;
    }
    .video-slider .slide-item {
        margin: 30px 0;
        width: auto;
    }
    section.sec-6.author-website {
        padding: 60px 0;
    }
    .book-marketing-cta.cta2 {
        margin-top: 0;
        padding: 60px 0;
    }
    section.sec-1.ghostwriting-sec1 {
        padding: 60px 0;
    }
    .four-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .four-card ul li {
        font-size: 14px;
        line-height: 20px;
    }
    section.book-marketing-sec {
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.sec-6-ebook-publishing {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .sec-2-ebook {
        margin-top: 0;
        padding: 60px 0;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    .mainBanner {
        background-position: left;
    }
    
    #bookName {
    font-size: 28px;
    line-height: 30px;
}
.book-info li strong {
    font-size: 14px;
}
.book-info li span {
    font-size: 14px;
}
#bookDesc {
    font-size: 13px;
    line-height: 23px;
}
.book-detail.text-end {
    width: auto;
    padding: 8px;
}
.details a {
    font-size: 20px;
}


.mainBanner {
    margin: 0;
}
.btn-wrap .theme-btn {
    justify-content: space-between;
}
.sec-2 {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-position: center;
}
ul.sec2-overview-nav a {
    padding: 10px;
    font-size: 14px;
}
.sec-heading h3 {
    font-size: 28px;
    margin-top: 1rem;
}
section.sec-5 {
    margin: 0;
    border-radius: 0;
    padding: 50px 0;
    border: 0;
    background-position: center;
}
section.sec-7 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.client-name span.name {
    font-size: 18px;
}
section.contact-lastsec {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
footer {
    margin: 0;
    border-radius: 0;
}
ul.detail-menu {
    margin-top: 20px;
}
.banner-content-inner h1.banner-heading {
    font-size: 28px;
}
.banner-img-inner {
    display: none;
}
.banner-content-inner {
    padding: 50px 0 40px;
}
section.category-sec {
    padding: 50px 0;
    margin: 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.cat-image {
    display: none;
}
.sec-wrapper.second:before {
    display: none;
}
.sec-wrapper.second {
    padding: 20px !important;
}
.sixcard p {
    font-size: 14px;
}
.sixcard-image {
    display: none;
}
section.sec-6 {
    background-size: cover;
    margin: 0;
    border-radius: 0;
    border: 0;
}
.chooseus-list h3 {
    font-size: 24px;
}
.chooseus-list p {
    font-size: 14px;
    line-height: 22px;
}
img.number-line {
    display: none;
}
.chooseus-list.marginright {
    margin-left: 0;
}
.chooseimage {
    display: none;
}
.sec-heading ul li {
    font-size: 14px;
    line-height: 22px;
}
section.scripting-page {
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    margin: 0;
}
.ebook-ghostwriting-card {
    flex-direction: column;
    align-items: flex-start;
}
.ebook-ghostwriting-card p {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.7;
}
section.sec-9 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
section.youtube-video-sec {
    padding: 40px 0;
}
.whitebg-text {
    padding: 12px 0 22px;
    border-bottom: 1px solid #D9D9D9;
}
.four-card-text h3 {
    font-size: 21px;
}
section.book-sec {
    border: 0;
    border-radius: 0;
    margin: 0;
}
.flexgrid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    border-top: 0;
}
.flexgrid-wrapper .whitebg-text {
    border-right: 0;
    border-left: 0;
}
.threecard span {
    font-size: 18px;
    margin-bottom: 18.52px;
}
.threecard p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 0 21px;
}
.threecard ul li {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
}
.threecard {
    margin-bottom: 12px;
}
.threecard ul li svg {
    flex-shrink: 0;
    max-width: 4%;
}
.terms ul li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
}
.image1 {
    display: none;
}





}


@media only screen and (min-width : 280px) and (max-width : 767px) {
    .banner-content {
        padding: 70px 0 40px;
    }
    span.sub-heading {
        margin-bottom: 0;
        font-size: 14px;
    }
    h1.banner-heading {
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 0;
    }
    p.banner-text {
        max-width: 100%;
        font-size: 14px;
        line-height: 20px;
    }
    .btn-wrap {
        flex-direction: column;
        margin-bottom: 2rem;
    }
    .btn-wrap a {
        width: 100%;
        text-align: center;
    }
    .banner-img {
        display: none;
    }
    .sec-heading h2 {
        font-size: 26px;
        line-height: 34px;
    }
    .sec-heading p {
        font-size: 14px;
        line-height: 22px;
    }
    .sec-heading .sub-heading {
        margin-bottom: .5rem;
    }
    .copyright {
        flex-direction: column;
        gap: 12px;
    }
    section.sec-1 {
        padding: 60px 0;
    }
    .sec1-image {
        display: none;
    }
    .sec-heading h2 span {
        font-size: 26px;
    }
    .cta-wrapper {
        background-size: cover;
        padding: 0;
        background-image: none !important;
    }
    .sec-wrapper {
        clip-path: none !important;
        padding: 0 !important;
    }
    .sec-wrapper .sec-heading h2 {
        font-size: 24px;
        line-height: 24px;
    }
    section.sec-3 {
        background-position: center;
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
    }
    section {
        padding: 2rem 0;
    }
    .book-card {
        flex-direction: column;
        align-items: flex-start;
    }
    .sec6-image {
        display: none;
    }
    .sec6-list ul {
        grid-template-columns: repeat(1, 1fr);
    }
    .sec6-list ul li {
        padding: 12px;
        font-size: 14px;
    }
    .testi-card{
        flex-direction: column;
    }
    .client-detail p {
        font-size: 14px;
        line-height: 22px;
    }
    .faq-image {
        display: none;
    }
    section.sec-8 {
        padding: 50px 0;
        background-image: none !important;
    }
    .accordion-list li {
        padding: 14.6px;
    }
    .accordion-list li h3 {
        font-size: 18px;
        line-height: 22px;
        max-width: 90%;
    }
    .answer p {
        font-size: 14px;
        line-height: 22px;
    }
    .contact-detail-wrap {
        flex-direction: column;
        gap: 2rem;
    }
    .details {
        padding: 0;
        border-right: 0;
    }
    .sec-heading h6 {
        font-size: 28px;
    }
    .form {
        padding: 16px;
        margin-top: 16px;
    }
    ul.detail-menu li {
        padding: 8px 14px;
        border-left: 0;
    }
    .footer-sec p {
        line-height: 18px;
        font-size: 14px;
    }
    .borderbottom {
        padding: 26px 0 18px;
    }
    ul.f-menu.first:after, ul.f-menu:before{
        display: none;
    }
    .footer-hdng h4 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    .input-field1 input, .input-field1 textarea {
        height: 46.437px;
    }
    .input-field1 textarea {
        height: 118.922px;
    }
    ul.overview-nav a {
        padding: 12px 8px;
        font-size: 12px;
    }
    .categories-wrapper {
        margin-bottom: 14px;
        border-radius: 10px;
    }
    .sec-4 {
        margin-top: 0;
    }

    .mmpopup .popup-content {
        padding: 20px;
    }
    .mmpopup .centercont h3 span {
        font-size: 24px;
        line-height: 28px;
    }
    .mmpopup .formpop {
        width: 100%;
        margin-top: 26px;
    }
    section.category-sec {
        padding: 60px 0 60px;
    }
    section.contactus-sec {
        padding: 60px 0 60px;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.faqs-sec {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    h1.banner-heading.innerpage {
        font-size: 28px;
    }
    .five-card h3 {
        text-align: left;
        font-size: 20px;
    }
    .five-card {
        padding: 10px;
        gap: 10px;
    }
    .video-slider .slide-item {
        margin: 30px 0;
        width: auto;
    }
    section.sec-6.author-website {
        padding: 60px 0;
    }
    .book-marketing-cta.cta2 {
        margin-top: 0;
        padding: 60px 0;
    }
    section.sec-1.ghostwriting-sec1 {
        padding: 60px 0;
    }
    .four-card p {
        font-size: 14px;
        line-height: 22px;
    }
    .four-card ul li {
        font-size: 14px;
        line-height: 20px;
    }
    section.book-marketing-sec {
        padding: 60px 0;
        margin-top: 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    section.sec-6-ebook-publishing {
        padding: 60px 0;
        background-image: none !important;
        background-color: rgb(255 233 181 / 46%);
    }
    .sec-2-ebook {
        margin-top: 0;
        padding: 60px 0;
    }
    .terms p {
        font-size: 14px;
        line-height: 22px;
    }
    #bookName {
        font-size: 28px;
        line-height: 30px;
    }
    .book-info li strong {
        font-size: 14px;
    }
    .book-info li span {
        font-size: 14px;
    }
    #bookDesc {
        font-size: 13px;
        line-height: 23px;
    }
    .book-detail.text-end {
        width: auto;
        padding: 8px;
    }
    .details a {
        font-size: 20px;
    }
.mainBanner {
    margin: 0;
}
.btn-wrap .theme-btn {
    justify-content: space-between;
}
.sec-2 {
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background-position: center;
}
ul.sec2-overview-nav a {
    padding: 10px;
    font-size: 14px;
}
.sec-heading h3 {
    font-size: 28px;
    margin-top: 1rem;
}
section.sec-5 {
    margin: 0;
    border-radius: 0;
    padding: 50px 0;
    border: 0;
    background-position: center;
}
section.sec-7 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.client-name span.name {
    font-size: 18px;
}
section.contact-lastsec {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
footer {
    margin: 0;
    border-radius: 0;
}
ul.detail-menu {
    margin-top: 20px;
}
.banner-content-inner h1.banner-heading {
    font-size: 28px;
}
.banner-img-inner {
    display: none;
}
.banner-content-inner {
    padding: 50px 0 40px;
}
section.category-sec {
    padding: 50px 0;
    margin: 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
.cat-image {
    display: none;
}
.sec-wrapper.second:before {
    display: none;
}
.sec-wrapper.second {
    padding: 20px !important;
}
.sixcard p {
    font-size: 14px;
}
.sixcard-image {
    display: none;
}
section.sec-6 {
    background-size: cover;
    margin: 0;
    border-radius: 0;
    border: 0;
}
.chooseus-list h3 {
    font-size: 24px;
}
.chooseus-list p {
    font-size: 14px;
    line-height: 22px;
}
img.number-line {
    display: none;
}
.chooseus-list.marginright {
    margin-left: 0;
}
.chooseimage {
    display: none;
}
.sec-heading ul li {
    font-size: 14px;
    line-height: 22px;
}
section.scripting-page {
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    margin: 0;
}
.ebook-ghostwriting-card {
    flex-direction: column;
    align-items: flex-start;
}
.ebook-ghostwriting-card p {
    font-size: 14px;
    line-height: 22px;
    opacity: 0.7;
}
section.sec-9 {
    margin: 0;
    padding: 50px 0;
    border-radius: 0;
    border: 0;
    background-position: center;
}
section.youtube-video-sec {
    padding: 40px 0;
}
.whitebg-text {
    padding: 12px 0 22px;
    border-bottom: 1px solid #D9D9D9;
}
.four-card-text h3 {
    font-size: 21px;
}
section.book-sec {
    border: 0;
    border-radius: 0;
    margin: 0;
}
.flexgrid-wrapper {
    grid-template-columns: repeat(1, 1fr);
    border-top: 0;
}
.flexgrid-wrapper .whitebg-text {
    border-right: 0;
    border-left: 0;
}
.threecard span {
    font-size: 18px;
    margin-bottom: 18.52px;
}
.threecard p {
    font-size: 14px;
    line-height: 22px;
    padding: 0 0 21px;
}
.threecard ul li {
    font-size: 14px;
    line-height: 22px;
    padding: 10px 0;
}
.threecard {
    margin-bottom: 12px;
}
.threecard ul li svg {
    flex-shrink: 0;
    max-width: 4%;
}
.terms ul li {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 22px;
}
.image1 {
    display: none;
}


}



.logo img {
    height: 55px;
}

.leadforms-embd-form {
    position: relative !important;
    z-index: 0  !important;
}









.banner-content2 p {
    margin: 1rem 0;
    opacity: 1;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

.pckg {
    border-radius: 10px;
    height: 100%;
    border: 1px solid #dadef2;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.upper .tittle {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 5px;
}

h3.title {
    font-size: 32px;
    line-height: 30px;
    margin-bottom: 5px;
    font-weight: 900;
}

span.amount {
    font-weight: 500;
    font-size: 44px;
    line-height: 50px;
    color: #000000;
}

.price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0 1.5rem;
}

span.cut-price {
    font-weight: 500;
    font-size: 20px;
    color: #6e6e6e;
    text-decoration: line-through;
}

span.uspto {
    font-weight: 500;
    font-size: 16px;
    background-color: var(--primary);
    padding: 5px 10px;
    border-radius: 100px;
    color: #fff;
}

.bottom h4 {
    font-size: 19px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 12px;
    font-family: 'Inter';
}

.pckg .bottom ul li {
    line-height: 1.4;
    color: #444444;
    position: relative;
    display: flex;
    font-size: 15px;
    padding-bottom: 0.5rem;
}

ul.pckg-list {
    height: 200px;
    overflow-y: auto;
}

.pckg .bottom ul li::before {
  content: "";
  font-family: var(--icon);
  content: "\f00c";
  font-weight: 800;
  color: #3d55cc;
  margin-right: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5fffe;
  border-radius: 100%;
  flex-shrink: 0;
}