@import url("https://fonts.googleapis.com/css2?family=Titillium+Web:wght@300;400;600;700&amp;display=swap");

@font-face {
  font-family: "SamSharpSans-Bold";
  src: url("../fonts/SamSharpSans-Bold.otf");
}

@font-face {
  font-family: "SamSharpSans-Medium";
  src: url("../fonts/SamSharpSans-Medium.otf");
}

@font-face {
  font-family: "SamSharpSans-Regular";
  src: url("../fonts/SamSharpSans-Regular.otf");
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-transform: capitalize;
  font-family: "SamSharpSans-Bold";
}

p,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: "SamSharpSans-Medium";
}

input,
textarea {
  margin: 0;
  padding: 0;
}

a,
button {
  margin: 0;
  padding: 0;
}

a:hover {
  color: inherit;
}

body {
  overflow-x: hidden;
  background: #fff;
  font-family: "SamSharpSans-Medium";
}

main {
  overflow: hidden;
}

a,
button,
input,
textarea,
textarea:focus {
  font-family: "SamSharpSans-Medium";
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.form-group input::-webkit-outer-spin-button,
.form-group input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
.form-group input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.container-fluid {
  padding: 0 100px;
}

/*Website Custom Style Css For Single Items Start Here*/

/*Heading & Para Style Css*/
.heading-one {
  font-size: 80px;
  line-height: 88px;
}

.heading-two {
  font-size: 60px;
  line-height: 68px;
}

.heading-three {
  font-size: 50px;
  line-height: 58px;
}

.heading-four {
  font-size: 44px;
  line-height: 52px;
}

.heading-five {
  font-size: 32px;
  line-height: 40px;
}

.heading-six {
  font-size: 22px;
  line-height: 30px;
}

.heading-seven {
  font-size: 18px;
  line-height: 26px;
}

p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 10px;
}

li {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 5px;
}

/*Heading & Para Style Css*/

/*Buttons Style Css*/
.website-main-buttons {
  margin: 30px 0 0;
  display: flex;
  align-items: center;
}

.website-main-buttons a.read-more-btn,
.website-main-buttons button.popup-btn,
.website-main-buttons a.call-btn,
.website-main-buttons button.chat-btn {
  font-size: 18px;
  width: 200px;
  height: 60px;
  border-radius: 50px;
  border: none;
  padding: 5px 5px;
  margin: 0 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  transition: all 0.25s ease-out;
  position: relative;
}

.website-main-buttons a.read-more-btn:hover,
.website-main-buttons button.popup-btn:hover,
.website-main-buttons a.call-btn:hover,
.website-main-buttons button.chat-btn:hover {
  transform: scale(1.1);
}

/*Buttons Style Css*/

/*Website Custom Style Css For Single Items End Here*/

/*Header Css Start Here*/
header {
  background: transparent;
  width: 100%;
  position: absolute;
  top: 0;
  z-index: 1000;
  transition: all 0.3s ease-in-out;
}

header.sticky {
  background: #fff;
  box-shadow: 0 10px 40px -25px #1c1c1c;
}

header nav.navbar {
  padding: 30px 0 20px;
  align-items: center;
  position: relative;
}

header nav.navbar .navbar-brand {
  width: 100px;
  padding: 0;
  margin: 0;
}

header .navbar-toggler {
  background-color: #fff;
}

header .navbar-toggler:focus {
  box-shadow: none;
}

header .navbar-collapse .navbar-main-nav {
  display: flex;
  align-items: center;
  width: 100%;
}

header .navbar-main-nav .navbar-main-center {
  width: 100%;
}

header .navbar-main-center ul.navbar-nav {
  justify-content: center;
  margin: 0 10px 0;
}

header .navbar-main-center ul.navbar-nav li.nav-item {
  margin: 0 20px;
}

header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
  color: #000;
  font-size: 16px;
  line-height: 22px;
  padding: 15px 0px;
  text-transform: capitalize;
  position: relative;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #008FF6;
  height: 3px;
  z-index: -1;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}

header .navbar-main-center ul.navbar-nav li.nav-item:hover a.nav-link {
  font-weight: 600;
}

header .navbar-main-center ul.navbar-nav li.nav-item:hover a.nav-link::before {
  opacity: 1;
  visibility: visible;
}

header ul.navbar-nav .nav-item.dropdown .dropdown-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header ul.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
  content: "";
  border-width: 5px 5px 0px 5px;
  border-color: #ffff transparent transparent transparent;
  border-style: solid;
  margin: 0 0 0 5px;
  transition: all 0.3s ease-in-out;
  opacity: 1;
  display: block;
}

header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu {
  position: absolute;
  background: #e5e5e5;
  top: 52px;
  left: 0;
  border: none;
  border-radius: 10px;
  box-shadow: 0 15px 45px -20px #212121;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 9;
  -webkit-transform: scale(0.2);
  -ms-transform: scale(0.2);
  transform: scale(0.2);
  -webkit-transition: all ease 0.3s;
  -moz-transition: all ease 0.3s;
  transition: all ease 0.3s;
  display: block;
}

header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  visibility: visible;
}

header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li {
  padding: 0;
  margin: 0;
}

header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a {
  background: #000;
  color: #008ff6b3;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 10px;
  margin: 0;
  border-bottom: 1px solid #008ff66e;
  text-transform: capitalize;
  transition: all 0.3s ease-in-out;
}

header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li:last-child a {
  border-bottom: none;
}

header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a:hover {
  color: #008FF6;
}

header .navbar-main-nav .navbar-buttons a.call-btn {
  background: #008FF6;
  color: #fff !important;
  font-size: 18px;
  width: 200px;
  height: 60px;
  border-radius: 50px;
  border: none;
  padding: 5px 5px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  transition: all 0.25s ease-out;
  position: relative;
}

header .navbar-main-nav .navbar-buttons a.call-btn:hover {
  background: #000;
  transform: scale(1.1);
}

/*Header Css End Here*/

/**************************************************************************
 --------------------- Home Page Folds Css Start Here ---------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Banner Main Section Css Start Here*/
section.banner-main-sec {
  background-image: url(../images/bg-img/banner-main-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  padding: 220px 0 150px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.banner-main-sec .banner-main-content {
  text-align: center;
}

.banner-main-content span.short-text {
  font-family: "SamSharpSans-Bold";
  color: #192233;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.banner-main-content span.short-text::before {
  content: "";
  width: 40px;
  background: #008FF6;
  height: 6px;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-right: 5px;
}

.banner-main-content .heading-one {
  color: #192233;
  margin: 0 0 20px;
}

.banner-main-content .heading-one span {
  font-size: 60px;
  line-height: 68px;
  display: block;
}

.banner-main-content .heading-one strong {
  color: #008FF6;
}

.banner-main-content p {
  color: #000000;
}

.banner-main-content .website-main-buttons {
  justify-content: center;
}

.banner-main-content .website-main-buttons button.popup-btn {
  background: #000;
  color: #fff;
}

.banner-main-content .website-main-buttons button.popup-btn:hover {
  background: #008ff66e;
  color: #000;
}

.banner-main-content .website-main-buttons button.chat-btn {
  background: #008FF6;
  color: #fff;
}

.banner-main-content .website-main-buttons button.chat-btn:hover {
  background: #008ff66e;
  color: #000;
}

/*Banner Main Section Css End Here*/

/*Banner Down Brands Section Css Start Here*/
section.bandown-brands-wrap {
  background: #000000;
  position: relative;
  padding: 30px 0;
}

.bandown-brands-wrap .bandown-brands-inner {}

.bandown-brands-inner .bandown-brands-item {}

.bandown-brands-item .slick-arrow {
  display: none !important;
}

.bandown-brands-item .brands-item-img {
  margin: 0 10px;
}

.brands-item-img img {
  height: 50px;
  object-fit: scale-down;
  margin: 0 auto;
  filter: invert(1) brightness(1);
}

/*Banner Down Brands Section Css End Here*/

/* Target Audience Section CSS Start Here */
section.target-audience-wrap-main {
  padding: 75px 0;
}

.target-audience-wrap-main .target-audience-head-wrap {
  text-align: center;
}

.target-audience-wrap-main .target-audience-head-wrap .short-text {
  font-family: "SamSharpSans-Bold";
  color: #2b2b2b;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  position: relative;
}

.target-audience-wrap-main .target-audience-head-wrap .short-text::before {
  width: 50px;
  background: #008FF6;
  height: 5px;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-right: 5px;
  content: "";
}

.target-audience-wrap-main .target-audience-head-wrap .heading-four {
  color: black;
}

.target-audience-wrap-main .target-audience-head-wrap p {
  color: #7e7e7e;
}

.target-audience-wrap-main .target-audience-main-book {
  margin-top: 50px;
}

.target-audience-main-book .target-audience-books-inner {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.target-audience-main-book .target-audience-books-inner .target-audience-books-img {
  width: 100%;
}

.target-audience-books-inner .target-audience-books-img img {
  width: 100%;
  height: 175px;
  object-fit: contain;
}

.target-audience-books-inner .target-audience-books-content {}

.target-audience-books-inner .target-audience-books-content .heading-five {
  font-size: 18px;
  line-height: 25px;
  color: black;
}

.target-audience-books-inner .target-audience-books-content p {
  color: #757575;
  font-size: 14px;
  line-height: 21px;
}

.target-audience-wrap-main .target-audience-main-book .website-main-buttons {
  justify-content: center;
}

.target-audience-wrap-main .target-audience-main-book .website-main-buttons button.popup-btn {
  background: #000;
  color: white;
}

.target-audience-wrap-main .target-audience-main-book .website-main-buttons button.popup-btn:hover {
  background: #008ff66e;
  color: #000;
}

.target-audience-wrap-main .target-audience-main-book .website-main-buttons button.chat-btn {
  background: #008FF6;
  color: #fff;
}

.target-audience-wrap-main .target-audience-main-book .website-main-buttons button.chat-btn:hover {
  background: #008ff66e;
  color: #000;
}

/* Target Audience Section CSS End Here */

/*Process Section Css Start Here*/
section.process-sec-wrap {
  padding: 50px 0;
  background: #0d0d0d;
}

.process-sec-wrap .process-sec-head {
  text-align: center;
  margin: 0 0 50px;
}

.process-sec-head .heading-three {
  color: #fff;
  margin: 0 0 20px;
}

.process-sec-head p {
  color: #fff;
}

.process-sec-wrap .process-sec-inner {
  display: flex;
  gap: 32px;
  justify-content: center;
  position: relative;
}

.process-sec-wrap .process-sec-inner::before {
  content: "";
  background: #008FF6;
  position: absolute;
  width: 100%;
  height: 15px;
  top: 131px;
  left: 0;
  right: 0;
  border-radius: 10px;
}

.process-sec-inner .process-inner-box {
  text-align: center;
}

.process-inner-box img {
  margin: 0 0 20px;
  width: 105px;
  height: 105px;
  object-fit: contain;
}

.process-inner-box .round-div {
  width: 25px;
  height: 25px;
  margin: 0 auto;
  background: #008FF6;
  border-radius: 50px;
  border: 3px solid white;
  position: relative;
  z-index: 1;
}

.process-inner-box span {
  color: white;
  font-size: 77px;
  line-height: 116px;
  font-family: "SamSharpSans-Bold";
}

.process-inner-box .heading-six {
  color: white;
  font-family: "SamSharpSans-Medium";
}

.process-inner-box p {
  color: #6d6d6d;
}

/*Process Section Css End Here*/

/*Unlock Story Section Css Start Here*/
section.unlock-story-wrap {
  padding: 50px 0;
}

.unlock-story-wrap .unlock-story-head {
  text-align: center;
  margin: 0 0 30px;
}

.unlock-story-head span.short-text {
  font-family: "SamSharpSans-Bold";
  color: #192233;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.unlock-story-head span.short-text::before {
  content: "";
  width: 50px;
  background: #008FF6;
  height: 6px;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-right: 5px;
}

.unlock-story-head .heading-three {
  color: #0d042e;
  margin: 0 0 15px;
}

.unlock-story-head p {
  color: #a7a7a7;
}

.unlock-story-wrap .unlock-story-inner {
  padding: 30px 0;
}

.unlock-story-content .heading-four {
  color: #0d042e;
  margin: 0 0 20px;
}

.unlock-story-content p {
  color: #a7a7a7;
}

.unlock-story-content .website-main-buttons button.popup-btn {
  background: #000;
  color: #fff;
}

.unlock-story-content .website-main-buttons button.popup-btn:hover {
  background: #008ff66e;
  color: #000;
}

.unlock-story-content .website-main-buttons button.chat-btn {
  background: #008FF6;
  color: #fff;
}

.unlock-story-content .website-main-buttons button.chat-btn:hover {
  background: #008ff66e;
  color: #000;
}

/*Unlock Story Section Css End Here*/

/*Why Choose section Css Start Here*/
section.why-choose-wrap {
  background: #008ff66e;
  padding: 50px 0;
}

.why-choose-wrap .why-choose-inner {}

.why-choose-inner .why-choose-img {
  text-align: center;
}

.why-choose-img img {}

.why-choose-inner .why-choose-content {}

.why-choose-content span.short-text {
  font-family: "SamSharpSans-Bold";
  color: #192233;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.why-choose-content span.short-text::before {
  content: "";
  width: 50px;
  background: #008FF6;
  height: 6px;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-right: 5px;
}

.why-choose-content .heading-three {
  color: #0d042e;
  margin: 0 0 20px;
}

.why-choose-content p {
  color: #161616;
}

.why-choose-content ul {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
}

.why-choose-content ul li {
  color: #0d042e;
  width: 45%;
  margin: 0 5px 5px;
}

.why-choose-content ul li img {
  margin: 0 5px 0 0;
}

.why-choose-content .website-main-buttons button.popup-btn {
  background: #000;
  color: #fff;
}

.why-choose-content .website-main-buttons button.popup-btn:hover {
  background: #008ff66e;
  color: #000;
}

.why-choose-content .website-main-buttons button.chat-btn {
  background: #008FF6;
  color: #fff;
}

.why-choose-content .website-main-buttons button.chat-btn:hover {
  background: #008ff66e;
  color: #000;
}

/*Why Choose section Css End Here*/

/*New Process Section Css Start Here*/
section.new-process-wrap {
    background-image: linear-gradient(90deg, #008ff66e 0%, #008ff6 100%);
    padding: 50px 0;
}

.new-process-wrap .new-process-head {
  margin: 0 0 30px;
  text-align: center;
}

.new-process-head .heading-three {
  color: #000000;
  margin: 0 0 10px;
}

.new-process-head p {
  color: #161616;
}

.new-process-wrap .new-process-inner {}

.new-process-inner .new-process-box {
  background: #f6f6f6;
  padding: 20px 20px;
  margin: 0 0 20px;
}

.new-process-box .new-process-box-img {
  margin: 0 0 20px;
  text-align: center;
}

.new-process-box-img img {
  width: 130px;
  height: 130px;
  object-fit: contain;
}

.new-process-box .new-process-box-content {
  padding: 0 5px 0;
  min-height: 270px;
  max-height: 270px;
  overflow-y: auto;
  text-align: center;
}

.new-process-box-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0.0);
  border-radius: 0px;
}

.new-process-box-content::-webkit-scrollbar {
  width: 3px;
  background: #b2b2b2;
  border-radius: 0px;
}

.new-process-box-content::-webkit-scrollbar-thumb {
  background-color: #000;
  border-radius: 0px;
}

.new-process-box-content .heading-six {
  color: #0d042e;
  height: 65px;
  margin: 0 0 10px;

}

.new-process-box-content p {
  color: #161616;
}

/*New Process Section Css End Here*/

/*Counter Satisfy Section Css Start Here*/
section.counter-satisfy-wrap {
  background: #000;
  padding: 30px 0;
  margin: 0;
}

.counter-satisfy-wrap .counter-satisfy-inner {
  display: flex;
  justify-content: space-between;
}

.counter-satisfy-inner .counter-satisfy-box {
  text-align: center;
  margin: 0 10px;
}

.counter-satisfy-box .counter-box-head .heading-two {
  color: #008FF6;
  font-weight: 700;
  margin: 0 0 10px;
}

.counter-satisfy-box p {
  color: #fff;
  text-transform: capitalize;
  margin: 0;
}

/*Counter Satisfy Section Css End Here*/

/*Main CTA Section Css Start Here*/
section.cta-main-wrap {
  background-image: url(../images/bg-img/main-cta-bg-new.png);
  /*background-image: url(../images/article-publishing-banner-image.png);*/
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 100% 100%;
  padding: 100px 0 150px;
  position: relative;
  z-index: 1;
}

section.cta-main-wrap::before {
  content: '';
  background: black;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.7;
  z-index: -1;
}

.cta-main-wrap .cta-main-content {
  text-align: center;
}

.cta-main-content .heading-four {
  color: #fff;
  margin: 0 0 20px;
}

.cta-main-content p {
  color: #fff;
}

.cta-main-content .website-main-buttons {
  justify-content: center;
}

.cta-main-content .website-main-buttons button.popup-btn {
  background: #008ff66e;
  color: #000;
}

.cta-main-content .website-main-buttons button.popup-btn:hover {
  background: #0d042e;
  color: #fff;
}

.cta-main-content .website-main-buttons button.chat-btn {
  background: #008FF6;
  color: #fff;
}

.cta-main-content .website-main-buttons button.chat-btn:hover {
  background: #008ff66e;
  color: #000;
}

/*Main CTA Section Css End Here*/

/*Testimonials Section Css Start Here*/
section.testi-main-wrap {
  padding: 50px 0;
}

.testi-main-wrap .testi-main-head {
  text-align: center;
  margin: 0 0 50px;
}

.testi-main-head .heading-three {
  color: #000;
  margin: 0 0 20px;
}

.testi-main-head p {
  color: #a7a7a7;
}

.testi-main-head .banner-brands {
  margin: 20px 0;
}

.testi-main-head .banner-brands span.short-text {
  font-family: "SamSharpSans-Bold";
  color: #192233;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
}

.testi-main-head .banner-brands span.short-text::before {
  content: "";
  width: 50px;
  background: #008FF6;
  height: 6px;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-right: 5px;
}

.testi-main-head .banner-brands .banner-brands-items {
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-main-head .banner-brands .banner-brands-items img {
  width: 120px;
  height: 40px;
  object-fit: scale-down;
  margin: 0 20px 0;
  filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(1218%) hue-rotate(187deg) brightness(100%) contrast(102%);
}

.testimonial-box-slider .slick-arrow {
  position: absolute;
  top: inherit;
  bottom: -5%;
  background: none;
  border: none;
  font-size: 0;
  z-index: 9;
}

.testimonial-box-slider .slick-arrow::before {
  background: #008FF6;
  border: 2px solid #008FF6;
}

.testimonial-box-slider .slick-prev {
  left: 46%;
}

.testimonial-box-slider .slick-prev::before {
  content: "\f060";
}

.testimonial-box-slider .slick-next {
  right: 46%;
}

.testimonial-box-slider .slick-next::before {
  content: "\f061";
}

.testimonial-box-slider .slick-prev::before,
.testimonial-box-slider .slick-next::before {
  font-family: "Font Awesome 6 Pro";
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  border-radius: 100%;
  display: block;
  opacity: 1;
}

.testimonial-box-slider .testi-main-box.slick-active.slick-center {
  background: #161616;
  border: 1px solid #161616;
  transform: translateY(-50px);
  opacity: 1;
}

.testi-main-inner .testi-main-box {
  background: #d6d6d6;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  text-align: center;
  padding: 0px 20px 20px 20px;
  margin: 100px 20px 50px;
  opacity: 0.3;
  transition: all 0.3s ease-in-out;
}

.testi-main-box .testi-box-img {
  margin: 0px 0 -20px;
  position: relative;
  top: -40px;
}

.testi-box-img img {
  width: 75px;
  height: 75px;
  border: 3px solid #0a7c7c;
  border-radius: 100%;
  margin: 0 auto;
}

.testi-main-box .testi-box-content {
  padding: 0 10px 10px;
  min-height: 230px;
  max-height: 230px;
  overflow-y: auto;
}

.testi-box-content::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0px 0px rgba(0, 0, 0, 0);
  border-radius: 0px;
}

.testi-box-content::-webkit-scrollbar {
  width: 3px;
  background: #b2b2b2;
  border-radius: 0px;
}

.testi-box-content::-webkit-scrollbar-thumb {
  background-color: #008FF6;
  border-radius: 0px;
}

.testi-box-content .heading-five {
  color: #fff;
  margin: 0 0 20px;
}

.testi-box-content p {
  color: #fff;
}

.testi-main-box .testi-box-down .rating-star-icons {
  margin: 10px 0;
  display: flex;
  justify-content: center;
  gap: 3px;
}

.testi-main-box .testi-box-down .rating-star-icons img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(91%) sepia(47%) saturate(6035%) hue-rotate(340deg) brightness(91%) contrast(92%);
}

.testi-main-box .testi-box-down .heading-six {
  color: #008FF6;
  margin: 0 0 10px;
}

/*Testimonials Section Css End Here*/

/*FAQS Section Css Start Here*/
section.faqs-sec-wrap {
  padding: 50px 0;
}

.faqs-sec-wrap .faqs-sec-head {
  text-align: center;
  margin: 0 0 30px;
}

.faqs-sec-head .heading-three {
  color: #000;
  margin: 0 0 20px;
}

.faqs-sec-head p {
  color: #a7a7a7;
}

.faqs-sec-item .accordion .accordion-item {
  margin: 0 0 10px;
  border-radius: 0px;
  background: transparent;
  border: none;
}

.faqs-sec-item .accordion-item .accordion-header button.accordion-button {
  background: transparent;
  color: #000;
  font-size: 20px;
  line-height: 28px;
  box-shadow: none;
  padding: 20px 10px;
  display: flex;
  align-items: center;
  margin: 0;
  border-bottom: 2px solid #c7c5c5;
}

.faqs-sec-item .accordion-item .accordion-header button.accordion-button.collapsed {
  background: transparent;
}

.faqs-sec-item .accordion-item .accordion-header .accordion-button::after {
  content: "\2b";
  font-family: "Font Awesome 6 Pro";
  background-image: none;
  background: transparent;
  color: #008FF6;
  font-size: 18px;
  font-weight: 600;
  width: 25px;
  height: 25px;
  line-height: 25px;
  border-radius: 100%;
  text-align: center;
  transform: rotate(-90deg);
  transition: all 0.3s ease-in-out;
}

.faqs-sec-item .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  font-family: "Font Awesome 6 Pro";
  font-size: 18px;
  transform: rotate(0deg);
}

.faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
  background: #fff;
  color: #a7a7a7;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  padding: 20px 10px;
}

/*FAQS Section Css End Here*/

/*Main Contact Form Section Css Start Here*/
section.main-contact-form {
  background: #f6f6f6;
  padding: 50px 0px;
}

.main-contact-form .contact-form-side {
  width: 90%;
}

.contact-form-side .heading-four {
  color: #000;
  margin: 0 0 20px;
}

.contact-form-side span.short-text {
  font-family: "SamSharpSans-Bold";
  color: #192233;
  font-size: 20px;
  line-height: 26px;
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  text-transform: uppercase;
}

.contact-form-side p {
  color: black;
}

.contact-form-side p.captcha_validation {
  color: #FF0000;
}



.contact-form-side .form-group {
  margin: 0 0 10px;
}

.contact-form-side .form-group input {
  background: transparent;
  font-size: 16px;
  color: #000;
  padding: 10px 20px;
  width: 100%;
  height: 55px;
  border: 1px solid #a7a7a7;
  outline: none;
  border-radius: 0;
}

.contact-form-side .form-group input::placeholder {
  color: #a7a7a7;
}

.contact-form-side .form-group textarea {
  background: transparent;
  font-size: 16px;
  color: #000;
  border: 1px solid #a7a7a7;
  width: 100%;
  height: 100px;
  padding: 20px 20px;
  border-radius: 0px;
  outline: none;
  box-shadow: none;
  resize: none;
}

.contact-form-side .form-group textarea::placeholder {
  color: #a7a7a7;
}

.contact-form-side .form-check {
  padding: 0;
  margin: 20px 0;
  display: flex;
  align-items: center;
}

.contact-form-side .form-check .form-check-input {
  background-color: transparent;
  width: 20px;
  height: 20px;
  border: 1px solid #023681;
  border-radius: 3px;
  outline: none;
  box-shadow: none;
  margin: 0 10px 0 0;
  cursor: pointer;
}

.contact-form-side .form-check .form-check-input:checked[type="checkbox"] {
  background-color: #023681;
}

.contact-form-side .form-check .form-check-label {
  color: #008FF6;
  font-size: 18px;
  line-height: 24px;
  cursor: pointer;
}

.contact-form-side .form-group button.submit-btn {
  background: #008FF6;
  color: #fff;
  font-size: 18px;
  border: none;
  width: 200px;
  height: 60px;
  border-radius: 50px;
  padding: 5px 5px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  transition: all 0.25s ease-out;
  position: relative;
}

.contact-form-side .form-group button.submit-btn:hover {
  background: #000;
}

.main-contact-form .main-contact-img {
  text-align: center;
}

/*Main Contact Form Section Css End Here*/

/**************************************************************************
 --------------------- Home Page Folds Css End Here -----------------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 --------------------- Ghostwriting Page Folds Css Start Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

section.ghostwriting-banner-main-sec {
  background: url(../images/ghostwriting-banner.png);
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

section.article-publishing-main-banner {
  background: url(../images/article-publishing-banner-image.png) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
  z-index: 1;
}

section.article-publishing-main-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #000;
  opacity: 0.8;
  z-index: -1;
}

section.tv-interview-bg {
  background: url(../images/bg-img/tv-interview-bg.jpg) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
  position: relative;
  z-index: 1;
}

section.tv-interview-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #000;
  opacity: 0.7;
  z-index: -1;
}

section.tv-interview-bg .heading-one {
  color: #fff;
}

section.tv-interview-bg p {
  color: #fff;
}

.ghostwriting-banner-main-sec .heading-one {
  color: white;
}

.ghostwriting-banner-main-sec .banner-main-content p {
  color: white;
}

section.ghostwriting-bandown-brands-wrap {
  background: #008FF6;
}

/* Ghostwriting Service Section CSS Start Here */
.ghostwriting-services-sec-main {
  background: #cccecb;
  background-repeat: no-repeat;
  background-position: right;
  background-size: cover;
  padding: 75px 0px 50px;
}

.ghostwriting-services-sec-main .ghostwriting-services-left {}

.ghostwriting-services-sec-main .ghostwriting-services-left .heading-four {
  color: #000000;
}

.ghostwriting-services-sec-main .ghostwriting-services-left p {
  color: #000;
}

.ghostwriting-services-sec-main .ghostwriting-services-left .heading-six {
  color: #000;
}

.ghostwriting-services-sec-main .ghostwriting-services-left .website-main-buttons {}

.ghostwriting-services-sec-main .ghostwriting-services-left .website-main-buttons button.popup-btn {
  background: #000;
  color: #fff;
}

.ghostwriting-services-sec-main .ghostwriting-services-left .website-main-buttons button.chat-btn {
  background: #008FF6;
  color: #fff;
}

.ghostwriting-services-sec-main .ghostwriting-services-left .website-main-buttons button.popup-btn:hover {
  background: #008ff66e;
  color: #000;
}

.ghostwriting-services-sec-main .ghostwriting-services-left .website-main-buttons button.chat-btn:hover {
  background: #008ff66e;
  color: #000;
}

.ghostwriting-services-sec-main .ghostwriting-services-left-img {
  text-align: center;
}

/* Ghostwriting Service Section CSS End Here */

/* Ghostwriting Genre Section CSS Start Here */
.call-to-action-entertain {
  position: relative;
  overflow: hidden;
  padding: 50px 0;
  background: url(../images/bg-img/genre-bg.html);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  z-index: 1;
}

section.call-to-action-entertain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  background: #008FF6;
  opacity: 0.7;
  z-index: -1;
}

.call-to-action-entertain-second {
  background: url(../images/black-genre-bg.png) !important;
}

.call-to-action-entertain .desc {}

.call-to-action-entertain .desc h5 {
  font-size: 40px;
  line-height: 50px;
  font-weight: 600;
  text-transform: capitalize;
  color: #fff;
}

.call-to-action-entertain .img-main {}

.call-to-action-entertain .img-main img {
  width: 100%;
  border-radius: 10px;
}

.call-to-action-entertain .writing-service-inner {
  margin: 40px 0 0 0;
}

.call-to-action-entertain .writing-service-inner .writing-service-boxes {
  display: flex;
  align-items: center;
  justify-content: center;
}

.call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item {
  text-align: center;
  padding: 20px 20px;
  border-width: 2px 2px 2px 2px;
  border-style: solid;
  border-color: #fff;
  width: 15%;
  min-height: 175px;
  max-height: 175px;
  display: grid;
  align-items: center;
  justify-content: center;
}

.call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item a {
  display: block;
  transition: all 0.3s ease-in-out;
}

.writing-service-boxes .writing-service-item a .writing-service-icon {
  text-align: center;
  margin: 0 auto 10px;
}

.writing-service-boxes .writing-service-item a .writing-service-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item p {
  color: #fff;
  margin: 0;
  text-transform: uppercase;
}

.call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item a:hover {
  transform: translateY(-5px) !important;
}

.call-to-action-entertain-second .writing-service-inner .writing-service-boxes .writing-service-item a:hover img {
  filter: brightness(0) saturate(100%) invert(56%) sepia(35%) saturate(781%) hue-rotate(56deg) brightness(99%) contrast(84%);
}

.call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item a:hover p {
  color: #000;
}

.call-to-action-entertain .call-to-action-entertain-inner {
  text-align: center;
}

.call-to-action-entertain .call-to-action-entertain-inner .heading-four {
  color: #fff;
}

/* Ghostwriting Genre Section CSS End Here */

/* Ghostwriting CTA Wrap Section CSS Start Here */
.ghostwriting-cta-main-wrap {
  background: url(../images/article-publishing-banner-image.png) !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  background-position: 100% 55% !important;
}

.profreading-cta-main-wrap {
  background: url(../images/profreading-cta-bg.png) !important;
}

.marketing-cta-main-wrap {
  background: url(../images/marketing-cta-bg.png) !important;
}

.wikipedia-cta-main-wrap {
  /*background: url(../images/wikipedia-cta-bg.png) !important;*/
  background: url(../images/customer-experience-creative-collage_23-2149371196.png) !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: cover !important;
}

/* Ghostwriting CTA Wrap Section CSS End Here */

/* Ghostwriting Hire Company Sec CSS Start Here */
section.ghostwriting-company-hire-sec-main {
  padding: 50px 0px;
}

.ghostwriting-company-hire-sec-main .ghostwriting-hire-content-head {
  text-align: center;
}

.ghostwriting-company-hire-sec-main .ghostwriting-hire-content-head .heading-two {
  color: black;
  margin-bottom: 10px;
}

.ghostwriting-company-hire-sec-main .ghostwriting-hire-content-head p {
  color: black;
  font-size: 14px;
  line-height: 21px;
}

.ghostwriting-company-hire-sec-main .ghostwriting-books-image {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 70px;
  margin-top: 50px;
}

.ghostwriting-company-hire-sec-main .ghostwriting-books-image .books-image {}

.ghostwriting-company-hire-sec-main .ghostwriting-books-image .books-image img {
  width: 100%;
  height: 100%;
}

.ghostwriting-company-hire-sec-main .website-main-buttons {
  justify-content: center;
  margin-top: 60px;
}

.ghostwriting-company-hire-sec-main .website-main-buttons button.popup-btn {
  width: auto;
  padding: 22px 55px;
  color: white;
  background: #008FF6;
}

/* Ghostwriting Hire Company Sec CSS End Here */

/**************************************************************************
 --------------------- Ghostwriting Page Folds Css End Here ---------------
 --------------------------------------------------------------------------
**************************************************************************/

/**************************************************************************
 --------------------- About Us Page Folds Css Start Here -----------------
 --------------------------------------------------------------------------
**************************************************************************/
.abt-banner-main-sec {
  background: url(../images/about-banner-img.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  padding: 100px 0px;
  height: 629px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.abt-banner-main-sec .banner-content-head {
  text-align: center;
}

.abt-banner-main-sec .banner-content-head .heading-one {
  color: #000;
}

/* About Sagnificance Section CSS Start Here */
section.abt-sec-significance-wrap {
  padding: 60px 0px 0px;
  overflow: hidden;
}

.abt-sec-significance-wrap .abt-sec-head-main {
  text-align: center;
  margin-bottom: 70px;
}

.abt-sec-significance-wrap .abt-sec-head-main .short-text {
  font-family: "SamSharpSans-Bold";
  color: #2b2b2b;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  position: relative;
}

.abt-sec-significance-wrap .abt-sec-head-main .short-text::before {
  content: "";
  width: 50px;
  background: #008FF6;
  height: 5px;
  transition: all 0.3s ease-in-out;
  display: block;
  margin-right: 5px;
}

.abt-sec-significance-wrap .abt-sec-head-main .heading-three {
  color: #000000;
}

.abt-sec-significance-wrap .abt-sec-significance-content {}

.abt-sec-significance-wrap .abt-sec-significance-content p {
  color: #7e7e7e;
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 35px;
}

.abt-sec-significance-wrap .abt-sec-significance-content .heading-six {
  color: black;
  margin-bottom: 40px;
}

.abt-sec-significance-wrap .abt-sec-significance-content .website-main-buttons {}

.abt-sec-significance-wrap .abt-sec-significance-content .website-main-buttons button.popup-btn {
  background: #000000;
  color: white;
}

.abt-sec-significance-wrap .abt-sec-significance-content .website-main-buttons button.chat-btn {
  background: #008FF6;
  color: white;
}

.abt-sec-significance-wrap .abt-sec-significance-content .website-main-buttons button.popup-btn:hover {
  background: #008ff66e;
  color: #000;
}

.abt-sec-significance-wrap .abt-sec-significance-content .website-main-buttons button.chat-btn:hover {
  background: #008ff66e;
  color: #000;
}

.abt-sec-significance-wrap .abt-sec-significance-img {}

.abt-sec-significance-wrap .abt-sec-significance-img img {
  width: 100%;
  height: 100%;
}

/* About Sagnificance Section CSS End Here */

/* About Our Accomplishments Section CSS Start Here */
.accomplishments-sec-wrap {
  background: #e8e8e8;
  padding-bottom: 60px !important;
}

.accomplishments-sec-wrap .accomplishments-inner-box {
  text-align: center;
}

.accomplishments-inner-box .accomplishments-inner-img {
  margin-bottom: 20px;
}

.accomplishments-inner-box .accomplishments-inner-img img {
  width: 150px;
  height: 130px;
  object-fit: contain;
}

.accomplishments-inner-box .heading-six {
  color: #000;
}

.accomplishments-inner-box p {
  color: #757575;
  font-size: 14px;
  line-height: 21px;
}

.accomplishments-sec-wrap .abt-sec-head-main p {
  color: #7e7e7e;
}

.accomplishments-sec-wrap .website-main-buttons {
  justify-content: center;
  margin-top: 60px;
}

.accomplishments-sec-wrap .website-main-buttons button.popup-btn {
  background: black;
  color: white;
}

.accomplishments-sec-wrap .website-main-buttons button.popup-btn:hover {
  background: #008ff66e;
  color: #000;
}

.accomplishments-sec-wrap .website-main-buttons button.chat-btn {
  background: #008FF6;
  color: white;
}

.accomplishments-sec-wrap .website-main-buttons button.chat-btn:hover {
  background: #008ff66e;
  color: #000;
}

/* About Our Accomplishments Section CSS End Here */

/**************************************************************************
 --------------------- About Us Page Folds Css End Here -------------------
 --------------------------------------------------------------------------
**************************************************************************/

/*Footer Css Start Here*/
footer.footer-main-sec {
  background: #000000;
  position: relative;
}

.footer-main-sec .footer-top {
  padding: 50px 0;
  border-bottom: 1px solid #008FF6;
}

.footer-top .footer-logo {
  margin: 0 0 50px;
}

.footer-logo img {
  width: 300px;
}

.footer-top .footer-info-form {
  margin: 0 0 20px;
}

.footer-info-form span {
  color: #fff;
  font-size: 16px;
  line-height: 24px;
  display: block;
  margin: 0 0 10px;
}

.footer-info-form .form-group {
  margin: 0 0 10px;
}

.footer-info-form .form-group input {
  background: #2b2b2b;
  color: #fff;
  font-size: 16px;
  padding: 10px 15px;
  width: 100%;
  height: 55px;
  border: none;
  outline: none;
  border-radius: 0px;
}

.footer-info-form .form-group button.submit-btn {
  background: #008FF6;
  color: #fff;
  font-size: 18px;
  width: 200px;
  height: 60px;
  border-radius: 5px;
  border: none;
  padding: 5px 5px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  transition: all 0.25s ease-out;
  position: relative;
}

.footer-info-form .form-group button.submit-btn:hover {
  background: #008ff66e;
  color: #000;
}

.footer-top .footer-payments-cards {
  margin: 0 0 20px;
}

.footer-top .footer-links-area {
  margin: 0 20px 20px;
}

.footer-links-area .heading-five {
  color: #fff;
  margin: 0 0 30px;
}

.footer-links-area ul.footer-nav-links {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 10px;
  width: 100%;
}

.footer-links-area ul.footer-nav-links li {
  padding: 0 0 0 25px;
  margin: 0 0 10px;
  position: relative;
}

.footer-links-area ul.footer-nav-links li::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  border-width: 7px 0px 7px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.footer-links-area ul.footer-nav-links a {
  color: #787878;
  font-size: 16px;
  line-height: 22px;
  margin: 0;
  transition: all 0.3s ease-in-out;
  display: block;
}

.footer-links-area ul.footer-nav-links a:hover {
  color: #008FF6;
}

.footer-info-area .heading-five {
  color: #fff;
  margin: 0 0 30px;
}

.footer-info-area a {
  color: #787878 !important;
  white-space: nowrap !important;
  font-size: 16px;
  line-height: 22px;
  text-transform: lowercase;
  margin: 0 0 20px;
  display: block;
  display: flex;
  transition: all 0.3s ease-in-out;
}

.footer-info-area a:hover {
  color: #008FF6;
}

.footer-info-area a i,
.footer-info-area p i {
  color: #fff;
  font-size: 20px;
  width: 20px;
  margin: 0 10px 0 0;
}

.footer-info-area p {
  color: #787878;
  font-size: 16px;
  line-height: 22px;
  margin: 0 0 20px;
  display: block;
  display: flex;
}

.footer-main-sec .footer-bottom {
  padding: 10px 0;
}

.footer-bottom .footer-copyright {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-copyright p {
  color: #fff;
  margin: 0;
}

ul.footer-social-list {
  display: flex;
}

ul.footer-social-list li a {
  background: #008FF6;
  color: #fff;
  font-size: 20px;
  width: 40px;
  height: 40px;
  line-height: 44px;
  text-align: center;
  border-radius: 5px;
  margin: 0 5px 0 0;
  display: block;
  position: relative;
  transition: all 0.5s ease-in-out;
}

ul.footer-social-list li a:hover {
  background: #008ff66e;
}

ul.footer-social-list li a img {
  padding: 8px;
  filter: invert(1);
  margin: -5px 0 0 0;
}

ul.footer-social-list i {
  margin: 0px !important;
}

ul.footer-social-list li a:hover i {
  color: black;
}

ul.footer-social-list li a:hover img {
  filter: invert(0);
}

/*Footer Css End Here*/

@media only screen and (min-width: 1200px) and (max-width: 1499px) {
  .container-fluid {
    padding: 0 50px;
  }

  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  .heading-two {
    font-size: 48px;
    line-height: 56px;
  }

  .heading-three {
    font-size: 38px;
    line-height: 46px;
  }

  .heading-four {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-five {
    font-size: 26px;
    line-height: 34px;
  }

  .heading-six {
    font-size: 20px;
    line-height: 28px;
  }

  /*Heading & Para Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header .navbar-main-center ul.navbar-nav li.nav-item {
    margin: 0 10px;
  }

  header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
    font-size: 14px;
    line-height: 22px;
  }

  header .navbar-main-nav .navbar-buttons a.call-btn {
    font-size: 16px;
    width: 160px;
  }

  /*Header Responsive Css End Here*/

  /**************************************************************************
  --------------- Home Page Folds Responsive Css Start Here ----------------
  --------------------------------------------------------------------------
**************************************************************************/

  /* Target Audience Section Responsive CSS Start Here */
  .target-audience-main-book .target-audience-books-inner {
    gap: 10px;
  }

  /* Target Audience Section Responsive CSS End Here */

  /*Process Section Css Start Here*/
  .process-sec-wrap .process-sec-inner {
    gap: 15px;
  }

  /*Process Section Css End Here*/

  /*Why Choose section Css Start Here*/
  .why-choose-content span.short-text::before {
    width: 20px;
  }

  /*Why Choose section Css End Here*/

  /*Main CTA Section Css Start Here*/
  section.cta-main-wrap {
    background-position: 20% 100%;
  }

  /*Main CTA Section Css End Here*/

  /*Testimonials Section Responsive Css Start Here*/
  .testimonial-box-slider .slick-prev {
    left: 45%;
  }

  .testimonial-box-slider .slick-next {
    right: 45%;
  }

  .testi-main-inner .testi-main-box {
    margin: 100px 10px 50px;
  }

  .testi-main-box .testi-box-content {
    padding: 0 5px 10px;
  }

  /*Testimonials Section Responsive Css End Here*/

  /**************************************************************************
  --------------- Home Page Folds Responsive Css End Here ------------------
  --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
  --------------- Ghostwriting Page Folds Responsive Css Start Here --------
  --------------------------------------------------------------------------
**************************************************************************/

  /* Ghostwriting Service Section Responsive CSS Start Here */
  .ghostwriting-services-sec-main {
    background-position: 50% 50% !important;
  }

  /* Ghostwriting Service Section Responsive CSS End Here */

  /* Ghostwriting Hire Company Sec Responsive CSS Start Here */
  .ghostwriting-company-hire-sec-main .ghostwriting-books-image {
    gap: 35px;
  }

  /* Ghostwriting Hire Company Sec Responsive CSS End Here */

  /**************************************************************************
  ------------- Ghostwriting Page Folds Responsive Css End Here ------------
  --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
  --------------- About Us Page Folds Responsive Css Start Here ------------
  --------------------------------------------------------------------------
**************************************************************************/
  /* About Sagnificance Section Responsive CSS Start Here */
  .abt-sec-significance-wrap .abt-sec-significance-content .website-main-buttons {
    margin: 30px 0 20px;
  }

  /* About Sagnificance Section Responsive CSS End Here */

  /**************************************************************************
  ---------------- About Us Page Folds Responsive Css End Here -------------
  --------------------------------------------------------------------------
**************************************************************************/

  /*Footer Responsive Css Start Here*/
  .footer-top .footer-logo {
    margin: 0 0 30px;
  }

  .footer-logo img {
    width: 260px;
  }

  /*Footer Responsive Css End Here*/
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .container-fluid {
    padding: 0 30px;
  }

  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  .heading-one {
    font-size: 64px;
    line-height: 72px;
  }

  .heading-two {
    font-size: 48px;
    line-height: 56px;
  }

  .heading-three {
    font-size: 38px;
    line-height: 46px;
  }

  .heading-four {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-five {
    font-size: 26px;
    line-height: 34px;
  }

  .heading-six {
    font-size: 20px;
    line-height: 28px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  li {
    font-size: 14px;
    line-height: 22px;
  }

  /*Heading & Para Style Responsive Css*/

  /*Buttons Style Responsive Css*/
  .website-main-buttons a.read-more-btn,
  .website-main-buttons button.popup-btn,
  .website-main-buttons a.call-btn,
  .website-main-buttons button.chat-btn {
    font-size: 16px;
    margin: 0 5px 5px;
    width: 175px;
  }

  /*Buttons Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header .navbar-main-center ul.navbar-nav li.nav-item {
    margin: 0 10px;
  }

  header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
    font-size: 14px;
    line-height: 22px;
  }

  header .navbar-main-nav .navbar-buttons a.call-btn {
    font-size: 16px;
    width: 160px;
  }

  /*Header Responsive Css End Here*/

  /**************************************************************************
  --------------- Home Page Folds Responsive Css Start Here ----------------
  --------------------------------------------------------------------------
**************************************************************************/

  /*Banner Main Section Responsive Css Start Here*/
  .banner-main-content .heading-one span {
    font-size: 48px;
    line-height: 56px;
  }

  /*Banner Main Section Responsive Css End Here*/

  /* Target Audience Section Responsive CSS Start Here */
  .target-audience-main-book .target-audience-books-inner {
    gap: 10px;
  }

  /* Target Audience Section Responsive CSS End Here */

  /*Process Section Css Start Here*/
  .process-sec-wrap .process-sec-inner {
    gap: 15px;
  }

  /*Process Section Css End Here*/

  /*Why Choose section Css Start Here*/
  .why-choose-content span.short-text::before {
    width: 0px;
  }

  /*Why Choose section Css End Here*/

  /*Main CTA Section Css Start Here*/
  section.cta-main-wrap {
    background-position: 40% 100%;
    padding: 75px 0;
  }

  /*Main CTA Section Css End Here*/

  /*Testimonials Section Responsive Css Start Here*/
  .testimonial-box-slider .slick-prev {
    left: 42%;
  }

  .testimonial-box-slider .slick-next {
    right: 42%;
  }

  .testi-main-inner .testi-main-box {
    padding: 0px 10px 20px;
    margin: 100px 5px 50px;
  }

  .testi-main-box .testi-box-content {
    padding: 0 5px 10px;
  }

  /*Testimonials Section Responsive Css End Here*/

  /**************************************************************************
  --------------- Home Page Folds Responsive Css End Here ------------------
  --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
  --------------- Ghostwriting Page Folds Responsive Css Start Here --------
  --------------------------------------------------------------------------
**************************************************************************/

  /* Ghostwriting Service Section Responsive CSS Start Here */
  .ghostwriting-services-sec-main {
    background-position: 50% 100% !important;
    padding: 50px 0px 50px;
  }

  /* Ghostwriting Service Section Responsive CSS End Here */

  /* Ghostwriting Genre Section Responsive CSS Start Here */
  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item {
    padding: 20px 10px;
  }

  /* Ghostwriting Genre Section Responsive CSS End Here */

  /* Ghostwriting Hire Company Sec Responsive CSS Start Here */
  .ghostwriting-company-hire-sec-main .ghostwriting-books-image {
    gap: 15px;
  }

  /* Ghostwriting Hire Company Sec Responsive CSS End Here */

  /**************************************************************************
  ------------- Ghostwriting Page Folds Responsive Css End Here ------------
  --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
  --------------- About Us Page Folds Responsive Css Start Here ------------
  --------------------------------------------------------------------------
**************************************************************************/
  .abt-banner-main-sec {
    padding: 135px 0px;
  }

  /* About Sagnificance Section Responsive CSS Start Here */
  .abt-sec-significance-wrap .abt-sec-significance-content {
    margin: 0 0 20px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content p {
    margin-bottom: 25px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content .heading-six {
    margin-bottom: 25px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-img {
    position: relative;
    bottom: -62px;
  }

  /* About Sagnificance Section Responsive CSS End Here */

  /**************************************************************************
  ---------------- About Us Page Folds Responsive Css End Here -------------
  --------------------------------------------------------------------------
**************************************************************************/

  /*Footer Responsive Css Start Here*/
  .footer-top .footer-logo {
    margin: 0 0 30px;
  }

  .footer-info-form .form-group button.submit-btn {
    font-size: 16px;
    width: 175px;
  }

  .footer-top .footer-links-area {
    margin: 20px 0px 20px;
  }

  .footer-links-area ul.footer-nav-links li {
    padding: 0 0 0 20px
  }

  .footer-links-area ul.footer-nav-links a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-info-area a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-info-area a i,
  .footer-info-area p i {
    font-size: 16px;
    width: 16px;
  }

  .footer-info-area p {
    font-size: 14px;
    line-height: 20px;
  }

  /*Footer Responsive Css End Here*/
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .container-fluid {
    padding: 0 30px;
  }

  .order-two {
    order: 2;
  }

  .order-one {
    order: 1;
  }

  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  .heading-one {
    font-size: 64px;
    line-height: 72px;
  }

  .heading-two {
    font-size: 48px;
    line-height: 56px;
  }

  .heading-three {
    font-size: 38px;
    line-height: 46px;
  }

  .heading-four {
    font-size: 32px;
    line-height: 40px;
  }

  .heading-five {
    font-size: 26px;
    line-height: 34px;
  }

  .heading-six {
    font-size: 20px;
    line-height: 28px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  li {
    font-size: 14px;
    line-height: 22px;
  }

  /*Heading & Para Style Responsive Css*/

  /*Buttons Style Responsive Css*/
  .website-main-buttons {
    justify-content: center;
  }

  .website-main-buttons a.read-more-btn,
  .website-main-buttons button.popup-btn,
  .website-main-buttons a.call-btn,
  .website-main-buttons button.chat-btn {
    font-size: 16px;
    margin: 0 5px 5px;
    width: 175px;
  }

  /*Buttons Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header nav.navbar {
    padding: 20px 0;
  }

  header nav.navbar .navbar-brand {}

  header .navbar-expand-lg .navbar-collapse {
    background: #fff;
    margin: 10px 0;
  }

  header .navbar-collapse .navbar-main-nav {
    justify-content: center;
    flex-direction: column;
  }

  header .navbar-main-center ul.navbar-nav {
    margin: 0;
  }

  header .navbar-main-center ul.navbar-nav li.nav-item {
    margin: 0 10px;
  }

  header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
    border-bottom: 1px solid #b2b2b2;
    font-size: 16px;
    line-height: 22px;
    padding: 10px 0;
  }

  header ul.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    opacity: 1;
    display: block;
  }

  header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu {
    position: unset;
    width: 100%;
    top: 0;
    box-shadow: none;
    padding: unset;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: none;
  }

  header .navbar-nav .nav-item a.nav-link.dropdown-toggle.show ul.dropdown-menu {
    display: block;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    display: none;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu.show {
    display: block;
  }

  header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 8px;
  }

  header .navbar-main-nav .navbar-buttons {
    margin: 10px 0;
  }

  header .navbar-main-nav .navbar-buttons a.call-btn {
    font-size: 16px;
    width: 175px;
  }

  /*Header Responsive Css End Here*/

  /**************************************************************************
  --------------- Home Page Folds Responsive Css Start Here ----------------
  --------------------------------------------------------------------------
**************************************************************************/

  /*Banner Main Section Responsive Css Start Here*/
  .banner-main-content .heading-one span {
    font-size: 48px;
    line-height: 56px;
  }

  /*Banner Main Section Responsive Css End Here*/

  /* Target Audience Section Responsive CSS Start Here */
  .target-audience-main-book .target-audience-books-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  /* Target Audience Section Responsive CSS End Here */

  /*Process Section Css Start Here*/
  .process-sec-wrap .process-sec-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .process-sec-inner .process-inner-box {
    text-align: center;
    width: 47%;
  }

  .process-sec-wrap .process-sec-inner::before {
    display: none;
  }

  /*Process Section Css End Here*/

  /*Unlock Story Section Responsive Css Start Here*/
  .unlock-story-wrap .unlock-story-inner {
    text-align: center;
  }

  /*Unlock Story Section Responsive Css End Here*/

  /*Why Choose section Css Start Here*/
  .why-choose-inner .why-choose-content {
    text-align: center;
  }

  .why-choose-content span.short-text {
    justify-content: center;
  }

  .why-choose-content ul {
    text-align: left;
    justify-content: center;
  }

  /*Why Choose section Css End Here*/

  /*Main CTA Section Css Start Here*/
  section.cta-main-wrap {
    background-position: 35% 100%;
    padding: 75px 0;
  }

  /*Main CTA Section Css End Here*/

  /*Testimonials Section Responsive Css Start Here*/
  .testi-main-head .banner-brands span.short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .testi-main-head .banner-brands span.short-text::before {
    width: 25px;
  }

  .testi-main-head .banner-brands .banner-brands-items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testi-main-head .banner-brands .banner-brands-items img {
    margin: 0 5px 10px;
  }

  .testimonial-box-slider .slick-arrow {
    bottom: 0%;
  }

  .testimonial-box-slider .slick-prev {
    left: 35%;
  }

  .testimonial-box-slider .slick-next {
    right: 35%;
  }

  .testi-main-inner .testi-main-box {
    padding: 0px 10px 20px;
    margin: 100px 5px 50px;
  }

  .testi-main-box .testi-box-content {
    padding: 0 5px 10px;
  }

  /*Testimonials Section Responsive Css End Here*/

  /*Main Contact Form Section Responsive Css Start Here*/
  section.main-contact-form {
    padding: 30px 0px;
  }

  .main-contact-form .contact-form-side {
    width: 100%;
    margin: 0 0 20px;
  }

  .contact-form-side .heading-two {
    font-size: 32px;
    line-height: 40px;
  }

  .contact-form-side .form-group input {
    font-size: 14px;
    height: 45px;
  }

  .contact-form-side .form-group textarea {
    font-size: 14px;
    height: 90px;
  }

  .contact-form-side .form-check {
    margin: 10px 0;
  }

  .contact-form-side .form-check .form-check-label {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-form-side .form-group button.submit-btn {
    font-size: 16px;
    width: 175px;
  }

  /*Main Contact Form Section Responsive Css End Here*/

  /**************************************************************************
  --------------- Home Page Folds Responsive Css End Here ------------------
  --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
  --------------- Ghostwriting Page Folds Responsive Css Start Here --------
  --------------------------------------------------------------------------
**************************************************************************/

  /* Ghostwriting Service Section Responsive CSS Start Here */
  .ghostwriting-services-sec-main {
    background-position: 50% 100% !important;
    padding: 50px 0px 50px;
  }

  .ghostwriting-services-sec-main .ghostwriting-services-left .website-main-buttons {
    justify-content: left;
  }

  /* Ghostwriting Service Section Responsive CSS End Here */

  /* Ghostwriting Genre Section Responsive CSS Start Here */
  .call-to-action-entertain .writing-service-inner .writing-service-boxes {
    flex-wrap: wrap;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item {
    padding: 20px 10px;
    border-width: 2px 2px 2px 2px;
    width: 33%;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item-last {
    border-width: 2px 2px 2px 2px;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item2 {
    border-width: 2px 2px 2px 2px;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item2.writing-service-item-last {
    border-width: 2px 2px 2px 2px;
  }

  /* Ghostwriting Genre Section Responsive CSS End Here */

  /* Ghostwriting Hire Company Sec Responsive CSS Start Here */
  .ghostwriting-company-hire-sec-main .ghostwriting-books-image {
    flex-wrap: wrap;
    gap: 15px;
  }

  .ghostwriting-company-hire-sec-main .ghostwriting-books-image .books-image {
    width: 23%;
  }

  /* Ghostwriting Hire Company Sec Responsive CSS End Here */

  /**************************************************************************
  ------------- Ghostwriting Page Folds Responsive Css End Here ------------
  --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
  --------------- About Us Page Folds Responsive Css Start Here ------------
  --------------------------------------------------------------------------
**************************************************************************/
  .abt-banner-main-sec {
    padding: 135px 0px;
  }

  /* About Sagnificance Section Responsive CSS Start Here */
  section.abt-sec-significance-wrap {
    padding: 40px 0px 0px;
  }

  .abt-sec-significance-wrap .abt-sec-head-main {
    margin-bottom: 40px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content {
    text-align: center;
    margin: 0 0 20px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content p {
    margin-bottom: 25px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content .heading-six {
    margin-bottom: 25px;
  }

  /* About Sagnificance Section Responsive CSS End Here */

  /**************************************************************************
  ---------------- About Us Page Folds Responsive Css End Here -------------
  --------------------------------------------------------------------------
**************************************************************************/

  /*Footer Responsive Css Start Here*/
  .footer-top .footer-logo {
    margin: 0 0 30px;
  }

  .footer-info-form .form-group button.submit-btn {
    font-size: 16px;
    width: 175px;
  }

  .footer-top .footer-links-area {
    margin: 20px 0px 20px;
  }

  .footer-links-area ul.footer-nav-links li {
    padding: 0 0 0 20px
  }

  .footer-links-area ul.footer-nav-links a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-info-area a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-info-area a i,
  .footer-info-area p i {
    font-size: 16px;
    width: 16px;
  }

  .footer-info-area p {
    font-size: 14px;
    line-height: 20px;
  }

  ul.footer-social-list {
    justify-content: center;
  }

  ul.footer-social-list li a {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 34px;
  }

  /*Footer Responsive Css End Here*/
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .container-fluid {
    padding: 0 30px;
  }

  .order-two {
    order: 2;
  }

  .order-one {
    order: 1;
  }

  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  .heading-one {
    font-size: 36px;
    line-height: 44px;
  }

  .heading-two {
    font-size: 30px;
    line-height: 38px;
  }

  .heading-three {
    font-size: 28px;
    line-height: 34px;
  }

  .heading-four {
    font-size: 22px;
    line-height: 30px;
  }

  .heading-five {
    font-size: 20px;
    line-height: 28px;
  }

  .heading-six {
    font-size: 18px;
    line-height: 26px;
  }

  .heading-seven {
    font-size: 16px;
    line-height: 24px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  li {
    font-size: 14px;
    line-height: 22px;
  }

  /*Heading & Para Style Responsive Css*/

  /*Buttons Style Responsive Css*/
  .website-main-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .website-main-buttons a.read-more-btn,
  .website-main-buttons button.popup-btn,
  .website-main-buttons a.call-btn,
  .website-main-buttons button.chat-btn {
    font-size: 16px;
    margin: 0 5px 5px;
    width: 175px;
  }

  /*Buttons Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header nav.navbar {
    padding: 20px 0;
  }

  header nav.navbar .navbar-brand {}

  header .navbar-expand-lg .navbar-collapse {
    background: #fff;
    margin: 10px 0;
  }

  header .navbar-collapse .navbar-main-nav {
    justify-content: center;
    flex-direction: column;
  }

  header .navbar-main-center ul.navbar-nav {
    margin: 0;
  }

  header .navbar-main-center ul.navbar-nav li.nav-item {
    margin: 0 10px;
  }

  header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
    border-bottom: 1px solid #b2b2b2;
    font-size: 16px;
    line-height: 22px;
    padding: 10px 0;
  }

  header ul.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    opacity: 1;
    display: block;
  }

  header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu {
    position: unset;
    width: 100%;
    top: 0;
    box-shadow: none;
    padding: unset;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: none;
  }

  header .navbar-nav .nav-item a.nav-link.dropdown-toggle.show ul.dropdown-menu {
    display: block;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    display: none;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu.show {
    display: block;
  }

  header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 8px;
  }

  header .navbar-main-nav .navbar-buttons {
    margin: 10px 0;
  }

  header .navbar-main-nav .navbar-buttons a.call-btn {
    font-size: 16px;
    width: 175px;
  }

  /*Header Responsive Css End Here*/

  /**************************************************************************
  --------------- Home Page Folds Responsive Css Start Here ----------------
  --------------------------------------------------------------------------
**************************************************************************/

  /*Banner Main Section Responsive Css Start Here*/
  .banner-main-content span.short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .banner-main-content span.short-text::before {
    width: 25px;
  }

  .banner-main-content .heading-one span {
    font-size: 32px;
    line-height: 40px;
  }

  /*Banner Main Section Responsive Css End Here*/

  /* Target Audience Section Responsive CSS Start Here */
  section.target-audience-wrap-main {
    padding: 50px 0px;
  }

  .target-audience-wrap-main .target-audience-head-wrap .short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .target-audience-wrap-main .target-audience-head-wrap .short-text::before {
    width: 25px;
  }

  .target-audience-main-book .target-audience-books-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .target-audience-books-inner .target-audience-books-content .heading-five {
    font-size: 16px;
    line-height: 24px;
  }

  /* Target Audience Section Responsive CSS End Here */

  /*Process Section Css Start Here*/
  .process-sec-wrap .process-sec-inner {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }

  .process-sec-inner .process-inner-box {
    text-align: center;
    width: 47%;
  }

  .process-sec-wrap .process-sec-inner::before {
    display: none;
  }

  /*Process Section Css End Here*/

  /*Unlock Story Section Responsive Css Start Here*/
  .unlock-story-head span.short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .unlock-story-head span.short-text::before {
    width: 25px;
  }

  .unlock-story-wrap .unlock-story-inner {
    text-align: center;
  }

  /*Unlock Story Section Responsive Css End Here*/

  /*Why Choose section Css Start Here*/
  .why-choose-inner .why-choose-content {
    text-align: center;
  }

  .why-choose-content span.short-text {
    font-size: 14px;
    line-height: 20px;
    justify-content: center;
  }

  .why-choose-content span.short-text::before {
    width: 0px;
  }

  .why-choose-content ul {
    text-align: left;
    justify-content: center;
  }

  /*Why Choose section Css End Here*/

  /*Counter Satisfy Section Responsive Css Start Here*/
  .counter-satisfy-inner .counter-satisfy-box {
    margin: 0 5px 10px;
  }

  /*Counter Satisfy Section Responsive Css End Here*/

  /*Main CTA Section Css Start Here*/
  section.cta-main-wrap {
    background-position: 35% 100%;
    padding: 75px 0;
  }

  /*Main CTA Section Css End Here*/

  /*Testimonials Section Responsive Css Start Here*/
  .testi-main-head .banner-brands span.short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .testi-main-head .banner-brands span.short-text::before {
    width: 25px;
  }

  .testi-main-head .banner-brands .banner-brands-items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testi-main-head .banner-brands .banner-brands-items img {
    margin: 0 5px 10px;
  }

  .testimonial-box-slider .slick-arrow {
    bottom: 0%;
  }

  .testimonial-box-slider .slick-prev {
    left: 35%;
  }

  .testimonial-box-slider .slick-next {
    right: 35%;
  }

  .testi-main-inner .testi-main-box {
    padding: 0px 10px 20px;
    margin: 100px 5px 50px;
  }

  .testi-main-box .testi-box-content {
    padding: 0 5px 10px;
  }

  /*Testimonials Section Responsive Css End Here*/

  /*FAQS Section Responsive Css Start Here*/
  section.faqs-sec-wrap {
    padding: 30px 0;
  }

  .faqs-sec-item .accordion-item .accordion-header button.accordion-button {
    font-size: 16px;
    line-height: 22px;
  }

  .faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    line-height: 20px;
  }

  /*FAQS Section Responsive Css End Here*/

  /*Main Contact Form Section Responsive Css Start Here*/
  section.main-contact-form {
    padding: 30px 0px;
  }

  .main-contact-form .contact-form-side {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }

  .contact-form-side span.short-text {
    justify-content: center;
  }

  .contact-form-side .form-check {
    text-align: left;
  }

  .contact-form-side .form-check .form-check-input {
    width: 15px;
    height: 15px;
  }

  .contact-form-side .form-check .form-check-label {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-form-side .form-group button.submit-btn {
    font-size: 16px;
    width: 175px;
    margin: 0 auto;
  }

  /*Main Contact Form Section Responsive Css End Here*/

  /**************************************************************************
  --------------- Home Page Folds Responsive Css End Here ------------------
  --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
  --------------- Ghostwriting Page Folds Responsive Css Start Here --------
  --------------------------------------------------------------------------
**************************************************************************/

  /* Ghostwriting Service Section Responsive CSS Start Here */
  .ghostwriting-services-sec-main {
    background-position: 23% 100%;
    padding: 50px 0px 50px;
  }

  .ghostwriting-services-sec-main .ghostwriting-services-left {
    text-align: center;
  }

  /* Ghostwriting Service Section Responsive CSS End Here */

  /* Ghostwriting Genre Section Responsive CSS Start Here */
  .call-to-action-entertain .writing-service-inner .writing-service-boxes {
    flex-wrap: wrap;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item {
    padding: 20px 10px;
    border-width: 2px 2px 2px 2px;
    width: 50%;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item-last {
    border-width: 2px 2px 2px 2px;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item2 {
    border-width: 2px 2px 2px 2px;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item2.writing-service-item-last {
    border-width: 2px 2px 2px 2px;
  }

  /* Ghostwriting Genre Section Responsive CSS End Here */

  /* Ghostwriting Hire Company Sec Responsive CSS Start Here */
  .ghostwriting-company-hire-sec-main .ghostwriting-books-image {
    flex-wrap: wrap;
    gap: 15px;
  }

  .ghostwriting-company-hire-sec-main .ghostwriting-books-image .books-image {
    width: 48%;
  }

  .ghostwriting-company-hire-sec-main .website-main-buttons button.popup-btn {
    padding: 20px 25px;
  }

  /* Ghostwriting Hire Company Sec Responsive CSS End Here */

  /**************************************************************************
  ------------- Ghostwriting Page Folds Responsive Css End Here ------------
  --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
  --------------- About Us Page Folds Responsive Css Start Here ------------
  --------------------------------------------------------------------------
**************************************************************************/
  .abt-banner-main-sec {
    padding: 135px 0px;
  }

  /* About Sagnificance Section Responsive CSS Start Here */
  section.abt-sec-significance-wrap {
    padding: 40px 0px 0px;
  }

  .abt-sec-significance-wrap .abt-sec-head-main {
    margin-bottom: 40px;
  }

  .abt-sec-significance-wrap .abt-sec-head-main .short-text {
    font-size: 14px;
    line-height: 22px;
  }

  .abt-sec-significance-wrap .abt-sec-head-main .short-text::before {
    width: 25px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content {
    text-align: center;
    margin: 0 0 20px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content p {
    margin-bottom: 25px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content .heading-six {
    margin-bottom: 25px;
  }

  /* About Sagnificance Section Responsive CSS End Here */

  /**************************************************************************
  ---------------- About Us Page Folds Responsive Css End Here -------------
  --------------------------------------------------------------------------
**************************************************************************/

  /*Footer Responsive Css Start Here*/
  .footer-main-sec .footer-top {
    padding: 30px 0;
  }

  .footer-top .footer-logo {
    margin: 0 0 30px;
  }

  .footer-info-form .form-group input {
    padding: 10px 10px;
  }

  .footer-info-form .form-group button.submit-btn {
    font-size: 16px;
    width: 175px;
  }

  .footer-top .footer-links-area {
    margin: 20px 0px 20px;
  }

  .footer-links-area ul.footer-nav-links li {
    padding: 0 0 0 20px
  }

  .footer-links-area ul.footer-nav-links a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-info-area a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-info-area a i,
  .footer-info-area p i {
    font-size: 16px;
    width: 16px;
  }

  .footer-info-area p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-bottom .footer-copyright {
    text-align: center;
  }

  ul.footer-social-list {
    justify-content: center;
  }

  ul.footer-social-list li a {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 34px;
  }

  /*Footer Responsive Css End Here*/
}

@media only screen and (min-width: 300px) and (max-width: 575px) {
  .container-fluid {
    padding: 0 20px;
  }

  .order-one {
    order: 1;
  }

  .order-two {
    order: 2;
  }

  /*Website Custom Style Responsive Css For Single Items Start Here*/

  /*Heading & Para Style Responsive Css*/
  .heading-one {
    font-size: 36px;
    line-height: 44px;
  }

  .heading-two {
    font-size: 30px;
    line-height: 38px;
  }

  .heading-three {
    font-size: 28px;
    line-height: 34px;
  }

  .heading-four {
    font-size: 22px;
    line-height: 30px;
  }

  .heading-five {
    font-size: 20px;
    line-height: 28px;
  }

  .heading-six {
    font-size: 18px;
    line-height: 26px;
  }

  .heading-seven {
    font-size: 16px;
    line-height: 24px;
  }

  p {
    font-size: 14px;
    line-height: 22px;
  }

  li {
    font-size: 14px;
    line-height: 22px;
  }

  /*Heading & Para Style Responsive Css*/

  /*Buttons Style Responsive Css*/
  .website-main-buttons {
    flex-wrap: wrap;
    justify-content: center;
  }

  .website-main-buttons a.read-more-btn,
  .website-main-buttons button.popup-btn,
  .website-main-buttons a.call-btn,
  .website-main-buttons button.chat-btn {
    font-size: 16px;
    margin: 0 5px 5px;
    width: 175px;
  }

  /*Buttons Style Responsive Css*/

  /*Website Custom Style Responsive Css For Single Items End Here*/

  /*Header Responsive Css Start Here*/
  header nav.navbar {
    padding: 20px 0;
  }

  header nav.navbar .navbar-brand {}

  header .navbar-expand-lg .navbar-collapse {
    background: #fff;
    margin: 10px 0;
  }

  header .navbar-collapse .navbar-main-nav {
    justify-content: center;
    flex-direction: column;
  }

  header .navbar-main-center ul.navbar-nav {
    margin: 0;
  }

  header .navbar-main-center ul.navbar-nav li.nav-item {
    margin: 0 10px;
  }

  header .navbar-main-center ul.navbar-nav li.nav-item a.nav-link {
    border-bottom: 1px solid #b2b2b2;
    font-size: 16px;
    line-height: 22px;
    padding: 10px 0;
  }

  header ul.navbar-nav .nav-item.dropdown .dropdown-toggle::after {
    opacity: 1;
    display: block;
  }

  header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu {
    position: unset;
    width: 100%;
    top: 0;
    box-shadow: none;
    padding: unset;
    opacity: unset;
    visibility: unset;
    transform: inherit;
    display: none;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    transform: inherit;
    opacity: inherit;
    visibility: inherit;
    display: none;
  }

  header .navbar-nav .nav-item a.nav-link.dropdown-toggle.show ul.dropdown-menu {
    display: block;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu {
    display: none;
  }

  header .navbar-nav .nav-item.dropdown:hover ul.dropdown-menu.show {
    display: block;
  }

  header ul.navbar-nav .nav-item.dropdown ul.dropdown-menu li a {
    font-size: 14px;
    line-height: 20px;
    padding: 8px 8px;
  }

  header .navbar-main-nav .navbar-buttons {
    margin: 10px 0;
  }

  header .navbar-main-nav .navbar-buttons a.call-btn {
    font-size: 16px;
    width: 175px;
  }

  /*Header Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css Start Here ----------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Banner Main Section Responsive Css Start Here*/
  section.banner-main-sec {}

  .banner-main-content span.short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .banner-main-content span.short-text::before {
    width: 25px;
  }

  .banner-main-content .heading-one span {
    font-size: 32px;
    line-height: 40px;
  }

  /*Banner Main Section Responsive Css End Here*/

  /* Target Audience Section Responsive CSS Start Here */
  section.target-audience-wrap-main {
    padding: 35px 0px;
  }

  .target-audience-wrap-main .target-audience-head-wrap .short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .target-audience-wrap-main .target-audience-head-wrap .short-text::before {
    width: 25px;
  }

  .target-audience-main-book .target-audience-books-inner {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .target-audience-books-inner .target-audience-books-content .heading-five {
    font-size: 16px;
    line-height: 24px;
  }

  /* Target Audience Section Responsive CSS End Here */

  /*Process Section Css Start Here*/
  .process-sec-wrap .process-sec-inner {
    flex-direction: column;
    gap: 40px;
    justify-content: center;
  }

  .process-sec-wrap .process-sec-inner::before {
    display: none;
  }

  /*Process Section Css End Here*/

  /*Unlock Story Section Responsive Css Start Here*/
  .unlock-story-head span.short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .unlock-story-head span.short-text::before {
    width: 25px;
  }

  .unlock-story-wrap .unlock-story-inner {
    text-align: center;
  }

  .order-two {
    order: 2;
  }

  .order-one {
    order: 1;
  }

  /*Unlock Story Section Responsive Css End Here*/

  /*Why Choose section Css Start Here*/
  .why-choose-inner .why-choose-content {
    text-align: center;
  }

  .why-choose-content span.short-text {
    font-size: 14px;
    line-height: 20px;
    justify-content: center;
  }

  .why-choose-content span.short-text::before {
    width: 0px;
  }

  .why-choose-content ul {
    flex-direction: column;
    text-align: left;
    justify-content: center;
    align-items: center;
  }

  .why-choose-content ul li {
    width: 100%;
  }

  /*Why Choose section Css End Here*/

  /*Counter Satisfy Section Responsive Css Start Here*/
  .counter-satisfy-wrap .counter-satisfy-inner {
    flex-wrap: wrap;
    justify-content: center;
  }

  .counter-satisfy-inner .counter-satisfy-box {
    margin: 0 5px 10px;
    width: 45%;
  }

  /*Counter Satisfy Section Responsive Css End Here*/

  /*Main CTA Section Css Start Here*/
  section.cta-main-wrap {
    background-position: 55% 100%;
    padding: 75px 0;
  }

  /*Main CTA Section Css End Here*/

  /*Testimonials Section Responsive Css Start Here*/
  .testi-main-head .banner-brands span.short-text {
    font-size: 14px;
    line-height: 20px;
  }

  .testi-main-head .banner-brands span.short-text::before {
    width: 25px;
  }

  .testi-main-head .banner-brands .banner-brands-items {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testi-main-head .banner-brands .banner-brands-items img {
    margin: 0 5px 10px;
    width: 70px;
  }

  .testimonial-box-slider .slick-arrow {
    bottom: 0%;
  }

  .testimonial-box-slider .slick-prev {
    left: 35%;
  }

  .testimonial-box-slider .slick-next {
    right: 35%;
  }

  .testi-main-inner .testi-main-box {
    padding: 0px 10px 20px;
    margin: 100px 5px 50px;
  }

  .testi-main-box .testi-box-content {
    padding: 0 5px 10px;
  }

  /*Testimonials Section Responsive Css End Here*/

  /*FAQS Section Responsive Css Start Here*/
  section.faqs-sec-wrap {
    padding: 30px 0;
  }

  .faqs-sec-item .accordion-item .accordion-header button.accordion-button {
    font-size: 16px;
    line-height: 22px;
  }

  .faqs-sec-item .accordion-item .accordion-collapse .accordion-body {
    font-size: 14px;
    line-height: 20px;
  }

  /*FAQS Section Responsive Css End Here*/

  /*Main Contact Form Section Responsive Css Start Here*/
  section.main-contact-form {
    padding: 30px 0px;
  }

  .main-contact-form .contact-form-side {
    width: 100%;
    text-align: center;
    margin: 0 0 20px;
  }

  .contact-form-side span.short-text {
    justify-content: center;
  }

  .contact-form-side .form-check {
    text-align: left;
  }

  .contact-form-side .form-check .form-check-input {
    width: 15px;
    height: 15px;
  }

  .contact-form-side .form-check .form-check-label {
    font-size: 14px;
    line-height: 22px;
  }

  .contact-form-side .form-group button.submit-btn {
    font-size: 16px;
    width: 175px;
    margin: 0 auto;
  }

  /*Main Contact Form Section Responsive Css End Here*/

  /**************************************************************************
 --------------- Home Page Folds Responsive Css End Here ------------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- Ghostwriting Page Folds Responsive Css Start Here --------
 --------------------------------------------------------------------------
**************************************************************************/

  /* Ghostwriting Service Section Responsive CSS Start Here */
  .ghostwriting-services-sec-main {
    background-position: 23% 100%;
    padding: 50px 0px 50px;
  }

  .ghostwriting-services-sec-main .ghostwriting-services-left {
    text-align: center;
  }

  /* Ghostwriting Service Section Responsive CSS End Here */

  /* Ghostwriting Genre Section Responsive CSS Start Here */
  .call-to-action-entertain .writing-service-inner .writing-service-boxes {
    flex-wrap: wrap;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item {
    padding: 20px 10px;
    border-width: 2px 2px 2px 2px;
    width: 50%;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item-last {
    border-width: 2px 2px 2px 2px;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item2 {
    border-width: 2px 2px 2px 2px;
  }

  .call-to-action-entertain .writing-service-inner .writing-service-boxes .writing-service-item.writing-service-item2.writing-service-item-last {
    border-width: 2px 2px 2px 2px;
  }

  /* Ghostwriting Genre Section Responsive CSS End Here */

  /* Ghostwriting Hire Company Sec Responsive CSS Start Here */
  .ghostwriting-company-hire-sec-main .ghostwriting-books-image {
    flex-wrap: wrap;
    gap: 15px;
  }

  .ghostwriting-company-hire-sec-main .ghostwriting-books-image .books-image {
    width: 48%;
  }

  .ghostwriting-company-hire-sec-main .website-main-buttons button.popup-btn {
    padding: 20px 25px;
  }

  /* Ghostwriting Hire Company Sec Responsive CSS End Here */

  /**************************************************************************
 ------------- Ghostwriting Page Folds Responsive Css End Here ------------
 --------------------------------------------------------------------------
**************************************************************************/

  /**************************************************************************
 --------------- About Us Page Folds Responsive Css Start Here ------------
 --------------------------------------------------------------------------
**************************************************************************/
  .abt-banner-main-sec {
    padding: 135px 0px;
  }

  /* About Sagnificance Section Responsive CSS Start Here */
  section.abt-sec-significance-wrap {
    padding: 40px 0px 0px;
  }

  .abt-sec-significance-wrap .abt-sec-head-main {
    margin-bottom: 40px;
  }

  .abt-sec-significance-wrap .abt-sec-head-main .short-text {
    font-size: 14px;
    line-height: 22px;
  }

  .abt-sec-significance-wrap .abt-sec-head-main .short-text::before {
    width: 25px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content {
    text-align: center;
    margin: 0 0 20px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content p {
    margin-bottom: 25px;
  }

  .abt-sec-significance-wrap .abt-sec-significance-content .heading-six {
    margin-bottom: 25px;
  }

  /* About Sagnificance Section Responsive CSS End Here */

  /**************************************************************************
 ---------------- About Us Page Folds Responsive Css End Here -------------
 --------------------------------------------------------------------------
**************************************************************************/

  /*Footer Responsive Css Start Here*/
  .footer-main-sec .footer-top {
    padding: 30px 0;
  }

  .footer-top .footer-logo {
    margin: 0 0 30px;
  }

  .footer-logo img {
    width: 275px;
  }

  .footer-info-form .form-group input {
    padding: 10px 10px;
  }

  .footer-info-form .form-group button.submit-btn {
    font-size: 16px;
    width: 175px;
  }

  .footer-top .footer-links-area {
    margin: 20px 0px 20px;
  }

  .footer-links-area ul.footer-nav-links li {
    padding: 0 0 0 20px
  }

  .footer-links-area ul.footer-nav-links a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-info-area a {
    font-size: 14px;
    line-height: 22px;
  }

  .footer-info-area a i,
  .footer-info-area p i {
    font-size: 16px;
    width: 16px;
  }

  .footer-info-area p {
    font-size: 14px;
    line-height: 20px;
  }

  .footer-bottom .footer-copyright {
    text-align: center;
  }

  ul.footer-social-list {
    justify-content: center;
  }

  ul.footer-social-list li a {
    font-size: 16px;
    width: 30px;
    height: 30px;
    line-height: 34px;
  }

  /*Footer Responsive Css End Here*/
}